@uipath/apollo-core 5.7.0 → 5.7.1-pr320.f701a80
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/14.js +664 -0
- package/dist/6.js +2640 -0
- package/dist/icons/index.cjs +3 -3
- package/dist/icons/index.js +1 -1
- package/dist/index.cjs +5377 -4334
- package/dist/index.js +5 -3322
- package/dist/rslib-runtime.js +37 -0
- package/dist/tokens/css/theme-variables.css +8 -4
- package/dist/tokens/index.cjs +4344 -4319
- package/dist/tokens/index.js +2 -3322
- package/dist/tokens/jss/palette.cjs +2229 -1651
- package/dist/tokens/jss/palette.js +1 -1641
- package/dist/tokens/scss/theme-variables.scss +8 -4
- package/package.json +6 -6
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
@import "./variables";
|
|
2
2
|
|
|
3
|
-
body.light
|
|
3
|
+
body.light,
|
|
4
|
+
:host(.light) {
|
|
4
5
|
--color-background: #{$color-background-light};
|
|
5
6
|
--color-background-secondary: #{$color-background-secondary-light};
|
|
6
7
|
--color-background-inverse: #{$color-background-inverse-light};
|
|
@@ -125,7 +126,8 @@ body.light {
|
|
|
125
126
|
color-scheme: light;
|
|
126
127
|
}
|
|
127
128
|
|
|
128
|
-
body.light-hc
|
|
129
|
+
body.light-hc,
|
|
130
|
+
:host(.light-hc) {
|
|
129
131
|
--color-background: #{$color-background-light-hc};
|
|
130
132
|
--color-background-secondary: #{$color-background-secondary-light-hc};
|
|
131
133
|
--color-background-inverse: #{$color-background-inverse-light-hc};
|
|
@@ -250,7 +252,8 @@ body.light-hc {
|
|
|
250
252
|
color-scheme: light;
|
|
251
253
|
}
|
|
252
254
|
|
|
253
|
-
body.dark
|
|
255
|
+
body.dark,
|
|
256
|
+
:host(.dark) {
|
|
254
257
|
--color-background: #{$color-background-dark};
|
|
255
258
|
--color-background-secondary: #{$color-background-secondary-dark};
|
|
256
259
|
--color-background-inverse: #{$color-background-inverse-dark};
|
|
@@ -375,7 +378,8 @@ body.dark {
|
|
|
375
378
|
color-scheme: dark;
|
|
376
379
|
}
|
|
377
380
|
|
|
378
|
-
body.dark-hc
|
|
381
|
+
body.dark-hc,
|
|
382
|
+
:host(.dark-hc) {
|
|
379
383
|
--color-background: #{$color-background-dark-hc};
|
|
380
384
|
--color-background-secondary: #{$color-background-secondary-dark-hc};
|
|
381
385
|
--color-background-inverse: #{$color-background-inverse-dark-hc};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uipath/apollo-core",
|
|
3
|
-
"version": "5.7.
|
|
3
|
+
"version": "5.7.1-pr320.f701a80",
|
|
4
4
|
"description": "Apollo Design System - Core design tokens, icons, and fonts",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -50,16 +50,16 @@
|
|
|
50
50
|
"registry": "https://registry.npmjs.org"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@rslib/core": "^0.
|
|
53
|
+
"@rslib/core": "^0.19.6",
|
|
54
54
|
"@vitest/coverage-v8": "^4.0.14",
|
|
55
|
+
"cssnano": "^7.1.2",
|
|
55
56
|
"lodash": "^4.17.23",
|
|
57
|
+
"postcss": "^8.5.6",
|
|
58
|
+
"postcss-cli": "^10.1.0",
|
|
56
59
|
"style-dictionary": "2.8.3",
|
|
57
60
|
"svg-to-ts": "^12.0.0",
|
|
58
61
|
"typescript": "^5.9.3",
|
|
59
|
-
"vitest": "^4.0.14"
|
|
60
|
-
"cssnano": "^6.0.1",
|
|
61
|
-
"postcss": "^8.5.6",
|
|
62
|
-
"postcss-cli": "^10.1.0"
|
|
62
|
+
"vitest": "^4.0.14"
|
|
63
63
|
},
|
|
64
64
|
"scripts": {
|
|
65
65
|
"build": "pnpm run build:tokens && pnpm run build:fonts && pnpm run process:icons && pnpm run build:icons && rslib build",
|