@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.
Files changed (129) hide show
  1. package/README.md +180 -37
  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 +21 -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 -5949
  127. package/fesm2022/dataengineeringformachinelearning-viking-ui.mjs.map +0 -1
  128. package/types/dataengineeringformachinelearning-viking-ui.d.ts +0 -1374
  129. package/viking.manifest.json +0 -189
@@ -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
- }