yuyeon 0.0.52-rc.1 → 0.1.0-rc.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/style.css +1 -1
- package/dist/yuyeon.js +3904 -3664
- package/dist/yuyeon.umd.cjs +20 -6
- package/lib/components/badge/YBadge.mjs.map +1 -1
- package/lib/components/checkbox/YCheckbox.mjs.map +1 -1
- package/lib/components/checkbox/YInputCheckbox.mjs.map +1 -1
- package/lib/components/chip/YChip.mjs.map +1 -1
- package/lib/components/date-picker/YDateCalendar.mjs.map +1 -1
- package/lib/components/date-picker/YDatePicker.mjs +1 -0
- package/lib/components/date-picker/YDatePicker.mjs.map +1 -1
- package/lib/components/date-picker/YDatePickerControl.mjs.map +1 -1
- package/lib/components/dropdown/YDropdown.mjs +10 -4
- package/lib/components/dropdown/YDropdown.mjs.map +1 -1
- package/lib/components/field-input/YFieldInput.mjs +4 -0
- package/lib/components/field-input/YFieldInput.mjs.map +1 -1
- package/lib/components/icons/YIconCheckbox.mjs.map +1 -1
- package/lib/components/icons/YIconClear.mjs.map +1 -1
- package/lib/components/icons/YIconDropdown.mjs.map +1 -1
- package/lib/components/icons/YIconExpand.mjs.map +1 -1
- package/lib/components/icons/YIconPageControl.mjs.map +1 -1
- package/lib/components/icons/YIconSort.mjs.map +1 -1
- package/lib/components/index.mjs +1 -0
- package/lib/components/index.mjs.map +1 -1
- package/lib/components/input/YInput.mjs +6 -6
- package/lib/components/input/YInput.mjs.map +1 -1
- package/lib/components/input/YInput.scss +2 -3
- package/lib/components/layer/YLayer.mjs +3 -1
- package/lib/components/layer/YLayer.mjs.map +1 -1
- package/lib/components/layer/base.mjs +5 -1
- package/lib/components/layer/base.mjs.map +1 -1
- package/lib/components/list/YList.mjs.map +1 -1
- package/lib/components/loading/YSpinnerRing.mjs.map +1 -1
- package/lib/components/pagination/YPagination.mjs.map +1 -1
- package/lib/components/panel/YDividePanel.mjs.map +1 -1
- package/lib/components/progress-bar/YProgressBar.mjs.map +1 -1
- package/lib/components/select/YSelect.mjs +64 -13
- package/lib/components/select/YSelect.mjs.map +1 -1
- package/lib/components/snackbar/YSnackbar.mjs +6 -6
- package/lib/components/snackbar/YSnackbar.mjs.map +1 -1
- package/lib/components/switch/YSwitch.mjs +3 -2
- package/lib/components/switch/YSwitch.mjs.map +1 -1
- package/lib/components/tab/YTabs.mjs.map +1 -1
- package/lib/components/table/YDataTableBody.mjs.map +1 -1
- package/lib/components/table/YDataTableControl.mjs.map +1 -1
- package/lib/components/table/YDataTableHead.mjs.map +1 -1
- package/lib/components/text-ellipsis/YTextEllipsis.mjs +61 -0
- package/lib/components/text-ellipsis/YTextEllipsis.mjs.map +1 -0
- package/lib/components/text-ellipsis/YTextEllipsis.scss +43 -0
- package/lib/components/text-ellipsis/index.mjs +2 -0
- package/lib/components/text-ellipsis/index.mjs.map +1 -0
- package/lib/components/tooltip/YTooltip.mjs +13 -23
- package/lib/components/tooltip/YTooltip.mjs.map +1 -1
- package/lib/components/tree-view/YTreeView.mjs.map +1 -1
- package/lib/components/tree-view/YTreeViewNode.mjs.map +1 -1
- package/lib/composables/icon.mjs.map +1 -1
- package/package.json +6 -10
- package/types/components/alert/YAlert.d.ts +1 -1
- package/types/components/app/YApp.d.ts +1 -1
- package/types/components/badge/YBadge.d.ts +2 -2
- package/types/components/button/YButton.d.ts +1 -1
- package/types/components/card/YCard.d.ts +1 -1
- package/types/components/card/YCardBody.d.ts +1 -1
- package/types/components/card/YCardFooter.d.ts +1 -1
- package/types/components/card/YCardHeader.d.ts +1 -1
- package/types/components/checkbox/YCheckbox.d.ts +3 -3
- package/types/components/checkbox/YInputCheckbox.d.ts +3 -3
- 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 +7 -2
- package/types/components/date-picker/YDatePickerControl.d.ts +1 -1
- package/types/components/date-picker/YMonthPicker.d.ts +1 -1
- package/types/components/date-picker/YYearPicker.d.ts +1 -1
- package/types/components/dialog/YDialog.d.ts +77 -43
- package/types/components/divider/YDivider.d.ts +1 -1
- package/types/components/dropdown/YDropdown.d.ts +387 -1
- package/types/components/field-input/YFieldInput.d.ts +16 -14
- package/types/components/form/YForm.d.ts +2 -2
- package/types/components/icon/YIcon.d.ts +1 -1
- package/types/components/icons/YIconCheckbox.d.ts +1 -1
- package/types/components/icons/YIconClear.d.ts +1 -1
- package/types/components/icons/YIconDropdown.d.ts +1 -1
- package/types/components/icons/YIconExpand.d.ts +1 -1
- package/types/components/icons/YIconPageControl.d.ts +1 -1
- package/types/components/icons/YIconSort.d.ts +1 -1
- package/types/components/icons/index.d.ts +8 -8
- package/types/components/index.d.ts +1 -0
- package/types/components/input/YInput.d.ts +11 -9
- package/types/components/layer/YLayer.d.ts +69 -35
- package/types/components/layer/base.d.ts +1 -0
- package/types/components/list/YList.d.ts +1 -1
- package/types/components/list/YListItem.d.ts +1 -1
- package/types/components/loading/YSpinnerRing.d.ts +1 -1
- package/types/components/menu/YMenu.d.ts +70 -36
- package/types/components/pagination/YPagination.d.ts +2 -2
- package/types/components/panel/YDividePanel.d.ts +1 -1
- package/types/components/plate/YPlate.d.ts +1 -1
- package/types/components/progress-bar/YProgressBar.d.ts +1 -1
- package/types/components/select/YSelect.d.ts +4790 -3589
- package/types/components/snackbar/YSnackbar.d.ts +2 -2
- package/types/components/switch/YSwitch.d.ts +2 -2
- package/types/components/tab/YTab.d.ts +1 -1
- package/types/components/tab/YTabs.d.ts +1 -1
- package/types/components/table/YDataTable.d.ts +2 -2
- package/types/components/table/YDataTableBody.d.ts +1 -1
- package/types/components/table/YDataTableCell.d.ts +1 -1
- package/types/components/table/YDataTableControl.d.ts +1 -1
- package/types/components/table/YDataTableHead.d.ts +1 -1
- package/types/components/table/YDataTableLayer.d.ts +1 -1
- package/types/components/table/YDataTableRow.d.ts +1 -1
- package/types/components/table/YDataTableServer.d.ts +1 -1
- package/types/components/table/YTable.d.ts +1 -1
- package/types/components/text-ellipsis/YTextEllipsis.d.ts +14 -0
- package/types/components/text-ellipsis/index.d.ts +1 -0
- package/types/components/text-highlighter/YTextHighlighter.d.ts +1 -1
- package/types/components/textarea/YTextarea.d.ts +181 -232
- package/types/components/tooltip/YTooltip.d.ts +1883 -39
- package/types/components/transitions/expand-transition.d.ts +1 -1
- package/types/components/transitions/index.d.ts +2 -2
- package/types/components/tree-view/YTreeView.d.ts +5 -5
- package/types/components/tree-view/YTreeViewNode.d.ts +1 -1
- package/types/composables/coordinate/index.d.ts +67 -34
- package/types/composables/icon.d.ts +2 -2
- package/types/composables/theme/index.d.ts +1 -1
- package/types/composables/validation.d.ts +4 -4
- package/types/globals.d.ts +14 -10
|
@@ -43,8 +43,8 @@ export declare const YSnackbar: import("vue").DefineComponent<{
|
|
|
43
43
|
computedContentClasses: import("vue").ComputedRef<Record<string, boolean>>;
|
|
44
44
|
computedInset: import("vue").ComputedRef<any>;
|
|
45
45
|
proxyTransition: import("vue").ComputedRef<any>;
|
|
46
|
-
onClickContent: (event:
|
|
47
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("click" | "update:modelValue")[], "click" | "update:modelValue", import("vue").
|
|
46
|
+
onClickContent: (event: Event) => void;
|
|
47
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("click" | "update:modelValue")[], "click" | "update:modelValue", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
48
48
|
modelValue: {
|
|
49
49
|
type: PropType<boolean>;
|
|
50
50
|
};
|
|
@@ -61,7 +61,7 @@ export declare const YSwitch: import("vue").DefineComponent<{
|
|
|
61
61
|
onKeydown($event: KeyboardEvent): void;
|
|
62
62
|
onChange($event: Event): void;
|
|
63
63
|
changeInput(checked: boolean, event?: Event): void;
|
|
64
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").
|
|
64
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
65
65
|
input: {
|
|
66
66
|
type: PropType<boolean | any[]>;
|
|
67
67
|
default: boolean;
|
|
@@ -97,8 +97,8 @@ export declare const YSwitch: import("vue").DefineComponent<{
|
|
|
97
97
|
};
|
|
98
98
|
}>>, {
|
|
99
99
|
disabled: boolean;
|
|
100
|
-
loading: boolean;
|
|
101
100
|
input: boolean | any[];
|
|
101
|
+
loading: boolean;
|
|
102
102
|
stickOut: boolean;
|
|
103
103
|
stateLabel: boolean;
|
|
104
104
|
labelOn: string;
|
|
@@ -213,7 +213,7 @@ export declare const YTab: import("vue").DefineComponent<{
|
|
|
213
213
|
text: PropType<string>;
|
|
214
214
|
hideIndicator: PropType<boolean>;
|
|
215
215
|
indicatorColor: PropType<string>;
|
|
216
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").
|
|
216
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
217
217
|
value: null;
|
|
218
218
|
disabled: BooleanConstructor;
|
|
219
219
|
selectedClass: {
|
|
@@ -93,7 +93,7 @@ export declare const YTabs: import("vue").DefineComponent<{
|
|
|
93
93
|
selected: import("vue").Ref<readonly number[]>;
|
|
94
94
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
95
95
|
'update:modelValue': (value: any) => boolean;
|
|
96
|
-
}, string, import("vue").
|
|
96
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
97
97
|
modelValue: {
|
|
98
98
|
type: null;
|
|
99
99
|
default: undefined;
|
|
@@ -335,7 +335,7 @@ export declare const YDataTable: import("vue").DefineComponent<{
|
|
|
335
335
|
row: any;
|
|
336
336
|
}) => true;
|
|
337
337
|
scroll: (e: Event) => true;
|
|
338
|
-
}, string, import("vue").
|
|
338
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
339
339
|
tag: {
|
|
340
340
|
type: PropType<string>;
|
|
341
341
|
default: string;
|
|
@@ -418,8 +418,8 @@ export declare const YDataTable: import("vue").DefineComponent<{
|
|
|
418
418
|
default: number;
|
|
419
419
|
};
|
|
420
420
|
}>> & {
|
|
421
|
-
"onUpdate:modelValue"?: ((value: any[]) => any) | undefined;
|
|
422
421
|
onScroll?: ((e: Event) => any) | undefined;
|
|
422
|
+
"onUpdate:modelValue"?: ((value: any[]) => any) | undefined;
|
|
423
423
|
"onClick:row"?: ((e: Event, value: {
|
|
424
424
|
row: any;
|
|
425
425
|
}) => any) | undefined;
|
|
@@ -82,7 +82,7 @@ export declare const YDataTableBody: import("vue").DefineComponent<{
|
|
|
82
82
|
'onClick:row': PropType<(e: Event, value: any) => void>;
|
|
83
83
|
'onDblclick:row': PropType<(e: Event, value: any) => void>;
|
|
84
84
|
'onContextmenu:row': PropType<(e: Event, value: any) => void>;
|
|
85
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click:row"[], "click:row", import("vue").
|
|
85
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click:row"[], "click:row", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
86
86
|
items: {
|
|
87
87
|
type: PropType<readonly DataTableItem<any>[]>;
|
|
88
88
|
default: () => never[];
|
|
@@ -23,7 +23,7 @@ export declare const YDataTableCell: import("vue").DefineComponent<{
|
|
|
23
23
|
type: PropType<"end" | "start" | "center">;
|
|
24
24
|
default: string;
|
|
25
25
|
};
|
|
26
|
-
}, void, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").
|
|
26
|
+
}, void, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
27
27
|
type: {
|
|
28
28
|
type: PropType<"data" | "head">;
|
|
29
29
|
default: string;
|
|
@@ -51,7 +51,7 @@ export declare const YDataTableControl: import("vue").DefineComponent<{
|
|
|
51
51
|
pageLength: PropType<number>;
|
|
52
52
|
setPageSize: PropType<(pageSize: number) => void>;
|
|
53
53
|
setPage: PropType<(page: number) => void>;
|
|
54
|
-
}, void, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").
|
|
54
|
+
}, void, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
55
55
|
page: {
|
|
56
56
|
type: PropType<string | number>;
|
|
57
57
|
default: number;
|
|
@@ -50,7 +50,7 @@ export declare const YDataTableHead: import("vue").DefineComponent<{
|
|
|
50
50
|
};
|
|
51
51
|
dualSortIcon: BooleanConstructor;
|
|
52
52
|
sticky: BooleanConstructor;
|
|
53
|
-
}, void, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").
|
|
53
|
+
}, void, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
54
54
|
multiSort: BooleanConstructor;
|
|
55
55
|
sortAscIcon: {
|
|
56
56
|
type: StringConstructor;
|
|
@@ -5,7 +5,7 @@ export declare const YDataTableLayer: import("vue").DefineComponent<{
|
|
|
5
5
|
YTableWire: {
|
|
6
6
|
containerRect: Ref<DOMRect>;
|
|
7
7
|
} | undefined;
|
|
8
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").
|
|
8
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
9
9
|
slotProps: PropType<any>;
|
|
10
10
|
}>>, {}, {}>;
|
|
11
11
|
export type YDataTableLayer = InstanceType<typeof YDataTableLayer>;
|
|
@@ -36,7 +36,7 @@ export declare const YDataTableRow: import("vue").DefineComponent<{
|
|
|
36
36
|
onHover: PropType<(...args: any[]) => void>;
|
|
37
37
|
item: PropType<DataTableItem<any>>;
|
|
38
38
|
cellProps: PropType<CellProps>;
|
|
39
|
-
}, void, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").
|
|
39
|
+
}, void, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
40
40
|
index: PropType<number>;
|
|
41
41
|
onClick: PropType<(...args: any[]) => void>;
|
|
42
42
|
onContextmenu: PropType<(...args: any[]) => void>;
|
|
@@ -369,7 +369,7 @@ export declare const YDataTableServer: import("vue").DefineComponent<{
|
|
|
369
369
|
'click:row': (e: Event, value: {
|
|
370
370
|
row: any;
|
|
371
371
|
}) => true;
|
|
372
|
-
}, string, import("vue").
|
|
372
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
373
373
|
tag: {
|
|
374
374
|
type: PropType<string>;
|
|
375
375
|
default: string;
|
|
@@ -60,7 +60,7 @@ export declare const YTable: import("vue").DefineComponent<{
|
|
|
60
60
|
type: PropType<boolean>;
|
|
61
61
|
};
|
|
62
62
|
onScroll: PropType<(e: Event) => void>;
|
|
63
|
-
}, void, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "scroll"[], "scroll", import("vue").
|
|
63
|
+
}, void, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "scroll"[], "scroll", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
64
64
|
tag: {
|
|
65
65
|
type: PropType<string>;
|
|
66
66
|
default: string;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export declare const YTextEllipsis: import("vue").DefineComponent<{
|
|
2
|
+
text: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
default: string;
|
|
5
|
+
};
|
|
6
|
+
}, void, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
7
|
+
text: {
|
|
8
|
+
type: StringConstructor;
|
|
9
|
+
default: string;
|
|
10
|
+
};
|
|
11
|
+
}>>, {
|
|
12
|
+
text: string;
|
|
13
|
+
}, {}>;
|
|
14
|
+
export type YTextEllipsis = InstanceType<typeof YTextEllipsis>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './YTextEllipsis';
|
|
@@ -21,7 +21,7 @@ export declare const YTextHighlighter: import("vue").DefineComponent<{
|
|
|
21
21
|
createItem(text: string): VNode;
|
|
22
22
|
createHighlightKeywordItem(text: string): VNode;
|
|
23
23
|
createSplitTexts(): VNode[];
|
|
24
|
-
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").
|
|
24
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
25
25
|
text: {
|
|
26
26
|
type: StringConstructor;
|
|
27
27
|
};
|