@ctrliq/quantic-components 1.88.0 → 1.89.1
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 +3 -1
- package/dist/badge/badge-group.component.js +3 -1
- package/dist/code-input/index.js +1 -0
- package/dist/icon/__generated__/lucide-icon-names.enum.d.ts +321 -107
- package/dist/icon/__generated__/lucide-icon-names.enum.js +321 -107
- package/dist/icon/index.constants.d.ts +214 -107
- package/dist/icons.json +3247 -3242
- package/dist/index.js.map +1 -1
- package/dist/llms/components/quantic-action-group.md +4 -1
- package/dist/llms/components/quantic-badge-group.md +4 -1
- package/dist/llms/components/quantic-code-input.md +3 -0
- package/dist/llms/components/quantic-number-input.md +3 -0
- package/dist/llms/components/quantic-option-card.md +4 -0
- package/dist/llms/components/quantic-splitter-group.md +3 -0
- package/dist/llms/components/quantic-tab-button.md +5 -1
- package/dist/llms/components/quantic-tabs.md +4 -0
- package/dist/llms/components/quantic-tag-group.md +4 -1
- package/dist/llms/components/quantic-text-input.md +3 -0
- package/dist/llms/components/quantic-textarea.md +3 -0
- package/dist/llms/setup.md +2 -2
- package/dist/llms.txt +2 -2
- package/dist/meta/index.js.map +1 -1
- package/dist/meta/part-parity.test.d.ts +1 -0
- package/dist/meta/part-parity.test.js +68 -0
- package/dist/meta/serialize.d.ts +6 -2
- package/dist/meta/serialize.js +2 -0
- package/dist/meta/serialize.test.js +7 -0
- package/dist/meta.json +83 -5
- package/dist/number-input/index.js +1 -0
- package/dist/option-card/option-card.component.js +4 -0
- package/dist/quantic-components.js +351 -112
- package/dist/quantic-components.js.map +1 -1
- package/dist/quantic-components.min.js +56 -56
- package/dist/quantic-components.min.js.map +1 -1
- package/dist/register.js.map +1 -1
- package/dist/shared/meta.types.d.ts +4 -0
- package/dist/splitter/splitter-group.component.js +3 -0
- package/dist/tabs/button.component.js +6 -2
- package/dist/tabs/tabs.component.js +4 -0
- package/dist/tag/tag-group.component.js +3 -1
- package/dist/text-input/index.js +1 -0
- package/dist/textarea/index.js +1 -0
- package/dist/types/icon/__generated__/lucide-icon-names.enum.d.ts +321 -107
- package/dist/types/icon/index.constants.d.ts +214 -107
- package/dist/types/meta/part-parity.test.d.ts +1 -0
- package/dist/types/meta/serialize.d.ts +6 -2
- package/dist/types/shared/meta.types.d.ts +4 -0
- package/package.json +1 -1
|
@@ -25,7 +25,6 @@ ActionGroup.meta = {
|
|
|
25
25
|
description: 'A row of related actions sharing one accessible name and a consistent gap. ' +
|
|
26
26
|
'Takes quantic-button, and quantic-dropdown-menu or quantic-popover when the trigger is a button. ' +
|
|
27
27
|
'Wraps when the row runs out of width. Gap: --quantic-component-action-group-gap. ' +
|
|
28
|
-
'Layout: ::part(group), for a column or a different alignment. ' +
|
|
29
28
|
'Use quantic-button-bar when the buttons should read as one joined control.',
|
|
30
29
|
category: 'action',
|
|
31
30
|
avoidWhen: [
|
|
@@ -43,6 +42,9 @@ ActionGroup.meta = {
|
|
|
43
42
|
description: 'quantic-button elements, or a quantic-dropdown-menu or quantic-popover triggered by one.',
|
|
44
43
|
},
|
|
45
44
|
},
|
|
45
|
+
parts: {
|
|
46
|
+
group: { description: 'The flex container, for a column layout or a different alignment.' },
|
|
47
|
+
},
|
|
46
48
|
relatedTo: [
|
|
47
49
|
'quantic-button',
|
|
48
50
|
'quantic-button-bar',
|
|
@@ -24,7 +24,6 @@ BadgeGroup.meta = {
|
|
|
24
24
|
tag: 'quantic-badge-group',
|
|
25
25
|
description: 'A run of quantic-badge or quantic-status-badge sharing one accessible name and a consistent gap. ' +
|
|
26
26
|
'Wraps across lines, and each badge keeps its own size. Gap: --quantic-component-badge-group-gap. ' +
|
|
27
|
-
'Layout: ::part(group), for a column or a different alignment. ' +
|
|
28
27
|
'Use quantic-tag-group for tags.',
|
|
29
28
|
category: 'display',
|
|
30
29
|
accessibility: {
|
|
@@ -36,6 +35,9 @@ BadgeGroup.meta = {
|
|
|
36
35
|
description: 'quantic-badge or quantic-status-badge elements.',
|
|
37
36
|
},
|
|
38
37
|
},
|
|
38
|
+
parts: {
|
|
39
|
+
group: { description: 'The flex container, for a column layout or a different alignment.' },
|
|
40
|
+
},
|
|
39
41
|
relatedTo: ['quantic-badge', 'quantic-tag-group', 'quantic-status-badge'],
|
|
40
42
|
};
|
|
41
43
|
BadgeGroup.styles = css `
|
package/dist/code-input/index.js
CHANGED
|
@@ -164,6 +164,7 @@ CodeInput.meta = {
|
|
|
164
164
|
'a visible label, by wrapping in quantic-field, or the ariaLabel prop',
|
|
165
165
|
],
|
|
166
166
|
},
|
|
167
|
+
parts: { textarea: { description: 'The native textarea element.' } },
|
|
167
168
|
relatedTo: ['quantic-field', 'quantic-text-input'],
|
|
168
169
|
};
|
|
169
170
|
CodeInput.formAssociated = true;
|