@dataengineeringformachinelearning/viking-ui 3.0.0-alpha.2 → 4.0.0

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 (198) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +55 -12
  3. package/dist/LICENSE +201 -0
  4. package/dist/README.md +251 -0
  5. package/dist/fesm2022/dataengineeringformachinelearning-viking-ui.mjs +13751 -0
  6. package/dist/fesm2022/dataengineeringformachinelearning-viking-ui.mjs.map +1 -0
  7. package/dist/index.js +1 -4051
  8. package/dist/package.json +87 -0
  9. package/dist/scripts/build-web-components.mjs +37 -0
  10. package/dist/src/tokens/series-presets.ts +15 -0
  11. package/dist/src/tokens/tailwind.preset.js +209 -0
  12. package/dist/src/tokens/viking-tokens.json +318 -0
  13. package/dist/src/web/badge/viking-badge-wc.ts +116 -0
  14. package/dist/src/web/button/viking-button-wc.ts +165 -0
  15. package/dist/src/web/callout/viking-callout-wc.ts +105 -0
  16. package/dist/src/web/card/viking-card-wc.ts +66 -0
  17. package/dist/src/web/core/base.ts +56 -0
  18. package/dist/src/web/core/dom.ts +53 -0
  19. package/dist/src/web/core/icons-inline.ts +44 -0
  20. package/dist/src/web/core/styles.ts +1138 -0
  21. package/dist/src/web/core/types.ts +19 -0
  22. package/dist/src/web/field/viking-field-wc.ts +154 -0
  23. package/dist/src/web/index.ts +73 -0
  24. package/dist/src/web/input/viking-input-wc.ts +211 -0
  25. package/dist/src/web/modal/viking-modal-wc.ts +187 -0
  26. package/dist/src/web/search-palette/viking-search-palette-wc.ts +494 -0
  27. package/dist/src/web/select/viking-select-wc.ts +218 -0
  28. package/dist/src/web/suite-header/viking-suite-header-wc.ts +714 -0
  29. package/dist/src/web/suite-search-palette/viking-suite-search-palette-wc.ts +234 -0
  30. package/dist/src/web/theme-toggle/viking-theme-toggle-wc.ts +139 -0
  31. package/dist/src/web/types.ts +37 -0
  32. package/dist/src/web/web-components.spec.ts +297 -0
  33. package/dist/types/dataengineeringformachinelearning-viking-ui.d.ts +2658 -0
  34. package/dist/viking.manifest.json +271 -0
  35. package/dist/web-components.js +2427 -126
  36. package/package.json +25 -11
  37. package/src/assets/drakkar-favicon.svg +17 -0
  38. package/src/core/brand/deml-lockup.svg +5 -0
  39. package/src/core/brand/deml-mark-compact.svg +4 -0
  40. package/src/core/brand/deml-mark-filled.svg +3 -0
  41. package/src/core/brand/deml-mark-outline.svg +4 -0
  42. package/src/core/brand-icons.ts +62 -0
  43. package/src/core/icons.spec.ts +52 -0
  44. package/src/core/icons.ts +206 -0
  45. package/src/core/integration-brand-icons.ts +77 -0
  46. package/src/core/lucide-paths.generated.ts +130 -0
  47. package/src/core/types.ts +85 -0
  48. package/src/core/uid.ts +7 -0
  49. package/src/lib/accordion/accordion.ts +126 -0
  50. package/src/lib/app-header/app-header.scss +274 -0
  51. package/src/lib/app-header/app-header.ts +43 -0
  52. package/src/lib/app-sidebar/app-sidebar.scss +415 -0
  53. package/src/lib/app-sidebar/app-sidebar.ts +29 -0
  54. package/src/lib/auth-panel/auth-panel.spec.ts +132 -0
  55. package/src/lib/auth-panel/auth-panel.ts +228 -0
  56. package/src/lib/autocomplete/autocomplete.ts +223 -0
  57. package/src/lib/avatar/avatar.ts +126 -0
  58. package/src/lib/badge/badge.ts +182 -0
  59. package/src/lib/bar/bar.ts +31 -0
  60. package/src/lib/brand/brand.ts +60 -0
  61. package/src/lib/breadcrumbs/breadcrumbs.ts +81 -0
  62. package/src/lib/button/button-group.ts +40 -0
  63. package/src/lib/button/button.scss +96 -0
  64. package/src/lib/button/button.ts +98 -0
  65. package/src/lib/calendar/calendar.ts +253 -0
  66. package/src/lib/callout/callout.ts +211 -0
  67. package/src/lib/card/card-title.spec.ts +27 -0
  68. package/src/lib/card/card-title.ts +50 -0
  69. package/src/lib/card/card.ts +170 -0
  70. package/src/lib/carousel/carousel.ts +206 -0
  71. package/src/lib/chart/chart-zoom.spec.ts +65 -0
  72. package/src/lib/chart/chart-zoom.ts +71 -0
  73. package/src/lib/chart/chart.ts +1257 -0
  74. package/src/lib/chart-card-header/chart-card-header.ts +80 -0
  75. package/src/lib/chart-empty-state/chart-empty-state.ts +146 -0
  76. package/src/lib/chart-panel/chart-panel.ts +133 -0
  77. package/src/lib/checkbox/checkbox.ts +139 -0
  78. package/src/lib/color-picker/color-picker.ts +148 -0
  79. package/src/lib/command/command.ts +260 -0
  80. package/src/lib/composer/composer.ts +180 -0
  81. package/src/lib/confirm-dialog/confirm-dialog.ts +163 -0
  82. package/src/lib/confirm-dialog/dialog.service.ts +79 -0
  83. package/src/lib/context/context.ts +75 -0
  84. package/src/lib/core/cva.ts +33 -0
  85. package/src/lib/date-picker/date-picker.ts +139 -0
  86. package/src/lib/dropdown/dropdown.ts +188 -0
  87. package/src/lib/editor/editor.ts +170 -0
  88. package/src/lib/empty-state/empty-state.ts +100 -0
  89. package/src/lib/fab/fab.ts +76 -0
  90. package/src/lib/field/field.ts +111 -0
  91. package/src/lib/file-upload/file-upload.ts +208 -0
  92. package/src/lib/footer/footer.scss +155 -0
  93. package/src/lib/footer/footer.ts +28 -0
  94. package/src/lib/form-section/form-section.ts +200 -0
  95. package/src/lib/forms.spec.ts +92 -0
  96. package/src/lib/gauge-arc/gauge-arc.ts +85 -0
  97. package/src/lib/hud-panel/hud-panel.ts +27 -0
  98. package/src/lib/icon/icon.ts +284 -0
  99. package/src/lib/icon-badge/icon-badge.ts +87 -0
  100. package/src/lib/icon-heading/icon-heading.spec.ts +32 -0
  101. package/src/lib/icon-heading/icon-heading.ts +38 -0
  102. package/src/lib/icon-text/icon-text.ts +120 -0
  103. package/src/lib/input/input.ts +119 -0
  104. package/src/lib/kanban/kanban.ts +211 -0
  105. package/src/lib/kbd/kbd.ts +32 -0
  106. package/src/lib/label/label.ts +39 -0
  107. package/src/lib/loading-overlay/loading-overlay.ts +80 -0
  108. package/src/lib/menubar/menubar.ts +77 -0
  109. package/src/lib/metric-card/metric-card.ts +33 -0
  110. package/src/lib/modal/modal.ts +207 -0
  111. package/src/lib/native-select/native-select.ts +124 -0
  112. package/src/lib/navbar/navbar.ts +124 -0
  113. package/src/lib/navigation-menu/navigation-menu.ts +116 -0
  114. package/src/lib/otp-input/otp-input.ts +164 -0
  115. package/src/lib/page-back-link/page-back-link.ts +74 -0
  116. package/src/lib/page-header/page-header.ts +70 -0
  117. package/src/lib/pagination/pagination.ts +157 -0
  118. package/src/lib/pillbox/pillbox.ts +157 -0
  119. package/src/lib/popover/popover.ts +92 -0
  120. package/src/lib/profile/profile.ts +73 -0
  121. package/src/lib/progress/progress.ts +123 -0
  122. package/src/lib/radio/radio.ts +132 -0
  123. package/src/lib/ring-gauge/ring-gauge.ts +75 -0
  124. package/src/lib/scroll-area/scroll-area.ts +57 -0
  125. package/src/lib/search-palette/search-palette.scss +288 -0
  126. package/src/lib/search-palette/search-palette.ts +114 -0
  127. package/src/lib/select/select.ts +292 -0
  128. package/src/lib/separator/separator.ts +59 -0
  129. package/src/lib/sheet/sheet.ts +192 -0
  130. package/src/lib/sidebar-nav/sidebar-nav.scss +218 -0
  131. package/src/lib/sidebar-nav/sidebar-nav.ts +158 -0
  132. package/src/lib/site-drakkar/site-footer.ts +129 -0
  133. package/src/lib/site-drakkar/site-navbar.scss +2 -0
  134. package/src/lib/site-drakkar/site-navbar.ts +267 -0
  135. package/src/lib/site-drakkar/suite-search-items.spec.ts +61 -0
  136. package/src/lib/skeleton/skeleton.ts +51 -0
  137. package/src/lib/slider/slider.ts +133 -0
  138. package/src/lib/spinner/spinner.ts +75 -0
  139. package/src/lib/status-metric-row/status-metric-row.ts +74 -0
  140. package/src/lib/suite-search-palette/suite-search-palette.ts +95 -0
  141. package/src/lib/switch/switch.ts +131 -0
  142. package/src/lib/table/table.ts +137 -0
  143. package/src/lib/tabs/tab-panel.ts +61 -0
  144. package/src/lib/tabs/tab.ts +107 -0
  145. package/src/lib/tabs/tabs.ts +109 -0
  146. package/src/lib/textarea/textarea.ts +103 -0
  147. package/src/lib/theme-toggle/theme-toggle.spec.ts +40 -0
  148. package/src/lib/theme-toggle/theme-toggle.ts +39 -0
  149. package/src/lib/time-picker/time-picker.ts +197 -0
  150. package/src/lib/timeline/timeline.ts +152 -0
  151. package/src/lib/toast/toast.ts +196 -0
  152. package/src/lib/toggle/toggle-group.ts +60 -0
  153. package/src/lib/toggle/toggle.ts +101 -0
  154. package/src/lib/tooltip/tooltip.ts +119 -0
  155. package/src/lib/typography/heading.ts +52 -0
  156. package/src/lib/typography/text.ts +51 -0
  157. package/src/lib/uptime-bar/uptime-bar.ts +55 -0
  158. package/src/lib/verification-code-field/verification-code-field.ts +149 -0
  159. package/src/lib/whitepaper-cta/whitepaper-cta.scss +130 -0
  160. package/src/lib/whitepaper-cta/whitepaper-cta.ts +78 -0
  161. package/src/lib/wizard/wizard.ts +80 -0
  162. package/src/public-api.ts +172 -0
  163. package/src/tokens/series-presets.ts +15 -0
  164. package/src/tokens/tailwind.preset.js +209 -0
  165. package/src/viking-ui.spec.ts +416 -0
  166. package/src/web/web-components.spec.ts +297 -0
  167. package/dist/elements/button/viking-button.d.ts +0 -14
  168. package/dist/elements/card/viking-card.d.ts +0 -8
  169. package/dist/elements/core/dom.d.ts +0 -4
  170. package/dist/elements/core/styles.d.ts +0 -2
  171. package/dist/elements/modal/viking-modal.d.ts +0 -15
  172. package/dist/index.d.ts +0 -1
  173. package/dist/lib/core/brand-icons.d.ts +0 -29
  174. package/dist/lib/core/icons.d.ts +0 -132
  175. package/dist/lib/core/integration-brand-icons.d.ts +0 -18
  176. package/dist/lib/core/lucide-paths.generated.d.ts +0 -90
  177. package/dist/lib/site-drakkar/site-drakkar.config.d.ts +0 -50
  178. package/dist/lib/site-drakkar/suite-search-items.d.ts +0 -17
  179. package/dist/web/badge/viking-badge-wc.d.ts +0 -28
  180. package/dist/web/button/viking-button-wc.d.ts +0 -28
  181. package/dist/web/callout/viking-callout-wc.d.ts +0 -27
  182. package/dist/web/card/viking-card-wc.d.ts +0 -29
  183. package/dist/web/core/base.d.ts +0 -12
  184. package/dist/web/core/dom.d.ts +0 -11
  185. package/dist/web/core/icons-inline.d.ts +0 -7
  186. package/dist/web/core/styles.d.ts +0 -12
  187. package/dist/web/core/types.d.ts +0 -10
  188. package/dist/web/field/viking-field-wc.d.ts +0 -32
  189. package/dist/web/index.d.ts +0 -15
  190. package/dist/web/input/viking-input-wc.d.ts +0 -32
  191. package/dist/web/modal/viking-modal-wc.d.ts +0 -50
  192. package/dist/web/search-palette/viking-search-palette-wc.d.ts +0 -64
  193. package/dist/web/select/viking-select-wc.d.ts +0 -48
  194. package/dist/web/suite-header/viking-suite-header-wc.d.ts +0 -36
  195. package/dist/web/suite-search-palette/viking-suite-search-palette-wc.d.ts +0 -39
  196. package/dist/web/theme-toggle/viking-theme-toggle-wc.d.ts +0 -19
  197. package/dist/web/types.d.ts +0 -40
  198. package/dist/web-components/index.d.ts +0 -1
@@ -0,0 +1,271 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft-07/schema",
3
+ "name": "@dataengineeringformachinelearning/viking-ui",
4
+ "description": "Machine-readable catalog of Viking-UI components and their Angular exports. Validated by `npm run check:viking-upstream`.",
5
+ "lastAudited": "2026-07-04",
6
+ "components": {
7
+ "accordion": {
8
+ "exports": ["VikingAccordion", "VikingAccordionItem"]
9
+ },
10
+ "app-header": {
11
+ "exports": ["VikingAppHeader"]
12
+ },
13
+ "app-sidebar": {
14
+ "exports": ["VikingAppSidebar"]
15
+ },
16
+ "auth-panel": {
17
+ "exports": ["VikingAuthPanel"]
18
+ },
19
+ "autocomplete": {
20
+ "exports": ["VikingAutocomplete"]
21
+ },
22
+ "avatar": {
23
+ "exports": ["VikingAvatar"]
24
+ },
25
+ "badge": {
26
+ "exports": ["VikingBadge"]
27
+ },
28
+ "bar": {
29
+ "exports": ["VikingBar"]
30
+ },
31
+ "brand": {
32
+ "exports": ["VikingBrand"]
33
+ },
34
+ "breadcrumbs": {
35
+ "exports": ["VikingBreadcrumb", "VikingBreadcrumbs"]
36
+ },
37
+ "button": {
38
+ "exports": ["VikingButton", "VikingButtonGroup", "VikingButtonVariant"]
39
+ },
40
+ "calendar": {
41
+ "exports": ["VikingCalendar"]
42
+ },
43
+ "callout": {
44
+ "exports": ["VikingCallout"]
45
+ },
46
+ "card": {
47
+ "exports": ["VikingCard", "VikingCardFooter", "VikingCardHeader"]
48
+ },
49
+ "carousel": {
50
+ "exports": ["VikingCarousel", "VikingCarouselSlide"]
51
+ },
52
+ "chart": {
53
+ "exports": ["VikingChart"]
54
+ },
55
+ "checkbox": {
56
+ "exports": ["VikingCheckbox"]
57
+ },
58
+ "color-picker": {
59
+ "exports": ["VikingColorPicker"]
60
+ },
61
+ "command": {
62
+ "exports": ["VikingCommand"]
63
+ },
64
+ "composer": {
65
+ "exports": ["VikingComposer"]
66
+ },
67
+ "context": {
68
+ "exports": ["VikingContext"]
69
+ },
70
+ "core": {
71
+ "exports": [
72
+ "VIKING_FILLED_ICON_NAMES",
73
+ "VIKING_ICON_NAMES",
74
+ "VIKING_ICON_PATHS",
75
+ "VikingChartCurve",
76
+ "VikingChartKind",
77
+ "VikingChartSeries",
78
+ "VikingCommandItem",
79
+ "VikingControl",
80
+ "VikingDonutSegment",
81
+ "VikingIconName",
82
+ "VikingKanbanCard",
83
+ "VikingKanbanColumn",
84
+ "VikingKanbanMove",
85
+ "VikingSelectOption",
86
+ "VikingSize",
87
+ "VikingToastInstance",
88
+ "VikingToastOptions",
89
+ "VikingTone",
90
+ "provideVikingCva"
91
+ ]
92
+ },
93
+ "date-picker": {
94
+ "exports": ["VikingDatePicker"]
95
+ },
96
+ "dropdown": {
97
+ "exports": ["VikingDropdown", "VikingMenuItem"]
98
+ },
99
+ "editor": {
100
+ "exports": ["VikingEditor"]
101
+ },
102
+ "empty-state": {
103
+ "exports": ["VikingEmptyState"]
104
+ },
105
+ "fab": {
106
+ "exports": ["VikingFab"]
107
+ },
108
+ "field": {
109
+ "exports": ["VikingField"]
110
+ },
111
+ "file-upload": {
112
+ "exports": ["VikingFileUpload"]
113
+ },
114
+ "footer": {
115
+ "exports": ["VikingFooter"]
116
+ },
117
+ "gauge-arc": {
118
+ "exports": ["VikingGaugeArc"]
119
+ },
120
+ "hud-panel": {
121
+ "exports": ["VikingHudPanel"]
122
+ },
123
+ "icon": {
124
+ "exports": ["VikingIcon"]
125
+ },
126
+ "icon-text": {
127
+ "exports": ["VikingIconText"]
128
+ },
129
+ "input": {
130
+ "exports": ["VikingInput"]
131
+ },
132
+ "kanban": {
133
+ "exports": ["VikingKanban"]
134
+ },
135
+ "kbd": {
136
+ "exports": ["VikingKbd"]
137
+ },
138
+ "label": {
139
+ "exports": ["VikingLabel"]
140
+ },
141
+ "loading-overlay": {
142
+ "exports": ["VikingLoadingOverlay"]
143
+ },
144
+ "menubar": {
145
+ "exports": ["VikingMenubar", "VikingMenubarItem"]
146
+ },
147
+ "metric-card": {
148
+ "exports": ["VikingMetricCard", "VikingMetricRow"]
149
+ },
150
+ "modal": {
151
+ "exports": ["VikingModal"]
152
+ },
153
+ "native-select": {
154
+ "exports": ["VikingNativeSelect"]
155
+ },
156
+ "navbar": {
157
+ "exports": ["VikingNavbar", "VikingNavbarItem"]
158
+ },
159
+ "navigation-menu": {
160
+ "exports": ["VikingNavItem", "VikingNavigationMenu"]
161
+ },
162
+ "otp-input": {
163
+ "exports": ["VikingOtpInput"]
164
+ },
165
+ "verification-code-field": {
166
+ "exports": ["VikingVerificationCodeField"]
167
+ },
168
+ "page-header": {
169
+ "exports": ["VikingPageHeader"]
170
+ },
171
+ "pagination": {
172
+ "exports": ["VikingPagination"]
173
+ },
174
+ "pillbox": {
175
+ "exports": ["VikingPillbox"]
176
+ },
177
+ "popover": {
178
+ "exports": ["VikingPopover"]
179
+ },
180
+ "profile": {
181
+ "exports": ["VikingProfile"]
182
+ },
183
+ "progress": {
184
+ "exports": ["VikingProgress"]
185
+ },
186
+ "radio": {
187
+ "exports": ["VikingRadioGroup"]
188
+ },
189
+ "ring-gauge": {
190
+ "exports": ["VikingRingGauge"]
191
+ },
192
+ "scroll-area": {
193
+ "exports": ["VikingScrollArea"]
194
+ },
195
+ "search-palette": {
196
+ "exports": ["VikingSearchPalette"]
197
+ },
198
+ "suite-search-palette": {
199
+ "exports": [
200
+ "VikingSuiteSearchPalette",
201
+ "VikingSuiteSearchPaletteWc",
202
+ "buildSuiteSearchItems"
203
+ ]
204
+ },
205
+ "select": {
206
+ "exports": ["VikingSelect"]
207
+ },
208
+ "separator": {
209
+ "exports": ["VikingSeparator"]
210
+ },
211
+ "sheet": {
212
+ "exports": ["VikingSheet", "VikingSheetSide"]
213
+ },
214
+ "site-drakkar": {
215
+ "exports": [
216
+ "VikingSiteNavbar",
217
+ "VikingSiteFooter",
218
+ "SITE_FOOTER_COLUMNS",
219
+ "DEFAULT_SITE_URLS",
220
+ "resolveFooterHref",
221
+ "resolveNavHref",
222
+ "resolveBrandHref"
223
+ ]
224
+ },
225
+ "skeleton": {
226
+ "exports": ["VikingSkeleton"]
227
+ },
228
+ "slider": {
229
+ "exports": ["VikingSlider"]
230
+ },
231
+ "spinner": {
232
+ "exports": ["VikingSpinner"]
233
+ },
234
+ "switch": {
235
+ "exports": ["VikingSwitch"]
236
+ },
237
+ "table": {
238
+ "exports": ["VikingTable"]
239
+ },
240
+ "tabs": {
241
+ "exports": ["VIKING_TABS", "VikingTab", "VikingTabPanel", "VikingTabs"]
242
+ },
243
+ "textarea": {
244
+ "exports": ["VikingTextarea"]
245
+ },
246
+ "time-picker": {
247
+ "exports": ["VikingTimePicker"]
248
+ },
249
+ "timeline": {
250
+ "exports": ["VikingTimeline", "VikingTimelineItem"]
251
+ },
252
+ "toast": {
253
+ "exports": ["VikingToastService", "VikingToaster"]
254
+ },
255
+ "toggle": {
256
+ "exports": ["VIKING_TOGGLE_GROUP", "VikingToggle", "VikingToggleGroup"]
257
+ },
258
+ "tooltip": {
259
+ "exports": ["VikingTooltip"]
260
+ },
261
+ "typography": {
262
+ "exports": ["VikingHeading", "VikingText"]
263
+ },
264
+ "uptime-bar": {
265
+ "exports": ["VikingUptimeBar", "VikingUptimeStatus"]
266
+ },
267
+ "whitepaper-cta": {
268
+ "exports": ["VikingWhitepaperCta"]
269
+ }
270
+ }
271
+ }