@six-group/ui-library-angular 5.5.0 → 5.5.1-rc.2

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.5.0",
3
+ "version": "5.5.1-rc.2",
4
4
  "description": "Angular wrapper components for @six-group/ui-library",
5
5
  "private": false,
6
6
  "packageManager": "npm@11.7.0",
@@ -1,5 +1,5 @@
1
1
  import * as i0 from '@angular/core';
2
- import { NgZone, EventEmitter, ChangeDetectorRef, ElementRef, AfterViewInit, OnDestroy, Injector, OnInit, OnChanges, Renderer2, Type, ModuleWithProviders } from '@angular/core';
2
+ import { InjectionToken, NgZone, EventEmitter, ChangeDetectorRef, ElementRef, AfterViewInit, OnDestroy, Injector, OnInit, OnChanges, Renderer2, Type, ModuleWithProviders } from '@angular/core';
3
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';
@@ -16,6 +16,21 @@ interface UiLibraryConfig {
16
16
  showAsteriskOnRequiredValidator?: boolean;
17
17
  disableValidationService?: boolean;
18
18
  }
19
+ declare const DEFAULT_UI_LIBRARY_CONFIG: UiLibraryConfig;
20
+ /**
21
+ * Injection token holding the {@link UiLibraryConfig}.
22
+ *
23
+ * The token provides {@link DEFAULT_UI_LIBRARY_CONFIG} by default, so that components and
24
+ * directives of this library can be used without calling `UiLibraryAngularModule.forRoot()`
25
+ * (e.g. in unit tests). Provide the token explicitly to override single options:
26
+ *
27
+ * ```ts
28
+ * TestBed.configureTestingModule({
29
+ * providers: [{ provide: UI_LIBRARY_CONFIG, useValue: { showAsteriskOnRequiredValidator: true } }],
30
+ * });
31
+ * ```
32
+ */
33
+ declare const UI_LIBRARY_CONFIG: InjectionToken<UiLibraryConfig>;
19
34
 
20
35
  declare class SixAlert {
21
36
  protected z: NgZone;
@@ -1401,4 +1416,5 @@ declare class AlertService {
1401
1416
  static ɵprov: i0.ɵɵInjectableDeclaration<AlertService>;
1402
1417
  }
1403
1418
 
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 };
1419
+ export { ActiveSidebarDirective, ActiveSidebarItemDirective, ActiveSidebarItemGroupDirective, AlertService, AllowedDatesValidator, AllowedDatesValidatorIso, CheckboxMultiSelectValueAccessor, CheckboxValueAccessor, DEFAULT_UI_LIBRARY_CONFIG, 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, UI_LIBRARY_CONFIG, UiLibraryAngularModule, ValidationMessagesService, ValueAccessor };
1420
+ export type { UiLibraryConfig };