@ni/nimble-components 35.3.4 → 35.4.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.
- package/dist/all-components-bundle.js +5 -0
- package/dist/all-components-bundle.js.map +1 -1
- package/dist/all-components-bundle.min.js +4866 -4866
- package/dist/all-components-bundle.min.js.map +1 -1
- package/dist/custom-elements.json +126 -126
- package/dist/custom-elements.md +41 -41
- package/dist/esm/theme-provider/design-token-comments.js +9 -8
- package/dist/esm/theme-provider/design-token-comments.js.map +1 -1
- package/dist/esm/theme-provider/design-token-names.js +1 -0
- package/dist/esm/theme-provider/design-token-names.js.map +1 -1
- package/dist/esm/theme-provider/design-token-values.d.ts +1 -0
- package/dist/esm/theme-provider/design-token-values.js +2 -1
- package/dist/esm/theme-provider/design-token-values.js.map +1 -1
- package/dist/esm/theme-provider/design-tokens.d.ts +1 -0
- package/dist/esm/theme-provider/design-tokens.js +1 -0
- package/dist/esm/theme-provider/design-tokens.js.map +1 -1
- package/dist/tokens-internal.scss +6 -0
- package/dist/tokens.scss +11 -8
- package/package.json +2 -2
|
@@ -20,6 +20,12 @@ $ni-nimble-internal-application-background-color: --ni-nimble-application-backgr
|
|
|
20
20
|
/// Requires SCSS interpolation to set, ie `#{$ni-nimble-internal-divider-background-color}: <new value>;`.
|
|
21
21
|
$ni-nimble-internal-divider-background-color: --ni-nimble-divider-background-color;
|
|
22
22
|
|
|
23
|
+
/// Internal property for $ni-nimble-divider-background-dynamic-color.
|
|
24
|
+
/// Not intended for general use. If used, inform Nimble squad of use-case.
|
|
25
|
+
/// Used to override a token value (generally making it no longer theme-aware).
|
|
26
|
+
/// Requires SCSS interpolation to set, ie `#{$ni-nimble-internal-divider-background-dynamic-color}: <new value>;`.
|
|
27
|
+
$ni-nimble-internal-divider-background-dynamic-color: --ni-nimble-divider-background-dynamic-color;
|
|
28
|
+
|
|
23
29
|
/// Internal property for $ni-nimble-header-background-color.
|
|
24
30
|
/// Not intended for general use. If used, inform Nimble squad of use-case.
|
|
25
31
|
/// Used to override a token value (generally making it no longer theme-aware).
|
package/dist/tokens.scss
CHANGED
|
@@ -12,9 +12,12 @@ $ni-nimble-action-rgb-partial-color: var($ni-nimble-internal-action-rgb-partial-
|
|
|
12
12
|
/// Primary background color for the application
|
|
13
13
|
$ni-nimble-application-background-color: var($ni-nimble-internal-application-background-color);
|
|
14
14
|
|
|
15
|
-
///
|
|
15
|
+
/// Background color for static / non-movable dividers
|
|
16
16
|
$ni-nimble-divider-background-color: var($ni-nimble-internal-divider-background-color);
|
|
17
17
|
|
|
18
|
+
/// Background color for dynamic / movable dividers
|
|
19
|
+
$ni-nimble-divider-background-dynamic-color: var($ni-nimble-internal-divider-background-dynamic-color);
|
|
20
|
+
|
|
18
21
|
/// Background color for application headers
|
|
19
22
|
$ni-nimble-header-background-color: var($ni-nimble-internal-header-background-color);
|
|
20
23
|
|
|
@@ -705,34 +708,34 @@ $ni-nimble-mention-font-weight: var($ni-nimble-internal-mention-font-weight);
|
|
|
705
708
|
/// Font line height for mention views
|
|
706
709
|
$ni-nimble-mention-font-line-height: var($ni-nimble-internal-mention-font-line-height);
|
|
707
710
|
|
|
708
|
-
/// Background color for static calendar events
|
|
711
|
+
/// Background color for static / non-movable calendar events
|
|
709
712
|
$ni-nimble-calendar-event-background-static-color: var($ni-nimble-internal-calendar-event-background-static-color);
|
|
710
713
|
|
|
711
|
-
/// Background color for dynamic calendar events
|
|
714
|
+
/// Background color for dynamic / movable calendar events
|
|
712
715
|
$ni-nimble-calendar-event-background-dynamic-color: var($ni-nimble-internal-calendar-event-background-dynamic-color);
|
|
713
716
|
|
|
714
717
|
/// Background color for transient calendar events
|
|
715
718
|
$ni-nimble-calendar-event-background-transient-color: var($ni-nimble-internal-calendar-event-background-transient-color);
|
|
716
719
|
|
|
717
|
-
/// Border color for static calendar events
|
|
720
|
+
/// Border color for static / non-movable calendar events
|
|
718
721
|
$ni-nimble-calendar-event-border-static-color: var($ni-nimble-internal-calendar-event-border-static-color);
|
|
719
722
|
|
|
720
723
|
/// Border color for transient calendar events
|
|
721
724
|
$ni-nimble-calendar-event-border-transient-color: var($ni-nimble-internal-calendar-event-border-transient-color);
|
|
722
725
|
|
|
723
|
-
/// Font color for static calendar events
|
|
726
|
+
/// Font color for static / non-movable calendar events
|
|
724
727
|
$ni-nimble-calendar-event-static-font-color: var($ni-nimble-internal-calendar-event-static-font-color);
|
|
725
728
|
|
|
726
|
-
/// Font color for dynamic calendar events
|
|
729
|
+
/// Font color for dynamic / movable calendar events
|
|
727
730
|
$ni-nimble-calendar-event-dynamic-font-color: var($ni-nimble-internal-calendar-event-dynamic-font-color);
|
|
728
731
|
|
|
729
732
|
/// Font color for transient calendar events
|
|
730
733
|
$ni-nimble-calendar-event-transient-font-color: var($ni-nimble-internal-calendar-event-transient-font-color);
|
|
731
734
|
|
|
732
|
-
/// Color while hovering static calendar events
|
|
735
|
+
/// Color while hovering static / non-movable calendar events
|
|
733
736
|
$ni-nimble-calendar-event-background-hover-static-color: var($ni-nimble-internal-calendar-event-background-hover-static-color);
|
|
734
737
|
|
|
735
|
-
/// Color while hovering dynamic calendar events
|
|
738
|
+
/// Color while hovering dynamic / movable calendar events
|
|
736
739
|
$ni-nimble-calendar-event-background-hover-dynamic-color: var($ni-nimble-internal-calendar-event-background-hover-dynamic-color);
|
|
737
740
|
|
|
738
741
|
/// Color while hovering transient calendar events
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ni/nimble-components",
|
|
3
|
-
"version": "35.
|
|
3
|
+
"version": "35.4.0",
|
|
4
4
|
"description": "Styled web components for the NI Nimble Design System",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "npm run build:icons && npm run build:workers && npm run build:components && npm run build:scss && npm run build:cem",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"@ni/fast-element": "^10.1.0",
|
|
50
50
|
"@ni/fast-foundation": "^10.2.1",
|
|
51
51
|
"@ni/fast-web-utilities": "^10.0.0",
|
|
52
|
-
"@ni/nimble-tokens": "^8.
|
|
52
|
+
"@ni/nimble-tokens": "^8.16.0",
|
|
53
53
|
"@ni/unit-format": "^1.0.3",
|
|
54
54
|
"@tanstack/table-core": "^8.19.3",
|
|
55
55
|
"@tanstack/virtual-core": "^3.10.6",
|