@ulu/frontend 0.6.23 → 0.6.25
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/mcp-data.json +132 -132
- package/dist/umd/frontend.css +1 -1
- package/lib/scss/components/_tabs.scss +14 -15
- package/lib/scss/components/_wysiwyg.scss +5 -3
- package/package.json +1 -1
|
@@ -220,6 +220,15 @@ $config: (
|
|
|
220
220
|
}
|
|
221
221
|
}
|
|
222
222
|
|
|
223
|
+
#{ $prefix }--sticky {
|
|
224
|
+
[role="tablist"] {
|
|
225
|
+
position: sticky;
|
|
226
|
+
top: get("sticky-top");
|
|
227
|
+
z-index: get("sticky-z-index");
|
|
228
|
+
background-color: color.get(get("sticky-background-color"));
|
|
229
|
+
}
|
|
230
|
+
}
|
|
231
|
+
|
|
223
232
|
@include breakpoint.min(get("vertical-breakpoint")) {
|
|
224
233
|
#{ $prefix }--vertical {
|
|
225
234
|
display: grid;
|
|
@@ -249,21 +258,11 @@ $config: (
|
|
|
249
258
|
grid-column: 2; // needed for equalHeights in vertical
|
|
250
259
|
}
|
|
251
260
|
}
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
position: sticky;
|
|
258
|
-
top: get("sticky-top");
|
|
259
|
-
z-index: get("sticky-z-index");
|
|
260
|
-
background-color: color.get(get("sticky-background-color"));
|
|
261
|
-
}
|
|
262
|
-
}
|
|
263
|
-
#{ $prefix }--sticky#{ $prefix }--vertical {
|
|
264
|
-
[role="tablist"] {
|
|
265
|
-
top: get("sticky-vertical-top");
|
|
266
|
-
align-self: start;
|
|
261
|
+
#{ $prefix }--sticky#{ $prefix }--vertical {
|
|
262
|
+
[role="tablist"] {
|
|
263
|
+
top: get("sticky-vertical-top");
|
|
264
|
+
align-self: start;
|
|
265
|
+
}
|
|
267
266
|
}
|
|
268
267
|
}
|
|
269
268
|
|
|
@@ -30,7 +30,9 @@ $config: (
|
|
|
30
30
|
"h4" : "h4",
|
|
31
31
|
"h5" : "h5",
|
|
32
32
|
"h6" : "h6",
|
|
33
|
-
)
|
|
33
|
+
),
|
|
34
|
+
"unordered-list-marker-color" : "bullet",
|
|
35
|
+
"ordered-list-marker-color" : inherit,
|
|
34
36
|
) !default;
|
|
35
37
|
|
|
36
38
|
/// Change modules $config
|
|
@@ -80,11 +82,11 @@ $config: (
|
|
|
80
82
|
@include element.link($visited: true, $active: true);
|
|
81
83
|
}
|
|
82
84
|
ul:not(#{ $ul-excludes }) {
|
|
83
|
-
@include element.styles-unordered-list();
|
|
85
|
+
@include element.styles-unordered-list(get("unordered-list-marker-color"));
|
|
84
86
|
margin-bottom: element.get("margin");
|
|
85
87
|
}
|
|
86
88
|
ol:not(#{ $exclude-selector }) {
|
|
87
|
-
@include element.styles-ordered-list(
|
|
89
|
+
@include element.styles-ordered-list(get("ordered-list-marker-color"));
|
|
88
90
|
margin-bottom: element.get("margin");
|
|
89
91
|
}
|
|
90
92
|
// ul,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ulu/frontend",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.25",
|
|
4
4
|
"description": "A framework-agnostic frontend toolkit providing a modular, tree-shakable library of accessible components and utilities. Designed for seamless integration, it features a highly configurable SCSS system for any environment and vanilla JavaScript modules optimized for traditional websites and content management systems.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|