@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
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
var __webpack_module_cache__ = {};
|
|
2
|
+
function __webpack_require__(moduleId) {
|
|
3
|
+
var cachedModule = __webpack_module_cache__[moduleId];
|
|
4
|
+
if (void 0 !== cachedModule) return cachedModule.exports;
|
|
5
|
+
var module = __webpack_module_cache__[moduleId] = {
|
|
6
|
+
exports: {}
|
|
7
|
+
};
|
|
8
|
+
__webpack_modules__[moduleId](module, module.exports, __webpack_require__);
|
|
9
|
+
return module.exports;
|
|
10
|
+
}
|
|
11
|
+
(()=>{
|
|
12
|
+
__webpack_require__.add = function(modules) {
|
|
13
|
+
Object.assign(__webpack_require__.m, modules);
|
|
14
|
+
};
|
|
15
|
+
})();
|
|
16
|
+
(()=>{
|
|
17
|
+
__webpack_require__.d = (exports, definition)=>{
|
|
18
|
+
for(var key in definition)if (__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) Object.defineProperty(exports, key, {
|
|
19
|
+
enumerable: true,
|
|
20
|
+
get: definition[key]
|
|
21
|
+
});
|
|
22
|
+
};
|
|
23
|
+
})();
|
|
24
|
+
(()=>{
|
|
25
|
+
__webpack_require__.o = (obj, prop)=>Object.prototype.hasOwnProperty.call(obj, prop);
|
|
26
|
+
})();
|
|
27
|
+
(()=>{
|
|
28
|
+
__webpack_require__.r = (exports)=>{
|
|
29
|
+
if ("u" > typeof Symbol && Symbol.toStringTag) Object.defineProperty(exports, Symbol.toStringTag, {
|
|
30
|
+
value: 'Module'
|
|
31
|
+
});
|
|
32
|
+
Object.defineProperty(exports, '__esModule', {
|
|
33
|
+
value: true
|
|
34
|
+
});
|
|
35
|
+
};
|
|
36
|
+
})();
|
|
37
|
+
export { __webpack_require__ };
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
@import "./variables.css";
|
|
2
2
|
|
|
3
|
-
body.light
|
|
3
|
+
body.light,
|
|
4
|
+
:host(.light) {
|
|
4
5
|
--color-background: #ffffff;
|
|
5
6
|
--color-background-secondary: #f4f5f7;
|
|
6
7
|
--color-background-inverse: #182027;
|
|
@@ -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: #ffffff;
|
|
130
132
|
--color-background-secondary: #f4f5f7;
|
|
131
133
|
--color-background-inverse: #182027;
|
|
@@ -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: #182027;
|
|
255
258
|
--color-background-secondary: #273139;
|
|
256
259
|
--color-background-inverse: #f8f9fa;
|
|
@@ -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: #182027;
|
|
380
384
|
--color-background-secondary: #273139;
|
|
381
385
|
--color-background-inverse: #f8f9fa;
|