@six-group/ui-library-angular 5.3.1 → 5.4.0

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@six-group/ui-library-angular",
3
- "version": "5.3.1",
3
+ "version": "5.4.0",
4
4
  "description": "Angular wrapper components for @six-group/ui-library",
5
5
  "private": false,
6
6
  "packageManager": "npm@11.7.0",
@@ -1,6 +1,6 @@
1
1
  import * as i0 from '@angular/core';
2
2
  import { NgZone, EventEmitter, ChangeDetectorRef, ElementRef, AfterViewInit, OnDestroy, Injector, OnInit, OnChanges, Renderer2, Type, ModuleWithProviders } from '@angular/core';
3
- import { Language, ValidationError, Components, EmptyPayload, SixDatepickerSelectPayload, SixDialogRequestClose, SixDrawerRequestClose, SixDropdownAutoFilterPayload, SixDropdownAsyncFilterPayload, SixDropdownScrollPayload, SixFileListDownloadPayload, SixFileListRemovePayload, SixFileUploadSuccessPayload, SixFileUploadFailurePayload, SixItemPickerChangePayload, SixLanguageSwitcherChangePayload, SixMenuItemSelectedPayload, SixSearchFieldChangePayload, SixSelectChangePayload, SixTabShowPayload, SixTabHidePayload, SixTimepickerChange, AlertType } from '@six-group/ui-library';
3
+ import { Language, ValidationError, Components, EmptyPayload, SixDatepickerSelectPayload, SixDialogRequestClose, SixDrawerRequestClose, SixDropdownAutoFilterPayload, SixDropdownAsyncFilterPayload, SixDropdownScrollPayload, SixFileListDownloadPayload, SixFileListRemovePayload, SixFileUploadSuccessPayload, SixFileUploadFailurePayload, SixItemPickerChangePayload, SixLanguageSwitcherChangePayload, SixMenuItemSelectedPayload, SixPaginatorResultsPerPageChangedPayload, SixPaginatorPageChangedPayload, SixSearchFieldChangePayload, SixSelectChangePayload, SixTabShowPayload, SixTabHidePayload, SixTimepickerChange, AlertType } from '@six-group/ui-library';
4
4
  import { ControlValueAccessor, NgControl, AbstractControl, Validator, ValidatorFn, FormGroupDirective } from '@angular/forms';
5
5
  import * as i1 from '@angular/router';
6
6
  import { Router, RouterLink } from '@angular/router';
@@ -469,7 +469,7 @@ declare class SixIconButton {
469
469
  protected el: HTMLSixIconButtonElement;
470
470
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
471
471
  static ɵfac: i0.ɵɵFactoryDeclaration<SixIconButton, never>;
472
- static ɵcmp: i0.ɵɵComponentDeclaration<SixIconButton, "six-icon-button", never, { "disabled": { "alias": "disabled"; "required": false; }; "download": { "alias": "download"; "required": false; }; "href": { "alias": "href"; "required": false; }; "html": { "alias": "html"; "required": false; }; "label": { "alias": "label"; "required": false; }; "name": { "alias": "name"; "required": false; }; "size": { "alias": "size"; "required": false; }; "target": { "alias": "target"; "required": false; }; }, {}, never, ["*"], false, never>;
472
+ static ɵcmp: i0.ɵɵComponentDeclaration<SixIconButton, "six-icon-button", never, { "disabled": { "alias": "disabled"; "required": false; }; "download": { "alias": "download"; "required": false; }; "href": { "alias": "href"; "required": false; }; "html": { "alias": "html"; "required": false; }; "label": { "alias": "label"; "required": false; }; "library": { "alias": "library"; "required": false; }; "name": { "alias": "name"; "required": false; }; "size": { "alias": "size"; "required": false; }; "target": { "alias": "target"; "required": false; }; }, {}, never, ["*"], false, never>;
473
473
  }
474
474
  declare interface SixIconButton extends Components.SixIconButton {
475
475
  }
@@ -608,6 +608,25 @@ declare class SixMenuLabel {
608
608
  }
609
609
  declare interface SixMenuLabel extends Components.SixMenuLabel {
610
610
  }
611
+ declare class SixPaginator {
612
+ protected z: NgZone;
613
+ protected el: HTMLSixPaginatorElement;
614
+ sixPaginatorResultsPerPageChanged: EventEmitter<CustomEvent<SixPaginatorResultsPerPageChangedPayload>>;
615
+ sixPaginatorPageChanged: EventEmitter<CustomEvent<SixPaginatorPageChangedPayload>>;
616
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
617
+ static ɵfac: i0.ɵɵFactoryDeclaration<SixPaginator, never>;
618
+ static ɵcmp: i0.ɵɵComponentDeclaration<SixPaginator, "six-paginator", never, { "clamp": { "alias": "clamp"; "required": false; }; "currentPage": { "alias": "currentPage"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "length": { "alias": "length"; "required": false; }; "resultsPerPage": { "alias": "resultsPerPage"; "required": false; }; "resultsPerPageOptions": { "alias": "resultsPerPageOptions"; "required": false; }; "totalPages": { "alias": "totalPages"; "required": true; }; "totalResults": { "alias": "totalResults"; "required": true; }; }, { "sixPaginatorResultsPerPageChanged": "sixPaginatorResultsPerPageChanged"; "sixPaginatorPageChanged": "sixPaginatorPageChanged"; }, never, ["*"], false, never>;
619
+ }
620
+ declare interface SixPaginator extends Components.SixPaginator {
621
+ /**
622
+ * Emitted after the user selects a value from the results per page select.
623
+ */
624
+ 'six-paginator-results-per-page-changed': EventEmitter<CustomEvent<SixPaginatorResultsPerPageChangedPayload>>;
625
+ /**
626
+ * Emitted whenever the page changes. This can be either due to one of the arrows bein pressed, or an explicit click on a page number.
627
+ */
628
+ 'six-paginator-page-changed': EventEmitter<CustomEvent<SixPaginatorPageChangedPayload>>;
629
+ }
611
630
  declare class SixPicto {
612
631
  protected z: NgZone;
613
632
  protected el: HTMLSixPictoElement;
@@ -941,7 +960,7 @@ declare class SixTile {
941
960
  sixTileSelected: EventEmitter<CustomEvent<undefined>>;
942
961
  constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
943
962
  static ɵfac: i0.ɵɵFactoryDeclaration<SixTile, never>;
944
- static ɵcmp: i0.ɵɵComponentDeclaration<SixTile, "six-tile", never, { "closeable": { "alias": "closeable"; "required": false; }; "disableTooltip": { "alias": "disableTooltip"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "elevated": { "alias": "elevated"; "required": false; }; "iconName": { "alias": "iconName"; "required": false; }; "label": { "alias": "label"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, { "sixTileClosed": "sixTileClosed"; "sixTileSelected": "sixTileSelected"; }, never, ["*"], false, never>;
963
+ static ɵcmp: i0.ɵɵComponentDeclaration<SixTile, "six-tile", never, { "closeable": { "alias": "closeable"; "required": false; }; "disableTooltip": { "alias": "disableTooltip"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "elevated": { "alias": "elevated"; "required": false; }; "iconName": { "alias": "iconName"; "required": false; }; "label": { "alias": "label"; "required": false; }; "library": { "alias": "library"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, { "sixTileClosed": "sixTileClosed"; "sixTileSelected": "sixTileSelected"; }, never, ["*"], false, never>;
945
964
  }
946
965
  declare interface SixTile extends Components.SixTile {
947
966
  /**
@@ -1366,11 +1385,11 @@ declare class ActiveSidebarItemGroupDirective {
1366
1385
  declare class UiLibraryAngularModule {
1367
1386
  static forRoot<T extends ValidationMessagesService>(customValidationMessagesService?: Type<T>, config?: UiLibraryConfig): ModuleWithProviders<UiLibraryAngularModule>;
1368
1387
  static ɵfac: i0.ɵɵFactoryDeclaration<UiLibraryAngularModule, never>;
1369
- static ɵmod: i0.ɵɵNgModuleDeclaration<UiLibraryAngularModule, [typeof SixAlert, typeof SixAvatar, typeof SixBadge, typeof SixBreadcrumbs, typeof SixBreadcrumbsItem, typeof SixButton, typeof SixCard, typeof SixCheckbox, typeof SixDate, typeof SixDatepicker, typeof SixDetails, typeof SixDialog, typeof SixDrawer, typeof SixDropdown, typeof SixError, typeof SixErrorPage, typeof SixFileList, typeof SixFileListItem, typeof SixFileUpload, typeof SixFooter, typeof SixGroupLabel, typeof SixHeader, typeof SixHeaderDropdownItem, typeof SixHeaderItem, typeof SixHeaderMenuButton, typeof SixIcon, typeof SixIconButton, typeof SixInput, typeof SixItemPicker, typeof SixLanguageSwitcher, typeof SixLayoutGrid, typeof SixLogo, typeof SixMainContainer, typeof SixMenu, typeof SixMenuDivider, typeof SixMenuItem, typeof SixMenuLabel, typeof SixPicto, typeof SixProgressBar, typeof SixProgressRing, typeof SixRadio, typeof SixRange, typeof SixRating, typeof SixRoot, typeof SixSearchField, typeof SixSelect, typeof SixSidebar, typeof SixSidebarItem, typeof SixSidebarItemGroup, typeof SixSpinner, typeof SixStageIndicator, typeof SixSwitch, typeof SixTab, typeof SixTabGroup, typeof SixTabPanel, typeof SixTag, typeof SixTextarea, typeof SixTile, typeof SixTimepicker, typeof SixTooltip, typeof TextValueAccessor, typeof NumericValueAccessor, typeof RadioValueAccessor, typeof DatepickerValueAccessor, typeof DateValueAccessor, typeof TimepickerValueAccessor, typeof SelectValueAccessor, typeof CheckboxValueAccessor, typeof CheckboxMultiSelectValueAccessor, typeof SixCheckboxGroupDirective, typeof SwitchValueAccessor, typeof RangeValueAccessor, typeof MinValidator, typeof MaxValidator, typeof MinDateValidator, typeof MaxDateValidator, typeof AllowedDatesValidator, typeof MinDateValidatorIso, typeof MaxDateValidatorIso, typeof AllowedDatesValidatorIso, typeof SixFormDirective, typeof SixFormUtilDirective, typeof SixRouterLinkDirective, typeof ActiveSidebarItemDirective, typeof ActiveSidebarItemGroupDirective, typeof ActiveSidebarDirective], never, [typeof SixAlert, typeof SixAvatar, typeof SixBadge, typeof SixBreadcrumbs, typeof SixBreadcrumbsItem, typeof SixButton, typeof SixCard, typeof SixCheckbox, typeof SixDate, typeof SixDatepicker, typeof SixDetails, typeof SixDialog, typeof SixDrawer, typeof SixDropdown, typeof SixError, typeof SixErrorPage, typeof SixFileList, typeof SixFileListItem, typeof SixFileUpload, typeof SixFooter, typeof SixGroupLabel, typeof SixHeader, typeof SixHeaderDropdownItem, typeof SixHeaderItem, typeof SixHeaderMenuButton, typeof SixIcon, typeof SixIconButton, typeof SixInput, typeof SixItemPicker, typeof SixLanguageSwitcher, typeof SixLayoutGrid, typeof SixLogo, typeof SixMainContainer, typeof SixMenu, typeof SixMenuDivider, typeof SixMenuItem, typeof SixMenuLabel, typeof SixPicto, typeof SixProgressBar, typeof SixProgressRing, typeof SixRadio, typeof SixRange, typeof SixRating, typeof SixRoot, typeof SixSearchField, typeof SixSelect, typeof SixSidebar, typeof SixSidebarItem, typeof SixSidebarItemGroup, typeof SixSpinner, typeof SixStageIndicator, typeof SixSwitch, typeof SixTab, typeof SixTabGroup, typeof SixTabPanel, typeof SixTag, typeof SixTextarea, typeof SixTile, typeof SixTimepicker, typeof SixTooltip, typeof TextValueAccessor, typeof NumericValueAccessor, typeof RadioValueAccessor, typeof DatepickerValueAccessor, typeof DateValueAccessor, typeof TimepickerValueAccessor, typeof SelectValueAccessor, typeof CheckboxValueAccessor, typeof CheckboxMultiSelectValueAccessor, typeof SixCheckboxGroupDirective, typeof SwitchValueAccessor, typeof RangeValueAccessor, typeof MinValidator, typeof MaxValidator, typeof MinDateValidator, typeof MaxDateValidator, typeof AllowedDatesValidator, typeof MinDateValidatorIso, typeof MaxDateValidatorIso, typeof AllowedDatesValidatorIso, typeof SixFormDirective, typeof SixFormUtilDirective, typeof SixRouterLinkDirective, typeof ActiveSidebarItemDirective, typeof ActiveSidebarItemGroupDirective, typeof ActiveSidebarDirective]>;
1388
+ static ɵmod: i0.ɵɵNgModuleDeclaration<UiLibraryAngularModule, [typeof SixAlert, typeof SixAvatar, typeof SixBadge, typeof SixBreadcrumbs, typeof SixBreadcrumbsItem, typeof SixButton, typeof SixCard, typeof SixCheckbox, typeof SixDate, typeof SixDatepicker, typeof SixDetails, typeof SixDialog, typeof SixDrawer, typeof SixDropdown, typeof SixError, typeof SixErrorPage, typeof SixFileList, typeof SixFileListItem, typeof SixFileUpload, typeof SixFooter, typeof SixGroupLabel, typeof SixHeader, typeof SixHeaderDropdownItem, typeof SixHeaderItem, typeof SixHeaderMenuButton, typeof SixIcon, typeof SixIconButton, typeof SixInput, typeof SixItemPicker, typeof SixLanguageSwitcher, typeof SixLayoutGrid, typeof SixLogo, typeof SixMainContainer, typeof SixMenu, typeof SixMenuDivider, typeof SixMenuItem, typeof SixMenuLabel, typeof SixPaginator, typeof SixPicto, typeof SixProgressBar, typeof SixProgressRing, typeof SixRadio, typeof SixRange, typeof SixRating, typeof SixRoot, typeof SixSearchField, typeof SixSelect, typeof SixSidebar, typeof SixSidebarItem, typeof SixSidebarItemGroup, typeof SixSpinner, typeof SixStageIndicator, typeof SixSwitch, typeof SixTab, typeof SixTabGroup, typeof SixTabPanel, typeof SixTag, typeof SixTextarea, typeof SixTile, typeof SixTimepicker, typeof SixTooltip, typeof TextValueAccessor, typeof NumericValueAccessor, typeof RadioValueAccessor, typeof DatepickerValueAccessor, typeof DateValueAccessor, typeof TimepickerValueAccessor, typeof SelectValueAccessor, typeof CheckboxValueAccessor, typeof CheckboxMultiSelectValueAccessor, typeof SixCheckboxGroupDirective, typeof SwitchValueAccessor, typeof RangeValueAccessor, typeof MinValidator, typeof MaxValidator, typeof MinDateValidator, typeof MaxDateValidator, typeof AllowedDatesValidator, typeof MinDateValidatorIso, typeof MaxDateValidatorIso, typeof AllowedDatesValidatorIso, typeof SixFormDirective, typeof SixFormUtilDirective, typeof SixRouterLinkDirective, typeof ActiveSidebarItemDirective, typeof ActiveSidebarItemGroupDirective, typeof ActiveSidebarDirective], never, [typeof SixAlert, typeof SixAvatar, typeof SixBadge, typeof SixBreadcrumbs, typeof SixBreadcrumbsItem, typeof SixButton, typeof SixCard, typeof SixCheckbox, typeof SixDate, typeof SixDatepicker, typeof SixDetails, typeof SixDialog, typeof SixDrawer, typeof SixDropdown, typeof SixError, typeof SixErrorPage, typeof SixFileList, typeof SixFileListItem, typeof SixFileUpload, typeof SixFooter, typeof SixGroupLabel, typeof SixHeader, typeof SixHeaderDropdownItem, typeof SixHeaderItem, typeof SixHeaderMenuButton, typeof SixIcon, typeof SixIconButton, typeof SixInput, typeof SixItemPicker, typeof SixLanguageSwitcher, typeof SixLayoutGrid, typeof SixLogo, typeof SixMainContainer, typeof SixMenu, typeof SixMenuDivider, typeof SixMenuItem, typeof SixMenuLabel, typeof SixPaginator, typeof SixPicto, typeof SixProgressBar, typeof SixProgressRing, typeof SixRadio, typeof SixRange, typeof SixRating, typeof SixRoot, typeof SixSearchField, typeof SixSelect, typeof SixSidebar, typeof SixSidebarItem, typeof SixSidebarItemGroup, typeof SixSpinner, typeof SixStageIndicator, typeof SixSwitch, typeof SixTab, typeof SixTabGroup, typeof SixTabPanel, typeof SixTag, typeof SixTextarea, typeof SixTile, typeof SixTimepicker, typeof SixTooltip, typeof TextValueAccessor, typeof NumericValueAccessor, typeof RadioValueAccessor, typeof DatepickerValueAccessor, typeof DateValueAccessor, typeof TimepickerValueAccessor, typeof SelectValueAccessor, typeof CheckboxValueAccessor, typeof CheckboxMultiSelectValueAccessor, typeof SixCheckboxGroupDirective, typeof SwitchValueAccessor, typeof RangeValueAccessor, typeof MinValidator, typeof MaxValidator, typeof MinDateValidator, typeof MaxDateValidator, typeof AllowedDatesValidator, typeof MinDateValidatorIso, typeof MaxDateValidatorIso, typeof AllowedDatesValidatorIso, typeof SixFormDirective, typeof SixFormUtilDirective, typeof SixRouterLinkDirective, typeof ActiveSidebarItemDirective, typeof ActiveSidebarItemGroupDirective, typeof ActiveSidebarDirective]>;
1370
1389
  static ɵinj: i0.ɵɵInjectorDeclaration<UiLibraryAngularModule>;
1371
1390
  }
1372
1391
 
1373
- declare const DIRECTIVES: (typeof SixAlert | typeof SixAvatar | typeof SixBadge | typeof SixBreadcrumbs | typeof SixBreadcrumbsItem | typeof SixButton | typeof SixCard | typeof SixCheckbox | typeof SixDate | typeof SixDatepicker | typeof SixDetails | typeof SixDialog | typeof SixDrawer | typeof SixDropdown | typeof SixError | typeof SixErrorPage | typeof SixFileList | typeof SixFileListItem | typeof SixFileUpload | typeof SixFooter | typeof SixGroupLabel | typeof SixHeader | typeof SixHeaderDropdownItem | typeof SixHeaderItem | typeof SixHeaderMenuButton | typeof SixIcon | typeof SixIconButton | typeof SixInput | typeof SixItemPicker | typeof SixLanguageSwitcher | typeof SixLayoutGrid | typeof SixLogo | typeof SixMainContainer | typeof SixMenu | typeof SixMenuDivider | typeof SixMenuItem | typeof SixMenuLabel | typeof SixPicto | typeof SixProgressBar | typeof SixProgressRing | typeof SixRadio | typeof SixRange | typeof SixRating | typeof SixRoot | typeof SixSearchField | typeof SixSelect | typeof SixSidebar | typeof SixSidebarItem | typeof SixSidebarItemGroup | typeof SixSpinner | typeof SixStageIndicator | typeof SixSwitch | typeof SixTab | typeof SixTabGroup | typeof SixTabPanel | typeof SixTag | typeof SixTextarea | typeof SixTile | typeof SixTimepicker | typeof SixTooltip)[];
1392
+ declare const DIRECTIVES: (typeof SixAlert | typeof SixAvatar | typeof SixBadge | typeof SixBreadcrumbs | typeof SixBreadcrumbsItem | typeof SixButton | typeof SixCard | typeof SixCheckbox | typeof SixDate | typeof SixDatepicker | typeof SixDetails | typeof SixDialog | typeof SixDrawer | typeof SixDropdown | typeof SixError | typeof SixErrorPage | typeof SixFileList | typeof SixFileListItem | typeof SixFileUpload | typeof SixFooter | typeof SixGroupLabel | typeof SixHeader | typeof SixHeaderDropdownItem | typeof SixHeaderItem | typeof SixHeaderMenuButton | typeof SixIcon | typeof SixIconButton | typeof SixInput | typeof SixItemPicker | typeof SixLanguageSwitcher | typeof SixLayoutGrid | typeof SixLogo | typeof SixMainContainer | typeof SixMenu | typeof SixMenuDivider | typeof SixMenuItem | typeof SixMenuLabel | typeof SixPaginator | typeof SixPicto | typeof SixProgressBar | typeof SixProgressRing | typeof SixRadio | typeof SixRange | typeof SixRating | typeof SixRoot | typeof SixSearchField | typeof SixSelect | typeof SixSidebar | typeof SixSidebarItem | typeof SixSidebarItemGroup | typeof SixSpinner | typeof SixStageIndicator | typeof SixSwitch | typeof SixTab | typeof SixTabGroup | typeof SixTabPanel | typeof SixTag | typeof SixTextarea | typeof SixTile | typeof SixTimepicker | typeof SixTooltip)[];
1374
1393
 
1375
1394
  declare class AlertService {
1376
1395
  private ngZone;
@@ -1382,4 +1401,4 @@ declare class AlertService {
1382
1401
  static ɵprov: i0.ɵɵInjectableDeclaration<AlertService>;
1383
1402
  }
1384
1403
 
1385
- export { ActiveSidebarDirective, ActiveSidebarItemDirective, ActiveSidebarItemGroupDirective, AlertService, AllowedDatesValidator, AllowedDatesValidatorIso, CheckboxMultiSelectValueAccessor, CheckboxValueAccessor, DIRECTIVES, DateValueAccessor, DatepickerValueAccessor, MaxDateValidator, MaxDateValidatorIso, MaxValidator, MinDateValidator, MinDateValidatorIso, MinValidator, NumericValueAccessor, RadioValueAccessor, RangeValueAccessor, SelectValueAccessor, SixAlert, SixAvatar, SixBadge, SixBreadcrumbs, SixBreadcrumbsItem, SixButton, SixCard, SixCheckbox, SixCheckboxGroupDirective, SixDate, SixDatepicker, SixDetails, SixDialog, SixDrawer, SixDropdown, SixError, SixErrorPage, SixFileList, SixFileListItem, SixFileUpload, SixFooter, SixFormDirective, SixFormUtilDirective, SixGroupLabel, SixHeader, SixHeaderDropdownItem, SixHeaderItem, SixHeaderMenuButton, SixIcon, SixIconButton, SixInput, SixItemPicker, SixLanguageSwitcher, SixLayoutGrid, SixLogo, SixMainContainer, SixMenu, SixMenuDivider, SixMenuItem, SixMenuLabel, SixPicto, SixProgressBar, SixProgressRing, SixRadio, SixRange, SixRating, SixRoot, SixRouterLinkDirective, SixSearchField, SixSelect, SixSidebar, SixSidebarItem, SixSidebarItemGroup, SixSpinner, SixStageIndicator, SixSwitch, SixTab, SixTabGroup, SixTabPanel, SixTag, SixTextarea, SixTile, SixTimepicker, SixTooltip, SixUiLibraryValidators, SwitchValueAccessor, TextValueAccessor, TimepickerValueAccessor, UiLibraryAngularModule, ValidationMessagesService, ValueAccessor };
1404
+ export { ActiveSidebarDirective, ActiveSidebarItemDirective, ActiveSidebarItemGroupDirective, AlertService, AllowedDatesValidator, AllowedDatesValidatorIso, CheckboxMultiSelectValueAccessor, CheckboxValueAccessor, DIRECTIVES, DateValueAccessor, DatepickerValueAccessor, MaxDateValidator, MaxDateValidatorIso, MaxValidator, MinDateValidator, MinDateValidatorIso, MinValidator, NumericValueAccessor, RadioValueAccessor, RangeValueAccessor, SelectValueAccessor, SixAlert, SixAvatar, SixBadge, SixBreadcrumbs, SixBreadcrumbsItem, SixButton, SixCard, SixCheckbox, SixCheckboxGroupDirective, SixDate, SixDatepicker, SixDetails, SixDialog, SixDrawer, SixDropdown, SixError, SixErrorPage, SixFileList, SixFileListItem, SixFileUpload, SixFooter, SixFormDirective, SixFormUtilDirective, SixGroupLabel, SixHeader, SixHeaderDropdownItem, SixHeaderItem, SixHeaderMenuButton, SixIcon, SixIconButton, SixInput, SixItemPicker, SixLanguageSwitcher, SixLayoutGrid, SixLogo, SixMainContainer, SixMenu, SixMenuDivider, SixMenuItem, SixMenuLabel, SixPaginator, SixPicto, SixProgressBar, SixProgressRing, SixRadio, SixRange, SixRating, SixRoot, SixRouterLinkDirective, SixSearchField, SixSelect, SixSidebar, SixSidebarItem, SixSidebarItemGroup, SixSpinner, SixStageIndicator, SixSwitch, SixTab, SixTabGroup, SixTabPanel, SixTag, SixTextarea, SixTile, SixTimepicker, SixTooltip, SixUiLibraryValidators, SwitchValueAccessor, TextValueAccessor, TimepickerValueAccessor, UiLibraryAngularModule, ValidationMessagesService, ValueAccessor };