@codemonster-ru/vueforge 0.1.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.
Files changed (35) hide show
  1. package/LICENSE.md +21 -0
  2. package/README.md +7 -0
  3. package/dist/components/button.vue.d.ts +43 -0
  4. package/dist/components/card.vue.d.ts +20 -0
  5. package/dist/components/container.vue.d.ts +17 -0
  6. package/dist/components/content.vue.d.ts +17 -0
  7. package/dist/components/demo.vue.d.ts +17 -0
  8. package/dist/components/footer.vue.d.ts +17 -0
  9. package/dist/components/header.vue.d.ts +18 -0
  10. package/dist/components/link.vue.d.ts +40 -0
  11. package/dist/components/logo.vue.d.ts +20 -0
  12. package/dist/components/menu.vue.d.ts +10 -0
  13. package/dist/components/popover.vue.d.ts +29 -0
  14. package/dist/config/index.d.ts +5 -0
  15. package/dist/index.css +1 -0
  16. package/dist/index.d.ts +15 -0
  17. package/dist/index.ts.mjs +1047 -0
  18. package/dist/index.ts.umd.js +6 -0
  19. package/dist/layouts/defaultLayout.vue.d.ts +19 -0
  20. package/dist/layouts/leftSidebarLayout.vue.d.ts +17 -0
  21. package/dist/themes/default/base.d.ts +33 -0
  22. package/dist/themes/default/components/button.d.ts +142 -0
  23. package/dist/themes/default/components/card.d.ts +6 -0
  24. package/dist/themes/default/components/codeBlock.d.ts +2 -0
  25. package/dist/themes/default/components/container.d.ts +4 -0
  26. package/dist/themes/default/components/content.d.ts +2 -0
  27. package/dist/themes/default/components/demo.d.ts +2 -0
  28. package/dist/themes/default/components/footer.d.ts +7 -0
  29. package/dist/themes/default/components/header.d.ts +8 -0
  30. package/dist/themes/default/components/link.d.ts +5 -0
  31. package/dist/themes/default/components/logo.d.ts +2 -0
  32. package/dist/themes/default/components/menu.d.ts +18 -0
  33. package/dist/themes/default/components/popover.d.ts +4 -0
  34. package/dist/themes/default/index.d.ts +257 -0
  35. package/package.json +61 -0
@@ -0,0 +1,257 @@
1
+ declare const _default: {
2
+ components: {
3
+ base: {
4
+ colors: {
5
+ white: string;
6
+ green: string;
7
+ red: string;
8
+ yellow: string;
9
+ sky: string;
10
+ blue: string;
11
+ purple: string;
12
+ gray: string;
13
+ };
14
+ colorScheme: {
15
+ light: {
16
+ bgColor: string;
17
+ bgSoftColor: string;
18
+ textColor: string;
19
+ secondaryTextColor: string;
20
+ borderColor: string;
21
+ gutterColor: string;
22
+ dividerColor: string;
23
+ };
24
+ dark: {
25
+ bgColor: string;
26
+ bgSoftColor: string;
27
+ textColor: string;
28
+ secondaryTextColor: string;
29
+ borderColor: string;
30
+ gutterColor: string;
31
+ dividerColor: string;
32
+ };
33
+ };
34
+ };
35
+ button: {
36
+ padding: string;
37
+ borderRadius: string;
38
+ roundedBorderRadius: string;
39
+ small: {
40
+ fontSize: string;
41
+ padding: string;
42
+ };
43
+ large: {
44
+ fontSize: string;
45
+ padding: string;
46
+ };
47
+ colorScheme: {
48
+ light: {
49
+ primary: {
50
+ color: string;
51
+ hoverColor: string;
52
+ borderColor: string;
53
+ activeColor: string;
54
+ backgroundColor: string;
55
+ hoverBorderColor: string;
56
+ activeBorderColor: string;
57
+ hoverBackgroundColor: string;
58
+ activeBackgroundColor: string;
59
+ };
60
+ secondary: {
61
+ color: string;
62
+ hoverColor: string;
63
+ borderColor: string;
64
+ activeColor: string;
65
+ backgroundColor: string;
66
+ hoverBorderColor: string;
67
+ activeBorderColor: string;
68
+ hoverBackgroundColor: string;
69
+ activeBackgroundColor: string;
70
+ };
71
+ success: {
72
+ color: string;
73
+ hoverColor: string;
74
+ borderColor: string;
75
+ activeColor: string;
76
+ backgroundColor: string;
77
+ hoverBorderColor: string;
78
+ activeBorderColor: string;
79
+ hoverBackgroundColor: string;
80
+ activeBackgroundColor: string;
81
+ };
82
+ danger: {
83
+ color: string;
84
+ hoverColor: string;
85
+ borderColor: string;
86
+ activeColor: string;
87
+ backgroundColor: string;
88
+ hoverBorderColor: string;
89
+ activeBorderColor: string;
90
+ hoverBackgroundColor: string;
91
+ activeBackgroundColor: string;
92
+ };
93
+ warning: {
94
+ color: string;
95
+ hoverColor: string;
96
+ borderColor: string;
97
+ activeColor: string;
98
+ backgroundColor: string;
99
+ hoverBorderColor: string;
100
+ activeBorderColor: string;
101
+ hoverBackgroundColor: string;
102
+ activeBackgroundColor: string;
103
+ };
104
+ info: {
105
+ color: string;
106
+ hoverColor: string;
107
+ borderColor: string;
108
+ activeColor: string;
109
+ backgroundColor: string;
110
+ hoverBorderColor: string;
111
+ activeBorderColor: string;
112
+ hoverBackgroundColor: string;
113
+ activeBackgroundColor: string;
114
+ };
115
+ text: {
116
+ primary: {
117
+ color: string;
118
+ hoverBackgroundColor: string;
119
+ };
120
+ secondary: {
121
+ color: string;
122
+ hoverBackgroundColor: string;
123
+ };
124
+ success: {
125
+ color: string;
126
+ hoverBackgroundColor: string;
127
+ };
128
+ danger: {
129
+ color: string;
130
+ hoverBackgroundColor: string;
131
+ };
132
+ warning: {
133
+ color: string;
134
+ hoverBackgroundColor: string;
135
+ };
136
+ info: {
137
+ color: string;
138
+ hoverBackgroundColor: string;
139
+ };
140
+ };
141
+ outlined: {
142
+ primary: {
143
+ color: string;
144
+ borderColor: string;
145
+ hoverBackgroundColor: string;
146
+ };
147
+ secondary: {
148
+ color: string;
149
+ borderColor: string;
150
+ hoverBackgroundColor: string;
151
+ };
152
+ success: {
153
+ color: string;
154
+ borderColor: string;
155
+ hoverBackgroundColor: string;
156
+ };
157
+ danger: {
158
+ color: string;
159
+ borderColor: string;
160
+ hoverBackgroundColor: string;
161
+ };
162
+ warning: {
163
+ color: string;
164
+ borderColor: string;
165
+ hoverBackgroundColor: string;
166
+ };
167
+ info: {
168
+ color: string;
169
+ borderColor: string;
170
+ hoverBackgroundColor: string;
171
+ };
172
+ };
173
+ };
174
+ };
175
+ };
176
+ card: {
177
+ padding: string;
178
+ borderColor: string;
179
+ borderRadius: string;
180
+ };
181
+ codeBlock: {};
182
+ container: {
183
+ padding: string;
184
+ };
185
+ content: {};
186
+ demo: {};
187
+ footer: {
188
+ color: string;
189
+ padding: string;
190
+ borderColor: string;
191
+ backgroundColor: string;
192
+ };
193
+ header: {
194
+ height: string;
195
+ padding: string;
196
+ minHeight: string;
197
+ borderColor: string;
198
+ backgroundColor: string;
199
+ };
200
+ link: {
201
+ hoverColor: string;
202
+ activeColor: string;
203
+ };
204
+ logo: {};
205
+ menu: {
206
+ separatorColor: string;
207
+ link: {
208
+ hoverColor: string;
209
+ activeColor: string;
210
+ };
211
+ parent: {
212
+ hoverColor: string;
213
+ activeColor: string;
214
+ };
215
+ item: {
216
+ marginTop: string;
217
+ marginRight: string;
218
+ marginBottom: string;
219
+ marginLeft: string;
220
+ };
221
+ };
222
+ popover: {
223
+ backgroundColor: string;
224
+ };
225
+ };
226
+ colors: {
227
+ white: string;
228
+ green: string;
229
+ red: string;
230
+ yellow: string;
231
+ sky: string;
232
+ blue: string;
233
+ purple: string;
234
+ gray: string;
235
+ };
236
+ colorScheme: {
237
+ light: {
238
+ bgColor: string;
239
+ bgSoftColor: string;
240
+ textColor: string;
241
+ secondaryTextColor: string;
242
+ borderColor: string;
243
+ gutterColor: string;
244
+ dividerColor: string;
245
+ };
246
+ dark: {
247
+ bgColor: string;
248
+ bgSoftColor: string;
249
+ textColor: string;
250
+ secondaryTextColor: string;
251
+ borderColor: string;
252
+ gutterColor: string;
253
+ dividerColor: string;
254
+ };
255
+ };
256
+ };
257
+ export default _default;
package/package.json ADDED
@@ -0,0 +1,61 @@
1
+ {
2
+ "name": "@codemonster-ru/vueforge",
3
+ "version": "0.1.0",
4
+ "description": "Open source UI components for Vue.js.",
5
+ "license": "MIT",
6
+ "author": "Kirill Kolesnikov",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/codemonster-ru/vueforge.git"
10
+ },
11
+ "keywords": [],
12
+ "main": "./dist/index.ts.umd.js",
13
+ "module": "./dist/index.ts.mjs",
14
+ "types": "./dist/index.d.ts",
15
+ "exports": {
16
+ ".": {
17
+ "import": {
18
+ "types": "./dist/index.d.mts",
19
+ "default": "./dist/index.ts.mjs"
20
+ },
21
+ "require": {
22
+ "types": "./dist/index.d.ts",
23
+ "default": "./dist/index.ts.umd.js"
24
+ }
25
+ },
26
+ "./dist/*.css": {
27
+ "import": "./dist/*.css",
28
+ "require": "./dist/*.css"
29
+ }
30
+ },
31
+ "files": [
32
+ "dist"
33
+ ],
34
+ "scripts": {
35
+ "dev": "vite dev --force --mode development",
36
+ "build": "vite build --mode production"
37
+ },
38
+ "peerDependencies": {
39
+ "vue": "^3.0.0",
40
+ "vue-router": "^4.4.5",
41
+ "@codemonster-ru/vueiconify": "^0.7.0"
42
+ },
43
+ "devDependencies": {
44
+ "pinia": "^2.2.4",
45
+ "@types/node": "^20.14.10",
46
+ "@typescript-eslint/eslint-plugin": "^7.16.0",
47
+ "@vitejs/plugin-vue": "^5.0.5",
48
+ "@vue/eslint-config-typescript": "^13.0.0",
49
+ "eslint": "^8.57.0",
50
+ "eslint-config-prettier": "^9.1.0",
51
+ "eslint-plugin-prettier": "^5.1.3",
52
+ "eslint-plugin-vue": "^9.27.0",
53
+ "prettier": "^3.3.2",
54
+ "sass": "^1.77.8",
55
+ "typescript": "^5.5.3",
56
+ "vite": "^6.0.11",
57
+ "vite-plugin-dts": "^4.5.0",
58
+ "vue": "^3.4.31",
59
+ "vue-tsc": "^2.0.21"
60
+ }
61
+ }