@uipath/apollo-wind 0.10.0-pr219.4de07ef → 0.10.0-pr219.61d64eb
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.
|
@@ -42,7 +42,7 @@ var __webpack_modules__ = {
|
|
|
42
42
|
"./combobox": function(module) {
|
|
43
43
|
module.exports = require("./combobox.cjs");
|
|
44
44
|
},
|
|
45
|
-
"
|
|
45
|
+
"./command": function(module) {
|
|
46
46
|
module.exports = require("./command.cjs");
|
|
47
47
|
},
|
|
48
48
|
"./context-menu": function(module) {
|
|
@@ -57,7 +57,7 @@ var __webpack_modules__ = {
|
|
|
57
57
|
"./datetime-picker": function(module) {
|
|
58
58
|
module.exports = require("./datetime-picker.cjs");
|
|
59
59
|
},
|
|
60
|
-
"
|
|
60
|
+
"./dialog": function(module) {
|
|
61
61
|
module.exports = require("./dialog.cjs");
|
|
62
62
|
},
|
|
63
63
|
"@/components/ui/dropdown-menu": function(module) {
|
|
@@ -78,7 +78,7 @@ var __webpack_modules__ = {
|
|
|
78
78
|
"@/components/ui/input": function(module) {
|
|
79
79
|
module.exports = require("./input.cjs");
|
|
80
80
|
},
|
|
81
|
-
"
|
|
81
|
+
"@/components/ui/label": function(module) {
|
|
82
82
|
module.exports = require("./label.cjs");
|
|
83
83
|
},
|
|
84
84
|
"./layout": function(module) {
|
|
@@ -332,7 +332,7 @@ var __webpack_exports__ = {};
|
|
|
332
332
|
return _combobox__WEBPACK_IMPORTED_MODULE_13__[key];
|
|
333
333
|
}).bind(0, __WEBPACK_IMPORT_KEY__);
|
|
334
334
|
__webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
|
|
335
|
-
var _command__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__("
|
|
335
|
+
var _command__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__("./command");
|
|
336
336
|
var __WEBPACK_REEXPORT_OBJECT__ = {};
|
|
337
337
|
for(var __WEBPACK_IMPORT_KEY__ in _command__WEBPACK_IMPORTED_MODULE_14__)if ([
|
|
338
338
|
"TreeView",
|
|
@@ -377,7 +377,7 @@ var __webpack_exports__ = {};
|
|
|
377
377
|
return _datetime_picker__WEBPACK_IMPORTED_MODULE_18__[key];
|
|
378
378
|
}).bind(0, __WEBPACK_IMPORT_KEY__);
|
|
379
379
|
__webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
|
|
380
|
-
var _dialog__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__("
|
|
380
|
+
var _dialog__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__("./dialog");
|
|
381
381
|
var __WEBPACK_REEXPORT_OBJECT__ = {};
|
|
382
382
|
for(var __WEBPACK_IMPORT_KEY__ in _dialog__WEBPACK_IMPORTED_MODULE_19__)if ([
|
|
383
383
|
"TreeView",
|
|
@@ -440,7 +440,7 @@ var __webpack_exports__ = {};
|
|
|
440
440
|
return _input__WEBPACK_IMPORTED_MODULE_25__[key];
|
|
441
441
|
}).bind(0, __WEBPACK_IMPORT_KEY__);
|
|
442
442
|
__webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
|
|
443
|
-
var _label__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__("
|
|
443
|
+
var _label__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__("@/components/ui/label");
|
|
444
444
|
var __WEBPACK_REEXPORT_OBJECT__ = {};
|
|
445
445
|
for(var __WEBPACK_IMPORT_KEY__ in _label__WEBPACK_IMPORTED_MODULE_26__)if ([
|
|
446
446
|
"TreeView",
|
|
@@ -24,8 +24,8 @@ var __webpack_require__ = {};
|
|
|
24
24
|
var __webpack_exports__ = {};
|
|
25
25
|
__webpack_require__.r(__webpack_exports__);
|
|
26
26
|
__webpack_require__.d(__webpack_exports__, {
|
|
27
|
-
accent: ()=>accent,
|
|
28
27
|
border: ()=>border,
|
|
28
|
+
brand: ()=>brand,
|
|
29
29
|
foreground: ()=>foreground,
|
|
30
30
|
gradient: ()=>gradient,
|
|
31
31
|
ring: ()=>ring,
|
|
@@ -39,9 +39,9 @@ const surface = {
|
|
|
39
39
|
surfaceMuted: 'bg-surface-muted',
|
|
40
40
|
surfaceInverse: 'bg-surface-inverse'
|
|
41
41
|
};
|
|
42
|
-
const
|
|
43
|
-
|
|
44
|
-
|
|
42
|
+
const brand = {
|
|
43
|
+
brand: 'bg-brand',
|
|
44
|
+
brandSubtle: 'bg-brand-subtle'
|
|
45
45
|
};
|
|
46
46
|
const foreground = {
|
|
47
47
|
foreground: 'text-foreground',
|
|
@@ -73,15 +73,15 @@ const gradient = {
|
|
|
73
73
|
gradient5: 'bg-gradient-5',
|
|
74
74
|
gradient6: 'bg-gradient-6'
|
|
75
75
|
};
|
|
76
|
-
exports.accent = __webpack_exports__.accent;
|
|
77
76
|
exports.border = __webpack_exports__.border;
|
|
77
|
+
exports.brand = __webpack_exports__.brand;
|
|
78
78
|
exports.foreground = __webpack_exports__.foreground;
|
|
79
79
|
exports.gradient = __webpack_exports__.gradient;
|
|
80
80
|
exports.ring = __webpack_exports__.ring;
|
|
81
81
|
exports.surface = __webpack_exports__.surface;
|
|
82
82
|
for(var __webpack_i__ in __webpack_exports__)if (-1 === [
|
|
83
|
-
"accent",
|
|
84
83
|
"border",
|
|
84
|
+
"brand",
|
|
85
85
|
"foreground",
|
|
86
86
|
"gradient",
|
|
87
87
|
"ring",
|
|
@@ -32,16 +32,16 @@ export declare const surface: {
|
|
|
32
32
|
readonly surfaceInverse: "bg-surface-inverse";
|
|
33
33
|
};
|
|
34
34
|
/**
|
|
35
|
-
*
|
|
35
|
+
* Brand color tokens — semantic, theme-aware.
|
|
36
36
|
*
|
|
37
37
|
* | Token | Semantic class | Dark value (cyan) | Light value (cyan) | Usage |
|
|
38
38
|
* |--------------|-----------------------------|-------------------|--------------------|------------------------------------------|
|
|
39
|
-
* |
|
|
40
|
-
* |
|
|
39
|
+
* | brand | bg-brand | 600 #0891b2 | 600 #0891b2 | Logo, submit button, run node |
|
|
40
|
+
* | brandSubtle | bg-brand-subtle | 950 #083344 | 50 #ecfeff | Status badge, active nav, node/flow icon |
|
|
41
41
|
*/
|
|
42
|
-
export declare const
|
|
43
|
-
readonly
|
|
44
|
-
readonly
|
|
42
|
+
export declare const brand: {
|
|
43
|
+
readonly brand: "bg-brand";
|
|
44
|
+
readonly brandSubtle: "bg-brand-subtle";
|
|
45
45
|
};
|
|
46
46
|
/**
|
|
47
47
|
* Foreground color tokens — semantic, theme-aware.
|
|
@@ -53,9 +53,9 @@ export declare const accent: {
|
|
|
53
53
|
* | foregroundHover | text-foreground-hover | zinc-300 #d4d4d8 | zinc-600 #52525b | Hover states |
|
|
54
54
|
* | foregroundMuted | text-foreground-muted | zinc-400 #a1a1aa | zinc-500 #71717a | Nav, secondary UI, code |
|
|
55
55
|
* | foregroundSubtle | text-foreground-subtle | zinc-500 #71717a | zinc-400 #a1a1aa | Muted, labels |
|
|
56
|
-
* | foregroundInverse | text-foreground-inverse | zinc-950 #09090b |
|
|
57
|
-
* | foregroundOnAccent | text-foreground-on-accent |
|
|
58
|
-
* | foregroundAccent | text-foreground-accent | cyan-
|
|
56
|
+
* | foregroundInverse | text-foreground-inverse | zinc-950 #09090b | zinc-50 #fafafa | Icons on inverse bg |
|
|
57
|
+
* | foregroundOnAccent | text-foreground-on-accent | zinc-50 #fafafa | zinc-50 #fafafa | On primary buttons |
|
|
58
|
+
* | foregroundAccent | text-foreground-accent | cyan-600 #0891b2 | cyan-600 #0891b2 | Flow/node icons |
|
|
59
59
|
* | foregroundAccentMuted | text-foreground-accent-muted | cyan-400 #22d3ee | cyan-600 #0891b2 | Status text |
|
|
60
60
|
*/
|
|
61
61
|
export declare const foreground: {
|
|
@@ -6,9 +6,9 @@ const surface = {
|
|
|
6
6
|
surfaceMuted: 'bg-surface-muted',
|
|
7
7
|
surfaceInverse: 'bg-surface-inverse'
|
|
8
8
|
};
|
|
9
|
-
const
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
const brand = {
|
|
10
|
+
brand: 'bg-brand',
|
|
11
|
+
brandSubtle: 'bg-brand-subtle'
|
|
12
12
|
};
|
|
13
13
|
const foreground = {
|
|
14
14
|
foreground: 'text-foreground',
|
|
@@ -40,4 +40,4 @@ const gradient = {
|
|
|
40
40
|
gradient5: 'bg-gradient-5',
|
|
41
41
|
gradient6: 'bg-gradient-6'
|
|
42
42
|
};
|
|
43
|
-
export {
|
|
43
|
+
export { border, brand, foreground, gradient, ring, surface };
|
package/package.json
CHANGED