@toife/vue 3.2.3 → 3.2.5
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/checkbox/checkbox.vue.d.ts +1 -1
- package/dist/components/field/field.vue.d.ts +1 -1
- package/dist/components/radio/radio-group/radio-group.vue.d.ts +1 -1
- package/dist/components/segmented-field/segmented-field.vue.d.ts +1 -1
- package/dist/components/select/select.vue.d.ts +1 -1
- package/dist/components/slide-range/slide-range.vue.d.ts +10 -10
- package/dist/components/tabs/tabs/tabs.vue.d.ts +1 -1
- package/dist/components/toast/toast-content/toast-content.vue.d.ts +1 -1
- package/dist/index.es.js +1418 -1391
- package/dist/index.umd.js +1 -1
- package/dist/styles/button.css +1 -1
- package/dist/styles/checkbox.css +1 -1
- package/dist/styles/field.css +1 -1
- package/dist/styles/radio.css +1 -1
- package/dist/styles/route-navigator.css +1 -1
- package/dist/styles/slide-range.css +1 -1
- package/dist/styles/tabs.css +1 -1
- package/dist/styles/tag.css +1 -1
- package/package.json +3 -3
|
@@ -9,8 +9,8 @@ declare const _default: import('vue').DefineComponent<CheckboxProps, {}, {}, {},
|
|
|
9
9
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
10
10
|
}>, {
|
|
11
11
|
size: import('@toife/core').CheckboxSize;
|
|
12
|
-
disabled: boolean;
|
|
13
12
|
variant: import('@toife/core').CheckboxVariant;
|
|
13
|
+
disabled: boolean;
|
|
14
14
|
shadow: boolean;
|
|
15
15
|
modelValue: boolean;
|
|
16
16
|
readonly: boolean;
|
|
@@ -17,9 +17,9 @@ declare const _default: import('vue').DefineComponent<FieldProps, {}, {}, {}, {}
|
|
|
17
17
|
size: import('@toife/core').FieldSize;
|
|
18
18
|
direction: import('@toife/core').AppDirection;
|
|
19
19
|
line: number | string;
|
|
20
|
+
variant: import('@toife/core').FieldVariant;
|
|
20
21
|
disabled: boolean;
|
|
21
22
|
message: string;
|
|
22
|
-
variant: import('@toife/core').FieldVariant;
|
|
23
23
|
shadow: boolean;
|
|
24
24
|
type: import('@toife/core').FieldType;
|
|
25
25
|
modelValue: string | number;
|
|
@@ -5,8 +5,8 @@ declare const _default: import('vue').DefineComponent<RadioGroupProps, {}, {}, {
|
|
|
5
5
|
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
6
6
|
}>, {
|
|
7
7
|
direction: import('@toife/core').RadioGroupDirection;
|
|
8
|
-
disabled: boolean;
|
|
9
8
|
variant: import('@toife/core').RadioVariant;
|
|
9
|
+
disabled: boolean;
|
|
10
10
|
shadow: boolean;
|
|
11
11
|
readonly: boolean;
|
|
12
12
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
@@ -14,10 +14,10 @@ declare const _default: import('vue').DefineComponent<SegmentedFieldProps, {}, {
|
|
|
14
14
|
}>, {
|
|
15
15
|
size: import('@toife/core').SegmentedFieldSize;
|
|
16
16
|
direction: import('@toife/core').AppDirection;
|
|
17
|
+
variant: import('@toife/core').SegmentedFieldVariant;
|
|
17
18
|
disabled: boolean;
|
|
18
19
|
length: number;
|
|
19
20
|
message: string;
|
|
20
|
-
variant: import('@toife/core').SegmentedFieldVariant;
|
|
21
21
|
shadow: boolean;
|
|
22
22
|
type: string;
|
|
23
23
|
pattern: string[];
|
|
@@ -8,9 +8,9 @@ declare const _default: import('vue').DefineComponent<SelectProps, {}, {}, {}, {
|
|
|
8
8
|
}>, {
|
|
9
9
|
size: import('@toife/core').FieldSize;
|
|
10
10
|
direction: import('@toife/core').AppDirection;
|
|
11
|
+
variant: import('@toife/core').FieldVariant;
|
|
11
12
|
disabled: boolean;
|
|
12
13
|
message: string;
|
|
13
|
-
variant: import('@toife/core').FieldVariant;
|
|
14
14
|
shadow: boolean;
|
|
15
15
|
options: Array<SelectOption>;
|
|
16
16
|
modelValue: string;
|
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
import { SlideRangeProps } from '@toife/core';
|
|
1
|
+
import { SlideRangeProps, SlideRangeValue } from '@toife/core';
|
|
2
2
|
declare const _default: import('vue').DefineComponent<SlideRangeProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
3
|
-
change: (value:
|
|
4
|
-
"update:modelValue": (value:
|
|
3
|
+
change: (value: SlideRangeValue) => any;
|
|
4
|
+
"update:modelValue": (value: SlideRangeValue) => any;
|
|
5
5
|
}, string, import('vue').PublicProps, Readonly<SlideRangeProps> & Readonly<{
|
|
6
|
-
onChange?: ((value:
|
|
7
|
-
"onUpdate:modelValue"?: ((value:
|
|
6
|
+
onChange?: ((value: SlideRangeValue) => any) | undefined;
|
|
7
|
+
"onUpdate:modelValue"?: ((value: SlideRangeValue) => any) | undefined;
|
|
8
8
|
}>, {
|
|
9
9
|
disabled: boolean;
|
|
10
|
-
modelValue:
|
|
10
|
+
modelValue: SlideRangeValue;
|
|
11
11
|
readonly: boolean;
|
|
12
|
-
min:
|
|
13
|
-
max:
|
|
14
|
-
step:
|
|
12
|
+
min: SlideRangeValue;
|
|
13
|
+
max: SlideRangeValue;
|
|
14
|
+
step: SlideRangeValue;
|
|
15
15
|
unit: string;
|
|
16
|
-
tick: boolean |
|
|
16
|
+
tick: boolean | SlideRangeValue;
|
|
17
17
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
18
18
|
export default _default;
|
|
@@ -5,8 +5,8 @@ declare const _default: import('vue').DefineComponent<TabsProps, {}, {}, {}, {},
|
|
|
5
5
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
6
6
|
}>, {
|
|
7
7
|
size: import('@toife/core').TabsSize;
|
|
8
|
-
transition: boolean;
|
|
9
8
|
variant: import('@toife/core').TabsVariant;
|
|
9
|
+
transition: boolean;
|
|
10
10
|
placement: import('@toife/core').TabsPlacement;
|
|
11
11
|
border: number[];
|
|
12
12
|
margin: number[];
|
|
@@ -5,7 +5,7 @@ declare const _default: import('vue').DefineComponent<ToastContentProps, {}, {},
|
|
|
5
5
|
onClose?: (() => any) | undefined;
|
|
6
6
|
}>, {
|
|
7
7
|
duration: number;
|
|
8
|
-
message: string;
|
|
9
8
|
variant: import('@toife/core').ToastContentVariant;
|
|
9
|
+
message: string;
|
|
10
10
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
11
11
|
export default _default;
|