@blackbaud/skyux-design-tokens 0.0.67 → 0.0.69
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/CHANGELOG.md +14 -0
- package/assets/scss/blackbaud.css +2 -2
- package/assets/scss/modern.css +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
- Added `neutral-medium-dark` token in modern. [#64](https://github.com/blackbaud/skyux-design-tokens/pull/64)
|
|
4
4
|
|
|
5
|
+
## [0.0.69](https://github.com/blackbaud/skyux-design-tokens/compare/0.0.68...0.0.69) (2025-06-30)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* use CDN URL if PACKAGEVERSION env variable is present ([#206](https://github.com/blackbaud/skyux-design-tokens/issues/206)) ([37bee0a](https://github.com/blackbaud/skyux-design-tokens/commit/37bee0a97fc7517f1d95238c371b189117c39b79))
|
|
11
|
+
|
|
12
|
+
## [0.0.68](https://github.com/blackbaud/skyux-design-tokens/compare/0.0.67...0.0.68) (2025-06-27)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* remove image tokens ([#203](https://github.com/blackbaud/skyux-design-tokens/issues/203)) ([df3eba4](https://github.com/blackbaud/skyux-design-tokens/commit/df3eba48a97c5d028db1669f074638e558f0adb6))
|
|
18
|
+
|
|
5
19
|
## [0.0.67](https://github.com/blackbaud/skyux-design-tokens/compare/0.0.66...0.0.67) (2025-06-26)
|
|
6
20
|
|
|
7
21
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
@property --bb-image-logo-primary-src {
|
|
2
2
|
syntax: '<url>';
|
|
3
3
|
inherits: true;
|
|
4
|
-
initial-value: url('');
|
|
4
|
+
initial-value: url('data:,');
|
|
5
5
|
}
|
|
6
6
|
|
|
7
7
|
.sky-theme-modern.sky-theme-brand-base {
|
|
@@ -148,7 +148,7 @@
|
|
|
148
148
|
--bb-font-weight-light: 300;
|
|
149
149
|
--bb-font-weight-regular: 400;
|
|
150
150
|
--bb-font-weight-semibold: 600;
|
|
151
|
-
--bb-image-logo-primary-src: url('
|
|
151
|
+
--bb-image-logo-primary-src: url('https://sky.blackbaudcdn.net/static/skyux-design-tokens/0.0.69/assets/images/bb-logo.png');
|
|
152
152
|
--bb-letter_spacing-normal: normal;
|
|
153
153
|
--bb-letter_spacing-wider: 0.16px;
|
|
154
154
|
--bb-line_height-300: calc(18/13);
|
package/assets/scss/modern.css
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
@property --modern-image-logo-primary-src {
|
|
2
2
|
syntax: '<url>';
|
|
3
3
|
inherits: true;
|
|
4
|
-
initial-value: url('');
|
|
4
|
+
initial-value: url('data:,');
|
|
5
5
|
}
|
|
6
6
|
|
|
7
7
|
.sky-theme-modern {
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
--modern-font-weight-light: 300;
|
|
74
74
|
--modern-font-weight-regular: 400;
|
|
75
75
|
--modern-font-weight-semibold: 600;
|
|
76
|
-
--modern-image-logo-primary-src: url('
|
|
76
|
+
--modern-image-logo-primary-src: url('https://sky.blackbaudcdn.net/static/skyux-design-tokens/0.0.69/assets/images/bb-logo.png');
|
|
77
77
|
--modern-letter_spacing-normal: normal;
|
|
78
78
|
--modern-line_height-110: 1.1;
|
|
79
79
|
--modern-line_height-115: 1.15;
|