@codemonster-ru/vueforge 0.6.0 → 0.8.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 +96 -0
- package/dist/index.css +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.ts.mjs +441 -391
- package/dist/index.ts.umd.js +3 -3
- package/dist/package/config/__tests__/theme-core.test.d.ts +1 -0
- package/dist/package/config/index.d.ts +3 -15
- package/dist/package/config/theme-core.d.ts +187 -0
- package/dist/package/config/theme-runtime.d.ts +10 -0
- package/dist/package/themes/default/base.d.ts +30 -0
- package/dist/package/themes/default/components/input.d.ts +1 -0
- package/dist/package/themes/default/index.d.ts +61 -0
- package/package.json +6 -4
|
@@ -12,6 +12,36 @@ declare const _default: {
|
|
|
12
12
|
gray: string;
|
|
13
13
|
};
|
|
14
14
|
borderWidth: string;
|
|
15
|
+
controls: {
|
|
16
|
+
height: string;
|
|
17
|
+
paddingY: string;
|
|
18
|
+
paddingX: string;
|
|
19
|
+
};
|
|
20
|
+
radii: {
|
|
21
|
+
sm: string;
|
|
22
|
+
md: string;
|
|
23
|
+
lg: string;
|
|
24
|
+
};
|
|
25
|
+
typography: {
|
|
26
|
+
fontSize: string;
|
|
27
|
+
lineHeight: string;
|
|
28
|
+
};
|
|
29
|
+
states: {
|
|
30
|
+
disabledOpacity: string;
|
|
31
|
+
focusRingShadow: string;
|
|
32
|
+
};
|
|
33
|
+
sizes: {
|
|
34
|
+
sm: {
|
|
35
|
+
fontSize: string;
|
|
36
|
+
paddingY: string;
|
|
37
|
+
paddingX: string;
|
|
38
|
+
};
|
|
39
|
+
lg: {
|
|
40
|
+
fontSize: string;
|
|
41
|
+
paddingY: string;
|
|
42
|
+
paddingX: string;
|
|
43
|
+
};
|
|
44
|
+
};
|
|
15
45
|
colorScheme: {
|
|
16
46
|
light: {
|
|
17
47
|
bgColor: string;
|
|
@@ -192,6 +222,7 @@ declare const _default: {
|
|
|
192
222
|
textColor: string;
|
|
193
223
|
placeholderColor: string;
|
|
194
224
|
focusBorderColor: string;
|
|
225
|
+
focusRingShadow: string;
|
|
195
226
|
hoverBorderColor: string;
|
|
196
227
|
disabledOpacity: string;
|
|
197
228
|
small: {
|
|
@@ -303,6 +334,36 @@ declare const _default: {
|
|
|
303
334
|
gray: string;
|
|
304
335
|
};
|
|
305
336
|
borderWidth: string;
|
|
337
|
+
controls: {
|
|
338
|
+
height: string;
|
|
339
|
+
paddingY: string;
|
|
340
|
+
paddingX: string;
|
|
341
|
+
};
|
|
342
|
+
radii: {
|
|
343
|
+
sm: string;
|
|
344
|
+
md: string;
|
|
345
|
+
lg: string;
|
|
346
|
+
};
|
|
347
|
+
typography: {
|
|
348
|
+
fontSize: string;
|
|
349
|
+
lineHeight: string;
|
|
350
|
+
};
|
|
351
|
+
states: {
|
|
352
|
+
disabledOpacity: string;
|
|
353
|
+
focusRingShadow: string;
|
|
354
|
+
};
|
|
355
|
+
sizes: {
|
|
356
|
+
sm: {
|
|
357
|
+
fontSize: string;
|
|
358
|
+
paddingY: string;
|
|
359
|
+
paddingX: string;
|
|
360
|
+
};
|
|
361
|
+
lg: {
|
|
362
|
+
fontSize: string;
|
|
363
|
+
paddingY: string;
|
|
364
|
+
paddingX: string;
|
|
365
|
+
};
|
|
366
|
+
};
|
|
306
367
|
colorScheme: {
|
|
307
368
|
light: {
|
|
308
369
|
bgColor: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codemonster-ru/vueforge",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.8.0",
|
|
4
4
|
"description": "Open source UI components for Vue.js.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Kirill Kolesnikov",
|
|
@@ -47,7 +47,8 @@
|
|
|
47
47
|
"dev": "vite dev --force --mode development",
|
|
48
48
|
"build": "vite build --mode production",
|
|
49
49
|
"lint": "eslint . --ext .ts,.vue",
|
|
50
|
-
"typecheck": "vue-tsc --noEmit"
|
|
50
|
+
"typecheck": "vue-tsc --noEmit",
|
|
51
|
+
"test": "vitest run"
|
|
51
52
|
},
|
|
52
53
|
"peerDependencies": {
|
|
53
54
|
"@codemonster-ru/vueiconify": "^0.7.0",
|
|
@@ -70,9 +71,10 @@
|
|
|
70
71
|
"vite": "^6.0.11",
|
|
71
72
|
"vite-plugin-dts": "^4.5.0",
|
|
72
73
|
"vue": "^3.4.31",
|
|
73
|
-
"vue-tsc": "^2.0.21"
|
|
74
|
+
"vue-tsc": "^2.0.21",
|
|
75
|
+
"vitest": "^1.6.0"
|
|
74
76
|
},
|
|
75
77
|
"dependencies": {
|
|
76
|
-
"@codemonster-ru/floater.js": "^1.0.
|
|
78
|
+
"@codemonster-ru/floater.js": "^1.0.8"
|
|
77
79
|
}
|
|
78
80
|
}
|