@atelier-ui/angular 0.0.30 → 0.0.32
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/package.json
CHANGED
|
@@ -23,6 +23,8 @@ interface LlmComboboxOption {
|
|
|
23
23
|
label: string;
|
|
24
24
|
disabled?: boolean;
|
|
25
25
|
}
|
|
26
|
+
type LlmIconName = 'success' | 'warning' | 'danger' | 'info' | 'error' | 'chevron-up' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'sort-asc' | 'sort-desc' | 'arrow-right' | 'arrow-left' | 'copy' | 'paste' | 'add' | 'edit' | 'delete' | 'close' | 'more' | 'default-toast';
|
|
27
|
+
type LlmIconSize = 'sm' | 'md' | 'lg';
|
|
26
28
|
type LlmChatVariant = 'drawer' | 'popup' | 'inline';
|
|
27
29
|
type LlmChatStatus = 'idle' | 'streaming' | 'error';
|
|
28
30
|
type LlmChatMessageRole = 'user' | 'assistant' | 'system';
|
|
@@ -126,6 +128,27 @@ declare class LlmBadge {
|
|
|
126
128
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<LlmBadge, "llm-badge", never, { "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
127
129
|
}
|
|
128
130
|
|
|
131
|
+
/**
|
|
132
|
+
* Pictogram glyph icon. 21 named variants matching the Figma `LlmIcon`
|
|
133
|
+
* component set. Decorative by default; pass `label` to announce a meaning
|
|
134
|
+
* to assistive tech.
|
|
135
|
+
*
|
|
136
|
+
* Usage:
|
|
137
|
+
* ```html
|
|
138
|
+
* <llm-icon name="success" />
|
|
139
|
+
* <llm-icon name="warning" size="lg" label="Warning" />
|
|
140
|
+
* ```
|
|
141
|
+
*/
|
|
142
|
+
declare class LlmIcon {
|
|
143
|
+
readonly name: _angular_core.InputSignal<LlmIconName>;
|
|
144
|
+
readonly size: _angular_core.InputSignal<LlmIconSize>;
|
|
145
|
+
readonly label: _angular_core.InputSignal<string | undefined>;
|
|
146
|
+
protected readonly glyph: _angular_core.Signal<string>;
|
|
147
|
+
protected readonly hostClasses: _angular_core.Signal<string>;
|
|
148
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<LlmIcon, never>;
|
|
149
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<LlmIcon, "llm-icon", never, { "name": { "alias": "name"; "required": true; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
150
|
+
}
|
|
151
|
+
|
|
129
152
|
/**
|
|
130
153
|
* Accessible text input component for use with Angular Signal Forms.
|
|
131
154
|
*
|
|
@@ -1814,5 +1837,5 @@ interface LlmChatContext {
|
|
|
1814
1837
|
}
|
|
1815
1838
|
declare const LLM_CHAT: InjectionToken<LlmChatContext>;
|
|
1816
1839
|
|
|
1817
|
-
export { LLM_ACCORDION_GROUP, LLM_BREADCRUMBS, LLM_CHAT, LLM_DIALOG, LLM_DRAWER, LLM_RADIO_GROUP, LLM_SELECT, LLM_STEPPER, LLM_TABLE, LLM_TAB_GROUP, LlmAccordionGroup, LlmAccordionHeader, LlmAccordionItem, LlmAlert, LlmAvatar, LlmAvatarGroup, LlmBadge, LlmBreadcrumbItem, LlmBreadcrumbs, LlmButton, LlmCard, LlmCardContent, LlmCardFooter, LlmCardHeader, LlmChat, LlmChatHeader, LlmChatInput, LlmChatMessage, LlmChatMessages, LlmChatSuggestion, LlmChatTyping, LlmCheckbox, LlmCodeBlock, LlmCombobox, LlmDialog, LlmDialogContent, LlmDialogFooter, LlmDialogHeader, LlmDrawer, LlmDrawerContent, LlmDrawerFooter, LlmDrawerHeader, LlmInput, LlmMenu, LlmMenuItem, LlmMenuSeparator, LlmMenuTrigger, LlmOption, LlmPagination, LlmProgress, LlmRadio, LlmRadioGroup, LlmSelect, LlmSkeleton, LlmStep, LlmStepper, LlmTab, LlmTabGroup, LlmTable, LlmTbody, LlmTd, LlmTextarea, LlmTh, LlmThead, LlmToast, LlmToastContainer, LlmToastService, LlmToggle, LlmTooltip, LlmTr };
|
|
1840
|
+
export { LLM_ACCORDION_GROUP, LLM_BREADCRUMBS, LLM_CHAT, LLM_DIALOG, LLM_DRAWER, LLM_RADIO_GROUP, LLM_SELECT, LLM_STEPPER, LLM_TABLE, LLM_TAB_GROUP, LlmAccordionGroup, LlmAccordionHeader, LlmAccordionItem, LlmAlert, LlmAvatar, LlmAvatarGroup, LlmBadge, LlmBreadcrumbItem, LlmBreadcrumbs, LlmButton, LlmCard, LlmCardContent, LlmCardFooter, LlmCardHeader, LlmChat, LlmChatHeader, LlmChatInput, LlmChatMessage, LlmChatMessages, LlmChatSuggestion, LlmChatTyping, LlmCheckbox, LlmCodeBlock, LlmCombobox, LlmDialog, LlmDialogContent, LlmDialogFooter, LlmDialogHeader, LlmDrawer, LlmDrawerContent, LlmDrawerFooter, LlmDrawerHeader, LlmIcon, LlmInput, LlmMenu, LlmMenuItem, LlmMenuSeparator, LlmMenuTrigger, LlmOption, LlmPagination, LlmProgress, LlmRadio, LlmRadioGroup, LlmSelect, LlmSkeleton, LlmStep, LlmStepper, LlmTab, LlmTabGroup, LlmTable, LlmTbody, LlmTd, LlmTextarea, LlmTh, LlmThead, LlmToast, LlmToastContainer, LlmToastService, LlmToggle, LlmTooltip, LlmTr };
|
|
1818
1841
|
export type { LlmAccordionGroupContext, LlmBreadcrumbsContext, LlmChatContext, LlmDialogContext, LlmDrawerContext, LlmRadioGroupContext, LlmSelectContext, LlmSortDirection, LlmStepperContext, LlmTabGroupContext, LlmTableContext, PageItem, StepInfo, TabInfo, ToastData, ToastOptions };
|