@dataengineeringformachinelearning/viking-ui 1.0.1 → 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 -37
- 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 +21 -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 -5949
- package/fesm2022/dataengineeringformachinelearning-viking-ui.mjs.map +0 -1
- package/types/dataengineeringformachinelearning-viking-ui.d.ts +0 -1374
- package/viking.manifest.json +0 -189
package/viking.manifest.json
DELETED
|
@@ -1,189 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "https://json-schema.org/draft-07/schema",
|
|
3
|
-
"name": "@dataengineeringformachinelearning/viking-ui",
|
|
4
|
-
"description": "Tracks which Viking UI (fluxui.dev) components this package mirrors, so upstream additions/renames are detectable via `npm run check:viking-upstream`.",
|
|
5
|
-
"upstream": {
|
|
6
|
-
"site": "https://fluxui.dev",
|
|
7
|
-
"componentsIndex": "https://fluxui.dev/components",
|
|
8
|
-
"lastAudited": "2026-07-01",
|
|
9
|
-
"notes": "Viking UI is a Livewire/Blade + Tailwind library; viking-ui re-implements the free component styles as zero-dependency Angular standalone components themed with DEML Material tokens (THEME.md)."
|
|
10
|
-
},
|
|
11
|
-
"components": {
|
|
12
|
-
"app-header": {
|
|
13
|
-
"upstream": "https://fluxui.dev/components/navbar",
|
|
14
|
-
"exports": ["VikingAppHeader"],
|
|
15
|
-
"notes": "DEML app shell — sticky header with mobile menu slots."
|
|
16
|
-
},
|
|
17
|
-
"app-sidebar": {
|
|
18
|
-
"upstream": "https://fluxui.dev/components/navbar",
|
|
19
|
-
"exports": ["VikingAppSidebar"],
|
|
20
|
-
"notes": "DEML app shell — collapsible dashboard sidebar."
|
|
21
|
-
},
|
|
22
|
-
"footer": {
|
|
23
|
-
"upstream": "https://fluxui.dev/components/card",
|
|
24
|
-
"exports": ["VikingFooter"],
|
|
25
|
-
"notes": "DEML site-wide footer chrome."
|
|
26
|
-
},
|
|
27
|
-
"hud-panel": {
|
|
28
|
-
"upstream": "https://fluxui.dev/components/card",
|
|
29
|
-
"exports": ["VikingHudPanel"],
|
|
30
|
-
"notes": "DEML dashboard panel with icon header."
|
|
31
|
-
},
|
|
32
|
-
"metric-card": {
|
|
33
|
-
"upstream": "https://fluxui.dev/components/card",
|
|
34
|
-
"exports": ["VikingMetricRow", "VikingMetricCard"],
|
|
35
|
-
"notes": "DEML HUD KPI metric tiles."
|
|
36
|
-
},
|
|
37
|
-
"page-header": {
|
|
38
|
-
"upstream": "https://fluxui.dev/components/navbar",
|
|
39
|
-
"exports": ["VikingPageHeader"],
|
|
40
|
-
"notes": "DEML unified page header (HUD + sidebar topbar)."
|
|
41
|
-
},
|
|
42
|
-
"fab": {
|
|
43
|
-
"upstream": "https://fluxui.dev/components/button",
|
|
44
|
-
"exports": ["VikingFab"],
|
|
45
|
-
"notes": "DEML floating action button."
|
|
46
|
-
},
|
|
47
|
-
"search-palette": {
|
|
48
|
-
"upstream": "https://fluxui.dev/components/command",
|
|
49
|
-
"exports": ["VikingSearchPalette"],
|
|
50
|
-
"notes": "DEML search overlay (command-palette pattern)."
|
|
51
|
-
},
|
|
52
|
-
"accordion": {
|
|
53
|
-
"upstream": "https://fluxui.dev/components/accordion",
|
|
54
|
-
"exports": ["VikingAccordion", "VikingAccordionItem"]
|
|
55
|
-
},
|
|
56
|
-
"autocomplete": {
|
|
57
|
-
"upstream": "https://fluxui.dev/components/autocomplete",
|
|
58
|
-
"exports": ["VikingAutocomplete"]
|
|
59
|
-
},
|
|
60
|
-
"avatar": { "upstream": "https://fluxui.dev/components/avatar", "exports": ["VikingAvatar"] },
|
|
61
|
-
"badge": { "upstream": "https://fluxui.dev/components/badge", "exports": ["VikingBadge"] },
|
|
62
|
-
"brand": { "upstream": "https://fluxui.dev/components/brand", "exports": ["VikingBrand"] },
|
|
63
|
-
"button": {
|
|
64
|
-
"upstream": "https://fluxui.dev/components/button",
|
|
65
|
-
"exports": ["VikingButton", "VikingButtonGroup"]
|
|
66
|
-
},
|
|
67
|
-
"breadcrumbs": {
|
|
68
|
-
"upstream": "https://fluxui.dev/components/breadcrumbs",
|
|
69
|
-
"exports": ["VikingBreadcrumbs"]
|
|
70
|
-
},
|
|
71
|
-
"calendar": {
|
|
72
|
-
"upstream": "https://fluxui.dev/components/calendar",
|
|
73
|
-
"exports": ["VikingCalendar"]
|
|
74
|
-
},
|
|
75
|
-
"callout": {
|
|
76
|
-
"upstream": "https://fluxui.dev/components/callout",
|
|
77
|
-
"exports": ["VikingCallout"]
|
|
78
|
-
},
|
|
79
|
-
"card": {
|
|
80
|
-
"upstream": "https://fluxui.dev/components/card",
|
|
81
|
-
"exports": ["VikingCard", "VikingCardHeader", "VikingCardFooter"]
|
|
82
|
-
},
|
|
83
|
-
"carousel": {
|
|
84
|
-
"upstream": "https://fluxui.dev/components/carousel",
|
|
85
|
-
"exports": ["VikingCarousel", "VikingCarouselSlide"]
|
|
86
|
-
},
|
|
87
|
-
"chart": { "upstream": "https://fluxui.dev/components/chart", "exports": ["VikingChart"] },
|
|
88
|
-
"checkbox": {
|
|
89
|
-
"upstream": "https://fluxui.dev/components/checkbox",
|
|
90
|
-
"exports": ["VikingCheckbox"]
|
|
91
|
-
},
|
|
92
|
-
"color-picker": {
|
|
93
|
-
"upstream": "https://fluxui.dev/components/color-picker",
|
|
94
|
-
"exports": ["VikingColorPicker"]
|
|
95
|
-
},
|
|
96
|
-
"command": {
|
|
97
|
-
"upstream": "https://fluxui.dev/components/command",
|
|
98
|
-
"exports": ["VikingCommand"]
|
|
99
|
-
},
|
|
100
|
-
"context": {
|
|
101
|
-
"upstream": "https://fluxui.dev/components/context",
|
|
102
|
-
"exports": ["VikingContext"]
|
|
103
|
-
},
|
|
104
|
-
"composer": {
|
|
105
|
-
"upstream": "https://fluxui.dev/components/composer",
|
|
106
|
-
"exports": ["VikingComposer"]
|
|
107
|
-
},
|
|
108
|
-
"date-picker": {
|
|
109
|
-
"upstream": "https://fluxui.dev/components/date-picker",
|
|
110
|
-
"exports": ["VikingDatePicker"]
|
|
111
|
-
},
|
|
112
|
-
"dropdown": {
|
|
113
|
-
"upstream": "https://fluxui.dev/components/dropdown",
|
|
114
|
-
"exports": ["VikingDropdown", "VikingMenuItem"]
|
|
115
|
-
},
|
|
116
|
-
"editor": { "upstream": "https://fluxui.dev/components/editor", "exports": ["VikingEditor"] },
|
|
117
|
-
"field": { "upstream": "https://fluxui.dev/components/field", "exports": ["VikingField"] },
|
|
118
|
-
"file-upload": {
|
|
119
|
-
"upstream": "https://fluxui.dev/components/file-upload",
|
|
120
|
-
"exports": ["VikingFileUpload"]
|
|
121
|
-
},
|
|
122
|
-
"heading": {
|
|
123
|
-
"upstream": "https://fluxui.dev/components/heading",
|
|
124
|
-
"exports": ["VikingHeading"]
|
|
125
|
-
},
|
|
126
|
-
"icon": { "upstream": "https://fluxui.dev/components/icon", "exports": ["VikingIcon"] },
|
|
127
|
-
"input": { "upstream": "https://fluxui.dev/components/input", "exports": ["VikingInput"] },
|
|
128
|
-
"kanban": { "upstream": "https://fluxui.dev/components/kanban", "exports": ["VikingKanban"] },
|
|
129
|
-
"modal": { "upstream": "https://fluxui.dev/components/modal", "exports": ["VikingModal"] },
|
|
130
|
-
"navbar": {
|
|
131
|
-
"upstream": "https://fluxui.dev/components/navbar",
|
|
132
|
-
"exports": ["VikingNavbar", "VikingNavbarItem"]
|
|
133
|
-
},
|
|
134
|
-
"otp-input": {
|
|
135
|
-
"upstream": "https://fluxui.dev/components/otp-input",
|
|
136
|
-
"exports": ["VikingOtpInput"]
|
|
137
|
-
},
|
|
138
|
-
"pagination": {
|
|
139
|
-
"upstream": "https://fluxui.dev/components/pagination",
|
|
140
|
-
"exports": ["VikingPagination"]
|
|
141
|
-
},
|
|
142
|
-
"pillbox": {
|
|
143
|
-
"upstream": "https://fluxui.dev/components/pillbox",
|
|
144
|
-
"exports": ["VikingPillbox"]
|
|
145
|
-
},
|
|
146
|
-
"popover": {
|
|
147
|
-
"upstream": "https://fluxui.dev/components/popover",
|
|
148
|
-
"exports": ["VikingPopover"]
|
|
149
|
-
},
|
|
150
|
-
"profile": {
|
|
151
|
-
"upstream": "https://fluxui.dev/components/profile",
|
|
152
|
-
"exports": ["VikingProfile"]
|
|
153
|
-
},
|
|
154
|
-
"progress": {
|
|
155
|
-
"upstream": "https://fluxui.dev/components/progress",
|
|
156
|
-
"exports": ["VikingProgress"]
|
|
157
|
-
},
|
|
158
|
-
"radio": { "upstream": "https://fluxui.dev/components/radio", "exports": ["VikingRadioGroup"] },
|
|
159
|
-
"select": { "upstream": "https://fluxui.dev/components/select", "exports": ["VikingSelect"] },
|
|
160
|
-
"separator": {
|
|
161
|
-
"upstream": "https://fluxui.dev/components/separator",
|
|
162
|
-
"exports": ["VikingSeparator"]
|
|
163
|
-
},
|
|
164
|
-
"skeleton": {
|
|
165
|
-
"upstream": "https://fluxui.dev/components/skeleton",
|
|
166
|
-
"exports": ["VikingSkeleton"]
|
|
167
|
-
},
|
|
168
|
-
"slider": { "upstream": "https://fluxui.dev/components/slider", "exports": ["VikingSlider"] },
|
|
169
|
-
"switch": { "upstream": "https://fluxui.dev/components/switch", "exports": ["VikingSwitch"] },
|
|
170
|
-
"text": { "upstream": "https://fluxui.dev/components/text", "exports": ["VikingText"] },
|
|
171
|
-
"textarea": {
|
|
172
|
-
"upstream": "https://fluxui.dev/components/textarea",
|
|
173
|
-
"exports": ["VikingTextarea"]
|
|
174
|
-
},
|
|
175
|
-
"time-picker": {
|
|
176
|
-
"upstream": "https://fluxui.dev/components/time-picker",
|
|
177
|
-
"exports": ["VikingTimePicker"]
|
|
178
|
-
},
|
|
179
|
-
"timeline": {
|
|
180
|
-
"upstream": "https://fluxui.dev/components/timeline",
|
|
181
|
-
"exports": ["VikingTimeline", "VikingTimelineItem"]
|
|
182
|
-
},
|
|
183
|
-
"toast": {
|
|
184
|
-
"upstream": "https://fluxui.dev/components/toast",
|
|
185
|
-
"exports": ["VikingToastService", "VikingToaster"]
|
|
186
|
-
},
|
|
187
|
-
"tooltip": { "upstream": "https://fluxui.dev/components/tooltip", "exports": ["VikingTooltip"] }
|
|
188
|
-
}
|
|
189
|
-
}
|