yuyeon 0.3.2-rc.9 → 0.3.4-rc.0
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/style.css +1 -1
- package/dist/yuyeon.js +3359 -3164
- package/dist/yuyeon.umd.cjs +3 -3
- package/lib/components/field-input/YFieldInput.js +4 -2
- package/lib/components/field-input/YFieldInput.js.map +1 -1
- package/lib/components/select/YSelect.js +0 -1
- package/lib/components/select/YSelect.js.map +1 -1
- package/lib/components/table/YDataTable.js +20 -10
- package/lib/components/table/YDataTable.js.map +1 -1
- package/lib/components/table/YDataTableBody.js +14 -18
- package/lib/components/table/YDataTableBody.js.map +1 -1
- package/lib/components/table/YDataTableLayerRow.js +87 -0
- package/lib/components/table/YDataTableLayerRow.js.map +1 -0
- package/lib/components/table/YDataTableLayerRow.vue +7 -6
- package/lib/components/table/YDataTableLayerRows.js +60 -0
- package/lib/components/table/YDataTableLayerRows.js.map +1 -0
- package/lib/components/table/YDataTableLayerRows.scss +14 -0
- package/lib/components/table/YDataTableRow.js +13 -5
- package/lib/components/table/YDataTableRow.js.map +1 -1
- package/lib/components/table/YDataTableRows.scss +14 -0
- package/lib/components/table/YDataTableServer.js +13 -4
- package/lib/components/table/YDataTableServer.js.map +1 -1
- package/lib/components/table/composables/expand.js +49 -0
- package/lib/components/table/composables/expand.js.map +1 -0
- package/lib/components/table/composables/items.js +8 -2
- package/lib/components/table/composables/items.js.map +1 -1
- package/lib/components/table/index.js +2 -0
- package/lib/components/table/index.js.map +1 -1
- package/lib/components/table/types/item.js.map +1 -1
- package/lib/components/tree-view/YTreeViewNode.js +6 -2
- package/lib/components/tree-view/YTreeViewNode.js.map +1 -1
- package/package.json +5 -2
- package/types/abstract/items.d.ts +4 -4
- package/types/components/badge/YBadge.d.ts +4 -4
- package/types/components/button/YButton.d.ts +8 -8
- package/types/components/chip/YChip.d.ts +1 -1
- package/types/components/date-picker/YDateCalendar.d.ts +1 -1
- package/types/components/date-picker/YDatePicker.d.ts +1 -1
- package/types/components/date-picker/YDatePickerControl.d.ts +5 -5
- package/types/components/dialog/YDialog.d.ts +58 -58
- package/types/components/dropdown/YDropdown.d.ts +55 -55
- package/types/components/field-input/YFieldInput.d.ts +19 -13
- package/types/components/hover/YHover.d.ts +3 -3
- package/types/components/icon/YIcon.d.ts +2 -2
- package/types/components/img/YImg.d.ts +5 -5
- package/types/components/input/YInput.d.ts +9 -9
- package/types/components/ip-field/YIpv4Field.d.ts +1 -1
- package/types/components/layer/YLayer.d.ts +26 -26
- package/types/components/layer/content.d.ts +1 -1
- package/types/components/layer/scroll-strategies.d.ts +1 -1
- package/types/components/list/YListItem.d.ts +1 -1
- package/types/components/menu/YMenu.d.ts +9 -9
- package/types/components/pagination/YPagination.d.ts +5 -5
- package/types/components/select/YSelect.d.ts +68 -62
- package/types/components/snackbar/YSnackbar.d.ts +33 -33
- package/types/components/switch/YSwitch.d.ts +10 -10
- package/types/components/tab/YTab.d.ts +12 -12
- package/types/components/tab/YTabs.d.ts +4 -4
- package/types/components/table/YDataTable.d.ts +37 -15
- package/types/components/table/YDataTableBody.d.ts +3 -5
- package/types/components/table/YDataTableControl.d.ts +2 -2
- package/types/components/table/YDataTableHead.d.ts +2 -2
- package/types/components/table/YDataTableLayerRow.d.ts +22 -0
- package/types/components/table/YDataTableLayerRows.d.ts +9 -0
- package/types/components/table/YDataTableServer.d.ts +40 -18
- package/types/components/table/YTable.d.ts +4 -4
- package/types/components/table/composables/expand.d.ts +42 -0
- package/types/components/table/composables/header.d.ts +1 -1
- package/types/components/table/composables/items.d.ts +3 -3
- package/types/components/table/composables/pagination.d.ts +2 -2
- package/types/components/table/composables/selection.d.ts +3 -3
- package/types/components/table/composables/sorting.d.ts +1 -1
- package/types/components/table/index.d.ts +2 -0
- package/types/components/table/types/item.d.ts +1 -0
- package/types/components/textarea/YTextarea.d.ts +18 -18
- package/types/components/tooltip/YTooltip.d.ts +46 -46
- package/types/components/tree-view/YTreeView.d.ts +4 -4
- package/types/components/tree-view/YTreeViewNode.d.ts +8 -8
- package/types/composables/choice.d.ts +1 -1
- package/types/composables/coordinate/index.d.ts +8 -8
- package/types/composables/form.d.ts +2 -2
- package/types/composables/icon.d.ts +2 -2
- package/types/composables/list-items.d.ts +10 -10
- package/types/composables/transition.d.ts +1 -1
- package/types/composables/validation.d.ts +3 -3
- package/types/shims.d.ts +58 -56
|
@@ -23,23 +23,23 @@ export declare const pressYTreeViewNodeProps: <Defaults extends {
|
|
|
23
23
|
} : Omit<{
|
|
24
24
|
type: PropType<any[]>;
|
|
25
25
|
default: () => never[];
|
|
26
|
-
}, "
|
|
26
|
+
}, "type" | "default"> & {
|
|
27
27
|
type: PropType<unknown extends Defaults["items"] ? any[] : any[] | Defaults["items"]>;
|
|
28
28
|
default: unknown extends Defaults["items"] ? any[] : any[] | Defaults["items"];
|
|
29
29
|
};
|
|
30
30
|
itemKey: unknown extends Defaults["itemKey"] ? Omit<{
|
|
31
31
|
type: PropType<string>;
|
|
32
32
|
default: string;
|
|
33
|
-
}, "
|
|
33
|
+
}, "type" | "default"> & {
|
|
34
34
|
type: PropType<string>;
|
|
35
35
|
default: string;
|
|
36
36
|
} : Omit<Omit<{
|
|
37
37
|
type: PropType<string>;
|
|
38
38
|
default: string;
|
|
39
|
-
}, "
|
|
39
|
+
}, "type" | "default"> & {
|
|
40
40
|
type: PropType<string>;
|
|
41
41
|
default: string;
|
|
42
|
-
}, "
|
|
42
|
+
}, "type" | "default"> & {
|
|
43
43
|
type: PropType<unknown extends Defaults["itemKey"] ? string : string | Defaults["itemKey"]>;
|
|
44
44
|
default: unknown extends Defaults["itemKey"] ? string : string | Defaults["itemKey"];
|
|
45
45
|
};
|
|
@@ -49,7 +49,7 @@ export declare const pressYTreeViewNodeProps: <Defaults extends {
|
|
|
49
49
|
} : Omit<{
|
|
50
50
|
type: PropType<string>;
|
|
51
51
|
default: string;
|
|
52
|
-
}, "
|
|
52
|
+
}, "type" | "default"> & {
|
|
53
53
|
type: PropType<unknown extends Defaults["itemText"] ? string : string | Defaults["itemText"]>;
|
|
54
54
|
default: unknown extends Defaults["itemText"] ? string : string | Defaults["itemText"];
|
|
55
55
|
};
|
|
@@ -59,7 +59,7 @@ export declare const pressYTreeViewNodeProps: <Defaults extends {
|
|
|
59
59
|
} : Omit<{
|
|
60
60
|
type: PropType<string | boolean>;
|
|
61
61
|
default: string;
|
|
62
|
-
}, "
|
|
62
|
+
}, "type" | "default"> & {
|
|
63
63
|
type: PropType<unknown extends Defaults["itemChildren"] ? string | boolean : NonNullable<string | boolean> | Defaults["itemChildren"]>;
|
|
64
64
|
default: unknown extends Defaults["itemChildren"] ? string | boolean : NonNullable<string | boolean> | Defaults["itemChildren"];
|
|
65
65
|
};
|
|
@@ -93,7 +93,7 @@ export declare const pressYTreeViewNodeProps: <Defaults extends {
|
|
|
93
93
|
} : Omit<{
|
|
94
94
|
type: StringConstructor;
|
|
95
95
|
default: string;
|
|
96
|
-
}, "
|
|
96
|
+
}, "type" | "default"> & {
|
|
97
97
|
type: PropType<unknown extends Defaults["activeColor"] ? string : string | Defaults["activeColor"]>;
|
|
98
98
|
default: unknown extends Defaults["activeColor"] ? string : string | Defaults["activeColor"];
|
|
99
99
|
};
|
|
@@ -122,7 +122,7 @@ export declare const YTreeViewNode: import('vue').DefineComponent<{
|
|
|
122
122
|
itemKey: Omit<{
|
|
123
123
|
type: PropType<string>;
|
|
124
124
|
default: string;
|
|
125
|
-
}, "
|
|
125
|
+
}, "type" | "default"> & {
|
|
126
126
|
type: PropType<string>;
|
|
127
127
|
default: string;
|
|
128
128
|
};
|
|
@@ -56,7 +56,7 @@ export declare const pressChoicePropsOptions: <Defaults extends {
|
|
|
56
56
|
} : Omit<{
|
|
57
57
|
type: null;
|
|
58
58
|
default: undefined;
|
|
59
|
-
}, "
|
|
59
|
+
}, "type" | "default"> & {
|
|
60
60
|
type: PropType<unknown extends Defaults["modelValue"] ? any : any>;
|
|
61
61
|
default: unknown extends Defaults["modelValue"] ? any : any;
|
|
62
62
|
};
|
|
@@ -19,7 +19,7 @@ export declare const pressCoordinateProps: <Defaults extends {
|
|
|
19
19
|
} : Omit<{
|
|
20
20
|
type: PropType<"levitation" | "arrangement" | CoordinateStrategyFn>;
|
|
21
21
|
default: string;
|
|
22
|
-
}, "
|
|
22
|
+
}, "type" | "default"> & {
|
|
23
23
|
type: PropType<unknown extends Defaults["coordinateStrategy"] ? "levitation" | "arrangement" | CoordinateStrategyFn : NonNullable<"levitation" | "arrangement" | CoordinateStrategyFn> | Defaults["coordinateStrategy"]>;
|
|
24
24
|
default: unknown extends Defaults["coordinateStrategy"] ? "levitation" | "arrangement" | CoordinateStrategyFn : NonNullable<"levitation" | "arrangement" | CoordinateStrategyFn> | Defaults["coordinateStrategy"];
|
|
25
25
|
};
|
|
@@ -29,7 +29,7 @@ export declare const pressCoordinateProps: <Defaults extends {
|
|
|
29
29
|
} : Omit<{
|
|
30
30
|
type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
31
31
|
default: string;
|
|
32
|
-
}, "
|
|
32
|
+
}, "type" | "default"> & {
|
|
33
33
|
type: PropType<unknown extends Defaults["position"] ? "default" | "top" | "bottom" | "start" | "end" | "left" | "right" : NonNullable<"default" | "top" | "bottom" | "start" | "end" | "left" | "right"> | Defaults["position"]>;
|
|
34
34
|
default: unknown extends Defaults["position"] ? "default" | "top" | "bottom" | "start" | "end" | "left" | "right" : NonNullable<"default" | "top" | "bottom" | "start" | "end" | "left" | "right"> | Defaults["position"];
|
|
35
35
|
};
|
|
@@ -39,7 +39,7 @@ export declare const pressCoordinateProps: <Defaults extends {
|
|
|
39
39
|
} : Omit<{
|
|
40
40
|
type: PropType<"top" | "bottom" | "start" | "end" | "center">;
|
|
41
41
|
default: string;
|
|
42
|
-
}, "
|
|
42
|
+
}, "type" | "default"> & {
|
|
43
43
|
type: PropType<unknown extends Defaults["align"] ? "top" | "bottom" | "start" | "end" | "center" : NonNullable<"top" | "bottom" | "start" | "end" | "center"> | Defaults["align"]>;
|
|
44
44
|
default: unknown extends Defaults["align"] ? "top" | "bottom" | "start" | "end" | "center" : NonNullable<"top" | "bottom" | "start" | "end" | "center"> | Defaults["align"];
|
|
45
45
|
};
|
|
@@ -49,7 +49,7 @@ export declare const pressCoordinateProps: <Defaults extends {
|
|
|
49
49
|
} : Omit<{
|
|
50
50
|
type: StringConstructor;
|
|
51
51
|
default: string;
|
|
52
|
-
}, "
|
|
52
|
+
}, "type" | "default"> & {
|
|
53
53
|
type: PropType<unknown extends Defaults["origin"] ? string : string | Defaults["origin"]>;
|
|
54
54
|
default: unknown extends Defaults["origin"] ? string : string | Defaults["origin"];
|
|
55
55
|
};
|
|
@@ -57,17 +57,17 @@ export declare const pressCoordinateProps: <Defaults extends {
|
|
|
57
57
|
type: PropType<string | number | number[]>;
|
|
58
58
|
} : Omit<{
|
|
59
59
|
type: PropType<string | number | number[]>;
|
|
60
|
-
}, "
|
|
60
|
+
}, "type" | "default"> & {
|
|
61
61
|
type: PropType<unknown extends Defaults["offset"] ? string | number | number[] : NonNullable<string | number | number[]> | Defaults["offset"]>;
|
|
62
62
|
default: unknown extends Defaults["offset"] ? string | number | number[] : NonNullable<string | number | number[]> | Defaults["offset"];
|
|
63
63
|
};
|
|
64
64
|
viewportMargin: unknown extends Defaults["viewportMargin"] ? {
|
|
65
|
-
type: (
|
|
65
|
+
type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
|
|
66
66
|
default: number;
|
|
67
67
|
} : Omit<{
|
|
68
|
-
type: (
|
|
68
|
+
type: (ArrayConstructor | NumberConstructor | StringConstructor)[];
|
|
69
69
|
default: number;
|
|
70
|
-
}, "
|
|
70
|
+
}, "type" | "default"> & {
|
|
71
71
|
type: PropType<unknown extends Defaults["viewportMargin"] ? string | number | unknown[] : Defaults["viewportMargin"] | NonNullable<string | number | unknown[]>>;
|
|
72
72
|
default: unknown extends Defaults["viewportMargin"] ? string | number | unknown[] : Defaults["viewportMargin"] | NonNullable<string | number | unknown[]>;
|
|
73
73
|
};
|
|
@@ -72,7 +72,7 @@ export declare const pressFormPropsOptions: <Defaults extends {
|
|
|
72
72
|
} : Omit<{
|
|
73
73
|
type: PropType<boolean | null>;
|
|
74
74
|
default: null;
|
|
75
|
-
}, "
|
|
75
|
+
}, "type" | "default"> & {
|
|
76
76
|
type: PropType<unknown extends Defaults["modelValue"] ? boolean | null : Defaults["modelValue"] | NonNullable<boolean | null>>;
|
|
77
77
|
default: unknown extends Defaults["modelValue"] ? boolean | null : Defaults["modelValue"] | NonNullable<boolean | null>;
|
|
78
78
|
};
|
|
@@ -82,7 +82,7 @@ export declare const pressFormPropsOptions: <Defaults extends {
|
|
|
82
82
|
} : Omit<{
|
|
83
83
|
type: PropType<string>;
|
|
84
84
|
default: string;
|
|
85
|
-
}, "
|
|
85
|
+
}, "type" | "default"> & {
|
|
86
86
|
type: PropType<unknown extends Defaults["validateOn"] ? string : string | Defaults["validateOn"]>;
|
|
87
87
|
default: unknown extends Defaults["validateOn"] ? string : string | Defaults["validateOn"];
|
|
88
88
|
};
|
|
@@ -32,7 +32,7 @@ export declare const pressIconPropsOptions: <Defaults extends {
|
|
|
32
32
|
type: PropType<IconValue>;
|
|
33
33
|
} : Omit<{
|
|
34
34
|
type: PropType<IconValue>;
|
|
35
|
-
}, "
|
|
35
|
+
}, "type" | "default"> & {
|
|
36
36
|
type: PropType<unknown extends Defaults["icon"] ? IconValue : Defaults["icon"] | NonNullable<IconValue>>;
|
|
37
37
|
default: unknown extends Defaults["icon"] ? IconValue : Defaults["icon"] | NonNullable<IconValue>;
|
|
38
38
|
};
|
|
@@ -42,7 +42,7 @@ export declare const pressIconPropsOptions: <Defaults extends {
|
|
|
42
42
|
} : Omit<{
|
|
43
43
|
type: StringConstructor;
|
|
44
44
|
required: true;
|
|
45
|
-
}, "
|
|
45
|
+
}, "type" | "default"> & {
|
|
46
46
|
type: PropType<unknown extends Defaults["tag"] ? string : string | Defaults["tag"]>;
|
|
47
47
|
default: unknown extends Defaults["tag"] ? string : string | Defaults["tag"];
|
|
48
48
|
};
|
|
@@ -22,7 +22,7 @@ declare const listItemsPropsOptions: {
|
|
|
22
22
|
itemKey: Omit<{
|
|
23
23
|
type: import('vue').PropType<string>;
|
|
24
24
|
default: string;
|
|
25
|
-
}, "
|
|
25
|
+
}, "type" | "default"> & {
|
|
26
26
|
type: import('vue').PropType<string>;
|
|
27
27
|
default: string;
|
|
28
28
|
};
|
|
@@ -33,7 +33,7 @@ declare const listItemsPropsOptions: {
|
|
|
33
33
|
itemChildren: Omit<{
|
|
34
34
|
type: import('vue').PropType<string | boolean>;
|
|
35
35
|
default: string;
|
|
36
|
-
}, "
|
|
36
|
+
}, "type" | "default"> & {
|
|
37
37
|
type: import('vue').PropType<NonNullable<string | boolean>>;
|
|
38
38
|
default: NonNullable<string | boolean>;
|
|
39
39
|
};
|
|
@@ -56,23 +56,23 @@ export declare const pressListItemsPropsOptions: <Defaults extends {
|
|
|
56
56
|
} : Omit<{
|
|
57
57
|
type: import('vue').PropType<any[]>;
|
|
58
58
|
default: () => never[];
|
|
59
|
-
}, "
|
|
59
|
+
}, "type" | "default"> & {
|
|
60
60
|
type: import('vue').PropType<unknown extends Defaults["items"] ? any[] : any[] | Defaults["items"]>;
|
|
61
61
|
default: unknown extends Defaults["items"] ? any[] : any[] | Defaults["items"];
|
|
62
62
|
};
|
|
63
63
|
itemKey: unknown extends Defaults["itemKey"] ? Omit<{
|
|
64
64
|
type: import('vue').PropType<string>;
|
|
65
65
|
default: string;
|
|
66
|
-
}, "
|
|
66
|
+
}, "type" | "default"> & {
|
|
67
67
|
type: import('vue').PropType<string>;
|
|
68
68
|
default: string;
|
|
69
69
|
} : Omit<Omit<{
|
|
70
70
|
type: import('vue').PropType<string>;
|
|
71
71
|
default: string;
|
|
72
|
-
}, "
|
|
72
|
+
}, "type" | "default"> & {
|
|
73
73
|
type: import('vue').PropType<string>;
|
|
74
74
|
default: string;
|
|
75
|
-
}, "
|
|
75
|
+
}, "type" | "default"> & {
|
|
76
76
|
type: import('vue').PropType<unknown extends Defaults["itemKey"] ? string : string | Defaults["itemKey"]>;
|
|
77
77
|
default: unknown extends Defaults["itemKey"] ? string : string | Defaults["itemKey"];
|
|
78
78
|
};
|
|
@@ -82,23 +82,23 @@ export declare const pressListItemsPropsOptions: <Defaults extends {
|
|
|
82
82
|
} : Omit<{
|
|
83
83
|
type: import('vue').PropType<string>;
|
|
84
84
|
default: string;
|
|
85
|
-
}, "
|
|
85
|
+
}, "type" | "default"> & {
|
|
86
86
|
type: import('vue').PropType<unknown extends Defaults["itemText"] ? string : string | Defaults["itemText"]>;
|
|
87
87
|
default: unknown extends Defaults["itemText"] ? string : string | Defaults["itemText"];
|
|
88
88
|
};
|
|
89
89
|
itemChildren: unknown extends Defaults["itemChildren"] ? Omit<{
|
|
90
90
|
type: import('vue').PropType<string | boolean>;
|
|
91
91
|
default: string;
|
|
92
|
-
}, "
|
|
92
|
+
}, "type" | "default"> & {
|
|
93
93
|
type: import('vue').PropType<NonNullable<string | boolean>>;
|
|
94
94
|
default: NonNullable<string | boolean>;
|
|
95
95
|
} : Omit<Omit<{
|
|
96
96
|
type: import('vue').PropType<string | boolean>;
|
|
97
97
|
default: string;
|
|
98
|
-
}, "
|
|
98
|
+
}, "type" | "default"> & {
|
|
99
99
|
type: import('vue').PropType<NonNullable<string | boolean>>;
|
|
100
100
|
default: NonNullable<string | boolean>;
|
|
101
|
-
}, "
|
|
101
|
+
}, "type" | "default"> & {
|
|
102
102
|
type: import('vue').PropType<unknown extends Defaults["itemChildren"] ? NonNullable<string | boolean> : Defaults["itemChildren"] | NonNullable<NonNullable<string | boolean>>>;
|
|
103
103
|
default: unknown extends Defaults["itemChildren"] ? NonNullable<string | boolean> : Defaults["itemChildren"] | NonNullable<NonNullable<string | boolean>>;
|
|
104
104
|
};
|
|
@@ -13,7 +13,7 @@ export declare const pressPolyTransitionPropsOptions: <Defaults extends {
|
|
|
13
13
|
is?: Component | undefined;
|
|
14
14
|
})>;
|
|
15
15
|
default: string;
|
|
16
|
-
}, "
|
|
16
|
+
}, "type" | "default"> & {
|
|
17
17
|
type: PropType<unknown extends Defaults["transition"] ? string | (TransitionProps & {
|
|
18
18
|
is?: Component | undefined;
|
|
19
19
|
}) : NonNullable<string | (TransitionProps & {
|
|
@@ -27,7 +27,7 @@ export declare const pressValidationPropsOptions: <Defaults extends {
|
|
|
27
27
|
} : Omit<{
|
|
28
28
|
type: PropType<"error" | "warning" | "success" | undefined>;
|
|
29
29
|
validator(value: string): boolean;
|
|
30
|
-
}, "
|
|
30
|
+
}, "type" | "default"> & {
|
|
31
31
|
type: PropType<unknown extends Defaults["status"] ? "error" | "warning" | "success" | undefined : Defaults["status"] | NonNullable<"error" | "warning" | "success" | undefined>>;
|
|
32
32
|
default: unknown extends Defaults["status"] ? "error" | "warning" | "success" | undefined : Defaults["status"] | NonNullable<"error" | "warning" | "success" | undefined>;
|
|
33
33
|
};
|
|
@@ -43,7 +43,7 @@ export declare const pressValidationPropsOptions: <Defaults extends {
|
|
|
43
43
|
type: PropType<string>;
|
|
44
44
|
} : Omit<{
|
|
45
45
|
type: PropType<string>;
|
|
46
|
-
}, "
|
|
46
|
+
}, "type" | "default"> & {
|
|
47
47
|
type: PropType<unknown extends Defaults["validateOn"] ? string : string | Defaults["validateOn"]>;
|
|
48
48
|
default: unknown extends Defaults["validateOn"] ? string : string | Defaults["validateOn"];
|
|
49
49
|
};
|
|
@@ -57,7 +57,7 @@ export declare const pressValidationPropsOptions: <Defaults extends {
|
|
|
57
57
|
} : Omit<{
|
|
58
58
|
type: PropType<string | number>;
|
|
59
59
|
default: number;
|
|
60
|
-
}, "
|
|
60
|
+
}, "type" | "default"> & {
|
|
61
61
|
type: PropType<unknown extends Defaults["maxErrors"] ? string | number : Defaults["maxErrors"] | NonNullable<string | number>>;
|
|
62
62
|
default: unknown extends Defaults["maxErrors"] ? string | number : Defaults["maxErrors"] | NonNullable<string | number>;
|
|
63
63
|
};
|
package/types/shims.d.ts
CHANGED
|
@@ -1,56 +1,58 @@
|
|
|
1
|
-
import { YAlert, YApp, YBadge, YButton, YCard, YCardBody, YCardFooter, YCardHeader, YCheckbox, YChip, YDataTable, YDataTableServer, YDateCalendar, YDatePicker, YDialog, YDividePanel, YDivider, YDropdown, YExpandHTransition, YExpandVTransition, YFieldInput, YForm, YHover, YIcon, YInput, YInputCheckbox, YIpv4Field, YLayer, YList, YListItem, YMenu, YMonthPicker, YPagination, YProgressBar, YSelect, YSnackbar, YSpinnerRing, YSwitch, YTab, YTable, YTabs, YTextHighlighter, YTextarea, YTi, YTooltip, YTreeView, YTreeViewNode
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
declare module '@vue/runtime-core' {
|
|
5
|
-
export interface GlobalComponents {
|
|
6
|
-
// @define-components
|
|
7
|
-
YApp: typeof YApp;
|
|
8
|
-
YButton: typeof YButton;
|
|
9
|
-
YChip: typeof YChip;
|
|
10
|
-
YInput: typeof YInput;
|
|
11
|
-
YFieldInput: typeof YFieldInput;
|
|
12
|
-
YTextarea: typeof YTextarea;
|
|
13
|
-
YForm: typeof YForm;
|
|
14
|
-
YCard: typeof YCard;
|
|
15
|
-
YCardBody: typeof YCardBody;
|
|
16
|
-
YCardHeader: typeof YCardHeader;
|
|
17
|
-
YCardFooter: typeof YCardFooter;
|
|
18
|
-
YDialog: typeof YDialog;
|
|
19
|
-
YLayer: typeof YLayer;
|
|
20
|
-
YSnackbar: typeof YSnackbar;
|
|
21
|
-
YProgressBar: typeof YProgressBar;
|
|
22
|
-
YSpinnerRing: typeof YSpinnerRing;
|
|
23
|
-
YTooltip: typeof YTooltip;
|
|
24
|
-
YExpandVTransition: typeof YExpandVTransition;
|
|
25
|
-
YExpandHTransition: typeof YExpandHTransition;
|
|
26
|
-
YDividePanel: typeof YDividePanel;
|
|
27
|
-
YList: typeof YList;
|
|
28
|
-
YListItem: typeof YListItem;
|
|
29
|
-
YTreeView: typeof YTreeView;
|
|
30
|
-
YTreeViewNode: typeof YTreeViewNode;
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
1
|
+
import { YAlert, YApp, YBadge, YButton, YCard, YCardBody, YCardFooter, YCardHeader, YCheckbox, YChip, YDataTable, YDataTableLayerRow, YDataTableLayerRows, YDataTableServer, YDateCalendar, YDatePicker, YDialog, YDividePanel, YDivider, YDropdown, YExpandHTransition, YExpandVTransition, YFieldInput, YForm, YHover, YIcon, YInput, YInputCheckbox, YIpv4Field, YLayer, YList, YListItem, YMenu, YMonthPicker, YPagination, YProgressBar, YProgressRing, YSelect, YSnackbar, YSpinnerRing, YSwitch, YTab, YTable, YTabs, YTextHighlighter, YTextarea, YTi, YTooltip, YTreeView, YTreeViewNode } from 'yuyeon/components';
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
declare module '@vue/runtime-core' {
|
|
5
|
+
export interface GlobalComponents {
|
|
6
|
+
// @define-components
|
|
7
|
+
YApp: typeof YApp;
|
|
8
|
+
YButton: typeof YButton;
|
|
9
|
+
YChip: typeof YChip;
|
|
10
|
+
YInput: typeof YInput;
|
|
11
|
+
YFieldInput: typeof YFieldInput;
|
|
12
|
+
YTextarea: typeof YTextarea;
|
|
13
|
+
YForm: typeof YForm;
|
|
14
|
+
YCard: typeof YCard;
|
|
15
|
+
YCardBody: typeof YCardBody;
|
|
16
|
+
YCardHeader: typeof YCardHeader;
|
|
17
|
+
YCardFooter: typeof YCardFooter;
|
|
18
|
+
YDialog: typeof YDialog;
|
|
19
|
+
YLayer: typeof YLayer;
|
|
20
|
+
YSnackbar: typeof YSnackbar;
|
|
21
|
+
YProgressBar: typeof YProgressBar;
|
|
22
|
+
YSpinnerRing: typeof YSpinnerRing;
|
|
23
|
+
YTooltip: typeof YTooltip;
|
|
24
|
+
YExpandVTransition: typeof YExpandVTransition;
|
|
25
|
+
YExpandHTransition: typeof YExpandHTransition;
|
|
26
|
+
YDividePanel: typeof YDividePanel;
|
|
27
|
+
YList: typeof YList;
|
|
28
|
+
YListItem: typeof YListItem;
|
|
29
|
+
YTreeView: typeof YTreeView;
|
|
30
|
+
YTreeViewNode: typeof YTreeViewNode;
|
|
31
|
+
YTable: typeof YTable;
|
|
32
|
+
YDataTable: typeof YDataTable;
|
|
33
|
+
YDataTableLayerRows: typeof YDataTableLayerRows;
|
|
34
|
+
YDataTableLayerRow: typeof YDataTableLayerRow;
|
|
35
|
+
YDataTableServer: typeof YDataTableServer;
|
|
36
|
+
YMenu: typeof YMenu;
|
|
37
|
+
YPagination: typeof YPagination;
|
|
38
|
+
YInputCheckbox: typeof YInputCheckbox;
|
|
39
|
+
YCheckbox: typeof YCheckbox;
|
|
40
|
+
YSwitch: typeof YSwitch;
|
|
41
|
+
YDropdown: typeof YDropdown;
|
|
42
|
+
YSelect: typeof YSelect;
|
|
43
|
+
YAlert: typeof YAlert;
|
|
44
|
+
YTabs: typeof YTabs;
|
|
45
|
+
YTab: typeof YTab;
|
|
46
|
+
YDivider: typeof YDivider;
|
|
47
|
+
YDateCalendar: typeof YDateCalendar;
|
|
48
|
+
YIcon: typeof YIcon;
|
|
49
|
+
YDatePicker: typeof YDatePicker;
|
|
50
|
+
YMonthPicker: typeof YMonthPicker;
|
|
51
|
+
YBadge: typeof YBadge;
|
|
52
|
+
YIpv4Field: typeof YIpv4Field;
|
|
53
|
+
YHover: typeof YHover;
|
|
54
|
+
YTi: typeof YTi;
|
|
55
|
+
YTextHighlighter: typeof YTextHighlighter;
|
|
56
|
+
YProgressRing: typeof YProgressRing;
|
|
57
|
+
}
|
|
58
|
+
}
|