@codemonster-ru/vueforge 0.3.5 → 0.5.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/README.md +83 -1
- package/dist/index.css +1 -1
- package/dist/index.d.ts +5 -1
- package/dist/index.ts.mjs +1279 -652
- package/dist/index.ts.umd.js +3 -6
- package/dist/package/components/button.vue.d.ts +6 -0
- package/dist/package/components/checkbox.vue.d.ts +32 -0
- package/dist/package/components/input.vue.d.ts +49 -0
- package/dist/package/components/link.vue.d.ts +11 -1
- package/dist/package/components/logo.vue.d.ts +4 -0
- package/dist/package/components/menu.vue.d.ts +59 -2
- package/dist/package/components/popover.vue.d.ts +5 -0
- package/dist/package/components/select.vue.d.ts +39 -0
- package/dist/package/components/switch.vue.d.ts +32 -0
- package/dist/package/config/index.d.ts +19 -1
- package/dist/package/themes/default/components/checkbox.d.ts +13 -0
- package/dist/package/themes/default/components/input.d.ts +20 -0
- package/dist/package/themes/default/components/select.d.ts +25 -0
- package/dist/package/themes/default/components/switch.d.ts +12 -0
- package/dist/package/themes/default/index.d.ts +66 -0
- package/package.json +11 -6
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
size: string;
|
|
3
|
+
gap: string;
|
|
4
|
+
borderRadius: string;
|
|
5
|
+
borderColor: string;
|
|
6
|
+
backgroundColor: string;
|
|
7
|
+
checkedBackgroundColor: string;
|
|
8
|
+
checkedBorderColor: string;
|
|
9
|
+
checkColor: string;
|
|
10
|
+
textColor: string;
|
|
11
|
+
disabledOpacity: string;
|
|
12
|
+
};
|
|
13
|
+
export default _default;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
padding: string;
|
|
3
|
+
borderRadius: string;
|
|
4
|
+
borderColor: string;
|
|
5
|
+
backgroundColor: string;
|
|
6
|
+
textColor: string;
|
|
7
|
+
placeholderColor: string;
|
|
8
|
+
focusBorderColor: string;
|
|
9
|
+
hoverBorderColor: string;
|
|
10
|
+
disabledOpacity: string;
|
|
11
|
+
small: {
|
|
12
|
+
padding: string;
|
|
13
|
+
fontSize: string;
|
|
14
|
+
};
|
|
15
|
+
large: {
|
|
16
|
+
padding: string;
|
|
17
|
+
fontSize: string;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
export default _default;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
padding: string;
|
|
3
|
+
borderRadius: string;
|
|
4
|
+
borderColor: string;
|
|
5
|
+
backgroundColor: string;
|
|
6
|
+
textColor: string;
|
|
7
|
+
focusBorderColor: string;
|
|
8
|
+
hoverBorderColor: string;
|
|
9
|
+
disabledOpacity: string;
|
|
10
|
+
panelBackgroundColor: string;
|
|
11
|
+
panelBorderColor: string;
|
|
12
|
+
panelShadow: string;
|
|
13
|
+
optionHoverBackgroundColor: string;
|
|
14
|
+
optionActiveBackgroundColor: string;
|
|
15
|
+
optionActiveTextColor: string;
|
|
16
|
+
small: {
|
|
17
|
+
padding: string;
|
|
18
|
+
fontSize: string;
|
|
19
|
+
};
|
|
20
|
+
large: {
|
|
21
|
+
padding: string;
|
|
22
|
+
fontSize: string;
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
export default _default;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
width: string;
|
|
3
|
+
height: string;
|
|
4
|
+
thumbSize: string;
|
|
5
|
+
gap: string;
|
|
6
|
+
backgroundColor: string;
|
|
7
|
+
checkedBackgroundColor: string;
|
|
8
|
+
thumbColor: string;
|
|
9
|
+
textColor: string;
|
|
10
|
+
disabledOpacity: string;
|
|
11
|
+
};
|
|
12
|
+
export default _default;
|
|
@@ -200,6 +200,25 @@ declare const _default: {
|
|
|
200
200
|
marginBottom: string;
|
|
201
201
|
backgroundColor: string;
|
|
202
202
|
};
|
|
203
|
+
input: {
|
|
204
|
+
padding: string;
|
|
205
|
+
borderRadius: string;
|
|
206
|
+
borderColor: string;
|
|
207
|
+
backgroundColor: string;
|
|
208
|
+
textColor: string;
|
|
209
|
+
placeholderColor: string;
|
|
210
|
+
focusBorderColor: string;
|
|
211
|
+
hoverBorderColor: string;
|
|
212
|
+
disabledOpacity: string;
|
|
213
|
+
small: {
|
|
214
|
+
padding: string;
|
|
215
|
+
fontSize: string;
|
|
216
|
+
};
|
|
217
|
+
large: {
|
|
218
|
+
padding: string;
|
|
219
|
+
fontSize: string;
|
|
220
|
+
};
|
|
221
|
+
};
|
|
203
222
|
link: {
|
|
204
223
|
hoverColor: string;
|
|
205
224
|
activeColor: string;
|
|
@@ -225,6 +244,53 @@ declare const _default: {
|
|
|
225
244
|
popover: {
|
|
226
245
|
backgroundColor: string;
|
|
227
246
|
};
|
|
247
|
+
select: {
|
|
248
|
+
padding: string;
|
|
249
|
+
borderRadius: string;
|
|
250
|
+
borderColor: string;
|
|
251
|
+
backgroundColor: string;
|
|
252
|
+
textColor: string;
|
|
253
|
+
focusBorderColor: string;
|
|
254
|
+
hoverBorderColor: string;
|
|
255
|
+
disabledOpacity: string;
|
|
256
|
+
panelBackgroundColor: string;
|
|
257
|
+
panelBorderColor: string;
|
|
258
|
+
panelShadow: string;
|
|
259
|
+
optionHoverBackgroundColor: string;
|
|
260
|
+
optionActiveBackgroundColor: string;
|
|
261
|
+
optionActiveTextColor: string;
|
|
262
|
+
small: {
|
|
263
|
+
padding: string;
|
|
264
|
+
fontSize: string;
|
|
265
|
+
};
|
|
266
|
+
large: {
|
|
267
|
+
padding: string;
|
|
268
|
+
fontSize: string;
|
|
269
|
+
};
|
|
270
|
+
};
|
|
271
|
+
checkbox: {
|
|
272
|
+
size: string;
|
|
273
|
+
gap: string;
|
|
274
|
+
borderRadius: string;
|
|
275
|
+
borderColor: string;
|
|
276
|
+
backgroundColor: string;
|
|
277
|
+
checkedBackgroundColor: string;
|
|
278
|
+
checkedBorderColor: string;
|
|
279
|
+
checkColor: string;
|
|
280
|
+
textColor: string;
|
|
281
|
+
disabledOpacity: string;
|
|
282
|
+
};
|
|
283
|
+
switch: {
|
|
284
|
+
width: string;
|
|
285
|
+
height: string;
|
|
286
|
+
thumbSize: string;
|
|
287
|
+
gap: string;
|
|
288
|
+
backgroundColor: string;
|
|
289
|
+
checkedBackgroundColor: string;
|
|
290
|
+
thumbColor: string;
|
|
291
|
+
textColor: string;
|
|
292
|
+
disabledOpacity: string;
|
|
293
|
+
};
|
|
228
294
|
};
|
|
229
295
|
colors: {
|
|
230
296
|
white: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codemonster-ru/vueforge",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0",
|
|
4
4
|
"description": "Open source UI components for Vue.js.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Kirill Kolesnikov",
|
|
@@ -34,15 +34,16 @@
|
|
|
34
34
|
],
|
|
35
35
|
"scripts": {
|
|
36
36
|
"dev": "vite dev --force --mode development",
|
|
37
|
-
"build": "vite build --mode production"
|
|
37
|
+
"build": "vite build --mode production",
|
|
38
|
+
"lint": "eslint . --ext .ts,.vue",
|
|
39
|
+
"typecheck": "vue-tsc --noEmit"
|
|
38
40
|
},
|
|
39
41
|
"peerDependencies": {
|
|
42
|
+
"@codemonster-ru/vueiconify": "^0.7.0",
|
|
40
43
|
"vue": "^3.0.0",
|
|
41
|
-
"vue-router": "^4.4.5"
|
|
42
|
-
"@codemonster-ru/vueiconify": "^0.7.0"
|
|
44
|
+
"vue-router": "^4.4.5"
|
|
43
45
|
},
|
|
44
46
|
"devDependencies": {
|
|
45
|
-
"pinia": "^2.2.4",
|
|
46
47
|
"@types/node": "^20.14.10",
|
|
47
48
|
"@typescript-eslint/eslint-plugin": "^7.16.0",
|
|
48
49
|
"@vitejs/plugin-vue": "^5.0.5",
|
|
@@ -51,6 +52,7 @@
|
|
|
51
52
|
"eslint-config-prettier": "^9.1.0",
|
|
52
53
|
"eslint-plugin-prettier": "^5.1.3",
|
|
53
54
|
"eslint-plugin-vue": "^9.27.0",
|
|
55
|
+
"pinia": "^2.2.4",
|
|
54
56
|
"prettier": "^3.3.2",
|
|
55
57
|
"sass": "^1.77.8",
|
|
56
58
|
"typescript": "^5.5.3",
|
|
@@ -58,5 +60,8 @@
|
|
|
58
60
|
"vite-plugin-dts": "^4.5.0",
|
|
59
61
|
"vue": "^3.4.31",
|
|
60
62
|
"vue-tsc": "^2.0.21"
|
|
63
|
+
},
|
|
64
|
+
"dependencies": {
|
|
65
|
+
"@codemonster-ru/floater.js": "^1.0.7"
|
|
61
66
|
}
|
|
62
|
-
}
|
|
67
|
+
}
|