@codemonster-ru/vueforge 0.3.4 → 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.
@@ -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.4",
3
+ "version": "0.5.0",
4
4
  "description": "Open source UI components for Vue.js.",
5
5
  "license": "MIT",
6
6
  "author": "Kirill Kolesnikov",
@@ -15,6 +15,7 @@
15
15
  "exports": {
16
16
  ".": {
17
17
  "import": {
18
+ "style": "./dist/index.css",
18
19
  "types": "./dist/index.d.ts",
19
20
  "default": "./dist/index.ts.mjs"
20
21
  },
@@ -33,15 +34,16 @@
33
34
  ],
34
35
  "scripts": {
35
36
  "dev": "vite dev --force --mode development",
36
- "build": "vite build --mode production"
37
+ "build": "vite build --mode production",
38
+ "lint": "eslint . --ext .ts,.vue",
39
+ "typecheck": "vue-tsc --noEmit"
37
40
  },
38
41
  "peerDependencies": {
42
+ "@codemonster-ru/vueiconify": "^0.7.0",
39
43
  "vue": "^3.0.0",
40
- "vue-router": "^4.4.5",
41
- "@codemonster-ru/vueiconify": "^0.7.0"
44
+ "vue-router": "^4.4.5"
42
45
  },
43
46
  "devDependencies": {
44
- "pinia": "^2.2.4",
45
47
  "@types/node": "^20.14.10",
46
48
  "@typescript-eslint/eslint-plugin": "^7.16.0",
47
49
  "@vitejs/plugin-vue": "^5.0.5",
@@ -50,6 +52,7 @@
50
52
  "eslint-config-prettier": "^9.1.0",
51
53
  "eslint-plugin-prettier": "^5.1.3",
52
54
  "eslint-plugin-vue": "^9.27.0",
55
+ "pinia": "^2.2.4",
53
56
  "prettier": "^3.3.2",
54
57
  "sass": "^1.77.8",
55
58
  "typescript": "^5.5.3",
@@ -57,5 +60,8 @@
57
60
  "vite-plugin-dts": "^4.5.0",
58
61
  "vue": "^3.4.31",
59
62
  "vue-tsc": "^2.0.21"
63
+ },
64
+ "dependencies": {
65
+ "@codemonster-ru/floater.js": "^1.0.7"
60
66
  }
61
- }
67
+ }