@kksdev/ds-angular 1.7.2 → 1.8.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/index.d.ts CHANGED
@@ -3464,6 +3464,62 @@ declare class DsTooltip implements OnDestroy {
3464
3464
  static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DsTooltip, "[dsTooltip]", never, { "dsTooltip": { "alias": "dsTooltip"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
3465
3465
  }
3466
3466
 
3467
+ /**
3468
+ * # DsAccordionItem
3469
+ *
3470
+ * Composant enfant pour le mode template-driven de DsAccordion.
3471
+ * Permet d'injecter du contenu Angular riche (composants, HTML, etc.).
3472
+ *
3473
+ * ## Usage
3474
+ *
3475
+ * ```html
3476
+ * <ds-accordion [multiple]="true">
3477
+ * <ds-accordion-item header="Section 1" [badge]="items.length">
3478
+ * <div>Contenu riche ici</div>
3479
+ * <my-component />
3480
+ * </ds-accordion-item>
3481
+ * </ds-accordion>
3482
+ * ```
3483
+ *
3484
+ * @component
3485
+ */
3486
+ declare class DsAccordionItem {
3487
+ /**
3488
+ * Texte du header.
3489
+ */
3490
+ readonly header: _angular_core.InputSignal<string>;
3491
+ /**
3492
+ * Badge optionnel affiché à côté du header (ex: compteur).
3493
+ */
3494
+ readonly badge: _angular_core.InputSignal<string | number | undefined>;
3495
+ /**
3496
+ * ID unique de l'item. Auto-généré si non fourni.
3497
+ */
3498
+ readonly id: _angular_core.InputSignal<string>;
3499
+ /**
3500
+ * Désactiver cet item.
3501
+ * @default false
3502
+ */
3503
+ readonly disabled: _angular_core.InputSignal<boolean>;
3504
+ /**
3505
+ * Template du contenu projeté.
3506
+ * @internal
3507
+ */
3508
+ contentTemplate: TemplateRef<unknown>;
3509
+ /**
3510
+ * État d'expansion (contrôlé par le parent DsAccordion).
3511
+ * @internal
3512
+ */
3513
+ readonly _expanded: _angular_core.WritableSignal<boolean>;
3514
+ /**
3515
+ * Index dans la liste (injecté par le parent).
3516
+ * @internal
3517
+ */
3518
+ readonly _index: _angular_core.WritableSignal<number>;
3519
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<DsAccordionItem, never>;
3520
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<DsAccordionItem, "ds-accordion-item", never, { "header": { "alias": "header"; "required": false; "isSignal": true; }; "badge": { "alias": "badge"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
3521
+ }
3522
+
3467
3523
  /**
3468
3524
  * Taille de l'accordion.
3469
3525
  */
@@ -3512,10 +3568,12 @@ interface AccordionChangeEvent {
3512
3568
  *
3513
3569
  * @component
3514
3570
  */
3515
- declare class DsAccordion {
3571
+ declare class DsAccordion implements AfterContentInit {
3516
3572
  readonly faChevronDown: _fortawesome_fontawesome_common_types.IconDefinition;
3517
3573
  /**
3518
- * Liste des items de l'accordion.
3574
+ * Liste des items de l'accordion (mode data-driven).
3575
+ * Laisser vide pour utiliser le mode template-driven avec <ds-accordion-item>.
3576
+ * @default []
3519
3577
  */
3520
3578
  items: _angular_core.InputSignal<AccordionItem[]>;
3521
3579
  /**
@@ -3547,6 +3605,17 @@ declare class DsAccordion {
3547
3605
  * Événement émis lors du changement d'état d'un item.
3548
3606
  */
3549
3607
  itemChange: _angular_core.OutputEmitterRef<AccordionChangeEvent>;
3608
+ /**
3609
+ * Items enfants en mode template-driven.
3610
+ * @internal
3611
+ */
3612
+ readonly accordionItems: _angular_core.Signal<readonly DsAccordionItem[]>;
3613
+ /**
3614
+ * Mode de fonctionnement (auto-détecté).
3615
+ * - 'data' : si [items] est fourni et non vide
3616
+ * - 'template' : si des <ds-accordion-item> enfants sont présents
3617
+ */
3618
+ readonly mode: _angular_core.Signal<"data" | "template">;
3550
3619
  /**
3551
3620
  * État interne des items ouverts.
3552
3621
  */
@@ -3599,8 +3668,28 @@ declare class DsAccordion {
3599
3668
  * ID unique pour le contenu.
3600
3669
  */
3601
3670
  getContentId(item: AccordionItem): string;
3671
+ /**
3672
+ * Initialiser les index des items enfants.
3673
+ */
3674
+ ngAfterContentInit(): void;
3675
+ /**
3676
+ * Mettre à jour les index des items template.
3677
+ */
3678
+ private updateTemplateItemsIndex;
3679
+ /**
3680
+ * Toggle un item en mode template-driven.
3681
+ */
3682
+ toggleTemplateItem(item: DsAccordionItem): void;
3683
+ /**
3684
+ * Gestion du clavier en mode template-driven.
3685
+ */
3686
+ onTemplateKeydown(event: KeyboardEvent, item: DsAccordionItem, index: number): void;
3687
+ /**
3688
+ * Classes CSS pour un item template-driven.
3689
+ */
3690
+ getTemplateItemClasses(item: DsAccordionItem): string[];
3602
3691
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DsAccordion, never>;
3603
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<DsAccordion, "ds-accordion", never, { "items": { "alias": "items"; "required": true; "isSignal": true; }; "multiple": { "alias": "multiple"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "expandedIds": { "alias": "expandedIds"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, { "itemChange": "itemChange"; }, never, never, true, never>;
3692
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<DsAccordion, "ds-accordion", never, { "items": { "alias": "items"; "required": false; "isSignal": true; }; "multiple": { "alias": "multiple"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "expandedIds": { "alias": "expandedIds"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, { "itemChange": "itemChange"; }, ["accordionItems"], never, true, never>;
3604
3693
  }
3605
3694
 
3606
3695
  /**
@@ -7640,6 +7729,215 @@ declare class DsListGroup {
7640
7729
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<DsListGroup, "ds-list-group", never, { "title": { "alias": "title"; "required": true; "isSignal": true; }; "subtitle": { "alias": "subtitle"; "required": false; "isSignal": true; }; "count": { "alias": "count"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "expanded": { "alias": "expanded"; "required": false; "isSignal": true; }; "sticky": { "alias": "sticky"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; }, { "expandedChange": "expandedChange"; }, never, ["*"], true, never>;
7641
7730
  }
7642
7731
 
7732
+ /**
7733
+ * Option pour le ds-entity-picker
7734
+ * Supporte les entités riches avec icône, couleur, emoji
7735
+ */
7736
+ interface DsEntityOption {
7737
+ /** Identifiant unique de l'option */
7738
+ value: string;
7739
+ /** Texte affiché */
7740
+ label: string;
7741
+ /** Description secondaire (optionnel) */
7742
+ description?: string;
7743
+ /** Icône FontAwesome (optionnel) */
7744
+ icon?: IconDefinition$2;
7745
+ /** Emoji affiché à gauche (optionnel) */
7746
+ emoji?: string;
7747
+ /** Couleur hex ou CSS (optionnel) */
7748
+ color?: string;
7749
+ /** Option désactivée */
7750
+ disabled?: boolean;
7751
+ /** Données custom attachées */
7752
+ data?: unknown;
7753
+ }
7754
+ /** Tailles disponibles */
7755
+ type DsEntityPickerSize = 'sm' | 'md' | 'lg';
7756
+ /** Mode d'affichage des sélections multiples */
7757
+ type DsEntityPickerDisplayMode = 'chip' | 'count';
7758
+
7759
+ /**
7760
+ * Entity Picker - Sélecteur d'entités riches
7761
+ *
7762
+ * Permet la sélection d'entités avec icônes, couleurs, emojis.
7763
+ * Supporte la sélection simple et multiple avec affichage en chips colorés.
7764
+ *
7765
+ * @example
7766
+ * ```html
7767
+ * <!-- Sélection simple -->
7768
+ * <ds-entity-picker
7769
+ * [options]="tags"
7770
+ * [(ngModel)]="selectedTag"
7771
+ * placeholder="Choisir un tag"
7772
+ * />
7773
+ *
7774
+ * <!-- Sélection multiple -->
7775
+ * <ds-entity-picker
7776
+ * [options]="categories"
7777
+ * [multiple]="true"
7778
+ * [(ngModel)]="selectedCategories"
7779
+ * [allowCreate]="true"
7780
+ * (createRequested)="onCreateCategory($event)"
7781
+ * />
7782
+ * ```
7783
+ */
7784
+ declare class DsEntityPicker implements ControlValueAccessor {
7785
+ /** Liste des options disponibles */
7786
+ readonly options: _angular_core.InputSignal<DsEntityOption[]>;
7787
+ /** Active la sélection multiple */
7788
+ readonly multiple: _angular_core.InputSignal<boolean>;
7789
+ /** Permet la création d'options à la volée */
7790
+ readonly allowCreate: _angular_core.InputSignal<boolean>;
7791
+ /** Placeholder du champ de recherche */
7792
+ readonly placeholder: _angular_core.InputSignal<string>;
7793
+ /** Taille du composant */
7794
+ readonly size: _angular_core.InputSignal<DsEntityPickerSize>;
7795
+ /** Mode d'affichage des sélections multiples */
7796
+ readonly displayMode: _angular_core.InputSignal<DsEntityPickerDisplayMode>;
7797
+ /** Afficher le bouton clear */
7798
+ readonly clearable: _angular_core.InputSignal<boolean>;
7799
+ /** Nombre maximum de sélections (multi-select) */
7800
+ readonly maxSelections: _angular_core.InputSignal<number | undefined>;
7801
+ /** Label du champ */
7802
+ readonly label: _angular_core.InputSignal<string>;
7803
+ /** Message d'erreur */
7804
+ readonly error: _angular_core.InputSignal<string>;
7805
+ /** Texte d'aide */
7806
+ readonly helper: _angular_core.InputSignal<string>;
7807
+ /** Champ désactivé */
7808
+ readonly disabled: _angular_core.InputSignal<boolean>;
7809
+ /** Champ obligatoire */
7810
+ readonly required: _angular_core.InputSignal<boolean>;
7811
+ /** Caractères minimum avant filtrage */
7812
+ readonly minChars: _angular_core.InputSignal<number>;
7813
+ /** Texte si aucun résultat */
7814
+ readonly noResultsText: _angular_core.InputSignal<string>;
7815
+ /** Template du texte de création (utiliser {query} comme placeholder) */
7816
+ readonly createText: _angular_core.InputSignal<string>;
7817
+ /** Nom du champ (pour formulaires) */
7818
+ readonly name: _angular_core.InputSignal<string>;
7819
+ /** Émis lors d'un changement de sélection */
7820
+ readonly selectionChange: _angular_core.OutputEmitterRef<DsEntityOption | DsEntityOption[] | null>;
7821
+ /** Émis lors d'une demande de création */
7822
+ readonly createRequested: _angular_core.OutputEmitterRef<string>;
7823
+ /** Émis lors d'un changement de recherche */
7824
+ readonly searchChange: _angular_core.OutputEmitterRef<string>;
7825
+ /** Émis à l'ouverture du panel */
7826
+ readonly opened: _angular_core.OutputEmitterRef<void>;
7827
+ /** Émis à la fermeture du panel */
7828
+ readonly closed: _angular_core.OutputEmitterRef<void>;
7829
+ protected readonly isOpen: _angular_core.WritableSignal<boolean>;
7830
+ protected readonly searchQuery: _angular_core.WritableSignal<string>;
7831
+ protected readonly focusedIndex: _angular_core.WritableSignal<number>;
7832
+ private readonly internalValue;
7833
+ private readonly cvaDisabled;
7834
+ inputElement: ElementRef<HTMLInputElement>;
7835
+ listbox: ElementRef<HTMLUListElement>;
7836
+ private onChange;
7837
+ private onTouched;
7838
+ readonly iconPlus: _fortawesome_fontawesome_common_types.IconDefinition;
7839
+ readonly iconChevron: _fortawesome_fontawesome_common_types.IconDefinition;
7840
+ readonly iconClear: _fortawesome_fontawesome_common_types.IconDefinition;
7841
+ readonly iconSearch: _fortawesome_fontawesome_common_types.IconDefinition;
7842
+ readonly overlayPositions: _angular_cdk_overlay.ConnectedPosition[];
7843
+ protected readonly isDisabled: _angular_core.Signal<boolean>;
7844
+ /** Options sélectionnées (objets complets) */
7845
+ protected readonly selectedOptions: _angular_core.Signal<DsEntityOption[]>;
7846
+ /** Texte affiché dans l'input (mode single) */
7847
+ protected readonly displayValue: _angular_core.Signal<string>;
7848
+ /** Options filtrées selon la recherche */
7849
+ protected readonly filteredOptions: _angular_core.Signal<DsEntityOption[]>;
7850
+ /** Peut créer une nouvelle option */
7851
+ protected readonly canCreate: _angular_core.Signal<boolean>;
7852
+ /** Afficher le dropdown */
7853
+ protected readonly shouldShowDropdown: _angular_core.Signal<boolean>;
7854
+ /** Classes du container */
7855
+ protected readonly containerClasses: _angular_core.Signal<{
7856
+ [x: string]: boolean;
7857
+ 'ds-entity-picker': boolean;
7858
+ 'ds-entity-picker--open': boolean;
7859
+ 'ds-entity-picker--disabled': boolean;
7860
+ 'ds-entity-picker--error': boolean;
7861
+ 'ds-entity-picker--multiple': boolean;
7862
+ }>;
7863
+ /** Classes de l'input */
7864
+ protected readonly inputClasses: _angular_core.Signal<{
7865
+ 'ds-entity-picker__input': boolean;
7866
+ 'ds-entity-picker__input--has-value': boolean;
7867
+ }>;
7868
+ /** ID unique pour le listbox */
7869
+ protected readonly listboxId: _angular_core.Signal<string>;
7870
+ /** ID unique pour l'input */
7871
+ protected readonly inputId: _angular_core.Signal<string>;
7872
+ /** Texte du compteur (mode count) */
7873
+ protected readonly countText: _angular_core.Signal<string>;
7874
+ /** Limite de sélection atteinte */
7875
+ protected readonly maxReached: _angular_core.Signal<boolean>;
7876
+ /** Texte formaté pour l'option de création */
7877
+ protected readonly formattedCreateText: _angular_core.Signal<string>;
7878
+ writeValue(value: string | string[] | null): void;
7879
+ registerOnChange(fn: (value: string | string[] | null) => void): void;
7880
+ registerOnTouched(fn: () => void): void;
7881
+ setDisabledState(isDisabled: boolean): void;
7882
+ onInputFocus(): void;
7883
+ onInputBlur(): void;
7884
+ onSearchInput(event: Event): void;
7885
+ open(): void;
7886
+ close(): void;
7887
+ selectOption(option: DsEntityOption): void;
7888
+ removeOption(option: DsEntityOption): void;
7889
+ clear(event?: Event): void;
7890
+ requestCreate(): void;
7891
+ onKeyDown(event: KeyboardEvent): void;
7892
+ onDocumentClick(event: Event): void;
7893
+ private moveFocus;
7894
+ private scrollFocusedOptionIntoView;
7895
+ protected isOptionFocused(index: number): boolean;
7896
+ protected isOptionSelected(option: DsEntityOption): boolean;
7897
+ protected getOptionId(index: number): string;
7898
+ protected isCreateFocused(): boolean;
7899
+ protected trackOption(_: number, option: DsEntityOption): string;
7900
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<DsEntityPicker, never>;
7901
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<DsEntityPicker, "ds-entity-picker", never, { "options": { "alias": "options"; "required": false; "isSignal": true; }; "multiple": { "alias": "multiple"; "required": false; "isSignal": true; }; "allowCreate": { "alias": "allowCreate"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "displayMode": { "alias": "displayMode"; "required": false; "isSignal": true; }; "clearable": { "alias": "clearable"; "required": false; "isSignal": true; }; "maxSelections": { "alias": "maxSelections"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "error": { "alias": "error"; "required": false; "isSignal": true; }; "helper": { "alias": "helper"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "minChars": { "alias": "minChars"; "required": false; "isSignal": true; }; "noResultsText": { "alias": "noResultsText"; "required": false; "isSignal": true; }; "createText": { "alias": "createText"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": false; "isSignal": true; }; }, { "selectionChange": "selectionChange"; "createRequested": "createRequested"; "searchChange": "searchChange"; "opened": "opened"; "closed": "closed"; }, never, never, true, never>;
7902
+ }
7903
+
7904
+ /**
7905
+ * Chip coloré pour afficher une entité sélectionnée dans ds-entity-picker
7906
+ *
7907
+ * @example
7908
+ * ```html
7909
+ * <ds-entity-chip
7910
+ * [option]="{ value: '1', label: 'Important', color: '#ef4444', emoji: '🏷️' }"
7911
+ * [removable]="true"
7912
+ * (removed)="onRemove()"
7913
+ * />
7914
+ * ```
7915
+ */
7916
+ declare class DsEntityChip {
7917
+ /** Option à afficher */
7918
+ readonly option: _angular_core.InputSignal<DsEntityOption>;
7919
+ /** Taille du chip */
7920
+ readonly size: _angular_core.InputSignal<DsEntityPickerSize>;
7921
+ /** Afficher le bouton de suppression */
7922
+ readonly removable: _angular_core.InputSignal<boolean>;
7923
+ /** Chip désactivé */
7924
+ readonly disabled: _angular_core.InputSignal<boolean>;
7925
+ /** Événement de suppression */
7926
+ readonly removed: _angular_core.OutputEmitterRef<DsEntityOption>;
7927
+ /** Icône de fermeture */
7928
+ readonly closeIcon: IconDefinition;
7929
+ /** Couleur du chip (depuis l'option ou fallback) */
7930
+ readonly chipColor: _angular_core.Signal<string>;
7931
+ /** Couleur de fond (10% opacity) */
7932
+ readonly backgroundColor: _angular_core.Signal<string>;
7933
+ /** Gestion du clic sur le bouton supprimer */
7934
+ handleRemove(event: Event): void;
7935
+ /** Gestion du clavier */
7936
+ handleKeyDown(event: KeyboardEvent): void;
7937
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<DsEntityChip, never>;
7938
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<DsEntityChip, "ds-entity-chip", never, { "option": { "alias": "option"; "required": true; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "removable": { "alias": "removable"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, { "removed": "removed"; }, never, never, true, never>;
7939
+ }
7940
+
7643
7941
  /**
7644
7942
  * Positions standard pour dropdowns (menus déroulants, select, etc.)
7645
7943
  *
@@ -8011,5 +8309,5 @@ declare function generateId(): string;
8011
8309
  */
8012
8310
  declare function generateShortId(prefix?: string): string;
8013
8311
 
8014
- export { AUTOCOMPLETE_POSITIONS, DROPDOWN_POSITIONS, DROPDOWN_POSITIONS_RIGHT, DROPDOWN_POSITIONS_TOP, DsAccordion, DsAlert, DsAvatar, DsBadge, DsBreadcrumb, DsButton, DsCalendar, DsCard, DsCarousel, DsCheckbox, DsCheckboxList, DsChip, DsColorPicker, DsCombobox, DsContainer, DsDatePicker, DsDivider, DsDrawer, DsDropdown, DsEmpty, DsFileUpload, DsI18nService, DsInputField, DsInputNumber, DsInputTextarea, DsList, DsListGroup, DsListItem, DsMenu, DsModalComponent, DsNavList, DsNotificationContainerComponent, DsNotificationItemComponent, DsNotificationService, DsPagination, DsPasswordStrength, DsPopover, DsPopoverComponent, DsProgressBar, DsRadioGroup, DsRating, DsSearchInput, DsSegmentedControl, DsSelect, DsSidebar, DsSidebarFooterItemComponent, DsSidebarItemComponent, DsSkeleton, DsSlider, DsStepper, DsTable, DsTabs, DsTimePicker, DsTimeline, DsToastComponent, DsToastContainerComponent, DsToastService, DsToggle, DsTooltip, DsTooltipComponent, DsTransfer, DsTree, IconRegistryService, POPOVER_POSITIONS, PrimitiveBadge, PrimitiveButton, PrimitiveCheckbox, PrimitiveInput, PrimitiveRadio, PrimitiveTextarea, PrimitiveToggle, SIDEBAR_POPOVER_POSITIONS_LEFT, SIDEBAR_POPOVER_POSITIONS_RIGHT, TOOLTIP_POSITIONS, generateId, generateShortId };
8015
- export type { AccordionChangeEvent, AccordionItem, AccordionSize, AccordionVariant, AlertSize, AlertType, AvatarShape, AvatarSize, BadgeAppearance, BadgeShape, BadgeSize, BadgeType, BadgeVariant, BreadcrumbItem, ButtonAppearance, ButtonSize, ButtonType, ButtonVariant, CalendarEvent, CalendarMode, CalendarSize, CardSize, CardVariant, CarouselDotsPosition, CarouselEffect, CarouselSlide, CheckboxListChangeEvent, CheckboxListItem, CheckboxListItemChangeEvent, CheckboxListSize, CheckboxSize, CheckboxState, ChipColor, ChipSize, ChipVariant, ColorFormat, ColorPickerSize, ContainerGutter, ContainerMaxWidth, DatePickerMode, DatePickerSize, DateRange, DividerLabelPosition, DividerOrientation, DividerSize, DividerVariant, DrawerPosition, DrawerSize, DropdownItem, DropdownItemDTO, DropdownPosition, DsComboboxOption, DsComboboxSize, DsSelectOption, DsSelectSize, DsTableColumn, DsTableSize, DsTableVariant, EmptySize, FileUploadSize, FlattenedSidebarItem, HSLColor, I18nLabels, InputAppearance, InputNumberControlsPosition, InputNumberSize, InputSize, InputState, InputType, ListDragEvent, ListEmptyConfig, ListGroupToggleEvent, ListGroupVariant, ListItemCheckEvent, ListItemClickEvent, ListItemIndicator, ListItemIndicatorColor, ListItemSize, ListSelectionChangeEvent, ListSize, ListVariant, MenuItem, MenuSize, MenuTrigger, NavListBadgeVariant, NavListGroup, NavListGroupToggleEvent, NavListItem, NavListItemClickEvent, NavListSize, NotificationAction, NotificationConfig, NotificationItem, NotificationPlacement, PageChangeEvent, PageSizeOption, PaginationSize, PasswordCriterion, PasswordStrength, PasswordStrengthSize, PopoverTrigger, ProgressBarMode, ProgressBarSize, ProgressBarVariant, RGBColor, RadioGroupLayout, RadioOption, RadioSize, RatingSize, SearchInputSize, SegmentOption, SegmentedControlColor, SegmentedControlOrientation, SegmentedControlSize, SidebarBadgeVariant, SidebarCollapsedTrigger, SidebarItem, SidebarItemClickEvent, SidebarItemExpandEvent, SidebarMode, SidebarPosition, SidebarSize, SkeletonSize, SkeletonVariant, SliderOrientation, SliderSize, SliderValue, SortDirection, SortEvent, Step, StepChangeEvent, StepState, StepperOrientation, StepperSize, SupportedLocale, TabItem, TableState, TextareaAppearance, TextareaResize, TextareaSize, TextareaState, TimeFormat, TimePickerSize, TimeValue, TimelineColor, TimelineItem, TimelineItemClickEvent, TimelineMode, TimelineSize, ToastInstance, ToastOptions, ToastPosition, ToastType, ToggleSize, TransferChangeEvent, TransferDirection, TransferItem, TransferSize, TreeNode, TreeNodeCheckEvent, TreeNodeExpandEvent, TreeNodeSelectEvent, TreeSize, UploadFile };
8312
+ export { AUTOCOMPLETE_POSITIONS, DROPDOWN_POSITIONS, DROPDOWN_POSITIONS_RIGHT, DROPDOWN_POSITIONS_TOP, DsAccordion, DsAccordionItem, DsAlert, DsAvatar, DsBadge, DsBreadcrumb, DsButton, DsCalendar, DsCard, DsCarousel, DsCheckbox, DsCheckboxList, DsChip, DsColorPicker, DsCombobox, DsContainer, DsDatePicker, DsDivider, DsDrawer, DsDropdown, DsEmpty, DsEntityChip, DsEntityPicker, DsFileUpload, DsI18nService, DsInputField, DsInputNumber, DsInputTextarea, DsList, DsListGroup, DsListItem, DsMenu, DsModalComponent, DsNavList, DsNotificationContainerComponent, DsNotificationItemComponent, DsNotificationService, DsPagination, DsPasswordStrength, DsPopover, DsPopoverComponent, DsProgressBar, DsRadioGroup, DsRating, DsSearchInput, DsSegmentedControl, DsSelect, DsSidebar, DsSidebarFooterItemComponent, DsSidebarItemComponent, DsSkeleton, DsSlider, DsStepper, DsTable, DsTabs, DsTimePicker, DsTimeline, DsToastComponent, DsToastContainerComponent, DsToastService, DsToggle, DsTooltip, DsTooltipComponent, DsTransfer, DsTree, IconRegistryService, POPOVER_POSITIONS, PrimitiveBadge, PrimitiveButton, PrimitiveCheckbox, PrimitiveInput, PrimitiveRadio, PrimitiveTextarea, PrimitiveToggle, SIDEBAR_POPOVER_POSITIONS_LEFT, SIDEBAR_POPOVER_POSITIONS_RIGHT, TOOLTIP_POSITIONS, generateId, generateShortId };
8313
+ export type { AccordionChangeEvent, AccordionItem, AccordionSize, AccordionVariant, AlertSize, AlertType, AvatarShape, AvatarSize, BadgeAppearance, BadgeShape, BadgeSize, BadgeType, BadgeVariant, BreadcrumbItem, ButtonAppearance, ButtonSize, ButtonType, ButtonVariant, CalendarEvent, CalendarMode, CalendarSize, CardSize, CardVariant, CarouselDotsPosition, CarouselEffect, CarouselSlide, CheckboxListChangeEvent, CheckboxListItem, CheckboxListItemChangeEvent, CheckboxListSize, CheckboxSize, CheckboxState, ChipColor, ChipSize, ChipVariant, ColorFormat, ColorPickerSize, ContainerGutter, ContainerMaxWidth, DatePickerMode, DatePickerSize, DateRange, DividerLabelPosition, DividerOrientation, DividerSize, DividerVariant, DrawerPosition, DrawerSize, DropdownItem, DropdownItemDTO, DropdownPosition, DsComboboxOption, DsComboboxSize, DsEntityOption, DsEntityPickerDisplayMode, DsEntityPickerSize, DsSelectOption, DsSelectSize, DsTableColumn, DsTableSize, DsTableVariant, EmptySize, FileUploadSize, FlattenedSidebarItem, HSLColor, I18nLabels, InputAppearance, InputNumberControlsPosition, InputNumberSize, InputSize, InputState, InputType, ListDragEvent, ListEmptyConfig, ListGroupToggleEvent, ListGroupVariant, ListItemCheckEvent, ListItemClickEvent, ListItemIndicator, ListItemIndicatorColor, ListItemSize, ListSelectionChangeEvent, ListSize, ListVariant, MenuItem, MenuSize, MenuTrigger, NavListBadgeVariant, NavListGroup, NavListGroupToggleEvent, NavListItem, NavListItemClickEvent, NavListSize, NotificationAction, NotificationConfig, NotificationItem, NotificationPlacement, PageChangeEvent, PageSizeOption, PaginationSize, PasswordCriterion, PasswordStrength, PasswordStrengthSize, PopoverTrigger, ProgressBarMode, ProgressBarSize, ProgressBarVariant, RGBColor, RadioGroupLayout, RadioOption, RadioSize, RatingSize, SearchInputSize, SegmentOption, SegmentedControlColor, SegmentedControlOrientation, SegmentedControlSize, SidebarBadgeVariant, SidebarCollapsedTrigger, SidebarItem, SidebarItemClickEvent, SidebarItemExpandEvent, SidebarMode, SidebarPosition, SidebarSize, SkeletonSize, SkeletonVariant, SliderOrientation, SliderSize, SliderValue, SortDirection, SortEvent, Step, StepChangeEvent, StepState, StepperOrientation, StepperSize, SupportedLocale, TabItem, TableState, TextareaAppearance, TextareaResize, TextareaSize, TextareaState, TimeFormat, TimePickerSize, TimeValue, TimelineColor, TimelineItem, TimelineItemClickEvent, TimelineMode, TimelineSize, ToastInstance, ToastOptions, ToastPosition, ToastType, ToggleSize, TransferChangeEvent, TransferDirection, TransferItem, TransferSize, TreeNode, TreeNodeCheckEvent, TreeNodeExpandEvent, TreeNodeSelectEvent, TreeSize, UploadFile };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@kksdev/ds-angular",
3
- "version": "1.7.2",
4
- "description": "Angular 20 standalone component library - Design System with 53 components, 7 primitives, 3 themes, i18n support",
3
+ "version": "1.8.1",
4
+ "description": "Angular 20 standalone component library - Design System with 55 components, 7 primitives, 3 themes, i18n support",
5
5
  "keywords": [
6
6
  "angular",
7
7
  "angular20",