@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
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { CopyRule } from '../shared/copy-rules';
|
|
2
|
-
import type { ComponentMeta, EventMeta, PropMeta, SlotMeta } from '../shared/meta.types';
|
|
2
|
+
import type { ComponentMeta, EventMeta, PartMeta, PropMeta, SlotMeta } from '../shared/meta.types';
|
|
3
3
|
export declare const MANIFEST_SCHEMA_VERSION = 1;
|
|
4
4
|
export type ManifestProp = PropMeta & {
|
|
5
5
|
name: string;
|
|
@@ -10,10 +10,14 @@ export type ManifestSlot = SlotMeta & {
|
|
|
10
10
|
export type ManifestEvent = EventMeta & {
|
|
11
11
|
name: string;
|
|
12
12
|
};
|
|
13
|
-
export
|
|
13
|
+
export type ManifestPart = PartMeta & {
|
|
14
|
+
name: string;
|
|
15
|
+
};
|
|
16
|
+
export interface ManifestComponent extends Omit<ComponentMeta, 'props' | 'slots' | 'events' | 'parts'> {
|
|
14
17
|
props?: ManifestProp[];
|
|
15
18
|
slots?: ManifestSlot[];
|
|
16
19
|
events?: ManifestEvent[];
|
|
20
|
+
parts?: ManifestPart[];
|
|
17
21
|
/** Derived from the children's `subComponentOf`, never hand-authored. */
|
|
18
22
|
subComponents?: string[];
|
|
19
23
|
}
|
|
@@ -12,6 +12,9 @@ export interface SlotMeta {
|
|
|
12
12
|
required?: boolean;
|
|
13
13
|
copyRule?: CopyRuleId;
|
|
14
14
|
}
|
|
15
|
+
export interface PartMeta {
|
|
16
|
+
description: string;
|
|
17
|
+
}
|
|
15
18
|
export interface EventMeta {
|
|
16
19
|
description?: string;
|
|
17
20
|
detail?: string;
|
|
@@ -40,6 +43,7 @@ export interface ComponentMeta {
|
|
|
40
43
|
props?: Record<string, PropMeta>;
|
|
41
44
|
slots?: Record<string, SlotMeta>;
|
|
42
45
|
events?: Record<string, EventMeta>;
|
|
46
|
+
parts?: Record<string, PartMeta>;
|
|
43
47
|
examples?: string[];
|
|
44
48
|
relatedTo?: string[];
|
|
45
49
|
avoidWhen?: {
|