@fkui/theme-desktop 6.38.0 → 6.39.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/dist/metadata.mjs +56 -0
- package/dist/theme-auto.css +17 -9
- package/dist/theme-auto.js +1 -1
- package/dist/theme-dark.css +8 -4
- package/dist/theme-dark.js +8 -4
- package/dist/theme-light.css +8 -4
- package/dist/theme-light.js +8 -4
- package/package.json +4 -4
- package/src/_version.scss +1 -1
package/dist/metadata.mjs
CHANGED
|
@@ -746,6 +746,62 @@ export default {
|
|
|
746
746
|
}
|
|
747
747
|
}
|
|
748
748
|
},
|
|
749
|
+
{
|
|
750
|
+
"name": "--fkds-color-interactive-surface-background-primary-active",
|
|
751
|
+
"comment": null,
|
|
752
|
+
"values": {
|
|
753
|
+
"light": {
|
|
754
|
+
"value": "#ddddde",
|
|
755
|
+
"palette": "fk-black-15"
|
|
756
|
+
},
|
|
757
|
+
"dark": {
|
|
758
|
+
"value": "#5f6165",
|
|
759
|
+
"palette": "fk-black-70"
|
|
760
|
+
}
|
|
761
|
+
}
|
|
762
|
+
},
|
|
763
|
+
{
|
|
764
|
+
"name": "--fkds-color-interactive-surface-background-primary-default",
|
|
765
|
+
"comment": null,
|
|
766
|
+
"values": {
|
|
767
|
+
"light": {
|
|
768
|
+
"value": "#f4f4f4",
|
|
769
|
+
"palette": "fk-black-5"
|
|
770
|
+
},
|
|
771
|
+
"dark": {
|
|
772
|
+
"value": "#1b1e23",
|
|
773
|
+
"palette": "fk-black-100"
|
|
774
|
+
}
|
|
775
|
+
}
|
|
776
|
+
},
|
|
777
|
+
{
|
|
778
|
+
"name": "--fkds-color-interactive-surface-background-primary-focus",
|
|
779
|
+
"comment": null,
|
|
780
|
+
"values": {
|
|
781
|
+
"light": {
|
|
782
|
+
"value": "#ddddde",
|
|
783
|
+
"palette": "fk-black-15"
|
|
784
|
+
},
|
|
785
|
+
"dark": {
|
|
786
|
+
"value": "#5f6165",
|
|
787
|
+
"palette": "fk-black-70"
|
|
788
|
+
}
|
|
789
|
+
}
|
|
790
|
+
},
|
|
791
|
+
{
|
|
792
|
+
"name": "--fkds-color-interactive-surface-background-primary-hover",
|
|
793
|
+
"comment": null,
|
|
794
|
+
"values": {
|
|
795
|
+
"light": {
|
|
796
|
+
"value": "#ddddde",
|
|
797
|
+
"palette": "fk-black-15"
|
|
798
|
+
},
|
|
799
|
+
"dark": {
|
|
800
|
+
"value": "#5f6165",
|
|
801
|
+
"palette": "fk-black-70"
|
|
802
|
+
}
|
|
803
|
+
}
|
|
804
|
+
},
|
|
749
805
|
{
|
|
750
806
|
"name": "--fkds-color-navigation-background-hover",
|
|
751
807
|
"comment": null,
|
package/dist/theme-auto.css
CHANGED
|
@@ -17,8 +17,8 @@
|
|
|
17
17
|
--f-font-size-default-rem:16px;
|
|
18
18
|
--f-font-size-default-large-up-rem:16px;
|
|
19
19
|
--f-font-weight-normal:400;
|
|
20
|
-
--f-font-weight-medium:
|
|
21
|
-
--f-font-weight-bold:
|
|
20
|
+
--f-font-weight-medium:600;
|
|
21
|
+
--f-font-weight-bold:700;
|
|
22
22
|
--f-line-height-small:1.25;
|
|
23
23
|
--f-line-height-medium:1.4;
|
|
24
24
|
--f-line-height-large:1.5;
|
|
@@ -177,13 +177,17 @@
|
|
|
177
177
|
--fkds-color-select-background-secondary-hover:#dbe9e2;
|
|
178
178
|
--fkds-color-select-background-secondary-active:#dbe9e2;
|
|
179
179
|
--fkds-color-select-background-secondary-focus:#dbe9e2;
|
|
180
|
+
--fkds-color-interactive-surface-background-primary-default:#f4f4f4;
|
|
181
|
+
--fkds-color-interactive-surface-background-primary-hover:#ddddde;
|
|
182
|
+
--fkds-color-interactive-surface-background-primary-active:#ddddde;
|
|
183
|
+
--fkds-color-interactive-surface-background-primary-focus:#ddddde;
|
|
180
184
|
--fkds-color-navigation-border-hover:#88b49f;
|
|
181
185
|
--fkds-color-navigation-border-selected:#35805b;
|
|
182
186
|
--fkds-color-navigation-background-hover:#dbe9e2;
|
|
183
187
|
--fkds-color-navigation-background-selected:#35805b;
|
|
184
188
|
--fkds-color-header-background-primary:#116a3e;
|
|
185
189
|
--fkds-color-header-text-primary:#fff;
|
|
186
|
-
--fkui-theme-default-version:"6.
|
|
190
|
+
--fkui-theme-default-version:"6.39.0";
|
|
187
191
|
}
|
|
188
192
|
}
|
|
189
193
|
@media (prefers-color-scheme:dark){
|
|
@@ -205,8 +209,8 @@
|
|
|
205
209
|
--f-font-size-default-rem:16px;
|
|
206
210
|
--f-font-size-default-large-up-rem:16px;
|
|
207
211
|
--f-font-weight-normal:400;
|
|
208
|
-
--f-font-weight-medium:
|
|
209
|
-
--f-font-weight-bold:
|
|
212
|
+
--f-font-weight-medium:600;
|
|
213
|
+
--f-font-weight-bold:700;
|
|
210
214
|
--f-line-height-small:1.25;
|
|
211
215
|
--f-line-height-medium:1.4;
|
|
212
216
|
--f-line-height-large:1.5;
|
|
@@ -365,30 +369,34 @@
|
|
|
365
369
|
--fkds-color-select-background-secondary-hover:#35805b;
|
|
366
370
|
--fkds-color-select-background-secondary-active:#35805b;
|
|
367
371
|
--fkds-color-select-background-secondary-focus:#35805b;
|
|
372
|
+
--fkds-color-interactive-surface-background-primary-default:#1b1e23;
|
|
373
|
+
--fkds-color-interactive-surface-background-primary-hover:#5f6165;
|
|
374
|
+
--fkds-color-interactive-surface-background-primary-active:#5f6165;
|
|
375
|
+
--fkds-color-interactive-surface-background-primary-focus:#5f6165;
|
|
368
376
|
--fkds-color-navigation-border-hover:#dbe9e2;
|
|
369
377
|
--fkds-color-navigation-border-selected:#35805b;
|
|
370
378
|
--fkds-color-navigation-background-hover:#88b49f;
|
|
371
379
|
--fkds-color-navigation-background-selected:#35805b;
|
|
372
380
|
--fkds-color-header-background-primary:#35805b;
|
|
373
381
|
--fkds-color-header-text-primary:#fff;
|
|
374
|
-
--fkui-theme-default-version:"6.
|
|
382
|
+
--fkui-theme-default-version:"6.39.0";
|
|
375
383
|
}
|
|
376
384
|
}
|
|
377
385
|
:root{
|
|
378
|
-
--fkui-theme-default-version:"6.
|
|
386
|
+
--fkui-theme-default-version:"6.39.0";
|
|
379
387
|
color-scheme:light dark;
|
|
380
388
|
}
|
|
381
389
|
@media (prefers-color-scheme:light){
|
|
382
390
|
:root{
|
|
383
391
|
--f-font-size-default-rem:14px;
|
|
384
392
|
--f-font-size-default-large-up-rem:14px;
|
|
385
|
-
--fkui-theme-desktop-version:"6.
|
|
393
|
+
--fkui-theme-desktop-version:"6.39.0";
|
|
386
394
|
}
|
|
387
395
|
}
|
|
388
396
|
@media (prefers-color-scheme:dark){
|
|
389
397
|
:root{
|
|
390
398
|
--f-font-size-default-rem:14px;
|
|
391
399
|
--f-font-size-default-large-up-rem:14px;
|
|
392
|
-
--fkui-theme-desktop-version:"6.
|
|
400
|
+
--fkui-theme-desktop-version:"6.39.0";
|
|
393
401
|
}
|
|
394
402
|
}
|
package/dist/theme-auto.js
CHANGED
package/dist/theme-dark.css
CHANGED
|
@@ -16,8 +16,8 @@
|
|
|
16
16
|
--f-font-size-default-rem:16px;
|
|
17
17
|
--f-font-size-default-large-up-rem:16px;
|
|
18
18
|
--f-font-weight-normal:400;
|
|
19
|
-
--f-font-weight-medium:
|
|
20
|
-
--f-font-weight-bold:
|
|
19
|
+
--f-font-weight-medium:600;
|
|
20
|
+
--f-font-weight-bold:700;
|
|
21
21
|
--f-line-height-small:1.25;
|
|
22
22
|
--f-line-height-medium:1.4;
|
|
23
23
|
--f-line-height-large:1.5;
|
|
@@ -176,14 +176,18 @@
|
|
|
176
176
|
--fkds-color-select-background-secondary-hover:#35805b;
|
|
177
177
|
--fkds-color-select-background-secondary-active:#35805b;
|
|
178
178
|
--fkds-color-select-background-secondary-focus:#35805b;
|
|
179
|
+
--fkds-color-interactive-surface-background-primary-default:#1b1e23;
|
|
180
|
+
--fkds-color-interactive-surface-background-primary-hover:#5f6165;
|
|
181
|
+
--fkds-color-interactive-surface-background-primary-active:#5f6165;
|
|
182
|
+
--fkds-color-interactive-surface-background-primary-focus:#5f6165;
|
|
179
183
|
--fkds-color-navigation-border-hover:#dbe9e2;
|
|
180
184
|
--fkds-color-navigation-border-selected:#35805b;
|
|
181
185
|
--fkds-color-navigation-background-hover:#88b49f;
|
|
182
186
|
--fkds-color-navigation-background-selected:#35805b;
|
|
183
187
|
--fkds-color-header-background-primary:#35805b;
|
|
184
188
|
--fkds-color-header-text-primary:#fff;
|
|
185
|
-
--fkui-theme-default-version:"6.
|
|
189
|
+
--fkui-theme-default-version:"6.39.0";
|
|
186
190
|
--f-font-size-default-rem:14px;
|
|
187
191
|
--f-font-size-default-large-up-rem:14px;
|
|
188
|
-
--fkui-theme-desktop-version:"6.
|
|
192
|
+
--fkui-theme-desktop-version:"6.39.0";
|
|
189
193
|
}
|
package/dist/theme-dark.js
CHANGED
|
@@ -16,8 +16,8 @@ const value = {
|
|
|
16
16
|
"--f-font-size-default-rem": "14px",
|
|
17
17
|
"--f-font-size-default-large-up-rem": "14px",
|
|
18
18
|
"--f-font-weight-normal": "400",
|
|
19
|
-
"--f-font-weight-medium": "
|
|
20
|
-
"--f-font-weight-bold": "
|
|
19
|
+
"--f-font-weight-medium": "600",
|
|
20
|
+
"--f-font-weight-bold": "700",
|
|
21
21
|
"--f-line-height-small": "1.25",
|
|
22
22
|
"--f-line-height-medium": "1.4",
|
|
23
23
|
"--f-line-height-large": "1.5",
|
|
@@ -176,13 +176,17 @@ const value = {
|
|
|
176
176
|
"--fkds-color-select-background-secondary-hover": "#35805b",
|
|
177
177
|
"--fkds-color-select-background-secondary-active": "#35805b",
|
|
178
178
|
"--fkds-color-select-background-secondary-focus": "#35805b",
|
|
179
|
+
"--fkds-color-interactive-surface-background-primary-default": "#1b1e23",
|
|
180
|
+
"--fkds-color-interactive-surface-background-primary-hover": "#5f6165",
|
|
181
|
+
"--fkds-color-interactive-surface-background-primary-active": "#5f6165",
|
|
182
|
+
"--fkds-color-interactive-surface-background-primary-focus": "#5f6165",
|
|
179
183
|
"--fkds-color-navigation-border-hover": "#dbe9e2",
|
|
180
184
|
"--fkds-color-navigation-border-selected": "#35805b",
|
|
181
185
|
"--fkds-color-navigation-background-hover": "#88b49f",
|
|
182
186
|
"--fkds-color-navigation-background-selected": "#35805b",
|
|
183
187
|
"--fkds-color-header-background-primary": "#35805b",
|
|
184
188
|
"--fkds-color-header-text-primary": "#fff",
|
|
185
|
-
"--fkui-theme-default-version": "\"6.
|
|
186
|
-
"--fkui-theme-desktop-version": "\"6.
|
|
189
|
+
"--fkui-theme-default-version": "\"6.39.0\"",
|
|
190
|
+
"--fkui-theme-desktop-version": "\"6.39.0\""
|
|
187
191
|
};
|
|
188
192
|
module.exports = value;
|
package/dist/theme-light.css
CHANGED
|
@@ -16,8 +16,8 @@
|
|
|
16
16
|
--f-font-size-default-rem:16px;
|
|
17
17
|
--f-font-size-default-large-up-rem:16px;
|
|
18
18
|
--f-font-weight-normal:400;
|
|
19
|
-
--f-font-weight-medium:
|
|
20
|
-
--f-font-weight-bold:
|
|
19
|
+
--f-font-weight-medium:600;
|
|
20
|
+
--f-font-weight-bold:700;
|
|
21
21
|
--f-line-height-small:1.25;
|
|
22
22
|
--f-line-height-medium:1.4;
|
|
23
23
|
--f-line-height-large:1.5;
|
|
@@ -176,14 +176,18 @@
|
|
|
176
176
|
--fkds-color-select-background-secondary-hover:#dbe9e2;
|
|
177
177
|
--fkds-color-select-background-secondary-active:#dbe9e2;
|
|
178
178
|
--fkds-color-select-background-secondary-focus:#dbe9e2;
|
|
179
|
+
--fkds-color-interactive-surface-background-primary-default:#f4f4f4;
|
|
180
|
+
--fkds-color-interactive-surface-background-primary-hover:#ddddde;
|
|
181
|
+
--fkds-color-interactive-surface-background-primary-active:#ddddde;
|
|
182
|
+
--fkds-color-interactive-surface-background-primary-focus:#ddddde;
|
|
179
183
|
--fkds-color-navigation-border-hover:#88b49f;
|
|
180
184
|
--fkds-color-navigation-border-selected:#35805b;
|
|
181
185
|
--fkds-color-navigation-background-hover:#dbe9e2;
|
|
182
186
|
--fkds-color-navigation-background-selected:#35805b;
|
|
183
187
|
--fkds-color-header-background-primary:#116a3e;
|
|
184
188
|
--fkds-color-header-text-primary:#fff;
|
|
185
|
-
--fkui-theme-default-version:"6.
|
|
189
|
+
--fkui-theme-default-version:"6.39.0";
|
|
186
190
|
--f-font-size-default-rem:14px;
|
|
187
191
|
--f-font-size-default-large-up-rem:14px;
|
|
188
|
-
--fkui-theme-desktop-version:"6.
|
|
192
|
+
--fkui-theme-desktop-version:"6.39.0";
|
|
189
193
|
}
|
package/dist/theme-light.js
CHANGED
|
@@ -16,8 +16,8 @@ const value = {
|
|
|
16
16
|
"--f-font-size-default-rem": "14px",
|
|
17
17
|
"--f-font-size-default-large-up-rem": "14px",
|
|
18
18
|
"--f-font-weight-normal": "400",
|
|
19
|
-
"--f-font-weight-medium": "
|
|
20
|
-
"--f-font-weight-bold": "
|
|
19
|
+
"--f-font-weight-medium": "600",
|
|
20
|
+
"--f-font-weight-bold": "700",
|
|
21
21
|
"--f-line-height-small": "1.25",
|
|
22
22
|
"--f-line-height-medium": "1.4",
|
|
23
23
|
"--f-line-height-large": "1.5",
|
|
@@ -176,13 +176,17 @@ const value = {
|
|
|
176
176
|
"--fkds-color-select-background-secondary-hover": "#dbe9e2",
|
|
177
177
|
"--fkds-color-select-background-secondary-active": "#dbe9e2",
|
|
178
178
|
"--fkds-color-select-background-secondary-focus": "#dbe9e2",
|
|
179
|
+
"--fkds-color-interactive-surface-background-primary-default": "#f4f4f4",
|
|
180
|
+
"--fkds-color-interactive-surface-background-primary-hover": "#ddddde",
|
|
181
|
+
"--fkds-color-interactive-surface-background-primary-active": "#ddddde",
|
|
182
|
+
"--fkds-color-interactive-surface-background-primary-focus": "#ddddde",
|
|
179
183
|
"--fkds-color-navigation-border-hover": "#88b49f",
|
|
180
184
|
"--fkds-color-navigation-border-selected": "#35805b",
|
|
181
185
|
"--fkds-color-navigation-background-hover": "#dbe9e2",
|
|
182
186
|
"--fkds-color-navigation-background-selected": "#35805b",
|
|
183
187
|
"--fkds-color-header-background-primary": "#116a3e",
|
|
184
188
|
"--fkds-color-header-text-primary": "#fff",
|
|
185
|
-
"--fkui-theme-default-version": "\"6.
|
|
186
|
-
"--fkui-theme-desktop-version": "\"6.
|
|
189
|
+
"--fkui-theme-default-version": "\"6.39.0\"",
|
|
190
|
+
"--fkui-theme-desktop-version": "\"6.39.0\""
|
|
187
191
|
};
|
|
188
192
|
module.exports = value;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fkui/theme-desktop",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.39.0",
|
|
4
4
|
"description": "FK Themes",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"fkui",
|
|
@@ -32,15 +32,15 @@
|
|
|
32
32
|
"prepack": "npm run build"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@fkui/theme-default": "6.
|
|
35
|
+
"@fkui/theme-default": "6.39.0"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"@fkui/theme-builder": "6.
|
|
38
|
+
"@fkui/theme-builder": "6.39.0"
|
|
39
39
|
},
|
|
40
40
|
"engines": {
|
|
41
41
|
"node": ">= 20",
|
|
42
42
|
"npm": ">= 7"
|
|
43
43
|
},
|
|
44
44
|
"sass": "./src/_default.scss",
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "dcb4ae0482dae1d80806b45900c8b80771de7372"
|
|
46
46
|
}
|
package/src/_version.scss
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// This is a generated file. See @fkui/theme-builder
|
|
2
|
-
$version: "6.
|
|
2
|
+
$version: "6.39.0";
|