@toife/vue 3.3.9 → 3.3.10
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.
- package/dist/components/action/action.composable.d.ts +5 -5
- package/dist/components/action/action.vue.d.ts +2 -2
- package/dist/components/app/app.vue.d.ts +3 -3
- package/dist/components/avatar/avatar.vue.d.ts +1 -1
- package/dist/components/button/button.vue.d.ts +3 -3
- package/dist/components/cable/cable.vue.d.ts +1 -1
- package/dist/components/card/card/card.vue.d.ts +1 -1
- package/dist/components/checkbox/checkbox.vue.d.ts +3 -3
- package/dist/components/collapse/collapse.vue.d.ts +1 -1
- package/dist/components/decision-modal/decision-modal.composable.d.ts +5 -5
- package/dist/components/decision-modal/decision-modal.vue.d.ts +2 -2
- package/dist/components/divider/divider.vue.d.ts +2 -2
- package/dist/components/dropdown/dropdown.vue.d.ts +4 -4
- package/dist/components/field/field.vue.d.ts +5 -5
- package/dist/components/form-group/form-group.vue.d.ts +2 -2
- package/dist/components/gesture-indicator/gesture-indicator.vue.d.ts +1 -1
- package/dist/components/image/image.vue.d.ts +1 -1
- package/dist/components/layout/flex/flex.vue.d.ts +2 -2
- package/dist/components/layout/flex-item/flex-item.vue.d.ts +2 -2
- package/dist/components/layout/grid/grid.vue.d.ts +2 -2
- package/dist/components/layout/grid-item/grid-item.vue.d.ts +2 -2
- package/dist/components/modal/modal.vue.d.ts +1 -1
- package/dist/components/present/present.vue.d.ts +2 -2
- package/dist/components/radio/radio/radio.vue.d.ts +2 -2
- package/dist/components/radio/radio-group/radio-group.vue.d.ts +3 -3
- package/dist/components/refresher/refresher.vue.d.ts +4 -4
- package/dist/components/route/route-navigator/route-navigator.vue.d.ts +2 -2
- package/dist/components/route/route-provider/route-provider.vue.d.ts +1 -1
- package/dist/components/route/route-wrapper/route-wrapper.composable.d.ts +1 -1
- package/dist/components/route/route-wrapper/route-wrapper.vue.d.ts +1 -1
- package/dist/components/route/route.util.d.ts +1 -1
- package/dist/components/segmented-field/segmented-field.vue.d.ts +4 -4
- package/dist/components/select/select.vue.d.ts +4 -4
- package/dist/components/skeleton/skeleton.vue.d.ts +1 -1
- package/dist/components/slide-range/slide-range.vue.d.ts +1 -1
- package/dist/components/switch/switch.vue.d.ts +2 -2
- package/dist/components/tabs/tab/tab.vue.d.ts +1 -1
- package/dist/components/tabs/tabs/tabs.vue.d.ts +4 -4
- package/dist/components/tag/tag.vue.d.ts +3 -3
- package/dist/components/toast/toast/toast.vue.d.ts +2 -2
- package/dist/components/toast/toast-content/toast-content.vue.d.ts +2 -2
- package/dist/components/toast/toast.composable.d.ts +5 -5
- package/dist/components/toolbar/toolbar.vue.d.ts +1 -1
- package/dist/components/tooltip/tooltip.vue.d.ts +3 -3
- package/dist/core/features/action/action.constants.d.ts +11 -0
- package/dist/core/features/action/action.logic.d.ts +8 -0
- package/dist/core/features/action/action.type.d.ts +46 -0
- package/dist/core/features/action/index.d.ts +3 -0
- package/dist/core/features/app/app.constants.d.ts +16 -0
- package/dist/core/features/app/app.logic.d.ts +4 -0
- package/dist/core/features/app/app.type.d.ts +36 -0
- package/dist/core/features/app/index.d.ts +3 -0
- package/dist/core/features/avatar/avatar.constants.d.ts +9 -0
- package/dist/core/features/avatar/avatar.logic.d.ts +10 -0
- package/dist/core/features/avatar/avatar.type.d.ts +14 -0
- package/dist/core/features/avatar/index.d.ts +3 -0
- package/dist/core/features/button/button.constants.d.ts +10 -0
- package/dist/core/features/button/button.logic.d.ts +11 -0
- package/dist/core/features/button/button.type.d.ts +20 -0
- package/dist/core/features/button/index.d.ts +3 -0
- package/dist/core/features/cable/cable.constants.d.ts +5 -0
- package/dist/core/features/cable/cable.logic.d.ts +4 -0
- package/dist/core/features/cable/cable.type.d.ts +10 -0
- package/dist/core/features/cable/index.d.ts +3 -0
- package/dist/core/features/card/card-body.logic.d.ts +3 -0
- package/dist/core/features/card/card-footer.logic.d.ts +6 -0
- package/dist/core/features/card/card-header.logic.d.ts +6 -0
- package/dist/core/features/card/card.constants.d.ts +6 -0
- package/dist/core/features/card/card.logic.d.ts +6 -0
- package/dist/core/features/card/card.type.d.ts +21 -0
- package/dist/core/features/card/index.d.ts +6 -0
- package/dist/core/features/checkbox/checkbox.constants.d.ts +11 -0
- package/dist/core/features/checkbox/checkbox.logic.d.ts +13 -0
- package/dist/core/features/checkbox/checkbox.type.d.ts +28 -0
- package/dist/core/features/checkbox/index.d.ts +3 -0
- package/dist/core/features/collapse/collapse.constants.d.ts +9 -0
- package/dist/core/features/collapse/collapse.logic.d.ts +21 -0
- package/dist/core/features/collapse/collapse.type.d.ts +23 -0
- package/dist/core/features/collapse/index.d.ts +3 -0
- package/dist/core/features/container/container.logic.d.ts +3 -0
- package/dist/core/features/container/index.d.ts +1 -0
- package/dist/core/features/decision-modal/decision-modal.constants.d.ts +12 -0
- package/dist/core/features/decision-modal/decision-modal.logic.d.ts +16 -0
- package/dist/core/features/decision-modal/decision-modal.type.d.ts +39 -0
- package/dist/core/features/decision-modal/index.d.ts +3 -0
- package/dist/core/features/divider/divider.constants.d.ts +6 -0
- package/dist/core/features/divider/divider.logic.d.ts +6 -0
- package/dist/core/features/divider/divider.type.d.ts +9 -0
- package/dist/core/features/divider/index.d.ts +3 -0
- package/dist/core/features/dropdown/dropdown.constants.d.ts +13 -0
- package/dist/core/features/dropdown/dropdown.logic.d.ts +11 -0
- package/dist/core/features/dropdown/dropdown.type.d.ts +29 -0
- package/dist/core/features/dropdown/index.d.ts +3 -0
- package/dist/core/features/field/field.constants.d.ts +19 -0
- package/dist/core/features/field/field.logic.d.ts +21 -0
- package/dist/core/features/field/field.type.d.ts +47 -0
- package/dist/core/features/field/index.d.ts +3 -0
- package/dist/core/features/form-group/form-group.constants.d.ts +6 -0
- package/dist/core/features/form-group/form-group.logic.d.ts +4 -0
- package/dist/core/features/form-group/form-group.type.d.ts +7 -0
- package/dist/core/features/form-group/index.d.ts +3 -0
- package/dist/core/features/gesture-indicator/gesture-indicator.constants.d.ts +7 -0
- package/dist/core/features/gesture-indicator/gesture-indicator.logic.d.ts +4 -0
- package/dist/core/features/gesture-indicator/gesture-indicator.type.d.ts +8 -0
- package/dist/core/features/gesture-indicator/index.d.ts +3 -0
- package/dist/core/features/image/image.type.d.ts +4 -0
- package/dist/core/features/image/index.d.ts +1 -0
- package/dist/core/features/index.d.ts +33 -0
- package/dist/core/features/layout/flex-item.constants.d.ts +6 -0
- package/dist/core/features/layout/flex-item.logic.d.ts +7 -0
- package/dist/core/features/layout/flex-item.type.d.ts +10 -0
- package/dist/core/features/layout/flex.constants.d.ts +6 -0
- package/dist/core/features/layout/flex.logic.d.ts +7 -0
- package/dist/core/features/layout/flex.type.d.ts +12 -0
- package/dist/core/features/layout/grid-item.constants.d.ts +6 -0
- package/dist/core/features/layout/grid-item.logic.d.ts +7 -0
- package/dist/core/features/layout/grid-item.type.d.ts +12 -0
- package/dist/core/features/layout/grid.constants.d.ts +6 -0
- package/dist/core/features/layout/grid.logic.d.ts +7 -0
- package/dist/core/features/layout/grid.type.d.ts +10 -0
- package/dist/core/features/layout/index.d.ts +12 -0
- package/dist/core/features/modal/index.d.ts +3 -0
- package/dist/core/features/modal/modal.constants.d.ts +16 -0
- package/dist/core/features/modal/modal.logic.d.ts +5 -0
- package/dist/core/features/modal/modal.type.d.ts +26 -0
- package/dist/core/features/page/index.d.ts +1 -0
- package/dist/core/features/page/page.logic.d.ts +3 -0
- package/dist/core/features/present/index.d.ts +3 -0
- package/dist/core/features/present/present.constants.d.ts +18 -0
- package/dist/core/features/present/present.logic.d.ts +13 -0
- package/dist/core/features/present/present.type.d.ts +43 -0
- package/dist/core/features/radio/index.d.ts +6 -0
- package/dist/core/features/radio/radio-group.constants.d.ts +8 -0
- package/dist/core/features/radio/radio-group.logic.d.ts +4 -0
- package/dist/core/features/radio/radio-group.type.d.ts +28 -0
- package/dist/core/features/radio/radio.constants.d.ts +8 -0
- package/dist/core/features/radio/radio.logic.d.ts +13 -0
- package/dist/core/features/radio/radio.type.d.ts +24 -0
- package/dist/core/features/refresher/index.d.ts +2 -0
- package/dist/core/features/refresher/refresher.logic.d.ts +3 -0
- package/dist/core/features/refresher/refresher.type.d.ts +10 -0
- package/dist/core/features/route/index.d.ts +8 -0
- package/dist/core/features/route/route-navigator.constants.d.ts +9 -0
- package/dist/core/features/route/route-navigator.logic.d.ts +19 -0
- package/dist/core/features/route/route-navigator.type.d.ts +52 -0
- package/dist/core/features/route/route-provider.constants.d.ts +4 -0
- package/dist/core/features/route/route-provider.type.d.ts +7 -0
- package/dist/core/features/route/route-wrapper.constants.d.ts +6 -0
- package/dist/core/features/route/route-wrapper.type.d.ts +3 -0
- package/dist/core/features/route/route.type.d.ts +5 -0
- package/dist/core/features/segmented-field/index.d.ts +3 -0
- package/dist/core/features/segmented-field/segmented-field.constants.d.ts +17 -0
- package/dist/core/features/segmented-field/segmented-field.logic.d.ts +12 -0
- package/dist/core/features/segmented-field/segmented-field.type.d.ts +35 -0
- package/dist/core/features/select/index.d.ts +3 -0
- package/dist/core/features/select/select.constants.d.ts +15 -0
- package/dist/core/features/select/select.logic.d.ts +15 -0
- package/dist/core/features/select/select.type.d.ts +39 -0
- package/dist/core/features/skeleton/index.d.ts +3 -0
- package/dist/core/features/skeleton/skeleton.constants.d.ts +7 -0
- package/dist/core/features/skeleton/skeleton.logic.d.ts +7 -0
- package/dist/core/features/skeleton/skeleton.type.d.ts +12 -0
- package/dist/core/features/slide-range/index.d.ts +3 -0
- package/dist/core/features/slide-range/slide-range.constants.d.ts +13 -0
- package/dist/core/features/slide-range/slide-range.logic.d.ts +42 -0
- package/dist/core/features/slide-range/slide-range.type.d.ts +33 -0
- package/dist/core/features/switch/index.d.ts +3 -0
- package/dist/core/features/switch/switch.constants.d.ts +10 -0
- package/dist/core/features/switch/switch.logic.d.ts +27 -0
- package/dist/core/features/switch/switch.type.d.ts +28 -0
- package/dist/core/features/tabs/index.d.ts +6 -0
- package/dist/core/features/tabs/tab.constants.d.ts +6 -0
- package/dist/core/features/tabs/tab.logic.d.ts +9 -0
- package/dist/core/features/tabs/tab.type.d.ts +11 -0
- package/dist/core/features/tabs/tabs.constants.d.ts +9 -0
- package/dist/core/features/tabs/tabs.logic.d.ts +10 -0
- package/dist/core/features/tabs/tabs.type.d.ts +55 -0
- package/dist/core/features/tag/index.d.ts +3 -0
- package/dist/core/features/tag/tag.constants.d.ts +7 -0
- package/dist/core/features/tag/tag.logic.d.ts +4 -0
- package/dist/core/features/tag/tag.type.d.ts +14 -0
- package/dist/core/features/toast/index.d.ts +5 -0
- package/dist/core/features/toast/toast-content.constants.d.ts +8 -0
- package/dist/core/features/toast/toast-content.logic.d.ts +6 -0
- package/dist/core/features/toast/toast.constants.d.ts +6 -0
- package/dist/core/features/toast/toast.logic.d.ts +4 -0
- package/dist/core/features/toast/toast.type.d.ts +26 -0
- package/dist/core/features/toolbar/index.d.ts +3 -0
- package/dist/core/features/toolbar/toolbar.constants.d.ts +8 -0
- package/dist/core/features/toolbar/toolbar.logic.d.ts +7 -0
- package/dist/core/features/toolbar/toolbar.type.d.ts +12 -0
- package/dist/core/features/tooltip/index.d.ts +3 -0
- package/dist/core/features/tooltip/tooltip.constants.d.ts +8 -0
- package/dist/core/features/tooltip/tooltip.logic.d.ts +12 -0
- package/dist/core/features/tooltip/tooltip.type.d.ts +18 -0
- package/dist/core/index.d.ts +2 -0
- package/dist/core/utils/element.d.ts +8 -0
- package/dist/core/utils/events.d.ts +4 -0
- package/dist/core/utils/index.d.ts +3 -0
- package/dist/core/utils/style.d.ts +20 -0
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ActionButton, ActionComposableProps } from '
|
|
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('
|
|
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('
|
|
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('
|
|
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('
|
|
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 '
|
|
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('
|
|
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 '
|
|
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('
|
|
6
|
+
direction: import('../../core').AppDirection;
|
|
7
7
|
shadow: boolean;
|
|
8
8
|
triple: boolean;
|
|
9
|
-
data: import('
|
|
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 '
|
|
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 '
|
|
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('
|
|
4
|
-
variant: import('
|
|
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 '
|
|
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 '
|
|
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 '
|
|
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('
|
|
12
|
-
variant: import('
|
|
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 '
|
|
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 '
|
|
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('
|
|
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('
|
|
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('
|
|
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('
|
|
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 '
|
|
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('
|
|
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 '
|
|
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('
|
|
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 '
|
|
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('
|
|
14
|
-
direction: import('
|
|
13
|
+
size: import('../../core').DropdownSize;
|
|
14
|
+
direction: import('../../core').AppDirection;
|
|
15
15
|
disabled: boolean;
|
|
16
|
-
placement: import('
|
|
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 '
|
|
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('
|
|
18
|
-
direction: import('
|
|
17
|
+
size: import('../../core').FieldSize;
|
|
18
|
+
direction: import('../../core').AppDirection;
|
|
19
19
|
line: number | string;
|
|
20
|
-
variant: import('
|
|
20
|
+
variant: import('../../core').FieldVariant;
|
|
21
21
|
disabled: boolean;
|
|
22
22
|
message: string;
|
|
23
23
|
shadow: boolean;
|
|
24
|
-
type: import('
|
|
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 '
|
|
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('
|
|
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 '
|
|
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 '
|
|
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 '
|
|
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('
|
|
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 '
|
|
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('
|
|
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 '
|
|
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('
|
|
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 '
|
|
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('
|
|
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 '
|
|
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 '
|
|
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('
|
|
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 '
|
|
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('
|
|
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 '
|
|
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('
|
|
8
|
-
variant: import('
|
|
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('
|
|
5
|
-
move: (event: import('
|
|
4
|
+
end: (event: import('../../core').RefreshEvent) => any;
|
|
5
|
+
move: (event: import('../../core').RefreshEvent) => any;
|
|
6
6
|
}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{
|
|
7
7
|
onCancel?: (() => any) | undefined;
|
|
8
8
|
onStart?: (() => any) | undefined;
|
|
9
|
-
onEnd?: ((event: import('
|
|
10
|
-
onMove?: ((event: import('
|
|
9
|
+
onEnd?: ((event: import('../../core').RefreshEvent) => any) | undefined;
|
|
10
|
+
onMove?: ((event: import('../../core').RefreshEvent) => any) | undefined;
|
|
11
11
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
12
12
|
export default _default;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { RouteNavigatorProps, RouteNavigatorTransformState } from '
|
|
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('
|
|
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 '
|
|
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 '
|
|
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 '
|
|
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,4 +1,4 @@
|
|
|
1
|
-
import { SegmentedFieldProps } from '
|
|
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('
|
|
16
|
-
direction: import('
|
|
17
|
-
variant: import('
|
|
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 '
|
|
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('
|
|
10
|
-
direction: import('
|
|
11
|
-
variant: import('
|
|
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 '
|
|
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 '
|
|
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 '
|
|
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('
|
|
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 '
|
|
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 '
|
|
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('
|
|
8
|
-
variant: import('
|
|
7
|
+
size: import('../../../core').TabsSize;
|
|
8
|
+
variant: import('../../../core').TabsVariant;
|
|
9
9
|
transition: boolean;
|
|
10
|
-
placement: import('
|
|
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 '
|
|
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('
|
|
4
|
-
variant: import('
|
|
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 '
|
|
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('
|
|
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 '
|
|
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('
|
|
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 '
|
|
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('
|
|
9
|
-
placement?: import('
|
|
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('
|
|
17
|
-
placement?: import('
|
|
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 '
|
|
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 '
|
|
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('
|
|
3
|
+
size: import('../../core').TooltipSize;
|
|
4
4
|
disabled: boolean;
|
|
5
|
-
placement: import('
|
|
5
|
+
placement: import('../../core').TooltipPlacement;
|
|
6
6
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
7
7
|
export default _default;
|