@toife/vue 3.3.9 → 3.3.11

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 (202) hide show
  1. package/dist/components/action/action.composable.d.ts +5 -5
  2. package/dist/components/action/action.vue.d.ts +2 -2
  3. package/dist/components/app/app.vue.d.ts +3 -3
  4. package/dist/components/avatar/avatar.vue.d.ts +1 -1
  5. package/dist/components/button/button.vue.d.ts +3 -3
  6. package/dist/components/cable/cable.vue.d.ts +1 -1
  7. package/dist/components/card/card/card.vue.d.ts +1 -1
  8. package/dist/components/checkbox/checkbox.vue.d.ts +3 -3
  9. package/dist/components/collapse/collapse.vue.d.ts +1 -1
  10. package/dist/components/decision-modal/decision-modal.composable.d.ts +5 -5
  11. package/dist/components/decision-modal/decision-modal.vue.d.ts +2 -2
  12. package/dist/components/divider/divider.vue.d.ts +2 -2
  13. package/dist/components/dropdown/dropdown.vue.d.ts +4 -4
  14. package/dist/components/field/field.vue.d.ts +5 -5
  15. package/dist/components/form-group/form-group.vue.d.ts +2 -2
  16. package/dist/components/gesture-indicator/gesture-indicator.vue.d.ts +1 -1
  17. package/dist/components/image/image.vue.d.ts +1 -1
  18. package/dist/components/layout/flex/flex.vue.d.ts +2 -2
  19. package/dist/components/layout/flex-item/flex-item.vue.d.ts +2 -2
  20. package/dist/components/layout/grid/grid.vue.d.ts +2 -2
  21. package/dist/components/layout/grid-item/grid-item.vue.d.ts +2 -2
  22. package/dist/components/modal/modal.vue.d.ts +1 -1
  23. package/dist/components/present/present.vue.d.ts +2 -2
  24. package/dist/components/radio/radio/radio.vue.d.ts +2 -2
  25. package/dist/components/radio/radio-group/radio-group.vue.d.ts +3 -3
  26. package/dist/components/refresher/refresher.vue.d.ts +4 -4
  27. package/dist/components/route/route-navigator/route-navigator.vue.d.ts +2 -2
  28. package/dist/components/route/route-provider/route-provider.vue.d.ts +1 -1
  29. package/dist/components/route/route-wrapper/route-wrapper.composable.d.ts +1 -1
  30. package/dist/components/route/route-wrapper/route-wrapper.vue.d.ts +1 -1
  31. package/dist/components/route/route.util.d.ts +1 -1
  32. package/dist/components/segmented-field/segmented-field.vue.d.ts +4 -4
  33. package/dist/components/select/select.vue.d.ts +4 -4
  34. package/dist/components/skeleton/skeleton.vue.d.ts +1 -1
  35. package/dist/components/slide-range/slide-range.vue.d.ts +1 -1
  36. package/dist/components/switch/switch.vue.d.ts +2 -2
  37. package/dist/components/tabs/tab/tab.vue.d.ts +1 -1
  38. package/dist/components/tabs/tabs/tabs.vue.d.ts +4 -4
  39. package/dist/components/tag/tag.vue.d.ts +3 -3
  40. package/dist/components/toast/toast/toast.vue.d.ts +2 -2
  41. package/dist/components/toast/toast-content/toast-content.vue.d.ts +2 -2
  42. package/dist/components/toast/toast.composable.d.ts +5 -5
  43. package/dist/components/toolbar/toolbar.vue.d.ts +1 -1
  44. package/dist/components/tooltip/tooltip.vue.d.ts +3 -3
  45. package/dist/core/features/action/action.constants.d.ts +11 -0
  46. package/dist/core/features/action/action.logic.d.ts +8 -0
  47. package/dist/core/features/action/action.type.d.ts +46 -0
  48. package/dist/core/features/action/index.d.ts +3 -0
  49. package/dist/core/features/app/app.constants.d.ts +16 -0
  50. package/dist/core/features/app/app.logic.d.ts +4 -0
  51. package/dist/core/features/app/app.type.d.ts +36 -0
  52. package/dist/core/features/app/index.d.ts +3 -0
  53. package/dist/core/features/avatar/avatar.constants.d.ts +9 -0
  54. package/dist/core/features/avatar/avatar.logic.d.ts +10 -0
  55. package/dist/core/features/avatar/avatar.type.d.ts +14 -0
  56. package/dist/core/features/avatar/index.d.ts +3 -0
  57. package/dist/core/features/button/button.constants.d.ts +10 -0
  58. package/dist/core/features/button/button.logic.d.ts +11 -0
  59. package/dist/core/features/button/button.type.d.ts +20 -0
  60. package/dist/core/features/button/index.d.ts +3 -0
  61. package/dist/core/features/cable/cable.constants.d.ts +5 -0
  62. package/dist/core/features/cable/cable.logic.d.ts +4 -0
  63. package/dist/core/features/cable/cable.type.d.ts +10 -0
  64. package/dist/core/features/cable/index.d.ts +3 -0
  65. package/dist/core/features/card/card-body.logic.d.ts +3 -0
  66. package/dist/core/features/card/card-footer.logic.d.ts +6 -0
  67. package/dist/core/features/card/card-header.logic.d.ts +6 -0
  68. package/dist/core/features/card/card.constants.d.ts +6 -0
  69. package/dist/core/features/card/card.logic.d.ts +6 -0
  70. package/dist/core/features/card/card.type.d.ts +21 -0
  71. package/dist/core/features/card/index.d.ts +6 -0
  72. package/dist/core/features/checkbox/checkbox.constants.d.ts +11 -0
  73. package/dist/core/features/checkbox/checkbox.logic.d.ts +13 -0
  74. package/dist/core/features/checkbox/checkbox.type.d.ts +28 -0
  75. package/dist/core/features/checkbox/index.d.ts +3 -0
  76. package/dist/core/features/collapse/collapse.constants.d.ts +9 -0
  77. package/dist/core/features/collapse/collapse.logic.d.ts +21 -0
  78. package/dist/core/features/collapse/collapse.type.d.ts +23 -0
  79. package/dist/core/features/collapse/index.d.ts +3 -0
  80. package/dist/core/features/container/container.logic.d.ts +3 -0
  81. package/dist/core/features/container/index.d.ts +1 -0
  82. package/dist/core/features/decision-modal/decision-modal.constants.d.ts +12 -0
  83. package/dist/core/features/decision-modal/decision-modal.logic.d.ts +16 -0
  84. package/dist/core/features/decision-modal/decision-modal.type.d.ts +39 -0
  85. package/dist/core/features/decision-modal/index.d.ts +3 -0
  86. package/dist/core/features/divider/divider.constants.d.ts +6 -0
  87. package/dist/core/features/divider/divider.logic.d.ts +6 -0
  88. package/dist/core/features/divider/divider.type.d.ts +9 -0
  89. package/dist/core/features/divider/index.d.ts +3 -0
  90. package/dist/core/features/dropdown/dropdown.constants.d.ts +13 -0
  91. package/dist/core/features/dropdown/dropdown.logic.d.ts +11 -0
  92. package/dist/core/features/dropdown/dropdown.type.d.ts +29 -0
  93. package/dist/core/features/dropdown/index.d.ts +3 -0
  94. package/dist/core/features/field/field.constants.d.ts +19 -0
  95. package/dist/core/features/field/field.logic.d.ts +21 -0
  96. package/dist/core/features/field/field.type.d.ts +47 -0
  97. package/dist/core/features/field/index.d.ts +3 -0
  98. package/dist/core/features/form-group/form-group.constants.d.ts +6 -0
  99. package/dist/core/features/form-group/form-group.logic.d.ts +4 -0
  100. package/dist/core/features/form-group/form-group.type.d.ts +7 -0
  101. package/dist/core/features/form-group/index.d.ts +3 -0
  102. package/dist/core/features/gesture-indicator/gesture-indicator.constants.d.ts +7 -0
  103. package/dist/core/features/gesture-indicator/gesture-indicator.logic.d.ts +4 -0
  104. package/dist/core/features/gesture-indicator/gesture-indicator.type.d.ts +8 -0
  105. package/dist/core/features/gesture-indicator/index.d.ts +3 -0
  106. package/dist/core/features/image/image.type.d.ts +4 -0
  107. package/dist/core/features/image/index.d.ts +1 -0
  108. package/dist/core/features/index.d.ts +33 -0
  109. package/dist/core/features/layout/flex-item.constants.d.ts +6 -0
  110. package/dist/core/features/layout/flex-item.logic.d.ts +7 -0
  111. package/dist/core/features/layout/flex-item.type.d.ts +10 -0
  112. package/dist/core/features/layout/flex.constants.d.ts +6 -0
  113. package/dist/core/features/layout/flex.logic.d.ts +7 -0
  114. package/dist/core/features/layout/flex.type.d.ts +12 -0
  115. package/dist/core/features/layout/grid-item.constants.d.ts +6 -0
  116. package/dist/core/features/layout/grid-item.logic.d.ts +7 -0
  117. package/dist/core/features/layout/grid-item.type.d.ts +12 -0
  118. package/dist/core/features/layout/grid.constants.d.ts +6 -0
  119. package/dist/core/features/layout/grid.logic.d.ts +7 -0
  120. package/dist/core/features/layout/grid.type.d.ts +10 -0
  121. package/dist/core/features/layout/index.d.ts +12 -0
  122. package/dist/core/features/modal/index.d.ts +3 -0
  123. package/dist/core/features/modal/modal.constants.d.ts +16 -0
  124. package/dist/core/features/modal/modal.logic.d.ts +5 -0
  125. package/dist/core/features/modal/modal.type.d.ts +26 -0
  126. package/dist/core/features/page/index.d.ts +1 -0
  127. package/dist/core/features/page/page.logic.d.ts +3 -0
  128. package/dist/core/features/present/index.d.ts +3 -0
  129. package/dist/core/features/present/present.constants.d.ts +18 -0
  130. package/dist/core/features/present/present.logic.d.ts +13 -0
  131. package/dist/core/features/present/present.type.d.ts +43 -0
  132. package/dist/core/features/radio/index.d.ts +6 -0
  133. package/dist/core/features/radio/radio-group.constants.d.ts +8 -0
  134. package/dist/core/features/radio/radio-group.logic.d.ts +4 -0
  135. package/dist/core/features/radio/radio-group.type.d.ts +28 -0
  136. package/dist/core/features/radio/radio.constants.d.ts +8 -0
  137. package/dist/core/features/radio/radio.logic.d.ts +13 -0
  138. package/dist/core/features/radio/radio.type.d.ts +24 -0
  139. package/dist/core/features/refresher/index.d.ts +2 -0
  140. package/dist/core/features/refresher/refresher.logic.d.ts +3 -0
  141. package/dist/core/features/refresher/refresher.type.d.ts +10 -0
  142. package/dist/core/features/route/index.d.ts +8 -0
  143. package/dist/core/features/route/route-navigator.constants.d.ts +9 -0
  144. package/dist/core/features/route/route-navigator.logic.d.ts +19 -0
  145. package/dist/core/features/route/route-navigator.type.d.ts +52 -0
  146. package/dist/core/features/route/route-provider.constants.d.ts +4 -0
  147. package/dist/core/features/route/route-provider.type.d.ts +7 -0
  148. package/dist/core/features/route/route-wrapper.constants.d.ts +6 -0
  149. package/dist/core/features/route/route-wrapper.type.d.ts +3 -0
  150. package/dist/core/features/route/route.type.d.ts +5 -0
  151. package/dist/core/features/segmented-field/index.d.ts +3 -0
  152. package/dist/core/features/segmented-field/segmented-field.constants.d.ts +17 -0
  153. package/dist/core/features/segmented-field/segmented-field.logic.d.ts +12 -0
  154. package/dist/core/features/segmented-field/segmented-field.type.d.ts +35 -0
  155. package/dist/core/features/select/index.d.ts +3 -0
  156. package/dist/core/features/select/select.constants.d.ts +15 -0
  157. package/dist/core/features/select/select.logic.d.ts +15 -0
  158. package/dist/core/features/select/select.type.d.ts +39 -0
  159. package/dist/core/features/skeleton/index.d.ts +3 -0
  160. package/dist/core/features/skeleton/skeleton.constants.d.ts +7 -0
  161. package/dist/core/features/skeleton/skeleton.logic.d.ts +7 -0
  162. package/dist/core/features/skeleton/skeleton.type.d.ts +12 -0
  163. package/dist/core/features/slide-range/index.d.ts +3 -0
  164. package/dist/core/features/slide-range/slide-range.constants.d.ts +13 -0
  165. package/dist/core/features/slide-range/slide-range.logic.d.ts +42 -0
  166. package/dist/core/features/slide-range/slide-range.type.d.ts +33 -0
  167. package/dist/core/features/switch/index.d.ts +3 -0
  168. package/dist/core/features/switch/switch.constants.d.ts +10 -0
  169. package/dist/core/features/switch/switch.logic.d.ts +27 -0
  170. package/dist/core/features/switch/switch.type.d.ts +28 -0
  171. package/dist/core/features/tabs/index.d.ts +6 -0
  172. package/dist/core/features/tabs/tab.constants.d.ts +6 -0
  173. package/dist/core/features/tabs/tab.logic.d.ts +9 -0
  174. package/dist/core/features/tabs/tab.type.d.ts +11 -0
  175. package/dist/core/features/tabs/tabs.constants.d.ts +9 -0
  176. package/dist/core/features/tabs/tabs.logic.d.ts +10 -0
  177. package/dist/core/features/tabs/tabs.type.d.ts +55 -0
  178. package/dist/core/features/tag/index.d.ts +3 -0
  179. package/dist/core/features/tag/tag.constants.d.ts +7 -0
  180. package/dist/core/features/tag/tag.logic.d.ts +4 -0
  181. package/dist/core/features/tag/tag.type.d.ts +14 -0
  182. package/dist/core/features/toast/index.d.ts +5 -0
  183. package/dist/core/features/toast/toast-content.constants.d.ts +8 -0
  184. package/dist/core/features/toast/toast-content.logic.d.ts +6 -0
  185. package/dist/core/features/toast/toast.constants.d.ts +6 -0
  186. package/dist/core/features/toast/toast.logic.d.ts +4 -0
  187. package/dist/core/features/toast/toast.type.d.ts +26 -0
  188. package/dist/core/features/toolbar/index.d.ts +3 -0
  189. package/dist/core/features/toolbar/toolbar.constants.d.ts +8 -0
  190. package/dist/core/features/toolbar/toolbar.logic.d.ts +7 -0
  191. package/dist/core/features/toolbar/toolbar.type.d.ts +12 -0
  192. package/dist/core/features/tooltip/index.d.ts +3 -0
  193. package/dist/core/features/tooltip/tooltip.constants.d.ts +8 -0
  194. package/dist/core/features/tooltip/tooltip.logic.d.ts +12 -0
  195. package/dist/core/features/tooltip/tooltip.type.d.ts +18 -0
  196. package/dist/core/index.d.ts +2 -0
  197. package/dist/core/utils/element.d.ts +8 -0
  198. package/dist/core/utils/events.d.ts +4 -0
  199. package/dist/core/utils/index.d.ts +3 -0
  200. package/dist/core/utils/style.d.ts +20 -0
  201. package/dist/index.d.ts +1 -1
  202. package/package.json +1 -1
@@ -1,4 +1,4 @@
1
- import { ActionButton, ActionComposableProps } from '../../../../core';
1
+ import { ActionButton, ActionComposableProps } from '../../core';
2
2
  export declare const useAction: () => {
3
3
  open: (props: ActionComposableProps) => void;
4
4
  close: (type?: string) => void;
@@ -10,7 +10,7 @@ export declare const useAction: () => {
10
10
  actions: {
11
11
  text?: string | undefined;
12
12
  role?: string | undefined;
13
- variant?: import('../../../../core').ButtonVariant | undefined;
13
+ variant?: import('../../core').ButtonVariant | undefined;
14
14
  shadow?: boolean | undefined;
15
15
  handler?: (() => void) | undefined;
16
16
  data?: unknown;
@@ -19,7 +19,7 @@ export declare const useAction: () => {
19
19
  shape?: string | undefined;
20
20
  divider?: boolean | undefined;
21
21
  shadow?: boolean | undefined;
22
- placement?: import('../../../../core').ActionPlacement | undefined;
22
+ placement?: import('../../core').ActionPlacement | undefined;
23
23
  onClose?: ((type?: string) => void) | undefined;
24
24
  onChoose?: ((btn?: ActionButton) => void) | undefined;
25
25
  } | null, ActionComposableProps | {
@@ -28,7 +28,7 @@ export declare const useAction: () => {
28
28
  actions: {
29
29
  text?: string | undefined;
30
30
  role?: string | undefined;
31
- variant?: import('../../../../core').ButtonVariant | undefined;
31
+ variant?: import('../../core').ButtonVariant | undefined;
32
32
  shadow?: boolean | undefined;
33
33
  handler?: (() => void) | undefined;
34
34
  data?: unknown;
@@ -37,7 +37,7 @@ export declare const useAction: () => {
37
37
  shape?: string | undefined;
38
38
  divider?: boolean | undefined;
39
39
  shadow?: boolean | undefined;
40
- placement?: import('../../../../core').ActionPlacement | undefined;
40
+ placement?: import('../../core').ActionPlacement | undefined;
41
41
  onClose?: ((type?: string) => void) | undefined;
42
42
  onChoose?: ((btn?: ActionButton) => void) | undefined;
43
43
  } | null>;
@@ -1,4 +1,4 @@
1
- import { ActionButton, ActionProps } from '../../../../core';
1
+ import { ActionButton, ActionProps } from '../../core';
2
2
  declare const _default: import('vue').DefineComponent<ActionProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
3
3
  close: (type?: string | undefined) => any;
4
4
  choose: (btn: ActionButton) => any;
@@ -9,7 +9,7 @@ declare const _default: import('vue').DefineComponent<ActionProps, {}, {}, {}, {
9
9
  role: string;
10
10
  shape: string;
11
11
  divider: boolean;
12
- placement: import('../../../../core').ActionPlacement;
12
+ placement: import('../../core').ActionPlacement;
13
13
  shadow: boolean;
14
14
  visible: boolean;
15
15
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
@@ -1,11 +1,11 @@
1
- import { AppProps } from '../../../../core';
1
+ import { AppProps } from '../../core';
2
2
  declare const _default: import('vue').DefineComponent<AppProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<AppProps> & Readonly<{}>, {
3
3
  role: string;
4
4
  shape: string;
5
5
  divider: boolean;
6
- direction: import('../../../../core').AppDirection;
6
+ direction: import('../../core').AppDirection;
7
7
  shadow: boolean;
8
8
  triple: boolean;
9
- data: import('../../../../core').AppData;
9
+ data: import('../../core').AppData;
10
10
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
11
11
  export default _default;
@@ -1,4 +1,4 @@
1
- import { AvatarProps } from '../../../../core';
1
+ import { AvatarProps } from '../../core';
2
2
  declare const _default: import('vue').DefineComponent<AvatarProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<AvatarProps> & Readonly<{}>, {
3
3
  role: string;
4
4
  size: string | number;
@@ -1,7 +1,7 @@
1
- import { ButtonProps } from '../../../../core';
1
+ import { ButtonProps } from '../../core';
2
2
  declare const _default: import('vue').DefineComponent<ButtonProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<ButtonProps> & Readonly<{}>, {
3
- size: import('../../../../core').ButtonSize;
4
- variant: import('../../../../core').ButtonVariant;
3
+ size: import('../../core').ButtonSize;
4
+ variant: import('../../core').ButtonVariant;
5
5
  shadow: boolean;
6
6
  block: boolean;
7
7
  loading: boolean;
@@ -1,4 +1,4 @@
1
- import { CableProps } from '../../../../core';
1
+ import { CableProps } from '../../core';
2
2
  declare const _default: import('vue').DefineComponent<CableProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<CableProps> & Readonly<{}>, {
3
3
  placement: string;
4
4
  keyboard: boolean;
@@ -1,4 +1,4 @@
1
- import { CardProps } from '../../../../../core';
1
+ import { CardProps } from '../../../core';
2
2
  declare const _default: import('vue').DefineComponent<CardProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<CardProps> & Readonly<{}>, {
3
3
  role: string;
4
4
  shape: string;
@@ -1,4 +1,4 @@
1
- import { CheckboxProps } from '../../../../core';
1
+ import { CheckboxProps } from '../../core';
2
2
  declare const _default: import('vue').DefineComponent<CheckboxProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
3
3
  blur: () => any;
4
4
  focus: () => any;
@@ -8,8 +8,8 @@ declare const _default: import('vue').DefineComponent<CheckboxProps, {}, {}, {},
8
8
  onFocus?: (() => any) | undefined;
9
9
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
10
10
  }>, {
11
- size: import('../../../../core').CheckboxSize;
12
- variant: import('../../../../core').CheckboxVariant;
11
+ size: import('../../core').CheckboxSize;
12
+ variant: import('../../core').CheckboxVariant;
13
13
  disabled: boolean;
14
14
  shadow: boolean;
15
15
  modelValue: boolean;
@@ -1,4 +1,4 @@
1
- import { CollapseProps } from '../../../../core';
1
+ import { CollapseProps } from '../../core';
2
2
  declare const _default: import('vue').DefineComponent<CollapseProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
3
3
  "update:modelValue": (value: boolean) => any;
4
4
  }, string, import('vue').PublicProps, Readonly<CollapseProps> & Readonly<{
@@ -1,4 +1,4 @@
1
- import { DecisionModalButton, DecisionModalComposableProps } from '../../../../core';
1
+ import { DecisionModalButton, DecisionModalComposableProps } from '../../core';
2
2
  export declare const useDecisionModal: () => {
3
3
  open: (props: DecisionModalComposableProps) => void;
4
4
  close: (type?: string) => void;
@@ -11,7 +11,7 @@ export declare const useDecisionModal: () => {
11
11
  actions: {
12
12
  text?: string | undefined;
13
13
  role?: string | undefined;
14
- variant?: import('../../../../core').ButtonVariant | undefined;
14
+ variant?: import('../../core').ButtonVariant | undefined;
15
15
  handler?: (() => void) | undefined;
16
16
  data?: unknown;
17
17
  }[];
@@ -20,7 +20,7 @@ export declare const useDecisionModal: () => {
20
20
  role?: string | undefined;
21
21
  shape?: string | undefined;
22
22
  divider?: boolean | undefined;
23
- flow?: import('../../../../core').DecisionModalFlow | undefined;
23
+ flow?: import('../../core').DecisionModalFlow | undefined;
24
24
  keepalive?: boolean | undefined;
25
25
  onClose?: ((type?: string) => void) | undefined;
26
26
  onChoose?: ((btn?: DecisionModalButton) => void) | undefined;
@@ -31,7 +31,7 @@ export declare const useDecisionModal: () => {
31
31
  actions: {
32
32
  text?: string | undefined;
33
33
  role?: string | undefined;
34
- variant?: import('../../../../core').ButtonVariant | undefined;
34
+ variant?: import('../../core').ButtonVariant | undefined;
35
35
  handler?: (() => void) | undefined;
36
36
  data?: unknown;
37
37
  }[];
@@ -40,7 +40,7 @@ export declare const useDecisionModal: () => {
40
40
  role?: string | undefined;
41
41
  shape?: string | undefined;
42
42
  divider?: boolean | undefined;
43
- flow?: import('../../../../core').DecisionModalFlow | undefined;
43
+ flow?: import('../../core').DecisionModalFlow | undefined;
44
44
  keepalive?: boolean | undefined;
45
45
  onClose?: ((type?: string) => void) | undefined;
46
46
  onChoose?: ((btn?: DecisionModalButton) => void) | undefined;
@@ -1,4 +1,4 @@
1
- import { DecisionModalButton, DecisionModalProps } from '../../../../core';
1
+ import { DecisionModalButton, DecisionModalProps } from '../../core';
2
2
  declare const _default: import('vue').DefineComponent<DecisionModalProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
3
3
  close: (type?: string | undefined) => any;
4
4
  choose: (btn: DecisionModalButton) => any;
@@ -12,6 +12,6 @@ declare const _default: import('vue').DefineComponent<DecisionModalProps, {}, {}
12
12
  placement: string;
13
13
  keepalive: boolean;
14
14
  visible: boolean;
15
- flow: import('../../../../core').DecisionModalFlow;
15
+ flow: import('../../core').DecisionModalFlow;
16
16
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
17
17
  export default _default;
@@ -1,5 +1,5 @@
1
- import { DividerProps } from '../../../../core';
1
+ import { DividerProps } from '../../core';
2
2
  declare const _default: import('vue').DefineComponent<DividerProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<DividerProps> & Readonly<{}>, {
3
- direction: import('../../../../core').DividerDirection;
3
+ direction: import('../../core').DividerDirection;
4
4
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
5
5
  export default _default;
@@ -1,4 +1,4 @@
1
- import { DropdownProps } from '../../../../core';
1
+ import { DropdownProps } from '../../core';
2
2
  declare const _default: import('vue').DefineComponent<DropdownProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
3
3
  close: () => any;
4
4
  "update:modelValue": (open: boolean) => any;
@@ -10,10 +10,10 @@ declare const _default: import('vue').DefineComponent<DropdownProps, {}, {}, {},
10
10
  }>, {
11
11
  role: string;
12
12
  shape: string;
13
- size: import('../../../../core').DropdownSize;
14
- direction: import('../../../../core').AppDirection;
13
+ size: import('../../core').DropdownSize;
14
+ direction: import('../../core').AppDirection;
15
15
  disabled: boolean;
16
- placement: import('../../../../core').DropdownPlacement;
16
+ placement: import('../../core').DropdownPlacement;
17
17
  shadow: boolean;
18
18
  modelValue: boolean;
19
19
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
@@ -1,4 +1,4 @@
1
- import { FieldProps } from '../../../../core';
1
+ import { FieldProps } from '../../core';
2
2
  declare const _default: import('vue').DefineComponent<FieldProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
3
3
  beforeinput: (ev: Event) => any;
4
4
  blur: (ev: FocusEvent) => any;
@@ -14,14 +14,14 @@ declare const _default: import('vue').DefineComponent<FieldProps, {}, {}, {}, {}
14
14
  }>, {
15
15
  role: string;
16
16
  shape: string;
17
- size: import('../../../../core').FieldSize;
18
- direction: import('../../../../core').AppDirection;
17
+ size: import('../../core').FieldSize;
18
+ direction: import('../../core').AppDirection;
19
19
  line: number | string;
20
- variant: import('../../../../core').FieldVariant;
20
+ variant: import('../../core').FieldVariant;
21
21
  disabled: boolean;
22
22
  message: string;
23
23
  shadow: boolean;
24
- type: import('../../../../core').FieldType;
24
+ type: import('../../core').FieldType;
25
25
  modelValue: string | number;
26
26
  readonly: boolean;
27
27
  placeholder: string;
@@ -1,5 +1,5 @@
1
- import { FormGroupProps } from '../../../../core';
1
+ import { FormGroupProps } from '../../core';
2
2
  declare const _default: import('vue').DefineComponent<FormGroupProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<FormGroupProps> & Readonly<{}>, {
3
- direction: import('../../../../core').FormGroupDirection;
3
+ direction: import('../../core').FormGroupDirection;
4
4
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
5
5
  export default _default;
@@ -1,4 +1,4 @@
1
- import { GestureIndicatorProps } from '../../../../core';
1
+ import { GestureIndicatorProps } from '../../core';
2
2
  declare const _default: import('vue').DefineComponent<GestureIndicatorProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<GestureIndicatorProps> & Readonly<{}>, {
3
3
  role: string;
4
4
  placement: string;
@@ -1,3 +1,3 @@
1
- import { ImageProps } from '../../../../core';
1
+ import { ImageProps } from '../../core';
2
2
  declare const _default: import('vue').DefineComponent<ImageProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<ImageProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
3
3
  export default _default;
@@ -1,5 +1,5 @@
1
- import { FlexProps } from '../../../../../core';
1
+ import { FlexProps } from '../../../core';
2
2
  declare const _default: import('vue').DefineComponent<FlexProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<FlexProps> & Readonly<{}>, {
3
- options: import('../../../../../core').FlexOption[];
3
+ options: import('../../../core').FlexOption[];
4
4
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
5
5
  export default _default;
@@ -1,5 +1,5 @@
1
- import { FlexItemProps } from '../../../../../core';
1
+ import { FlexItemProps } from '../../../core';
2
2
  declare const _default: import('vue').DefineComponent<FlexItemProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<FlexItemProps> & Readonly<{}>, {
3
- options: import('../../../../../core').FlexItemOption[];
3
+ options: import('../../../core').FlexItemOption[];
4
4
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
5
5
  export default _default;
@@ -1,5 +1,5 @@
1
- import { GridProps } from '../../../../../core';
1
+ import { GridProps } from '../../../core';
2
2
  declare const _default: import('vue').DefineComponent<GridProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<GridProps> & Readonly<{}>, {
3
- options: import('../../../../../core').GridOption[];
3
+ options: import('../../../core').GridOption[];
4
4
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
5
5
  export default _default;
@@ -1,5 +1,5 @@
1
- import { GridItemProps } from '../../../../../core';
1
+ import { GridItemProps } from '../../../core';
2
2
  declare const _default: import('vue').DefineComponent<GridItemProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<GridItemProps> & Readonly<{}>, {
3
- options: import('../../../../../core').GridItemOption[];
3
+ options: import('../../../core').GridItemOption[];
4
4
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
5
5
  export default _default;
@@ -1,4 +1,4 @@
1
- import { ModalProps } from '../../../../core';
1
+ import { ModalProps } from '../../core';
2
2
  declare const _default: import('vue').DefineComponent<ModalProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
3
3
  close: (type?: string | undefined) => any;
4
4
  }, string, import('vue').PublicProps, Readonly<ModalProps> & Readonly<{
@@ -1,4 +1,4 @@
1
- import { PresentProps, RenderOptions } from '../../../../core';
1
+ import { PresentProps, RenderOptions } from '../../core';
2
2
  declare const _default: import('vue').DefineComponent<PresentProps, {
3
3
  render: (data: RenderOptions) => void;
4
4
  open: () => void;
@@ -11,7 +11,7 @@ declare const _default: import('vue').DefineComponent<PresentProps, {
11
11
  duration: number;
12
12
  backdrop: "display" | "none" | "transparent";
13
13
  bounce: number | string | boolean;
14
- placement: import('../../../../core').PresentPlacement;
14
+ placement: import('../../core').PresentPlacement;
15
15
  keepalive: boolean;
16
16
  visible: boolean;
17
17
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
@@ -1,6 +1,6 @@
1
- import { RadioProps } from '../../../../../core';
1
+ import { RadioProps } from '../../../core';
2
2
  declare const _default: import('vue').DefineComponent<RadioProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<RadioProps> & Readonly<{}>, {
3
- size: import('../../../../../core').RadioSize;
3
+ size: import('../../../core').RadioSize;
4
4
  disabled: boolean;
5
5
  shadow: boolean;
6
6
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
@@ -1,11 +1,11 @@
1
- import { RadioGroupProps } from '../../../../../core';
1
+ import { RadioGroupProps } from '../../../core';
2
2
  declare const _default: import('vue').DefineComponent<RadioGroupProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
3
3
  "update:modelValue": (value: string | number) => any;
4
4
  }, string, import('vue').PublicProps, Readonly<RadioGroupProps> & Readonly<{
5
5
  "onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
6
6
  }>, {
7
- direction: import('../../../../../core').RadioGroupDirection;
8
- variant: import('../../../../../core').RadioVariant;
7
+ direction: import('../../../core').RadioGroupDirection;
8
+ variant: import('../../../core').RadioVariant;
9
9
  disabled: boolean;
10
10
  shadow: boolean;
11
11
  readonly: boolean;
@@ -1,12 +1,12 @@
1
1
  declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
2
2
  cancel: () => any;
3
3
  start: () => any;
4
- end: (event: import('../../../../core').RefreshEvent) => any;
5
- move: (event: import('../../../../core').RefreshEvent) => any;
4
+ end: (event: import('../../core').RefresherEventData) => any;
5
+ move: (event: import('../../core').RefresherEventData) => any;
6
6
  }, string, import('vue').PublicProps, Readonly<{}> & Readonly<{
7
7
  onCancel?: (() => any) | undefined;
8
8
  onStart?: (() => any) | undefined;
9
- onEnd?: ((event: import('../../../../core').RefreshEvent) => any) | undefined;
10
- onMove?: ((event: import('../../../../core').RefreshEvent) => any) | undefined;
9
+ onEnd?: ((event: import('../../core').RefresherEventData) => any) | undefined;
10
+ onMove?: ((event: import('../../core').RefresherEventData) => any) | undefined;
11
11
  }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
12
12
  export default _default;
@@ -1,11 +1,11 @@
1
- import { RouteNavigatorProps, RouteNavigatorTransformState } from '../../../../../core';
1
+ import { RouteNavigatorProps, RouteNavigatorTransformState } from '../../../core';
2
2
  declare const _default: import('vue').DefineComponent<RouteNavigatorProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
3
3
  transform: (value: RouteNavigatorTransformState) => any;
4
4
  }, string, import('vue').PublicProps, Readonly<RouteNavigatorProps> & Readonly<{
5
5
  onTransform?: ((value: RouteNavigatorTransformState) => any) | undefined;
6
6
  }>, {
7
7
  direction: "left" | "right" | "up" | "down";
8
- variant: import('../../../../../core').RouteNavigatorVariant;
8
+ variant: import('../../../core').RouteNavigatorVariant;
9
9
  keepalive: boolean;
10
10
  gesture: boolean;
11
11
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
@@ -1,3 +1,3 @@
1
- import { RouteProviderProps } from '../../../../../core';
1
+ import { RouteProviderProps } from '../../../core';
2
2
  declare const _default: import('vue').DefineComponent<RouteProviderProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<RouteProviderProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
3
3
  export default _default;
@@ -1,5 +1,5 @@
1
1
  import { RouteLocationMatched } from 'vue-router';
2
- import { RouteStack } from '../../../../../core';
2
+ import { RouteStack } from '../../../core';
3
3
  export declare const useRouteWrapper: () => {
4
4
  stack: import('vue').ShallowRef<RouteStack[], RouteStack[]>;
5
5
  updateRoutes: (matched: RouteLocationMatched[]) => void;
@@ -1,4 +1,4 @@
1
- import { RouteWrapperProps } from '../../../../../core';
1
+ import { RouteWrapperProps } from '../../../core';
2
2
  declare const _default: import('vue').DefineComponent<RouteWrapperProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<RouteWrapperProps> & Readonly<{}>, {
3
3
  homeRouteName: string;
4
4
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
@@ -1,3 +1,3 @@
1
- import { RouteStack } from '../../../../core';
1
+ import { RouteStack } from '../../core';
2
2
  /** Deep-clone the nested route stack tree (each level has its own `stack` branch). */
3
3
  export declare const clone: (value: RouteStack[]) => RouteStack[];
@@ -1,4 +1,4 @@
1
- import { SegmentedFieldProps } from '../../../../core';
1
+ import { SegmentedFieldProps } from '../../core';
2
2
  declare const _default: import('vue').DefineComponent<SegmentedFieldProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
3
3
  blur: (ev: FocusEvent) => any;
4
4
  focus: (ev: FocusEvent) => any;
@@ -12,9 +12,9 @@ declare const _default: import('vue').DefineComponent<SegmentedFieldProps, {}, {
12
12
  "onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
13
13
  onComplete?: ((value: string[]) => any) | undefined;
14
14
  }>, {
15
- size: import('../../../../core').SegmentedFieldSize;
16
- direction: import('../../../../core').AppDirection;
17
- variant: import('../../../../core').SegmentedFieldVariant;
15
+ size: import('../../core').SegmentedFieldSize;
16
+ direction: import('../../core').AppDirection;
17
+ variant: import('../../core').SegmentedFieldVariant;
18
18
  disabled: boolean;
19
19
  length: number;
20
20
  message: string;
@@ -1,4 +1,4 @@
1
- import { SelectOption, SelectProps } from '../../../../core';
1
+ import { SelectOption, SelectProps } from '../../core';
2
2
  declare const _default: import('vue').DefineComponent<SelectProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
3
3
  select: (option: SelectOption) => any;
4
4
  "update:modelValue": (value: string) => any;
@@ -6,9 +6,9 @@ declare const _default: import('vue').DefineComponent<SelectProps, {}, {}, {}, {
6
6
  onSelect?: ((option: SelectOption) => any) | undefined;
7
7
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
8
8
  }>, {
9
- size: import('../../../../core').FieldSize;
10
- direction: import('../../../../core').AppDirection;
11
- variant: import('../../../../core').FieldVariant;
9
+ size: import('../../core').FieldSize;
10
+ direction: import('../../core').AppDirection;
11
+ variant: import('../../core').FieldVariant;
12
12
  disabled: boolean;
13
13
  message: string;
14
14
  shadow: boolean;
@@ -1,4 +1,4 @@
1
- import { SkeletonProps } from '../../../../core';
1
+ import { SkeletonProps } from '../../core';
2
2
  declare const _default: import('vue').DefineComponent<SkeletonProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<SkeletonProps> & Readonly<{}>, {
3
3
  height: string | number;
4
4
  width: string | number;
@@ -1,4 +1,4 @@
1
- import { SlideRangeProps, SlideRangeValue } from '../../../../core';
1
+ import { SlideRangeProps, SlideRangeValue } from '../../core';
2
2
  declare const _default: import('vue').DefineComponent<SlideRangeProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
3
3
  change: (value: SlideRangeValue) => any;
4
4
  "update:modelValue": (value: SlideRangeValue) => any;
@@ -1,10 +1,10 @@
1
- import { SwitchProps } from '../../../../core';
1
+ import { SwitchProps } from '../../core';
2
2
  declare const _default: import('vue').DefineComponent<SwitchProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
3
3
  "update:modelValue": (value: boolean) => any;
4
4
  }, string, import('vue').PublicProps, Readonly<SwitchProps> & Readonly<{
5
5
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
6
6
  }>, {
7
- size: import('../../../../core').SwitchSize;
7
+ size: import('../../core').SwitchSize;
8
8
  bounce: number | string;
9
9
  shadow: boolean;
10
10
  modelValue: boolean;
@@ -1,4 +1,4 @@
1
- import { TabProps } from '../../../../../core';
1
+ import { TabProps } from '../../../core';
2
2
  declare const _default: import('vue').DefineComponent<TabProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<TabProps> & Readonly<{}>, {
3
3
  disabled: boolean;
4
4
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
@@ -1,13 +1,13 @@
1
- import { TabsProps } from '../../../../../core';
1
+ import { TabsProps } from '../../../core';
2
2
  declare const _default: import('vue').DefineComponent<TabsProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
3
3
  "update:modelValue": (value: string) => any;
4
4
  }, string, import('vue').PublicProps, Readonly<TabsProps> & Readonly<{
5
5
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
6
6
  }>, {
7
- size: import('../../../../../core').TabsSize;
8
- variant: import('../../../../../core').TabsVariant;
7
+ size: import('../../../core').TabsSize;
8
+ variant: import('../../../core').TabsVariant;
9
9
  transition: boolean;
10
- placement: import('../../../../../core').TabsPlacement;
10
+ placement: import('../../../core').TabsPlacement;
11
11
  border: number[];
12
12
  margin: number[];
13
13
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
@@ -1,6 +1,6 @@
1
- import { TagProps } from '../../../../core';
1
+ import { TagProps } from '../../core';
2
2
  declare const _default: import('vue').DefineComponent<TagProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<TagProps> & Readonly<{}>, {
3
- size: import('../../../../core').TagSize;
4
- variant: import('../../../../core').TagVariant;
3
+ size: import('../../core').TagSize;
4
+ variant: import('../../core').TagVariant;
5
5
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
6
6
  export default _default;
@@ -1,5 +1,5 @@
1
- import { ToastProps } from '../../../../../core';
1
+ import { ToastProps } from '../../../core';
2
2
  declare const _default: import('vue').DefineComponent<ToastProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<ToastProps> & Readonly<{}>, {
3
- placement: import('../../../../../core').ToastPlacement;
3
+ placement: import('../../../core').ToastPlacement;
4
4
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
5
5
  export default _default;
@@ -1,11 +1,11 @@
1
- import { ToastContentProps } from '../../../../../core';
1
+ import { ToastContentProps } from '../../../core';
2
2
  declare const _default: import('vue').DefineComponent<ToastContentProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
3
3
  close: () => any;
4
4
  }, string, import('vue').PublicProps, Readonly<ToastContentProps> & Readonly<{
5
5
  onClose?: (() => any) | undefined;
6
6
  }>, {
7
7
  duration: number;
8
- variant: import('../../../../../core').ToastContentVariant;
8
+ variant: import('../../../core').ToastContentVariant;
9
9
  message: string;
10
10
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
11
11
  export default _default;
@@ -1,20 +1,20 @@
1
- import { ToastContentProps } from '../../../../core';
1
+ import { ToastContentProps } from '../../core';
2
2
  export declare const useToast: () => {
3
3
  messages: import('vue').Ref<{
4
4
  id?: number | undefined;
5
5
  message: string;
6
6
  duration?: number | undefined;
7
7
  role?: string | undefined;
8
- variant?: import('../../../../core').ToastContentVariant | undefined;
9
- placement?: import('../../../../core').ToastPlacement | undefined;
8
+ variant?: import('../../core').ToastContentVariant | undefined;
9
+ placement?: import('../../core').ToastPlacement | undefined;
10
10
  shape?: string | undefined;
11
11
  }[], ToastContentProps[] | {
12
12
  id?: number | undefined;
13
13
  message: string;
14
14
  duration?: number | undefined;
15
15
  role?: string | undefined;
16
- variant?: import('../../../../core').ToastContentVariant | undefined;
17
- placement?: import('../../../../core').ToastPlacement | undefined;
16
+ variant?: import('../../core').ToastContentVariant | undefined;
17
+ placement?: import('../../core').ToastPlacement | undefined;
18
18
  shape?: string | undefined;
19
19
  }[]>;
20
20
  open: (message: ToastContentProps) => void;
@@ -1,4 +1,4 @@
1
- import { ToolbarProps } from '../../../../core';
1
+ import { ToolbarProps } from '../../core';
2
2
  declare const _default: import('vue').DefineComponent<ToolbarProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<ToolbarProps> & Readonly<{}>, {
3
3
  divider: boolean;
4
4
  placement: string | null;
@@ -1,7 +1,7 @@
1
- import { TooltipProps } from '../../../../core';
1
+ import { TooltipProps } from '../../core';
2
2
  declare const _default: import('vue').DefineComponent<TooltipProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<TooltipProps> & Readonly<{}>, {
3
- size: import('../../../../core').TooltipSize;
3
+ size: import('../../core').TooltipSize;
4
4
  disabled: boolean;
5
- placement: import('../../../../core').TooltipPlacement;
5
+ placement: import('../../core').TooltipPlacement;
6
6
  }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
7
7
  export default _default;