@ctrliq/quantic-components 1.84.1 → 1.85.0
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/action-group/action-group.component.js +2 -1
- package/dist/badge/badge-group.component.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/meta/index.js.map +1 -1
- package/dist/meta/sibling-groups.test.d.ts +1 -0
- package/dist/meta/sibling-groups.test.js +42 -0
- package/dist/meta.json +4 -4
- package/dist/quantic-components.js +6 -3
- package/dist/quantic-components.js.map +1 -1
- package/dist/quantic-components.min.js +6 -6
- package/dist/quantic-components.min.js.map +1 -1
- package/dist/register.js.map +1 -1
- package/dist/tag/tag-group.component.js +2 -1
- package/dist/types/meta/sibling-groups.test.d.ts +1 -0
- package/package.json +1 -1
|
@@ -14,7 +14,7 @@ let TagGroup = class TagGroup extends QuanticElement {
|
|
|
14
14
|
}
|
|
15
15
|
render() {
|
|
16
16
|
return html `
|
|
17
|
-
<div class="group" role="group" aria-label=${this.ariaLabel ?? 'Tags'}>
|
|
17
|
+
<div class="group" part="group" role="group" aria-label=${this.ariaLabel ?? 'Tags'}>
|
|
18
18
|
<slot></slot>
|
|
19
19
|
</div>
|
|
20
20
|
`;
|
|
@@ -24,6 +24,7 @@ TagGroup.meta = {
|
|
|
24
24
|
tag: 'quantic-tag-group',
|
|
25
25
|
description: 'A run of quantic-tag, quantic-status-tag or quantic-count-tag sharing one accessible name and a consistent gap. ' +
|
|
26
26
|
'Wraps across lines, and each tag keeps its own size. Gap: --quantic-component-tag-group-gap. ' +
|
|
27
|
+
'Layout: ::part(group), for a column or a different alignment. ' +
|
|
27
28
|
'Use quantic-badge-group for badges.',
|
|
28
29
|
category: 'display',
|
|
29
30
|
slots: {
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|