triafly-ui-kit 1.0.28 → 1.0.29

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,6 +1,6 @@
1
1
  {
2
2
  "name": "triafly-ui-kit",
3
- "version": "1.0.28",
3
+ "version": "1.0.29",
4
4
  "description": "UI Kit from Triafly",
5
5
  "main": "./dist/main.js",
6
6
  "module": "./dist/main.js",
@@ -46,13 +46,12 @@
46
46
  "react-router-dom": "6.26.1"
47
47
  },
48
48
  "dependencies": {
49
+ "dayjs": "^1.11.13",
49
50
  "fast-deep-equal": "^3.1.3",
50
51
  "papaparse": "^5.4.1",
51
52
  "react-paginate": "^8.2.0"
52
53
  },
53
54
  "devDependencies": {
54
- "storybook": "^8.6.14",
55
- "vite-plugin-lib-inject-css": "^2.2.2",
56
55
  "@chromatic-com/storybook": "^3.2.3",
57
56
  "@eslint/js": "^9.25.0",
58
57
  "@storybook/addon-backgrounds": "^8.5.2",
@@ -91,10 +90,12 @@
91
90
  "react-dom": "18.2.0",
92
91
  "react-router-dom": "6.26.1",
93
92
  "sass": "^1.89.0",
93
+ "storybook": "^8.6.14",
94
94
  "typescript": "~5.8.3",
95
95
  "typescript-eslint": "^8.30.1",
96
96
  "vite": "^6.3.5",
97
97
  "vite-plugin-dts": "^4.5.4",
98
+ "vite-plugin-lib-inject-css": "^2.2.2",
98
99
  "vite-plugin-static-copy": "^3.0.0",
99
100
  "vite-plugin-svgr": "^4.3.0"
100
101
  },
@@ -20,6 +20,21 @@
20
20
  --light-brand-200: #1A3AB2;
21
21
  --light-brand-300: #0E2266;
22
22
 
23
+ /* Primitives - Test Client */
24
+ html[data-client="test"] {
25
+ --light-brand-20: #F3E8FF;
26
+ --light-brand-50: #D8B4FE;
27
+ --light-brand-100: #A855F7;
28
+ --light-brand-200: #7E22CE;
29
+ --light-brand-300: #4C1D95;
30
+
31
+ --dark-brand-20: #5B21B6;
32
+ --dark-brand-50: #7C3AED;
33
+ --dark-brand-100: #A78BFA;
34
+ --dark-brand-200: #C4B5FD;
35
+ --dark-brand-300: #DDD6FE;
36
+ }
37
+
23
38
  /* Primitives - Base */
24
39
  --base-dark: #121212;
25
40
  --base-light: #FFFFFF;
@@ -160,21 +175,6 @@
160
175
  --color-button-brandlight-filled-hover: var(--light-brand-50);
161
176
  }
162
177
 
163
- /* Primitives - Test Client */
164
- html[data-client="test"] {
165
- --light-brand-20: #F3E8FF;
166
- --light-brand-50: #D8B4FE;
167
- --light-brand-100: #A855F7;
168
- --light-brand-200: #7E22CE;
169
- --light-brand-300: #4C1D95;
170
-
171
- --dark-brand-20: #5B21B6;
172
- --dark-brand-50: #7C3AED;
173
- --dark-brand-100: #A78BFA;
174
- --dark-brand-200: #C4B5FD;
175
- --dark-brand-300: #DDD6FE;
176
- }
177
-
178
178
  html[data-theme="dark"] {
179
179
  /* Dark Theme */
180
180