yuyeon 0.3.3 → 0.3.4-beta.9
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 +2241 -2217
- package/dist/yuyeon.umd.cjs +3 -3
- package/lib/components/draggable/YDraggable.js.map +1 -1
- package/lib/components/draggable/index.js +2 -0
- package/lib/components/draggable/index.js.map +1 -0
- package/lib/components/field-input/YFieldInput.js +4 -2
- package/lib/components/field-input/YFieldInput.js.map +1 -1
- package/lib/components/input/YInput.scss +1 -1
- package/lib/components/radio/YRadio.js +58 -0
- package/lib/components/radio/YRadio.js.map +1 -0
- package/lib/components/radio/YRadio.scss +38 -0
- package/lib/components/radio/YRadioIcon.js +33 -0
- package/lib/components/radio/YRadioIcon.js.map +1 -0
- package/lib/components/radio/YRadioIcon.scss +44 -0
- package/lib/components/radio/index.js +3 -0
- package/lib/components/radio/index.js.map +1 -0
- package/lib/components/select/YSelect.js +0 -1
- package/lib/components/select/YSelect.js.map +1 -1
- package/lib/components/table/YDataTable.js +7 -4
- package/lib/components/table/YDataTable.js.map +1 -1
- package/lib/components/table/YDataTableControl.js +8 -6
- package/lib/components/table/YDataTableControl.js.map +1 -1
- package/lib/components/table/YDataTableControl.scss +10 -0
- package/lib/components/table/YDataTableServer.js +8 -5
- package/lib/components/table/YDataTableServer.js.map +1 -1
- package/lib/components/text-highlighter/YTextHighlighter.js +2 -1
- package/lib/components/text-highlighter/YTextHighlighter.js.map +1 -1
- package/lib/components/tree-view/YTreeViewNode.js +6 -2
- package/lib/components/tree-view/YTreeViewNode.js.map +1 -1
- package/lib/composables/style-color.js +1 -2
- package/lib/composables/style-color.js.map +1 -1
- package/lib/composables/theme/index.js +8 -1
- package/lib/composables/theme/index.js.map +1 -1
- package/lib/composables/validation.js +7 -4
- package/lib/composables/validation.js.map +1 -1
- package/lib/directives/index.js +3 -0
- package/lib/directives/index.js.map +1 -0
- package/lib/directives/plate-wave/index.js +2 -2
- package/lib/directives/plate-wave/index.js.map +1 -1
- package/lib/directives/theme-class/index.js +24 -0
- package/lib/directives/theme-class/index.js.map +1 -0
- package/lib/util/string.js +3 -0
- package/lib/util/string.js.map +1 -1
- package/package.json +9 -1
- package/types/components/badge/YBadge.d.ts +0 -3
- package/types/components/chip/YChip.d.ts +0 -3
- package/types/components/draggable/index.d.ts +1 -0
- package/types/components/field-input/YFieldInput.d.ts +6 -0
- package/types/components/radio/YRadio.d.ts +25 -0
- package/types/components/radio/YRadioIcon.d.ts +6 -0
- package/types/components/radio/index.d.ts +2 -0
- package/types/components/select/YSelect.d.ts +6 -0
- package/types/components/table/YDataTable.d.ts +3 -0
- package/types/components/table/YDataTableControl.d.ts +12 -0
- package/types/components/table/YDataTableServer.d.ts +20 -8
- package/types/composables/style-color.d.ts +0 -1
- package/types/composables/theme/index.d.ts +1 -0
- package/types/directives/index.d.ts +2 -0
- package/types/directives/plate-wave/index.d.ts +7 -1
- package/types/shims.d.ts +58 -52
- package/types/util/string.d.ts +1 -0
- /package/types/directives/{theme-class.d.ts → theme-class/index.d.ts} +0 -0
package/types/shims.d.ts
CHANGED
|
@@ -1,58 +1,64 @@
|
|
|
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';
|
|
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, YTextEllipsis, YTextHighlighter, YTextarea, YTi, YTooltip, YTreeView, YTreeViewNode } from 'yuyeon/components';
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
declare module '
|
|
4
|
+
declare module 'vue' {
|
|
5
5
|
export interface GlobalComponents {
|
|
6
6
|
// @define-components
|
|
7
|
-
YApp:
|
|
8
|
-
YButton:
|
|
9
|
-
YChip:
|
|
10
|
-
YInput:
|
|
11
|
-
YFieldInput:
|
|
12
|
-
YTextarea:
|
|
13
|
-
YForm:
|
|
14
|
-
YCard:
|
|
15
|
-
YCardBody:
|
|
16
|
-
YCardHeader:
|
|
17
|
-
YCardFooter:
|
|
18
|
-
YDialog:
|
|
19
|
-
YLayer:
|
|
20
|
-
YSnackbar:
|
|
21
|
-
YProgressBar:
|
|
22
|
-
YSpinnerRing:
|
|
23
|
-
YTooltip:
|
|
24
|
-
YExpandVTransition:
|
|
25
|
-
YExpandHTransition:
|
|
26
|
-
YDividePanel:
|
|
27
|
-
YList:
|
|
28
|
-
YListItem:
|
|
29
|
-
YTreeView:
|
|
30
|
-
YTreeViewNode:
|
|
31
|
-
YTable:
|
|
32
|
-
YDataTable:
|
|
33
|
-
YDataTableLayerRows:
|
|
34
|
-
YDataTableLayerRow:
|
|
35
|
-
YDataTableServer:
|
|
36
|
-
YMenu:
|
|
37
|
-
YPagination:
|
|
38
|
-
YInputCheckbox:
|
|
39
|
-
YCheckbox:
|
|
40
|
-
YSwitch:
|
|
41
|
-
YDropdown:
|
|
42
|
-
YSelect:
|
|
43
|
-
YAlert:
|
|
44
|
-
YTabs:
|
|
45
|
-
YTab:
|
|
46
|
-
YDivider:
|
|
47
|
-
YDateCalendar:
|
|
48
|
-
YIcon:
|
|
49
|
-
YDatePicker:
|
|
50
|
-
YMonthPicker:
|
|
51
|
-
YBadge:
|
|
52
|
-
YIpv4Field:
|
|
53
|
-
YHover:
|
|
54
|
-
YTi:
|
|
55
|
-
YTextHighlighter:
|
|
56
|
-
YProgressRing:
|
|
7
|
+
YApp: YApp;
|
|
8
|
+
YButton: YButton;
|
|
9
|
+
YChip: YChip;
|
|
10
|
+
YInput: YInput;
|
|
11
|
+
YFieldInput: YFieldInput;
|
|
12
|
+
YTextarea: YTextarea;
|
|
13
|
+
YForm: YForm;
|
|
14
|
+
YCard: YCard;
|
|
15
|
+
YCardBody: YCardBody;
|
|
16
|
+
YCardHeader: YCardHeader;
|
|
17
|
+
YCardFooter: YCardFooter;
|
|
18
|
+
YDialog: YDialog;
|
|
19
|
+
YLayer: YLayer;
|
|
20
|
+
YSnackbar: YSnackbar;
|
|
21
|
+
YProgressBar: YProgressBar;
|
|
22
|
+
YSpinnerRing: YSpinnerRing;
|
|
23
|
+
YTooltip: YTooltip;
|
|
24
|
+
YExpandVTransition: YExpandVTransition;
|
|
25
|
+
YExpandHTransition: YExpandHTransition;
|
|
26
|
+
YDividePanel: YDividePanel;
|
|
27
|
+
YList: YList;
|
|
28
|
+
YListItem: YListItem;
|
|
29
|
+
YTreeView: YTreeView;
|
|
30
|
+
YTreeViewNode: YTreeViewNode;
|
|
31
|
+
YTable: YTable;
|
|
32
|
+
YDataTable: YDataTable;
|
|
33
|
+
YDataTableLayerRows: YDataTableLayerRows;
|
|
34
|
+
YDataTableLayerRow: YDataTableLayerRow;
|
|
35
|
+
YDataTableServer: YDataTableServer;
|
|
36
|
+
YMenu: YMenu;
|
|
37
|
+
YPagination: YPagination;
|
|
38
|
+
YInputCheckbox: YInputCheckbox;
|
|
39
|
+
YCheckbox: YCheckbox;
|
|
40
|
+
YSwitch: YSwitch;
|
|
41
|
+
YDropdown: YDropdown;
|
|
42
|
+
YSelect: YSelect;
|
|
43
|
+
YAlert: YAlert;
|
|
44
|
+
YTabs: YTabs;
|
|
45
|
+
YTab: YTab;
|
|
46
|
+
YDivider: YDivider;
|
|
47
|
+
YDateCalendar: YDateCalendar;
|
|
48
|
+
YIcon: YIcon;
|
|
49
|
+
YDatePicker: YDatePicker;
|
|
50
|
+
YMonthPicker: YMonthPicker;
|
|
51
|
+
YBadge: YBadge;
|
|
52
|
+
YIpv4Field: YIpv4Field;
|
|
53
|
+
YHover: YHover;
|
|
54
|
+
YTi: YTi;
|
|
55
|
+
YTextHighlighter: YTextHighlighter;
|
|
56
|
+
YProgressRing: YProgressRing;
|
|
57
|
+
YTextEllipsis: YTextEllipsis;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
export interface GlobalDirectives {
|
|
61
|
+
vPlateWave: (typeof import('yuyeon/directives'))['PlateWave'];
|
|
62
|
+
vComplementClick: (typeof import('yuyeon/directives'))['ComplementClick'];
|
|
57
63
|
}
|
|
58
64
|
}
|
package/types/util/string.d.ts
CHANGED
|
File without changes
|