urfu-ui-kit-vanilla 2.3.3 → 2.3.4
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 +4 -4
- package/package.json +30 -31
- package/src/main.css +10727 -208
- package/src/main.d.ts +1 -0
- package/src/main.ts +1 -0
- package/main.js +0 -419
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
Documentation: https://uikit.my1.urfu.ru
|
|
2
|
-
|
|
3
|
-
## License
|
|
4
|
-
|
|
1
|
+
Documentation: https://uikit.my1.urfu.ru
|
|
2
|
+
|
|
3
|
+
## License
|
|
4
|
+
|
|
5
5
|
This project is licensed under the Apache License 2.0 — see the [LICENSE](./LICENSE) file for details.
|
package/package.json
CHANGED
|
@@ -1,31 +1,30 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "urfu-ui-kit-vanilla",
|
|
3
|
-
"description": "UrFU UI-Kit for Vanilla Web",
|
|
4
|
-
"license": "Apache-2.0",
|
|
5
|
-
"private": false,
|
|
6
|
-
"version": "2.3.
|
|
7
|
-
"type": "module",
|
|
8
|
-
"scripts": {
|
|
9
|
-
"start": "npm-run-all --parallel less:watch vite",
|
|
10
|
-
"build": "
|
|
11
|
-
"
|
|
12
|
-
"
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
"src/main.
|
|
26
|
-
"src/
|
|
27
|
-
"src/
|
|
28
|
-
"
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "urfu-ui-kit-vanilla",
|
|
3
|
+
"description": "UrFU UI-Kit for Vanilla Web",
|
|
4
|
+
"license": "Apache-2.0",
|
|
5
|
+
"private": false,
|
|
6
|
+
"version": "2.3.4",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"scripts": {
|
|
9
|
+
"start": "npm-run-all --parallel less:watch vite",
|
|
10
|
+
"build": "vite build && copy LICENSE dist\\",
|
|
11
|
+
"less:watch": "chokidar \"src/**/*.less\" -c \"npx lessc src/main.less src/main.css\"",
|
|
12
|
+
"vite": "vite"
|
|
13
|
+
},
|
|
14
|
+
"devDependencies": {
|
|
15
|
+
"@types/node": "^18.15.11",
|
|
16
|
+
"chokidar-cli": "^3.0.0",
|
|
17
|
+
"less": "^4.1.3",
|
|
18
|
+
"npm-run-all": "^4.1.5",
|
|
19
|
+
"typescript": "^4.9.3",
|
|
20
|
+
"vite": "^4.2.0",
|
|
21
|
+
"vite-plugin-static-copy": "^0.15.0"
|
|
22
|
+
},
|
|
23
|
+
"files": [
|
|
24
|
+
"src/main.ts",
|
|
25
|
+
"src/main.d.ts",
|
|
26
|
+
"src/main.css",
|
|
27
|
+
"src/ui-icons.css",
|
|
28
|
+
"src/fonts/*"
|
|
29
|
+
]
|
|
30
|
+
}
|