vunor 0.0.15 → 0.0.27
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/nuxt.mjs +13 -3
- package/dist/theme.d.ts +8 -17
- package/dist/theme.mjs +409 -276
- package/dist/utils.d.ts +14 -0
- package/dist/utils.mjs +17 -10
- package/dist/vunor.d.ts +121 -0
- package/dist/vunor.mjs +159 -0
- package/package.json +21 -5
- package/src/components/AppToasts/AppToasts.vue +76 -0
- package/src/components/AppToasts/app-toasts.ts +43 -0
- package/src/components/AppToasts/shortcuts.ts +26 -0
- package/src/components/Calendar/Calendar.vue +70 -0
- package/src/components/Calendar/shortcuts.ts +38 -0
- package/src/components/Card/Card.vue +1 -1
- package/src/components/Card/CardHeader.vue +1 -1
- package/src/components/Card/pi.ts +1 -2
- package/src/components/Checkbox/Checkbox.vue +1 -1
- package/src/components/Combobox/Combobox.vue +17 -5
- package/src/components/DatePicker/DatePicker.vue +31 -0
- package/src/components/DatePicker/DatePickerBase.vue +139 -0
- package/src/components/DatePicker/DatePickerInner.vue +27 -0
- package/src/components/DatePicker/DatePickerPopup.vue +84 -0
- package/src/components/Dialog/DelayedSwitch.vue +51 -0
- package/src/components/Dialog/Dialog.vue +199 -0
- package/src/components/Dialog/shortcuts.ts +17 -0
- package/src/components/Input/Input.vue +9 -7
- package/src/components/Input/InputBase.vue +3 -3
- package/src/components/Input/index.ts +0 -1
- package/src/components/Input/pi.ts +2 -2
- package/src/components/Input/utils.ts +55 -2
- package/src/components/Loading/InnerLoading.vue +14 -0
- package/src/components/Loading/LoadingIndicator.vue +1 -1
- package/src/components/Loading/shortcuts.ts +2 -0
- package/src/components/OverflowContainer/OverflowContainer.vue +1 -1
- package/src/components/ProgressBar/ProgressBar.vue +22 -0
- package/src/components/ProgressBar/shortcuts.ts +25 -0
- package/src/components/Select/Select.vue +2 -2
- package/src/components/Select/shortcuts.ts +1 -1
- package/src/components/shortcuts.ts +11 -0
- package/src/components/utils/index.ts +1 -0
- package/src/components/utils/merge-class.ts +31 -0
- package/src/components/Input/types.ts +0 -54
package/dist/nuxt.mjs
CHANGED
|
@@ -1,31 +1,41 @@
|
|
|
1
1
|
import { defineNuxtModule as a, addComponent as r } from "@nuxt/kit";
|
|
2
|
-
var
|
|
2
|
+
var i = [
|
|
3
3
|
"AppLayout",
|
|
4
|
+
"AppToasts",
|
|
4
5
|
"Button",
|
|
5
6
|
"ButtonBase",
|
|
7
|
+
"Calendar",
|
|
6
8
|
"Card",
|
|
7
9
|
"CardHeader",
|
|
8
10
|
"CardInner",
|
|
9
11
|
"Checkbox",
|
|
10
12
|
"Combobox",
|
|
13
|
+
"DatePicker",
|
|
14
|
+
"DatePickerBase",
|
|
15
|
+
"DatePickerInner",
|
|
16
|
+
"DatePickerPopup",
|
|
11
17
|
"DevTools",
|
|
18
|
+
"DelayedSwitch",
|
|
19
|
+
"Dialog",
|
|
12
20
|
"Icon",
|
|
13
21
|
"Input",
|
|
14
22
|
"InputBase",
|
|
15
23
|
"Label",
|
|
24
|
+
"InnerLoading",
|
|
16
25
|
"LoadingIndicator",
|
|
17
26
|
"Menu",
|
|
18
27
|
"MenuItem",
|
|
19
28
|
"OverflowContainer",
|
|
20
29
|
"Pagination",
|
|
21
30
|
"Popover",
|
|
31
|
+
"ProgressBar",
|
|
22
32
|
"RadioGroup",
|
|
23
33
|
"Select",
|
|
24
34
|
"SelectBase",
|
|
25
35
|
"Slider",
|
|
26
36
|
"Tabs"
|
|
27
37
|
];
|
|
28
|
-
const n =
|
|
38
|
+
const n = i, s = a({
|
|
29
39
|
meta: {
|
|
30
40
|
name: "vunor/nuxt",
|
|
31
41
|
configKey: "vunor",
|
|
@@ -50,5 +60,5 @@ const n = u, d = a({
|
|
|
50
60
|
}
|
|
51
61
|
});
|
|
52
62
|
export {
|
|
53
|
-
|
|
63
|
+
s as default
|
|
54
64
|
};
|
package/dist/theme.d.ts
CHANGED
|
@@ -37,7 +37,6 @@ declare const themeFactory: (opts: Required<TVunorUnoPresetOpts> & {
|
|
|
37
37
|
[x: string]: string;
|
|
38
38
|
};
|
|
39
39
|
surfaces: Record<string, TVunorSurfaceConfig>;
|
|
40
|
-
borderColor: string;
|
|
41
40
|
reverseLightLayers: boolean;
|
|
42
41
|
reverseDarkLayers: boolean;
|
|
43
42
|
lineHeight: {
|
|
@@ -67,22 +66,9 @@ declare const themeFactory: (opts: Required<TVunorUnoPresetOpts> & {
|
|
|
67
66
|
base: string;
|
|
68
67
|
};
|
|
69
68
|
animation: {
|
|
70
|
-
durations
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
'slide-up-and-fade': string;
|
|
74
|
-
'slide-right-and-fade': string;
|
|
75
|
-
'zoom-fade-in': string;
|
|
76
|
-
};
|
|
77
|
-
keyframes: {
|
|
78
|
-
'slide-down-and-fade': string;
|
|
79
|
-
'slide-left-and-fade': string;
|
|
80
|
-
'slide-up-and-fade': string;
|
|
81
|
-
'slide-right-and-fade': string;
|
|
82
|
-
'zoom-fade-in': string;
|
|
83
|
-
'loading-dashoffset': string;
|
|
84
|
-
'cb-appear': string;
|
|
85
|
-
};
|
|
69
|
+
durations?: Record<string, string>;
|
|
70
|
+
animation?: Record<string, string>;
|
|
71
|
+
keyframes?: Record<string, string>;
|
|
86
72
|
};
|
|
87
73
|
};
|
|
88
74
|
};
|
|
@@ -331,6 +317,11 @@ declare interface TVunorUnoPresetOpts {
|
|
|
331
317
|
xl?: string;
|
|
332
318
|
};
|
|
333
319
|
baseRadius?: string;
|
|
320
|
+
animation?: {
|
|
321
|
+
durations?: Record<string, string>;
|
|
322
|
+
animation?: Record<string, string>;
|
|
323
|
+
keyframes?: Record<string, string>;
|
|
324
|
+
};
|
|
334
325
|
}
|
|
335
326
|
|
|
336
327
|
/**
|