@uipath/apollo-wind 0.9.1 → 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.
- package/dist/components/custom/canvas.cjs +44 -0
- package/dist/components/custom/canvas.d.ts +14 -0
- package/dist/components/custom/canvas.js +10 -0
- package/dist/components/custom/chat-composer.cjs +105 -0
- package/dist/components/custom/chat-composer.d.ts +15 -0
- package/dist/components/custom/chat-composer.js +71 -0
- package/dist/components/custom/chat-first-experience.cjs +87 -0
- package/dist/components/custom/chat-first-experience.d.ts +24 -0
- package/dist/components/custom/chat-first-experience.js +53 -0
- package/dist/components/custom/chat-prompt-suggestions.cjs +48 -0
- package/dist/components/custom/chat-prompt-suggestions.d.ts +18 -0
- package/dist/components/custom/chat-prompt-suggestions.js +14 -0
- package/dist/components/custom/chat-steps-view.cjs +307 -0
- package/dist/components/custom/chat-steps-view.d.ts +38 -0
- package/dist/components/custom/chat-steps-view.js +273 -0
- package/dist/components/custom/flow-node.cjs +76 -0
- package/dist/components/custom/flow-node.d.ts +20 -0
- package/dist/components/custom/flow-node.js +42 -0
- package/dist/components/custom/flow-properties-bar.cjs +101 -0
- package/dist/components/custom/flow-properties-bar.d.ts +21 -0
- package/dist/components/custom/flow-properties-bar.js +67 -0
- package/dist/components/custom/flow-properties-expanded.cjs +324 -0
- package/dist/components/custom/flow-properties-expanded.d.ts +19 -0
- package/dist/components/custom/flow-properties-expanded.js +290 -0
- package/dist/components/custom/flow-properties-simple.cjs +357 -0
- package/dist/components/custom/flow-properties-simple.d.ts +62 -0
- package/dist/components/custom/flow-properties-simple.js +323 -0
- package/dist/components/custom/flow-properties.cjs +56 -0
- package/dist/components/custom/flow-properties.d.ts +28 -0
- package/dist/components/custom/flow-properties.js +22 -0
- package/dist/components/custom/global-header.cjs +415 -0
- package/dist/components/custom/global-header.d.ts +38 -0
- package/dist/components/custom/global-header.js +381 -0
- package/dist/components/custom/grid-maestro.cjs +62 -0
- package/dist/components/custom/grid-maestro.d.ts +19 -0
- package/dist/components/custom/grid-maestro.js +22 -0
- package/dist/components/custom/panel-delegate.cjs +280 -0
- package/dist/components/custom/panel-delegate.d.ts +34 -0
- package/dist/components/custom/panel-delegate.js +246 -0
- package/dist/components/custom/panel-flow.cjs +260 -0
- package/dist/components/custom/panel-flow.d.ts +38 -0
- package/dist/components/custom/panel-flow.js +223 -0
- package/dist/components/custom/panel-maestro.cjs +73 -0
- package/dist/components/custom/panel-maestro.d.ts +30 -0
- package/dist/components/custom/panel-maestro.js +39 -0
- package/dist/components/custom/toolbar-canvas.cjs +121 -0
- package/dist/components/custom/toolbar-canvas.d.ts +15 -0
- package/dist/components/custom/toolbar-canvas.js +87 -0
- package/dist/components/custom/toolbar-view.cjs +119 -0
- package/dist/components/custom/toolbar-view.d.ts +14 -0
- package/dist/components/custom/toolbar-view.js +85 -0
- package/dist/components/custom/viewport-guard.cjs +92 -0
- package/dist/components/custom/viewport-guard.d.ts +23 -0
- package/dist/components/custom/viewport-guard.js +55 -0
- package/dist/components/ui/button.cjs +3 -3
- package/dist/components/ui/button.js +3 -3
- package/dist/components/ui/chart.cjs +218 -0
- package/dist/components/ui/chart.d.ts +40 -0
- package/dist/components/ui/chart.js +169 -0
- package/dist/components/ui/data-table.cjs +14 -2
- package/dist/components/ui/data-table.d.ts +4 -1
- package/dist/components/ui/data-table.js +15 -3
- package/dist/components/ui/empty-state.cjs +17 -6
- package/dist/components/ui/empty-state.d.ts +7 -0
- package/dist/components/ui/empty-state.js +17 -6
- package/dist/components/ui/file-upload.cjs +82 -42
- package/dist/components/ui/file-upload.d.ts +3 -1
- package/dist/components/ui/file-upload.js +82 -42
- package/dist/components/ui/index.cjs +289 -149
- package/dist/components/ui/index.d.ts +2 -3
- package/dist/components/ui/index.js +2 -3
- package/dist/components/ui/tree-view.cjs +1101 -0
- package/dist/components/ui/tree-view.d.ts +95 -0
- package/dist/components/ui/tree-view.js +1067 -0
- package/dist/foundation/Future/colors.cjs +92 -0
- package/dist/foundation/Future/colors.d.ts +132 -0
- package/dist/foundation/Future/colors.js +43 -0
- package/dist/foundation/Future/radius.cjs +46 -0
- package/dist/foundation/Future/radius.d.ts +33 -0
- package/dist/foundation/Future/radius.js +12 -0
- package/dist/foundation/Future/responsive.cjs +49 -0
- package/dist/foundation/Future/responsive.d.ts +40 -0
- package/dist/foundation/Future/responsive.js +12 -0
- package/dist/foundation/Future/shadows.cjs +48 -0
- package/dist/foundation/Future/shadows.d.ts +29 -0
- package/dist/foundation/Future/shadows.js +11 -0
- package/dist/foundation/Future/spacing.cjs +71 -0
- package/dist/foundation/Future/spacing.d.ts +80 -0
- package/dist/foundation/Future/spacing.js +31 -0
- package/dist/foundation/Future/strokes.cjs +59 -0
- package/dist/foundation/Future/strokes.d.ts +49 -0
- package/dist/foundation/Future/strokes.js +19 -0
- package/dist/foundation/Future/types.cjs +18 -0
- package/dist/foundation/Future/types.d.ts +18 -0
- package/dist/foundation/Future/types.js +0 -0
- package/dist/foundation/Future/typography.cjs +79 -0
- package/dist/foundation/Future/typography.d.ts +86 -0
- package/dist/foundation/Future/typography.js +33 -0
- package/dist/index.cjs +125 -219
- package/dist/index.d.ts +2 -3
- package/dist/index.js +2 -4
- package/dist/src/foundation/Future/themes.css +371 -0
- package/dist/styles.css +1704 -582
- package/dist/tailwind.css +4 -0
- package/dist/templates/Admin/settings-admin.d.ts +5 -0
- package/dist/templates/Admin/template-admin.d.ts +105 -0
- package/dist/templates/Delegate/template-delegate.d.ts +26 -0
- package/dist/templates/EmptyErrors/error-components.d.ts +3 -0
- package/dist/templates/Experiments/ideas-AnimatedGradientText.d.ts +23 -0
- package/dist/templates/Flow/template-flow.d.ts +52 -0
- package/dist/templates/Maestro/template-maestro.d.ts +52 -0
- package/dist/templates/{vscode-example.d.ts → VisualStudio/shell.d.ts} +1 -1
- package/package.json +10 -1
- package/dist/components/ui/menubar.cjs +0 -210
- package/dist/components/ui/menubar.d.ts +0 -28
- package/dist/components/ui/menubar.js +0 -131
- package/dist/components/ui/navigation-menu.cjs +0 -122
- package/dist/components/ui/navigation-menu.d.ts +0 -12
- package/dist/components/ui/navigation-menu.js +0 -64
- package/dist/examples/admin-layout-example.cjs +0 -490
- package/dist/examples/admin-layout-example.d.ts +0 -92
- package/dist/examples/admin-layout-example.js +0 -411
- package/dist/examples/app-shell-example.cjs +0 -452
- package/dist/examples/app-shell-example.d.ts +0 -52
- package/dist/examples/app-shell-example.js +0 -418
- package/dist/examples/dashboard-example.cjs +0 -590
- package/dist/examples/dashboard-example.d.ts +0 -11
- package/dist/examples/dashboard-example.js +0 -556
- package/dist/examples/data-management-example.cjs +0 -584
- package/dist/examples/data-management-example.d.ts +0 -1
- package/dist/examples/data-management-example.js +0 -550
- package/dist/examples/flow-editor-layout-example.cjs +0 -309
- package/dist/examples/flow-editor-layout-example.d.ts +0 -22
- package/dist/examples/flow-editor-layout-example.js +0 -269
- package/dist/examples/flow-start-example.cjs +0 -467
- package/dist/examples/flow-start-example.d.ts +0 -30
- package/dist/examples/flow-start-example.js +0 -433
- package/dist/examples/form-builder-example.cjs +0 -674
- package/dist/examples/form-builder-example.js +0 -640
- package/dist/examples/new-project-example.cjs +0 -550
- package/dist/examples/new-project-example.d.ts +0 -30
- package/dist/examples/new-project-example.js +0 -516
- package/dist/examples/settings-example.cjs +0 -864
- package/dist/examples/settings-example.d.ts +0 -1
- package/dist/examples/settings-example.js +0 -830
- package/dist/examples/vscode-example.cjs +0 -340
- package/dist/examples/vscode-example.d.ts +0 -80
- package/dist/examples/vscode-example.js +0 -270
- package/dist/templates/admin-layout-example.d.ts +0 -92
- package/dist/templates/app-shell-example.d.ts +0 -52
- package/dist/templates/dashboard-example.d.ts +0 -11
- package/dist/templates/data-management-example.d.ts +0 -1
- package/dist/templates/flow-editor-layout-example.d.ts +0 -22
- package/dist/templates/flow-start-example.d.ts +0 -30
- package/dist/templates/form-builder-example.d.ts +0 -1
- package/dist/templates/new-project-example.d.ts +0 -30
- package/dist/templates/settings-example.d.ts +0 -1
- /package/dist/{examples → templates/Forms}/form-builder-example.d.ts +0 -0
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __webpack_require__ = {};
|
|
3
|
+
(()=>{
|
|
4
|
+
__webpack_require__.d = (exports1, definition)=>{
|
|
5
|
+
for(var key in definition)if (__webpack_require__.o(definition, key) && !__webpack_require__.o(exports1, key)) Object.defineProperty(exports1, key, {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: definition[key]
|
|
8
|
+
});
|
|
9
|
+
};
|
|
10
|
+
})();
|
|
11
|
+
(()=>{
|
|
12
|
+
__webpack_require__.o = (obj, prop)=>Object.prototype.hasOwnProperty.call(obj, prop);
|
|
13
|
+
})();
|
|
14
|
+
(()=>{
|
|
15
|
+
__webpack_require__.r = (exports1)=>{
|
|
16
|
+
if ('undefined' != typeof Symbol && Symbol.toStringTag) Object.defineProperty(exports1, Symbol.toStringTag, {
|
|
17
|
+
value: 'Module'
|
|
18
|
+
});
|
|
19
|
+
Object.defineProperty(exports1, '__esModule', {
|
|
20
|
+
value: true
|
|
21
|
+
});
|
|
22
|
+
};
|
|
23
|
+
})();
|
|
24
|
+
var __webpack_exports__ = {};
|
|
25
|
+
__webpack_require__.r(__webpack_exports__);
|
|
26
|
+
__webpack_require__.d(__webpack_exports__, {
|
|
27
|
+
border: ()=>border,
|
|
28
|
+
brand: ()=>brand,
|
|
29
|
+
foreground: ()=>foreground,
|
|
30
|
+
gradient: ()=>gradient,
|
|
31
|
+
ring: ()=>ring,
|
|
32
|
+
surface: ()=>surface
|
|
33
|
+
});
|
|
34
|
+
const surface = {
|
|
35
|
+
surface: 'bg-surface',
|
|
36
|
+
surfaceRaised: 'bg-surface-raised',
|
|
37
|
+
surfaceOverlay: 'bg-surface-overlay',
|
|
38
|
+
surfaceHover: 'bg-surface-hover',
|
|
39
|
+
surfaceMuted: 'bg-surface-muted',
|
|
40
|
+
surfaceInverse: 'bg-surface-inverse'
|
|
41
|
+
};
|
|
42
|
+
const brand = {
|
|
43
|
+
brand: 'bg-brand',
|
|
44
|
+
brandSubtle: 'bg-brand-subtle'
|
|
45
|
+
};
|
|
46
|
+
const foreground = {
|
|
47
|
+
foreground: 'text-foreground',
|
|
48
|
+
foregroundSecondary: 'text-foreground-secondary',
|
|
49
|
+
foregroundHover: 'text-foreground-hover',
|
|
50
|
+
foregroundMuted: 'text-foreground-muted',
|
|
51
|
+
foregroundSubtle: 'text-foreground-subtle',
|
|
52
|
+
foregroundInverse: 'text-foreground-inverse',
|
|
53
|
+
foregroundOnAccent: 'text-foreground-on-accent',
|
|
54
|
+
foregroundAccent: 'text-foreground-accent',
|
|
55
|
+
foregroundAccentMuted: 'text-foreground-accent-muted'
|
|
56
|
+
};
|
|
57
|
+
const border = {
|
|
58
|
+
border: 'border-border',
|
|
59
|
+
borderSubtle: 'border-border-subtle',
|
|
60
|
+
borderMuted: 'border-border-muted',
|
|
61
|
+
borderDeep: 'border-border-deep',
|
|
62
|
+
borderInverse: 'border-border-inverse',
|
|
63
|
+
borderHover: 'border-border-hover'
|
|
64
|
+
};
|
|
65
|
+
const ring = {
|
|
66
|
+
ring: 'ring-ring'
|
|
67
|
+
};
|
|
68
|
+
const gradient = {
|
|
69
|
+
gradient1: 'bg-gradient-1',
|
|
70
|
+
gradient2: 'bg-gradient-2',
|
|
71
|
+
gradient3: 'bg-gradient-3',
|
|
72
|
+
gradient4: 'bg-gradient-4',
|
|
73
|
+
gradient5: 'bg-gradient-5',
|
|
74
|
+
gradient6: 'bg-gradient-6'
|
|
75
|
+
};
|
|
76
|
+
exports.border = __webpack_exports__.border;
|
|
77
|
+
exports.brand = __webpack_exports__.brand;
|
|
78
|
+
exports.foreground = __webpack_exports__.foreground;
|
|
79
|
+
exports.gradient = __webpack_exports__.gradient;
|
|
80
|
+
exports.ring = __webpack_exports__.ring;
|
|
81
|
+
exports.surface = __webpack_exports__.surface;
|
|
82
|
+
for(var __webpack_i__ in __webpack_exports__)if (-1 === [
|
|
83
|
+
"border",
|
|
84
|
+
"brand",
|
|
85
|
+
"foreground",
|
|
86
|
+
"gradient",
|
|
87
|
+
"ring",
|
|
88
|
+
"surface"
|
|
89
|
+
].indexOf(__webpack_i__)) exports[__webpack_i__] = __webpack_exports__[__webpack_i__];
|
|
90
|
+
Object.defineProperty(exports, '__esModule', {
|
|
91
|
+
value: true
|
|
92
|
+
});
|
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Apollo Future — Color Tokens
|
|
3
|
+
*
|
|
4
|
+
* Single source of truth for all colors in the Future design language.
|
|
5
|
+
* Includes values actively used in both Delegate and Flow templates.
|
|
6
|
+
*
|
|
7
|
+
* Colors are now theme-aware via CSS custom properties defined in
|
|
8
|
+
* `themes.css`. Apply `.future-dark` or `.future-light` to a
|
|
9
|
+
* parent element to activate a theme.
|
|
10
|
+
*
|
|
11
|
+
* The semantic Tailwind classes (e.g. `bg-surface`) resolve to
|
|
12
|
+
* different hex values depending on the active theme.
|
|
13
|
+
*/
|
|
14
|
+
/**
|
|
15
|
+
* Surface color tokens — semantic, theme-aware.
|
|
16
|
+
*
|
|
17
|
+
* | Token | Semantic class | Dark value (zinc) | Light value (zinc) | Usage |
|
|
18
|
+
* |-----------------|-----------------------------|-------------------|--------------------|------------------------------------------|
|
|
19
|
+
* | surface | bg-surface | 950 #09090b | white #ffffff | Page, canvas, containers, viewport guard |
|
|
20
|
+
* | surfaceRaised | bg-surface-raised | 900 #18181b | 50 #fafafa | Cards, overlay content, panels |
|
|
21
|
+
* | surfaceOverlay | bg-surface-overlay | 800 #27272a | 100 #f4f4f5 | Panel, inputs, tabs, icon rail |
|
|
22
|
+
* | surfaceHover | bg-surface-hover | 700 #3f3f46 | 200 #e4e4e7 | Step card icon, nav hover, selected |
|
|
23
|
+
* | surfaceMuted | bg-surface-muted | 500 #71717a | 400 #a1a1aa | Badge, loop indicator |
|
|
24
|
+
* | surfaceInverse | bg-surface-inverse | white #ffffff | 950 #09090b | Primary buttons (inverse) |
|
|
25
|
+
*/
|
|
26
|
+
export declare const surface: {
|
|
27
|
+
readonly surface: "bg-surface";
|
|
28
|
+
readonly surfaceRaised: "bg-surface-raised";
|
|
29
|
+
readonly surfaceOverlay: "bg-surface-overlay";
|
|
30
|
+
readonly surfaceHover: "bg-surface-hover";
|
|
31
|
+
readonly surfaceMuted: "bg-surface-muted";
|
|
32
|
+
readonly surfaceInverse: "bg-surface-inverse";
|
|
33
|
+
};
|
|
34
|
+
/**
|
|
35
|
+
* Brand color tokens — semantic, theme-aware.
|
|
36
|
+
*
|
|
37
|
+
* | Token | Semantic class | Dark value (cyan) | Light value (cyan) | Usage |
|
|
38
|
+
* |--------------|-----------------------------|-------------------|--------------------|------------------------------------------|
|
|
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
|
+
*/
|
|
42
|
+
export declare const brand: {
|
|
43
|
+
readonly brand: "bg-brand";
|
|
44
|
+
readonly brandSubtle: "bg-brand-subtle";
|
|
45
|
+
};
|
|
46
|
+
/**
|
|
47
|
+
* Foreground color tokens — semantic, theme-aware.
|
|
48
|
+
*
|
|
49
|
+
* | Token | Semantic class | Dark value | Light value | Usage |
|
|
50
|
+
* |------------------------|---------------------------------------|-------------------|-------------------|---------------------------|
|
|
51
|
+
* | foreground | text-foreground | zinc-50 #fafafa | zinc-950 #09090b | Primary headings |
|
|
52
|
+
* | foregroundSecondary | text-foreground-secondary | zinc-100 #f4f4f5 | zinc-900 #18181b | Body, messages |
|
|
53
|
+
* | foregroundHover | text-foreground-hover | zinc-300 #d4d4d8 | zinc-600 #52525b | Hover states |
|
|
54
|
+
* | foregroundMuted | text-foreground-muted | zinc-400 #a1a1aa | zinc-500 #71717a | Nav, secondary UI, code |
|
|
55
|
+
* | foregroundSubtle | text-foreground-subtle | zinc-500 #71717a | zinc-400 #a1a1aa | Muted, labels |
|
|
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
|
+
* | foregroundAccentMuted | text-foreground-accent-muted | cyan-400 #22d3ee | cyan-600 #0891b2 | Status text |
|
|
60
|
+
*/
|
|
61
|
+
export declare const foreground: {
|
|
62
|
+
readonly foreground: "text-foreground";
|
|
63
|
+
readonly foregroundSecondary: "text-foreground-secondary";
|
|
64
|
+
readonly foregroundHover: "text-foreground-hover";
|
|
65
|
+
readonly foregroundMuted: "text-foreground-muted";
|
|
66
|
+
readonly foregroundSubtle: "text-foreground-subtle";
|
|
67
|
+
readonly foregroundInverse: "text-foreground-inverse";
|
|
68
|
+
readonly foregroundOnAccent: "text-foreground-on-accent";
|
|
69
|
+
readonly foregroundAccent: "text-foreground-accent";
|
|
70
|
+
readonly foregroundAccentMuted: "text-foreground-accent-muted";
|
|
71
|
+
};
|
|
72
|
+
/**
|
|
73
|
+
* Border color tokens — semantic, theme-aware.
|
|
74
|
+
*
|
|
75
|
+
* | Token | Semantic class | Dark value | Light value | Usage |
|
|
76
|
+
* |---------------|------------------------------|-------------------|--------------------|---------------------|
|
|
77
|
+
* | border | border-border | zinc-700 #3f3f46 | zinc-300 #d4d4d8 | Primary borders |
|
|
78
|
+
* | borderSubtle | border-border-subtle | zinc-800 #27272a | zinc-200 #e4e4e7 | Subtle dividers |
|
|
79
|
+
* | borderMuted | border-border-muted | zinc-900 #18181b | zinc-100 #f4f4f5 | Content borders |
|
|
80
|
+
* | borderDeep | border-border-deep | zinc-950 #09090b | zinc-50 #fafafa | Nested containers |
|
|
81
|
+
* | borderInverse | border-border-inverse | zinc-200 #e4e4e7 | zinc-700 #3f3f46 | Borders on inverse |
|
|
82
|
+
* | borderHover | border-border-hover | zinc-600 #52525b | zinc-400 #a1a1aa | Border hover state |
|
|
83
|
+
*/
|
|
84
|
+
export declare const border: {
|
|
85
|
+
readonly border: "border-border";
|
|
86
|
+
readonly borderSubtle: "border-border-subtle";
|
|
87
|
+
readonly borderMuted: "border-border-muted";
|
|
88
|
+
readonly borderDeep: "border-border-deep";
|
|
89
|
+
readonly borderInverse: "border-border-inverse";
|
|
90
|
+
readonly borderHover: "border-border-hover";
|
|
91
|
+
};
|
|
92
|
+
/**
|
|
93
|
+
* Ring color tokens for selection and focus states.
|
|
94
|
+
*
|
|
95
|
+
* | Token | Semantic class | Dark value | Light value | Usage |
|
|
96
|
+
* |-------|--------------------|-------------------|-------------------|--------------------|
|
|
97
|
+
* | ring | ring-ring | zinc-600 #52525b | zinc-400 #a1a1aa | Flow node selected |
|
|
98
|
+
*/
|
|
99
|
+
export declare const ring: {
|
|
100
|
+
readonly ring: "ring-ring";
|
|
101
|
+
};
|
|
102
|
+
/**
|
|
103
|
+
* Gradient tokens — theme-aware background gradients.
|
|
104
|
+
*
|
|
105
|
+
* Dark theme:
|
|
106
|
+
* | Token | Utility class | Angle | From | To |
|
|
107
|
+
* |------------|-------------------------|--------|-------------------|-------------------|
|
|
108
|
+
* | gradient1 | bg-gradient-1 | 127deg | zinc-700 #3f3f47 | zinc-800 #27272a |
|
|
109
|
+
* | gradient2 | bg-gradient-2 | 128deg | zinc-950 #09090b | zinc-900 #18181b |
|
|
110
|
+
* | gradient3 | bg-gradient-3 | 128deg | zinc-700 #3f3f47 | zinc-900 #18181b |
|
|
111
|
+
* | gradient4 | bg-gradient-4 | 180deg | zinc-900 #18181b | zinc-800 #27272a |
|
|
112
|
+
* | gradient5 | bg-gradient-5 | 180deg | zinc-950 #09090b | zinc-900 #18181b |
|
|
113
|
+
* | gradient6 | bg-gradient-6 | 106deg | cyan-600 #0092b8 | cyan-950 #053345 |
|
|
114
|
+
*
|
|
115
|
+
* Light theme:
|
|
116
|
+
* | Token | Utility class | Angle | From | To |
|
|
117
|
+
* |------------|-------------------------|--------|-------------------|-------------------|
|
|
118
|
+
* | gradient1 | bg-gradient-1 | 127deg | zinc-200 #e4e4e7 | zinc-100 #f4f4f5 |
|
|
119
|
+
* | gradient2 | bg-gradient-2 | 128deg | white #ffffff | zinc-50 #fafafa |
|
|
120
|
+
* | gradient3 | bg-gradient-3 | 128deg | zinc-200 #e4e4e7 | zinc-50 #fafafa |
|
|
121
|
+
* | gradient4 | bg-gradient-4 | 180deg | zinc-50 #fafafa | zinc-100 #f4f4f5 |
|
|
122
|
+
* | gradient5 | bg-gradient-5 | 180deg | white #ffffff | zinc-50 #fafafa |
|
|
123
|
+
* | gradient6 | bg-gradient-6 | 106deg | cyan-400 #22d3ee | cyan-100 #cffafe |
|
|
124
|
+
*/
|
|
125
|
+
export declare const gradient: {
|
|
126
|
+
readonly gradient1: "bg-gradient-1";
|
|
127
|
+
readonly gradient2: "bg-gradient-2";
|
|
128
|
+
readonly gradient3: "bg-gradient-3";
|
|
129
|
+
readonly gradient4: "bg-gradient-4";
|
|
130
|
+
readonly gradient5: "bg-gradient-5";
|
|
131
|
+
readonly gradient6: "bg-gradient-6";
|
|
132
|
+
};
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
const surface = {
|
|
2
|
+
surface: 'bg-surface',
|
|
3
|
+
surfaceRaised: 'bg-surface-raised',
|
|
4
|
+
surfaceOverlay: 'bg-surface-overlay',
|
|
5
|
+
surfaceHover: 'bg-surface-hover',
|
|
6
|
+
surfaceMuted: 'bg-surface-muted',
|
|
7
|
+
surfaceInverse: 'bg-surface-inverse'
|
|
8
|
+
};
|
|
9
|
+
const brand = {
|
|
10
|
+
brand: 'bg-brand',
|
|
11
|
+
brandSubtle: 'bg-brand-subtle'
|
|
12
|
+
};
|
|
13
|
+
const foreground = {
|
|
14
|
+
foreground: 'text-foreground',
|
|
15
|
+
foregroundSecondary: 'text-foreground-secondary',
|
|
16
|
+
foregroundHover: 'text-foreground-hover',
|
|
17
|
+
foregroundMuted: 'text-foreground-muted',
|
|
18
|
+
foregroundSubtle: 'text-foreground-subtle',
|
|
19
|
+
foregroundInverse: 'text-foreground-inverse',
|
|
20
|
+
foregroundOnAccent: 'text-foreground-on-accent',
|
|
21
|
+
foregroundAccent: 'text-foreground-accent',
|
|
22
|
+
foregroundAccentMuted: 'text-foreground-accent-muted'
|
|
23
|
+
};
|
|
24
|
+
const border = {
|
|
25
|
+
border: 'border-border',
|
|
26
|
+
borderSubtle: 'border-border-subtle',
|
|
27
|
+
borderMuted: 'border-border-muted',
|
|
28
|
+
borderDeep: 'border-border-deep',
|
|
29
|
+
borderInverse: 'border-border-inverse',
|
|
30
|
+
borderHover: 'border-border-hover'
|
|
31
|
+
};
|
|
32
|
+
const ring = {
|
|
33
|
+
ring: 'ring-ring'
|
|
34
|
+
};
|
|
35
|
+
const gradient = {
|
|
36
|
+
gradient1: 'bg-gradient-1',
|
|
37
|
+
gradient2: 'bg-gradient-2',
|
|
38
|
+
gradient3: 'bg-gradient-3',
|
|
39
|
+
gradient4: 'bg-gradient-4',
|
|
40
|
+
gradient5: 'bg-gradient-5',
|
|
41
|
+
gradient6: 'bg-gradient-6'
|
|
42
|
+
};
|
|
43
|
+
export { border, brand, foreground, gradient, ring, surface };
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __webpack_require__ = {};
|
|
3
|
+
(()=>{
|
|
4
|
+
__webpack_require__.d = (exports1, definition)=>{
|
|
5
|
+
for(var key in definition)if (__webpack_require__.o(definition, key) && !__webpack_require__.o(exports1, key)) Object.defineProperty(exports1, key, {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: definition[key]
|
|
8
|
+
});
|
|
9
|
+
};
|
|
10
|
+
})();
|
|
11
|
+
(()=>{
|
|
12
|
+
__webpack_require__.o = (obj, prop)=>Object.prototype.hasOwnProperty.call(obj, prop);
|
|
13
|
+
})();
|
|
14
|
+
(()=>{
|
|
15
|
+
__webpack_require__.r = (exports1)=>{
|
|
16
|
+
if ('undefined' != typeof Symbol && Symbol.toStringTag) Object.defineProperty(exports1, Symbol.toStringTag, {
|
|
17
|
+
value: 'Module'
|
|
18
|
+
});
|
|
19
|
+
Object.defineProperty(exports1, '__esModule', {
|
|
20
|
+
value: true
|
|
21
|
+
});
|
|
22
|
+
};
|
|
23
|
+
})();
|
|
24
|
+
var __webpack_exports__ = {};
|
|
25
|
+
__webpack_require__.r(__webpack_exports__);
|
|
26
|
+
__webpack_require__.d(__webpack_exports__, {
|
|
27
|
+
borderRadius: ()=>borderRadius
|
|
28
|
+
});
|
|
29
|
+
const borderRadius = {
|
|
30
|
+
sm: 4,
|
|
31
|
+
lg: 8,
|
|
32
|
+
lgPlus: 10,
|
|
33
|
+
xl: 12,
|
|
34
|
+
'2xl': 16,
|
|
35
|
+
xlPlus: 20,
|
|
36
|
+
'3xl': 24,
|
|
37
|
+
pill: 32,
|
|
38
|
+
circle: 9999
|
|
39
|
+
};
|
|
40
|
+
exports.borderRadius = __webpack_exports__.borderRadius;
|
|
41
|
+
for(var __webpack_i__ in __webpack_exports__)if (-1 === [
|
|
42
|
+
"borderRadius"
|
|
43
|
+
].indexOf(__webpack_i__)) exports[__webpack_i__] = __webpack_exports__[__webpack_i__];
|
|
44
|
+
Object.defineProperty(exports, '__esModule', {
|
|
45
|
+
value: true
|
|
46
|
+
});
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Apollo Future — Radius Tokens
|
|
3
|
+
*
|
|
4
|
+
* Single source of truth for all border radius values
|
|
5
|
+
* in the Future design language.
|
|
6
|
+
* Includes values actively used in both Delegate and Flow templates.
|
|
7
|
+
*/
|
|
8
|
+
/**
|
|
9
|
+
* Border radius scale in pixels.
|
|
10
|
+
*
|
|
11
|
+
* | Token | px | Tailwind | Usage |
|
|
12
|
+
* |---------|-------|------------------|-----------------------------|
|
|
13
|
+
* | sm | 4 | rounded-[4px] | Chat bubble corner (Flow) |
|
|
14
|
+
* | lg | 8 | rounded-lg | Buttons, inputs, icons |
|
|
15
|
+
* | lgPlus | 10 | rounded-[10px] | Toggle pill buttons |
|
|
16
|
+
* | xl | 12 | rounded-xl | Toggle containers, cards |
|
|
17
|
+
* | 2xl | 16 | rounded-2xl | Panels, large cards |
|
|
18
|
+
* | xlPlus | 20 | rounded-[20px] | Node size selector (Flow) |
|
|
19
|
+
* | 3xl | 24 | rounded-3xl | Canvas toolbar |
|
|
20
|
+
* | pill | 32 | rounded-[32px] | Delegate card radius |
|
|
21
|
+
* | circle | 9999 | rounded-full | Circular buttons (send) |
|
|
22
|
+
*/
|
|
23
|
+
export declare const borderRadius: {
|
|
24
|
+
readonly sm: 4;
|
|
25
|
+
readonly lg: 8;
|
|
26
|
+
readonly lgPlus: 10;
|
|
27
|
+
readonly xl: 12;
|
|
28
|
+
readonly '2xl': 16;
|
|
29
|
+
readonly xlPlus: 20;
|
|
30
|
+
readonly '3xl': 24;
|
|
31
|
+
readonly pill: 32;
|
|
32
|
+
readonly circle: 9999;
|
|
33
|
+
};
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __webpack_require__ = {};
|
|
3
|
+
(()=>{
|
|
4
|
+
__webpack_require__.d = (exports1, definition)=>{
|
|
5
|
+
for(var key in definition)if (__webpack_require__.o(definition, key) && !__webpack_require__.o(exports1, key)) Object.defineProperty(exports1, key, {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: definition[key]
|
|
8
|
+
});
|
|
9
|
+
};
|
|
10
|
+
})();
|
|
11
|
+
(()=>{
|
|
12
|
+
__webpack_require__.o = (obj, prop)=>Object.prototype.hasOwnProperty.call(obj, prop);
|
|
13
|
+
})();
|
|
14
|
+
(()=>{
|
|
15
|
+
__webpack_require__.r = (exports1)=>{
|
|
16
|
+
if ('undefined' != typeof Symbol && Symbol.toStringTag) Object.defineProperty(exports1, Symbol.toStringTag, {
|
|
17
|
+
value: 'Module'
|
|
18
|
+
});
|
|
19
|
+
Object.defineProperty(exports1, '__esModule', {
|
|
20
|
+
value: true
|
|
21
|
+
});
|
|
22
|
+
};
|
|
23
|
+
})();
|
|
24
|
+
var __webpack_exports__ = {};
|
|
25
|
+
__webpack_require__.r(__webpack_exports__);
|
|
26
|
+
__webpack_require__.d(__webpack_exports__, {
|
|
27
|
+
breakpoint: ()=>breakpoint,
|
|
28
|
+
viewport: ()=>viewport
|
|
29
|
+
});
|
|
30
|
+
const breakpoint = {
|
|
31
|
+
viewportGuard: 769,
|
|
32
|
+
panelExpand: 1025
|
|
33
|
+
};
|
|
34
|
+
const viewport = {
|
|
35
|
+
xs: 540,
|
|
36
|
+
s: 768,
|
|
37
|
+
m: 1024,
|
|
38
|
+
l: 1440,
|
|
39
|
+
xl: 1920
|
|
40
|
+
};
|
|
41
|
+
exports.breakpoint = __webpack_exports__.breakpoint;
|
|
42
|
+
exports.viewport = __webpack_exports__.viewport;
|
|
43
|
+
for(var __webpack_i__ in __webpack_exports__)if (-1 === [
|
|
44
|
+
"breakpoint",
|
|
45
|
+
"viewport"
|
|
46
|
+
].indexOf(__webpack_i__)) exports[__webpack_i__] = __webpack_exports__[__webpack_i__];
|
|
47
|
+
Object.defineProperty(exports, '__esModule', {
|
|
48
|
+
value: true
|
|
49
|
+
});
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Apollo Future — Responsive Tokens
|
|
3
|
+
*
|
|
4
|
+
* Single source of truth for breakpoints and viewport widths
|
|
5
|
+
* in the Future design language.
|
|
6
|
+
* Includes values actively used in both Delegate and Flow templates
|
|
7
|
+
* and ViewportGuard.
|
|
8
|
+
*/
|
|
9
|
+
/**
|
|
10
|
+
* Breakpoints used in Delegate templates and guards.
|
|
11
|
+
* Use with window.matchMedia(`(min-width: ${value}px)`).
|
|
12
|
+
*
|
|
13
|
+
* | Token | px | Usage |
|
|
14
|
+
* |---------------|------|--------------------------------------------|
|
|
15
|
+
* | viewportGuard | 769 | Content shown ≥769px; below shows overlay |
|
|
16
|
+
* | panelExpand | 1025 | Left panel expanded ≥1025px; else collapsed |
|
|
17
|
+
*/
|
|
18
|
+
export declare const breakpoint: {
|
|
19
|
+
readonly viewportGuard: 769;
|
|
20
|
+
readonly panelExpand: 1025;
|
|
21
|
+
};
|
|
22
|
+
/**
|
|
23
|
+
* Named viewport widths used in Storybook and for reference.
|
|
24
|
+
* Matches Theme/Future viewport dropdown (Screen XL, L, M, S, XS).
|
|
25
|
+
*
|
|
26
|
+
* | Token | px | Name |
|
|
27
|
+
* |-------|------|----------------|
|
|
28
|
+
* | xs | 540 | Screen XS 540 |
|
|
29
|
+
* | s | 768 | Screen S 768 |
|
|
30
|
+
* | m | 1024 | Screen M 1024 |
|
|
31
|
+
* | l | 1440 | Screen L 1440 |
|
|
32
|
+
* | xl | 1920 | Screen XL 1920 |
|
|
33
|
+
*/
|
|
34
|
+
export declare const viewport: {
|
|
35
|
+
readonly xs: 540;
|
|
36
|
+
readonly s: 768;
|
|
37
|
+
readonly m: 1024;
|
|
38
|
+
readonly l: 1440;
|
|
39
|
+
readonly xl: 1920;
|
|
40
|
+
};
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __webpack_require__ = {};
|
|
3
|
+
(()=>{
|
|
4
|
+
__webpack_require__.d = (exports1, definition)=>{
|
|
5
|
+
for(var key in definition)if (__webpack_require__.o(definition, key) && !__webpack_require__.o(exports1, key)) Object.defineProperty(exports1, key, {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: definition[key]
|
|
8
|
+
});
|
|
9
|
+
};
|
|
10
|
+
})();
|
|
11
|
+
(()=>{
|
|
12
|
+
__webpack_require__.o = (obj, prop)=>Object.prototype.hasOwnProperty.call(obj, prop);
|
|
13
|
+
})();
|
|
14
|
+
(()=>{
|
|
15
|
+
__webpack_require__.r = (exports1)=>{
|
|
16
|
+
if ('undefined' != typeof Symbol && Symbol.toStringTag) Object.defineProperty(exports1, Symbol.toStringTag, {
|
|
17
|
+
value: 'Module'
|
|
18
|
+
});
|
|
19
|
+
Object.defineProperty(exports1, '__esModule', {
|
|
20
|
+
value: true
|
|
21
|
+
});
|
|
22
|
+
};
|
|
23
|
+
})();
|
|
24
|
+
var __webpack_exports__ = {};
|
|
25
|
+
__webpack_require__.r(__webpack_exports__);
|
|
26
|
+
__webpack_require__.d(__webpack_exports__, {
|
|
27
|
+
boxShadow: ()=>boxShadow,
|
|
28
|
+
boxShadowClass: ()=>boxShadowClass
|
|
29
|
+
});
|
|
30
|
+
const boxShadow = {
|
|
31
|
+
sm: '0 1px 2px 0 rgba(0, 0, 0, 0.05)',
|
|
32
|
+
rail: '0px 4px 16px 0px rgba(0, 0, 0, 0.25)',
|
|
33
|
+
elevated: '0px 4px 24px 0px rgba(0, 0, 0, 0.25)'
|
|
34
|
+
};
|
|
35
|
+
const boxShadowClass = {
|
|
36
|
+
sm: 'shadow-sm',
|
|
37
|
+
rail: 'shadow-[0px_4px_16px_0px_rgba(0,0,0,0.25)]',
|
|
38
|
+
elevated: 'shadow-[0px_4px_24px_0px_rgba(0,0,0,0.25)]'
|
|
39
|
+
};
|
|
40
|
+
exports.boxShadow = __webpack_exports__.boxShadow;
|
|
41
|
+
exports.boxShadowClass = __webpack_exports__.boxShadowClass;
|
|
42
|
+
for(var __webpack_i__ in __webpack_exports__)if (-1 === [
|
|
43
|
+
"boxShadow",
|
|
44
|
+
"boxShadowClass"
|
|
45
|
+
].indexOf(__webpack_i__)) exports[__webpack_i__] = __webpack_exports__[__webpack_i__];
|
|
46
|
+
Object.defineProperty(exports, '__esModule', {
|
|
47
|
+
value: true
|
|
48
|
+
});
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Apollo Future — Shadow Tokens
|
|
3
|
+
*
|
|
4
|
+
* Single source of truth for all box-shadow values
|
|
5
|
+
* in the Future design language.
|
|
6
|
+
* Includes values actively used in both Delegate and Flow templates.
|
|
7
|
+
*/
|
|
8
|
+
/**
|
|
9
|
+
* Box shadow scale.
|
|
10
|
+
*
|
|
11
|
+
* | Token | Value | Tailwind | Usage |
|
|
12
|
+
* |-----------|------------------------------------------|-------------------------------------------------------|------------------------------------|
|
|
13
|
+
* | sm | 0 1px 2px 0 rgba(0,0,0,0.05) | shadow-sm | Subtle lift (logo, small badges) |
|
|
14
|
+
* | rail | 0px 4px 16px 0px rgba(0,0,0,0.25) | shadow-[0px_4px_16px_0px_rgba(0,0,0,0.25)] | Icon rail shadow (Flow panel) |
|
|
15
|
+
* | elevated | 0px 4px 24px 0px rgba(0,0,0,0.25) | shadow-[0px_4px_24px_0px_rgba(0,0,0,0.25)] | Panels, hover cards |
|
|
16
|
+
*/
|
|
17
|
+
export declare const boxShadow: {
|
|
18
|
+
readonly sm: "0 1px 2px 0 rgba(0, 0, 0, 0.05)";
|
|
19
|
+
readonly rail: "0px 4px 16px 0px rgba(0, 0, 0, 0.25)";
|
|
20
|
+
readonly elevated: "0px 4px 24px 0px rgba(0, 0, 0, 0.25)";
|
|
21
|
+
};
|
|
22
|
+
/**
|
|
23
|
+
* Tailwind class mapping for quick reference.
|
|
24
|
+
*/
|
|
25
|
+
export declare const boxShadowClass: {
|
|
26
|
+
readonly sm: "shadow-sm";
|
|
27
|
+
readonly rail: "shadow-[0px_4px_16px_0px_rgba(0,0,0,0.25)]";
|
|
28
|
+
readonly elevated: "shadow-[0px_4px_24px_0px_rgba(0,0,0,0.25)]";
|
|
29
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
const boxShadow = {
|
|
2
|
+
sm: '0 1px 2px 0 rgba(0, 0, 0, 0.05)',
|
|
3
|
+
rail: '0px 4px 16px 0px rgba(0, 0, 0, 0.25)',
|
|
4
|
+
elevated: '0px 4px 24px 0px rgba(0, 0, 0, 0.25)'
|
|
5
|
+
};
|
|
6
|
+
const boxShadowClass = {
|
|
7
|
+
sm: 'shadow-sm',
|
|
8
|
+
rail: 'shadow-[0px_4px_16px_0px_rgba(0,0,0,0.25)]',
|
|
9
|
+
elevated: 'shadow-[0px_4px_24px_0px_rgba(0,0,0,0.25)]'
|
|
10
|
+
};
|
|
11
|
+
export { boxShadow, boxShadowClass };
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __webpack_require__ = {};
|
|
3
|
+
(()=>{
|
|
4
|
+
__webpack_require__.d = (exports1, definition)=>{
|
|
5
|
+
for(var key in definition)if (__webpack_require__.o(definition, key) && !__webpack_require__.o(exports1, key)) Object.defineProperty(exports1, key, {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: definition[key]
|
|
8
|
+
});
|
|
9
|
+
};
|
|
10
|
+
})();
|
|
11
|
+
(()=>{
|
|
12
|
+
__webpack_require__.o = (obj, prop)=>Object.prototype.hasOwnProperty.call(obj, prop);
|
|
13
|
+
})();
|
|
14
|
+
(()=>{
|
|
15
|
+
__webpack_require__.r = (exports1)=>{
|
|
16
|
+
if ('undefined' != typeof Symbol && Symbol.toStringTag) Object.defineProperty(exports1, Symbol.toStringTag, {
|
|
17
|
+
value: 'Module'
|
|
18
|
+
});
|
|
19
|
+
Object.defineProperty(exports1, '__esModule', {
|
|
20
|
+
value: true
|
|
21
|
+
});
|
|
22
|
+
};
|
|
23
|
+
})();
|
|
24
|
+
var __webpack_exports__ = {};
|
|
25
|
+
__webpack_require__.r(__webpack_exports__);
|
|
26
|
+
__webpack_require__.d(__webpack_exports__, {
|
|
27
|
+
spacing: ()=>spacing,
|
|
28
|
+
spacingArbitrary: ()=>spacingArbitrary,
|
|
29
|
+
spacingHalf: ()=>spacingHalf
|
|
30
|
+
});
|
|
31
|
+
const spacing = {
|
|
32
|
+
0: 0,
|
|
33
|
+
1: 4,
|
|
34
|
+
2: 8,
|
|
35
|
+
3: 12,
|
|
36
|
+
4: 16,
|
|
37
|
+
5: 20,
|
|
38
|
+
6: 24,
|
|
39
|
+
7: 28,
|
|
40
|
+
8: 32,
|
|
41
|
+
10: 40
|
|
42
|
+
};
|
|
43
|
+
const spacingHalf = {
|
|
44
|
+
'0.5': 2,
|
|
45
|
+
'2.5': 10
|
|
46
|
+
};
|
|
47
|
+
const spacingArbitrary = {
|
|
48
|
+
15: 15,
|
|
49
|
+
18: 18,
|
|
50
|
+
20: 20,
|
|
51
|
+
37: 37,
|
|
52
|
+
60: 60,
|
|
53
|
+
78: 78,
|
|
54
|
+
124: 124,
|
|
55
|
+
360: 360,
|
|
56
|
+
420: 420,
|
|
57
|
+
680: 680,
|
|
58
|
+
800: 800,
|
|
59
|
+
930: 930
|
|
60
|
+
};
|
|
61
|
+
exports.spacing = __webpack_exports__.spacing;
|
|
62
|
+
exports.spacingArbitrary = __webpack_exports__.spacingArbitrary;
|
|
63
|
+
exports.spacingHalf = __webpack_exports__.spacingHalf;
|
|
64
|
+
for(var __webpack_i__ in __webpack_exports__)if (-1 === [
|
|
65
|
+
"spacing",
|
|
66
|
+
"spacingArbitrary",
|
|
67
|
+
"spacingHalf"
|
|
68
|
+
].indexOf(__webpack_i__)) exports[__webpack_i__] = __webpack_exports__[__webpack_i__];
|
|
69
|
+
Object.defineProperty(exports, '__esModule', {
|
|
70
|
+
value: true
|
|
71
|
+
});
|