nightshade 1.0.0-3 → 1.0.1
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/bundle.js +22 -0
- package/dist/components.css +1 -0
- package/dist/components.js +16 -0
- package/dist/dom-LZO9EPGL.js +22 -0
- package/dist/index-8NlsjwJw.js +580 -0
- package/dist/plugins-BNw3Bq_Y.js +51 -0
- package/dist/types/lib/components/Btn.vue.d.ts +157 -0
- package/dist/types/lib/components/Bubble.vue.d.ts +23 -0
- package/dist/types/lib/components/Circle.vue.d.ts +14 -0
- package/dist/types/lib/components/ContextPopup.vue.d.ts +85 -0
- package/dist/types/lib/components/HGroup.vue.d.ts +47 -0
- package/dist/types/lib/components/HStack.vue.d.ts +2 -0
- package/dist/types/lib/components/InputBase.vue.d.ts +110 -0
- package/dist/types/lib/components/InputText.vue.d.ts +11 -0
- package/dist/types/lib/components/InputTextarea.vue.d.ts +13 -0
- package/dist/types/lib/components/Sizer.vue.d.ts +2 -0
- package/dist/types/lib/components/Tab.vue.d.ts +22 -0
- package/dist/types/lib/components/TabCap.vue.d.ts +23 -0
- package/dist/types/lib/components/VGroup.vue.d.ts +38 -0
- package/dist/types/lib/components/index.d.ts +14 -0
- package/dist/types/lib/index.d.ts +4 -0
- package/dist/types/lib/utils/ThemeManager.d.ts +13 -0
- package/dist/types/lib/utils/dom.d.ts +3 -0
- package/dist/types/lib/utils/index.d.ts +4 -0
- package/dist/types/lib/utils/plugins.d.ts +2 -0
- package/dist/types/lib/utils/point.d.ts +4 -0
- package/dist/utils.js +7 -0
- package/package.json +9 -5
- package/stylesheets/modules/headings.css +3 -3
- package/stylesheets/variables/color-tokens.css +46 -39
- package/stylesheets/variables/commons.css +11 -2
- package/dist/nightshade.css +0 -1
- package/dist/nightshade.js +0 -327
package/package.json
CHANGED
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nightshade",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Vue UI library & design system",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
7
|
-
".": "./dist/
|
|
8
|
-
"./
|
|
9
|
-
"./stylesheets
|
|
7
|
+
".": "./dist/bundle.js",
|
|
8
|
+
"./components.css": "./dist/components.css",
|
|
9
|
+
"./stylesheets.css": "./stylesheets/full.css",
|
|
10
|
+
"./stylesheets/*": "./stylesheets/*",
|
|
11
|
+
"./utils": "./dist/utils.js"
|
|
10
12
|
},
|
|
13
|
+
"types": "./dist/types/index.d.ts",
|
|
11
14
|
"files": [
|
|
12
15
|
"dist",
|
|
13
16
|
"stylesheets"
|
|
@@ -30,6 +33,7 @@
|
|
|
30
33
|
"@vitejs/plugin-vue": "^5.2.1",
|
|
31
34
|
"eslint": "^9.17.0",
|
|
32
35
|
"typescript": "^5.7.2",
|
|
33
|
-
"vite": "^6.
|
|
36
|
+
"vite": "^6.2.2",
|
|
37
|
+
"vite-plugin-dts": "^4.5.3"
|
|
34
38
|
}
|
|
35
39
|
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
:root {
|
|
2
2
|
|
|
3
|
-
--h1-font-size:
|
|
3
|
+
--h1-font-size: 36px;
|
|
4
4
|
--h1-font-weight: var(--font-weight-bold);
|
|
5
5
|
--h1-color: var(--color-text-0);
|
|
6
6
|
|
|
7
|
-
--h2-font-size:
|
|
7
|
+
--h2-font-size: 32px;
|
|
8
8
|
--h2-font-weight: var(--font-weight);
|
|
9
9
|
--h2-color: var(--color-text-0);
|
|
10
10
|
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
--h3-color: var(--color-text-0);
|
|
14
14
|
|
|
15
15
|
--h4-font-size: 20px;
|
|
16
|
-
--h4-font-weight: var(--font-weight
|
|
16
|
+
--h4-font-weight: var(--font-weight);
|
|
17
17
|
--h4-color: var(--color-text-0);
|
|
18
18
|
|
|
19
19
|
--h5-font-size: 16px;
|
|
@@ -12,12 +12,55 @@
|
|
|
12
12
|
--color-text-3: hsl(280deg, 10%, 72%);
|
|
13
13
|
--color-text-4: hsl(280deg, 10%, 78%);
|
|
14
14
|
|
|
15
|
-
--color-default: var(--color-text-0);
|
|
16
15
|
--color-default-0: var(--color-base-0);
|
|
17
16
|
--color-default-1: var(--color-base-1);
|
|
18
17
|
--color-default-2: var(--color-base-2);
|
|
19
18
|
--color-default-3: var(--color-base-3);
|
|
20
19
|
--color-default-4: var(--color-base-4);
|
|
20
|
+
|
|
21
|
+
--color-primary-0: hsl(310deg, 64%, 75%);
|
|
22
|
+
--color-primary-1: hsl(310deg, 64%, 64%);
|
|
23
|
+
--color-primary-2: hsl(310deg, 64%, 50%);
|
|
24
|
+
--color-primary-3: hsl(310deg, 64%, 44%);
|
|
25
|
+
--color-primary-4: hsl(310deg, 64%, 24%);
|
|
26
|
+
--color-primary-text: #fff;
|
|
27
|
+
|
|
28
|
+
--color-secondary-0: hsl(290deg, 50%, 80%);
|
|
29
|
+
--color-secondary-1: hsl(290deg, 50%, 68%);
|
|
30
|
+
--color-secondary-2: hsl(290deg, 50%, 60%);
|
|
31
|
+
--color-secondary-3: hsl(290deg, 50%, 48%);
|
|
32
|
+
--color-secondary-4: hsl(290deg, 50%, 24%);
|
|
33
|
+
--color-secondary-text: #fff;
|
|
34
|
+
|
|
35
|
+
--color-tertiary-0: hsl(176deg, 50%, 78%);
|
|
36
|
+
--color-tertiary-1: hsl(176deg, 50%, 72%);
|
|
37
|
+
--color-tertiary-2: hsl(176deg, 50%, 50%);
|
|
38
|
+
--color-tertiary-3: hsl(176deg, 50%, 44%);
|
|
39
|
+
--color-tertiary-4: hsl(176deg, 28%, 24%);
|
|
40
|
+
--color-tertiary-text: #fff;
|
|
41
|
+
|
|
42
|
+
--color-success-0: hsl(96deg, 60%, 80%);
|
|
43
|
+
--color-success-1: hsl(96deg, 60%, 72%);
|
|
44
|
+
--color-success-2: hsl(96deg, 60%, 56%);
|
|
45
|
+
--color-success-3: hsl(96deg, 60%, 48%);
|
|
46
|
+
--color-success-4: hsl(96deg, 40%, 28%);
|
|
47
|
+
--color-success-text: #fff;
|
|
48
|
+
|
|
49
|
+
--color-warning-0: hsl(48deg, 88%, 85%);
|
|
50
|
+
--color-warning-1: hsl(48deg, 88%, 80%);
|
|
51
|
+
--color-warning-2: hsl(48deg, 88%, 60%);
|
|
52
|
+
--color-warning-3: hsl(48deg, 88%, 48%);
|
|
53
|
+
--color-warning-4: hsl(48deg, 60%, 28%);
|
|
54
|
+
--color-warning-text: #000;
|
|
55
|
+
|
|
56
|
+
--color-danger-0: hsl(350deg, 82%, 88%);
|
|
57
|
+
--color-danger-1: hsl(350deg, 82%, 68%);
|
|
58
|
+
--color-danger-2: hsl(350deg, 82%, 60%);
|
|
59
|
+
--color-danger-3: hsl(350deg, 82%, 52%);
|
|
60
|
+
--color-danger-4: hsl(350deg, 60%, 32%);
|
|
61
|
+
--color-danger-text: #fff;
|
|
62
|
+
|
|
63
|
+
--color-default: var(--color-text-0);
|
|
21
64
|
--color-default-text: var(--color-text-0);
|
|
22
65
|
--color-default-surface-top: var(--color-default-1);
|
|
23
66
|
--color-default-surface-bottom: var(--color-default-3);
|
|
@@ -26,12 +69,6 @@
|
|
|
26
69
|
--color-default-shadow: var(--color-default-4);
|
|
27
70
|
|
|
28
71
|
--color-primary: var(--color-primary-2);
|
|
29
|
-
--color-primary-0: hsl(310deg, 64%, 75%);
|
|
30
|
-
--color-primary-1: hsl(310deg, 64%, 64%);
|
|
31
|
-
--color-primary-2: hsl(310deg, 64%, 50%);
|
|
32
|
-
--color-primary-3: hsl(310deg, 64%, 44%);
|
|
33
|
-
--color-primary-4: hsl(310deg, 64%, 36%);
|
|
34
|
-
--color-primary-text: #fff;
|
|
35
72
|
--color-primary-surface-top: var(--color-primary-1);
|
|
36
73
|
--color-primary-surface-bottom: var(--color-primary-3);
|
|
37
74
|
--color-primary-focus: var(--color-primary-0);
|
|
@@ -39,12 +76,6 @@
|
|
|
39
76
|
--color-primary-shadow: var(--color-primary-4);
|
|
40
77
|
|
|
41
78
|
--color-secondary: var(--color-secondary-2);
|
|
42
|
-
--color-secondary-0: hsl(290deg, 50%, 75%);
|
|
43
|
-
--color-secondary-1: hsl(290deg, 50%, 64%);
|
|
44
|
-
--color-secondary-2: hsl(290deg, 50%, 50%);
|
|
45
|
-
--color-secondary-3: hsl(290deg, 50%, 44%);
|
|
46
|
-
--color-secondary-4: hsl(290deg, 50%, 36%);
|
|
47
|
-
--color-secondary-text: #fff;
|
|
48
79
|
--color-secondary-surface-top: var(--color-secondary-1);
|
|
49
80
|
--color-secondary-surface-bottom: var(--color-secondary-3);
|
|
50
81
|
--color-secondary-focus: var(--color-secondary-0);
|
|
@@ -52,12 +83,6 @@
|
|
|
52
83
|
--color-secondary-shadow: var(--color-secondary-4);
|
|
53
84
|
|
|
54
85
|
--color-tertiary: var(--color-tertiary-2);
|
|
55
|
-
--color-tertiary-0: hsl(176deg, 50%, 78%);
|
|
56
|
-
--color-tertiary-1: hsl(176deg, 50%, 72%);
|
|
57
|
-
--color-tertiary-2: hsl(176deg, 50%, 50%);
|
|
58
|
-
--color-tertiary-3: hsl(176deg, 50%, 44%);
|
|
59
|
-
--color-tertiary-4: hsl(176deg, 50%, 36%);
|
|
60
|
-
--color-tertiary-text: #fff;
|
|
61
86
|
--color-tertiary-surface-top: var(--color-tertiary-1);
|
|
62
87
|
--color-tertiary-surface-bottom: var(--color-tertiary-3);
|
|
63
88
|
--color-tertiary-focus: var(--color-tertiary-0);
|
|
@@ -65,12 +90,6 @@
|
|
|
65
90
|
--color-tertiary-shadow: var(--color-tertiary-4);
|
|
66
91
|
|
|
67
92
|
--color-success: var(--color-success-2);
|
|
68
|
-
--color-success-0: hsl(96deg, 60%, 76%);
|
|
69
|
-
--color-success-1: hsl(96deg, 60%, 68%);
|
|
70
|
-
--color-success-2: hsl(96deg, 60%, 50%);
|
|
71
|
-
--color-success-3: hsl(96deg, 60%, 44%);
|
|
72
|
-
--color-success-4: hsl(96deg, 60%, 36%);
|
|
73
|
-
--color-success-text: #fff;
|
|
74
93
|
--color-success-surface-top: var(--color-success-1);
|
|
75
94
|
--color-success-surface-bottom: var(--color-success-3);
|
|
76
95
|
--color-success-focus: var(--color-success-0);
|
|
@@ -78,12 +97,6 @@
|
|
|
78
97
|
--color-success-shadow: var(--color-success-4);
|
|
79
98
|
|
|
80
99
|
--color-warning: var(--color-warning-3);
|
|
81
|
-
--color-warning-0: hsl(48deg, 88%, 85%);
|
|
82
|
-
--color-warning-1: hsl(48deg, 88%, 80%);
|
|
83
|
-
--color-warning-2: hsl(48deg, 88%, 60%);
|
|
84
|
-
--color-warning-3: hsl(48deg, 88%, 48%);
|
|
85
|
-
--color-warning-4: hsl(48deg, 88%, 40%);
|
|
86
|
-
--color-warning-text: #000;
|
|
87
100
|
--color-warning-surface-top: var(--color-warning-1);
|
|
88
101
|
--color-warning-surface-bottom: var(--color-warning-3);
|
|
89
102
|
--color-warning-focus: var(--color-warning-0);
|
|
@@ -91,12 +104,6 @@
|
|
|
91
104
|
--color-warning-shadow: var(--color-warning-4);
|
|
92
105
|
|
|
93
106
|
--color-danger: var(--color-danger-2);
|
|
94
|
-
--color-danger-0: hsl(350deg, 88%, 88%);
|
|
95
|
-
--color-danger-1: hsl(350deg, 88%, 68%);
|
|
96
|
-
--color-danger-2: hsl(350deg, 88%, 60%);
|
|
97
|
-
--color-danger-3: hsl(350deg, 88%, 52%);
|
|
98
|
-
--color-danger-4: hsl(350deg, 88%, 30%);
|
|
99
|
-
--color-danger-text: #fff;
|
|
100
107
|
--color-danger-surface-top: var(--color-danger-1);
|
|
101
108
|
--color-danger-surface-bottom: var(--color-danger-3);
|
|
102
109
|
--color-danger-focus: var(--color-danger-0);
|
|
@@ -105,7 +112,7 @@
|
|
|
105
112
|
|
|
106
113
|
}
|
|
107
114
|
|
|
108
|
-
.
|
|
115
|
+
.theme-dark {
|
|
109
116
|
|
|
110
117
|
--color-base-0: hsl(280deg, 5%, 16%);
|
|
111
118
|
--color-base-1: hsl(280deg, 5%, 20%);
|
|
@@ -113,7 +120,7 @@
|
|
|
113
120
|
--color-base-3: hsl(280deg, 5%, 27%);
|
|
114
121
|
--color-base-4: hsl(280deg, 5%, 32%);
|
|
115
122
|
|
|
116
|
-
--color-text-0: hsl(280deg, 10%,
|
|
123
|
+
--color-text-0: hsl(280deg, 10%, 92%);
|
|
117
124
|
--color-text-1: hsl(280deg, 10%, 72%);
|
|
118
125
|
--color-text-2: hsl(280deg, 10%, 50%);
|
|
119
126
|
--color-text-3: hsl(280deg, 10%, 44%);
|
|
@@ -10,6 +10,10 @@
|
|
|
10
10
|
--color-subtle: var(--color-text-1);
|
|
11
11
|
--color-sublime: var(--color-text-2);
|
|
12
12
|
|
|
13
|
+
--color-shadow-light: rgba(0, 0, 0, 0.1);
|
|
14
|
+
--color-shadow-heavy: rgba(0, 0, 0, 0.2);
|
|
15
|
+
--color-overlay: rgba(0, 0, 0, 0.1);
|
|
16
|
+
|
|
13
17
|
--border-radius: var(--sp);
|
|
14
18
|
--border-radius-round: var(--sp2);
|
|
15
19
|
|
|
@@ -18,8 +22,13 @@
|
|
|
18
22
|
--input-size-smaller: var(--sp2);
|
|
19
23
|
--input-size-large: var(--sp5);
|
|
20
24
|
--input-size-larger: var(--sp6);
|
|
21
|
-
}
|
|
22
25
|
|
|
23
|
-
|
|
26
|
+
--input-border-size: 1px;
|
|
27
|
+
--input-outline-size: 2px;
|
|
28
|
+
}
|
|
24
29
|
|
|
30
|
+
.theme-dark {
|
|
31
|
+
--color-shadow-light: rgba(255, 255, 255, 0.1);
|
|
32
|
+
--color-shadow-heavy: rgba(255, 255, 255, 0.2);
|
|
33
|
+
--color-overlay: rgba(255, 255, 255, 0.08);
|
|
25
34
|
}
|
package/dist/nightshade.css
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.Btn[data-v-32fc4413]{--Btn-padding: var(--sp1-5);--Btn-size: var(--input-size);--Btn-font-size: var(--font-size);--Btn-text-color: inherit;--Btn-outline-color: transparent;--Btn-outline-color-effective: transparent;--Btn-outline-color-focus: var(--color-primary);--Btn-surface-top: transparent;--Btn-surface-bottom: transparent;--Btn-shadow-color: transparent;--Btn-border-radius: var(--border-radius);-webkit-appearance:none;-moz-appearance:none;appearance:none;position:relative;z-index:1;margin:0;padding:0 var(--Btn-padding);height:var(--Btn-size);line-height:var(--Btn-size);box-sizing:border-box;display:inline-flex;align-items:center;justify-content:flex-start;flex-shrink:0;gap:var(--sp);border:0;border-radius:var(--Btn-border-radius);cursor:pointer;-webkit-user-select:none;user-select:none;overflow:hidden;font-family:inherit;font-size:var(--Btn-font-size);color:var(--Btn-text-color);outline:2px solid var(--Btn-outline-color-effective);background:radial-gradient(120% 150% at 80% 0%,var(--Btn-surface-top),var(--Btn-surface-bottom));background-clip:padding-box;box-shadow:0 1px 1px var(--Btn-shadow-color);transition:color .3s,outline .3s,filter .3s,border-radius .3s}.Btn[data-v-32fc4413]:focus,.Btn[data-v-32fc4413]:active,.Btn[data-v-32fc4413]:hover{transition:none}.Btn[data-v-32fc4413]:not(:disabled):hover,.Btn.Btn-pseudo-hover[data-v-32fc4413]{filter:brightness(1.07)}.Btn[data-v-32fc4413]:not(:disabled):focus,.Btn.Btn-pseudo-focus[data-v-32fc4413]{z-index:10;--Btn-outline-color-effective: var(--Btn-outline-color-focus)}.Btn[data-v-32fc4413]:not(:disabled):active,.Btn.Btn-pseudo-active[data-v-32fc4413]{padding-top:1px;box-shadow:0 6px 12px #00000014 inset,0 1px 2px #0000001f inset}.Label[data-v-32fc4413]{line-height:var(--Btn-size);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.Icon[data-v-32fc4413]{width:var(--sp2);display:flex;align-items:center;justify-content:center;font-size:var(--Btn-font-size)}.Btn-square[data-v-32fc4413]{padding-left:0;padding-right:0;width:var(--Btn-size);justify-content:center}.Btn-round[data-v-32fc4413]{--Btn-border-radius: var(--border-radius-round)}.Btn-disabled[data-v-32fc4413]{opacity:.64;filter:saturate(40%);cursor:not-allowed}.Btn-block[data-v-32fc4413]{flex:1 1 auto;display:flex;justify-content:center}.Btn-outline[data-v-32fc4413]{--Btn-outline-color-effective: var(--Btn-outline-color)}.Btn-large[data-v-32fc4413]{--Btn-size: var(--input-size-large);--Btn-font-size: var(--font-size-large);--Btn-padding: var(--sp2)}.Btn-small[data-v-32fc4413]{--Btn-size: var(--input-size-small);--Btn-font-size: var(--font-size-small);--Btn-padding: var(--sp)}.Btn-iconPos-right .Icon[data-v-32fc4413]{order:100}.Btn-default[data-v-32fc4413]{--Btn-text-color: var(--color-default-text);--Btn-surface-top: var(--color-default-surface-top);--Btn-surface-bottom: var(--color-default-surface-bottom);--Btn-surface-top-hover: var(--color-default-surface-top-hover);--Btn-surface-bottom-hover: var(--color-default-surface-bottom-hover);--Btn-outline-color: var(--color-default-outline);--Btn-outline-color-focus: var(--color-default-focus);--Btn-shadow-color: var(--color-default-shadow)}.Btn-primary[data-v-32fc4413]{--Btn-text-color: var(--color-primary-text);--Btn-surface-top: var(--color-primary-surface-top);--Btn-surface-bottom: var(--color-primary-surface-bottom);--Btn-surface-top-hover: var(--color-primary-surface-top-hover);--Btn-surface-bottom-hover: var(--color-primary-surface-bottom-hover);--Btn-outline-color: var(--color-primary-outline);--Btn-outline-color-focus: var(--color-primary-focus);--Btn-shadow-color: var(--color-primary-shadow)}.Btn-secondary[data-v-32fc4413]{--Btn-text-color: var(--color-secondary-text);--Btn-surface-top: var(--color-secondary-surface-top);--Btn-surface-bottom: var(--color-secondary-surface-bottom);--Btn-surface-top-hover: var(--color-secondary-surface-top-hover);--Btn-surface-bottom-hover: var(--color-secondary-surface-bottom-hover);--Btn-outline-color: var(--color-secondary-outline);--Btn-outline-color-focus: var(--color-secondary-focus);--Btn-shadow-color: var(--color-secondary-shadow)}.Btn-tertiary[data-v-32fc4413]{--Btn-text-color: var(--color-tertiary-text);--Btn-surface-top: var(--color-tertiary-surface-top);--Btn-surface-bottom: var(--color-tertiary-surface-bottom);--Btn-surface-top-hover: var(--color-tertiary-surface-top-hover);--Btn-surface-bottom-hover: var(--color-tertiary-surface-bottom-hover);--Btn-outline-color: var(--color-tertiary-outline);--Btn-outline-color-focus: var(--color-tertiary-focus);--Btn-shadow-color: var(--color-tertiary-shadow)}.Btn-success[data-v-32fc4413]{--Btn-text-color: var(--color-success-text);--Btn-surface-top: var(--color-success-surface-top);--Btn-surface-bottom: var(--color-success-surface-bottom);--Btn-surface-top-hover: var(--color-success-surface-top-hover);--Btn-surface-bottom-hover: var(--color-success-surface-bottom-hover);--Btn-outline-color: var(--color-success-outline);--Btn-outline-color-focus: var(--color-success-focus);--Btn-shadow-color: var(--color-success-shadow)}.Btn-warning[data-v-32fc4413]{--Btn-text-color: var(--color-warning-text);--Btn-surface-top: var(--color-warning-surface-top);--Btn-surface-bottom: var(--color-warning-surface-bottom);--Btn-outline-color: var(--color-warning-outline);--Btn-outline-color-focus: var(--color-warning-focus);--Btn-shadow-color: var(--color-warning-shadow)}.Btn-danger[data-v-32fc4413]{--Btn-text-color: var(--color-danger-text);--Btn-surface-top: var(--color-danger-surface-top);--Btn-surface-bottom: var(--color-danger-surface-bottom);--Btn-outline-color: var(--color-danger-outline);--Btn-outline-color-focus: var(--color-danger-focus);--Btn-shadow-color: var(--color-danger-shadow)}.Btn-link-default[data-v-32fc4413]{--Btn-text-color: var(--color-default);--Btn-outline-color: var(--color-default-outline);--Btn-outline-color-focus: var(--color-default-focus)}.Btn-link-primary[data-v-32fc4413]{--Btn-text-color: var(--color-primary);--Btn-outline-color: var(--color-primary-outline);--Btn-outline-color-focus: var(--color-primary-focus)}.Btn-link-secondary[data-v-32fc4413]{--Btn-text-color: var(--color-secondary);--Btn-outline-color: var(--color-secondary-outline);--Btn-outline-color-focus: var(--color-secondary-focus)}.Btn-link-tertiary[data-v-32fc4413]{--Btn-text-color: var(--color-tertiary);--Btn-outline-color: var(--color-tertiary-outline);--Btn-outline-color-focus: var(--color-tertiary-focus)}.Btn-link-success[data-v-32fc4413]{--Btn-text-color: var(--color-success);--Btn-outline-color: var(--color-success-outline);--Btn-outline-color-focus: var(--color-success-focus)}.Btn-link-warning[data-v-32fc4413]{--Btn-text-color: var(--color-warning);--Btn-outline-color: var(--color-warning-outline);--Btn-outline-color-focus: var(--color-warning-focus)}.Btn-link-danger[data-v-32fc4413]{--Btn-text-color: var(--color-danger);--Btn-outline-color: var(--color-danger-outline);--Btn-outline-color-focus: var(--color-danger-focus)}.Circle[data-v-48fdb4ac]{--CircleSize: var(--sp2);width:var(--CircleSize);height:var(--CircleSize);border-radius:var(--CircleSize);box-shadow:0 1px 3px #00000040}.Circle-normal[data-v-48fdb4ac]{--CircleSize: var(--sp2) }.Circle-large[data-v-48fdb4ac]{--CircleSize: var(--sp4) }.Circle-larger[data-v-48fdb4ac]{--CircleSize: var(--sp6) }.HGroup[data-v-0abfef17]{display:flex;flex-flow:row nowrap}.HGroup-align-stretch[data-v-0abfef17]{align-items:stretch}.HGroup-align-baseline[data-v-0abfef17]{align-items:baseline}.HGroup-align-center[data-v-0abfef17]{align-items:center}.HGroup-align-start[data-v-0abfef17]{align-items:flex-start}.HGroup-align-end[data-v-0abfef17]{align-items:flex-end}.HGroup-justify-center[data-v-0abfef17]{justify-content:center}.HGroup-justify-start[data-v-0abfef17]{justify-content:flex-start}.HGroup-justify-end[data-v-0abfef17]{justify-content:flex-end}.HGroup-justify-space-around[data-v-0abfef17]{justify-content:space-around}.HGroup-justify-space-between[data-v-0abfef17]{justify-content:space-between}.HGroup-gap-0[data-v-0abfef17]{gap:0}.HGroup-gap-1[data-v-0abfef17]{gap:var(--sp)}.HGroup-gap-2[data-v-0abfef17]{gap:var(--sp2)}.HGroup-gap-3[data-v-0abfef17]{gap:var(--sp3)}.HGroup-wrap[data-v-0abfef17]{flex-wrap:wrap}.HStack[data-v-48a370d0]{display:flex;align-items:stretch}.HStack[data-v-48a370d0]>*:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.HStack[data-v-48a370d0]>*:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.InputLabel[data-v-8a823fd2]{--InputLabel-size: calc(.75 * var(--InputBase-size));position:relative;z-index:10;display:flex;margin:0 var(--sp2);max-width:75%;height:var(--InputLabel-size);line-height:var(--InputLabel-size);font-size:var(--InputBase-font-size)}.Corner[data-v-8a823fd2]{flex:0 0 var(--InputBase-size);stroke:transparent;fill:var(--InputBase-label-surface)}.Label[data-v-8a823fd2]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;background:var(--InputBase-label-surface);color:var(--InputBase-label-color)}.InputBase[data-v-dfd6217d]{--InputBase-size: var(--input-size);--InputBase-padding: var(--sp1-5);--InputBase-font-size: var(--font-size);--InputBase-text-color: var(--color-text-0);--InputBase-surface: var(--color-base-0);--InputBase-outline-color: transparent;--InputBase-outline-color-focus: var(--color-tertiary-focus);--InputBase-outline-color-invalid: var(--color-danger-focus);--InputBase-border-color: var(--color-base-3);--InputBase-border-color-focus: var(--color-tertiary);--InputBase-border-color-invalid: var(--color-danger);--InputBase-label-color: var(--color-text-0);--InputBase-label-color-focus: var(--color-text-0);--InputBase-label-color-invalid: var(--color-text-0);--InputBase-label-surface: var(--color-base-1);--InputBase-label-surface-focus: var(--InputBase-outline-color-focus);--InputBase-label-surface-invalid: var(--InputBase-outline-color-invalid);--InputBase-border-radius: var(--border-radius);position:relative;display:flex;flex-flow:column nowrap}.Container[data-v-dfd6217d]{position:relative;z-index:1;display:inline-flex;align-items:center;border-radius:var(--border-radius-small);box-sizing:border-box;padding:var(--InputBase-padding);gap:var(--sp);width:100%;min-height:var(--InputBase-size);color:var(--InputBase-text-color);background:var(--InputBase-surface);outline:2px solid var(--InputBase-outline-color);border:1px solid var(--InputBase-border-color);border-radius:var(--InputBase-border-radius);font-size:var(--InputBase-font-size);transition:color .3s,outline .3s,border-radius .3s,filter .3s}.InputBase-fixed-height .Container[data-v-dfd6217d]{height:var(--InputBase-size)}.InputBase[data-v-dfd6217d]:not(.InputBase-disabled):focus-within,.InputBase.InputBase-pseudo-focus[data-v-dfd6217d]{z-index:10;--InputBase-outline-color: var(--InputBase-outline-color-focus);--InputBase-border-color: var(--InputBase-border-color-focus);--InputBase-label-color: var(--InputBase-label-color-focus);--InputBase-label-surface: var(--InputBase-label-surface-focus)}.InputBase-invalid[data-v-dfd6217d]{--InputBase-outline-color: var(--InputBase-outline-color-invalid);--InputBase-border-color: var(--InputBase-border-color-invalid);--InputBase-label-color: var(--InputBase-label-color-invalid);--InputBase-label-surface: var(--InputBase-label-surface-invalid)}.InputBase-round[data-v-dfd6217d]{--InputBase-border-radius: var(--border-radius-round)}.InputBase-block[data-v-dfd6217d]{flex:1 1 auto;display:flex}.InputBase-disabled .Container[data-v-dfd6217d]{--InputBase-surface: var(--color-base-1);opacity:.64;filter:saturate(40%);cursor:not-allowed}.InputBase-small[data-v-dfd6217d]{--InputBase-size: var(--input-size-small);--InputBase-font-size: var(--font-size-small);--InputBase-padding: var(--sp)}.InputBase-large[data-v-dfd6217d]{--InputBase-size: var(--input-size-large);--InputBase-font-size: var(--font-size-large);--InputBase-padding: var(--sp2)}.InputText[data-v-44e9da96]{--InputBase-padding: var(--sp1-5)}input[data-v-44e9da96],textarea[data-v-44e9da96]{-webkit-appearance:none;box-sizing:border-box;flex:1;padding:0;border:0;width:100%;min-width:0;outline:0;-webkit-user-select:text;user-select:text;background:transparent;color:inherit;font:inherit}.Sizer[data-v-2f099547]{flex:1;min-width:0;min-height:0}.VGroup[data-v-dac034b8]{display:flex;flex-flow:column nowrap}.VGroup-align-stretch[data-v-dac034b8]{align-items:stretch}.VGroup-align-baseline[data-v-dac034b8]{align-items:baseline}.VGroup-align-center[data-v-dac034b8]{align-items:center}.VGroup-align-start[data-v-dac034b8]{align-items:flex-start}.VGroup-align-end[data-v-dac034b8]{align-items:flex-end}.VGroup-justify-center[data-v-dac034b8]{justify-content:center}.VGroup-justify-start[data-v-dac034b8]{justify-content:flex-start}.VGroup-justify-end[data-v-dac034b8]{justify-content:flex-end}.VGroup-justify-space-around[data-v-dac034b8]{justify-content:space-around}.VGroup-justify-space-between[data-v-dac034b8]{justify-content:space-between}.VGroup-gap-0[data-v-dac034b8]{gap:0}.VGroup-gap-1[data-v-dac034b8]{gap:var(--sp)}.VGroup-gap-2[data-v-dac034b8]{gap:var(--sp2)}.VGroup-gap-3[data-v-dac034b8]{gap:var(--sp3)}.VGroup-gap-4[data-v-dac034b8]{gap:var(--sp4)}
|
package/dist/nightshade.js
DELETED
|
@@ -1,327 +0,0 @@
|
|
|
1
|
-
var S = Object.defineProperty;
|
|
2
|
-
var l = (t, n) => S(t, "name", { value: n, configurable: !0 });
|
|
3
|
-
import { openBlock as a, createBlock as y, resolveDynamicComponent as v, normalizeClass as p, withCtx as m, renderSlot as d, createElementBlock as r, createCommentVNode as b, toDisplayString as g, createElementVNode as f, resolveComponent as B, mergeProps as k } from "vue";
|
|
4
|
-
const i = /* @__PURE__ */ l((t, n) => {
|
|
5
|
-
const e = t.__vccOpts || t;
|
|
6
|
-
for (const [u, o] of n)
|
|
7
|
-
e[u] = o;
|
|
8
|
-
return e;
|
|
9
|
-
}, "_export_sfc"), $ = {
|
|
10
|
-
props: {
|
|
11
|
-
label: { type: String },
|
|
12
|
-
title: { type: String },
|
|
13
|
-
icon: { type: String },
|
|
14
|
-
iconPos: { type: String, default: "left" },
|
|
15
|
-
kind: { type: String, default: "link-default" },
|
|
16
|
-
hoverKind: { type: String },
|
|
17
|
-
customTag: { type: String },
|
|
18
|
-
href: { type: String },
|
|
19
|
-
debounce: { type: Number, default: 0 },
|
|
20
|
-
disabled: { type: Boolean, default: !1 },
|
|
21
|
-
size: { type: String, default: "normal" },
|
|
22
|
-
square: { type: Boolean, default: !1 },
|
|
23
|
-
block: { type: Boolean, default: !1 },
|
|
24
|
-
round: { type: Boolean, default: !1 },
|
|
25
|
-
outline: { type: Boolean, default: !1 },
|
|
26
|
-
pseudoFocus: { type: Boolean, default: !1 },
|
|
27
|
-
pseudoHover: { type: Boolean, default: !1 },
|
|
28
|
-
pseudoActive: { type: Boolean, default: !1 }
|
|
29
|
-
},
|
|
30
|
-
data() {
|
|
31
|
-
return {
|
|
32
|
-
hover: !1,
|
|
33
|
-
blocked: !1
|
|
34
|
-
};
|
|
35
|
-
},
|
|
36
|
-
computed: {
|
|
37
|
-
tagName() {
|
|
38
|
-
return this.customTag ?? "button";
|
|
39
|
-
},
|
|
40
|
-
actualKind() {
|
|
41
|
-
const { kind: t, hoverKind: n, hover: e } = this;
|
|
42
|
-
return e ? n ?? t : t;
|
|
43
|
-
}
|
|
44
|
-
},
|
|
45
|
-
methods: {
|
|
46
|
-
onUiActivate() {
|
|
47
|
-
this.debounce > 0 && (this.blocked = !0, setTimeout(() => {
|
|
48
|
-
this.blocked = !1;
|
|
49
|
-
}, this.debounce));
|
|
50
|
-
}
|
|
51
|
-
}
|
|
52
|
-
}, H = {
|
|
53
|
-
key: 0,
|
|
54
|
-
class: "Label"
|
|
55
|
-
};
|
|
56
|
-
function C(t, n, e, u, o, s) {
|
|
57
|
-
return a(), y(v(s.tagName), {
|
|
58
|
-
ref: "button",
|
|
59
|
-
class: p(["Btn button", [
|
|
60
|
-
`Btn-${e.size}`,
|
|
61
|
-
`Btn-${s.actualKind}`,
|
|
62
|
-
`Btn-iconPos-${e.iconPos}`,
|
|
63
|
-
{
|
|
64
|
-
"Btn-disabled": e.disabled || o.blocked,
|
|
65
|
-
"Btn-square": e.square,
|
|
66
|
-
"Btn-round": e.round,
|
|
67
|
-
"Btn-outline": e.outline,
|
|
68
|
-
"Btn-block": e.block,
|
|
69
|
-
"Btn-pseudo-focus": e.pseudoFocus,
|
|
70
|
-
"Btn-pseudo-hover": e.pseudoHover,
|
|
71
|
-
"Btn-pseudo-active": e.pseudoActive
|
|
72
|
-
}
|
|
73
|
-
]]),
|
|
74
|
-
disabled: e.disabled || o.blocked,
|
|
75
|
-
title: e.title ?? e.label,
|
|
76
|
-
href: e.href,
|
|
77
|
-
onUiactivate: n[0] || (n[0] = (c) => s.onUiActivate(c)),
|
|
78
|
-
onMouseenter: n[1] || (n[1] = (c) => o.hover = !0),
|
|
79
|
-
onMouseleave: n[2] || (n[2] = (c) => o.hover = !1)
|
|
80
|
-
}, {
|
|
81
|
-
default: m(() => [
|
|
82
|
-
d(t.$slots, "icon", {
|
|
83
|
-
hover: o.hover,
|
|
84
|
-
blocked: o.blocked
|
|
85
|
-
}, () => [
|
|
86
|
-
e.icon ? (a(), r("i", {
|
|
87
|
-
key: 0,
|
|
88
|
-
class: p([e.icon, "Icon"])
|
|
89
|
-
}, null, 2)) : b("", !0)
|
|
90
|
-
], !0),
|
|
91
|
-
e.label ? (a(), r("span", H, g(e.label), 1)) : b("", !0),
|
|
92
|
-
d(t.$slots, "default", {
|
|
93
|
-
hover: o.hover,
|
|
94
|
-
blocked: o.blocked
|
|
95
|
-
}, void 0, !0)
|
|
96
|
-
]),
|
|
97
|
-
_: 3
|
|
98
|
-
}, 40, ["class", "disabled", "title", "href"]);
|
|
99
|
-
}
|
|
100
|
-
l(C, "_sfc_render$8");
|
|
101
|
-
const z = /* @__PURE__ */ i($, [["render", C], ["__scopeId", "data-v-32fc4413"]]), G = {
|
|
102
|
-
props: {
|
|
103
|
-
size: { type: String, default: "normal" }
|
|
104
|
-
}
|
|
105
|
-
};
|
|
106
|
-
function N(t, n, e, u, o, s) {
|
|
107
|
-
return a(), r("div", {
|
|
108
|
-
class: p(["Circle", [
|
|
109
|
-
`Circle-${e.size}`
|
|
110
|
-
]])
|
|
111
|
-
}, [
|
|
112
|
-
d(t.$slots, "default", {}, void 0, !0)
|
|
113
|
-
], 2);
|
|
114
|
-
}
|
|
115
|
-
l(N, "_sfc_render$7");
|
|
116
|
-
const V = /* @__PURE__ */ i(G, [["render", N], ["__scopeId", "data-v-48fdb4ac"]]), x = {
|
|
117
|
-
props: {
|
|
118
|
-
tagName: { type: String, default: "div" },
|
|
119
|
-
align: { type: String, default: "center" },
|
|
120
|
-
justify: { type: String },
|
|
121
|
-
gap: { type: String, default: "1" },
|
|
122
|
-
wrap: { type: Boolean, default: !1 }
|
|
123
|
-
}
|
|
124
|
-
};
|
|
125
|
-
function L(t, n, e, u, o, s) {
|
|
126
|
-
return a(), y(v(e.tagName), {
|
|
127
|
-
class: p(["HGroup", [
|
|
128
|
-
`HGroup-align-${e.align}`,
|
|
129
|
-
`HGroup-justify-${e.justify}`,
|
|
130
|
-
`HGroup-gap-${e.gap}`,
|
|
131
|
-
{
|
|
132
|
-
"HGroup-wrap": e.wrap
|
|
133
|
-
}
|
|
134
|
-
]])
|
|
135
|
-
}, {
|
|
136
|
-
default: m(() => [
|
|
137
|
-
d(t.$slots, "default", {}, void 0, !0)
|
|
138
|
-
]),
|
|
139
|
-
_: 3
|
|
140
|
-
}, 8, ["class"]);
|
|
141
|
-
}
|
|
142
|
-
l(L, "_sfc_render$6");
|
|
143
|
-
const F = /* @__PURE__ */ i(x, [["render", L], ["__scopeId", "data-v-0abfef17"]]), j = {}, w = { class: "HStack" };
|
|
144
|
-
function A(t, n, e, u, o, s) {
|
|
145
|
-
return a(), r("div", w, [
|
|
146
|
-
d(t.$slots, "default", {}, void 0, !0)
|
|
147
|
-
]);
|
|
148
|
-
}
|
|
149
|
-
l(A, "_sfc_render$5");
|
|
150
|
-
const T = /* @__PURE__ */ i(j, [["render", A], ["__scopeId", "data-v-48a370d0"]]), K = {
|
|
151
|
-
props: {
|
|
152
|
-
label: { type: String }
|
|
153
|
-
}
|
|
154
|
-
}, M = ["title"], P = { class: "Label" };
|
|
155
|
-
function q(t, n, e, u, o, s) {
|
|
156
|
-
return a(), r("div", {
|
|
157
|
-
class: "InputLabel",
|
|
158
|
-
title: e.label
|
|
159
|
-
}, [
|
|
160
|
-
n[0] || (n[0] = f("svg", {
|
|
161
|
-
class: "Corner",
|
|
162
|
-
viewBox: "0 0 32 32",
|
|
163
|
-
preserveAspectRatio: "none"
|
|
164
|
-
}, [
|
|
165
|
-
f("path", { d: "M0 32 C 16 32 16 0 32 0 L 32 32 z" })
|
|
166
|
-
], -1)),
|
|
167
|
-
f("div", P, g(e.label), 1),
|
|
168
|
-
n[1] || (n[1] = f("svg", {
|
|
169
|
-
class: "Corner",
|
|
170
|
-
viewBox: "0 0 32 32",
|
|
171
|
-
preserveAspectRatio: "none"
|
|
172
|
-
}, [
|
|
173
|
-
f("path", {
|
|
174
|
-
d: "M0 32 C 16 32 16 0 32 0 L 32 32 z",
|
|
175
|
-
transform: "scale(-1, 1)",
|
|
176
|
-
"transform-origin": "50% 50%"
|
|
177
|
-
})
|
|
178
|
-
], -1))
|
|
179
|
-
], 8, M);
|
|
180
|
-
}
|
|
181
|
-
l(q, "_sfc_render$4");
|
|
182
|
-
const h = /* @__PURE__ */ i(K, [["render", q], ["__scopeId", "data-v-8a823fd2"]]), U = {
|
|
183
|
-
components: {
|
|
184
|
-
InputLabel: h
|
|
185
|
-
},
|
|
186
|
-
props: {
|
|
187
|
-
label: { type: String },
|
|
188
|
-
size: { type: String, default: "normal" },
|
|
189
|
-
fixedHeight: { type: Boolean, default: !0 },
|
|
190
|
-
round: { type: Boolean, default: !1 },
|
|
191
|
-
block: { type: Boolean },
|
|
192
|
-
disabled: { type: Boolean, default: !1 },
|
|
193
|
-
invalid: { type: Boolean, default: !1 },
|
|
194
|
-
pseudoFocus: { type: Boolean, default: !1 },
|
|
195
|
-
pseudoHover: { type: Boolean, default: !1 }
|
|
196
|
-
}
|
|
197
|
-
}, D = { class: "Container" };
|
|
198
|
-
function E(t, n, e, u, o, s) {
|
|
199
|
-
const c = B("InputLabel");
|
|
200
|
-
return a(), r("div", {
|
|
201
|
-
class: p(["InputBase", [
|
|
202
|
-
`InputBase-${e.size}`,
|
|
203
|
-
{
|
|
204
|
-
"InputBase-block": e.block,
|
|
205
|
-
"InputBase-round": e.round,
|
|
206
|
-
"InputBase-disabled": e.disabled,
|
|
207
|
-
"InputBase-invalid": e.invalid,
|
|
208
|
-
"InputBase-fixed-height": e.fixedHeight,
|
|
209
|
-
"InputBase-pseudo-focus": e.pseudoFocus,
|
|
210
|
-
"InputBase-pseudo-hover": e.pseudoHover
|
|
211
|
-
}
|
|
212
|
-
]])
|
|
213
|
-
}, [
|
|
214
|
-
e.label ? (a(), y(c, {
|
|
215
|
-
key: 0,
|
|
216
|
-
label: e.label
|
|
217
|
-
}, null, 8, ["label"])) : b("", !0),
|
|
218
|
-
f("div", D, [
|
|
219
|
-
d(t.$slots, "default", {}, void 0, !0)
|
|
220
|
-
])
|
|
221
|
-
], 2);
|
|
222
|
-
}
|
|
223
|
-
l(E, "_sfc_render$3");
|
|
224
|
-
const I = /* @__PURE__ */ i(U, [["render", E], ["__scopeId", "data-v-dfd6217d"]]), R = {
|
|
225
|
-
props: {
|
|
226
|
-
...I.props,
|
|
227
|
-
modelValue: { type: [String, Number] },
|
|
228
|
-
type: { type: String },
|
|
229
|
-
placeholder: { type: String },
|
|
230
|
-
min: { type: Number },
|
|
231
|
-
max: { type: Number },
|
|
232
|
-
step: { type: Number },
|
|
233
|
-
autoFocus: { type: Boolean },
|
|
234
|
-
readonly: { type: Boolean }
|
|
235
|
-
},
|
|
236
|
-
emits: [
|
|
237
|
-
"focus",
|
|
238
|
-
"blur",
|
|
239
|
-
"input",
|
|
240
|
-
"update:modelValue"
|
|
241
|
-
],
|
|
242
|
-
mounted() {
|
|
243
|
-
var t;
|
|
244
|
-
this.autoFocus && ((t = this.$refs.input) == null || t.focus());
|
|
245
|
-
},
|
|
246
|
-
methods: {
|
|
247
|
-
onInput(t) {
|
|
248
|
-
this.$emit("update:modelValue", t.target.value);
|
|
249
|
-
}
|
|
250
|
-
}
|
|
251
|
-
}, O = ["value", "type", "placeholder", "readonly", "disabled", "min", "max", "step"];
|
|
252
|
-
function J(t, n, e, u, o, s) {
|
|
253
|
-
const c = B("InputBase");
|
|
254
|
-
return a(), y(c, k({ class: "InputText" }, {
|
|
255
|
-
...t.$attrs,
|
|
256
|
-
...t.$props
|
|
257
|
-
}), {
|
|
258
|
-
default: m(() => [
|
|
259
|
-
d(t.$slots, "before", {}, void 0, !0),
|
|
260
|
-
f("input", {
|
|
261
|
-
ref: "input",
|
|
262
|
-
value: e.modelValue,
|
|
263
|
-
type: e.type,
|
|
264
|
-
placeholder: e.placeholder,
|
|
265
|
-
readonly: e.readonly,
|
|
266
|
-
disabled: t.disabled,
|
|
267
|
-
min: e.min,
|
|
268
|
-
max: e.max,
|
|
269
|
-
step: e.step,
|
|
270
|
-
autocomplete: "off",
|
|
271
|
-
onInput: n[0] || (n[0] = (_) => s.onInput(_)),
|
|
272
|
-
onFocus: n[1] || (n[1] = (_) => t.$emit("focus", _)),
|
|
273
|
-
onBlur: n[2] || (n[2] = (_) => t.$emit("blur", _))
|
|
274
|
-
}, null, 40, O),
|
|
275
|
-
d(t.$slots, "after", {}, void 0, !0)
|
|
276
|
-
]),
|
|
277
|
-
_: 3
|
|
278
|
-
}, 16);
|
|
279
|
-
}
|
|
280
|
-
l(J, "_sfc_render$2");
|
|
281
|
-
const Q = /* @__PURE__ */ i(R, [["render", J], ["__scopeId", "data-v-44e9da96"]]), W = {}, X = { class: "Sizer" };
|
|
282
|
-
function Y(t, n) {
|
|
283
|
-
return a(), r("div", X);
|
|
284
|
-
}
|
|
285
|
-
l(Y, "_sfc_render$1");
|
|
286
|
-
const Z = /* @__PURE__ */ i(W, [["render", Y], ["__scopeId", "data-v-2f099547"]]), ee = {
|
|
287
|
-
props: {
|
|
288
|
-
align: { type: String, default: "stretch" },
|
|
289
|
-
justify: { type: String },
|
|
290
|
-
gap: { type: String, default: "1" }
|
|
291
|
-
}
|
|
292
|
-
};
|
|
293
|
-
function te(t, n, e, u, o, s) {
|
|
294
|
-
return a(), r("div", {
|
|
295
|
-
class: p(["VGroup", [
|
|
296
|
-
`VGroup-align-${e.align}`,
|
|
297
|
-
`VGroup-justify-${e.justify}`,
|
|
298
|
-
`VGroup-gap-${e.gap}`
|
|
299
|
-
]])
|
|
300
|
-
}, [
|
|
301
|
-
d(t.$slots, "default", {}, void 0, !0)
|
|
302
|
-
], 2);
|
|
303
|
-
}
|
|
304
|
-
l(te, "_sfc_render");
|
|
305
|
-
const ne = /* @__PURE__ */ i(ee, [["render", te], ["__scopeId", "data-v-dac034b8"]]), se = {
|
|
306
|
-
Btn: z,
|
|
307
|
-
Circle: V,
|
|
308
|
-
HGroup: F,
|
|
309
|
-
HStack: T,
|
|
310
|
-
InputBase: I,
|
|
311
|
-
InputLabel: h,
|
|
312
|
-
InputText: Q,
|
|
313
|
-
Sizer: Z,
|
|
314
|
-
VGroup: ne
|
|
315
|
-
};
|
|
316
|
-
export {
|
|
317
|
-
z as Btn,
|
|
318
|
-
V as Circle,
|
|
319
|
-
F as HGroup,
|
|
320
|
-
T as HStack,
|
|
321
|
-
I as InputBase,
|
|
322
|
-
h as InputLabel,
|
|
323
|
-
Q as InputText,
|
|
324
|
-
Z as Sizer,
|
|
325
|
-
ne as VGroup,
|
|
326
|
-
se as components
|
|
327
|
-
};
|