osi-cards-lib 1.5.21 → 1.5.22
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
|
@@ -11482,10 +11482,10 @@ declare function packWithZeroGapsGuarantee(sections: CardSection[], columns?: nu
|
|
|
11482
11482
|
* Do not edit manually - generated by scripts/generate-version.js
|
|
11483
11483
|
*
|
|
11484
11484
|
* Source of truth: version.config.json
|
|
11485
|
-
* Last synced: 2025-12-12T17:
|
|
11485
|
+
* Last synced: 2025-12-12T17:46:04.648Z
|
|
11486
11486
|
*/
|
|
11487
11487
|
declare const VERSION = "1.5.19";
|
|
11488
|
-
declare const BUILD_DATE = "2025-12-12T17:
|
|
11488
|
+
declare const BUILD_DATE = "2025-12-12T17:46:04.648Z";
|
|
11489
11489
|
declare const BUILD_HASH = "fbe56c9";
|
|
11490
11490
|
declare const BUILD_BRANCH = "main";
|
|
11491
11491
|
interface VersionInfo {
|
package/package.json
CHANGED
|
@@ -94,21 +94,56 @@
|
|
|
94
94
|
// TYPOGRAPHY RESET
|
|
95
95
|
// ============================================
|
|
96
96
|
|
|
97
|
-
// Headings
|
|
97
|
+
// Headings - with explicit font sizes matching demo app
|
|
98
98
|
h1,
|
|
99
99
|
h2,
|
|
100
100
|
h3,
|
|
101
101
|
h4,
|
|
102
102
|
h5,
|
|
103
103
|
h6 {
|
|
104
|
-
font-size: inherit;
|
|
105
|
-
font-weight: inherit;
|
|
106
|
-
line-height: inherit;
|
|
107
104
|
margin: 0;
|
|
105
|
+
line-height: 1.2;
|
|
106
|
+
font-family: inherit;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
h1 {
|
|
110
|
+
font-size: var(--text-2xl, 1.5rem);
|
|
111
|
+
font-weight: var(--font-weight-medium, 500);
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
h2 {
|
|
115
|
+
font-size: var(--text-xl, 1.25rem);
|
|
116
|
+
font-weight: var(--font-weight-medium, 500);
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
h3 {
|
|
120
|
+
font-size: var(--text-lg, 1.125rem);
|
|
121
|
+
font-weight: var(--font-weight-medium, 500);
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
h4 {
|
|
125
|
+
font-size: var(--text-base, 1rem);
|
|
126
|
+
font-weight: var(--font-weight-medium, 500);
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
h5 {
|
|
130
|
+
font-size: var(--text-sm, 0.875rem);
|
|
131
|
+
font-weight: var(--font-weight-medium, 500);
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
h6 {
|
|
135
|
+
font-size: var(--text-xs, 0.75rem);
|
|
136
|
+
font-weight: var(--font-weight-medium, 500);
|
|
108
137
|
}
|
|
109
138
|
|
|
110
139
|
// Paragraphs and text
|
|
111
|
-
p
|
|
140
|
+
p {
|
|
141
|
+
font-size: var(--text-base, 1rem);
|
|
142
|
+
font-weight: var(--font-weight-normal, 400);
|
|
143
|
+
line-height: 1.5;
|
|
144
|
+
margin: 0;
|
|
145
|
+
}
|
|
146
|
+
|
|
112
147
|
span,
|
|
113
148
|
div {
|
|
114
149
|
margin: 0;
|