0.3.0 • Published 1 year ago

athnuikit v0.3.0

Weekly downloads
-
License
-
Repository
github
Last release
1 year ago

athnuikit

a collection of components for vue 3

To view component showcase, go to the github pages athnuikit showcase

Note

The component library is still incomplete, with additional components and better test coverage to come. These will be rolled out in later versions. Until v1, all versions will be considered dev and not production ready.

installation

In the root of your vue project, run:

npm install athnuikit

usage

In your main.ts file, you can either import individual components/animations/composables/directives or use the included VUIKitLoader.

import { createApp } from 'vue';
import { createPinia } from 'pinia';
import { VUIKitLoader } from 'athnuikit';

import 'athnuikit/dist/style.css'; // import stylesheet

import App from '@app/App.vue';
import router from '@app/router';


const app = createApp(App);

app.use(createPinia());
app.use(router);

new VUIKitLoader().load(app); // this loads all included uikit functionality

app.mount('#app');

available exports

import { 
  VUIKitLoader,

  flow,

  useDebounce,
  useExponentialBackoff,
  useLocalStorage,
  useNavigateRoute,
  usePathDataLoader,
  usePeriodicDataFetch,
  useResize,
  useScrollLoader,

  VBlur,
  VFocus,

  vbutton,
  vcontainer,
  vdarkmode,
  vdropdown,
  vinput,
  vlist,
  vmasterview,
  vnav,
  vnotification,
  vpath,
  vsidebar,
  vtag,
  vtitle,
  vtext,

  vfade,
  vslidehorizontal,
  vslidevertical
} from 'athnuikit';

with more to come.

todo

  • complete testing of components
0.3.0

1 year ago

0.2.9

1 year ago

0.2.7

2 years ago

0.2.8

2 years ago

0.2.6

2 years ago

0.2.1

2 years ago

0.2.0

2 years ago

0.2.3

2 years ago

0.2.2

2 years ago

0.2.5

2 years ago

0.2.4

2 years ago

0.1.10

2 years ago

0.1.11

2 years ago

0.1.8

2 years ago

0.1.7

2 years ago

0.1.9

2 years ago

0.1.6

2 years ago

0.1.5

2 years ago

0.1.4

2 years ago

0.1.3

2 years ago

0.1.2

2 years ago

0.1.1

2 years ago

0.1.0

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago