@v1nt1248/3nclient-lib 0.0.38 → 0.0.40

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.
Files changed (43) hide show
  1. package/README.md +2 -0
  2. package/dist/components/index.d.ts +5 -1
  3. package/dist/components/ui3n-badge-simple.vue.d.ts +4 -1
  4. package/dist/components/ui3n-badge.vue.d.ts +4 -1
  5. package/dist/components/ui3n-breadcrumb.vue.d.ts +52 -0
  6. package/dist/components/ui3n-breadcrumbs.vue.d.ts +39 -0
  7. package/dist/components/ui3n-button.vue.d.ts +4 -1
  8. package/dist/components/ui3n-checkbox.vue.d.ts +6 -3
  9. package/dist/components/ui3n-chip.vue.d.ts +5 -2
  10. package/dist/components/ui3n-dialog.vue.d.ts +1 -1
  11. package/dist/components/ui3n-drop-files.vue.d.ts +1 -1
  12. package/dist/components/ui3n-emoji.vue.d.ts +4 -1
  13. package/dist/components/ui3n-icon.vue.d.ts +1 -1
  14. package/dist/components/ui3n-input.vue.d.ts +1 -1
  15. package/dist/components/ui3n-list.vue.d.ts +6 -3
  16. package/dist/components/ui3n-menu.vue.d.ts +5 -2
  17. package/dist/components/ui3n-notification.vue.d.ts +1 -1
  18. package/dist/components/ui3n-table-sort-icon.vue.d.ts +1 -1
  19. package/dist/components/ui3n-table.vue.d.ts +1 -1
  20. package/dist/components/ui3n-tabs.vue.d.ts +4 -1
  21. package/dist/components/ui3n-text.vue.d.ts +2 -2
  22. package/dist/components/ui3n-virtual-scroll.vue.d.ts +6 -3
  23. package/dist/index.d.ts +4 -0
  24. package/dist/stories/Ui3nBadge.stories.d.ts +60 -96
  25. package/dist/stories/Ui3nBreadcrumbs.stories.d.ts +252 -0
  26. package/dist/stories/Ui3nButton.stories.d.ts +77 -113
  27. package/dist/stories/Ui3nCheckbox.stories.d.ts +100 -140
  28. package/dist/stories/Ui3nChip.stories.d.ts +300 -420
  29. package/dist/stories/Ui3nDialog.stories.d.ts +1 -1
  30. package/dist/stories/Ui3nDropFiles.stories.d.ts +32 -67
  31. package/dist/stories/Ui3nEmoji.stories.d.ts +1 -1
  32. package/dist/stories/Ui3nIcon.stories.d.ts +1 -1
  33. package/dist/stories/Ui3nInput.stories.d.ts +6 -6
  34. package/dist/stories/Ui3nList.stories.d.ts +3 -3
  35. package/dist/stories/Ui3nTabs.stories.d.ts +91 -130
  36. package/dist/style.css +1 -1
  37. package/dist/ui-3n-lib.js +4461 -4401
  38. package/package.json +44 -44
  39. package/src/components/index.ts +10 -0
  40. package/src/components/ui3n-breadcrumb.vue +105 -0
  41. package/src/components/ui3n-breadcrumbs.vue +28 -0
  42. package/src/components/ui3n-button.vue +7 -4
  43. package/src/components/ui3n-dialog.vue +12 -2
package/README.md CHANGED
@@ -8,6 +8,8 @@ You can run the project as `yarn dev` or `npm run dev` if you don't want to use
8
8
 
9
9
  ## Components
10
10
  - Ui3nBadge,
11
+ - Ui3nBreadcrumb
12
+ - Ui3nBreadcrumbs
11
13
  - Ui3nButton
12
14
  - Ui3nCheckbox
13
15
  - Ui3nChip
@@ -31,4 +31,8 @@ import Ui3nTabs from './ui3n-tabs.vue';
31
31
  import type { Ui3nTabsProps, Ui3nTabsEmits, Ui3nTabsSlots } from './ui3n-tabs.vue';
32
32
  import Ui3nBadge from './ui3n-badge.vue';
33
33
  import type { Ui3nBadgeProps } from './ui3n-badge.vue';
34
- export { Ui3nIcon, Ui3nIconProps, Ui3nIconEmits, Ui3nButton, Ui3nButtonProps, Ui3nButtonEmits, Ui3nChip, Ui3nChipProps, Ui3nChipEmits, Ui3nChipSlots, Ui3nDropFiles, Ui3nDropFilesProps, Ui3nDropFilesEmits, Ui3nEmoji, Ui3nEmojiProps, Ui3nEmojiEmits, Ui3nInput, Ui3nInputProps, Ui3nInputEmits, Ui3nText, Ui3nTextProps, Ui3nTextEmits, Ui3nCheckbox, Ui3nCheckboxProps, Ui3nCheckboxEmits, Ui3nCheckboxSlots, Ui3nNotification, Ui3nTableSortIcon, Ui3nTableSortIconProps, Ui3nTable, Ui3nTableProps, Ui3nTableEmits, Ui3nDialog, Ui3nDialogComponentProps, Ui3nDialogComponentEmits, Ui3nDialogProps, Ui3nDialogEvent, Ui3nMenu, Ui3nMenuProps, Ui3nMenuEmits, Ui3nMenuSlots, Ui3nList, Ui3nListProps, Ui3nListEmits, Ui3nListSlots, Ui3nVirtualScroll, Ui3nVirtualScrollProps, Ui3nVirtualScrollSlots, Ui3nTabs, Ui3nTabsProps, Ui3nTabsEmits, Ui3nTabsSlots, Ui3nBadge, Ui3nBadgeProps, };
34
+ import Ui3nBreadcrumb from './ui3n-breadcrumb.vue';
35
+ import type { Ui3nBreadcrumdProps, Ui3nBreadcrumdEmits, Ui3nBreadcrumdSlots } from './ui3n-breadcrumb.vue';
36
+ import Ui3nBreadcrumbs from './ui3n-breadcrumbs.vue';
37
+ import type { Ui3nBreadcrumdsProps } from './ui3n-breadcrumbs.vue';
38
+ export { Ui3nIcon, Ui3nIconProps, Ui3nIconEmits, Ui3nButton, Ui3nButtonProps, Ui3nButtonEmits, Ui3nChip, Ui3nChipProps, Ui3nChipEmits, Ui3nChipSlots, Ui3nDropFiles, Ui3nDropFilesProps, Ui3nDropFilesEmits, Ui3nEmoji, Ui3nEmojiProps, Ui3nEmojiEmits, Ui3nInput, Ui3nInputProps, Ui3nInputEmits, Ui3nText, Ui3nTextProps, Ui3nTextEmits, Ui3nCheckbox, Ui3nCheckboxProps, Ui3nCheckboxEmits, Ui3nCheckboxSlots, Ui3nNotification, Ui3nTableSortIcon, Ui3nTableSortIconProps, Ui3nTable, Ui3nTableProps, Ui3nTableEmits, Ui3nDialog, Ui3nDialogComponentProps, Ui3nDialogComponentEmits, Ui3nDialogProps, Ui3nDialogEvent, Ui3nMenu, Ui3nMenuProps, Ui3nMenuEmits, Ui3nMenuSlots, Ui3nList, Ui3nListProps, Ui3nListEmits, Ui3nListSlots, Ui3nVirtualScroll, Ui3nVirtualScrollProps, Ui3nVirtualScrollSlots, Ui3nTabs, Ui3nTabsProps, Ui3nTabsEmits, Ui3nTabsSlots, Ui3nBadge, Ui3nBadgeProps, Ui3nBreadcrumb, Ui3nBreadcrumdProps, Ui3nBreadcrumdEmits, Ui3nBreadcrumdSlots, Ui3nBreadcrumbs, Ui3nBreadcrumdsProps, };
@@ -14,7 +14,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
14
14
  width: number;
15
15
  height: number;
16
16
  }) => void;
17
- }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Ui3nBadgeSimpleProps>, {
17
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Ui3nBadgeSimpleProps>, {
18
18
  dot: boolean;
19
19
  value: string;
20
20
  color: string;
@@ -45,3 +45,6 @@ type __VLS_WithDefaults<P, D> = {
45
45
  default: D[K];
46
46
  }> : P[K];
47
47
  };
48
+ type __VLS_Prettify<T> = {
49
+ [K in keyof T]: T[K];
50
+ } & {};
@@ -11,7 +11,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
11
11
  color: string;
12
12
  textColor: string;
13
13
  position: string;
14
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Ui3nBadgeProps>, {
14
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Ui3nBadgeProps>, {
15
15
  dot: boolean;
16
16
  value: string;
17
17
  color: string;
@@ -41,6 +41,9 @@ type __VLS_WithDefaults<P, D> = {
41
41
  default: D[K];
42
42
  }> : P[K];
43
43
  };
44
+ type __VLS_Prettify<T> = {
45
+ [K in keyof T]: T[K];
46
+ } & {};
44
47
  type __VLS_WithTemplateSlots<T, S> = T & {
45
48
  new (): {
46
49
  $slots: S;
@@ -0,0 +1,52 @@
1
+ export interface Ui3nBreadcrumdProps {
2
+ separator?: string | undefined;
3
+ isActive?: boolean;
4
+ disabled?: boolean;
5
+ }
6
+ export interface Ui3nBreadcrumdEmits {
7
+ (ev: 'click', value: Event): void;
8
+ }
9
+ export interface Ui3nBreadcrumdSlots {
10
+ separator: () => unknown;
11
+ default: () => unknown;
12
+ }
13
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Ui3nBreadcrumdProps>, {
14
+ separator: undefined;
15
+ isActive: boolean;
16
+ disabled: boolean;
17
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
18
+ click: (value: Event) => void;
19
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Ui3nBreadcrumdProps>, {
20
+ separator: undefined;
21
+ isActive: boolean;
22
+ disabled: boolean;
23
+ }>>> & {
24
+ onClick?: ((value: Event) => any) | undefined;
25
+ }, {
26
+ separator: string;
27
+ isActive: boolean;
28
+ disabled: boolean;
29
+ }, {}>, Readonly<Ui3nBreadcrumdSlots> & Ui3nBreadcrumdSlots>;
30
+ export default _default;
31
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
32
+ type __VLS_TypePropsToRuntimeProps<T> = {
33
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
34
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
35
+ } : {
36
+ type: import('vue').PropType<T[K]>;
37
+ required: true;
38
+ };
39
+ };
40
+ type __VLS_WithDefaults<P, D> = {
41
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
42
+ default: D[K];
43
+ }> : P[K];
44
+ };
45
+ type __VLS_Prettify<T> = {
46
+ [K in keyof T]: T[K];
47
+ } & {};
48
+ type __VLS_WithTemplateSlots<T, S> = T & {
49
+ new (): {
50
+ $slots: S;
51
+ };
52
+ };
@@ -0,0 +1,39 @@
1
+ export interface Ui3nBreadcrumdsProps {
2
+ separator?: string;
3
+ disabled?: boolean;
4
+ }
5
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Ui3nBreadcrumdsProps>, {
6
+ separator: string;
7
+ disabled: boolean;
8
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Ui3nBreadcrumdsProps>, {
9
+ separator: string;
10
+ disabled: boolean;
11
+ }>>>, {
12
+ separator: string;
13
+ disabled: boolean;
14
+ }, {}>, {
15
+ default?(_: {}): any;
16
+ }>;
17
+ export default _default;
18
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
19
+ type __VLS_TypePropsToRuntimeProps<T> = {
20
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
21
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
22
+ } : {
23
+ type: import('vue').PropType<T[K]>;
24
+ required: true;
25
+ };
26
+ };
27
+ type __VLS_WithDefaults<P, D> = {
28
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
29
+ default: D[K];
30
+ }> : P[K];
31
+ };
32
+ type __VLS_Prettify<T> = {
33
+ [K in keyof T]: T[K];
34
+ } & {};
35
+ type __VLS_WithTemplateSlots<T, S> = T & {
36
+ new (): {
37
+ $slots: S;
38
+ };
39
+ };
@@ -9,18 +9,21 @@ export interface Ui3nButtonProps {
9
9
  disabled?: boolean;
10
10
  }
11
11
  export interface Ui3nButtonEmits {
12
+ (ev: 'init', value: HTMLButtonElement): void;
12
13
  (ev: 'click', value: Event): void;
13
14
  (ev: 'focus', value: Event): void;
14
15
  (ev: 'blur', value: Event): void;
15
16
  }
16
17
  declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<Ui3nButtonProps>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
18
+ init: (value: HTMLButtonElement) => void;
17
19
  click: (value: Event) => void;
18
20
  focus: (value: Event) => void;
19
21
  blur: (value: Event) => void;
20
- }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Ui3nButtonProps>>> & {
22
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Ui3nButtonProps>>> & {
21
23
  onFocus?: ((value: Event) => any) | undefined;
22
24
  onBlur?: ((value: Event) => any) | undefined;
23
25
  onClick?: ((value: Event) => any) | undefined;
26
+ onInit?: ((value: HTMLButtonElement) => any) | undefined;
24
27
  }, {}, {}>, {
25
28
  default?(_: {}): any;
26
29
  }>;
@@ -26,7 +26,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
26
26
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
27
27
  change: (value: Ui3nCheckboxValue) => void;
28
28
  "update:modelValue": (value: Ui3nCheckboxValue) => void;
29
- }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Ui3nCheckboxProps>, {
29
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Ui3nCheckboxProps>, {
30
30
  modelValue: boolean;
31
31
  checkedValue: boolean;
32
32
  uncheckedValue: boolean;
@@ -40,12 +40,12 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
40
40
  }, {
41
41
  color: string;
42
42
  disabled: boolean;
43
+ size: string | number;
43
44
  modelValue: Ui3nCheckboxValue;
44
45
  checkedValue: Ui3nCheckboxValue;
45
46
  uncheckedValue: Ui3nCheckboxValue;
46
- size: string | number;
47
47
  indeterminate: boolean;
48
- }, {}>, Readonly<Ui3nCheckboxSlots>>;
48
+ }, {}>, Readonly<Ui3nCheckboxSlots> & Ui3nCheckboxSlots>;
49
49
  export default _default;
50
50
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
51
51
  type __VLS_TypePropsToRuntimeProps<T> = {
@@ -61,6 +61,9 @@ type __VLS_WithDefaults<P, D> = {
61
61
  default: D[K];
62
62
  }> : P[K];
63
63
  };
64
+ type __VLS_Prettify<T> = {
65
+ [K in keyof T]: T[K];
66
+ } & {};
64
67
  type __VLS_WithTemplateSlots<T, S> = T & {
65
68
  new (): {
66
69
  $slots: S;
@@ -29,7 +29,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
29
29
  textColor: string;
30
30
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
31
31
  close: () => void;
32
- }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Ui3nChipProps>, {
32
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Ui3nChipProps>, {
33
33
  height: number;
34
34
  maxWidth: number;
35
35
  plain: boolean;
@@ -49,7 +49,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
49
49
  plain: boolean;
50
50
  closeable: boolean;
51
51
  textSize: string | number;
52
- }, {}>, Readonly<Ui3nChipSlots>>;
52
+ }, {}>, Readonly<Ui3nChipSlots> & Ui3nChipSlots>;
53
53
  export default _default;
54
54
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
55
55
  type __VLS_TypePropsToRuntimeProps<T> = {
@@ -65,6 +65,9 @@ type __VLS_WithDefaults<P, D> = {
65
65
  default: D[K];
66
66
  }> : P[K];
67
67
  };
68
+ type __VLS_Prettify<T> = {
69
+ [K in keyof T]: T[K];
70
+ } & {};
68
71
  type __VLS_WithTemplateSlots<T, S> = T & {
69
72
  new (): {
70
73
  $slots: S;
@@ -41,7 +41,7 @@ declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimePr
41
41
  confirm: (value?: any) => void;
42
42
  cancel: (value?: any) => void;
43
43
  "click-overlay": (value?: any) => void;
44
- }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Ui3nDialogComponentProps>>> & {
44
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Ui3nDialogComponentProps>>> & {
45
45
  onClose?: ((value?: any) => any) | undefined;
46
46
  onCancel?: ((value?: any) => any) | undefined;
47
47
  onOpen?: ((value?: any) => any) | undefined;
@@ -8,7 +8,7 @@ export interface Ui3nDropFilesEmits {
8
8
  }
9
9
  declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<Ui3nDropFilesProps>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
10
10
  select: (fileList: FileList) => void;
11
- }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Ui3nDropFilesProps>>> & {
11
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Ui3nDropFilesProps>>> & {
12
12
  onSelect?: ((fileList: FileList) => any) | undefined;
13
13
  }, {}, {}>, {
14
14
  default?(_: {}): any;
@@ -11,7 +11,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
11
11
  readonly: boolean;
12
12
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
13
13
  click: (value: Event) => void;
14
- }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Ui3nEmojiProps>, {
14
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Ui3nEmojiProps>, {
15
15
  size: number;
16
16
  readonly: boolean;
17
17
  }>>> & {
@@ -35,3 +35,6 @@ type __VLS_WithDefaults<P, D> = {
35
35
  default: D[K];
36
36
  }> : P[K];
37
37
  };
38
+ type __VLS_Prettify<T> = {
39
+ [K in keyof T]: T[K];
40
+ } & {};
@@ -16,7 +16,7 @@ export interface Ui3nIconEmits {
16
16
  }
17
17
  declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<Ui3nIconProps>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
18
18
  click: (value: Event) => void;
19
- }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Ui3nIconProps>>> & {
19
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Ui3nIconProps>>> & {
20
20
  onClick?: ((value: Event) => any) | undefined;
21
21
  }, {}, {}>;
22
22
  export default _default;
@@ -26,7 +26,7 @@ declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimePr
26
26
  change: (value: string) => void;
27
27
  "update:value": (value: string) => void;
28
28
  "update:valid": (value: boolean) => void;
29
- }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Ui3nInputProps>>> & {
29
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Ui3nInputProps>>> & {
30
30
  onFocus?: ((value: Event) => any) | undefined;
31
31
  onBlur?: ((value: Event) => any) | undefined;
32
32
  onChange?: ((value: string) => any) | undefined;
@@ -30,7 +30,7 @@ declare const _default: <T extends {
30
30
  items: T[];
31
31
  } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, __VLS_ctx?: {
32
32
  attrs: any;
33
- slots: Readonly<Ui3nListSlots<T>>;
33
+ slots: Readonly<Ui3nListSlots<T>> & Ui3nListSlots<T>;
34
34
  emit: Ui3nListEmits<T>;
35
35
  } | undefined, __VLS_expose?: ((exposed: import('vue').ShallowUnwrapRef<{}>) => void) | undefined, __VLS_setup?: Promise<{
36
36
  props: {
@@ -45,7 +45,7 @@ declare const _default: <T extends {
45
45
  } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
46
46
  expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
47
47
  attrs: any;
48
- slots: Readonly<Ui3nListSlots<T>>;
48
+ slots: Readonly<Ui3nListSlots<T>> & Ui3nListSlots<T>;
49
49
  emit: Ui3nListEmits<T>;
50
50
  }>) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
51
51
  [key: string]: any;
@@ -63,8 +63,11 @@ declare const _default: <T extends {
63
63
  } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
64
64
  expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
65
65
  attrs: any;
66
- slots: Readonly<Ui3nListSlots<T>>;
66
+ slots: Readonly<Ui3nListSlots<T>> & Ui3nListSlots<T>;
67
67
  emit: Ui3nListEmits<T>;
68
68
  } | undefined;
69
69
  };
70
70
  export default _default;
71
+ type __VLS_Prettify<T> = {
72
+ [K in keyof T]: T[K];
73
+ } & {};
@@ -28,7 +28,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
28
28
  close: () => void;
29
29
  closed: () => void;
30
30
  "click-outside": () => void;
31
- }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Ui3nMenuProps>, {
31
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Ui3nMenuProps>, {
32
32
  offsetX: number;
33
33
  offsetY: number;
34
34
  closeOnClick: boolean;
@@ -46,7 +46,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
46
46
  offsetY: number;
47
47
  closeOnClick: boolean;
48
48
  closeOnClickOutside: boolean;
49
- }, {}>, Readonly<Ui3nMenuSlots>>;
49
+ }, {}>, Readonly<Ui3nMenuSlots> & Ui3nMenuSlots>;
50
50
  export default _default;
51
51
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
52
52
  type __VLS_TypePropsToRuntimeProps<T> = {
@@ -62,6 +62,9 @@ type __VLS_WithDefaults<P, D> = {
62
62
  default: D[K];
63
63
  }> : P[K];
64
64
  };
65
+ type __VLS_Prettify<T> = {
66
+ [K in keyof T]: T[K];
67
+ } & {};
65
68
  type __VLS_WithTemplateSlots<T, S> = T & {
66
69
  new (): {
67
70
  $slots: S;
@@ -1,5 +1,5 @@
1
1
  import type { Ui3nNotificationProps } from '../constants';
2
- declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<Ui3nNotificationProps>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Ui3nNotificationProps>>>, {}, {}>;
2
+ declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<Ui3nNotificationProps>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Ui3nNotificationProps>>>, {}, {}>;
3
3
  export default _default;
4
4
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
5
5
  type __VLS_TypePropsToRuntimeProps<T> = {
@@ -3,7 +3,7 @@ export interface Ui3nTableSortIconProps {
3
3
  color?: string;
4
4
  value: 'asc' | 'desc';
5
5
  }
6
- declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<Ui3nTableSortIconProps>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Ui3nTableSortIconProps>>>, {}, {}>;
6
+ declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<Ui3nTableSortIconProps>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Ui3nTableSortIconProps>>>, {}, {}>;
7
7
  export default _default;
8
8
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
9
9
  type __VLS_TypePropsToRuntimeProps<T> = {
@@ -16,7 +16,7 @@ declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimePr
16
16
  action: EntityAction;
17
17
  entity: ListingEntryTypeExtended;
18
18
  }) => void;
19
- }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Ui3nTableProps>>> & {
19
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Ui3nTableProps>>> & {
20
20
  onGo?: ((name: string) => any) | undefined;
21
21
  onAction?: ((value: {
22
22
  action: EntityAction;
@@ -23,7 +23,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
23
23
  indicatorPosition: string;
24
24
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
25
25
  "update:modelValue": (val: number) => void;
26
- }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Ui3nTabsProps>, {
26
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Ui3nTabsProps>, {
27
27
  modelValue: number;
28
28
  itemDirection: string;
29
29
  activeColor: string;
@@ -59,6 +59,9 @@ type __VLS_WithDefaults<P, D> = {
59
59
  default: D[K];
60
60
  }> : P[K];
61
61
  };
62
+ type __VLS_Prettify<T> = {
63
+ [K in keyof T]: T[K];
64
+ } & {};
62
65
  type __VLS_WithTemplateSlots<T, S> = T & {
63
66
  new (): {
64
67
  $slots: S;
@@ -22,12 +22,12 @@ declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimePr
22
22
  blur: (value: Event) => void;
23
23
  "update:text": (value: string) => void;
24
24
  "update:valid": (value: boolean) => void;
25
- }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Ui3nTextProps>>> & {
25
+ }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Ui3nTextProps>>> & {
26
26
  onFocus?: ((value: Event) => any) | undefined;
27
27
  onBlur?: ((value: Event) => any) | undefined;
28
28
  onInput?: ((value: string) => any) | undefined;
29
- "onUpdate:valid"?: ((value: boolean) => any) | undefined;
30
29
  onInit?: ((value: HTMLTextAreaElement) => any) | undefined;
30
+ "onUpdate:valid"?: ((value: boolean) => any) | undefined;
31
31
  "onUpdate:text"?: ((value: string) => any) | undefined;
32
32
  }, {}, {}>;
33
33
  export default _default;
@@ -14,7 +14,7 @@ declare const _default: <T extends {
14
14
  renderAhread?: number | undefined;
15
15
  } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, __VLS_ctx?: {
16
16
  attrs: any;
17
- slots: Readonly<Ui3nVirtualScrollSlots<T>>;
17
+ slots: Readonly<Ui3nVirtualScrollSlots<T>> & Ui3nVirtualScrollSlots<T>;
18
18
  emit: any;
19
19
  } | undefined, __VLS_expose?: ((exposed: import('vue').ShallowUnwrapRef<{}>) => void) | undefined, __VLS_setup?: Promise<{
20
20
  props: {
@@ -24,7 +24,7 @@ declare const _default: <T extends {
24
24
  } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
25
25
  expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
26
26
  attrs: any;
27
- slots: Readonly<Ui3nVirtualScrollSlots<T>>;
27
+ slots: Readonly<Ui3nVirtualScrollSlots<T>> & Ui3nVirtualScrollSlots<T>;
28
28
  emit: any;
29
29
  }>) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
30
30
  [key: string]: any;
@@ -37,8 +37,11 @@ declare const _default: <T extends {
37
37
  } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
38
38
  expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
39
39
  attrs: any;
40
- slots: Readonly<Ui3nVirtualScrollSlots<T>>;
40
+ slots: Readonly<Ui3nVirtualScrollSlots<T>> & Ui3nVirtualScrollSlots<T>;
41
41
  emit: any;
42
42
  } | undefined;
43
43
  };
44
44
  export default _default;
45
+ type __VLS_Prettify<T> = {
46
+ [K in keyof T]: T[K];
47
+ } & {};
package/dist/index.d.ts CHANGED
@@ -18,6 +18,8 @@ import type Ui3nText from './components/ui3n-text.vue';
18
18
  import type Ui3nVirtualScroll from './components/ui3n-virtual-scroll.vue';
19
19
  import type Ui3nTabs from './components/ui3n-tabs.vue';
20
20
  import type Ui3nBadge from './components/ui3n-badge.vue';
21
+ import type Ui3nBreadcrumd from './components/ui3n-breadcrumb.vue';
22
+ import type Ui3nBreadcrumds from './components/ui3n-breadcrumbs.vue';
21
23
  import type Ui3nHtml from './directives/ui3n-html';
22
24
  import type Ui3nClickOutside from './directives/ui3n-click-outside';
23
25
  export * from './constants';
@@ -36,6 +38,8 @@ declare module 'vue' {
36
38
  }
37
39
  interface GlobalComponents {
38
40
  Ui3nBadge: typeof Ui3nBadge;
41
+ Ui3nBreadcrumd: typeof Ui3nBreadcrumd;
42
+ Ui3nBreadcrumds: typeof Ui3nBreadcrumds;
39
43
  Ui3nButton: typeof Ui3nButton;
40
44
  Ui3nCheckbox: typeof Ui3nCheckbox;
41
45
  Ui3nChip: typeof Ui3nChip;