@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
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@dataengineeringformachinelearning/viking-ui",
3
- "version": "3.0.0-alpha.2",
3
+ "version": "4.0.0",
4
4
  "description": "Universal Viking-UI design system for Astro, Angular, and Django.",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
7
7
  "private": false,
8
- "main": "./dist/index.js",
9
- "module": "./dist/index.js",
10
- "types": "./dist/index.d.ts",
8
+ "main": "./dist/fesm2022/dataengineeringformachinelearning-viking-ui.mjs",
9
+ "module": "./dist/fesm2022/dataengineeringformachinelearning-viking-ui.mjs",
10
+ "types": "./dist/types/dataengineeringformachinelearning-viking-ui.d.ts",
11
11
  "style": "./dist/viking-ui.css",
12
12
  "browser": "./dist/viking-ui-elements.js",
13
13
  "repository": {
@@ -20,16 +20,17 @@
20
20
  },
21
21
  "exports": {
22
22
  ".": {
23
- "types": "./dist/index.d.ts",
24
- "import": "./dist/index.js"
23
+ "types": "./dist/types/dataengineeringformachinelearning-viking-ui.d.ts",
24
+ "import": "./dist/fesm2022/dataengineeringformachinelearning-viking-ui.mjs",
25
+ "default": "./dist/fesm2022/dataengineeringformachinelearning-viking-ui.mjs"
25
26
  },
26
- "./dist/index.js": "./dist/index.js",
27
+ "./dist/index.js": "./dist/fesm2022/dataengineeringformachinelearning-viking-ui.mjs",
27
28
  "./dist/viking-ui.css": "./dist/viking-ui.css",
28
29
  "./dist/viking-ui-elements.js": "./dist/viking-ui-elements.js",
29
30
  "./dist/web-components.js": "./dist/web-components.js",
30
31
  "./dist/widget.js": "./dist/widget.js",
31
32
  "./elements": {
32
- "types": "./dist/index.d.ts",
33
+ "types": "./dist/types/dataengineeringformachinelearning-viking-ui.d.ts",
33
34
  "import": "./dist/web-components.js",
34
35
  "default": "./dist/web-components.js"
35
36
  },
@@ -37,7 +38,7 @@
37
38
  "./viking-ui-elements.js": "./dist/viking-ui-elements.js",
38
39
  "./web-components.js": "./dist/web-components.js",
39
40
  "./web-components": {
40
- "types": "./dist/index.d.ts",
41
+ "types": "./dist/types/dataengineeringformachinelearning-viking-ui.d.ts",
41
42
  "import": "./dist/web-components.js",
42
43
  "default": "./dist/web-components.js"
43
44
  },
@@ -66,16 +67,23 @@
66
67
  ],
67
68
  "scripts": {
68
69
  "clean": "rm -rf dist",
69
- "build": "npm run clean && npm run build:css && npm run build:elements",
70
+ "build": "npm run clean && npm run build:ng && npm run build:css && npm run build:elements && npm run build:compat",
71
+ "build:ng": "ng-packagr -p ng-package.json -c tsconfig.lib.prod.json",
70
72
  "build:css": "node scripts/build-css.mjs",
71
73
  "build:elements": "node scripts/build-elements.mjs",
74
+ "build:compat": "node scripts/write-compat-entry.mjs",
72
75
  "storybook": "npm run build:css && storybook dev --config-dir .storybook --port 6006",
73
76
  "build-storybook": "npm run build:css && storybook build --config-dir .storybook --output-dir ./storybook-static",
74
77
  "chromatic": "npm run build-storybook && chromatic --project-token=${CHROMATIC_PROJECT_TOKEN} --exit-zero-on-changes",
75
78
  "validate": "node ../../scripts/validate_viking_ui_assets.mjs",
76
79
  "test": "node --test test/*.test.mjs",
77
80
  "pack:check": "npm pack --dry-run",
78
- "typecheck": "tsc --project tsconfig.json --noEmit"
81
+ "typecheck": "tsc --project tsconfig.elements.json --noEmit"
82
+ },
83
+ "peerDependencies": {
84
+ "@angular/common": "^22.0.0",
85
+ "@angular/core": "^22.0.0",
86
+ "@angular/forms": "^22.0.0"
79
87
  },
80
88
  "sideEffects": [
81
89
  "./dist/viking-ui-elements.js",
@@ -86,11 +94,17 @@
86
94
  "./src/index.ts"
87
95
  ],
88
96
  "devDependencies": {
97
+ "@angular/common": "^22.0.0",
98
+ "@angular/compiler": "^22.0.0",
99
+ "@angular/compiler-cli": "^22.0.0",
100
+ "@angular/core": "^22.0.0",
101
+ "@angular/forms": "^22.0.0",
89
102
  "@chromatic-com/storybook": "^3.2.7",
90
103
  "@storybook/addon-a11y": "^8.6.12",
91
104
  "@storybook/addon-essentials": "^8.6.12",
92
105
  "@storybook/html": "^8.6.12",
93
106
  "esbuild": "^0.28.1",
107
+ "ng-packagr": "^22.0.0",
94
108
  "sass": "^1.101.0",
95
109
  "typescript": "~6.0.3"
96
110
  }
@@ -0,0 +1,17 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" role="img" aria-label="Viking-UI">
2
+ <rect width="32" height="32" rx="6" fill="#111111"/>
3
+ <g
4
+ transform="translate(4, 4)"
5
+ fill="none"
6
+ stroke="#0d7377"
7
+ stroke-width="1.75"
8
+ stroke-linecap="round"
9
+ stroke-linejoin="round"
10
+ >
11
+ <path d="M12 10.189V14"/>
12
+ <path d="M12 2v3"/>
13
+ <path d="M19 13V7a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v6"/>
14
+ <path d="M19.38 20A11.6 11.6 0 0 0 21 14l-8.188-3.639a2 2 0 0 0-1.624 0L3 14a11.6 11.6 0 0 0 2.81 7.76"/>
15
+ <path d="M2 21c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1s1.2 1 2.5 1c2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1"/>
16
+ </g>
17
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.75" stroke-linecap="round" stroke-linejoin="round">
2
+ <rect x="2" y="4" width="20" height="16" rx="2"/>
3
+ <path d="M7 17V13M11 17V8M15 17V11"/>
4
+ <path d="M2 20h20"/>
5
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.75" stroke-linecap="round" stroke-linejoin="round">
2
+ <rect x="4" y="4" width="16" height="16" rx="3"/>
3
+ <path d="M9 16V12M12 16V9M15 16V13"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor">
2
+ <path d="M5 4a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1V4zm2 11h2.5V10H7v5zm4.5-5h2.5v10h-2.5V10zm4.5-3h2.5v13h-2.5V7z"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.75" stroke-linecap="round" stroke-linejoin="round">
2
+ <rect x="3" y="3" width="18" height="18" rx="2"/>
3
+ <path d="M8 17V13M12 17V8M16 17V11"/>
4
+ </svg>
@@ -0,0 +1,62 @@
1
+ /**
2
+ * DEML branded icon paths — optimized SVG geometry (not sourced from Lucide).
3
+ * Use via viking-icon name="deml" | "deml-compact" | "deml-lockup".
4
+ */
5
+ export const VIKING_BRAND_ICON_PATHS = {
6
+ /** Primary bar-chart mark in rounded frame (outline). */
7
+ deml: '<rect x="3" y="3" width="18" height="18" rx="2"/><path d="M8 17V13M12 17V8M16 17V11"/>',
8
+ /** Compact monogram for favicons and dense Drakkar shell. */
9
+ "deml-compact":
10
+ '<rect x="4" y="4" width="16" height="16" rx="3"/><path d="M9 16V12M12 16V9M15 16V13"/>',
11
+ /** Lockup mark with baseline accent bar. */
12
+ "deml-lockup":
13
+ '<rect x="3" y="3" width="18" height="14" rx="2"/><path d="M8 17V13M12 17V8M16 17V11"/><path d="M3 20h18"/>',
14
+ } as const;
15
+
16
+ /** Drakkar — Viking-UI / site shell brand marks (Lucide ship, build-time inlined). */
17
+ export const VIKING_DRAKKAR_ICON_PATHS = {
18
+ /** Primary Drakkar longship mark (outline). */
19
+ drakkar:
20
+ '<path d="M12 10.189V14"/><path d="M12 2v3"/><path d="M19 13V7a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v6"/><path d="M19.38 20A11.6 11.6 0 0 0 21 14l-8.188-3.639a2 2 0 0 0-1.624 0L3 14a11.6 11.6 0 0 0 2.81 7.76"/><path d="M2 21c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1s1.2 1 2.5 1c2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1"/>',
21
+ /** Compact tile for favicons and dense navbar chrome. */
22
+ "drakkar-compact":
23
+ '<rect x="3" y="3" width="18" height="18" rx="2"/><path d="M12 10.189V14"/><path d="M12 2v3"/><path d="M19 13V7a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v6"/><path d="M19.38 20A11.6 11.6 0 0 0 21 14l-8.188-3.639a2 2 0 0 0-1.624 0L3 14a11.6 11.6 0 0 0 2.81 7.76"/><path d="M2 21c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1s1.2 1 2.5 1c2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1"/>',
24
+ /** Lockup mark with baseline accent bar. */
25
+ "drakkar-lockup":
26
+ '<path d="M12 10.189V14"/><path d="M12 2v3"/><path d="M19 13V7a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v6"/><path d="M19.38 20A11.6 11.6 0 0 0 21 14l-8.188-3.639a2 2 0 0 0-1.624 0L3 14a11.6 11.6 0 0 0 2.81 7.76"/><path d="M2 21c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1s1.2 1 2.5 1c2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1"/><path d="M3 21h18"/>',
27
+ } as const;
28
+
29
+ /** Filled-path overrides for DEML brand marks. */
30
+ export const VIKING_BRAND_ICON_FILLED_PATHS: Partial<
31
+ Record<keyof typeof VIKING_BRAND_ICON_PATHS, string>
32
+ > = {
33
+ deml: '<path d="M5 4a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1V4zM8 13h2.5v4H8v-4zM12 8h2.5v9H12V8zM16 11h2.5v6H16v-6z"/>',
34
+ "deml-compact":
35
+ '<path d="M6 5a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1V5zM9 12h1.5v4H9v-4zM12 9h1.5v7H12V9zM15 11h1.5v5H15v-5z"/>',
36
+ "deml-lockup":
37
+ '<path d="M4 4a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v11a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V4zM8 13h2.5v4H8v-4zM12 8h2.5v9H12V8zM16 11h2.5v6H16v-6z"/><rect x="3" y="19" width="18" height="2" rx="1"/>',
38
+ };
39
+
40
+ /** Filled-path overrides for Drakkar brand marks. */
41
+ export const VIKING_DRAKKAR_ICON_FILLED_PATHS: Partial<
42
+ Record<keyof typeof VIKING_DRAKKAR_ICON_PATHS, string>
43
+ > = {
44
+ drakkar:
45
+ '<path d="M7 5h10a2 2 0 0 1 2 2v3.5L20.8 14.2l-7.8-3.5a1.8 1.8 0 0 0-1.4 0L3.2 14.2a10.5 10.5 0 0 0 2.6 7.2L5.2 13V7a2 2 0 0 0-2-2z"/><rect x="10.85" y="2" width="2.3" height="12" rx="0.4"/>',
46
+ "drakkar-compact":
47
+ '<path d="M3 3h18a2 2 0 0 1 2 2v18a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z"/><path d="M7.5 12.5 12 9.8l4.5 2.7v2.2c0 .8-.5 1.4-1.2 1.7L12 17.8l-3.3-1.6c-.7-.3-1.2-.9-1.2-1.7v-2.2z"/><rect x="11" y="6" width="2" height="5.5" rx="0.35"/>',
48
+ "drakkar-lockup":
49
+ '<path d="M7 5h10a2 2 0 0 1 2 2v3.5L20.8 14.2l-7.8-3.5a1.8 1.8 0 0 0-1.4 0L3.2 14.2a10.5 10.5 0 0 0 2.6 7.2L5.2 13V7a2 2 0 0 0-2-2z"/><rect x="10.85" y="2" width="2.3" height="12" rx="0.4"/><rect x="3" y="20" width="18" height="2" rx="1"/>',
50
+ };
51
+
52
+ export type VikingBrandIconName = keyof typeof VIKING_BRAND_ICON_PATHS;
53
+
54
+ export type VikingDrakkarIconName = keyof typeof VIKING_DRAKKAR_ICON_PATHS;
55
+
56
+ export const VIKING_BRAND_ICON_NAMES_LIST = Object.keys(
57
+ VIKING_BRAND_ICON_PATHS,
58
+ ) as VikingBrandIconName[];
59
+
60
+ export const VIKING_DRAKKAR_ICON_NAMES_LIST = Object.keys(
61
+ VIKING_DRAKKAR_ICON_PATHS,
62
+ ) as VikingDrakkarIconName[];
@@ -0,0 +1,52 @@
1
+ import { describe, it, expect } from "vitest";
2
+ import {
3
+ MATERIAL_ICON_ALIASES,
4
+ VIKING_ICON_PATHS,
5
+ resolveVikingIcon,
6
+ resolveVikingIconColor,
7
+ resolveVikingIconSize,
8
+ vikingIconViewBox,
9
+ } from "./icons";
10
+
11
+ describe("icons registry", () => {
12
+ it("resolves direct icon names case-insensitively", () => {
13
+ expect(resolveVikingIcon("search")).toBe("search");
14
+ expect(resolveVikingIcon("Shield")).toBe("shield");
15
+ });
16
+
17
+ it("maps legacy Material icon ligatures to Viking keys", () => {
18
+ expect(resolveVikingIcon("trending_up")).toBe("trending-up");
19
+ expect(resolveVikingIcon("verified_user")).toBe("user-shield");
20
+ expect(MATERIAL_ICON_ALIASES["rocket_launch"]).toBe("rocket");
21
+ });
22
+
23
+ it("falls back to info for unknown names", () => {
24
+ expect(resolveVikingIcon("does-not-exist")).toBe("info");
25
+ });
26
+
27
+ it("resolves size presets to pixel dimensions", () => {
28
+ expect(resolveVikingIconSize(undefined, "sm")).toBe(16);
29
+ expect(resolveVikingIconSize(undefined, "md")).toBe(20);
30
+ expect(resolveVikingIconSize(undefined, "lg")).toBe(24);
31
+ expect(resolveVikingIconSize(28, null)).toBe(28);
32
+ expect(resolveVikingIconSize(undefined, null)).toBe(24);
33
+ });
34
+
35
+ it("maps semantic color tokens to CSS custom properties", () => {
36
+ expect(resolveVikingIconColor("accent")).toBe("var(--viking-accent)");
37
+ expect(resolveVikingIconColor("danger")).toBe("var(--viking-danger)");
38
+ expect(resolveVikingIconColor("inherit")).toBeUndefined();
39
+ expect(resolveVikingIconColor("var(--custom)")).toBe("var(--custom)");
40
+ });
41
+
42
+ it("uses a consistent 24×24 viewBox for registry icons", () => {
43
+ expect(vikingIconViewBox("check")).toBe("0 0 24 24");
44
+ expect(vikingIconViewBox("drakkar")).toBe("0 0 24 24");
45
+ });
46
+
47
+ it("registers core Lucide and brand icons", () => {
48
+ expect(VIKING_ICON_PATHS["search"]).toBeTruthy();
49
+ expect(VIKING_ICON_PATHS["drakkar"]).toBeTruthy();
50
+ expect(VIKING_ICON_PATHS["deml"]).toBeTruthy();
51
+ });
52
+ });
@@ -0,0 +1,206 @@
1
+ /**
2
+ * Zero-dependency inline SVG icon registry (24×24 stroke icons).
3
+ * Lucide paths are synced at build time; DEML brand marks are custom artwork.
4
+ */
5
+ import { LUCIDE_ICON_PATHS } from "./lucide-paths.generated";
6
+ import {
7
+ VIKING_BRAND_ICON_FILLED_PATHS,
8
+ VIKING_BRAND_ICON_PATHS,
9
+ VIKING_BRAND_ICON_NAMES_LIST,
10
+ VIKING_DRAKKAR_ICON_FILLED_PATHS,
11
+ VIKING_DRAKKAR_ICON_PATHS,
12
+ VIKING_DRAKKAR_ICON_NAMES_LIST,
13
+ } from "./brand-icons";
14
+ import {
15
+ VIKING_INTEGRATION_ICON_PATHS,
16
+ VIKING_INTEGRATION_ICON_NAMES_LIST,
17
+ } from "./integration-brand-icons";
18
+
19
+ export {
20
+ VIKING_DRAKKAR_ICON_NAMES_LIST,
21
+ VIKING_BRAND_ICON_NAMES_LIST,
22
+ } from "./brand-icons";
23
+ export {
24
+ VIKING_INTEGRATION_ICON_NAMES_LIST,
25
+ type VikingIntegrationIconName,
26
+ } from "./integration-brand-icons";
27
+
28
+ export type VikingIconName = keyof typeof VIKING_ICON_PATHS;
29
+
30
+ export type VikingIconSizePreset = "sm" | "md" | "lg";
31
+
32
+ export type VikingIconVariant = "outline" | "filled";
33
+
34
+ /** Semantic color tokens resolved to CSS custom properties. */
35
+ export type VikingIconColorToken =
36
+ | "inherit"
37
+ | "accent"
38
+ | "success"
39
+ | "warning"
40
+ | "danger"
41
+ | "info"
42
+ | "muted"
43
+ | "text";
44
+
45
+ /** Pixel sizes for sm / md / lg presets. */
46
+ export const VIKING_ICON_SIZE_PRESETS: Record<VikingIconSizePreset, number> = {
47
+ sm: 16,
48
+ md: 20,
49
+ lg: 24,
50
+ } as const;
51
+
52
+ /** Custom icons not covered by Lucide (hub topology, ML model tile, OAuth stubs). */
53
+ const VIKING_CUSTOM_ICON_PATHS = {
54
+ hub: '<circle cx="12" cy="12" r="3"/><path d="M12 3v3M12 18v3M3 12h3M18 12h3M5.6 5.6l2.1 2.1M16.3 16.3l2.1 2.1M18.4 5.6l-2.1 2.1M7.7 16.3l-2.1 2.1"/>',
55
+ model:
56
+ '<rect x="4" y="8" width="16" height="10" rx="2"/><path d="M8 8V6a4 4 0 0 1 8 0v2"/>',
57
+ google:
58
+ '<path d="M12 11.2v2.4h6.6c-.3 1.5-1.8 4.4-6.6 4.4-4 0-7.2-3.3-7.2-7.3S8 3.4 12 3.4c2.3 0 3.9 1 4.8 1.8l3.2-3.1C17.5.8 14.9 0 12 0 5.4 0 0 5.4 0 12s5.4 12 12 12c6.9 0 11.5-4.8 11.5-11.6 0-.8-.1-1.4-.2-1.9H12z"/>',
59
+ apple:
60
+ '<path d="M16.365 12.14c.02 2.53 2.21 3.38 2.23 3.39-.02.07-.35 1.21-1.16 2.4-.7 1.02-1.43 2.03-2.58 2.05-1.13.02-1.49-.67-2.78-.67-1.29 0-1.69.65-2.75.69-1.11.04-1.95-1.12-2.66-2.13-1.44-2.08-2.54-5.87-1.07-8.43.73-1.27 2.04-2.08 3.46-2.1 1.08-.02 2.1.72 2.78.72.67 0 2.14-.89 3.61-.76.61.03 2.33.25 3.44 1.88-.09.06-2.05 1.2-2.03 3.55M13.75 3.64c.59-.71 1-1.7.89-2.68-.86.03-1.9.57-2.52 1.28-.55.63-1.03 1.65-.9 2.62.95.07 1.92-.49 2.53-1.22"/>',
61
+ } as const;
62
+
63
+ export const VIKING_ICON_PATHS = {
64
+ ...LUCIDE_ICON_PATHS,
65
+ ...VIKING_BRAND_ICON_PATHS,
66
+ ...VIKING_DRAKKAR_ICON_PATHS,
67
+ ...VIKING_INTEGRATION_ICON_PATHS,
68
+ ...VIKING_CUSTOM_ICON_PATHS,
69
+ } as const;
70
+
71
+ /** Filled-path overrides used when variant="filled" (brand marks, solid shapes). */
72
+ export const VIKING_ICON_FILLED_PATHS: Partial<Record<VikingIconName, string>> =
73
+ {
74
+ ...VIKING_BRAND_ICON_FILLED_PATHS,
75
+ ...VIKING_DRAKKAR_ICON_FILLED_PATHS,
76
+ };
77
+
78
+ /** Legacy Material Icons ligature names → Viking icon registry keys. */
79
+ export const MATERIAL_ICON_ALIASES: Record<string, VikingIconName> = {
80
+ analytics: "deml",
81
+ security: "shield",
82
+ link: "link",
83
+ visibility: "eye",
84
+ shield: "shield",
85
+ trending_up: "trending-up",
86
+ lock: "lock",
87
+ fingerprint: "fingerprint",
88
+ gpp_maybe: "shield",
89
+ verified_user: "user-shield",
90
+ bolt: "bolt",
91
+ cloud: "cloud",
92
+ lan: "network",
93
+ hub: "hub",
94
+ speed: "speed",
95
+ rocket_launch: "rocket",
96
+ insights: "insights",
97
+ check: "check",
98
+ description: "file",
99
+ vpn_key: "key",
100
+ policy: "policy",
101
+ bug_report: "bug",
102
+ search: "search",
103
+ chevron_left: "chevron-left",
104
+ chevron_right: "chevron-right",
105
+ verified: "check-circle",
106
+ warning: "alert-triangle",
107
+ close: "x",
108
+ account_balance: "building",
109
+ send: "send",
110
+ check_circle: "check-circle",
111
+ play_circle: "play",
112
+ input: "terminal",
113
+ model_training: "model",
114
+ auto_awesome: "sparkle",
115
+ error_outline: "alert-circle",
116
+ home: "home",
117
+ cookie: "cookie",
118
+ search_off: "search-off",
119
+ person_add: "user",
120
+ storage: "aws-redshift",
121
+ data_object: "aws-redshift",
122
+ memory: "tensorflow",
123
+ psychology: "pytorch",
124
+ dns: "server",
125
+ login: "log-in",
126
+ };
127
+
128
+ /** Icons always rendered with fill (play triangle, dot grids). */
129
+ export const VIKING_FILLED_ICON_NAMES = [
130
+ "play",
131
+ "dots-horizontal",
132
+ "dots-vertical",
133
+ "grip-vertical",
134
+ ] as const satisfies readonly VikingIconName[];
135
+
136
+ /** OAuth / vendor marks rendered with official brand artwork in viking-icon. */
137
+ export const VIKING_BRAND_ICON_NAMES = [
138
+ "google",
139
+ "apple",
140
+ ...VIKING_BRAND_ICON_NAMES_LIST,
141
+ ] as const satisfies readonly VikingIconName[];
142
+
143
+ const VIKING_ICON_COLOR_TOKENS: Record<
144
+ Exclude<VikingIconColorToken, "inherit">,
145
+ string
146
+ > = {
147
+ accent: "var(--viking-accent)",
148
+ success: "var(--viking-success)",
149
+ warning: "var(--viking-warning)",
150
+ danger: "var(--viking-danger)",
151
+ info: "var(--viking-info)",
152
+ muted: "var(--viking-text-muted)",
153
+ text: "var(--viking-text)",
154
+ };
155
+
156
+ export const vikingIconViewBox = (_name: VikingIconName): string => "0 0 24 24";
157
+
158
+ /** Resolve pixel size from preset or explicit value. */
159
+ export const resolveVikingIconSize = (
160
+ size: number | undefined,
161
+ preset: VikingIconSizePreset | null | undefined,
162
+ ): number => {
163
+ if (preset) {
164
+ return VIKING_ICON_SIZE_PRESETS[preset];
165
+ }
166
+ return size ?? VIKING_ICON_SIZE_PRESETS.lg;
167
+ };
168
+
169
+ /** Resolve semantic color token or raw CSS value for icon tinting. */
170
+ export const resolveVikingIconColor = (
171
+ color: VikingIconColorToken | string | undefined,
172
+ ): string | undefined => {
173
+ if (!color || color === "inherit") {
174
+ return undefined;
175
+ }
176
+ if (color in VIKING_ICON_COLOR_TOKENS) {
177
+ return VIKING_ICON_COLOR_TOKENS[
178
+ color as Exclude<VikingIconColorToken, "inherit">
179
+ ];
180
+ }
181
+ return color;
182
+ };
183
+
184
+ const VIKING_ICON_PATH_KEYS = new Set(Object.keys(VIKING_ICON_PATHS));
185
+
186
+ /** Resolve a Viking or legacy Material icon name to a registry key. */
187
+ export const resolveVikingIcon = (name: string): VikingIconName => {
188
+ const normalized = name.trim().toLowerCase().replace(/\s+/g, "_");
189
+ if (VIKING_ICON_PATH_KEYS.has(normalized)) {
190
+ return normalized as VikingIconName;
191
+ }
192
+ const alias = MATERIAL_ICON_ALIASES[normalized];
193
+ if (alias) {
194
+ return alias;
195
+ }
196
+ return "info";
197
+ };
198
+
199
+ export const VIKING_ICON_NAMES = Object.keys(
200
+ VIKING_ICON_PATHS,
201
+ ) as VikingIconName[];
202
+
203
+ /** Lucide-sourced icon names (for docs and showcase grouping). */
204
+ export const VIKING_LUCIDE_ICON_NAMES = Object.keys(
205
+ LUCIDE_ICON_PATHS,
206
+ ) as (keyof typeof LUCIDE_ICON_PATHS)[];
@@ -0,0 +1,77 @@
1
+ /** Official platform brand colors — exception for recognizable integration marks (same policy as Google/Apple in viking-icon). */
2
+ export const VIKING_INTEGRATION_BRAND_COLORS = {
3
+ kubernetes: "#326CE5",
4
+ tensorflow: "#FF6F00",
5
+ pytorch: "#EE4C2C",
6
+ "apache-spark": "#E25A1C",
7
+ databricks: "#FF3621",
8
+ "aws-redshift": "#8C4FFF",
9
+ } as const;
10
+
11
+ export type VikingIntegrationBrandName =
12
+ keyof typeof VIKING_INTEGRATION_BRAND_COLORS;
13
+
14
+ export const VIKING_INTEGRATION_BRAND_NAMES = Object.keys(
15
+ VIKING_INTEGRATION_BRAND_COLORS,
16
+ ) as VikingIntegrationBrandName[];
17
+
18
+ export const isIntegrationBrandIcon = (
19
+ name: string,
20
+ ): name is VikingIntegrationBrandName =>
21
+ (VIKING_INTEGRATION_BRAND_NAMES as readonly string[]).includes(name);
22
+
23
+ /**
24
+ * Official product logo paths (24×24 viewBox) sourced from Simple Icons (CC0).
25
+ * Inlined at build time — no runtime icon font or CDN.
26
+ */
27
+ const VIKING_INTEGRATION_BRAND_PATHS: Record<
28
+ VikingIntegrationBrandName,
29
+ string
30
+ > = {
31
+ kubernetes:
32
+ "M10.204 14.35l.007.01-.999 2.413a5.171 5.171 0 0 1-2.075-2.597l2.578-.437.004.005a.44.44 0 0 1 .484.606zm-.833-2.129a.44.44 0 0 0 .173-.756l.002-.011L7.585 9.7a5.143 5.143 0 0 0-.73 3.255l2.514-.725.002-.009zm1.145-1.98a.44.44 0 0 0 .699-.337l.01-.005.15-2.62a5.144 5.144 0 0 0-3.01 1.442l2.147 1.523.004-.002zm.76 2.75l.723.349.722-.347.18-.78-.5-.623h-.804l-.5.623.179.779zm1.5-3.095a.44.44 0 0 0 .7.336l.008.003 2.134-1.513a5.188 5.188 0 0 0-2.992-1.442l.148 2.615.002.001zm10.876 5.97l-5.773 7.181a1.6 1.6 0 0 1-1.248.594l-9.261.003a1.6 1.6 0 0 1-1.247-.596l-5.776-7.18a1.583 1.583 0 0 1-.307-1.34L2.1 5.573c.108-.47.425-.864.863-1.073L11.305.513a1.606 1.606 0 0 1 1.385 0l8.345 3.985c.438.209.755.604.863 1.073l2.062 8.955c.108.47-.005.963-.308 1.34zm-3.289-2.057c-.042-.01-.103-.026-.145-.034-.174-.033-.315-.025-.479-.038-.35-.037-.638-.067-.895-.148-.105-.04-.18-.165-.216-.216l-.201-.059a6.45 6.45 0 0 0-.105-2.332 6.465 6.465 0 0 0-.936-2.163c.052-.047.15-.133.177-.159.008-.09.001-.183.094-.282.197-.185.444-.338.743-.522.142-.084.273-.137.415-.242.032-.024.076-.062.11-.089.24-.191.295-.52.123-.736-.172-.216-.506-.236-.745-.045-.034.027-.08.062-.111.088-.134.116-.217.23-.33.35-.246.25-.45.458-.673.609-.097.056-.239.037-.303.033l-.19.135a6.545 6.545 0 0 0-4.146-2.003l-.012-.223c-.065-.062-.143-.115-.163-.25-.022-.268.015-.557.057-.905.023-.163.061-.298.068-.475.001-.04-.001-.099-.001-.142 0-.306-.224-.555-.5-.555-.275 0-.499.249-.499.555l.001.014c0 .041-.002.092 0 .128.006.177.044.312.067.475.042.348.078.637.056.906a.545.545 0 0 1-.162.258l-.012.211a6.424 6.424 0 0 0-4.166 2.003 8.373 8.373 0 0 1-.18-.128c-.09.012-.18.04-.297-.029-.223-.15-.427-.358-.673-.608-.113-.12-.195-.234-.329-.349-.03-.026-.077-.062-.111-.088a.594.594 0 0 0-.348-.132.481.481 0 0 0-.398.176c-.172.216-.117.546.123.737l.007.005.104.083c.142.105.272.159.414.242.299.185.546.338.743.522.076.082.09.226.1.288l.16.143a6.462 6.462 0 0 0-1.02 4.506l-.208.06c-.055.072-.133.184-.215.217-.257.081-.546.11-.895.147-.164.014-.305.006-.48.039-.037.007-.09.02-.133.03l-.004.002-.007.002c-.295.071-.484.342-.423.608.061.267.349.429.645.365l.007-.001.01-.003.129-.029c.17-.046.294-.113.448-.172.33-.118.604-.217.87-.256.112-.009.23.069.288.101l.217-.037a6.5 6.5 0 0 0 2.88 3.596l-.09.218c.033.084.069.199.044.282-.097.252-.263.517-.452.813-.091.136-.185.242-.268.399-.02.037-.045.095-.064.134-.128.275-.034.591.213.71.248.12.556-.007.69-.282v-.002c.02-.039.046-.09.062-.127.07-.162.094-.301.144-.458.132-.332.205-.68.387-.897.05-.06.13-.082.215-.105l.113-.205a6.453 6.453 0 0 0 4.609.012l.106.192c.086.028.18.042.256.155.136.232.229.507.342.84.05.156.074.295.145.457.016.037.043.09.062.129.133.276.442.402.69.282.247-.118.341-.435.213-.71-.02-.039-.045-.096-.065-.134-.083-.156-.177-.261-.268-.398-.19-.296-.346-.541-.443-.793-.04-.13.007-.21.038-.294-.018-.022-.059-.144-.083-.202a6.499 6.499 0 0 0 2.88-3.622c.064.01.176.03.213.038.075-.05.144-.114.28-.104.266.039.54.138.87.256.154.06.277.128.448.173.036.01.088.019.13.028l.009.003.007.001c.297.064.584-.098.645-.365.06-.266-.128-.537-.423-.608zM16.4 9.701l-1.95 1.746v.005a.44.44 0 0 0 .173.757l.003.01 2.526.728a5.199 5.199 0 0 0-.108-1.674A5.208 5.208 0 0 0 16.4 9.7zm-4.013 5.325a.437.437 0 0 0-.404-.232.44.44 0 0 0-.372.233h-.002l-1.268 2.292a5.164 5.164 0 0 0 3.326.003l-1.27-2.296h-.01zm1.888-1.293a.44.44 0 0 0-.27.036.44.44 0 0 0-.214.572l-.003.004 1.01 2.438a5.15 5.15 0 0 0 2.081-2.615l-2.6-.44-.004.005z",
33
+ tensorflow:
34
+ "M1.292 5.856L11.54 0v24l-4.095-2.378V7.603l-6.168 3.564.015-5.31zm21.43 5.311l-.014-5.31L12.46 0v24l4.095-2.378V14.87l3.092 1.788-.018-4.618-3.074-1.756V7.603l6.168 3.564z",
35
+ pytorch:
36
+ "M12.005 0L4.952 7.053a9.865 9.865 0 000 14.022 9.866 9.866 0 0014.022 0c3.984-3.9 3.986-10.205.085-14.023l-1.744 1.743c2.904 2.905 2.904 7.634 0 10.538s-7.634 2.904-10.538 0-2.904-7.634 0-10.538l4.647-4.646.582-.665zm3.568 3.899a1.327 1.327 0 00-1.327 1.327 1.327 1.327 0 001.327 1.328A1.327 1.327 0 0016.9 5.226 1.327 1.327 0 0015.573 3.9z",
37
+ "apache-spark":
38
+ "M10.812 0c-.425.013-.845.215-1.196.605a3.593 3.593 0 00-.493.722c-.355.667-.425 1.415-.556 2.143a551.9 551.9 0 00-.726 4.087c-.027.16-.096.227-.244.273C5.83 8.386 4.06 8.94 2.3 9.514c-.387.125-.773.289-1.114.506-1.042.665-1.196 1.753-.415 2.71.346.422.79.715 1.284.936 1.1.49 2.202.976 3.3 1.47.019.01.036.013.053.019h-.004l1.306.535c0 .023.002.045 0 .073-.2 2.03-.39 4.063-.58 6.095-.04.419-.012.831.134 1.23.317.87 1.065 1.148 1.881.701.372-.204.666-.497.937-.818 1.372-1.623 2.746-3.244 4.113-4.872.111-.133.205-.15.363-.098.349.117.697.231 1.045.347h.001c.02.012.045.02.073.03l.142.042c1.248.416 2.68.775 3.929 1.19.4.132.622.164 1.045.098.311-.048.592-.062.828-.236.602-.33.995-.957.988-1.682-.005-.427-.154-.813-.35-1.186-.82-1.556-1.637-3.113-2.461-4.666-.078-.148-.076-.243.037-.375 1.381-1.615 2.756-3.236 4.133-4.855.272-.32.513-.658.653-1.058.308-.878-.09-1.57-1-1.741a2.783 2.783 0 00-1.235.069c-1.974.521-3.947 1.041-5.918 1.57-.175.047-.26.015-.355-.144a353.08 353.08 0 00-2.421-4.018 4.61 4.61 0 00-.652-.849c-.371-.37-.802-.549-1.227-.536zm.172 3.703a.592.592 0 01.189.211c.87 1.446 1.742 2.89 2.609 4.338.07.118.135.16.277.121 1.525-.41 3.052-.813 4.579-1.217.367-.098.735-.193 1.103-.289a.399.399 0 01-.1.2c-1.259 1.48-2.516 2.962-3.779 4.438-.11.13-.12.22-.04.37.937 1.803 1.768 3.309 2.498 4.76l-3.696-1.019c-.538-.18-1.077-.358-1.615-.539-.163-.055-.25-.03-.36.1-1.248 1.488-2.504 2.97-3.759 4.454a.398.398 0 01-.18.132c.035-.378.068-.757.104-1.136.149-1.572.297-3.144.451-4.716-.03-.318.117-.405-.322-.545-1.493-.593-3.346-1.321-4.816-1.905a.595.595 0 01.24-.134c1.797-.57 3.595-1.14 5.394-1.705.127-.04.199-.092.211-.233.013-.148.05-.294.076-.441.241-1.363.483-2.726.726-4.088.068-.386.14-.771.21-1.157z",
39
+ databricks:
40
+ "M.95 14.184L12 20.403l9.919-5.55v2.21L12 22.662l-10.484-5.96-.565.308v.77L12 24l11.05-6.218v-4.317l-.515-.309L12 19.118l-9.867-5.653v-2.21L12 16.805l11.05-6.218V6.32l-.515-.308L12 11.974 2.647 6.681 12 1.388l7.76 4.368.668-.411v-.566L12 0 .95 6.27v.72L12 13.207l9.919-5.55v2.26L12 15.52 1.516 9.56l-.565.308Z",
41
+ "aws-redshift":
42
+ "M16.639 9.932a.822.822 0 0 1-.822-.82.823.823 0 0 1 1.645 0c0 .452-.37.82-.823.82m-2.086 4.994a.823.823 0 0 1-.822-.822.822.822 0 0 1 1.645 0 .822.822 0 0 1-.823.822m-5.004-.833a.822.822 0 1 1 .002-1.644.822.822 0 0 1-.002 1.644m-2.083 4.578a.823.823 0 0 1-.823-.82.823.823 0 0 1 1.645 0c0 .452-.37.82-.822.82m9.173-11.236a1.68 1.68 0 0 0-1.68 1.676c0 .566.285 1.066.718 1.37l-.782 1.982a1.674 1.674 0 0 0-1.923 1.104l-1.753-.398a1.675 1.675 0 0 0-3.348.103c0 .432.169.823.438 1.12l-.764 1.79c-.028-.001-.053-.008-.08-.008a1.68 1.68 0 0 0-1.68 1.676 1.68 1.68 0 0 0 3.36 0c0-.593-.312-1.112-.778-1.41l.674-1.579c.161.052.33.088.508.088.661 0 1.228-.386 1.502-.94l1.856.42a1.68 1.68 0 0 0 3.327-.325c0-.5-.224-.943-.574-1.25l.822-2.083c.053.005.104.016.157.016a1.68 1.68 0 0 0 1.68-1.676 1.68 1.68 0 0 0-1.68-1.676M12 23.145c-4.17 0-7.286-1.252-7.286-2.37V4.79C6.14 5.938 9.131 6.547 12 6.547c2.869 0 5.86-.609 7.286-1.756v15.983c0 1.12-3.116 2.37-7.286 2.37M12 .856c4.293 0 7.286 1.274 7.286 2.419 0 1.143-2.993 2.418-7.286 2.418-4.293 0-7.286-1.275-7.286-2.418C4.714 2.129 7.707.855 12 .855m8.143 2.419C20.143 1.147 15.947 0 12 0 8.052 0 3.857 1.147 3.857 3.274l.002.01h-.002v17.49C3.857 22.87 8.052 24 12 24c3.947 0 8.143-1.13 8.143-3.226V3.284h-.002l.002-.01",
43
+ };
44
+
45
+ const integrationBrandSvg = (name: VikingIntegrationBrandName): string => {
46
+ const fill = VIKING_INTEGRATION_BRAND_COLORS[name];
47
+ const d = VIKING_INTEGRATION_BRAND_PATHS[name];
48
+ return `<path fill="${fill}" d="${d}"/>`;
49
+ };
50
+
51
+ /** Multi-path brand SVG markup (24×24 viewBox) — official product logos at brand hue. */
52
+ export const VIKING_INTEGRATION_BRAND_SVGS: Record<
53
+ VikingIntegrationBrandName,
54
+ string
55
+ > = {
56
+ kubernetes: integrationBrandSvg("kubernetes"),
57
+ tensorflow: integrationBrandSvg("tensorflow"),
58
+ pytorch: integrationBrandSvg("pytorch"),
59
+ "apache-spark": integrationBrandSvg("apache-spark"),
60
+ databricks: integrationBrandSvg("databricks"),
61
+ "aws-redshift": integrationBrandSvg("aws-redshift"),
62
+ };
63
+
64
+ /** Path markup for icon registry / viking-icon-paths.json sync. */
65
+ export const VIKING_INTEGRATION_ICON_PATHS = Object.fromEntries(
66
+ (
67
+ Object.entries(VIKING_INTEGRATION_BRAND_PATHS) as [
68
+ VikingIntegrationBrandName,
69
+ string,
70
+ ][]
71
+ ).map(([name, d]) => [name, `<path d="${d}"/>`]),
72
+ ) as Record<VikingIntegrationBrandName, string>;
73
+
74
+ export type VikingIntegrationIconName = VikingIntegrationBrandName;
75
+
76
+ export const VIKING_INTEGRATION_ICON_NAMES_LIST =
77
+ VIKING_INTEGRATION_BRAND_NAMES;