@sito/ui 0.0.186 → 0.0.197

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sito/ui",
3
3
  "private": false,
4
- "version": "0.0.186",
4
+ "version": "0.0.197",
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,4 +0,0 @@
1
- /// <reference types="react" />
2
- import { ToTopProps } from "./types";
3
- declare const ToTop: import("react").ForwardRefExoticComponent<Omit<ToTopProps, "ref"> & import("react").RefAttributes<HTMLButtonElement>>;
4
- export default ToTop;
@@ -1,3 +0,0 @@
1
- import ToTop from "./ToTop";
2
- export type { ToTopProps } from "./types";
3
- export { ToTop };
@@ -1,4 +0,0 @@
1
- import { IconButtonProps } from '../IconButton/types';
2
- export interface ToTopProps extends IconButtonProps {
3
- position: "top-left" | "top-right" | "bottom-right" | "bottom-left" | undefined;
4
- }
@@ -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;