@dataengineeringformachinelearning/viking-ui 1.0.0 → 1.0.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 +25 -5
- package/fesm2022/dataengineeringformachinelearning-viking-ui.mjs +390 -225
- package/fesm2022/dataengineeringformachinelearning-viking-ui.mjs.map +1 -1
- package/package.json +2 -2
- package/src/styles/viking-ui-bundle.scss +2 -1
- package/src/styles/viking-ui.scss +1 -1
- package/types/dataengineeringformachinelearning-viking-ui.d.ts +90 -67
- package/viking.manifest.json +146 -97
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dataengineeringformachinelearning/viking-ui",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Viking-UI: DEML clinical design system for Angular.
|
|
3
|
+
"version": "1.0.2",
|
|
4
|
+
"description": "Viking-UI: DEML clinical design system for Angular. THEME.md palette, WCAG 2.1 AA, zero third-party UI runtime deps.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"angular",
|
|
7
7
|
"ui",
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
// Static CSS bundle entry — tokens + page shell + footer + navbar for non-Angular apps.
|
|
1
|
+
// Static CSS bundle entry — tokens + page shell + footer + navbar + a11y for non-Angular apps.
|
|
2
2
|
@use 'viking-ui' as *;
|
|
3
|
+
@use '../../../../../packages/deml-design-system/src/components/a11y' as *;
|
|
3
4
|
@use 'static-navbar' as *;
|
|
4
5
|
@use '../lib/footer/footer' as *;
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
// ============================================================================
|
|
5
5
|
// Viking-UI design tokens
|
|
6
6
|
// ----------------------------------------------------------------------------
|
|
7
|
-
// DEML clinical design system —
|
|
7
|
+
// DEML clinical design system — Viking-UI patterns on THEME.md tokens.
|
|
8
8
|
// Lab coat aesthetic: crayola-blue accents, sharp borders, no gradients.
|
|
9
9
|
// 8px grid. 16px main / 14px UI font floors. No colors outside THEME.md.
|
|
10
10
|
// ============================================================================
|