@sito/ui 0.0.36 → 0.0.38
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/dist/components/Button/Button.d.ts +8 -0
- package/dist/components/Error/Error.d.ts +13 -0
- package/dist/components/Error/Handler.d.ts +10 -0
- package/dist/components/IconButton/IconButton.d.ts +8 -0
- package/dist/components/Image/Image.d.ts +6 -0
- package/dist/components/InputControl/Input.d.ts +11 -0
- package/dist/components/InputControl/Select.d.ts +10 -0
- package/dist/components/InputControl/Textarea.d.ts +10 -0
- package/dist/components/Loading/Loading.d.ts +8 -0
- package/dist/components/Notification/Notification.d.ts +5 -0
- package/dist/components/PrintAfter/PrintAfter.d.ts +8 -0
- package/dist/components/Switch/Switch.d.ts +9 -0
- package/dist/components/ToTop/ToTop.d.ts +3 -0
- package/dist/components/components.d.ts +15 -0
- package/dist/functions/crypto.d.ts +14 -0
- package/dist/main.d.ts +2 -0
- package/dist/providers/ModeProvider.d.ts +11 -0
- package/dist/providers/NotificationProvider.d.ts +19 -0
- package/dist/providers/StyleProvider.d.ts +6 -0
- package/dist/providers/providers.d.ts +5 -0
- package/dist/ui.cjs +970 -0
- package/dist/ui.d.ts +1 -0
- package/dist/ui.js +25407 -0
- package/package.json +64 -76
package/package.json
CHANGED
|
@@ -1,76 +1,64 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@sito/ui",
|
|
3
|
-
"private": false,
|
|
4
|
-
"version": "0.0.
|
|
5
|
-
"type": "module",
|
|
6
|
-
"files": [
|
|
7
|
-
"dist/
|
|
8
|
-
],
|
|
9
|
-
"repository": {
|
|
10
|
-
"type": "git",
|
|
11
|
-
"url": "https://github.com/SitoNumbis/ui.git"
|
|
12
|
-
},
|
|
13
|
-
"main": "./dist/ui.cjs",
|
|
14
|
-
"module": "./dist/ui.js",
|
|
15
|
-
"types": "./dist/ui.d.ts",
|
|
16
|
-
"exports": {
|
|
17
|
-
".": {
|
|
18
|
-
"import": "./dist/ui.js",
|
|
19
|
-
"require": "./dist/ui.cjs"
|
|
20
|
-
}
|
|
21
|
-
},
|
|
22
|
-
"sideEffects": [
|
|
23
|
-
"**/*.css"
|
|
24
|
-
],
|
|
25
|
-
"scripts": {
|
|
26
|
-
"dev": "vite",
|
|
27
|
-
"build": "tsc && vite build --base=./",
|
|
28
|
-
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
29
|
-
"preview": "vite preview"
|
|
30
|
-
},
|
|
31
|
-
"
|
|
32
|
-
"
|
|
33
|
-
"
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
"@fortawesome/
|
|
37
|
-
"@
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
"react": "^18.2.
|
|
45
|
-
"react-dom": "^18.2.
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
"@
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
"
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
"eslint-plugin-react-refresh": "^0.4.3",
|
|
66
|
-
"postcss": "^8.4.31",
|
|
67
|
-
"react-error-boundary": "^3.1.4",
|
|
68
|
-
"some-javascript-utils": "^0.9.6",
|
|
69
|
-
"tailwindcss": "^3.3.5",
|
|
70
|
-
"typescript": "^5.0.2",
|
|
71
|
-
"use-screen-width": "^1.0.3",
|
|
72
|
-
"vite": "^4.4.5",
|
|
73
|
-
"vite-plugin-dts": "^3.6.3",
|
|
74
|
-
"vite-plugin-lib-inject-css": "^1.3.0"
|
|
75
|
-
}
|
|
76
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@sito/ui",
|
|
3
|
+
"private": false,
|
|
4
|
+
"version": "0.0.38",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"files": [
|
|
7
|
+
"dist/"
|
|
8
|
+
],
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "https://github.com/SitoNumbis/ui.git"
|
|
12
|
+
},
|
|
13
|
+
"main": "./dist/ui.cjs",
|
|
14
|
+
"module": "./dist/ui.js",
|
|
15
|
+
"types": "./dist/ui.d.ts",
|
|
16
|
+
"exports": {
|
|
17
|
+
".": {
|
|
18
|
+
"import": "./dist/ui.js",
|
|
19
|
+
"require": "./dist/ui.cjs"
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
"sideEffects": [
|
|
23
|
+
"**/*.css"
|
|
24
|
+
],
|
|
25
|
+
"scripts": {
|
|
26
|
+
"dev": "vite",
|
|
27
|
+
"build": "tsc && vite build --base=./",
|
|
28
|
+
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
29
|
+
"preview": "vite preview"
|
|
30
|
+
},
|
|
31
|
+
"dependencies": {
|
|
32
|
+
"react": "^18.2.0",
|
|
33
|
+
"react-dom": "^18.2.0"
|
|
34
|
+
},
|
|
35
|
+
"devDependencies": {
|
|
36
|
+
"@fortawesome/fontawesome-svg-core": "^6.3.0",
|
|
37
|
+
"@fortawesome/free-brands-svg-icons": "^6.3.0",
|
|
38
|
+
"@fortawesome/free-regular-svg-icons": "^6.3.0",
|
|
39
|
+
"@fortawesome/free-solid-svg-icons": "^6.3.0",
|
|
40
|
+
"@fortawesome/react-fontawesome": "^0.2.0",
|
|
41
|
+
"@tippyjs/react": "^4.2.6",
|
|
42
|
+
"@types/crypto-js": "^4.1.3",
|
|
43
|
+
"@types/node": "^20.8.10",
|
|
44
|
+
"@types/react": "^18.2.34",
|
|
45
|
+
"@types/react-dom": "^18.2.14",
|
|
46
|
+
"@typescript-eslint/eslint-plugin": "^6.0.0",
|
|
47
|
+
"@typescript-eslint/parser": "^6.0.0",
|
|
48
|
+
"@vitejs/plugin-react": "^4.0.3",
|
|
49
|
+
"autoprefixer": "^10.4.16",
|
|
50
|
+
"crypto-js": "^4.2.0",
|
|
51
|
+
"eslint": "^8.45.0",
|
|
52
|
+
"eslint-plugin-react-hooks": "^4.6.0",
|
|
53
|
+
"eslint-plugin-react-refresh": "^0.4.3",
|
|
54
|
+
"postcss": "^8.4.31",
|
|
55
|
+
"react-error-boundary": "^3.1.4",
|
|
56
|
+
"some-javascript-utils": "^0.9.6",
|
|
57
|
+
"tailwindcss": "^3.3.5",
|
|
58
|
+
"typescript": "^5.0.2",
|
|
59
|
+
"use-screen-width": "^1.0.3",
|
|
60
|
+
"vite": "^4.4.5",
|
|
61
|
+
"vite-plugin-dts": "^3.6.3",
|
|
62
|
+
"vite-plugin-lib-inject-css": "^1.3.0"
|
|
63
|
+
}
|
|
64
|
+
}
|