@dataengineeringformachinelearning/viking-ui 4.1.0 → 4.1.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/{dist/fesm2022 → fesm2022}/dataengineeringformachinelearning-viking-ui.mjs +32 -9
- package/fesm2022/dataengineeringformachinelearning-viking-ui.mjs.map +1 -0
- package/package.json +78 -98
- package/viking-ui.css +1 -0
- package/{dist/web-components.js → web-components.js} +15 -2
- package/dist/LICENSE +0 -201
- package/dist/README.md +0 -277
- package/dist/fesm2022/dataengineeringformachinelearning-viking-ui.mjs.map +0 -1
- package/dist/package.json +0 -112
- package/dist/viking-ui.css +0 -1
- /package/{dist/deml-components.css → deml-components.css} +0 -0
- /package/{dist/design-tokens.css → design-tokens.css} +0 -0
- /package/{dist/fonts → fonts}/inter/InterVariable-Italic.woff2 +0 -0
- /package/{dist/fonts → fonts}/inter/InterVariable.woff2 +0 -0
- /package/{dist/icons.js → icons.js} +0 -0
- /package/{dist/index.d.ts → index.d.ts} +0 -0
- /package/{dist/index.js → index.js} +0 -0
- /package/{dist/site-drakkar.js → site-drakkar.js} +0 -0
- /package/{dist/src → src}/tokens/series-presets.ts +0 -0
- /package/{dist/src → src}/tokens/tailwind.preset.js +0 -0
- /package/{dist/src → src}/tokens/viking-tokens.json +0 -0
- /package/{dist/types → types}/dataengineeringformachinelearning-viking-ui.d.ts +0 -0
- /package/{dist/viking-components.css → viking-components.css} +0 -0
- /package/{dist/viking-tokens.json → viking-tokens.json} +0 -0
- /package/{dist/viking-ui-elements.js → viking-ui-elements.js} +0 -0
- /package/{dist/viking.manifest.json → viking.manifest.json} +0 -0
- /package/{dist/widget.js → widget.js} +0 -0
|
@@ -2999,7 +2999,16 @@ var VikingStatusPillWc = class extends HTMLElementBase {
|
|
|
2999
2999
|
static tag = "viking-status-pill";
|
|
3000
3000
|
static legacyTag = "viking-status-pill-wc";
|
|
3001
3001
|
static get observedAttributes() {
|
|
3002
|
-
return [
|
|
3002
|
+
return [
|
|
3003
|
+
"tone",
|
|
3004
|
+
"icon",
|
|
3005
|
+
"href",
|
|
3006
|
+
"target",
|
|
3007
|
+
"compact",
|
|
3008
|
+
"dot",
|
|
3009
|
+
"removable",
|
|
3010
|
+
"aria-label"
|
|
3011
|
+
];
|
|
3003
3012
|
}
|
|
3004
3013
|
shadow;
|
|
3005
3014
|
constructor() {
|
|
@@ -3757,7 +3766,11 @@ var VikingSiteNavbarWc = class extends HTMLElement {
|
|
|
3757
3766
|
signInHref,
|
|
3758
3767
|
dashboardHref
|
|
3759
3768
|
);
|
|
3760
|
-
const mobileAuth = this.renderAuthMobile(
|
|
3769
|
+
const mobileAuth = this.renderAuthMobile(
|
|
3770
|
+
authenticated,
|
|
3771
|
+
dashboardHref,
|
|
3772
|
+
signInHref
|
|
3773
|
+
);
|
|
3761
3774
|
const search = this.renderSearchButton(showSearch);
|
|
3762
3775
|
this.innerHTML = `
|
|
3763
3776
|
<header class="navbar">
|
package/dist/LICENSE
DELETED
|
@@ -1,201 +0,0 @@
|
|
|
1
|
-
Apache License
|
|
2
|
-
Version 2.0, January 2004
|
|
3
|
-
http://www.apache.org/licenses/
|
|
4
|
-
|
|
5
|
-
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
-
|
|
7
|
-
1. Definitions.
|
|
8
|
-
|
|
9
|
-
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
-
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
-
|
|
12
|
-
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
-
the copyright owner that is granting the License.
|
|
14
|
-
|
|
15
|
-
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
-
other entities that control, are controlled by, or are under common
|
|
17
|
-
control with that entity. For the purposes of this definition,
|
|
18
|
-
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
-
direction or management of such entity, whether by contract or
|
|
20
|
-
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
-
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
-
|
|
23
|
-
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
-
exercising permissions granted by this License.
|
|
25
|
-
|
|
26
|
-
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
-
including but not limited to software source code, documentation
|
|
28
|
-
source, and configuration files.
|
|
29
|
-
|
|
30
|
-
"Object" form shall mean any form resulting from mechanical
|
|
31
|
-
transformation or translation of a Source form, including but
|
|
32
|
-
not limited to compiled object code, generated documentation,
|
|
33
|
-
and conversions to other media types.
|
|
34
|
-
|
|
35
|
-
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
-
Object form, made available under the License, as indicated by a
|
|
37
|
-
copyright notice that is included in or attached to the work
|
|
38
|
-
(an example is provided in the Appendix below).
|
|
39
|
-
|
|
40
|
-
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
-
form, that is based on (or derived from) the Work and for which the
|
|
42
|
-
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
-
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
-
of this License, Derivative Works shall not include works that remain
|
|
45
|
-
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
-
the Work and Derivative Works thereof.
|
|
47
|
-
|
|
48
|
-
"Contribution" shall mean any work of authorship, including
|
|
49
|
-
the original version of the Work and any modifications or additions
|
|
50
|
-
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
-
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
-
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
-
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
-
means any form of electronic, verbal, or written communication sent
|
|
55
|
-
to the Licensor or its representatives, including but not limited to
|
|
56
|
-
communication on electronic mailing lists, source code control systems,
|
|
57
|
-
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
-
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
-
excluding communication that is conspicuously marked or otherwise
|
|
60
|
-
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
-
|
|
62
|
-
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
-
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
-
subsequently incorporated within the Work.
|
|
65
|
-
|
|
66
|
-
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
-
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
-
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
-
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
-
Work and such Derivative Works in Source or Object form.
|
|
72
|
-
|
|
73
|
-
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
-
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
-
(except as stated in this section) patent license to make, have made,
|
|
77
|
-
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
-
where such license applies only to those patent claims licensable
|
|
79
|
-
by such Contributor that are necessarily infringed by their
|
|
80
|
-
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
-
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
-
institute patent litigation against any entity (including a
|
|
83
|
-
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
-
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
-
or contributory patent infringement, then any patent licenses
|
|
86
|
-
granted to You under this License for that Work shall terminate
|
|
87
|
-
as of the date such litigation is filed.
|
|
88
|
-
|
|
89
|
-
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
-
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
-
modifications, and in Source or Object form, provided that You
|
|
92
|
-
meet the following conditions:
|
|
93
|
-
|
|
94
|
-
(a) You must give any other recipients of the Work or
|
|
95
|
-
Derivative Works a copy of this License; and
|
|
96
|
-
|
|
97
|
-
(b) You must cause any modified files to carry prominent notices
|
|
98
|
-
stating that You changed the files; and
|
|
99
|
-
|
|
100
|
-
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
-
that You distribute, all copyright, patent, trademark, and
|
|
102
|
-
attribution notices from the Source form of the Work,
|
|
103
|
-
excluding those notices that do not pertain to any part of
|
|
104
|
-
the Derivative Works; and
|
|
105
|
-
|
|
106
|
-
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
-
distribution, then any Derivative Works that You distribute must
|
|
108
|
-
include a readable copy of the attribution notices contained
|
|
109
|
-
within such NOTICE file, excluding those notices that do not
|
|
110
|
-
pertain to any part of the Derivative Works, in at least one
|
|
111
|
-
of the following places: within a NOTICE text file distributed
|
|
112
|
-
as part of the Derivative Works; within the Source form or
|
|
113
|
-
documentation, if distributed along with the Derivative Works; or,
|
|
114
|
-
within a display generated by the Derivative Works, if and
|
|
115
|
-
wherever such third-party notices normally appear. The contents
|
|
116
|
-
of the NOTICE file are for informational purposes only and
|
|
117
|
-
do not modify the License. You may add Your own attribution
|
|
118
|
-
notices within Derivative Works that You distribute, alongside
|
|
119
|
-
or as an addendum to the LICENSE text from the Work, provided
|
|
120
|
-
that such additional attribution notices cannot be construed
|
|
121
|
-
as modifying the License.
|
|
122
|
-
|
|
123
|
-
You may add Your own copyright statement to Your modifications and
|
|
124
|
-
may provide additional or different license terms and conditions
|
|
125
|
-
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
-
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
-
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
-
the conditions stated in this License.
|
|
129
|
-
|
|
130
|
-
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
-
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
-
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
-
this License, without any additional terms or conditions.
|
|
134
|
-
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
-
the terms of any separate license agreement you may have executed
|
|
136
|
-
with Licensor regarding such Contributions.
|
|
137
|
-
|
|
138
|
-
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
-
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
-
except as required for reasonable and customary use in describing the
|
|
141
|
-
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
-
|
|
143
|
-
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
-
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
-
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
-
implied, including, without limitation, any warranties or conditions
|
|
148
|
-
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
-
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
-
appropriateness of using or redistributing the Work and assume any
|
|
151
|
-
risks associated with Your exercise of permissions under this License.
|
|
152
|
-
|
|
153
|
-
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
-
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
-
unless required by applicable law (such as deliberate and grossly
|
|
156
|
-
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
-
liable to You for damages, including any direct, indirect, special,
|
|
158
|
-
incidental, or consequential damages of any character arising as a
|
|
159
|
-
result of this License or out of the use or inability to use the
|
|
160
|
-
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
-
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
-
other commercial damages or losses), even if such Contributor
|
|
163
|
-
has been advised of the possibility of such damages.
|
|
164
|
-
|
|
165
|
-
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
-
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
-
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
-
or other liability obligations and/or rights consistent with this
|
|
169
|
-
License. However, in accepting such obligations, You may act only
|
|
170
|
-
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
-
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
-
defend, and hold each Contributor harmless for any liability
|
|
173
|
-
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
-
of your accepting any such warranty or additional liability.
|
|
175
|
-
|
|
176
|
-
END OF TERMS AND CONDITIONS
|
|
177
|
-
|
|
178
|
-
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
-
|
|
180
|
-
To apply the Apache License to your work, attach the following
|
|
181
|
-
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
-
replaced with your own identifying information. (Don't include
|
|
183
|
-
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
-
comment syntax for the file format. We also recommend that a
|
|
185
|
-
file or class name and description of purpose be included on the
|
|
186
|
-
same "printed page" as the copyright notice for easier
|
|
187
|
-
identification within third-party archives.
|
|
188
|
-
|
|
189
|
-
Copyright 2026 Joe Alongi (Data Engineering for Machine Learning Contributors)
|
|
190
|
-
|
|
191
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
-
you may not use this file except in compliance with the License.
|
|
193
|
-
You may obtain a copy of the License at
|
|
194
|
-
|
|
195
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
-
|
|
197
|
-
Unless required by applicable law or agreed to in writing, software
|
|
198
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
-
See the License for the specific language governing permissions and
|
|
201
|
-
limitations under the License.
|
package/dist/README.md
DELETED
|
@@ -1,277 +0,0 @@
|
|
|
1
|
-
# Viking-UI
|
|
2
|
-
|
|
3
|
-
Publish target: **`@dataengineeringformachinelearning/viking-ui@4.0.6`**
|
|
4
|
-
Single source of truth: **`packages/viking-ui/`** (framework-agnostic styles, tokens, Web Components, and Angular wrapper entrypoints are consolidated here).
|
|
5
|
-
|
|
6
|
-
Universal DEML component library for Astro, Angular, and Django.
|
|
7
|
-
|
|
8
|
-
This release reflects the DEML premium restrained luxury visual direction with machined borders, high-contrast depth, and restrained teal/crimson accents.
|
|
9
|
-
|
|
10
|
-
## Architecture
|
|
11
|
-
|
|
12
|
-
- `src/styles/_variables.scss` defines the canonical `--viking-*` design tokens.
|
|
13
|
-
- `src/styles/components-bundle.scss` defines static CSS primitives shared by every app.
|
|
14
|
-
- `src/tokens/viking-tokens.json` exposes the same token contract for tooling.
|
|
15
|
-
- `src/web/` contains framework-neutral Web Components with Shadow DOM style isolation.
|
|
16
|
-
- `src/web-components/index.ts` is the script-bundle entry that registers those Web Components for Astro, Django, static HTML, and external hosts.
|
|
17
|
-
- `src/lib/` contains Angular standalone wrappers, services, and CVA helpers exported from the package root and `./angular`.
|
|
18
|
-
- `dist/icons.js` and `dist/site-drakkar.js` are framework-neutral utility bundles for static-site consumers that should not load Angular.
|
|
19
|
-
- `dist/design-tokens.css`, `dist/viking-components.css`, `dist/deml-components.css`, `dist/viking-ui.css`, `dist/viking-tokens.json`, `dist/web-components.js`, `dist/viking-ui-elements.js`, and `dist/widget.js` are the built artifacts.
|
|
20
|
-
- `dist/viking-ui.css` is the full app bundle. Load it once per surface; do not stack it with the split CSS artifacts.
|
|
21
|
-
|
|
22
|
-
## Build
|
|
23
|
-
|
|
24
|
-
```bash
|
|
25
|
-
npm run build --prefix packages/viking-ui
|
|
26
|
-
npm run test:viking-ui:package
|
|
27
|
-
```
|
|
28
|
-
|
|
29
|
-
## Storybook and Chromatic
|
|
30
|
-
|
|
31
|
-
Storybook is the release-grade visual cockpit for the Web Component layer and
|
|
32
|
-
publishing workflow.
|
|
33
|
-
|
|
34
|
-
```bash
|
|
35
|
-
npm run build-storybook --workspace @dataengineeringformachinelearning/viking-ui
|
|
36
|
-
|
|
37
|
-
# Requires CHROMATIC_PROJECT_TOKEN
|
|
38
|
-
npm run chromatic --workspace @dataengineeringformachinelearning/viking-ui
|
|
39
|
-
```
|
|
40
|
-
|
|
41
|
-
Chromatic snapshots publish from `packages/viking-ui/storybook-static` and cover
|
|
42
|
-
mobile, tablet, and desktop widths.
|
|
43
|
-
|
|
44
|
-
## Versioning
|
|
45
|
-
|
|
46
|
-
Viking-UI uses Changesets from the repository root:
|
|
47
|
-
|
|
48
|
-
```bash
|
|
49
|
-
npm run changeset
|
|
50
|
-
npm run version:viking-ui
|
|
51
|
-
```
|
|
52
|
-
|
|
53
|
-
See [docs/viking-ui-release.md](../../docs/viking-ui-release.md) for the full
|
|
54
|
-
release, visual regression, and propagation workflow.
|
|
55
|
-
|
|
56
|
-
## Consumption
|
|
57
|
-
|
|
58
|
-
### 1) NPM usage (recommended for apps)
|
|
59
|
-
|
|
60
|
-
Use this for app-first surfaces such as deml.app, internal dashboards, and any build chain that supports package installs.
|
|
61
|
-
|
|
62
|
-
```ts
|
|
63
|
-
import "@dataengineeringformachinelearning/viking-ui/viking-ui.css";
|
|
64
|
-
```
|
|
65
|
-
|
|
66
|
-
```ts
|
|
67
|
-
import {
|
|
68
|
-
VikingButton,
|
|
69
|
-
VikingInput,
|
|
70
|
-
VikingModal,
|
|
71
|
-
} from "@dataengineeringformachinelearning/viking-ui/angular";
|
|
72
|
-
```
|
|
73
|
-
|
|
74
|
-
```bash
|
|
75
|
-
npm install @dataengineeringformachinelearning/viking-ui
|
|
76
|
-
```
|
|
77
|
-
|
|
78
|
-
For Angular components, continue using the exported Angular APIs and theme tokens as normal.
|
|
79
|
-
|
|
80
|
-
```ts
|
|
81
|
-
import {
|
|
82
|
-
VikingButton,
|
|
83
|
-
VikingInput,
|
|
84
|
-
VikingModal,
|
|
85
|
-
} from "@dataengineeringformachinelearning/viking-ui";
|
|
86
|
-
|
|
87
|
-
// or when building custom element demos:
|
|
88
|
-
import "@dataengineeringformachinelearning/viking-ui/web-components.js";
|
|
89
|
-
import "@dataengineeringformachinelearning/viking-ui/viking-ui.css";
|
|
90
|
-
```
|
|
91
|
-
|
|
92
|
-
Framework-neutral utility imports are available without pulling in Angular:
|
|
93
|
-
|
|
94
|
-
```ts
|
|
95
|
-
import { resolveVikingIcon } from "@dataengineeringformachinelearning/viking-ui/icons";
|
|
96
|
-
import { SITE_NAV_LINKS } from "@dataengineeringformachinelearning/viking-ui/site-drakkar";
|
|
97
|
-
import tokens from "@dataengineeringformachinelearning/viking-ui/tokens.json";
|
|
98
|
-
```
|
|
99
|
-
|
|
100
|
-
### 2) jsDelivr CDN usage (recommended for widgets and quick embeds)
|
|
101
|
-
|
|
102
|
-
Use this for external websites, marketing snippets, and widget-style integrations that should load without npm.
|
|
103
|
-
|
|
104
|
-
The package artifacts are published in `dist/`, so you can load them directly from jsDelivr:
|
|
105
|
-
|
|
106
|
-
### 1) CSS only
|
|
107
|
-
|
|
108
|
-
```html
|
|
109
|
-
<link
|
|
110
|
-
rel="stylesheet"
|
|
111
|
-
href="https://cdn.jsdelivr.net/npm/@dataengineeringformachinelearning/viking-ui@latest/dist/viking-ui.css"
|
|
112
|
-
/>
|
|
113
|
-
```
|
|
114
|
-
|
|
115
|
-
### 2) Web Components only
|
|
116
|
-
|
|
117
|
-
```html
|
|
118
|
-
<script
|
|
119
|
-
type="module"
|
|
120
|
-
src="https://cdn.jsdelivr.net/npm/@dataengineeringformachinelearning/viking-ui@latest/dist/web-components.js"
|
|
121
|
-
></script>
|
|
122
|
-
```
|
|
123
|
-
|
|
124
|
-
### 3) CSS + Web Components together
|
|
125
|
-
|
|
126
|
-
```html
|
|
127
|
-
<link
|
|
128
|
-
rel="stylesheet"
|
|
129
|
-
href="https://cdn.jsdelivr.net/npm/@dataengineeringformachinelearning/viking-ui@latest/dist/viking-ui.css"
|
|
130
|
-
/>
|
|
131
|
-
<script
|
|
132
|
-
type="module"
|
|
133
|
-
src="https://cdn.jsdelivr.net/npm/@dataengineeringformachinelearning/viking-ui@latest/dist/web-components.js"
|
|
134
|
-
></script>
|
|
135
|
-
```
|
|
136
|
-
|
|
137
|
-
### 4) Version pinning
|
|
138
|
-
|
|
139
|
-
Use `@latest` for latest stable assets, or replace it with a concrete version for locked
|
|
140
|
-
builds.
|
|
141
|
-
|
|
142
|
-
```html
|
|
143
|
-
<!-- Latest -->
|
|
144
|
-
<link
|
|
145
|
-
rel="stylesheet"
|
|
146
|
-
href="https://cdn.jsdelivr.net/npm/@dataengineeringformachinelearning/viking-ui@latest/dist/viking-ui.css"
|
|
147
|
-
/>
|
|
148
|
-
<script
|
|
149
|
-
type="module"
|
|
150
|
-
src="https://cdn.jsdelivr.net/npm/@dataengineeringformachinelearning/viking-ui@latest/dist/web-components.js"
|
|
151
|
-
></script>
|
|
152
|
-
```
|
|
153
|
-
|
|
154
|
-
```html
|
|
155
|
-
<!-- Pinned -->
|
|
156
|
-
<link
|
|
157
|
-
rel="stylesheet"
|
|
158
|
-
href="https://cdn.jsdelivr.net/npm/@dataengineeringformachinelearning/viking-ui@4.0.6/dist/viking-ui.css"
|
|
159
|
-
/>
|
|
160
|
-
<script
|
|
161
|
-
type="module"
|
|
162
|
-
src="https://cdn.jsdelivr.net/npm/@dataengineeringformachinelearning/viking-ui@4.0.6/dist/web-components.js"
|
|
163
|
-
></script>
|
|
164
|
-
```
|
|
165
|
-
|
|
166
|
-
### 5) Full minimal HTML example (copy/paste)
|
|
167
|
-
|
|
168
|
-
```html
|
|
169
|
-
<!doctype html>
|
|
170
|
-
<html lang="en" data-theme="dark">
|
|
171
|
-
<head>
|
|
172
|
-
<meta charset="utf-8" />
|
|
173
|
-
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
174
|
-
<title>Viking-UI CDN demo</title>
|
|
175
|
-
<link
|
|
176
|
-
rel="stylesheet"
|
|
177
|
-
href="https://cdn.jsdelivr.net/npm/@dataengineeringformachinelearning/viking-ui@latest/dist/viking-ui.css"
|
|
178
|
-
/>
|
|
179
|
-
<script
|
|
180
|
-
type="module"
|
|
181
|
-
src="https://cdn.jsdelivr.net/npm/@dataengineeringformachinelearning/viking-ui@latest/dist/web-components.js"
|
|
182
|
-
></script>
|
|
183
|
-
</head>
|
|
184
|
-
<body>
|
|
185
|
-
<main class="page-inner-wrapper viking-stack viking-stack--loose">
|
|
186
|
-
<h1 class="viking-heading viking-heading-xl">Viking widget</h1>
|
|
187
|
-
<viking-card-wc compact>
|
|
188
|
-
<h2 class="viking-heading viking-heading-sm">Widget card</h2>
|
|
189
|
-
<p class="viking-text-muted">
|
|
190
|
-
Works in marketing pages and external websites.
|
|
191
|
-
</p>
|
|
192
|
-
</viking-card-wc>
|
|
193
|
-
<viking-button-wc variant="primary">Open dashboard</viking-button-wc>
|
|
194
|
-
</main>
|
|
195
|
-
</body>
|
|
196
|
-
</html>
|
|
197
|
-
```
|
|
198
|
-
|
|
199
|
-
### 3) When to use the sync script
|
|
200
|
-
|
|
201
|
-
Use `scripts/sync_design_system.py` when you need synced static assets instead of npm:
|
|
202
|
-
|
|
203
|
-
```bash
|
|
204
|
-
python scripts/sync_design_system.py
|
|
205
|
-
```
|
|
206
|
-
|
|
207
|
-
This path remains for surfaces that are not using package installs directly, especially
|
|
208
|
-
legacy or Django-rendered templates that consume `/assets/viking-ui.css` and shared class names.
|
|
209
|
-
|
|
210
|
-
### 6) Status widget via jsDelivr (no npm install)
|
|
211
|
-
|
|
212
|
-
Use this when embedding a live status badge on external pages:
|
|
213
|
-
|
|
214
|
-
```html
|
|
215
|
-
<!doctype html>
|
|
216
|
-
<html lang="en" data-theme="dark">
|
|
217
|
-
<head>
|
|
218
|
-
<meta charset="utf-8" />
|
|
219
|
-
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
220
|
-
<title>DEML Status Widget</title>
|
|
221
|
-
<link
|
|
222
|
-
rel="stylesheet"
|
|
223
|
-
href="https://cdn.jsdelivr.net/npm/@dataengineeringformachinelearning/viking-ui@latest/dist/viking-ui.css"
|
|
224
|
-
/>
|
|
225
|
-
<script
|
|
226
|
-
type="module"
|
|
227
|
-
src="https://cdn.jsdelivr.net/npm/@dataengineeringformachinelearning/viking-ui@latest/dist/web-components.js"
|
|
228
|
-
></script>
|
|
229
|
-
<script
|
|
230
|
-
src="https://cdn.jsdelivr.net/npm/@dataengineeringformachinelearning/viking-ui@latest/dist/widget.js"
|
|
231
|
-
async
|
|
232
|
-
defer
|
|
233
|
-
data-page-id="platform-status"
|
|
234
|
-
data-backend-url="https://api.example.com"
|
|
235
|
-
data-frontend-url="https://deml.app"
|
|
236
|
-
></script>
|
|
237
|
-
</head>
|
|
238
|
-
<body></body>
|
|
239
|
-
</html>
|
|
240
|
-
```
|
|
241
|
-
|
|
242
|
-
Pinned release example:
|
|
243
|
-
|
|
244
|
-
```html
|
|
245
|
-
<script
|
|
246
|
-
src="https://cdn.jsdelivr.net/npm/@dataengineeringformachinelearning/viking-ui@4.0.6/dist/widget.js"
|
|
247
|
-
async
|
|
248
|
-
defer
|
|
249
|
-
data-page-id="platform-status"
|
|
250
|
-
data-backend-url="https://api.example.com"
|
|
251
|
-
data-frontend-url="https://deml.app"
|
|
252
|
-
></script>
|
|
253
|
-
```
|
|
254
|
-
|
|
255
|
-
Replace `api.example.com` with your backend URL and update `data-page-id` / `data-frontend-url` for your status page.
|
|
256
|
-
|
|
257
|
-
This package is the source of truth. Angular wrappers live in `packages/viking-ui/src/lib`, framework-neutral Web Components live in `packages/viking-ui/src/web`, shared utility exports live under `packages/viking-ui/src/core`, and token/build artifacts are emitted from this package. Astro and Django consume package artifacts directly through npm, CDN, or synced static assets.
|
|
258
|
-
|
|
259
|
-
Angular app shells consume the package CSS from `angular.json`:
|
|
260
|
-
|
|
261
|
-
```json
|
|
262
|
-
{
|
|
263
|
-
"styles": [
|
|
264
|
-
"@dataengineeringformachinelearning/viking-ui/viking-ui.css",
|
|
265
|
-
"src/styles.scss"
|
|
266
|
-
]
|
|
267
|
-
}
|
|
268
|
-
```
|
|
269
|
-
|
|
270
|
-
Django, marketing, and showcase static assets are copied from `packages/viking-ui/dist` by:
|
|
271
|
-
|
|
272
|
-
```bash
|
|
273
|
-
python scripts/sync_design_system.py
|
|
274
|
-
node scripts/validate_viking_ui_assets.mjs
|
|
275
|
-
```
|
|
276
|
-
|
|
277
|
-
See [MIGRATION_PLAN.md](./MIGRATION_PLAN.md) for the rebuild phases.
|