@algorithm-shift/design-system 1.3.121 → 1.3.122
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 +2 -2
- package/dist/{chunk-QZ2QO7MJ.mjs → chunk-A6Q7ZNV7.mjs} +1 -1
- package/dist/chunk-A6Q7ZNV7.mjs.map +1 -0
- package/dist/client.js.map +1 -1
- package/dist/client.mjs +1 -1
- package/dist/client.mjs.map +1 -1
- package/dist/index.css +19 -11
- package/dist/index.css.map +1 -1
- package/dist/index.d.mts +347 -347
- package/dist/index.d.ts +347 -347
- package/dist/index.js +5 -5
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -6
- package/dist/index.mjs.map +1 -1
- package/package.json +113 -106
- package/dist/chunk-QZ2QO7MJ.mjs.map +0 -1
package/package.json
CHANGED
|
@@ -1,107 +1,114 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@algorithm-shift/design-system",
|
|
3
|
-
"version": "1.3.
|
|
4
|
-
"description": "A React + Tailwind CSS design system",
|
|
5
|
-
"packageManager": "npm@10.9.0",
|
|
6
|
-
"main": "dist/index.js",
|
|
7
|
-
"module": "dist/index.mjs",
|
|
8
|
-
"types": "dist/index.d.ts",
|
|
9
|
-
"exports": {
|
|
10
|
-
".": {
|
|
11
|
-
"import": "./dist/index.mjs",
|
|
12
|
-
"require": "./dist/index.js"
|
|
13
|
-
},
|
|
14
|
-
"./client": {
|
|
15
|
-
"import": "./dist/client.mjs",
|
|
16
|
-
"require": "./dist/client.js"
|
|
17
|
-
},
|
|
18
|
-
"./package.json": "./package.json"
|
|
19
|
-
},
|
|
20
|
-
"typesVersions": {
|
|
21
|
-
"*": {
|
|
22
|
-
"client": [
|
|
23
|
-
"dist/client.d.ts"
|
|
24
|
-
]
|
|
25
|
-
}
|
|
26
|
-
},
|
|
27
|
-
"files": [
|
|
28
|
-
"dist",
|
|
29
|
-
"src/**/*.png"
|
|
30
|
-
],
|
|
31
|
-
"scripts": {
|
|
32
|
-
"build": "tsup",
|
|
33
|
-
"build:css": "npx @tailwindcss/cli -i ./src/global.css -o ./dist/styles.css",
|
|
34
|
-
"storybook": "storybook dev -p 6006",
|
|
35
|
-
"build-storybook": "storybook build",
|
|
36
|
-
"ui": "npx shadcn@latest add"
|
|
37
|
-
},
|
|
38
|
-
"keywords": [],
|
|
39
|
-
"author": "Algorithm Shift Inc",
|
|
40
|
-
"license": "ISC",
|
|
41
|
-
"dependencies": {
|
|
42
|
-
"@radix-ui/react-accordion": "^1.2.12",
|
|
43
|
-
"@radix-ui/react-avatar": "^1.1.10",
|
|
44
|
-
"@radix-ui/react-checkbox": "^1.3.3",
|
|
45
|
-
"@radix-ui/react-dialog": "^1.1.15",
|
|
46
|
-
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
47
|
-
"@radix-ui/react-label": "^2.1.7",
|
|
48
|
-
"@radix-ui/react-popover": "^1.1.15",
|
|
49
|
-
"@radix-ui/react-radio-group": "^1.3.8",
|
|
50
|
-
"@radix-ui/react-select": "^2.2.6",
|
|
51
|
-
"@radix-ui/react-slot": "^1.2.3",
|
|
52
|
-
"@radix-ui/react-switch": "^1.2.6",
|
|
53
|
-
"@radix-ui/react-tooltip": "^1.2.8",
|
|
54
|
-
"@tanstack/react-table": "^8.21.3",
|
|
55
|
-
"@tinymce/tinymce-react": "^6.3.0",
|
|
56
|
-
"axios": "^1.13.2",
|
|
57
|
-
"class-variance-authority": "^0.7.1",
|
|
58
|
-
"clsx": "^2.1.1",
|
|
59
|
-
"cmdk": "^1.1.1",
|
|
60
|
-
"date-fns": "^4.1.0",
|
|
61
|
-
"dayjs": "^1.11.19",
|
|
62
|
-
"libphonenumber-js": "^1.12.36",
|
|
63
|
-
"next-themes": "^0.4.6",
|
|
64
|
-
"react-day-picker": "^9.9.0",
|
|
65
|
-
"react-international-phone": "^4.6.0",
|
|
66
|
-
"recharts": "^3.2.1",
|
|
67
|
-
"sonner": "^2.0.7",
|
|
68
|
-
"tailwind-merge": "^3.3.1"
|
|
69
|
-
},
|
|
70
|
-
"peerDependencies": {
|
|
71
|
-
"@fortawesome/free-brands-svg-icons": "^7.1.0",
|
|
72
|
-
"@fortawesome/free-regular-svg-icons": "^7.1.0",
|
|
73
|
-
"@fortawesome/free-solid-svg-icons": "^7.1.0",
|
|
74
|
-
"@fortawesome/
|
|
75
|
-
"@
|
|
76
|
-
"
|
|
77
|
-
"
|
|
78
|
-
"
|
|
79
|
-
"react
|
|
80
|
-
"react-
|
|
81
|
-
"
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
"@fortawesome/free-
|
|
86
|
-
"@fortawesome/free-
|
|
87
|
-
"@fortawesome/
|
|
88
|
-
"@
|
|
89
|
-
"@
|
|
90
|
-
"@
|
|
91
|
-
"@storybook/addon-
|
|
92
|
-
"@storybook/
|
|
93
|
-
"@
|
|
94
|
-
"@
|
|
95
|
-
"@
|
|
96
|
-
"@
|
|
97
|
-
"
|
|
98
|
-
"
|
|
99
|
-
"
|
|
100
|
-
"
|
|
101
|
-
"
|
|
102
|
-
"
|
|
103
|
-
"
|
|
104
|
-
"
|
|
105
|
-
"
|
|
106
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "@algorithm-shift/design-system",
|
|
3
|
+
"version": "1.3.122",
|
|
4
|
+
"description": "A React + Tailwind CSS design system",
|
|
5
|
+
"packageManager": "npm@10.9.0",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"module": "dist/index.mjs",
|
|
8
|
+
"types": "dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"import": "./dist/index.mjs",
|
|
12
|
+
"require": "./dist/index.js"
|
|
13
|
+
},
|
|
14
|
+
"./client": {
|
|
15
|
+
"import": "./dist/client.mjs",
|
|
16
|
+
"require": "./dist/client.js"
|
|
17
|
+
},
|
|
18
|
+
"./package.json": "./package.json"
|
|
19
|
+
},
|
|
20
|
+
"typesVersions": {
|
|
21
|
+
"*": {
|
|
22
|
+
"client": [
|
|
23
|
+
"dist/client.d.ts"
|
|
24
|
+
]
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
"files": [
|
|
28
|
+
"dist",
|
|
29
|
+
"src/**/*.png"
|
|
30
|
+
],
|
|
31
|
+
"scripts": {
|
|
32
|
+
"build": "tsup",
|
|
33
|
+
"build:css": "npx @tailwindcss/cli -i ./src/global.css -o ./dist/styles.css",
|
|
34
|
+
"storybook": "storybook dev -p 6006",
|
|
35
|
+
"build-storybook": "storybook build",
|
|
36
|
+
"ui": "npx shadcn@latest add"
|
|
37
|
+
},
|
|
38
|
+
"keywords": [],
|
|
39
|
+
"author": "Algorithm Shift Inc",
|
|
40
|
+
"license": "ISC",
|
|
41
|
+
"dependencies": {
|
|
42
|
+
"@radix-ui/react-accordion": "^1.2.12",
|
|
43
|
+
"@radix-ui/react-avatar": "^1.1.10",
|
|
44
|
+
"@radix-ui/react-checkbox": "^1.3.3",
|
|
45
|
+
"@radix-ui/react-dialog": "^1.1.15",
|
|
46
|
+
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
47
|
+
"@radix-ui/react-label": "^2.1.7",
|
|
48
|
+
"@radix-ui/react-popover": "^1.1.15",
|
|
49
|
+
"@radix-ui/react-radio-group": "^1.3.8",
|
|
50
|
+
"@radix-ui/react-select": "^2.2.6",
|
|
51
|
+
"@radix-ui/react-slot": "^1.2.3",
|
|
52
|
+
"@radix-ui/react-switch": "^1.2.6",
|
|
53
|
+
"@radix-ui/react-tooltip": "^1.2.8",
|
|
54
|
+
"@tanstack/react-table": "^8.21.3",
|
|
55
|
+
"@tinymce/tinymce-react": "^6.3.0",
|
|
56
|
+
"axios": "^1.13.2",
|
|
57
|
+
"class-variance-authority": "^0.7.1",
|
|
58
|
+
"clsx": "^2.1.1",
|
|
59
|
+
"cmdk": "^1.1.1",
|
|
60
|
+
"date-fns": "^4.1.0",
|
|
61
|
+
"dayjs": "^1.11.19",
|
|
62
|
+
"libphonenumber-js": "^1.12.36",
|
|
63
|
+
"next-themes": "^0.4.6",
|
|
64
|
+
"react-day-picker": "^9.9.0",
|
|
65
|
+
"react-international-phone": "^4.6.0",
|
|
66
|
+
"recharts": "^3.2.1",
|
|
67
|
+
"sonner": "^2.0.7",
|
|
68
|
+
"tailwind-merge": "^3.3.1"
|
|
69
|
+
},
|
|
70
|
+
"peerDependencies": {
|
|
71
|
+
"@fortawesome/free-brands-svg-icons": "^7.1.0",
|
|
72
|
+
"@fortawesome/free-regular-svg-icons": "^7.1.0",
|
|
73
|
+
"@fortawesome/free-solid-svg-icons": "^7.1.0",
|
|
74
|
+
"@fortawesome/fontawesome-svg-core": "^7.1.0",
|
|
75
|
+
"@fortawesome/react-fontawesome": "^3.1.0",
|
|
76
|
+
"@hookform/resolvers": "^5.2.2",
|
|
77
|
+
"lucide-react": "^0.542.0",
|
|
78
|
+
"next": "^14 || ^15",
|
|
79
|
+
"react": ">=18",
|
|
80
|
+
"react-dom": ">=18",
|
|
81
|
+
"react-hook-form": "^7.63.0",
|
|
82
|
+
"zod": "^4.1.11"
|
|
83
|
+
},
|
|
84
|
+
"devDependencies": {
|
|
85
|
+
"@fortawesome/free-brands-svg-icons": "^7.1.0",
|
|
86
|
+
"@fortawesome/free-regular-svg-icons": "^7.1.0",
|
|
87
|
+
"@fortawesome/free-solid-svg-icons": "^7.1.0",
|
|
88
|
+
"@fortawesome/fontawesome-svg-core": "^7.1.0",
|
|
89
|
+
"@fortawesome/react-fontawesome": "^3.1.0",
|
|
90
|
+
"@hookform/resolvers": "^5.2.2",
|
|
91
|
+
"@storybook/addon-docs": "^9.1.3",
|
|
92
|
+
"@storybook/addon-styling-webpack": "^2.0.0",
|
|
93
|
+
"@storybook/addon-themes": "^9.1.3",
|
|
94
|
+
"@storybook/addon-webpack5-compiler-swc": "^3.0.0",
|
|
95
|
+
"@storybook/react-webpack5": "^9.1.3",
|
|
96
|
+
"@tailwindcss/cli": "^4.1.12",
|
|
97
|
+
"@tailwindcss/postcss": "^4.1.12",
|
|
98
|
+
"@types/react": "^19.1.11",
|
|
99
|
+
"@types/react-dom": "^19.2.2",
|
|
100
|
+
"lucide-react": "^0.542.0",
|
|
101
|
+
"next": "^15.5.4",
|
|
102
|
+
"postcss": "^8.5.6",
|
|
103
|
+
"postcss-loader": "^8.1.1",
|
|
104
|
+
"react": "^19.2.4",
|
|
105
|
+
"react-dom": "^19.2.4",
|
|
106
|
+
"react-hook-form": "^7.71.2",
|
|
107
|
+
"storybook": "^9.1.3",
|
|
108
|
+
"tailwindcss": "^4.1.12",
|
|
109
|
+
"tsup": "^8.5.0",
|
|
110
|
+
"tw-animate-css": "^1.3.7",
|
|
111
|
+
"typescript": "^5.9.2",
|
|
112
|
+
"zod": "^4.3.6"
|
|
113
|
+
}
|
|
107
114
|
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/lib/utils.ts"],"sourcesContent":["import { clsx, type ClassValue } from \"clsx\"\r\nimport { twMerge } from \"tailwind-merge\"\r\n\r\nexport function cn(...inputs: ClassValue[]) {\r\n return twMerge(clsx(inputs))\r\n}\r\n\r\nexport function getInitials(name: string) {\r\n const words = name.split(' ');\r\n if (words.length === 0) {\r\n return '';\r\n }\r\n if (words.length === 1) {\r\n return words[0].charAt(0);\r\n }\r\n return words[0].charAt(0) + words[1].charAt(0);\r\n}"],"mappings":";;;AAAA,SAAS,YAA6B;AACtC,SAAS,eAAe;AAEjB,SAAS,MAAM,QAAsB;AAC1C,SAAO,QAAQ,KAAK,MAAM,CAAC;AAC7B;AAEO,SAAS,YAAY,MAAc;AACxC,QAAM,QAAQ,KAAK,MAAM,GAAG;AAC5B,MAAI,MAAM,WAAW,GAAG;AACtB,WAAO;AAAA,EACT;AACA,MAAI,MAAM,WAAW,GAAG;AACtB,WAAO,MAAM,CAAC,EAAE,OAAO,CAAC;AAAA,EAC1B;AACA,SAAO,MAAM,CAAC,EAAE,OAAO,CAAC,IAAI,MAAM,CAAC,EAAE,OAAO,CAAC;AAC/C;","names":[]}
|