@qaecy/cue-ui 0.0.1 → 0.0.4

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.
Files changed (44) hide show
  1. package/README.md +93 -2
  2. package/card/3rdpartylicenses.txt +443 -0
  3. package/card/index.html +40 -0
  4. package/card/main.js +1 -0
  5. package/card/polyfills.js +1 -0
  6. package/card/poppins-latin-400-normal.woff +0 -0
  7. package/card/poppins-latin-400-normal.woff2 +0 -0
  8. package/card/poppins-latin-ext-400-normal.woff +0 -0
  9. package/card/poppins-latin-ext-400-normal.woff2 +0 -0
  10. package/card/runtime.js +1 -0
  11. package/card/styles.css +1 -0
  12. package/document-list/3rdpartylicenses.txt +723 -0
  13. package/document-list/index.html +549 -0
  14. package/document-list/main.js +1 -0
  15. package/document-list/polyfills.js +1 -0
  16. package/document-list/poppins-latin-400-normal.woff +0 -0
  17. package/document-list/poppins-latin-400-normal.woff2 +0 -0
  18. package/document-list/poppins-latin-ext-400-normal.woff +0 -0
  19. package/document-list/poppins-latin-ext-400-normal.woff2 +0 -0
  20. package/document-list/runtime.js +1 -0
  21. package/document-list/styles.css +1 -0
  22. package/document-viewer/236.js +1 -0
  23. package/document-viewer/336.js +1 -0
  24. package/document-viewer/3rdpartylicenses.txt +50 -68
  25. package/document-viewer/560.js +1 -1
  26. package/document-viewer/741.js +1 -0
  27. package/document-viewer/{160.js → 781.js} +1 -1
  28. package/document-viewer/83.js +1 -1
  29. package/document-viewer/885.js +1 -0
  30. package/document-viewer/common.js +1 -1
  31. package/document-viewer/index.html +595 -29
  32. package/document-viewer/main.js +1 -1
  33. package/logo/index.html +87 -2
  34. package/logo/main.js +1 -1
  35. package/package.json +10 -2
  36. package/project-documents/main.js +1 -1
  37. package/document-viewer/130.js +0 -1
  38. package/document-viewer/241.js +0 -1
  39. package/document-viewer/266.js +0 -1
  40. package/document-viewer/315.js +0 -1
  41. package/document-viewer/734.js +0 -1
  42. package/document-viewer/829.js +0 -1
  43. package/document-viewer/843.js +0 -1
  44. package/document-viewer/888.js +0 -1
package/README.md CHANGED
@@ -7,7 +7,9 @@ Drop them into any HTML page — no build step required.
7
7
 
8
8
  | Custom element | Import path | Description |
9
9
  | ----------------------- | ------------------------------- | --------------------------------------------------------------------------------- |
10
+ | `<cue-card>` | `@qaecy/cue-ui/card` | Reusable card container with variants, padding, and optional shadow |
10
11
  | `<cue-logo>` | `@qaecy/cue-ui/logo` | Animated QAECY logo |
12
+ | `<cue-document-list>` | `@qaecy/cue-ui/document-list` | Lazy document list that fetches metadata internally from Cue SDK state |
11
13
  | `<cue-document-viewer>` | `@qaecy/cue-ui/document-viewer` | Document viewer with Cue SDK integration (PDF, BIM, CAD, images, spreadsheets, …) |
12
14
 
13
15
  ---
@@ -76,7 +78,6 @@ Both components and the Cue SDK are available on [jsDelivr](https://www.jsdelivr
76
78
  viewer.cue = cue;
77
79
  viewer.uuid = 'your-document-uuid'; // or 'uuid?page=3' to open at a page
78
80
  viewer.projectId = 'your-project-id';
79
- viewer.language = 'en'; // optional, default 'en'
80
81
 
81
82
  document.getElementById('viewer-host').appendChild(viewer);
82
83
  });
@@ -119,6 +120,35 @@ Renders the animated QAECY logo. Adapts automatically to light/dark mode.
119
120
 
120
121
  ---
121
122
 
123
+ ## `<cue-card>`
124
+
125
+ Renders the core Cue card container as a standalone web component.
126
+
127
+ | Property / attribute | Type | Default | Description |
128
+ | -------------------- | ------------------------------------------------------------- | ----------- | --------------------------------- |
129
+ | `variant` | `'default' \| 'primary' \| 'secondary' \| 'accent' \| 'fade'` | `'default'` | Visual variant |
130
+ | `padded` | `boolean` | `true` | Adds internal card padding |
131
+ | `shadow` | `boolean` | `false` | Adds drop shadow |
132
+ | `scrollable` | `boolean` | `false` | Enables internal scroll container |
133
+ | `maxHeight` | `string` | `undefined` | Max host height, e.g. `'320px'` |
134
+ | `style` | `string` | `''` | Additional inline style string |
135
+
136
+ ```html
137
+ <cue-card variant="primary" padded="true" shadow="true" style="height: 180px;">
138
+ Card content
139
+ </cue-card>
140
+ ```
141
+
142
+ > **Script tags needed**
143
+ >
144
+ > ```html
145
+ > <script src="https://cdn.jsdelivr.net/npm/@qaecy/cue-ui/card/polyfills.js"></script>
146
+ > <script src="https://cdn.jsdelivr.net/npm/@qaecy/cue-ui/card/main.js"></script>
147
+ > <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@qaecy/cue-ui/card/styles.css" />
148
+ > ```
149
+
150
+ ---
151
+
122
152
  ## `<cue-document-viewer>`
123
153
 
124
154
  Fetches and renders a Cue document. Automatically picks the best viewer based on the file type. Requires an authenticated `Cue` SDK instance.
@@ -128,7 +158,9 @@ Fetches and renders a Cue document. Automatically picks the best viewer based on
128
158
  | `cue` | `Cue` (SDK instance) | ✅ | Authenticated Cue SDK instance. **Set as a JS property**, not an HTML attribute. |
129
159
  | `uuid` | `string` | ✅ | Document UUID. Append `?page=N` to open at a specific page, e.g. `'abc-123?page=5'`. |
130
160
  | `projectId` | `string` | ✅ | Cue project (space) ID the document belongs to. |
131
- | `language` | `string` | — | BCP-47 language code for label resolution. Defaults to `'en'`. |
161
+
162
+ Language is managed globally by the SDK via `cue.api.language` / `cue.api.setLanguage(lang)` and applies to all language-sensitive requests.
163
+ Document metadata caching is also managed by the SDK; the component reuses SDK-owned per-project document state automatically.
132
164
 
133
165
  Supported file types: PDF, IFC/BIM, DXF/CAD, images (PNG, JPG, SVG, …), Markdown, plain text, CSV/XLSX spreadsheets.
134
166
 
@@ -145,6 +177,64 @@ Supported file types: PDF, IFC/BIM, DXF/CAD, images (PNG, JPG, SVG, …), Markdo
145
177
 
146
178
  ---
147
179
 
180
+ ## `<cue-document-list>`
181
+
182
+ Renders a lazy-loaded document table. Pass a `projectId`, `uuids`, and `sdkState`; the component requests metadata and categories internally.
183
+
184
+ | Property | Type | Required | Description |
185
+ | -------------------------------- | --------------------------------------------------------------------- | -------- | -------------------------------------------------------------------------------------- |
186
+ | `projectId` | `string` | ✅ | Cue project (space) ID. |
187
+ | `uuids` | `string[]` | ✅ | Document UUIDs to display. |
188
+ | `sdkState` | `{ cue?; view?; documents?; language?; availableContentCategories? }` | ✅ | SDK context. Provide at least one of `cue`, `view`, or `documents`. |
189
+ | `simple` | `boolean` | ❌ | Renders a compact list + paginator instead of ag-grid/flip/settings. Default: `false`. |
190
+ | `pageSize` | `number` | ❌ | Host-controlled page size used by both simple and non-simple modes. Default: `10`. |
191
+ | `prefetchPages` | `number` | ❌ | Lazy-load buffer size multiplier (`pageSize * prefetchPages`). Default: `3`. |
192
+ | `showOpenInDocumentViewerAction` | `boolean` | ❌ | Shows "Open in document viewer" menu item. Default: `false`. |
193
+ | `showOpenInFileManagerAction` | `boolean` | ❌ | Shows "Open in file manager" menu item. Default: `false`. |
194
+ | `customMenuItems` | `Array<{ label; icon?; action }>` | ❌ | Custom context-menu entries appended after the standard menu items. |
195
+
196
+ By default, only the `Download` action is shown in the row context menu.
197
+
198
+ Set `simple = true` for a narrow sidebar-style document list (no ag-grid, no column settings, no flip card).
199
+
200
+ The component emits the same row click outputs as the internal document list (`clickedDocument`, `clickedDownloadDocument`, `clickedOpen`, `clickedOpenInDir`).
201
+
202
+ Custom menu items are appended after the standard ones:
203
+
204
+ ```js
205
+ const list = document.querySelector('cue-document-list');
206
+
207
+ list.customMenuItems = [
208
+ {
209
+ label: 'Copy UUID',
210
+ icon: 'copy',
211
+ action: (document) => {
212
+ navigator.clipboard.writeText(document.id);
213
+ },
214
+ },
215
+ {
216
+ label: 'Log Row',
217
+ icon: 'document',
218
+ action: (document, cell) => {
219
+ console.log('Document:', document, 'Cell data:', cell);
220
+ },
221
+ },
222
+ ];
223
+ ```
224
+
225
+ > **Script tags needed**
226
+ >
227
+ > ```html
228
+ > <script src="https://cdn.jsdelivr.net/npm/@qaecy/cue-ui/document-list/polyfills.js"></script>
229
+ > <script src="https://cdn.jsdelivr.net/npm/@qaecy/cue-ui/document-list/main.js"></script>
230
+ > <link
231
+ > rel="stylesheet"
232
+ > href="https://cdn.jsdelivr.net/npm/@qaecy/cue-ui/document-list/styles.css"
233
+ > />
234
+ > ```
235
+
236
+ ---
237
+
148
238
  ## Dependency: `@qaecy/cue-sdk`
149
239
 
150
240
  The `cue-document-viewer` component requires an authenticated [`Cue`](https://www.npmjs.com/package/@qaecy/cue-sdk) instance. The SDK handles authentication and all data fetching — the component itself never makes direct network calls.
@@ -164,6 +254,7 @@ npm install @qaecy/cue-sdk @qaecy/cue-ui
164
254
 
165
255
  ```js
166
256
  import { Cue } from '@qaecy/cue-sdk';
257
+ import '@qaecy/cue-ui/card';
167
258
  import '@qaecy/cue-ui/document-viewer';
168
259
  import '@qaecy/cue-ui/logo';
169
260
  ```
@@ -0,0 +1,443 @@
1
+ @angular/common
2
+ MIT
3
+ The MIT License
4
+
5
+ Copyright (c) 2010-2026 Google LLC. https://angular.dev/license
6
+
7
+ Permission is hereby granted, free of charge, to any person obtaining a copy
8
+ of this software and associated documentation files (the "Software"), to deal
9
+ in the Software without restriction, including without limitation the rights
10
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11
+ copies of the Software, and to permit persons to whom the Software is
12
+ furnished to do so, subject to the following conditions:
13
+
14
+ The above copyright notice and this permission notice shall be included in
15
+ all copies or substantial portions of the Software.
16
+
17
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23
+ THE SOFTWARE.
24
+
25
+
26
+ @angular/core
27
+ MIT
28
+ The MIT License
29
+
30
+ Copyright (c) 2010-2026 Google LLC. https://angular.dev/license
31
+
32
+ Permission is hereby granted, free of charge, to any person obtaining a copy
33
+ of this software and associated documentation files (the "Software"), to deal
34
+ in the Software without restriction, including without limitation the rights
35
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
36
+ copies of the Software, and to permit persons to whom the Software is
37
+ furnished to do so, subject to the following conditions:
38
+
39
+ The above copyright notice and this permission notice shall be included in
40
+ all copies or substantial portions of the Software.
41
+
42
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
43
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
44
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
45
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
46
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
47
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
48
+ THE SOFTWARE.
49
+
50
+
51
+ @angular/elements
52
+ MIT
53
+ The MIT License
54
+
55
+ Copyright (c) 2010-2026 Google LLC. https://angular.dev/license
56
+
57
+ Permission is hereby granted, free of charge, to any person obtaining a copy
58
+ of this software and associated documentation files (the "Software"), to deal
59
+ in the Software without restriction, including without limitation the rights
60
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
61
+ copies of the Software, and to permit persons to whom the Software is
62
+ furnished to do so, subject to the following conditions:
63
+
64
+ The above copyright notice and this permission notice shall be included in
65
+ all copies or substantial portions of the Software.
66
+
67
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
68
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
69
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
70
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
71
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
72
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
73
+ THE SOFTWARE.
74
+
75
+
76
+ @angular/platform-browser
77
+ MIT
78
+ The MIT License
79
+
80
+ Copyright (c) 2010-2026 Google LLC. https://angular.dev/license
81
+
82
+ Permission is hereby granted, free of charge, to any person obtaining a copy
83
+ of this software and associated documentation files (the "Software"), to deal
84
+ in the Software without restriction, including without limitation the rights
85
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
86
+ copies of the Software, and to permit persons to whom the Software is
87
+ furnished to do so, subject to the following conditions:
88
+
89
+ The above copyright notice and this permission notice shall be included in
90
+ all copies or substantial portions of the Software.
91
+
92
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
93
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
94
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
95
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
96
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
97
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
98
+ THE SOFTWARE.
99
+
100
+
101
+ @fontsource/poppins
102
+ OFL-1.1
103
+ Google Inc.
104
+
105
+ This Font Software is licensed under the SIL Open Font License, Version 1.1.
106
+ This license is copied below, and is also available with a FAQ at:
107
+ http://scripts.sil.org/OFL
108
+
109
+
110
+ -----------------------------------------------------------
111
+ SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
112
+ -----------------------------------------------------------
113
+
114
+ PREAMBLE
115
+ The goals of the Open Font License (OFL) are to stimulate worldwide
116
+ development of collaborative font projects, to support the font creation
117
+ efforts of academic and linguistic communities, and to provide a free and
118
+ open framework in which fonts may be shared and improved in partnership
119
+ with others.
120
+
121
+ The OFL allows the licensed fonts to be used, studied, modified and
122
+ redistributed freely as long as they are not sold by themselves. The
123
+ fonts, including any derivative works, can be bundled, embedded,
124
+ redistributed and/or sold with any software provided that any reserved
125
+ names are not used by derivative works. The fonts and derivatives,
126
+ however, cannot be released under any other type of license. The
127
+ requirement for fonts to remain under this license does not apply
128
+ to any document created using the fonts or their derivatives.
129
+
130
+ DEFINITIONS
131
+ "Font Software" refers to the set of files released by the Copyright
132
+ Holder(s) under this license and clearly marked as such. This may
133
+ include source files, build scripts and documentation.
134
+
135
+ "Reserved Font Name" refers to any names specified as such after the
136
+ copyright statement(s).
137
+
138
+ "Original Version" refers to the collection of Font Software components as
139
+ distributed by the Copyright Holder(s).
140
+
141
+ "Modified Version" refers to any derivative made by adding to, deleting,
142
+ or substituting -- in part or in whole -- any of the components of the
143
+ Original Version, by changing formats or by porting the Font Software to a
144
+ new environment.
145
+
146
+ "Author" refers to any designer, engineer, programmer, technical
147
+ writer or other person who contributed to the Font Software.
148
+
149
+ PERMISSION & CONDITIONS
150
+ Permission is hereby granted, free of charge, to any person obtaining
151
+ a copy of the Font Software, to use, study, copy, merge, embed, modify,
152
+ redistribute, and sell modified and unmodified copies of the Font
153
+ Software, subject to the following conditions:
154
+
155
+ 1) Neither the Font Software nor any of its individual components,
156
+ in Original or Modified Versions, may be sold by itself.
157
+
158
+ 2) Original or Modified Versions of the Font Software may be bundled,
159
+ redistributed and/or sold with any software, provided that each copy
160
+ contains the above copyright notice and this license. These can be
161
+ included either as stand-alone text files, human-readable headers or
162
+ in the appropriate machine-readable metadata fields within text or
163
+ binary files as long as those fields can be easily viewed by the user.
164
+
165
+ 3) No Modified Version of the Font Software may use the Reserved Font
166
+ Name(s) unless explicit written permission is granted by the corresponding
167
+ Copyright Holder. This restriction only applies to the primary font name as
168
+ presented to the users.
169
+
170
+ 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
171
+ Software shall not be used to promote, endorse or advertise any
172
+ Modified Version, except to acknowledge the contribution(s) of the
173
+ Copyright Holder(s) and the Author(s) or with their explicit written
174
+ permission.
175
+
176
+ 5) The Font Software, modified or unmodified, in part or in whole,
177
+ must be distributed entirely under this license, and must not be
178
+ distributed under any other license. The requirement for fonts to
179
+ remain under this license does not apply to any document created
180
+ using the Font Software.
181
+
182
+ TERMINATION
183
+ This license becomes null and void if any of the above conditions are
184
+ not met.
185
+
186
+ DISCLAIMER
187
+ THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
188
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
189
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
190
+ OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
191
+ COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
192
+ INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
193
+ DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
194
+ FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
195
+ OTHER DEALINGS IN THE FONT SOFTWARE.
196
+
197
+
198
+ cue-ui
199
+
200
+ rxjs
201
+ Apache-2.0
202
+ Apache License
203
+ Version 2.0, January 2004
204
+ http://www.apache.org/licenses/
205
+
206
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
207
+
208
+ 1. Definitions.
209
+
210
+ "License" shall mean the terms and conditions for use, reproduction,
211
+ and distribution as defined by Sections 1 through 9 of this document.
212
+
213
+ "Licensor" shall mean the copyright owner or entity authorized by
214
+ the copyright owner that is granting the License.
215
+
216
+ "Legal Entity" shall mean the union of the acting entity and all
217
+ other entities that control, are controlled by, or are under common
218
+ control with that entity. For the purposes of this definition,
219
+ "control" means (i) the power, direct or indirect, to cause the
220
+ direction or management of such entity, whether by contract or
221
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
222
+ outstanding shares, or (iii) beneficial ownership of such entity.
223
+
224
+ "You" (or "Your") shall mean an individual or Legal Entity
225
+ exercising permissions granted by this License.
226
+
227
+ "Source" form shall mean the preferred form for making modifications,
228
+ including but not limited to software source code, documentation
229
+ source, and configuration files.
230
+
231
+ "Object" form shall mean any form resulting from mechanical
232
+ transformation or translation of a Source form, including but
233
+ not limited to compiled object code, generated documentation,
234
+ and conversions to other media types.
235
+
236
+ "Work" shall mean the work of authorship, whether in Source or
237
+ Object form, made available under the License, as indicated by a
238
+ copyright notice that is included in or attached to the work
239
+ (an example is provided in the Appendix below).
240
+
241
+ "Derivative Works" shall mean any work, whether in Source or Object
242
+ form, that is based on (or derived from) the Work and for which the
243
+ editorial revisions, annotations, elaborations, or other modifications
244
+ represent, as a whole, an original work of authorship. For the purposes
245
+ of this License, Derivative Works shall not include works that remain
246
+ separable from, or merely link (or bind by name) to the interfaces of,
247
+ the Work and Derivative Works thereof.
248
+
249
+ "Contribution" shall mean any work of authorship, including
250
+ the original version of the Work and any modifications or additions
251
+ to that Work or Derivative Works thereof, that is intentionally
252
+ submitted to Licensor for inclusion in the Work by the copyright owner
253
+ or by an individual or Legal Entity authorized to submit on behalf of
254
+ the copyright owner. For the purposes of this definition, "submitted"
255
+ means any form of electronic, verbal, or written communication sent
256
+ to the Licensor or its representatives, including but not limited to
257
+ communication on electronic mailing lists, source code control systems,
258
+ and issue tracking systems that are managed by, or on behalf of, the
259
+ Licensor for the purpose of discussing and improving the Work, but
260
+ excluding communication that is conspicuously marked or otherwise
261
+ designated in writing by the copyright owner as "Not a Contribution."
262
+
263
+ "Contributor" shall mean Licensor and any individual or Legal Entity
264
+ on behalf of whom a Contribution has been received by Licensor and
265
+ subsequently incorporated within the Work.
266
+
267
+ 2. Grant of Copyright License. Subject to the terms and conditions of
268
+ this License, each Contributor hereby grants to You a perpetual,
269
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
270
+ copyright license to reproduce, prepare Derivative Works of,
271
+ publicly display, publicly perform, sublicense, and distribute the
272
+ Work and such Derivative Works in Source or Object form.
273
+
274
+ 3. Grant of Patent License. Subject to the terms and conditions of
275
+ this License, each Contributor hereby grants to You a perpetual,
276
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
277
+ (except as stated in this section) patent license to make, have made,
278
+ use, offer to sell, sell, import, and otherwise transfer the Work,
279
+ where such license applies only to those patent claims licensable
280
+ by such Contributor that are necessarily infringed by their
281
+ Contribution(s) alone or by combination of their Contribution(s)
282
+ with the Work to which such Contribution(s) was submitted. If You
283
+ institute patent litigation against any entity (including a
284
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
285
+ or a Contribution incorporated within the Work constitutes direct
286
+ or contributory patent infringement, then any patent licenses
287
+ granted to You under this License for that Work shall terminate
288
+ as of the date such litigation is filed.
289
+
290
+ 4. Redistribution. You may reproduce and distribute copies of the
291
+ Work or Derivative Works thereof in any medium, with or without
292
+ modifications, and in Source or Object form, provided that You
293
+ meet the following conditions:
294
+
295
+ (a) You must give any other recipients of the Work or
296
+ Derivative Works a copy of this License; and
297
+
298
+ (b) You must cause any modified files to carry prominent notices
299
+ stating that You changed the files; and
300
+
301
+ (c) You must retain, in the Source form of any Derivative Works
302
+ that You distribute, all copyright, patent, trademark, and
303
+ attribution notices from the Source form of the Work,
304
+ excluding those notices that do not pertain to any part of
305
+ the Derivative Works; and
306
+
307
+ (d) If the Work includes a "NOTICE" text file as part of its
308
+ distribution, then any Derivative Works that You distribute must
309
+ include a readable copy of the attribution notices contained
310
+ within such NOTICE file, excluding those notices that do not
311
+ pertain to any part of the Derivative Works, in at least one
312
+ of the following places: within a NOTICE text file distributed
313
+ as part of the Derivative Works; within the Source form or
314
+ documentation, if provided along with the Derivative Works; or,
315
+ within a display generated by the Derivative Works, if and
316
+ wherever such third-party notices normally appear. The contents
317
+ of the NOTICE file are for informational purposes only and
318
+ do not modify the License. You may add Your own attribution
319
+ notices within Derivative Works that You distribute, alongside
320
+ or as an addendum to the NOTICE text from the Work, provided
321
+ that such additional attribution notices cannot be construed
322
+ as modifying the License.
323
+
324
+ You may add Your own copyright statement to Your modifications and
325
+ may provide additional or different license terms and conditions
326
+ for use, reproduction, or distribution of Your modifications, or
327
+ for any such Derivative Works as a whole, provided Your use,
328
+ reproduction, and distribution of the Work otherwise complies with
329
+ the conditions stated in this License.
330
+
331
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
332
+ any Contribution intentionally submitted for inclusion in the Work
333
+ by You to the Licensor shall be under the terms and conditions of
334
+ this License, without any additional terms or conditions.
335
+ Notwithstanding the above, nothing herein shall supersede or modify
336
+ the terms of any separate license agreement you may have executed
337
+ with Licensor regarding such Contributions.
338
+
339
+ 6. Trademarks. This License does not grant permission to use the trade
340
+ names, trademarks, service marks, or product names of the Licensor,
341
+ except as required for reasonable and customary use in describing the
342
+ origin of the Work and reproducing the content of the NOTICE file.
343
+
344
+ 7. Disclaimer of Warranty. Unless required by applicable law or
345
+ agreed to in writing, Licensor provides the Work (and each
346
+ Contributor provides its Contributions) on an "AS IS" BASIS,
347
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
348
+ implied, including, without limitation, any warranties or conditions
349
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
350
+ PARTICULAR PURPOSE. You are solely responsible for determining the
351
+ appropriateness of using or redistributing the Work and assume any
352
+ risks associated with Your exercise of permissions under this License.
353
+
354
+ 8. Limitation of Liability. In no event and under no legal theory,
355
+ whether in tort (including negligence), contract, or otherwise,
356
+ unless required by applicable law (such as deliberate and grossly
357
+ negligent acts) or agreed to in writing, shall any Contributor be
358
+ liable to You for damages, including any direct, indirect, special,
359
+ incidental, or consequential damages of any character arising as a
360
+ result of this License or out of the use or inability to use the
361
+ Work (including but not limited to damages for loss of goodwill,
362
+ work stoppage, computer failure or malfunction, or any and all
363
+ other commercial damages or losses), even if such Contributor
364
+ has been advised of the possibility of such damages.
365
+
366
+ 9. Accepting Warranty or Additional Liability. While redistributing
367
+ the Work or Derivative Works thereof, You may choose to offer,
368
+ and charge a fee for, acceptance of support, warranty, indemnity,
369
+ or other liability obligations and/or rights consistent with this
370
+ License. However, in accepting such obligations, You may act only
371
+ on Your own behalf and on Your sole responsibility, not on behalf
372
+ of any other Contributor, and only if You agree to indemnify,
373
+ defend, and hold each Contributor harmless for any liability
374
+ incurred by, or claims asserted against, such Contributor by reason
375
+ of your accepting any such warranty or additional liability.
376
+
377
+ END OF TERMS AND CONDITIONS
378
+
379
+ APPENDIX: How to apply the Apache License to your work.
380
+
381
+ To apply the Apache License to your work, attach the following
382
+ boilerplate notice, with the fields enclosed by brackets "[]"
383
+ replaced with your own identifying information. (Don't include
384
+ the brackets!) The text should be enclosed in the appropriate
385
+ comment syntax for the file format. We also recommend that a
386
+ file or class name and description of purpose be included on the
387
+ same "printed page" as the copyright notice for easier
388
+ identification within third-party archives.
389
+
390
+ Copyright (c) 2015-2018 Google, Inc., Netflix, Inc., Microsoft Corp. and contributors
391
+
392
+ Licensed under the Apache License, Version 2.0 (the "License");
393
+ you may not use this file except in compliance with the License.
394
+ You may obtain a copy of the License at
395
+
396
+ http://www.apache.org/licenses/LICENSE-2.0
397
+
398
+ Unless required by applicable law or agreed to in writing, software
399
+ distributed under the License is distributed on an "AS IS" BASIS,
400
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
401
+ See the License for the specific language governing permissions and
402
+ limitations under the License.
403
+
404
+
405
+
406
+ tslib
407
+ 0BSD
408
+ Copyright (c) Microsoft Corporation.
409
+
410
+ Permission to use, copy, modify, and/or distribute this software for any
411
+ purpose with or without fee is hereby granted.
412
+
413
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
414
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
415
+ AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
416
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
417
+ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
418
+ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
419
+ PERFORMANCE OF THIS SOFTWARE.
420
+
421
+ zone.js
422
+ MIT
423
+ The MIT License
424
+
425
+ Copyright (c) 2010-2025 Google LLC. https://angular.dev/license
426
+
427
+ Permission is hereby granted, free of charge, to any person obtaining a copy
428
+ of this software and associated documentation files (the "Software"), to deal
429
+ in the Software without restriction, including without limitation the rights
430
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
431
+ copies of the Software, and to permit persons to whom the Software is
432
+ furnished to do so, subject to the following conditions:
433
+
434
+ The above copyright notice and this permission notice shall be included in
435
+ all copies or substantial portions of the Software.
436
+
437
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
438
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
439
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
440
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
441
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
442
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
443
+ THE SOFTWARE.
@@ -0,0 +1,40 @@
1
+ <!doctype html>
2
+ <html lang="en" data-beasties-container>
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <title>Cue - Card</title>
6
+ <base href="./">
7
+ <meta name="viewport" content="width=device-width, initial-scale=1">
8
+ <link rel="icon" type="image/x-icon" href="favicon.ico">
9
+
10
+ <script src="runtime.js" type="module"></script>
11
+ <script src="polyfills.js" type="module"></script>
12
+ <script src="main.js" type="module"></script>
13
+
14
+ <style>
15
+ body {
16
+ margin: 0;
17
+ padding: 24px;
18
+ background: #f5f6f9;
19
+ font-family: Poppins, system-ui, sans-serif;
20
+ }
21
+
22
+ .stack {
23
+ max-width: 520px;
24
+ display: grid;
25
+ gap: 12px;
26
+ }
27
+
28
+ cue-card {
29
+ display: block;
30
+ }
31
+ </style>
32
+ <style>@font-face{font-family:Poppins;font-style:normal;font-display:swap;font-weight:400;src:url(poppins-latin-ext-400-normal.woff2) format("woff2"),url(poppins-latin-ext-400-normal.woff) format("woff");unicode-range:U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Poppins;font-style:normal;font-display:swap;font-weight:400;src:url(poppins-latin-400-normal.woff2) format("woff2"),url(poppins-latin-400-normal.woff) format("woff");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}:root{--agent-plan-edge-default:var(--cue-color-lightgray);--agent-plan-edge-running:var(--cue-color-blue);--agent-plan-edge-finished:var(--cue-color-blue);--agent-plan-node-active-outline:var(--cue-color-blue);--agent-plan-node-finished-box-shadow:0 0 12px var(--cue-color-green)}:root{--cue-font-family:"Poppins";--cue-font-weight-regular:400;--cue-font-weight-medium:500;--cue-font-weight-semibold:600;--cue-font-xs-size:56.25% ;--cue-font-xs-line-height:calc(16 / 11);--cue-font-xs-letter-spacing:.075em;--cue-font-s-size:68.75% ;--cue-font-s-line-height:calc(16 / 11);--cue-font-s-letter-spacing:.05em;--cue-font-m-size:87.5% ;--cue-font-m-line-height:calc(20 / 14);--cue-font-m-letter-spacing:.04em;--cue-font-l-size:112.5% ;--cue-font-l-line-height:calc(24 / 18);--cue-font-l-letter-spacing:.01em;--cue-font-xl-size:150% ;--cue-font-xl-line-height:calc(32 / 24);--cue-font-xl-letter-spacing:.01em}:root{--cue-color-blue:#2859e1;--cue-color-darkblue:#1744c2;--cue-color-ultralightgray:#f5f6f9;--cue-color-lightgray:#d9d9d9;--cue-color-midgray:#8394b0;--cue-color-darkmidgray:#404955;--cue-color-darkgray:#121c2b;--cue-color-black:#0e1827;--cue-color-white:#ffffff;--cue-color-green:#e2f552;--cue-main-background:var(--cue-color-ultralightgray);--cue-main-foreground:var(--cue-color-darkgray);--cue-default:var(--cue-color-white);--cue-defaultContrast:var(--cue-color-darkgray);--cue-primary:var(--cue-color-blue);--cue-primaryContrast:var(--cue-color-white);--cue-accent:var(--cue-color-green);--cue-accentContrast:var(--cue-color-darkgray);--cue-secondary:var(--cue-color-darkblue);--cue-secondaryContrast:var(--cue-color-white);--cue-neutral:var(--cue-color-midgray);--cue-neutralContrast:var(--cue-color-darkgray);--cue-info:var(--cue-color-darkblue);--cue-infoContrast:var(--cue-color-white);--cue-error:#fc2626;--cue-errorContrast:var(--cue-color-white);--cue-success:#4caf50;--cue-successContrast:var(--cue-color-white);--cue-warning:#ffc107;--cue-warningContrast:var(--cue-color-white);--cue-border-color:var(--cue-color-lightgray);--cue-scrollbar-thumb-color:var(--cue-color-lightgray);--cue-scrollbar-track-color:transparent}:root{--cue-chart-text-color:var(--cue-color-darkgray);--cue-chart-text-color-select:var(--cue-color-black);--cue-chart-border-background-color:var(--cue-color-white);--chart-graph-edge-color:var(--cue-color-darkgray)}:root{--cue-dim-gap-xs:.25em ;--cue-dim-gap-s:.5em ;--cue-dim-gap-m:1em ;--cue-dim-gap-l:1.875em ;--cue-dim-gap-xl:2.5em ;--cue-dim-elem-xs:1.5em ;--cue-dim-elem-s:2em ;--cue-dim-elem-m:2.75em ;--cue-dim-elem-l:3.5em ;--cue-dim-s-gap-s:.375em ;--cue-dim-s-gap-m:.625em ;--cue-dim-s-gap-l:1em ;--cue-dim-s-elem-xs:1em ;--cue-dim-s-elem-s:1.25em ;--cue-dim-s-elem-m:1.75em ;--cue-dim-padding-main:.625em ;--cue-dim-padding-sub:.625em }@media(min-width:20em){:root{--cue-dim-padding-main:1.25em ;--cue-dim-padding-sub:.625em }}@media(min-width:40em){:root{--cue-dim-padding-main:2em ;--cue-dim-padding-sub:1em }}:root{--cue-card-border-radius:1.875em ;--cue-card-padding-x:1em ;--cue-card-padding-y:1em ;--cue-card-border-color:var(--cue-border-color);--cue-card-box-shadow:0 1px 1.5em rgba(0, 0, 0, .2)}@container cue-container (width < 20em){cue-card{--cue-card-border-radius:1.25em ;--cue-card-padding-x:.75em ;--cue-card-padding-y:.75em }}:root{--cue-button-gap:.5em ;--cue-button-xs-height:var(--cue-dim-elem-xs);--cue-button-xs-padding-x:.1875em ;--cue-button-xs-icon-width:1.125em ;--cue-button-s-height:var(--cue-dim-elem-s);--cue-button-s-padding-x:.375em ;--cue-button-s-icon-width:1.25em ;--cue-button-m-height:var(--cue-dim-elem-m);--cue-button-m-padding-x:.625em ;--cue-button-m-icon-width:1.5em ;--cue-button-l-height:var(--cue-dim-elem-l);--cue-button-l-padding-x:.75em ;--cue-button-l-icon-width:1.75em ;--cue-button-border-radius:var(--button-height);--cue-button-border-width:1px;--cue-button-border-style:solid;--cue-button-primary-background:var(--cue-color-blue);--cue-button-primary-foreground:var(--cue-color-white);--cue-button-primary-focus-color:var(--cue-color-blue);--cue-button-primary-border-color:var(--cue-color-blue);--cue-button-primary-disabled-foreground:var(--background-color, --cue-main-background);--cue-button-primary-disabled-foreground:var(--cue-color-lightgray);--cue-button-primary-disabled-background:var(--cue-color-ultralightgray);--cue-button-primary-disabled-border-color:var(--cue-color-ultralightgray);--cue-button-accent-background:var(--cue-accent);--cue-button-accent-foreground:var(--cue-accentContrast);--cue-button-accent-focus-color:var(--cue-accent);--cue-button-accent-border-color:var(--cue-accent);--cue-button-accent-disabled-foreground:var(--background-color, --cue-main-background);--cue-button-accent-disabled-foreground:var(--cue-color-lightgray);--cue-button-accent-disabled-background:var(--cue-color-ultralightgray);--cue-button-accent-disabled-border-color:var(--cue-color-ultralightgray);--cue-button-secondary-background:transparent;--cue-button-secondary-foreground:currentColor;--cue-button-secondary-focus-color:currentColor;--cue-button-secondary-border-color:currentColor;--cue-button-secondary-disabled-background:transparent;--cue-button-secondary-disabled-foreground:var(--cue-color-midgray);--cue-button-secondary-disabled-border-color:var(--cue-color-midgray);--cue-button-tertiary-background:transparent;--cue-button-tertiary-foreground:currentColor;--cue-button-tertiary-focus-color:currentColor;--cue-button-tertiary-border-color:transparent;--cue-button-tertiary-disabled-background:transparent;--cue-button-tertiary-disabled-foreground:var(--cue-color-midgray);--cue-button-tertiary-disabled-border-color:transparent;--cue-button-ghost-background:transparent;--cue-button-ghost-foreground:currentColor;--cue-button-ghost-focus-color:transparent;--cue-button-ghost-border-color:transparent;--cue-button-ghost-disabled-background:transparent;--cue-button-ghost-disabled-foreground:var(--cue-color-midgray);--cue-button-ghost-disabled-border-color:transparent;--cue-button-danger-background:transparent;--cue-button-danger-foreground:var(--cue-error);--cue-button-danger-focus-color:var(--cue-error);--cue-button-danger-border-color:transparent;--cue-button-danger-disabled-foreground:transparent;--cue-button-danger-disabled-background:var(--cue-color-midgray);--cue-button-danger-disabled-border-color:transparent;--cue-button-dim-background:transparent;--cue-button-dim-foreground:var(--cue-color-midgray);--cue-button-dim-focus-color:var(--cue-color-midgray);--cue-button-dim-border-color:var(--cue-color-lightgray);--cue-button-dim-disabled-background:transparent;--cue-button-dim-disabled-foreground:var(--cue-color-lightgray);--cue-button-dim-disabled-border-color:var(--cue-color-lightgray);--cue-button-xs-label-padding-x:.75em ;--cue-button-s-label-padding-x:1em ;--cue-button-m-label-padding-x:1.5em ;--cue-button-l-label-padding-x:3em }@media(prefers-color-scheme:dark){:root{--cue-button-primary-disabled-foreground:var(--cue-color-midgray);--cue-button-primary-disabled-border-color:var(--cue-color-midgray);--cue-button-primary-disabled-background:var(--cue-color-lightgray);--cue-button-secondary-disabled-foreground:var(--cue-color-darkmidgray);--cue-button-secondary-disabled-border-color:var(--cue-color-darkmidgray);--cue-button-tertiary-disabled-foreground:var(--cue-color-darkmidgray)}}:root{--cue-input-switch-background:var(--cue-color-midgray);--cue-input-switch-indicator-background:var(--cue-color-white);--cue-input-switch-indicator-foreground:var(--cue-color-black);--cue-input-switch-focus-color:var(--cue-color-white);--cue-input-switch-checked-background:var(--cue-color-darkblue);--cue-input-switch-checked-indicator-background:var(--cue-color-white);--cue-input-switch-checked-indicator-foreground:var(--cue-color-black);--cue-input-switch-disabled-background:var(--cue-color-midgray);--cue-input-switch-disabled-indicator-background:var(--cue-color-lightgray);--cue-input-switch-disabled-indicator-foreground:var(--cue-color-midgray)}:root{--cue-chip-delete-background-color:var(--cue-color-midgray);--cue-chip-delete-hover-background-color:var(--cue-color-darkmidgray);--cue-chip-delete-icon-color:var(--cue-color-ultralightgray)}:root{--cue-input-value-color:var(--cue-main-foreground);--cue-input-label-color:var(--cue-main-foreground);--cue-input-border-color:var(--cue-border-color);--cue-input-border-bottom-color:var(--cue-main-foreground);--cue-input-placeholder-color:var(--cue-color-darkmidgray);--cue-input-xs-padding:.75em .375em .25em .375em ;--cue-input-xs-font-size:.8125em ;--cue-input-xs-label-top:.75em ;--cue-input-xs-label-left:.375em ;--cue-input-xs-label-focused-top:.125em ;--cue-input-xs-label-focused-font-size:.625em ;--cue-input-s-padding:.875em .4375em .3125em .4375em ;--cue-input-s-font-size:.875em ;--cue-input-s-label-top:.875em ;--cue-input-s-label-left:.4375em ;--cue-input-s-label-focused-top:.1875em ;--cue-input-s-label-focused-font-size:.6875em ;--cue-input-m-padding:1em .5em .375em .5em ;--cue-input-m-font-size:1em ;--cue-input-m-label-top:1em ;--cue-input-m-label-left:.5em ;--cue-input-m-label-focused-top:.25em ;--cue-input-m-label-focused-font-size:.75em ;--cue-input-l-padding:1.125em .625em .5em .625em ;--cue-input-l-font-size:1.125em ;--cue-input-l-label-top:1.125em ;--cue-input-l-label-left:.625em ;--cue-input-l-label-focused-top:.3125em ;--cue-input-l-label-focused-font-size:.875em }:root{--cue-menu-border-radius:.9375em ;--cue-menu-padding-x:.5em ;--cue-menu-padding-y:.5em ;--cue-menu-gap:.5em ;--cue-menu-background-color:var(--cue-color-white);--cue-menu-foreground-color:var(--cue-color-black);--cue-menu-border-color:var(--cue-border-color);--cue-menu-box-shadow:0 1px 1.25em rgba(0, 0, 0, .1);--cue-menu-max-height:300px;--cue-menu-item-background-color:var(--cue-color-white);--cue-menu-item-selected-background-color:var(--cue-color-lightgray);--cue-menu-item-focus-background-color:var(--cue-color-ultralightgray);--cue-menu-item-height:var(--cue-dim-elem-m);--cue-menu-item-border-radius:.9375em ;--cue-menu-item-padding-x:1em ;--cue-menu-item-gap:1em ;--cue-menu-item-icon-size:1.25em ;--cue-menu-item-xs-min-width:3em;--cue-menu-item-s-min-width:6em;--cue-menu-item-m-min-width:12em}@container cue-container (width < 20em){:root{--cue-menu-item-xs-min-width:3em;--cue-menu-item-s-min-width:6em;--cue-menu-item-m-min-width:12em}}:root{--cue-grid-gap-s:var(--cue-dim-gap-s);--cue-grid-gap-m:var(--cue-dim-gap-m);--cue-grid-gap-l:var(--cue-dim-gap-l)}:root{--cue-flex-gap-xs:var(--cue-dim-gap-xs);--cue-flex-gap-s:var(--cue-dim-gap-s);--cue-flex-gap-m:var(--cue-dim-gap-m);--cue-flex-gap-l:var(--cue-dim-gap-l);--cue-flex-gap-xl:var(--cue-dim-gap-xl)}:root{--cue-table-row-border-bottom:1px solid;--cue-table-row-border-bottom-color:var(--cue-color-midgray);--cue-table-text-color:var(--cue-main-foreground);--cue-table-secondary-text-color:var(--cue-color-midgray);--cue-table-highlight-color:var(--cue-color-ultralightgray);--cue-table-highlight-text-color:var(--cue-color-darkgray);--cue-table-selected-color:var(--cue-color-green);--cue-table-selected-text-color:var(--cue-color-darkgray);--cue-table-border-color:var(--cue-border-color);--cue-table-row-hover-bg:var(--cue-color-ultralightgray);--cue-table-xs-height:200px;--cue-table-s-height:300px;--cue-table-m-height:400px;--cue-table-l-height:500px;--cue-table-xl-height:600px;--cue-table-font-xs-size:var(--cue-font-xs-size);--cue-table-font-s-size:var(--cue-font-s-size);--cue-table-font-m-size:var(--cue-font-m-size);--cue-table-font-l-size:var(--cue-font-l-size);--cue-table-data-font-xs-size:var(--cue-font-xs-size);--cue-table-data-font-s-size:var(--cue-font-s-size);--cue-table-data-font-m-size:var(--cue-font-m-size);--cue-table-data-font-l-size:var(--cue-font-l-size);--cue-table-data-font-xl-size:var(--cue-font-xl-size)}:root{--cue-paginator-text-color:var(--cue-main-foreground)}:root{--cue-modal-overlay-color:rgba(245, 246, 249, .7)}:root{--cue-icon-width:var(--cue-dim-elem-xs)}:root{--cue-stepper-border-color:var(--cue-main-foreground);--cue-stepper-fill-color:var(--cue-main-foreground);--cue-stepper-connector-color:var(--cue-main-foreground)}:root{color-scheme:light}html{padding:0;margin:0;height:100%;width:100%}body{display:flex;flex-direction:column;background-color:var(--cue-main-background);color:var(--cue-main-foreground)}body>*{scrollbar-color:var(--cue-scrollbar-thumb-color) var(--cue-scrollbar-track-color);scrollbar-width:thin;scroll-behavior:smooth}</style><link rel="stylesheet" href="styles.css" media="print" onload="this.media='all'"><noscript><link rel="stylesheet" href="styles.css"></noscript></head>
33
+ <body>
34
+ <div class="stack">
35
+ <cue-card style="height: 120px">Default card content</cue-card>
36
+ <cue-card style="height: 120px" variant="primary">Primary card content</cue-card>
37
+ <cue-card style="height: 120px" variant="accent" shadow="true">Accent card with shadow</cue-card>
38
+ </div>
39
+ <script src="runtime.js" type="module"></script><script src="polyfills.js" type="module"></script><script src="main.js" type="module"></script></body>
40
+ </html>