@sito/ui 0.0.186 → 0.0.196
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/types.d.ts +0 -1
- package/dist/components/Error/styles.d.ts +4 -0
- package/dist/components/Error/types.d.ts +0 -2
- package/dist/components/IconButton/types.d.ts +2 -2
- package/dist/components/Image/styles.d.ts +9 -0
- package/dist/components/Notification/styles.d.ts +1 -1
- package/dist/components/SplashScreen/styles.d.ts +1 -2
- package/dist/components/Switch/styles.d.ts +1 -2
- package/dist/components/index.d.ts +2 -3
- package/dist/main.css +1 -1
- package/dist/ui.cjs +5 -973
- package/dist/ui.js +1451 -26428
- package/package.json +1 -12
- package/dist/components/ToTop/ToTop.d.ts +0 -4
- package/dist/components/ToTop/index.d.ts +0 -3
- package/dist/components/ToTop/types.d.ts +0 -4
- package/dist/functions/crypto.d.ts +0 -14
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sito/ui",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.196",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
7
7
|
"dist/"
|
|
@@ -34,13 +34,6 @@
|
|
|
34
34
|
"react-dom": "18.2.0"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@fortawesome/fontawesome-svg-core": "6.3.0",
|
|
38
|
-
"@fortawesome/free-brands-svg-icons": "6.3.0",
|
|
39
|
-
"@fortawesome/free-regular-svg-icons": "6.3.0",
|
|
40
|
-
"@fortawesome/free-solid-svg-icons": "6.3.0",
|
|
41
|
-
"@fortawesome/react-fontawesome": "0.2.0",
|
|
42
|
-
"@tippyjs/react": "4.2.6",
|
|
43
|
-
"@types/crypto-js": "4.1.3",
|
|
44
37
|
"@types/node": "20.8.10",
|
|
45
38
|
"@types/react": "18.2.34",
|
|
46
39
|
"@types/react-dom": "18.2.14",
|
|
@@ -48,14 +41,10 @@
|
|
|
48
41
|
"@typescript-eslint/parser": "6.0.0",
|
|
49
42
|
"@vitejs/plugin-react": "4.0.3",
|
|
50
43
|
"autoprefixer": "10.4.16",
|
|
51
|
-
"crypto-js": "4.2.0",
|
|
52
44
|
"eslint": "8.45.0",
|
|
53
45
|
"eslint-plugin-react-hooks": "4.6.0",
|
|
54
46
|
"eslint-plugin-react-refresh": "0.4.3",
|
|
55
|
-
"postcss": "8.4.31",
|
|
56
47
|
"react-error-boundary": "3.1.4",
|
|
57
|
-
"some-javascript-utils": "0.9.6",
|
|
58
|
-
"tailwindcss": "3.3.5",
|
|
59
48
|
"typescript": "5.0.2",
|
|
60
49
|
"use-screen-width": "1.0.3",
|
|
61
50
|
"vite": "4.4.5",
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
*
|
|
3
|
-
* @param data anything to encrypt
|
|
4
|
-
* @param key key for encryption
|
|
5
|
-
* @returns encrypted data
|
|
6
|
-
*/
|
|
7
|
-
export declare function encrypt(data: unknown, key?: string): string;
|
|
8
|
-
/**
|
|
9
|
-
*
|
|
10
|
-
* @param data string to decrypt
|
|
11
|
-
* @param key key for encryption
|
|
12
|
-
* @returns decrypted data
|
|
13
|
-
*/
|
|
14
|
-
export declare function decrypt(data: string, key?: string): any;
|