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

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 (129) hide show
  1. package/README.md +180 -41
  2. package/dist/deml-components.css +1122 -0
  3. package/dist/design-tokens.css +688 -0
  4. package/dist/elements/button/viking-button.d.ts +14 -0
  5. package/dist/elements/card/viking-card.d.ts +8 -0
  6. package/dist/elements/core/dom.d.ts +4 -0
  7. package/dist/elements/core/styles.d.ts +2 -0
  8. package/dist/elements/modal/viking-modal.d.ts +15 -0
  9. package/dist/fonts/inter/InterVariable-Italic.woff2 +0 -0
  10. package/dist/fonts/inter/InterVariable.woff2 +0 -0
  11. package/dist/index.d.ts +1 -0
  12. package/dist/index.js +4051 -0
  13. package/dist/lib/core/brand-icons.d.ts +29 -0
  14. package/dist/lib/core/icons.d.ts +132 -0
  15. package/dist/lib/core/integration-brand-icons.d.ts +18 -0
  16. package/dist/lib/core/lucide-paths.generated.d.ts +90 -0
  17. package/dist/lib/site-drakkar/site-drakkar.config.d.ts +50 -0
  18. package/dist/lib/site-drakkar/suite-search-items.d.ts +17 -0
  19. package/dist/viking-components.css +1837 -0
  20. package/dist/viking-tokens.json +318 -0
  21. package/dist/viking-ui-elements.js +1750 -0
  22. package/dist/viking-ui.css +1 -0
  23. package/dist/web/badge/viking-badge-wc.d.ts +28 -0
  24. package/dist/web/button/viking-button-wc.d.ts +28 -0
  25. package/dist/web/callout/viking-callout-wc.d.ts +27 -0
  26. package/dist/web/card/viking-card-wc.d.ts +29 -0
  27. package/dist/web/core/base.d.ts +12 -0
  28. package/dist/web/core/dom.d.ts +11 -0
  29. package/dist/web/core/icons-inline.d.ts +7 -0
  30. package/dist/web/core/styles.d.ts +12 -0
  31. package/dist/web/core/types.d.ts +10 -0
  32. package/dist/web/field/viking-field-wc.d.ts +32 -0
  33. package/dist/web/index.d.ts +15 -0
  34. package/dist/web/input/viking-input-wc.d.ts +32 -0
  35. package/dist/web/modal/viking-modal-wc.d.ts +50 -0
  36. package/dist/web/search-palette/viking-search-palette-wc.d.ts +64 -0
  37. package/dist/web/select/viking-select-wc.d.ts +48 -0
  38. package/dist/web/suite-header/viking-suite-header-wc.d.ts +36 -0
  39. package/dist/web/suite-search-palette/viking-suite-search-palette-wc.d.ts +39 -0
  40. package/dist/web/theme-toggle/viking-theme-toggle-wc.d.ts +19 -0
  41. package/dist/web/types.d.ts +40 -0
  42. package/dist/web-components/index.d.ts +1 -0
  43. package/dist/web-components.js +1750 -0
  44. package/dist/widget.js +1182 -0
  45. package/package.json +89 -30
  46. package/src/assets/fonts/inter/InterVariable-Italic.woff2 +0 -0
  47. package/src/assets/fonts/inter/InterVariable.woff2 +0 -0
  48. package/src/elements/button/viking-button.ts +201 -0
  49. package/src/elements/card/viking-card.ts +60 -0
  50. package/src/elements/core/dom.ts +33 -0
  51. package/src/elements/core/styles.ts +28 -0
  52. package/src/elements/modal/viking-modal.ts +154 -0
  53. package/src/index.ts +1 -0
  54. package/src/lib/core/brand-icons.ts +62 -0
  55. package/src/lib/core/icons.ts +206 -0
  56. package/src/lib/core/integration-brand-icons.ts +77 -0
  57. package/src/lib/core/lucide-paths.generated.ts +130 -0
  58. package/src/lib/site-drakkar/site-drakkar.config.ts +295 -0
  59. package/src/lib/site-drakkar/suite-search-items.ts +246 -0
  60. package/src/styles/_buttons.scss +301 -0
  61. package/src/styles/_component-primitives.scss +183 -0
  62. package/src/styles/_drakkar-buttons.scss +85 -0
  63. package/src/styles/_fonts.scss +22 -0
  64. package/src/styles/_forms.scss +66 -0
  65. package/src/styles/_input.scss +106 -0
  66. package/src/styles/_layout-enforcement.scss +166 -0
  67. package/src/styles/_layout-rhythm.scss +158 -0
  68. package/src/styles/_legacy-aliases.scss +212 -0
  69. package/src/styles/_series-colors.scss +24 -0
  70. package/src/styles/_static-primitives.scss +857 -0
  71. package/src/styles/_typography.scss +87 -0
  72. package/src/styles/_variables.scss +527 -0
  73. package/src/styles/components/a11y.scss +90 -0
  74. package/src/styles/components/badges.scss +102 -0
  75. package/src/styles/components/extracted-utilities.scss +459 -0
  76. package/src/styles/components/footer.scss +155 -0
  77. package/src/styles/components/icon-heading.scss +47 -0
  78. package/src/styles/components/icon-inline.scss +78 -0
  79. package/src/styles/components/layout.scss +59 -0
  80. package/src/styles/components/utilities.scss +131 -0
  81. package/src/styles/components/viking-inspired.scss +204 -0
  82. package/src/styles/components/whitepaper-cta.scss +130 -0
  83. package/src/styles/components-bundle.scss +9 -0
  84. package/src/styles/components.scss +175 -0
  85. package/src/styles/deml-components.scss +10 -0
  86. package/src/styles/index.scss +8 -0
  87. package/src/styles/layout-shell.scss +39 -11
  88. package/src/styles/page-shell.scss +663 -33
  89. package/src/styles/static-navbar.scss +862 -146
  90. package/src/styles/surfaces/backend.scss +142 -0
  91. package/src/styles/surfaces/docs-global.scss +73 -0
  92. package/src/styles/surfaces/docs-shell.scss +412 -0
  93. package/src/styles/surfaces/docs-showcase.scss +1051 -0
  94. package/src/styles/surfaces/marketing-cta.scss +62 -0
  95. package/src/styles/surfaces/marketing-docs-bento.scss +67 -0
  96. package/src/styles/surfaces/marketing-global.scss +748 -0
  97. package/src/styles/surfaces/marketing-landing.scss +1260 -0
  98. package/src/styles/surfaces/marketing-publication.scss +535 -0
  99. package/src/styles/surfaces/marketing-theme.scss +14 -0
  100. package/src/styles/surfaces/swagger-ui.scss +921 -0
  101. package/src/styles/tokens-export.scss +18 -0
  102. package/src/styles/tokens.scss +5 -0
  103. package/src/styles/viking-ui-bundle.scss +20 -2
  104. package/src/styles/viking-ui.scss +213 -51
  105. package/src/tokens/viking-tokens.json +318 -0
  106. package/src/web/badge/viking-badge-wc.ts +116 -0
  107. package/src/web/button/viking-button-wc.ts +165 -0
  108. package/src/web/callout/viking-callout-wc.ts +105 -0
  109. package/src/web/card/viking-card-wc.ts +66 -0
  110. package/src/web/core/base.ts +56 -0
  111. package/src/web/core/dom.ts +53 -0
  112. package/src/web/core/icons-inline.ts +44 -0
  113. package/src/web/core/styles.ts +1138 -0
  114. package/src/web/core/types.ts +19 -0
  115. package/src/web/field/viking-field-wc.ts +154 -0
  116. package/src/web/index.ts +73 -0
  117. package/src/web/input/viking-input-wc.ts +211 -0
  118. package/src/web/modal/viking-modal-wc.ts +187 -0
  119. package/src/web/search-palette/viking-search-palette-wc.ts +494 -0
  120. package/src/web/select/viking-select-wc.ts +218 -0
  121. package/src/web/suite-header/viking-suite-header-wc.ts +714 -0
  122. package/src/web/suite-search-palette/viking-suite-search-palette-wc.ts +234 -0
  123. package/src/web/theme-toggle/viking-theme-toggle-wc.ts +139 -0
  124. package/src/web/types.ts +37 -0
  125. package/src/web-components/index.ts +1 -0
  126. package/fesm2022/dataengineeringformachinelearning-viking-ui.mjs +0 -6114
  127. package/fesm2022/dataengineeringformachinelearning-viking-ui.mjs.map +0 -1
  128. package/types/dataengineeringformachinelearning-viking-ui.d.ts +0 -1397
  129. package/viking.manifest.json +0 -238
@@ -1,238 +0,0 @@
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-02",
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
- "fab": {
103
- "exports": ["VikingFab"]
104
- },
105
- "field": {
106
- "exports": ["VikingField"]
107
- },
108
- "file-upload": {
109
- "exports": ["VikingFileUpload"]
110
- },
111
- "footer": {
112
- "exports": ["VikingFooter"]
113
- },
114
- "gauge-arc": {
115
- "exports": ["VikingGaugeArc"]
116
- },
117
- "hud-panel": {
118
- "exports": ["VikingHudPanel"]
119
- },
120
- "icon": {
121
- "exports": ["VikingIcon"]
122
- },
123
- "input": {
124
- "exports": ["VikingInput"]
125
- },
126
- "kanban": {
127
- "exports": ["VikingKanban"]
128
- },
129
- "kbd": {
130
- "exports": ["VikingKbd"]
131
- },
132
- "label": {
133
- "exports": ["VikingLabel"]
134
- },
135
- "menubar": {
136
- "exports": ["VikingMenubar", "VikingMenubarItem"]
137
- },
138
- "metric-card": {
139
- "exports": ["VikingMetricCard", "VikingMetricRow"]
140
- },
141
- "modal": {
142
- "exports": ["VikingModal"]
143
- },
144
- "native-select": {
145
- "exports": ["VikingNativeSelect"]
146
- },
147
- "navbar": {
148
- "exports": ["VikingNavbar", "VikingNavbarItem"]
149
- },
150
- "navigation-menu": {
151
- "exports": ["VikingNavItem", "VikingNavigationMenu"]
152
- },
153
- "otp-input": {
154
- "exports": ["VikingOtpInput"]
155
- },
156
- "page-header": {
157
- "exports": ["VikingPageHeader"]
158
- },
159
- "pagination": {
160
- "exports": ["VikingPagination"]
161
- },
162
- "pillbox": {
163
- "exports": ["VikingPillbox"]
164
- },
165
- "popover": {
166
- "exports": ["VikingPopover"]
167
- },
168
- "profile": {
169
- "exports": ["VikingProfile"]
170
- },
171
- "progress": {
172
- "exports": ["VikingProgress"]
173
- },
174
- "radio": {
175
- "exports": ["VikingRadioGroup"]
176
- },
177
- "ring-gauge": {
178
- "exports": ["VikingRingGauge"]
179
- },
180
- "scroll-area": {
181
- "exports": ["VikingScrollArea"]
182
- },
183
- "search-palette": {
184
- "exports": ["VikingSearchPalette"]
185
- },
186
- "select": {
187
- "exports": ["VikingSelect"]
188
- },
189
- "separator": {
190
- "exports": ["VikingSeparator"]
191
- },
192
- "sheet": {
193
- "exports": ["VikingSheet", "VikingSheetSide"]
194
- },
195
- "skeleton": {
196
- "exports": ["VikingSkeleton"]
197
- },
198
- "slider": {
199
- "exports": ["VikingSlider"]
200
- },
201
- "spinner": {
202
- "exports": ["VikingSpinner"]
203
- },
204
- "switch": {
205
- "exports": ["VikingSwitch"]
206
- },
207
- "table": {
208
- "exports": ["VikingTable"]
209
- },
210
- "tabs": {
211
- "exports": ["VIKING_TABS", "VikingTab", "VikingTabPanel", "VikingTabs"]
212
- },
213
- "textarea": {
214
- "exports": ["VikingTextarea"]
215
- },
216
- "time-picker": {
217
- "exports": ["VikingTimePicker"]
218
- },
219
- "timeline": {
220
- "exports": ["VikingTimeline", "VikingTimelineItem"]
221
- },
222
- "toast": {
223
- "exports": ["VikingToastService", "VikingToaster"]
224
- },
225
- "toggle": {
226
- "exports": ["VIKING_TOGGLE_GROUP", "VikingToggle", "VikingToggleGroup"]
227
- },
228
- "tooltip": {
229
- "exports": ["VikingTooltip"]
230
- },
231
- "typography": {
232
- "exports": ["VikingHeading", "VikingText"]
233
- },
234
- "uptime-bar": {
235
- "exports": ["VikingUptimeBar", "VikingUptimeStatus"]
236
- }
237
- }
238
- }