@codemonster-ru/vueforge 0.9.0 → 0.11.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 +74 -2
- package/dist/index.css +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.ts.mjs +974 -762
- package/dist/index.ts.umd.js +3 -3
- package/dist/package/components/__tests__/textarea.test.d.ts +1 -0
- package/dist/package/components/__tests__/tooltip.test.d.ts +1 -0
- package/dist/package/components/checkbox.vue.d.ts +3 -0
- package/dist/package/components/select.vue.d.ts +3 -0
- package/dist/package/components/textarea.vue.d.ts +33 -0
- package/dist/package/components/tooltip.vue.d.ts +35 -0
- package/dist/package/config/theme-core.d.ts +35 -3
- package/dist/package/themes/default/base.d.ts +1 -0
- package/dist/package/themes/default/components/textarea.d.ts +25 -0
- package/dist/package/themes/default/components/tooltip.d.ts +13 -0
- package/dist/package/themes/default/index.d.ts +38 -1
- package/package.json +4 -2
- package/dist/package/themes/default/components/codeBlock.d.ts +0 -2
|
@@ -16,6 +16,7 @@ declare const _default: {
|
|
|
16
16
|
height: string;
|
|
17
17
|
paddingY: string;
|
|
18
18
|
paddingX: string;
|
|
19
|
+
backgroundColor: string;
|
|
19
20
|
};
|
|
20
21
|
radii: {
|
|
21
22
|
sm: string;
|
|
@@ -211,7 +212,6 @@ declare const _default: {
|
|
|
211
212
|
borderColor: string;
|
|
212
213
|
borderRadius: string;
|
|
213
214
|
};
|
|
214
|
-
codeBlock: {};
|
|
215
215
|
input: {
|
|
216
216
|
gap: string;
|
|
217
217
|
fontSize: string;
|
|
@@ -234,6 +234,30 @@ declare const _default: {
|
|
|
234
234
|
fontSize: string;
|
|
235
235
|
};
|
|
236
236
|
};
|
|
237
|
+
textarea: {
|
|
238
|
+
gap: string;
|
|
239
|
+
fontSize: string;
|
|
240
|
+
padding: string;
|
|
241
|
+
borderRadius: string;
|
|
242
|
+
borderColor: string;
|
|
243
|
+
backgroundColor: string;
|
|
244
|
+
textColor: string;
|
|
245
|
+
placeholderColor: string;
|
|
246
|
+
focusBorderColor: string;
|
|
247
|
+
focusRingShadow: string;
|
|
248
|
+
hoverBorderColor: string;
|
|
249
|
+
disabledOpacity: string;
|
|
250
|
+
minHeight: string;
|
|
251
|
+
resize: string;
|
|
252
|
+
small: {
|
|
253
|
+
padding: string;
|
|
254
|
+
fontSize: string;
|
|
255
|
+
};
|
|
256
|
+
large: {
|
|
257
|
+
padding: string;
|
|
258
|
+
fontSize: string;
|
|
259
|
+
};
|
|
260
|
+
};
|
|
237
261
|
link: {
|
|
238
262
|
hoverColor: string;
|
|
239
263
|
activeColor: string;
|
|
@@ -350,6 +374,18 @@ declare const _default: {
|
|
|
350
374
|
textColor: string;
|
|
351
375
|
disabledOpacity: string;
|
|
352
376
|
};
|
|
377
|
+
tooltip: {
|
|
378
|
+
padding: string;
|
|
379
|
+
borderRadius: string;
|
|
380
|
+
backgroundColor: string;
|
|
381
|
+
textColor: string;
|
|
382
|
+
fontSize: string;
|
|
383
|
+
lineHeight: string;
|
|
384
|
+
shadow: string;
|
|
385
|
+
zIndex: string;
|
|
386
|
+
maxWidth: string;
|
|
387
|
+
arrowSize: string;
|
|
388
|
+
};
|
|
353
389
|
};
|
|
354
390
|
colors: {
|
|
355
391
|
white: string;
|
|
@@ -366,6 +402,7 @@ declare const _default: {
|
|
|
366
402
|
height: string;
|
|
367
403
|
paddingY: string;
|
|
368
404
|
paddingX: string;
|
|
405
|
+
backgroundColor: string;
|
|
369
406
|
};
|
|
370
407
|
radii: {
|
|
371
408
|
sm: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codemonster-ru/vueforge",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.11.0",
|
|
4
4
|
"description": "Open source UI components for Vue.js.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Kirill Kolesnikov",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"scripts": {
|
|
47
47
|
"dev": "vite dev --force --mode development",
|
|
48
48
|
"build": "vite build --mode production",
|
|
49
|
-
"lint": "eslint . --ext .ts,.vue",
|
|
49
|
+
"lint": "node --import tsx ./node_modules/eslint/bin/eslint.js . --ext .ts,.vue --config eslint.config.ts",
|
|
50
50
|
"typecheck": "vue-tsc --noEmit",
|
|
51
51
|
"test": "vitest run"
|
|
52
52
|
},
|
|
@@ -65,10 +65,12 @@
|
|
|
65
65
|
"eslint-config-prettier": "^9.1.0",
|
|
66
66
|
"eslint-plugin-prettier": "^5.1.3",
|
|
67
67
|
"eslint-plugin-vue": "^9.27.0",
|
|
68
|
+
"jiti": "^2.4.2",
|
|
68
69
|
"jsdom": "^24.0.0",
|
|
69
70
|
"pinia": "^2.2.4",
|
|
70
71
|
"prettier": "^3.3.2",
|
|
71
72
|
"sass": "^1.77.8",
|
|
73
|
+
"tsx": "^4.20.5",
|
|
72
74
|
"typescript": "^5.5.3",
|
|
73
75
|
"vite": "^6.0.11",
|
|
74
76
|
"vite-plugin-dts": "^4.5.0",
|