anentrypoint-design 0.0.109 → 0.0.110
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/colors_and_type.css +26 -0
- package/dist/247420.css +26 -0
- package/dist/247420.js +10 -10
- package/package.json +1 -1
- package/src/index.js +3 -1
package/colors_and_type.css
CHANGED
|
@@ -162,6 +162,32 @@
|
|
|
162
162
|
}
|
|
163
163
|
}
|
|
164
164
|
|
|
165
|
+
/* Nested-scope safety: if .ds-247420 appears under another .ds-247420 (e.g.
|
|
166
|
+
mount() added the class to an inner element while the ancestor html
|
|
167
|
+
already had it), the inner element would otherwise re-trigger the root
|
|
168
|
+
light defaults and detach from the ancestor's data-theme override. Force
|
|
169
|
+
the inner element to inherit the ancestor's resolved tokens. */
|
|
170
|
+
.ds-247420 .ds-247420 {
|
|
171
|
+
--bg: inherit;
|
|
172
|
+
--bg-2: inherit;
|
|
173
|
+
--bg-3: inherit;
|
|
174
|
+
--fg: inherit;
|
|
175
|
+
--fg-2: inherit;
|
|
176
|
+
--fg-3: inherit;
|
|
177
|
+
--panel-bg: inherit;
|
|
178
|
+
--panel-bg-2: inherit;
|
|
179
|
+
--accent: inherit;
|
|
180
|
+
--accent-fg: inherit;
|
|
181
|
+
--panel-1: inherit;
|
|
182
|
+
--panel-2: inherit;
|
|
183
|
+
--panel-3: inherit;
|
|
184
|
+
--panel-text: inherit;
|
|
185
|
+
--panel-text-2: inherit;
|
|
186
|
+
--panel-text-3: inherit;
|
|
187
|
+
--panel-accent-2: inherit;
|
|
188
|
+
--panel-shadow: inherit;
|
|
189
|
+
}
|
|
190
|
+
|
|
165
191
|
[data-density="compact"] { --density: 0.75; }
|
|
166
192
|
[data-density="comfortable"] { --density: 1; }
|
|
167
193
|
[data-density="spacious"] { --density: 1.35; }
|
package/dist/247420.css
CHANGED
|
@@ -166,6 +166,32 @@
|
|
|
166
166
|
}
|
|
167
167
|
}
|
|
168
168
|
|
|
169
|
+
/* Nested-scope safety: if .ds-247420 appears under another .ds-247420 (e.g.
|
|
170
|
+
mount() added the class to an inner element while the ancestor html
|
|
171
|
+
already had it), the inner element would otherwise re-trigger the root
|
|
172
|
+
light defaults and detach from the ancestor's data-theme override. Force
|
|
173
|
+
the inner element to inherit the ancestor's resolved tokens. */
|
|
174
|
+
.ds-247420 .ds-247420 .ds-247420 {
|
|
175
|
+
--bg: inherit;
|
|
176
|
+
--bg-2: inherit;
|
|
177
|
+
--bg-3: inherit;
|
|
178
|
+
--fg: inherit;
|
|
179
|
+
--fg-2: inherit;
|
|
180
|
+
--fg-3: inherit;
|
|
181
|
+
--panel-bg: inherit;
|
|
182
|
+
--panel-bg-2: inherit;
|
|
183
|
+
--accent: inherit;
|
|
184
|
+
--accent-fg: inherit;
|
|
185
|
+
--panel-1: inherit;
|
|
186
|
+
--panel-2: inherit;
|
|
187
|
+
--panel-3: inherit;
|
|
188
|
+
--panel-text: inherit;
|
|
189
|
+
--panel-text-2: inherit;
|
|
190
|
+
--panel-text-3: inherit;
|
|
191
|
+
--panel-accent-2: inherit;
|
|
192
|
+
--panel-shadow: inherit;
|
|
193
|
+
}
|
|
194
|
+
|
|
169
195
|
.ds-247420[data-density="compact"] { --density: 0.75; }
|
|
170
196
|
.ds-247420[data-density="comfortable"] { --density: 1; }
|
|
171
197
|
.ds-247420[data-density="spacious"] { --density: 1.35; }
|