@toife/vue 3.4.1 → 3.4.2
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 +0 -4
- package/dist/components/action/action.vue.d.ts +0 -1
- package/dist/components/app/app.vue.d.ts +0 -1
- package/dist/components/button/button.vue.d.ts +0 -1
- package/dist/components/checkbox/checkbox.vue.d.ts +0 -1
- package/dist/components/dropdown/dropdown.vue.d.ts +0 -1
- package/dist/components/field/field.vue.d.ts +0 -1
- package/dist/components/radio/radio/radio.vue.d.ts +0 -1
- package/dist/components/radio/radio-group/radio-group.vue.d.ts +0 -1
- package/dist/components/segmented-field/segmented-field.vue.d.ts +0 -1
- package/dist/components/select/select.vue.d.ts +0 -1
- package/dist/components/switch/switch.vue.d.ts +0 -1
- package/dist/core/features/action/action.constants.d.ts +0 -1
- package/dist/core/features/action/action.logic.d.ts +0 -1
- package/dist/core/features/action/action.type.d.ts +0 -3
- package/dist/core/features/app/app.constants.d.ts +0 -1
- package/dist/core/features/app/app.type.d.ts +0 -2
- package/dist/core/features/button/button.constants.d.ts +0 -1
- package/dist/core/features/button/button.logic.d.ts +0 -1
- package/dist/core/features/button/button.type.d.ts +0 -2
- package/dist/core/features/checkbox/checkbox.constants.d.ts +0 -1
- package/dist/core/features/checkbox/checkbox.logic.d.ts +0 -1
- package/dist/core/features/checkbox/checkbox.type.d.ts +0 -2
- package/dist/core/features/dropdown/dropdown.constants.d.ts +0 -1
- package/dist/core/features/dropdown/dropdown.logic.d.ts +0 -1
- package/dist/core/features/dropdown/dropdown.type.d.ts +0 -2
- package/dist/core/features/field/field.constants.d.ts +0 -1
- package/dist/core/features/field/field.logic.d.ts +0 -1
- package/dist/core/features/field/field.type.d.ts +0 -2
- package/dist/core/features/radio/radio-group.constants.d.ts +0 -1
- package/dist/core/features/radio/radio-group.type.d.ts +0 -2
- package/dist/core/features/radio/radio.constants.d.ts +0 -1
- package/dist/core/features/radio/radio.logic.d.ts +0 -1
- package/dist/core/features/radio/radio.type.d.ts +0 -2
- package/dist/core/features/segmented-field/segmented-field.constants.d.ts +0 -1
- package/dist/core/features/segmented-field/segmented-field.type.d.ts +0 -1
- package/dist/core/features/select/select.constants.d.ts +0 -1
- package/dist/core/features/select/select.type.d.ts +0 -1
- package/dist/core/features/switch/switch.constants.d.ts +0 -1
- package/dist/core/features/switch/switch.logic.d.ts +0 -2
- package/dist/core/features/switch/switch.type.d.ts +0 -2
- package/dist/index.es.js +1126 -1170
- 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/card-body.css +1 -1
- package/dist/styles/card-footer.css +1 -1
- package/dist/styles/card-header.css +1 -1
- package/dist/styles/card.css +1 -1
- package/dist/styles/checkbox.css +1 -1
- package/dist/styles/collapse.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/gesture-indicator.css +1 -1
- package/dist/styles/modal.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/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/tabs.css +1 -1
- package/dist/styles/tag.css +1 -1
- package/dist/styles/toast-content.css +1 -1
- package/dist/styles/toolbar.css +1 -1
- package/dist/styles/tooltip.css +1 -1
- package/package.json +1 -1
|
@@ -11,14 +11,12 @@ export declare const useAction: () => {
|
|
|
11
11
|
text?: string | undefined;
|
|
12
12
|
role?: string | undefined;
|
|
13
13
|
variant?: import('../../core').ButtonVariant | undefined;
|
|
14
|
-
shadow?: boolean | undefined;
|
|
15
14
|
handler?: (() => void) | undefined;
|
|
16
15
|
data?: unknown;
|
|
17
16
|
}[][];
|
|
18
17
|
role?: string | undefined;
|
|
19
18
|
shape?: string | undefined;
|
|
20
19
|
divider?: boolean | undefined;
|
|
21
|
-
shadow?: boolean | undefined;
|
|
22
20
|
placement?: import('../../core').ActionPlacement | undefined;
|
|
23
21
|
onClose?: ((type?: string) => void) | undefined;
|
|
24
22
|
onChoose?: ((btn?: ActionButton) => void) | undefined;
|
|
@@ -29,14 +27,12 @@ export declare const useAction: () => {
|
|
|
29
27
|
text?: string | undefined;
|
|
30
28
|
role?: string | undefined;
|
|
31
29
|
variant?: import('../../core').ButtonVariant | undefined;
|
|
32
|
-
shadow?: boolean | undefined;
|
|
33
30
|
handler?: (() => void) | undefined;
|
|
34
31
|
data?: unknown;
|
|
35
32
|
}[][];
|
|
36
33
|
role?: string | undefined;
|
|
37
34
|
shape?: string | undefined;
|
|
38
35
|
divider?: boolean | undefined;
|
|
39
|
-
shadow?: boolean | undefined;
|
|
40
36
|
placement?: import('../../core').ActionPlacement | undefined;
|
|
41
37
|
onClose?: ((type?: string) => void) | undefined;
|
|
42
38
|
onChoose?: ((btn?: ActionButton) => void) | undefined;
|
|
@@ -10,7 +10,6 @@ declare const _default: import('vue').DefineComponent<ActionProps, {}, {}, {}, {
|
|
|
10
10
|
shape: string;
|
|
11
11
|
divider: boolean;
|
|
12
12
|
placement: import('../../core').ActionPlacement;
|
|
13
|
-
shadow: boolean;
|
|
14
13
|
visible: boolean;
|
|
15
14
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
16
15
|
export default _default;
|
|
@@ -4,7 +4,6 @@ declare const _default: import('vue').DefineComponent<AppProps, {}, {}, {}, {},
|
|
|
4
4
|
shape: string;
|
|
5
5
|
divider: boolean;
|
|
6
6
|
direction: import('../../core').AppDirection;
|
|
7
|
-
shadow: boolean;
|
|
8
7
|
triple: boolean;
|
|
9
8
|
data: import('../../core').AppData;
|
|
10
9
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
@@ -2,7 +2,6 @@ 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
3
|
size: import('../../core').ButtonSize;
|
|
4
4
|
variant: import('../../core').ButtonVariant;
|
|
5
|
-
shadow: boolean;
|
|
6
5
|
block: boolean;
|
|
7
6
|
loading: boolean;
|
|
8
7
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
@@ -11,7 +11,6 @@ declare const _default: import('vue').DefineComponent<CheckboxProps, {}, {}, {},
|
|
|
11
11
|
size: import('../../core').CheckboxSize;
|
|
12
12
|
variant: import('../../core').CheckboxVariant;
|
|
13
13
|
disabled: boolean;
|
|
14
|
-
shadow: boolean;
|
|
15
14
|
modelValue: boolean;
|
|
16
15
|
readonly: boolean;
|
|
17
16
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
@@ -14,7 +14,6 @@ declare const _default: import('vue').DefineComponent<DropdownProps, {}, {}, {},
|
|
|
14
14
|
direction: import('../../core').AppDirection;
|
|
15
15
|
disabled: boolean;
|
|
16
16
|
placement: import('../../core').DropdownPlacement;
|
|
17
|
-
shadow: boolean;
|
|
18
17
|
modelValue: boolean;
|
|
19
18
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
20
19
|
export default _default;
|
|
@@ -20,7 +20,6 @@ declare const _default: import('vue').DefineComponent<FieldProps, {}, {}, {}, {}
|
|
|
20
20
|
variant: import('../../core').FieldVariant;
|
|
21
21
|
disabled: boolean;
|
|
22
22
|
message: string;
|
|
23
|
-
shadow: boolean;
|
|
24
23
|
type: import('../../core').FieldType;
|
|
25
24
|
modelValue: string | number;
|
|
26
25
|
readonly: boolean;
|
|
@@ -2,6 +2,5 @@ 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
3
|
size: import('../../../core').RadioSize;
|
|
4
4
|
disabled: boolean;
|
|
5
|
-
shadow: boolean;
|
|
6
5
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
7
6
|
export default _default;
|
|
@@ -7,7 +7,6 @@ declare const _default: import('vue').DefineComponent<RadioGroupProps, {}, {}, {
|
|
|
7
7
|
direction: import('../../../core').RadioGroupDirection;
|
|
8
8
|
variant: import('../../../core').RadioVariant;
|
|
9
9
|
disabled: boolean;
|
|
10
|
-
shadow: boolean;
|
|
11
10
|
readonly: boolean;
|
|
12
11
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
13
12
|
export default _default;
|
|
@@ -11,7 +11,6 @@ declare const _default: import('vue').DefineComponent<SelectProps, {}, {}, {}, {
|
|
|
11
11
|
variant: import('../../core').FieldVariant;
|
|
12
12
|
disabled: boolean;
|
|
13
13
|
message: string;
|
|
14
|
-
shadow: boolean;
|
|
15
14
|
options: Array<SelectOption>;
|
|
16
15
|
modelValue: string;
|
|
17
16
|
placeholder: string;
|
|
@@ -6,7 +6,6 @@ declare const _default: import('vue').DefineComponent<SwitchProps, {}, {}, {}, {
|
|
|
6
6
|
}>, {
|
|
7
7
|
size: import('../../core').SwitchSize;
|
|
8
8
|
bounce: number | string;
|
|
9
|
-
shadow: boolean;
|
|
10
9
|
modelValue: boolean;
|
|
11
10
|
readonly: boolean;
|
|
12
11
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
@@ -5,7 +5,6 @@ export type ActionButton = {
|
|
|
5
5
|
text?: string;
|
|
6
6
|
role?: string;
|
|
7
7
|
variant?: ButtonVariant;
|
|
8
|
-
shadow?: boolean;
|
|
9
8
|
handler?: () => void;
|
|
10
9
|
data?: unknown;
|
|
11
10
|
};
|
|
@@ -19,7 +18,6 @@ export type ActionProps = {
|
|
|
19
18
|
role?: string;
|
|
20
19
|
shape?: string;
|
|
21
20
|
divider?: boolean;
|
|
22
|
-
shadow?: boolean;
|
|
23
21
|
placement?: ActionPlacement;
|
|
24
22
|
};
|
|
25
23
|
/**
|
|
@@ -41,6 +39,5 @@ export type ActionAttrOptions = {
|
|
|
41
39
|
shape: string;
|
|
42
40
|
placement: string;
|
|
43
41
|
divider: boolean;
|
|
44
|
-
shadow: boolean;
|
|
45
42
|
pop: boolean;
|
|
46
43
|
};
|
|
@@ -13,7 +13,6 @@ export type AppProps = {
|
|
|
13
13
|
shape?: string;
|
|
14
14
|
divider?: boolean;
|
|
15
15
|
role?: string;
|
|
16
|
-
shadow?: boolean;
|
|
17
16
|
triple?: boolean;
|
|
18
17
|
direction?: AppDirection;
|
|
19
18
|
data?: AppData;
|
|
@@ -25,7 +24,6 @@ export type AppProviderState = {
|
|
|
25
24
|
shape: string;
|
|
26
25
|
divider: boolean;
|
|
27
26
|
role: string;
|
|
28
|
-
shadow: boolean;
|
|
29
27
|
triple: boolean;
|
|
30
28
|
direction: AppDirection;
|
|
31
29
|
rootEl: HTMLElement | undefined;
|
|
@@ -7,7 +7,6 @@ export type ButtonProps = {
|
|
|
7
7
|
block?: boolean;
|
|
8
8
|
loading?: boolean;
|
|
9
9
|
variant?: ButtonVariant;
|
|
10
|
-
shadow?: boolean;
|
|
11
10
|
};
|
|
12
11
|
export type ButtonAttrOptions = {
|
|
13
12
|
role: string;
|
|
@@ -15,6 +14,5 @@ export type ButtonAttrOptions = {
|
|
|
15
14
|
size: string;
|
|
16
15
|
block: boolean;
|
|
17
16
|
variant: ButtonVariant;
|
|
18
|
-
shadow: boolean;
|
|
19
17
|
focus: boolean;
|
|
20
18
|
};
|
|
@@ -8,7 +8,6 @@ export type CheckboxProps = {
|
|
|
8
8
|
variant?: CheckboxVariant;
|
|
9
9
|
readonly?: boolean;
|
|
10
10
|
disabled?: boolean;
|
|
11
|
-
shadow?: boolean;
|
|
12
11
|
};
|
|
13
12
|
export type CheckboxEvent = {
|
|
14
13
|
(e: "update:modelValue", value: boolean): void;
|
|
@@ -23,6 +22,5 @@ export type CheckboxAttrOptions = {
|
|
|
23
22
|
modelValue: boolean;
|
|
24
23
|
disabled: boolean;
|
|
25
24
|
readonly: boolean;
|
|
26
|
-
shadow: boolean;
|
|
27
25
|
focus: boolean;
|
|
28
26
|
};
|
|
@@ -6,7 +6,6 @@ export type DropdownProps = {
|
|
|
6
6
|
disabled?: boolean;
|
|
7
7
|
placement?: DropdownPlacement;
|
|
8
8
|
role?: string;
|
|
9
|
-
shadow?: boolean;
|
|
10
9
|
shape?: string;
|
|
11
10
|
direction?: AppDirection;
|
|
12
11
|
size?: DropdownSize;
|
|
@@ -22,7 +21,6 @@ export type DropdownAttrOptions = {
|
|
|
22
21
|
size: string;
|
|
23
22
|
open: boolean;
|
|
24
23
|
disabled: boolean;
|
|
25
|
-
shadow: boolean;
|
|
26
24
|
};
|
|
27
25
|
export type DropdownPanelAttrOptions = {
|
|
28
26
|
placement: string;
|
|
@@ -9,7 +9,6 @@ export type FieldProps = {
|
|
|
9
9
|
role?: string;
|
|
10
10
|
shape?: string;
|
|
11
11
|
size?: FieldSize;
|
|
12
|
-
shadow?: boolean;
|
|
13
12
|
direction?: AppDirection;
|
|
14
13
|
id?: string;
|
|
15
14
|
value?: string | number;
|
|
@@ -40,7 +39,6 @@ export type FieldAttrOptions = {
|
|
|
40
39
|
type: string;
|
|
41
40
|
disabled: boolean;
|
|
42
41
|
focus: boolean;
|
|
43
|
-
shadow: boolean;
|
|
44
42
|
readonly: boolean;
|
|
45
43
|
line: number;
|
|
46
44
|
maxLine?: number;
|
|
@@ -7,7 +7,6 @@ export type RadioGroupProps = {
|
|
|
7
7
|
variant?: RadioVariant;
|
|
8
8
|
disabled?: boolean;
|
|
9
9
|
readonly?: boolean;
|
|
10
|
-
shadow?: boolean;
|
|
11
10
|
direction?: RadioGroupDirection;
|
|
12
11
|
};
|
|
13
12
|
export type RadioGroupEvent = {
|
|
@@ -20,7 +19,6 @@ export type RadioGroupProviderState = {
|
|
|
20
19
|
variant: RadioVariant;
|
|
21
20
|
disabled: boolean;
|
|
22
21
|
readonly: boolean;
|
|
23
|
-
shadow: boolean;
|
|
24
22
|
setValue: (val: string | number) => void;
|
|
25
23
|
};
|
|
26
24
|
export type RadioGroupAttrOptions = {
|
|
@@ -9,7 +9,6 @@ export type RadioProps = {
|
|
|
9
9
|
variant?: RadioVariant;
|
|
10
10
|
disabled?: boolean;
|
|
11
11
|
readonly?: boolean;
|
|
12
|
-
shadow?: boolean;
|
|
13
12
|
};
|
|
14
13
|
export type RadioAttrOptions = {
|
|
15
14
|
role: string;
|
|
@@ -19,6 +18,5 @@ export type RadioAttrOptions = {
|
|
|
19
18
|
checked: boolean;
|
|
20
19
|
disabled: boolean;
|
|
21
20
|
readonly: boolean;
|
|
22
|
-
shadow: boolean;
|
|
23
21
|
focus: boolean;
|
|
24
22
|
};
|
|
@@ -3,7 +3,6 @@ export declare const getSwitchWrapperAttrs: (options: SwitchWrapperAttrOptions)
|
|
|
3
3
|
class: (string | {
|
|
4
4
|
disabled: boolean;
|
|
5
5
|
readonly: boolean;
|
|
6
|
-
shadow: boolean;
|
|
7
6
|
focus: boolean;
|
|
8
7
|
on: boolean;
|
|
9
8
|
transition?: undefined;
|
|
@@ -11,7 +10,6 @@ export declare const getSwitchWrapperAttrs: (options: SwitchWrapperAttrOptions)
|
|
|
11
10
|
transition: boolean;
|
|
12
11
|
disabled?: undefined;
|
|
13
12
|
readonly?: undefined;
|
|
14
|
-
shadow?: undefined;
|
|
15
13
|
focus?: undefined;
|
|
16
14
|
on?: undefined;
|
|
17
15
|
})[];
|
|
@@ -6,7 +6,6 @@ export type SwitchProps = {
|
|
|
6
6
|
shape?: string;
|
|
7
7
|
disabled?: boolean;
|
|
8
8
|
readonly?: boolean;
|
|
9
|
-
shadow?: boolean;
|
|
10
9
|
bounce?: number | string;
|
|
11
10
|
};
|
|
12
11
|
export type SwitchEvent = {
|
|
@@ -15,7 +14,6 @@ export type SwitchEvent = {
|
|
|
15
14
|
export type SwitchWrapperAttrOptions = {
|
|
16
15
|
disabled: boolean;
|
|
17
16
|
readonly: boolean;
|
|
18
|
-
shadow: boolean;
|
|
19
17
|
focus: boolean;
|
|
20
18
|
modelValue: boolean;
|
|
21
19
|
transition: boolean;
|