@soroka282/migrant.ui-kit 0.0.11 → 0.0.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  import { Meta, StoryFn } from '@storybook/vue3-vite';
2
2
  import { UISize } from '../../../types';
3
- import { UIButton } from '../..';
3
+ import { UIButton } from '../../../index';
4
4
  declare const _default: Meta<{
5
5
  new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
6
6
  text?: string | undefined;
@@ -1,5 +1,5 @@
1
1
  import { Meta, StoryFn } from '@storybook/vue3-vite';
2
- import { UICard } from '../..';
2
+ import { UICard } from '../../../index';
3
3
  declare const _default: Meta<{
4
4
  new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
5
5
  isBoxShadow?: boolean | undefined;
@@ -1,6 +1,6 @@
1
1
  import { Meta, StoryFn } from '@storybook/vue3-vite';
2
2
  import { EInputComponentType, EInputInputmode, EInputType } from '../../../types';
3
- import { UIInput } from '../..';
3
+ import { UIInput } from '../../../index';
4
4
  declare const _default: Meta<import('vue').DefineComponent<import('../../../types').IInputProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
5
5
  input: (...args: any[]) => void;
6
6
  blur: (...args: any[]) => void;
@@ -1,6 +1,6 @@
1
1
  import { Meta, StoryFn } from '@storybook/vue3-vite';
2
2
  import { UISize } from '../../../types';
3
- import { UILoader } from '../..';
3
+ import { UILoader } from '../../../index';
4
4
  declare const _default: Meta<import('vue').DefineComponent<{
5
5
  size?: import('../../../types').Nullable<UISize>;
6
6
  borderColor?: string | null | undefined;
@@ -1,5 +1,5 @@
1
1
  import { Meta, StoryFn } from '@storybook/vue3-vite';
2
- import { UIModalContainer } from '../..';
2
+ import { UIModalContainer } from '../../../index';
3
3
  declare const _default: Meta<import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>>;
4
4
  export default _default;
5
5
  export declare const DefaultModal: StoryFn<typeof UIModalContainer>;
@@ -1,5 +1,5 @@
1
1
  import { Meta, StoryFn } from '@storybook/vue3-vite';
2
- import { UISwiper } from '../..';
2
+ import { UISwiper } from '../../../index';
3
3
  declare const _default: Meta<{
4
4
  new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
5
5
  list: any[];
package/dist/index.d.ts CHANGED
@@ -2,6 +2,12 @@ export * from './store';
2
2
  export * from './types';
3
3
  export * from './utils';
4
4
  export * from './composables';
5
- export * from './components';
6
5
  export * from './constants';
7
6
  export * from './plugins';
7
+ export { default as UIButton } from './components/UI/button/UIButton.vue';
8
+ export { default as UILoader } from './components/UI/loader/UILoader.vue';
9
+ export { default as UICard } from './components/UI/card/UICard.vue';
10
+ export { default as UISwiper } from './components/UI/swiper/UISwiper.vue';
11
+ export { default as UIInput } from './components/UI/inputs/UIInput.vue';
12
+ export { default as UIModal } from './components/UI/modal/UIModal.vue';
13
+ export { default as UIModalContainer } from './components/UI/modal/UIModalContainer.vue';