@six-group/ui-library-angular 0.0.0-insider.ad9373a → 0.0.0-insider.b13c699
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/esm2022/lib/control-value-accessors/value-accessor.mjs +2 -2
- package/esm2022/lib/link/six-router-link.directive.mjs +8 -3
- package/esm2022/lib/services/alert.service.mjs +21 -0
- package/esm2022/lib/stencil-generated/components.mjs +111 -42
- package/esm2022/lib/stencil-generated/index.mjs +5 -2
- package/esm2022/lib/ui-library-angular.module.mjs +2 -2
- package/esm2022/public-api.mjs +2 -1
- package/fesm2022/six-group-ui-library-angular.mjs +145 -50
- package/fesm2022/six-group-ui-library-angular.mjs.map +1 -1
- package/lib/link/six-router-link.directive.d.ts +1 -1
- package/lib/services/alert.service.d.ts +11 -0
- package/lib/stencil-generated/components.d.ts +47 -25
- package/lib/stencil-generated/index.d.ts +1 -1
- package/lib/ui-library-angular.module.d.ts +1 -1
- package/package.json +2 -2
- package/public-api.d.ts +1 -0
|
@@ -22,5 +22,5 @@ export declare class SixRouterLinkDirective implements OnInit, OnChanges {
|
|
|
22
22
|
ngOnChanges(): void;
|
|
23
23
|
private updateTargetUrlAndHref;
|
|
24
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<SixRouterLinkDirective, [null, null, null, null, { optional: true; }]>;
|
|
25
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<SixRouterLinkDirective, "six-sidebar-item[routerLink],six-sidebar-item-group[routerLink],six-button[routerLink]", never, { "routerLink": { "alias": "routerLink"; "required": false; }; "queryParams": { "alias": "queryParams"; "required": false; }; "fragment": { "alias": "fragment"; "required": false; }; "queryParamsHandling": { "alias": "queryParamsHandling"; "required": false; }; "relativeTo": { "alias": "relativeTo"; "required": false; }; }, {}, never, never, false, never>;
|
|
25
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<SixRouterLinkDirective, "six-sidebar-item[routerLink],six-sidebar-item-group[routerLink],six-button[routerLink],six-icon-button[routerLink]", never, { "routerLink": { "alias": "routerLink"; "required": false; }; "queryParams": { "alias": "queryParams"; "required": false; }; "fragment": { "alias": "fragment"; "required": false; }; "queryParamsHandling": { "alias": "queryParamsHandling"; "required": false; }; "relativeTo": { "alias": "relativeTo"; "required": false; }; }, {}, never, never, false, never>;
|
|
26
26
|
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { AlertType } from '@six-group/ui-library';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class AlertService {
|
|
4
|
+
private ngZone;
|
|
5
|
+
/**
|
|
6
|
+
* Displays an alert as a toast notification.
|
|
7
|
+
*/
|
|
8
|
+
showAlert(message: string, alertType?: AlertType, duration?: number, iconName?: string): void;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AlertService, never>;
|
|
10
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AlertService>;
|
|
11
|
+
}
|
|
@@ -26,7 +26,6 @@ import type { SixLanguageSwitcherChangePayload as ISixLanguageSwitcherSixLanguag
|
|
|
26
26
|
import type { SixMenuItemSelectedPayload as ISixMenuSixMenuItemSelectedPayload } from '@six-group/ui-library';
|
|
27
27
|
import type { EmptyPayload as ISixRadioEmptyPayload } from '@six-group/ui-library';
|
|
28
28
|
import type { EmptyPayload as ISixRangeEmptyPayload } from '@six-group/ui-library';
|
|
29
|
-
import type { SixRootCollapsedPayload as ISixRootSixRootCollapsedPayload } from '@six-group/ui-library';
|
|
30
29
|
import type { SixSearchFieldChangePayload as ISixSearchFieldSixSearchFieldChangePayload } from '@six-group/ui-library';
|
|
31
30
|
import type { SixSelectChangePayload as ISixSelectSixSelectChangePayload } from '@six-group/ui-library';
|
|
32
31
|
import type { EmptyPayload as ISixSelectEmptyPayload } from '@six-group/ui-library';
|
|
@@ -42,15 +41,6 @@ import type { SixTimepickerChange as ISixTimepickerSixTimepickerChange } from '@
|
|
|
42
41
|
import type { EmptyPayload as ISixTimepickerEmptyPayload } from '@six-group/ui-library';
|
|
43
42
|
import type { EmptyPayload as ISixTooltipEmptyPayload } from '@six-group/ui-library';
|
|
44
43
|
import * as i0 from "@angular/core";
|
|
45
|
-
export declare class SetAttributes {
|
|
46
|
-
protected z: NgZone;
|
|
47
|
-
protected el: HTMLElement;
|
|
48
|
-
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
49
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SetAttributes, never>;
|
|
50
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SetAttributes, "set-attributes", never, { "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
51
|
-
}
|
|
52
|
-
export declare interface SetAttributes extends Components.SetAttributes {
|
|
53
|
-
}
|
|
54
44
|
export declare class SixAlert {
|
|
55
45
|
protected z: NgZone;
|
|
56
46
|
protected el: HTMLElement;
|
|
@@ -341,7 +331,7 @@ export declare class SixFileUpload {
|
|
|
341
331
|
protected el: HTMLElement;
|
|
342
332
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
343
333
|
static ɵfac: i0.ɵɵFactoryDeclaration<SixFileUpload, never>;
|
|
344
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SixFileUpload, "six-file-upload", never, { "accept": { "alias": "accept"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "label": { "alias": "label"; "required": false; }; "maxFileSize": { "alias": "maxFileSize"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
334
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SixFileUpload, "six-file-upload", never, { "accept": { "alias": "accept"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "errorText": { "alias": "errorText"; "required": false; }; "invalid": { "alias": "invalid"; "required": false; }; "label": { "alias": "label"; "required": false; }; "maxFileSize": { "alias": "maxFileSize"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "uploading": { "alias": "uploading"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
345
335
|
}
|
|
346
336
|
export declare interface SixFileUpload extends Components.SixFileUpload {
|
|
347
337
|
/**
|
|
@@ -376,34 +366,61 @@ export declare class SixHeader {
|
|
|
376
366
|
protected el: HTMLElement;
|
|
377
367
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
378
368
|
static ɵfac: i0.ɵɵFactoryDeclaration<SixHeader, never>;
|
|
379
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SixHeader, "six-header", never, { "clickableLogo": { "alias": "clickableLogo"; "required": false; }; "hideHamburgerMenu": { "alias": "hideHamburgerMenu"; "required": false; }; "openHamburgerMenu": { "alias": "openHamburgerMenu"; "required": false; }; "openSearch": { "alias": "openSearch"; "required": false; }; "shiftContent": { "alias": "shiftContent"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
369
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SixHeader, "six-header", never, { "clickableLogo": { "alias": "clickableLogo"; "required": false; }; "custom": { "alias": "custom"; "required": false; }; "hideHamburgerMenu": { "alias": "hideHamburgerMenu"; "required": false; }; "logo": { "alias": "logo"; "required": false; }; "openHamburgerMenu": { "alias": "openHamburgerMenu"; "required": false; }; "openSearch": { "alias": "openSearch"; "required": false; }; "shiftContent": { "alias": "shiftContent"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
380
370
|
}
|
|
381
371
|
export declare interface SixHeader extends Components.SixHeader {
|
|
382
372
|
/**
|
|
383
|
-
* Emitted when the name of the selected app is clicked.
|
|
373
|
+
* Emitted when the name of the selected app is clicked. @deprecated Use six-header `custom` property with `six-header-dropdown-item` and `six-header-menu-button` instead
|
|
384
374
|
*/
|
|
385
375
|
'six-header-app-name-clicked': EventEmitter<CustomEvent<ISixHeaderEmptyPayload>>;
|
|
386
376
|
/**
|
|
387
|
-
* Emitted when a menu item is in the app switcher menu is selected.
|
|
377
|
+
* Emitted when a menu item is in the app switcher menu is selected. @deprecated Use six-header `custom` property with `six-header-dropdown-item` and `six-header-menu-button` instead
|
|
388
378
|
*/
|
|
389
379
|
'six-header-app-switcher-select': EventEmitter<CustomEvent<ISixHeaderSixHeaderAppSwitcherSelectPayload>>;
|
|
390
380
|
/**
|
|
391
|
-
* Emitted when a menu item is in the profile menu is selected.
|
|
381
|
+
* Emitted when a menu item is in the profile menu is selected. @deprecated Use six-header `custom` property with `six-header-dropdown-item` and `six-avatar` instead
|
|
392
382
|
*/
|
|
393
383
|
'six-header-profile-select': EventEmitter<CustomEvent<ISixHeaderSixHeaderProfileSelectPayload>>;
|
|
394
384
|
/**
|
|
395
|
-
* Emitted when the hamburger menu is clicked.
|
|
385
|
+
* Emitted when the hamburger menu is clicked. @deprecated Use six-header `custom` property instead
|
|
396
386
|
*/
|
|
397
387
|
'six-header-hamburger-menu-clicked': EventEmitter<CustomEvent<ISixHeaderEmptyPayload>>;
|
|
398
388
|
/**
|
|
399
|
-
* Emitted when the header logo is clicked.
|
|
389
|
+
* Emitted when the header logo is clicked. @deprecated Use six-header `custom` property instead
|
|
400
390
|
*/
|
|
401
391
|
'six-header-logo-clicked': EventEmitter<CustomEvent<ISixHeaderEmptyPayload>>;
|
|
402
392
|
/**
|
|
403
|
-
* Emitted when search field is toggled.
|
|
393
|
+
* Emitted when search field is toggled. @deprecated Use six-header `custom` property instead
|
|
404
394
|
*/
|
|
405
395
|
'six-header-search-field-toggle': EventEmitter<CustomEvent<ISixHeaderSixHeaderSearchFieldToggle>>;
|
|
406
396
|
}
|
|
397
|
+
export declare class SixHeaderDropdownItem {
|
|
398
|
+
protected z: NgZone;
|
|
399
|
+
protected el: HTMLElement;
|
|
400
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
401
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SixHeaderDropdownItem, never>;
|
|
402
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SixHeaderDropdownItem, "six-header-dropdown-item", never, {}, {}, never, ["*"], false, never>;
|
|
403
|
+
}
|
|
404
|
+
export declare interface SixHeaderDropdownItem extends Components.SixHeaderDropdownItem {
|
|
405
|
+
}
|
|
406
|
+
export declare class SixHeaderItem {
|
|
407
|
+
protected z: NgZone;
|
|
408
|
+
protected el: HTMLElement;
|
|
409
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
410
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SixHeaderItem, never>;
|
|
411
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SixHeaderItem, "six-header-item", never, { "active": { "alias": "active"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
412
|
+
}
|
|
413
|
+
export declare interface SixHeaderItem extends Components.SixHeaderItem {
|
|
414
|
+
}
|
|
415
|
+
export declare class SixHeaderMenuButton {
|
|
416
|
+
protected z: NgZone;
|
|
417
|
+
protected el: HTMLElement;
|
|
418
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
419
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SixHeaderMenuButton, never>;
|
|
420
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SixHeaderMenuButton, "six-header-menu-button", never, { "icon": { "alias": "icon"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
421
|
+
}
|
|
422
|
+
export declare interface SixHeaderMenuButton extends Components.SixHeaderMenuButton {
|
|
423
|
+
}
|
|
407
424
|
export declare class SixIcon {
|
|
408
425
|
protected z: NgZone;
|
|
409
426
|
protected el: HTMLElement;
|
|
@@ -418,7 +435,7 @@ export declare class SixIconButton {
|
|
|
418
435
|
protected el: HTMLElement;
|
|
419
436
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
420
437
|
static ɵfac: i0.ɵɵFactoryDeclaration<SixIconButton, never>;
|
|
421
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SixIconButton, "six-icon-button", never, { "disabled": { "alias": "disabled"; "required": false; }; "html": { "alias": "html"; "required": false; }; "label": { "alias": "label"; "required": false; }; "name": { "alias": "name"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
438
|
+
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>;
|
|
422
439
|
}
|
|
423
440
|
export declare interface SixIconButton extends Components.SixIconButton {
|
|
424
441
|
}
|
|
@@ -490,6 +507,15 @@ export declare class SixLayoutGrid {
|
|
|
490
507
|
}
|
|
491
508
|
export declare interface SixLayoutGrid extends Components.SixLayoutGrid {
|
|
492
509
|
}
|
|
510
|
+
export declare class SixLogo {
|
|
511
|
+
protected z: NgZone;
|
|
512
|
+
protected el: HTMLElement;
|
|
513
|
+
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
514
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SixLogo, never>;
|
|
515
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SixLogo, "six-logo", never, { "brand": { "alias": "brand"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
516
|
+
}
|
|
517
|
+
export declare interface SixLogo extends Components.SixLogo {
|
|
518
|
+
}
|
|
493
519
|
export declare class SixMainContainer {
|
|
494
520
|
protected z: NgZone;
|
|
495
521
|
protected el: HTMLElement;
|
|
@@ -613,13 +639,9 @@ export declare class SixRoot {
|
|
|
613
639
|
protected el: HTMLElement;
|
|
614
640
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
615
641
|
static ɵfac: i0.ɵɵFactoryDeclaration<SixRoot, never>;
|
|
616
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SixRoot, "six-root", never, { "
|
|
642
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SixRoot, "six-root", never, { "padded": { "alias": "padded"; "required": false; }; "stage": { "alias": "stage"; "required": false; }; "version": { "alias": "version"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
617
643
|
}
|
|
618
644
|
export declare interface SixRoot extends Components.SixRoot {
|
|
619
|
-
/**
|
|
620
|
-
* Emitted when display size is updated.
|
|
621
|
-
*/
|
|
622
|
-
'six-root-collapsed': EventEmitter<CustomEvent<ISixRootSixRootCollapsedPayload>>;
|
|
623
645
|
}
|
|
624
646
|
export declare class SixSearchField {
|
|
625
647
|
protected z: NgZone;
|
|
@@ -708,7 +730,7 @@ export declare class SixSpinner {
|
|
|
708
730
|
protected el: HTMLElement;
|
|
709
731
|
constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
|
|
710
732
|
static ɵfac: i0.ɵɵFactoryDeclaration<SixSpinner, never>;
|
|
711
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SixSpinner, "six-spinner", never, { "six": { "alias": "six"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
733
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SixSpinner, "six-spinner", never, { "logo": { "alias": "logo"; "required": false; }; "six": { "alias": "six"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
712
734
|
}
|
|
713
735
|
export declare interface SixSpinner extends Components.SixSpinner {
|
|
714
736
|
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import * as d from './components';
|
|
2
|
-
export declare const DIRECTIVES: (typeof d.
|
|
2
|
+
export declare const DIRECTIVES: (typeof d.SixAlert | typeof d.SixAvatar | typeof d.SixBadge | typeof d.SixButton | typeof d.SixCard | typeof d.SixCheckbox | typeof d.SixDatepicker | typeof d.SixDetails | typeof d.SixDialog | typeof d.SixDrawer | typeof d.SixDropdown | typeof d.SixError | typeof d.SixErrorPage | typeof d.SixFileList | typeof d.SixFileListItem | typeof d.SixFileUpload | typeof d.SixFooter | typeof d.SixGroupLabel | typeof d.SixHeader | typeof d.SixHeaderDropdownItem | typeof d.SixHeaderItem | typeof d.SixHeaderMenuButton | typeof d.SixIcon | typeof d.SixIconButton | typeof d.SixInput | typeof d.SixItemPicker | typeof d.SixLanguageSwitcher | typeof d.SixLayoutGrid | typeof d.SixLogo | typeof d.SixMainContainer | typeof d.SixMenu | typeof d.SixMenuDivider | typeof d.SixMenuItem | typeof d.SixMenuLabel | typeof d.SixPicto | typeof d.SixProgressBar | typeof d.SixProgressRing | typeof d.SixRadio | typeof d.SixRange | typeof d.SixRoot | typeof d.SixSearchField | typeof d.SixSelect | typeof d.SixSidebar | typeof d.SixSidebarItem | typeof d.SixSidebarItemGroup | typeof d.SixSpinner | typeof d.SixStageIndicator | typeof d.SixSwitch | typeof d.SixTab | typeof d.SixTabGroup | typeof d.SixTabPanel | typeof d.SixTag | typeof d.SixTextarea | typeof d.SixTile | typeof d.SixTimepicker | typeof d.SixTooltip)[];
|
|
@@ -17,6 +17,6 @@ import * as i13 from "./link/six-router-link.directive";
|
|
|
17
17
|
export declare class UiLibraryAngularModule {
|
|
18
18
|
static forRoot<T extends ValidationMessagesService>(customValidationMessagesService?: Type<T>): ModuleWithProviders<UiLibraryAngularModule>;
|
|
19
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<UiLibraryAngularModule, never>;
|
|
20
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<UiLibraryAngularModule, [typeof i1.
|
|
20
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<UiLibraryAngularModule, [typeof i1.SixAlert, typeof i1.SixAvatar, typeof i1.SixBadge, typeof i1.SixButton, typeof i1.SixCard, typeof i1.SixCheckbox, typeof i1.SixDatepicker, typeof i1.SixDetails, typeof i1.SixDialog, typeof i1.SixDrawer, typeof i1.SixDropdown, typeof i1.SixError, typeof i1.SixErrorPage, typeof i1.SixFileList, typeof i1.SixFileListItem, typeof i1.SixFileUpload, typeof i1.SixFooter, typeof i1.SixGroupLabel, typeof i1.SixHeader, typeof i1.SixHeaderDropdownItem, typeof i1.SixHeaderItem, typeof i1.SixHeaderMenuButton, typeof i1.SixIcon, typeof i1.SixIconButton, typeof i1.SixInput, typeof i1.SixItemPicker, typeof i1.SixLanguageSwitcher, typeof i1.SixLayoutGrid, typeof i1.SixLogo, typeof i1.SixMainContainer, typeof i1.SixMenu, typeof i1.SixMenuDivider, typeof i1.SixMenuItem, typeof i1.SixMenuLabel, typeof i1.SixPicto, typeof i1.SixProgressBar, typeof i1.SixProgressRing, typeof i1.SixRadio, typeof i1.SixRange, typeof i1.SixRoot, typeof i1.SixSearchField, typeof i1.SixSelect, typeof i1.SixSidebar, typeof i1.SixSidebarItem, typeof i1.SixSidebarItemGroup, typeof i1.SixSpinner, typeof i1.SixStageIndicator, typeof i1.SixSwitch, typeof i1.SixTab, typeof i1.SixTabGroup, typeof i1.SixTabPanel, typeof i1.SixTag, typeof i1.SixTextarea, typeof i1.SixTile, typeof i1.SixTimepicker, typeof i1.SixTooltip, typeof i2.TextValueAccessor, typeof i3.NumericValueAccessor, typeof i4.RadioValueAccessor, typeof i5.DatepickerValueAccessor, typeof i6.TimepickerValueAccessor, typeof i7.SelectValueAccessor, typeof i8.CheckboxValueAccessor, typeof i9.SwitchValueAccessor, typeof i10.RangeValueAccessor, typeof i11.MinValidator, typeof i11.MaxValidator, typeof i11.MinDateValidator, typeof i11.MaxDateValidator, typeof i11.AllowedDatesValidator, typeof i12.SixFormDirective, typeof i12.SixFormUtilDirective, typeof i13.SixRouterLinkDirective], never, [typeof i1.SixAlert, typeof i1.SixAvatar, typeof i1.SixBadge, typeof i1.SixButton, typeof i1.SixCard, typeof i1.SixCheckbox, typeof i1.SixDatepicker, typeof i1.SixDetails, typeof i1.SixDialog, typeof i1.SixDrawer, typeof i1.SixDropdown, typeof i1.SixError, typeof i1.SixErrorPage, typeof i1.SixFileList, typeof i1.SixFileListItem, typeof i1.SixFileUpload, typeof i1.SixFooter, typeof i1.SixGroupLabel, typeof i1.SixHeader, typeof i1.SixHeaderDropdownItem, typeof i1.SixHeaderItem, typeof i1.SixHeaderMenuButton, typeof i1.SixIcon, typeof i1.SixIconButton, typeof i1.SixInput, typeof i1.SixItemPicker, typeof i1.SixLanguageSwitcher, typeof i1.SixLayoutGrid, typeof i1.SixLogo, typeof i1.SixMainContainer, typeof i1.SixMenu, typeof i1.SixMenuDivider, typeof i1.SixMenuItem, typeof i1.SixMenuLabel, typeof i1.SixPicto, typeof i1.SixProgressBar, typeof i1.SixProgressRing, typeof i1.SixRadio, typeof i1.SixRange, typeof i1.SixRoot, typeof i1.SixSearchField, typeof i1.SixSelect, typeof i1.SixSidebar, typeof i1.SixSidebarItem, typeof i1.SixSidebarItemGroup, typeof i1.SixSpinner, typeof i1.SixStageIndicator, typeof i1.SixSwitch, typeof i1.SixTab, typeof i1.SixTabGroup, typeof i1.SixTabPanel, typeof i1.SixTag, typeof i1.SixTextarea, typeof i1.SixTile, typeof i1.SixTimepicker, typeof i1.SixTooltip, typeof i2.TextValueAccessor, typeof i3.NumericValueAccessor, typeof i4.RadioValueAccessor, typeof i5.DatepickerValueAccessor, typeof i6.TimepickerValueAccessor, typeof i7.SelectValueAccessor, typeof i8.CheckboxValueAccessor, typeof i9.SwitchValueAccessor, typeof i10.RangeValueAccessor, typeof i11.MinValidator, typeof i11.MaxValidator, typeof i11.MinDateValidator, typeof i11.MaxDateValidator, typeof i11.AllowedDatesValidator, typeof i12.SixFormDirective, typeof i12.SixFormUtilDirective, typeof i13.SixRouterLinkDirective]>;
|
|
21
21
|
static ɵinj: i0.ɵɵInjectorDeclaration<UiLibraryAngularModule>;
|
|
22
22
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@six-group/ui-library-angular",
|
|
3
|
-
"version": "0.0.0-insider.
|
|
3
|
+
"version": "0.0.0-insider.b13c699",
|
|
4
4
|
"description": "Angular wrapper components for @six-group/ui-library",
|
|
5
5
|
"private": false,
|
|
6
6
|
"peerDependencies": {
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
},
|
|
16
16
|
"sideEffects": false,
|
|
17
17
|
"engines": {
|
|
18
|
-
"node": ">=
|
|
18
|
+
"node": ">=20"
|
|
19
19
|
},
|
|
20
20
|
"module": "fesm2022/six-group-ui-library-angular.mjs",
|
|
21
21
|
"typings": "index.d.ts",
|
package/public-api.d.ts
CHANGED
|
@@ -15,3 +15,4 @@ export * from './lib/validators/six-ui-library-validators';
|
|
|
15
15
|
export * from './lib/form/six-form.directive';
|
|
16
16
|
export * from './lib/link/six-router-link.directive';
|
|
17
17
|
export * from './lib/services/validation-messages.service';
|
|
18
|
+
export * from './lib/services/alert.service';
|