@toife/vue 3.3.5 → 3.3.6
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 +7 -5
- package/dist/components/decision-modal/decision-modal.vue.d.ts +3 -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/index.d.ts +1 -1
- package/dist/index.es.js +2326 -1577
- package/dist/index.umd.js +1 -1
- package/dist/styles/action.css +1 -1
- package/dist/styles/app.css +1 -1
- package/dist/styles/avatar.css +1 -1
- package/dist/styles/button.css +1 -1
- package/dist/styles/cable.css +1 -1
- package/dist/styles/checkbox.css +1 -1
- package/dist/styles/collapse.css +1 -1
- package/dist/styles/container.css +1 -1
- package/dist/styles/decision-modal.css +1 -1
- package/dist/styles/divider.css +1 -1
- package/dist/styles/dropdown.css +1 -1
- package/dist/styles/field.css +1 -1
- package/dist/styles/flex-item.css +1 -1
- package/dist/styles/flex.css +1 -1
- package/dist/styles/form-group.css +1 -1
- package/dist/styles/gesture-indicator.css +1 -1
- package/dist/styles/grid-item.css +1 -1
- package/dist/styles/grid.css +1 -1
- package/dist/styles/modal.css +1 -1
- package/dist/styles/page.css +1 -1
- package/dist/styles/present.css +1 -1
- package/dist/styles/radio-group.css +1 -1
- package/dist/styles/radio.css +1 -1
- package/dist/styles/refresher.css +1 -1
- package/dist/styles/route-navigator.css +1 -1
- package/dist/styles/segmented-field.css +1 -1
- package/dist/styles/select.css +1 -1
- package/dist/styles/skeleton.css +1 -1
- package/dist/styles/slide-range.css +1 -1
- package/dist/styles/switch.css +1 -1
- package/dist/styles/tab.css +1 -1
- package/dist/styles/tabs.css +1 -1
- package/dist/styles/tag.css +1 -1
- package/dist/styles/toast-content.css +1 -1
- package/dist/styles/toast.css +1 -1
- package/dist/styles/toolbar.css +1 -1
- package/dist/styles/tooltip.css +1 -1
- package/package.json +8 -13
|
@@ -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,8 @@ 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
|
+
keepalive?: boolean | undefined;
|
|
24
25
|
onClose?: ((type?: string) => void) | undefined;
|
|
25
26
|
onChoose?: ((btn?: DecisionModalButton) => void) | undefined;
|
|
26
27
|
} | null, DecisionModalComposableProps | {
|
|
@@ -30,7 +31,7 @@ export declare const useDecisionModal: () => {
|
|
|
30
31
|
actions: {
|
|
31
32
|
text?: string | undefined;
|
|
32
33
|
role?: string | undefined;
|
|
33
|
-
variant?: import('
|
|
34
|
+
variant?: import('../../../../core').ButtonVariant | undefined;
|
|
34
35
|
handler?: (() => void) | undefined;
|
|
35
36
|
data?: unknown;
|
|
36
37
|
}[];
|
|
@@ -39,7 +40,8 @@ export declare const useDecisionModal: () => {
|
|
|
39
40
|
role?: string | undefined;
|
|
40
41
|
shape?: string | undefined;
|
|
41
42
|
divider?: boolean | undefined;
|
|
42
|
-
flow?: import('
|
|
43
|
+
flow?: import('../../../../core').DecisionModalFlow | undefined;
|
|
44
|
+
keepalive?: boolean | undefined;
|
|
43
45
|
onClose?: ((type?: string) => void) | undefined;
|
|
44
46
|
onChoose?: ((btn?: DecisionModalButton) => void) | undefined;
|
|
45
47
|
} | null>;
|
|
@@ -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;
|
|
@@ -10,7 +10,8 @@ declare const _default: import('vue').DefineComponent<DecisionModalProps, {}, {}
|
|
|
10
10
|
shape: string;
|
|
11
11
|
divider: boolean;
|
|
12
12
|
placement: string;
|
|
13
|
+
keepalive: boolean;
|
|
13
14
|
visible: boolean;
|
|
14
|
-
flow: import('
|
|
15
|
+
flow: import('../../../../core').DecisionModalFlow;
|
|
15
16
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
16
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;
|