@nldd/design-system 0.8.72 → 0.8.74
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/LICENSE +287 -0
- package/NOTICES.md +55 -0
- package/README.md +7 -2
- package/dist/components/components.js +1 -1
- package/dist/components/content/icon/icon-aliases.d.ts.map +1 -1
- package/dist/components/content/icon/icon-aliases.js +91 -13
- package/dist/components/content/icon/icon-aliases.js.map +1 -1
- package/dist/components/content/icon/icon-gallery-status.d.ts +3 -0
- package/dist/components/content/icon/icon-gallery-status.d.ts.map +1 -0
- package/dist/components/content/icon/icon-gallery-status.js +82 -0
- package/dist/components/content/icon/icon-gallery-status.js.map +1 -0
- package/dist/components/content/icon/icon-registry.d.ts.map +1 -1
- package/dist/components/content/icon/icon-registry.js +63 -26
- package/dist/components/content/icon/icon-registry.js.map +1 -1
- package/dist/components/{index-CvGdvr33.js → index-73GOYriu.js} +1 -1
- package/dist/components/{index-CqbiWdc5.js → index-BBerWrN2.js} +1 -1
- package/dist/components/{index-ipWLrQY3.js → index-CAIa-ZY1.js} +1 -1
- package/dist/components/{index-i1n9W3UN.js → index-CChmEZdd.js} +1 -1
- package/dist/components/{index-CSxjYgj9.js → index-CI0H6jWT.js} +165 -50
- package/dist/components/{index-Bt_KkJKU.js → index-JawcAuAj.js} +1 -1
- package/dist/components/{index-B9_6JE9f.js → index-fjTBz8ya.js} +1 -1
- package/dist/components/lists-and-tables/cells/timeline-track-cell/timeline-track-cell.styles.js +3 -3
- package/dist/components/status-and-feedback/step-indicator/step-indicator.styles.js +2 -2
- package/package.json +3 -2
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { L as LRParser, E as ExternalTokenizer, C as ContextTracker, s as styleTags, t as tags, a as LanguageSupport, g as EditorView, h as syntaxTree, j as EditorSelection, b as LRLanguage, i as indentNodeProp, f as foldNodeProp, k as bracketMatchingHandle } from "./index-
|
|
1
|
+
import { L as LRParser, E as ExternalTokenizer, C as ContextTracker, s as styleTags, t as tags, a as LanguageSupport, g as EditorView, h as syntaxTree, j as EditorSelection, b as LRLanguage, i as indentNodeProp, f as foldNodeProp, k as bracketMatchingHandle } from "./index-CI0H6jWT.js";
|
|
2
2
|
const StartTag = 1, StartCloseTag = 2, MissingCloseTag = 3, mismatchedStartCloseTag = 4, incompleteStartCloseTag = 5, commentContent$1 = 36, piContent$1 = 37, cdataContent$1 = 38, Element$1 = 11, OpenTag = 13;
|
|
3
3
|
function nameChar(ch) {
|
|
4
4
|
return ch == 45 || ch == 46 || ch == 58 || ch >= 65 && ch <= 90 || ch == 95 || ch >= 97 && ch <= 122 || ch >= 161;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { a as LanguageSupport, b as LRLanguage, i as indentNodeProp, c as continuedIndent, f as foldNodeProp, s as styleTags, E as ExternalTokenizer, l as ifNotIn, m as completeFromList, L as LRParser, h as syntaxTree, t as tags } from "./index-
|
|
1
|
+
import { a as LanguageSupport, b as LRLanguage, i as indentNodeProp, c as continuedIndent, f as foldNodeProp, s as styleTags, E as ExternalTokenizer, l as ifNotIn, m as completeFromList, L as LRParser, h as syntaxTree, t as tags } from "./index-CI0H6jWT.js";
|
|
2
2
|
const whitespace = 36, LineComment = 1, BlockComment = 2, String$1 = 3, Number = 4, Bool = 5, Null = 6, ParenL = 7, ParenR = 8, BraceL = 9, BraceR = 10, BracketL = 11, BracketR = 12, Semi = 13, Dot = 14, Operator = 15, Punctuation = 16, SpecialVar = 17, Identifier = 18, QuotedIdentifier = 19, Keyword = 20, Type = 21, Bits = 22, Bytes = 23, Builtin = 24;
|
|
3
3
|
function isAlpha(ch) {
|
|
4
4
|
return ch >= 65 && ch <= 90 || ch >= 97 && ch <= 122 || ch >= 48 && ch <= 57;
|
package/dist/components/lists-and-tables/cells/timeline-track-cell/timeline-track-cell.styles.js
CHANGED
|
@@ -16,7 +16,7 @@ export const timelineTrackCellStyles = css `
|
|
|
16
16
|
--_ring-color: var(--context-parent-background-color, var(--semantics-surfaces-base-background-color));
|
|
17
17
|
--_marker-content-color: var(--semantics-content-contrast-color);
|
|
18
18
|
--_future-content-color: var(--semantics-content-secondary-color);
|
|
19
|
-
--_current-fill-color: light-dark(var(--primitives-color-accent-
|
|
19
|
+
--_current-fill-color: light-dark(var(--primitives-color-accent-75), var(--primitives-color-accent-100));
|
|
20
20
|
--_icon-size: calc(var(--_marker-size) * 2 / 3);
|
|
21
21
|
|
|
22
22
|
isolation: isolate;
|
|
@@ -33,7 +33,7 @@ export const timelineTrackCellStyles = css `
|
|
|
33
33
|
}
|
|
34
34
|
|
|
35
35
|
:host([minor]) {
|
|
36
|
-
--_marker-size: var(--primitives-space-
|
|
36
|
+
--_marker-size: var(--primitives-space-10);
|
|
37
37
|
}
|
|
38
38
|
|
|
39
39
|
:host([variant="step"]) {
|
|
@@ -118,7 +118,7 @@ export const timelineTrackCellStyles = css `
|
|
|
118
118
|
/* Ring in the background color: masks the line running underneath. */
|
|
119
119
|
box-shadow: 0 0 0 var(--_ring-thickness) var(--_ring-color);
|
|
120
120
|
color: var(--_marker-content-color);
|
|
121
|
-
font: var(--primitives-font-body-sm-
|
|
121
|
+
font: var(--primitives-font-body-sm-medium-flat);
|
|
122
122
|
}
|
|
123
123
|
|
|
124
124
|
:host([status="past"]) .timeline-track-cell__marker,
|
|
@@ -26,7 +26,7 @@ export const stepIndicatorStyles = css `
|
|
|
26
26
|
--_ring-color: var(--context-parent-background-color, var(--semantics-surfaces-base-background-color));
|
|
27
27
|
--_marker-content-color: var(--semantics-content-secondary-color);
|
|
28
28
|
--_progress-content-color: var(--semantics-content-contrast-color);
|
|
29
|
-
--_current-fill-color: light-dark(var(--primitives-color-accent-
|
|
29
|
+
--_current-fill-color: light-dark(var(--primitives-color-accent-75), var(--primitives-color-accent-100));
|
|
30
30
|
--_icon-size: var(--primitives-space-16);
|
|
31
31
|
--_title-color: var(--semantics-content-secondary-color);
|
|
32
32
|
--_current-title-color: var(--semantics-content-color);
|
|
@@ -183,7 +183,7 @@ export const stepIndicatorItemStyles = css `
|
|
|
183
183
|
box-shadow: 0 0 0 var(--_ring-thickness) var(--_ring-color);
|
|
184
184
|
background-color: var(--_track-color);
|
|
185
185
|
color: var(--_marker-content-color);
|
|
186
|
-
font: var(--primitives-font-body-sm-
|
|
186
|
+
font: var(--primitives-font-body-sm-medium-flat);
|
|
187
187
|
|
|
188
188
|
@media (forced-colors: active) {
|
|
189
189
|
border: var(--primitives-border-width-regular) solid CanvasText;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nldd/design-system",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.74",
|
|
4
4
|
"description": "Design System voor Nederlandse Digitale Dienst",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/components/components.js",
|
|
@@ -432,7 +432,8 @@
|
|
|
432
432
|
},
|
|
433
433
|
"files": [
|
|
434
434
|
"dist",
|
|
435
|
-
"custom-elements.json"
|
|
435
|
+
"custom-elements.json",
|
|
436
|
+
"NOTICES.md"
|
|
436
437
|
],
|
|
437
438
|
"repository": {
|
|
438
439
|
"type": "git",
|