osi-cards-lib 1.5.38 → 1.5.39
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/index.d.ts
CHANGED
|
@@ -11488,10 +11488,10 @@ declare function packWithZeroGapsGuarantee(sections: CardSection[], columns?: nu
|
|
|
11488
11488
|
* Do not edit manually - generated by scripts/generate-version.js
|
|
11489
11489
|
*
|
|
11490
11490
|
* Source of truth: version.config.json
|
|
11491
|
-
* Last synced: 2025-12-
|
|
11491
|
+
* Last synced: 2025-12-15T10:19:22.227Z
|
|
11492
11492
|
*/
|
|
11493
|
-
declare const VERSION = "1.5.
|
|
11494
|
-
declare const BUILD_DATE = "2025-12-
|
|
11493
|
+
declare const VERSION = "1.5.39";
|
|
11494
|
+
declare const BUILD_DATE = "2025-12-15T10:19:22.227Z";
|
|
11495
11495
|
declare const BUILD_HASH = "9010f4a";
|
|
11496
11496
|
declare const BUILD_BRANCH = "main";
|
|
11497
11497
|
interface VersionInfo {
|
package/package.json
CHANGED
|
@@ -1118,6 +1118,10 @@ $breakpoints: (
|
|
|
1118
1118
|
} @else {
|
|
1119
1119
|
--background: #{$osi-background-dark};
|
|
1120
1120
|
}
|
|
1121
|
+
|
|
1122
|
+
// Ensure base colors are always available (even if osi-theme-base wasn't called)
|
|
1123
|
+
@include osi-base-colors();
|
|
1124
|
+
|
|
1121
1125
|
--surface-contrast-color: #{$osi-color-white};
|
|
1122
1126
|
--foreground: #{$osi-foreground-dark};
|
|
1123
1127
|
--muted: #242424;
|
|
@@ -1209,6 +1213,10 @@ $breakpoints: (
|
|
|
1209
1213
|
@if $is-scoped {
|
|
1210
1214
|
color-scheme: light;
|
|
1211
1215
|
}
|
|
1216
|
+
|
|
1217
|
+
// Ensure base colors are always available (even if osi-theme-base wasn't called)
|
|
1218
|
+
@include osi-base-colors();
|
|
1219
|
+
|
|
1212
1220
|
--background: #{$osi-background-light};
|
|
1213
1221
|
--foreground: #{$osi-foreground-light};
|
|
1214
1222
|
--muted: #f4f4f6;
|
|
@@ -1316,6 +1324,8 @@ $breakpoints: (
|
|
|
1316
1324
|
/// @param {String} $variant - 'demo' for larger demo app, 'integration' for compact OSA
|
|
1317
1325
|
/// @param {Boolean} $is-scoped - If true, outputs for nested context
|
|
1318
1326
|
@mixin osi-tokens($variant: "demo", $is-scoped: false) {
|
|
1327
|
+
// Ensure base colors are always available
|
|
1328
|
+
@include osi-base-colors();
|
|
1319
1329
|
@include osi-shadows();
|
|
1320
1330
|
@include osi-radius();
|
|
1321
1331
|
|