triafly-ui-kit 1.0.28 → 1.0.30
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 +4 -3
- package/src/styles/variables.scss +17 -15
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "triafly-ui-kit",
|
3
|
-
"version": "1.0.
|
3
|
+
"version": "1.0.30",
|
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
|
},
|
@@ -62,7 +62,24 @@
|
|
62
62
|
|
63
63
|
/* Shadows & Effects */
|
64
64
|
--color-fader: #12121220;
|
65
|
+
}
|
65
66
|
|
67
|
+
/* Primitives - Test Client */
|
68
|
+
html[data-client="test"] {
|
69
|
+
--light-brand-20: #F3E8FF;
|
70
|
+
--light-brand-50: #D8B4FE;
|
71
|
+
--light-brand-100: #A855F7;
|
72
|
+
--light-brand-200: #7E22CE;
|
73
|
+
--light-brand-300: #4C1D95;
|
74
|
+
|
75
|
+
--dark-brand-20: #5B21B6;
|
76
|
+
--dark-brand-50: #7C3AED;
|
77
|
+
--dark-brand-100: #A78BFA;
|
78
|
+
--dark-brand-200: #C4B5FD;
|
79
|
+
--dark-brand-300: #DDD6FE;
|
80
|
+
}
|
81
|
+
|
82
|
+
html[data-theme="light"] {
|
66
83
|
/* Light Theme */
|
67
84
|
|
68
85
|
--default-font-color: var(--base-dark);
|
@@ -160,21 +177,6 @@
|
|
160
177
|
--color-button-brandlight-filled-hover: var(--light-brand-50);
|
161
178
|
}
|
162
179
|
|
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
180
|
html[data-theme="dark"] {
|
179
181
|
/* Dark Theme */
|
180
182
|
|