@eduboxpro/studio 0.1.15 → 0.1.16
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/fesm2022/eduboxpro-studio.mjs +653 -3
- package/fesm2022/eduboxpro-studio.mjs.map +1 -1
- package/index.d.ts +192 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _angular_core from '@angular/core';
|
|
2
|
-
import { InjectionToken, EnvironmentProviders, OnInit, OnDestroy, AfterViewInit, ElementRef,
|
|
2
|
+
import { InjectionToken, EnvironmentProviders, OnInit, OnDestroy, TemplateRef, AfterViewInit, ElementRef, WritableSignal, Signal } from '@angular/core';
|
|
3
3
|
import { Params, IsActiveMatchOptions } from '@angular/router';
|
|
4
4
|
import { ControlValueAccessor, Validator, AbstractControl, ValidationErrors } from '@angular/forms';
|
|
5
5
|
import { icons } from 'lucide-angular';
|
|
@@ -359,6 +359,17 @@ interface BottomNavigationDefaultsConfig {
|
|
|
359
359
|
blur?: boolean;
|
|
360
360
|
hideOnDesktop?: boolean;
|
|
361
361
|
}
|
|
362
|
+
/**
|
|
363
|
+
* Card component defaults configuration
|
|
364
|
+
*/
|
|
365
|
+
interface CardDefaultsConfig {
|
|
366
|
+
variant?: 'elevated' | 'filled' | 'outlined' | 'ghost';
|
|
367
|
+
size?: 'sm' | 'md' | 'lg';
|
|
368
|
+
color?: 'default' | 'primary' | 'secondary' | 'success' | 'error' | 'warning' | 'neutral';
|
|
369
|
+
radius?: 'none' | 'sm' | 'md' | 'lg' | 'xl';
|
|
370
|
+
shadow?: 'none' | 'sm' | 'md' | 'lg' | 'xl';
|
|
371
|
+
padding?: 'none' | 'sm' | 'md' | 'lg';
|
|
372
|
+
}
|
|
362
373
|
/**
|
|
363
374
|
* Components defaults configuration
|
|
364
375
|
*/
|
|
@@ -382,6 +393,7 @@ interface ComponentsConfig {
|
|
|
382
393
|
tabs?: TabsDefaultsConfig;
|
|
383
394
|
modal?: ModalDefaultsConfig;
|
|
384
395
|
bottomNavigation?: BottomNavigationDefaultsConfig;
|
|
396
|
+
card?: CardDefaultsConfig;
|
|
385
397
|
}
|
|
386
398
|
/**
|
|
387
399
|
* Main Studio configuration interface
|
|
@@ -676,6 +688,183 @@ declare class ButtonGroupComponent {
|
|
|
676
688
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ButtonGroupComponent, "studio-button-group", never, { "orientationInput": { "alias": "orientation"; "required": false; "isSignal": true; }; "sizeInput": { "alias": "size"; "required": false; "isSignal": true; }; "variantInput": { "alias": "variant"; "required": false; "isSignal": true; }; "colorInput": { "alias": "color"; "required": false; "isSignal": true; }; "radiusInput": { "alias": "radius"; "required": false; "isSignal": true; }; "attached": { "alias": "attached"; "required": false; "isSignal": true; }; "fullWidth": { "alias": "fullWidth"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "spacing": { "alias": "spacing"; "required": false; "isSignal": true; }; "align": { "alias": "align"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "role": { "alias": "role"; "required": false; "isSignal": true; }; }, {}, never, ["studio-button"], true, never>;
|
|
677
689
|
}
|
|
678
690
|
|
|
691
|
+
/**
|
|
692
|
+
* Card component types
|
|
693
|
+
*/
|
|
694
|
+
type CardVariant = 'elevated' | 'filled' | 'outlined' | 'ghost';
|
|
695
|
+
type CardSize = 'sm' | 'md' | 'lg';
|
|
696
|
+
type CardColor = 'default' | 'primary' | 'secondary' | 'success' | 'error' | 'warning' | 'neutral';
|
|
697
|
+
type CardRadius = 'none' | 'sm' | 'md' | 'lg' | 'xl';
|
|
698
|
+
type CardShadow = 'none' | 'sm' | 'md' | 'lg' | 'xl';
|
|
699
|
+
type CardPadding = 'none' | 'sm' | 'md' | 'lg';
|
|
700
|
+
type CardOrientation = 'vertical' | 'horizontal';
|
|
701
|
+
type CardImagePosition = 'top' | 'left' | 'right' | 'bottom';
|
|
702
|
+
|
|
703
|
+
/**
|
|
704
|
+
* Card component for displaying content in a container
|
|
705
|
+
*
|
|
706
|
+
* @example
|
|
707
|
+
* <studio-card variant="elevated" color="primary">
|
|
708
|
+
* <div card-header>Header</div>
|
|
709
|
+
* <div card-body>Content</div>
|
|
710
|
+
* <div card-footer>Footer</div>
|
|
711
|
+
* </studio-card>
|
|
712
|
+
*/
|
|
713
|
+
declare class CardComponent {
|
|
714
|
+
private readonly configService;
|
|
715
|
+
private readonly cardDefaults;
|
|
716
|
+
variantInput: _angular_core.InputSignal<CardVariant | undefined>;
|
|
717
|
+
sizeInput: _angular_core.InputSignal<CardSize | undefined>;
|
|
718
|
+
colorInput: _angular_core.InputSignal<CardColor | undefined>;
|
|
719
|
+
radiusInput: _angular_core.InputSignal<CardRadius | undefined>;
|
|
720
|
+
shadowInput: _angular_core.InputSignal<CardShadow | undefined>;
|
|
721
|
+
paddingInput: _angular_core.InputSignal<CardPadding | undefined>;
|
|
722
|
+
variant: _angular_core.Signal<"ghost" | "filled" | "outlined" | "elevated">;
|
|
723
|
+
size: _angular_core.Signal<"sm" | "md" | "lg">;
|
|
724
|
+
color: _angular_core.Signal<"primary" | "secondary" | "success" | "error" | "warning" | "neutral" | "default">;
|
|
725
|
+
radius: _angular_core.Signal<"sm" | "md" | "lg" | "none" | "xl">;
|
|
726
|
+
shadow: _angular_core.Signal<"sm" | "md" | "lg" | "none" | "xl">;
|
|
727
|
+
padding: _angular_core.Signal<"sm" | "md" | "lg" | "none">;
|
|
728
|
+
orientation: _angular_core.InputSignal<CardOrientation>;
|
|
729
|
+
imagePosition: _angular_core.InputSignal<CardImagePosition>;
|
|
730
|
+
fullWidth: _angular_core.InputSignal<boolean>;
|
|
731
|
+
fullHeight: _angular_core.InputSignal<boolean>;
|
|
732
|
+
title: _angular_core.InputSignal<string | undefined>;
|
|
733
|
+
subtitle: _angular_core.InputSignal<string | undefined>;
|
|
734
|
+
avatar: _angular_core.InputSignal<string | undefined>;
|
|
735
|
+
icon: _angular_core.InputSignal<string | undefined>;
|
|
736
|
+
image: _angular_core.InputSignal<string | undefined>;
|
|
737
|
+
imageAlt: _angular_core.InputSignal<string>;
|
|
738
|
+
imageFit: _angular_core.InputSignal<"cover" | "contain">;
|
|
739
|
+
showHeader: _angular_core.InputSignal<boolean>;
|
|
740
|
+
showMedia: _angular_core.InputSignal<boolean>;
|
|
741
|
+
showFooter: _angular_core.InputSignal<boolean>;
|
|
742
|
+
divider: _angular_core.InputSignal<boolean>;
|
|
743
|
+
hoverable: _angular_core.InputSignal<boolean>;
|
|
744
|
+
pressable: _angular_core.InputSignal<boolean>;
|
|
745
|
+
disabled: _angular_core.InputSignal<boolean>;
|
|
746
|
+
loading: _angular_core.InputSignal<boolean>;
|
|
747
|
+
href: _angular_core.InputSignal<string | undefined>;
|
|
748
|
+
target: _angular_core.InputSignal<"_blank" | "_self" | "_parent" | "_top">;
|
|
749
|
+
blurred: _angular_core.InputSignal<boolean>;
|
|
750
|
+
blurredFooter: _angular_core.InputSignal<boolean>;
|
|
751
|
+
animated: _angular_core.InputSignal<boolean>;
|
|
752
|
+
clicked: _angular_core.OutputEmitterRef<MouseEvent>;
|
|
753
|
+
headerAction: _angular_core.OutputEmitterRef<void>;
|
|
754
|
+
protected headerTemplate: _angular_core.Signal<TemplateRef<any> | undefined>;
|
|
755
|
+
protected headerActionsTemplate: _angular_core.Signal<TemplateRef<any> | undefined>;
|
|
756
|
+
protected mediaTemplate: _angular_core.Signal<TemplateRef<any> | undefined>;
|
|
757
|
+
protected bodyTemplate: _angular_core.Signal<TemplateRef<any> | undefined>;
|
|
758
|
+
protected footerTemplate: _angular_core.Signal<TemplateRef<any> | undefined>;
|
|
759
|
+
protected iconSize: _angular_core.Signal<number>;
|
|
760
|
+
protected hostClasses: _angular_core.Signal<string>;
|
|
761
|
+
protected handleClick(event: MouseEvent): void;
|
|
762
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CardComponent, never>;
|
|
763
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<CardComponent, "studio-card", never, { "variantInput": { "alias": "variant"; "required": false; "isSignal": true; }; "sizeInput": { "alias": "size"; "required": false; "isSignal": true; }; "colorInput": { "alias": "color"; "required": false; "isSignal": true; }; "radiusInput": { "alias": "radius"; "required": false; "isSignal": true; }; "shadowInput": { "alias": "shadow"; "required": false; "isSignal": true; }; "paddingInput": { "alias": "padding"; "required": false; "isSignal": true; }; "orientation": { "alias": "orientation"; "required": false; "isSignal": true; }; "imagePosition": { "alias": "imagePosition"; "required": false; "isSignal": true; }; "fullWidth": { "alias": "fullWidth"; "required": false; "isSignal": true; }; "fullHeight": { "alias": "fullHeight"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "subtitle": { "alias": "subtitle"; "required": false; "isSignal": true; }; "avatar": { "alias": "avatar"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "image": { "alias": "image"; "required": false; "isSignal": true; }; "imageAlt": { "alias": "imageAlt"; "required": false; "isSignal": true; }; "imageFit": { "alias": "imageFit"; "required": false; "isSignal": true; }; "showHeader": { "alias": "showHeader"; "required": false; "isSignal": true; }; "showMedia": { "alias": "showMedia"; "required": false; "isSignal": true; }; "showFooter": { "alias": "showFooter"; "required": false; "isSignal": true; }; "divider": { "alias": "divider"; "required": false; "isSignal": true; }; "hoverable": { "alias": "hoverable"; "required": false; "isSignal": true; }; "pressable": { "alias": "pressable"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "loading": { "alias": "loading"; "required": false; "isSignal": true; }; "href": { "alias": "href"; "required": false; "isSignal": true; }; "target": { "alias": "target"; "required": false; "isSignal": true; }; "blurred": { "alias": "blurred"; "required": false; "isSignal": true; }; "blurredFooter": { "alias": "blurredFooter"; "required": false; "isSignal": true; }; "animated": { "alias": "animated"; "required": false; "isSignal": true; }; }, { "clicked": "clicked"; "headerAction": "headerAction"; }, ["headerTemplate", "headerActionsTemplate", "mediaTemplate", "bodyTemplate", "footerTemplate"], ["*"], true, never>;
|
|
764
|
+
}
|
|
765
|
+
|
|
766
|
+
interface ChatMessage {
|
|
767
|
+
id: string;
|
|
768
|
+
content: string;
|
|
769
|
+
userId: string;
|
|
770
|
+
userName: string;
|
|
771
|
+
userAvatar?: string;
|
|
772
|
+
timestamp: Date;
|
|
773
|
+
status?: 'sending' | 'sent' | 'delivered' | 'read' | 'error';
|
|
774
|
+
type?: 'text' | 'system';
|
|
775
|
+
edited?: boolean;
|
|
776
|
+
}
|
|
777
|
+
interface ChatUser {
|
|
778
|
+
id: string;
|
|
779
|
+
name: string;
|
|
780
|
+
avatar?: string;
|
|
781
|
+
online?: boolean;
|
|
782
|
+
}
|
|
783
|
+
type ChatVariant = 'default' | 'compact' | 'minimal' | 'bubbles';
|
|
784
|
+
type ChatSize = 'sm' | 'md' | 'lg';
|
|
785
|
+
|
|
786
|
+
/**
|
|
787
|
+
* Chat component - Flexible chat/messaging component
|
|
788
|
+
*
|
|
789
|
+
* @example
|
|
790
|
+
* <studio-chat
|
|
791
|
+
* [messages]="messages"
|
|
792
|
+
* [currentUserId]="currentUser.id"
|
|
793
|
+
* variant="default"
|
|
794
|
+
* (messageSubmit)="handleMessage($event)"
|
|
795
|
+
* />
|
|
796
|
+
*/
|
|
797
|
+
declare class ChatComponent implements AfterViewInit {
|
|
798
|
+
messages: _angular_core.InputSignal<ChatMessage[]>;
|
|
799
|
+
currentUserId: _angular_core.InputSignal<string>;
|
|
800
|
+
variant: _angular_core.InputSignal<ChatVariant>;
|
|
801
|
+
size: _angular_core.InputSignal<ChatSize>;
|
|
802
|
+
height: _angular_core.InputSignal<string>;
|
|
803
|
+
placeholder: _angular_core.InputSignal<string>;
|
|
804
|
+
showAvatars: _angular_core.InputSignal<boolean>;
|
|
805
|
+
showTimestamps: _angular_core.InputSignal<boolean>;
|
|
806
|
+
showUserNames: _angular_core.InputSignal<boolean>;
|
|
807
|
+
enableAutoScroll: _angular_core.InputSignal<boolean>;
|
|
808
|
+
disabled: _angular_core.InputSignal<boolean>;
|
|
809
|
+
class: _angular_core.InputSignal<string>;
|
|
810
|
+
messageSubmit: _angular_core.OutputEmitterRef<{
|
|
811
|
+
content: string;
|
|
812
|
+
}>;
|
|
813
|
+
typing: _angular_core.OutputEmitterRef<boolean>;
|
|
814
|
+
protected messagesContainerRef: _angular_core.Signal<ElementRef<HTMLDivElement> | undefined>;
|
|
815
|
+
protected isScrolledUp: _angular_core.WritableSignal<boolean>;
|
|
816
|
+
protected shouldAutoScroll: _angular_core.WritableSignal<boolean>;
|
|
817
|
+
protected hostClasses: _angular_core.Signal<string>;
|
|
818
|
+
protected isCompact: _angular_core.Signal<boolean>;
|
|
819
|
+
constructor();
|
|
820
|
+
ngAfterViewInit(): void;
|
|
821
|
+
protected onScroll(): void;
|
|
822
|
+
protected onMessageSubmit(event: {
|
|
823
|
+
content: string;
|
|
824
|
+
}): void;
|
|
825
|
+
protected scrollToBottom(): void;
|
|
826
|
+
protected onTyping(typing: boolean): void;
|
|
827
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ChatComponent, never>;
|
|
828
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ChatComponent, "studio-chat", never, { "messages": { "alias": "messages"; "required": true; "isSignal": true; }; "currentUserId": { "alias": "currentUserId"; "required": true; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "height": { "alias": "height"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "showAvatars": { "alias": "showAvatars"; "required": false; "isSignal": true; }; "showTimestamps": { "alias": "showTimestamps"; "required": false; "isSignal": true; }; "showUserNames": { "alias": "showUserNames"; "required": false; "isSignal": true; }; "enableAutoScroll": { "alias": "enableAutoScroll"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "class": { "alias": "class"; "required": false; "isSignal": true; }; }, { "messageSubmit": "messageSubmit"; "typing": "typing"; }, never, never, true, never>;
|
|
829
|
+
}
|
|
830
|
+
|
|
831
|
+
declare class ChatMessageComponent {
|
|
832
|
+
message: _angular_core.InputSignal<ChatMessage>;
|
|
833
|
+
currentUserId: _angular_core.InputSignal<string>;
|
|
834
|
+
showAvatar: _angular_core.InputSignal<boolean>;
|
|
835
|
+
showTimestamp: _angular_core.InputSignal<boolean>;
|
|
836
|
+
showUserName: _angular_core.InputSignal<boolean>;
|
|
837
|
+
compact: _angular_core.InputSignal<boolean>;
|
|
838
|
+
protected isOwn: _angular_core.Signal<boolean>;
|
|
839
|
+
protected hostClasses: _angular_core.Signal<string>;
|
|
840
|
+
protected getInitials(name: string): string;
|
|
841
|
+
protected formatTime(date: Date): string;
|
|
842
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ChatMessageComponent, never>;
|
|
843
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ChatMessageComponent, "studio-chat-message", never, { "message": { "alias": "message"; "required": true; "isSignal": true; }; "currentUserId": { "alias": "currentUserId"; "required": true; "isSignal": true; }; "showAvatar": { "alias": "showAvatar"; "required": false; "isSignal": true; }; "showTimestamp": { "alias": "showTimestamp"; "required": false; "isSignal": true; }; "showUserName": { "alias": "showUserName"; "required": false; "isSignal": true; }; "compact": { "alias": "compact"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
844
|
+
}
|
|
845
|
+
|
|
846
|
+
declare class ChatInputComponent {
|
|
847
|
+
placeholder: _angular_core.InputSignal<string>;
|
|
848
|
+
disabled: _angular_core.InputSignal<boolean>;
|
|
849
|
+
compact: _angular_core.InputSignal<boolean>;
|
|
850
|
+
messageSubmit: _angular_core.OutputEmitterRef<{
|
|
851
|
+
content: string;
|
|
852
|
+
}>;
|
|
853
|
+
typing: _angular_core.OutputEmitterRef<boolean>;
|
|
854
|
+
protected inputValue: _angular_core.WritableSignal<string>;
|
|
855
|
+
protected textareaRef: _angular_core.Signal<ElementRef<HTMLTextAreaElement> | undefined>;
|
|
856
|
+
private typingTimeout?;
|
|
857
|
+
protected canSend: _angular_core.Signal<boolean>;
|
|
858
|
+
protected hostClasses: _angular_core.Signal<string>;
|
|
859
|
+
constructor();
|
|
860
|
+
protected onKeyDown(event: KeyboardEvent): void;
|
|
861
|
+
protected onInput(): void;
|
|
862
|
+
protected handleSubmit(): void;
|
|
863
|
+
focus(): void;
|
|
864
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ChatInputComponent, never>;
|
|
865
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ChatInputComponent, "studio-chat-input", never, { "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "compact": { "alias": "compact"; "required": false; "isSignal": true; }; }, { "messageSubmit": "messageSubmit"; "typing": "typing"; }, never, never, true, never>;
|
|
866
|
+
}
|
|
867
|
+
|
|
679
868
|
/**
|
|
680
869
|
* Checkbox component for selecting boolean values
|
|
681
870
|
*
|
|
@@ -2503,5 +2692,5 @@ declare function loadGoogleFonts(fonts: Array<{
|
|
|
2503
2692
|
display?: 'auto' | 'block' | 'swap' | 'fallback' | 'optional';
|
|
2504
2693
|
}>): void;
|
|
2505
2694
|
|
|
2506
|
-
export { BadgeComponent, BadgeWrapperComponent, BottomNavigationComponent, ButtonComponent, ButtonGroupComponent, ButtonToggleGroupComponent, CheckboxComponent, ColorPickerCompactComponent, ColorPickerComponent, DEFAULT_COLOR_PRESETS, DrawerComponent, DrawerService, DropdownComponent, IconComponent, InputComponent, InspectorComponent, MASK_PRESETS, MaskDirective, MaskEngine, MenuComponent, ModalComponent, NavbarComponent, PopoverComponent, RadioButtonComponent, STUDIO_CONFIG, SelectComponent, SidebarComponent, StudioConfigService, SwitchComponent, TabsComponent, TextareaComponent, ThemeSwitchComponent, TooltipComponent, classNames, isSafeUrl, loadGoogleFont, loadGoogleFonts, provideStudioConfig, provideStudioIcons, sanitizeUrl, withConfigDefault };
|
|
2507
|
-
export type { BadgeColor, BadgeDefaultsConfig, BadgeIconPosition, BadgeRadius, BadgeSize, BadgeVariant, BadgeWrapperPosition, BadgeWrapperSize, BottomNavigationDefaultsConfig, BottomNavigationFabPosition, BottomNavigationItem, BottomNavigationLabelMode, BottomNavigationSize, BottomNavigationVariant, ButtonDefaultsConfig, ButtonGroupDefaultsConfig, ButtonToggleGroupDefaultsConfig, ButtonToggleGroupOption, ButtonToggleGroupValue, CheckboxColor, CheckboxDefaultsConfig, CheckboxRadius, CheckboxSize, CheckboxVariant, ColorConfig, ColorFormat, ColorPickerDefaultsConfig, ColorPickerSize, ColorPickerVariant, ColorPreset, ColorSwatchGroup, ColorValue, ComponentsConfig, DrawerAnimationEasing, DrawerCloseButtonPosition, DrawerConfig, DrawerDefaultsConfig, DrawerPosition, DrawerRadius, DrawerRole, DrawerShadowSize, DrawerSize, DropdownDefaultsConfig, DropdownItem, DropdownPosition, HSL, InputDefaultsConfig, InputMode, InputType, InspectorComponentSize, InspectorComponentVariant, InspectorData, InspectorGroup, InspectorGroupDivider, InspectorOption, InspectorParameter, InspectorParameterType, InspectorSection, InspectorSpacing, MaskConfig, MaskPreset, MaskResult, MaskToken, MenuColor, MenuExpandEvent, MenuExpandIconPosition, MenuItem, MenuItemBadgeColor, MenuItemClickEvent, MenuItemCommandEvent, MenuItemIconPosition, MenuItemTarget, MenuItemTooltipPosition, MenuMode, MenuOrientation, MenuRadius, MenuSize, MenuSpacing, MenuVariant, ModalAnimation, ModalDefaultsConfig, ModalPosition, ModalSize, ModalVariant, NavbarColor, NavbarShadow, NavbarSize, NavbarVariant, PopoverAnimation, PopoverBoundary, PopoverConfig, PopoverDefaultsConfig, PopoverPosition, PopoverSize, PopoverTrigger, PopoverVariant, PopoverWidth, RGB, RadioButtonColor, RadioButtonDefaultsConfig, RadioButtonRadius, RadioButtonSize, RadioButtonVariant, SelectDefaultsConfig, SelectDisplayContext, SelectOption, SelectOptionGroup, SelectPosition, SelectSize, SelectVariant, SidebarConfig, SidebarDefaultsConfig, SidebarPosition, SidebarSize, SidebarVariant, StudioConfig, StudioThemeConfig, SwitchDefaultsConfig, TabItem, TabsDefaultsConfig, TabsOrientation, TabsSize, TabsVariant, TextareaColor, TextareaDefaultsConfig, TextareaRadius, TextareaSize, TextareaVariant, ThemeMode, TooltipDefaultsConfig };
|
|
2695
|
+
export { BadgeComponent, BadgeWrapperComponent, BottomNavigationComponent, ButtonComponent, ButtonGroupComponent, ButtonToggleGroupComponent, CardComponent, ChatComponent, ChatInputComponent, ChatMessageComponent, CheckboxComponent, ColorPickerCompactComponent, ColorPickerComponent, DEFAULT_COLOR_PRESETS, DrawerComponent, DrawerService, DropdownComponent, IconComponent, InputComponent, InspectorComponent, MASK_PRESETS, MaskDirective, MaskEngine, MenuComponent, ModalComponent, NavbarComponent, PopoverComponent, RadioButtonComponent, STUDIO_CONFIG, SelectComponent, SidebarComponent, StudioConfigService, SwitchComponent, TabsComponent, TextareaComponent, ThemeSwitchComponent, TooltipComponent, classNames, isSafeUrl, loadGoogleFont, loadGoogleFonts, provideStudioConfig, provideStudioIcons, sanitizeUrl, withConfigDefault };
|
|
2696
|
+
export type { BadgeColor, BadgeDefaultsConfig, BadgeIconPosition, BadgeRadius, BadgeSize, BadgeVariant, BadgeWrapperPosition, BadgeWrapperSize, BottomNavigationDefaultsConfig, BottomNavigationFabPosition, BottomNavigationItem, BottomNavigationLabelMode, BottomNavigationSize, BottomNavigationVariant, ButtonDefaultsConfig, ButtonGroupDefaultsConfig, ButtonToggleGroupDefaultsConfig, ButtonToggleGroupOption, ButtonToggleGroupValue, CardColor, CardDefaultsConfig, CardImagePosition, CardOrientation, CardPadding, CardRadius, CardShadow, CardSize, CardVariant, ChatMessage, ChatSize, ChatUser, ChatVariant, CheckboxColor, CheckboxDefaultsConfig, CheckboxRadius, CheckboxSize, CheckboxVariant, ColorConfig, ColorFormat, ColorPickerDefaultsConfig, ColorPickerSize, ColorPickerVariant, ColorPreset, ColorSwatchGroup, ColorValue, ComponentsConfig, DrawerAnimationEasing, DrawerCloseButtonPosition, DrawerConfig, DrawerDefaultsConfig, DrawerPosition, DrawerRadius, DrawerRole, DrawerShadowSize, DrawerSize, DropdownDefaultsConfig, DropdownItem, DropdownPosition, HSL, InputDefaultsConfig, InputMode, InputType, InspectorComponentSize, InspectorComponentVariant, InspectorData, InspectorGroup, InspectorGroupDivider, InspectorOption, InspectorParameter, InspectorParameterType, InspectorSection, InspectorSpacing, MaskConfig, MaskPreset, MaskResult, MaskToken, MenuColor, MenuExpandEvent, MenuExpandIconPosition, MenuItem, MenuItemBadgeColor, MenuItemClickEvent, MenuItemCommandEvent, MenuItemIconPosition, MenuItemTarget, MenuItemTooltipPosition, MenuMode, MenuOrientation, MenuRadius, MenuSize, MenuSpacing, MenuVariant, ModalAnimation, ModalDefaultsConfig, ModalPosition, ModalSize, ModalVariant, NavbarColor, NavbarShadow, NavbarSize, NavbarVariant, PopoverAnimation, PopoverBoundary, PopoverConfig, PopoverDefaultsConfig, PopoverPosition, PopoverSize, PopoverTrigger, PopoverVariant, PopoverWidth, RGB, RadioButtonColor, RadioButtonDefaultsConfig, RadioButtonRadius, RadioButtonSize, RadioButtonVariant, SelectDefaultsConfig, SelectDisplayContext, SelectOption, SelectOptionGroup, SelectPosition, SelectSize, SelectVariant, SidebarConfig, SidebarDefaultsConfig, SidebarPosition, SidebarSize, SidebarVariant, StudioConfig, StudioThemeConfig, SwitchDefaultsConfig, TabItem, TabsDefaultsConfig, TabsOrientation, TabsSize, TabsVariant, TextareaColor, TextareaDefaultsConfig, TextareaRadius, TextareaSize, TextareaVariant, ThemeMode, TooltipDefaultsConfig };
|