@focus4/styling 11.11.0 → 11.12.0-beta.0
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/lib/focus4.styling.css +1 -10
- package/package.json +5 -5
package/lib/focus4.styling.css
CHANGED
|
@@ -277,17 +277,12 @@
|
|
|
277
277
|
}
|
|
278
278
|
|
|
279
279
|
:root {
|
|
280
|
-
--color-divider: var(--palette-grey-200);
|
|
281
|
-
--color-background: var(--color-white);
|
|
282
|
-
--color-text: var(--palette-grey-900);
|
|
283
|
-
--color-text-secondary: var(--palette-grey-600);
|
|
284
|
-
|
|
285
280
|
--color-primary: var(--palette-indigo-500);
|
|
286
281
|
--color-primary-light: var(--palette-indigo-100);
|
|
287
|
-
--color-primary-dark: var(--palette-indigo-700);
|
|
288
282
|
--color-primary-contrast: var(--color-white);
|
|
289
283
|
--color-accent: var(--palette-pink-a200);
|
|
290
284
|
|
|
285
|
+
--color-divider: var(--palette-grey-300);
|
|
291
286
|
--unit: 10px;
|
|
292
287
|
|
|
293
288
|
--preferred-font: "Roboto", "Helvetica", "Arial", sans-serif;
|
|
@@ -300,9 +295,6 @@
|
|
|
300
295
|
--shadow-2p: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
|
|
301
296
|
--shadow-4p: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
|
|
302
297
|
|
|
303
|
-
--zdepth-shadow-1: 0 1px 6px rgba(0, 0, 0, 0.12), 0 1px 4px rgba(0, 0, 0, 0.24);
|
|
304
|
-
--zdepth-shadow-5: 0 19px 60px rgba(0, 0, 0, 0.3), 0 15px 20px rgba(0, 0, 0, 0.22);
|
|
305
|
-
|
|
306
298
|
--animation-duration: 0.35s;
|
|
307
299
|
--animation-duration-short: 0.2s;
|
|
308
300
|
--animation-delay: calc(var(--animation-duration) / 5);
|
|
@@ -325,7 +317,6 @@
|
|
|
325
317
|
--color-black: 238, 238, 238;
|
|
326
318
|
--color-primary: var(--palette-indigo-300);
|
|
327
319
|
--color-primary-light: var(--palette-indigo-800);
|
|
328
|
-
--color-primary-dark: var(--palette-indigo-100);
|
|
329
320
|
|
|
330
321
|
--palette-grey-50: 22, 22, 22;
|
|
331
322
|
--palette-grey-100: 33, 33, 33;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@focus4/styling",
|
|
3
|
-
"version": "11.
|
|
3
|
+
"version": "11.12.0-beta.0",
|
|
4
4
|
"description": "Focus v4, styling module",
|
|
5
5
|
"main": "lib/focus4.styling.js",
|
|
6
6
|
"repository": {
|
|
@@ -18,18 +18,18 @@
|
|
|
18
18
|
"test-ci": "jest --ci --reporters=default --reporters=jest-junit"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@focus4/core": "11.
|
|
22
|
-
"@types/react-dom": "18.2.
|
|
21
|
+
"@focus4/core": "11.12.0-beta.0",
|
|
22
|
+
"@types/react-dom": "18.2.15",
|
|
23
23
|
"classnames": "2.3.2",
|
|
24
24
|
"mobx-react": "7.6.0",
|
|
25
25
|
"react": "18.2.0",
|
|
26
26
|
"react-dom": "18.2.0"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
|
-
"@types/jest": "29.5.
|
|
29
|
+
"@types/jest": "29.5.8",
|
|
30
30
|
"jest": "29.7.0",
|
|
31
31
|
"jest-junit": "16.0.0",
|
|
32
32
|
"ts-jest": "29.1.1"
|
|
33
33
|
},
|
|
34
|
-
"gitHead": "
|
|
34
|
+
"gitHead": "86d7eea5620d7d88e127e64b438aeaf16156eac8"
|
|
35
35
|
}
|