@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.
- package/README.md +180 -41
- package/dist/deml-components.css +1122 -0
- package/dist/design-tokens.css +688 -0
- package/dist/elements/button/viking-button.d.ts +14 -0
- package/dist/elements/card/viking-card.d.ts +8 -0
- package/dist/elements/core/dom.d.ts +4 -0
- package/dist/elements/core/styles.d.ts +2 -0
- package/dist/elements/modal/viking-modal.d.ts +15 -0
- package/dist/fonts/inter/InterVariable-Italic.woff2 +0 -0
- package/dist/fonts/inter/InterVariable.woff2 +0 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +4051 -0
- package/dist/lib/core/brand-icons.d.ts +29 -0
- package/dist/lib/core/icons.d.ts +132 -0
- package/dist/lib/core/integration-brand-icons.d.ts +18 -0
- package/dist/lib/core/lucide-paths.generated.d.ts +90 -0
- package/dist/lib/site-drakkar/site-drakkar.config.d.ts +50 -0
- package/dist/lib/site-drakkar/suite-search-items.d.ts +17 -0
- package/dist/viking-components.css +1837 -0
- package/dist/viking-tokens.json +318 -0
- package/dist/viking-ui-elements.js +1750 -0
- package/dist/viking-ui.css +1 -0
- package/dist/web/badge/viking-badge-wc.d.ts +28 -0
- package/dist/web/button/viking-button-wc.d.ts +28 -0
- package/dist/web/callout/viking-callout-wc.d.ts +27 -0
- package/dist/web/card/viking-card-wc.d.ts +29 -0
- package/dist/web/core/base.d.ts +12 -0
- package/dist/web/core/dom.d.ts +11 -0
- package/dist/web/core/icons-inline.d.ts +7 -0
- package/dist/web/core/styles.d.ts +12 -0
- package/dist/web/core/types.d.ts +10 -0
- package/dist/web/field/viking-field-wc.d.ts +32 -0
- package/dist/web/index.d.ts +15 -0
- package/dist/web/input/viking-input-wc.d.ts +32 -0
- package/dist/web/modal/viking-modal-wc.d.ts +50 -0
- package/dist/web/search-palette/viking-search-palette-wc.d.ts +64 -0
- package/dist/web/select/viking-select-wc.d.ts +48 -0
- package/dist/web/suite-header/viking-suite-header-wc.d.ts +36 -0
- package/dist/web/suite-search-palette/viking-suite-search-palette-wc.d.ts +39 -0
- package/dist/web/theme-toggle/viking-theme-toggle-wc.d.ts +19 -0
- package/dist/web/types.d.ts +40 -0
- package/dist/web-components/index.d.ts +1 -0
- package/dist/web-components.js +1750 -0
- package/dist/widget.js +1182 -0
- package/package.json +89 -30
- package/src/assets/fonts/inter/InterVariable-Italic.woff2 +0 -0
- package/src/assets/fonts/inter/InterVariable.woff2 +0 -0
- package/src/elements/button/viking-button.ts +201 -0
- package/src/elements/card/viking-card.ts +60 -0
- package/src/elements/core/dom.ts +33 -0
- package/src/elements/core/styles.ts +28 -0
- package/src/elements/modal/viking-modal.ts +154 -0
- package/src/index.ts +1 -0
- package/src/lib/core/brand-icons.ts +62 -0
- package/src/lib/core/icons.ts +206 -0
- package/src/lib/core/integration-brand-icons.ts +77 -0
- package/src/lib/core/lucide-paths.generated.ts +130 -0
- package/src/lib/site-drakkar/site-drakkar.config.ts +295 -0
- package/src/lib/site-drakkar/suite-search-items.ts +246 -0
- package/src/styles/_buttons.scss +301 -0
- package/src/styles/_component-primitives.scss +183 -0
- package/src/styles/_drakkar-buttons.scss +85 -0
- package/src/styles/_fonts.scss +22 -0
- package/src/styles/_forms.scss +66 -0
- package/src/styles/_input.scss +106 -0
- package/src/styles/_layout-enforcement.scss +166 -0
- package/src/styles/_layout-rhythm.scss +158 -0
- package/src/styles/_legacy-aliases.scss +212 -0
- package/src/styles/_series-colors.scss +24 -0
- package/src/styles/_static-primitives.scss +857 -0
- package/src/styles/_typography.scss +87 -0
- package/src/styles/_variables.scss +527 -0
- package/src/styles/components/a11y.scss +90 -0
- package/src/styles/components/badges.scss +102 -0
- package/src/styles/components/extracted-utilities.scss +459 -0
- package/src/styles/components/footer.scss +155 -0
- package/src/styles/components/icon-heading.scss +47 -0
- package/src/styles/components/icon-inline.scss +78 -0
- package/src/styles/components/layout.scss +59 -0
- package/src/styles/components/utilities.scss +131 -0
- package/src/styles/components/viking-inspired.scss +204 -0
- package/src/styles/components/whitepaper-cta.scss +130 -0
- package/src/styles/components-bundle.scss +9 -0
- package/src/styles/components.scss +175 -0
- package/src/styles/deml-components.scss +10 -0
- package/src/styles/index.scss +8 -0
- package/src/styles/layout-shell.scss +39 -11
- package/src/styles/page-shell.scss +663 -33
- package/src/styles/static-navbar.scss +862 -146
- package/src/styles/surfaces/backend.scss +142 -0
- package/src/styles/surfaces/docs-global.scss +73 -0
- package/src/styles/surfaces/docs-shell.scss +412 -0
- package/src/styles/surfaces/docs-showcase.scss +1051 -0
- package/src/styles/surfaces/marketing-cta.scss +62 -0
- package/src/styles/surfaces/marketing-docs-bento.scss +67 -0
- package/src/styles/surfaces/marketing-global.scss +748 -0
- package/src/styles/surfaces/marketing-landing.scss +1260 -0
- package/src/styles/surfaces/marketing-publication.scss +535 -0
- package/src/styles/surfaces/marketing-theme.scss +14 -0
- package/src/styles/surfaces/swagger-ui.scss +921 -0
- package/src/styles/tokens-export.scss +18 -0
- package/src/styles/tokens.scss +5 -0
- package/src/styles/viking-ui-bundle.scss +20 -2
- package/src/styles/viking-ui.scss +213 -51
- package/src/tokens/viking-tokens.json +318 -0
- package/src/web/badge/viking-badge-wc.ts +116 -0
- package/src/web/button/viking-button-wc.ts +165 -0
- package/src/web/callout/viking-callout-wc.ts +105 -0
- package/src/web/card/viking-card-wc.ts +66 -0
- package/src/web/core/base.ts +56 -0
- package/src/web/core/dom.ts +53 -0
- package/src/web/core/icons-inline.ts +44 -0
- package/src/web/core/styles.ts +1138 -0
- package/src/web/core/types.ts +19 -0
- package/src/web/field/viking-field-wc.ts +154 -0
- package/src/web/index.ts +73 -0
- package/src/web/input/viking-input-wc.ts +211 -0
- package/src/web/modal/viking-modal-wc.ts +187 -0
- package/src/web/search-palette/viking-search-palette-wc.ts +494 -0
- package/src/web/select/viking-select-wc.ts +218 -0
- package/src/web/suite-header/viking-suite-header-wc.ts +714 -0
- package/src/web/suite-search-palette/viking-suite-search-palette-wc.ts +234 -0
- package/src/web/theme-toggle/viking-theme-toggle-wc.ts +139 -0
- package/src/web/types.ts +37 -0
- package/src/web-components/index.ts +1 -0
- package/fesm2022/dataengineeringformachinelearning-viking-ui.mjs +0 -6114
- package/fesm2022/dataengineeringformachinelearning-viking-ui.mjs.map +0 -1
- package/types/dataengineeringformachinelearning-viking-ui.d.ts +0 -1397
- package/viking.manifest.json +0 -238
package/viking.manifest.json
DELETED
|
@@ -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
|
-
}
|