@wizishop/angular-components 14.1.2 → 14.1.4

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.
Files changed (83) hide show
  1. package/angular-components.scss +1669 -253
  2. package/esm2020/lib/components/block-with-checkbox/block-with-checkbox.component.mjs +47 -0
  3. package/esm2020/lib/components/breadcrumbs/breadcrumbs.component.mjs +27 -0
  4. package/esm2020/lib/components/breadcrumbs/breadcrumbs.dto.mjs +2 -0
  5. package/esm2020/lib/components/button/button.component.mjs +22 -3
  6. package/esm2020/lib/components/card-price/card-price.component.mjs +66 -0
  7. package/esm2020/lib/components/confirm-delete/confirm-delete.component.mjs +64 -0
  8. package/esm2020/lib/components/content-with-buttons/content-with-buttons.component.mjs +69 -0
  9. package/esm2020/lib/components/draganddrop-list/draganddrop-list.component.mjs +61 -0
  10. package/esm2020/lib/components/expansion/accordion/accordion-item.interface.mjs +2 -0
  11. package/esm2020/lib/components/expansion/accordion/accordion-item.token.mjs +3 -0
  12. package/esm2020/lib/components/expansion/accordion/accordion.component.mjs +74 -0
  13. package/esm2020/lib/components/expansion/expansion-panel/expansion-panel-base.mjs +83 -0
  14. package/esm2020/lib/components/expansion/expansion-panel/expansion-panel.component.mjs +29 -0
  15. package/esm2020/lib/components/expansion/expansion-panel/expansion-panel.directive.mjs +20 -0
  16. package/esm2020/lib/components/expansion/expansion-panel-header/expansion-panel-header-base.mjs +44 -0
  17. package/esm2020/lib/components/expansion/expansion-panel-header/expansion-panel-header.component.mjs +27 -0
  18. package/esm2020/lib/components/expansion/expansion-panel-header/expansion-panel-header.directive.mjs +20 -0
  19. package/esm2020/lib/components/expansion/expansion-panel-header/expansion-panel-header.interface.mjs +2 -0
  20. package/esm2020/lib/components/expansion/expansion-panel-header/expansion-panel-header.token.mjs +3 -0
  21. package/esm2020/lib/components/expansion/expansion.module.mjs +48 -0
  22. package/esm2020/lib/components/free-popin/free-popin.component.mjs +1 -1
  23. package/esm2020/lib/components/header-page/header-page.component.mjs +6 -4
  24. package/esm2020/lib/components/hn/h1/h1.component.mjs +10 -5
  25. package/esm2020/lib/components/inputs/input/input.component.mjs +10 -3
  26. package/esm2020/lib/components/link/link.component.mjs +6 -4
  27. package/esm2020/lib/components/mosaic/mosaic.component.mjs +81 -0
  28. package/esm2020/lib/components/popin/popin.component.mjs +3 -3
  29. package/esm2020/lib/components/selected-list/selected-list.component.mjs +1 -1
  30. package/esm2020/lib/components/selects/legacy-select/select.component.mjs +133 -0
  31. package/esm2020/lib/components/selects/select-in-text/select-in-text.component.mjs +5 -4
  32. package/esm2020/lib/components/selects/select-test/select.component.mjs +1 -1
  33. package/esm2020/lib/components/selects/select-test/value-change.service.mjs +3 -3
  34. package/esm2020/lib/components/shared-components.module.mjs +75 -9
  35. package/esm2020/lib/components/switch/switch.component.mjs +40 -11
  36. package/esm2020/lib/components/text-area/text-area.component.mjs +19 -5
  37. package/esm2020/lib/components/token-check/token-check.component.mjs +21 -0
  38. package/esm2020/lib/components/wrapper-multiple-block/wrapper-multiple-block.component.mjs +12 -0
  39. package/esm2020/lib/components/wrapper-sidebar/wrapper-sidebar.component.mjs +27 -0
  40. package/esm2020/public-api.mjs +22 -2
  41. package/fesm2015/wizishop-angular-components.mjs +938 -55
  42. package/fesm2015/wizishop-angular-components.mjs.map +1 -1
  43. package/fesm2020/wizishop-angular-components.mjs +936 -55
  44. package/fesm2020/wizishop-angular-components.mjs.map +1 -1
  45. package/lib/components/block-with-checkbox/block-with-checkbox.component.d.ts +17 -0
  46. package/lib/components/breadcrumbs/breadcrumbs.component.d.ts +13 -0
  47. package/lib/components/breadcrumbs/breadcrumbs.dto.d.ts +5 -0
  48. package/lib/components/button/button.component.d.ts +8 -1
  49. package/lib/components/card-price/card-price.component.d.ts +27 -0
  50. package/lib/components/confirm-delete/confirm-delete.component.d.ts +21 -0
  51. package/lib/components/content-with-buttons/content-with-buttons.component.d.ts +26 -0
  52. package/lib/components/draganddrop-list/draganddrop-list.component.d.ts +20 -0
  53. package/lib/components/expansion/accordion/accordion-item.interface.d.ts +10 -0
  54. package/lib/components/expansion/accordion/accordion-item.token.d.ts +3 -0
  55. package/lib/components/expansion/accordion/accordion.component.d.ts +19 -0
  56. package/lib/components/expansion/expansion-panel/expansion-panel-base.d.ts +26 -0
  57. package/lib/components/expansion/expansion-panel/expansion-panel.component.d.ts +11 -0
  58. package/lib/components/expansion/expansion-panel/expansion-panel.directive.d.ts +9 -0
  59. package/lib/components/expansion/expansion-panel-header/expansion-panel-header-base.d.ts +20 -0
  60. package/lib/components/expansion/expansion-panel-header/expansion-panel-header.component.d.ts +11 -0
  61. package/lib/components/expansion/expansion-panel-header/expansion-panel-header.directive.d.ts +9 -0
  62. package/lib/components/expansion/expansion-panel-header/expansion-panel-header.interface.d.ts +8 -0
  63. package/lib/components/expansion/expansion-panel-header/expansion-panel-header.token.d.ts +3 -0
  64. package/lib/components/expansion/expansion.module.d.ts +18 -0
  65. package/lib/components/header-page/header-page.component.d.ts +3 -4
  66. package/lib/components/hn/h1/h1.component.d.ts +4 -4
  67. package/lib/components/inputs/input/input.component.d.ts +4 -1
  68. package/lib/components/link/link.component.d.ts +4 -4
  69. package/lib/components/mosaic/mosaic.component.d.ts +28 -0
  70. package/lib/components/selects/{select → legacy-select}/select.component.d.ts +2 -1
  71. package/lib/components/selects/select-test/select.component.d.ts +2 -2
  72. package/lib/components/selects/select-test/value-change.service.d.ts +2 -2
  73. package/lib/components/shared-components.module.d.ts +55 -35
  74. package/lib/components/switch/switch.component.d.ts +13 -3
  75. package/lib/components/text-area/text-area.component.d.ts +8 -3
  76. package/lib/components/token-check/token-check.component.d.ts +10 -0
  77. package/lib/components/wrapper-multiple-block/wrapper-multiple-block.component.d.ts +6 -0
  78. package/lib/components/wrapper-sidebar/wrapper-sidebar.component.d.ts +11 -0
  79. package/package.json +1 -1
  80. package/public-api.d.ts +20 -1
  81. package/wizishop-angular-components-14.1.4.tgz +0 -0
  82. package/esm2020/lib/components/selects/select/select.component.mjs +0 -130
  83. package/wizishop-angular-components-14.1.2.tgz +0 -0
@@ -0,0 +1,17 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class BlockWithCheckboxComponent implements OnInit {
4
+ selected: boolean;
5
+ disabled: boolean;
6
+ checkboxAction: EventEmitter<boolean>;
7
+ randomLabelName: string;
8
+ nameRadio: string;
9
+ isFirst: boolean;
10
+ opacity: string;
11
+ constructor();
12
+ ngOnInit(): void;
13
+ eventSelected(event: any): void;
14
+ removeFirstClass(): void;
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<BlockWithCheckboxComponent, never>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<BlockWithCheckboxComponent, "wac-block-with-checkbox", never, { "selected": "selected"; "disabled": "disabled"; "nameRadio": "nameRadio"; "isFirst": "isFirst"; "opacity": "opacity"; }, { "checkboxAction": "checkboxAction"; }, never, ["*"], false>;
17
+ }
@@ -0,0 +1,13 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { BreadcrumbsDto } from './breadcrumbs.dto';
3
+ import * as i0 from "@angular/core";
4
+ export declare class BreadcrumbsComponent {
5
+ breadcrumbs: BreadcrumbsDto[];
6
+ noResponsive: boolean;
7
+ index: number;
8
+ indexChange: EventEmitter<any>;
9
+ constructor();
10
+ valueChanged(i: any): void;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbsComponent, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<BreadcrumbsComponent, "wac-breadcrumbs", never, { "breadcrumbs": "breadcrumbs"; "noResponsive": "noResponsive"; }, { "indexChange": "indexChange"; }, never, never, false>;
13
+ }
@@ -0,0 +1,5 @@
1
+ export interface BreadcrumbsDto {
2
+ name: string;
3
+ current: boolean;
4
+ valid: boolean;
5
+ }
@@ -5,6 +5,7 @@ export declare class ButtonComponent implements OnInit, AfterViewInit {
5
5
  label: string;
6
6
  icon: string;
7
7
  iconNext: string;
8
+ textcolor: any;
8
9
  widthAuto: boolean;
9
10
  contentHorizontalPosition: 'left' | 'center' | 'right';
10
11
  iconFontSize: number;
@@ -17,6 +18,12 @@ export declare class ButtonComponent implements OnInit, AfterViewInit {
17
18
  animationText: string;
18
19
  confirmDelete: boolean;
19
20
  confirmDeleteText: string;
21
+ coin: number | string;
22
+ tooltip: string;
23
+ tooltipWidth: string;
24
+ noPadding: boolean;
25
+ tooltipPosition: 'top-center' | 'top-right' | 'top-left' | 'bottom-center' | 'bottom-right' | 'bottom-left' | 'left' | 'right';
26
+ tooltipOneline: boolean;
20
27
  confirmDeletePosition: string;
21
28
  click: EventEmitter<MouseEvent>;
22
29
  set isLoading(isLoading: boolean);
@@ -42,5 +49,5 @@ export declare class ButtonComponent implements OnInit, AfterViewInit {
42
49
  onButtonClick(event: any): void;
43
50
  ngAfterViewInit(): void;
44
51
  static ɵfac: i0.ɵɵFactoryDeclaration<ButtonComponent, never>;
45
- static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "wac-button", never, { "extraClasses": "extraClasses"; "label": "label"; "icon": "icon"; "iconNext": "iconNext"; "widthAuto": "widthAuto"; "contentHorizontalPosition": "contentHorizontalPosition"; "iconFontSize": "iconFontSize"; "hasLoader": "hasLoader"; "disabled": "disabled"; "whiteSpaceNowrap": "whiteSpaceNowrap"; "opacity": "opacity"; "animation": "animation"; "animationRight": "animationRight"; "animationText": "animationText"; "confirmDelete": "confirmDelete"; "confirmDeleteText": "confirmDeleteText"; "confirmDeletePosition": "confirmDeletePosition"; "isLoading": "isLoading"; }, { "click": "click"; "isLoadingChange": "isLoadingChange"; }, never, never, false>;
52
+ static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "wac-button", never, { "extraClasses": "extraClasses"; "label": "label"; "icon": "icon"; "iconNext": "iconNext"; "textcolor": "textcolor"; "widthAuto": "widthAuto"; "contentHorizontalPosition": "contentHorizontalPosition"; "iconFontSize": "iconFontSize"; "hasLoader": "hasLoader"; "disabled": "disabled"; "whiteSpaceNowrap": "whiteSpaceNowrap"; "opacity": "opacity"; "animation": "animation"; "animationRight": "animationRight"; "animationText": "animationText"; "confirmDelete": "confirmDelete"; "confirmDeleteText": "confirmDeleteText"; "coin": "coin"; "tooltip": "tooltip"; "tooltipWidth": "tooltipWidth"; "noPadding": "noPadding"; "tooltipPosition": "tooltipPosition"; "tooltipOneline": "tooltipOneline"; "confirmDeletePosition": "confirmDeletePosition"; "isLoading": "isLoading"; }, { "click": "click"; "isLoadingChange": "isLoadingChange"; }, never, never, false>;
46
53
  }
@@ -0,0 +1,27 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class CardPriceComponent {
4
+ amount: string;
5
+ title: string;
6
+ selected: boolean;
7
+ btnLabelSelected: string;
8
+ price: string | number;
9
+ currency: string;
10
+ priceWording: string;
11
+ subtitle: string;
12
+ btnLabel: string;
13
+ packageSubtitle: string;
14
+ linkPackageLabel: string;
15
+ disabled: boolean;
16
+ btnTextcolor: string;
17
+ extraClasses: string;
18
+ extraClassesSelected: string;
19
+ hideButton: boolean;
20
+ confirm: EventEmitter<any>;
21
+ cancel: EventEmitter<any>;
22
+ constructor();
23
+ triggerClick(): void;
24
+ removePackageTrigger(): void;
25
+ static ɵfac: i0.ɵɵFactoryDeclaration<CardPriceComponent, never>;
26
+ static ɵcmp: i0.ɵɵComponentDeclaration<CardPriceComponent, "wac-card-price", never, { "amount": "amount"; "title": "title"; "selected": "selected"; "btnLabelSelected": "btnLabelSelected"; "price": "price"; "currency": "currency"; "priceWording": "priceWording"; "subtitle": "subtitle"; "btnLabel": "btnLabel"; "packageSubtitle": "packageSubtitle"; "linkPackageLabel": "linkPackageLabel"; "disabled": "disabled"; "btnTextcolor": "btnTextcolor"; "extraClasses": "extraClasses"; "extraClassesSelected": "extraClassesSelected"; "hideButton": "hideButton"; }, { "confirm": "confirm"; "cancel": "cancel"; }, never, never, false>;
27
+ }
@@ -0,0 +1,21 @@
1
+ import { AfterViewInit, ElementRef, EventEmitter } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ConfirmDeleteComponent implements AfterViewInit {
4
+ open: boolean;
5
+ label: string;
6
+ labelCancel: string;
7
+ labelConfirm: string;
8
+ confirm: EventEmitter<boolean>;
9
+ backgroundColor: string;
10
+ borderRadius: string;
11
+ hideText: boolean;
12
+ container: ElementRef;
13
+ constructor();
14
+ eventCancel(event: any): void;
15
+ eventConfirm(event: any): void;
16
+ responsiveControl(size: any): void;
17
+ onResize(): void;
18
+ ngAfterViewInit(): void;
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<ConfirmDeleteComponent, never>;
20
+ static ɵcmp: i0.ɵɵComponentDeclaration<ConfirmDeleteComponent, "wac-confirm-delete", never, { "open": "open"; "label": "label"; "labelCancel": "labelCancel"; "labelConfirm": "labelConfirm"; "backgroundColor": "backgroundColor"; "borderRadius": "borderRadius"; }, { "confirm": "confirm"; }, never, never, false>;
21
+ }
@@ -0,0 +1,26 @@
1
+ import { AfterViewInit, EventEmitter, OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ContentWithButtonsComponent implements OnInit, AfterViewInit {
4
+ iconCopy: string;
5
+ iconTranslate: string;
6
+ tooltipCopy: string;
7
+ tooltipTranslate: string;
8
+ count: boolean;
9
+ countCharacterLabel: string;
10
+ countWordsLabel: string;
11
+ reportLabel: string;
12
+ copyAction: EventEmitter<boolean>;
13
+ reportAction: EventEmitter<boolean>;
14
+ translateAction: EventEmitter<boolean>;
15
+ countWords: number;
16
+ countIsReady: boolean;
17
+ countCharacter: number;
18
+ randomLabelName: string;
19
+ ngOnInit(): void;
20
+ ngAfterViewInit(): void;
21
+ eventCopy(): void;
22
+ eventTranslate(): void;
23
+ eventReport(): void;
24
+ static ɵfac: i0.ɵɵFactoryDeclaration<ContentWithButtonsComponent, never>;
25
+ static ɵcmp: i0.ɵɵComponentDeclaration<ContentWithButtonsComponent, "wac-content-with-buttons", never, { "iconCopy": "iconCopy"; "iconTranslate": "iconTranslate"; "tooltipCopy": "tooltipCopy"; "tooltipTranslate": "tooltipTranslate"; "count": "count"; "countCharacterLabel": "countCharacterLabel"; "countWordsLabel": "countWordsLabel"; "reportLabel": "reportLabel"; }, { "copyAction": "copyAction"; "reportAction": "reportAction"; "translateAction": "translateAction"; }, never, ["*"], false>;
26
+ }
@@ -0,0 +1,20 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { CdkDragDrop } from '@angular/cdk/drag-drop';
3
+ import * as i0 from "@angular/core";
4
+ export declare class DraganddropListComponent {
5
+ label: string;
6
+ items: Array<string>;
7
+ disabled: boolean;
8
+ max: number;
9
+ labelBtnAdd: string;
10
+ backgroundColor: string;
11
+ showTriggerSave: boolean;
12
+ itemsChange: EventEmitter<string[]>;
13
+ drop(event: CdkDragDrop<string[]>): void;
14
+ delete(index: any): void;
15
+ saveFieldEnd(index: any, event: any): void;
16
+ addField(): void;
17
+ saveNewField(event: any): void;
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<DraganddropListComponent, never>;
19
+ static ɵcmp: i0.ɵɵComponentDeclaration<DraganddropListComponent, "wac-draganddrop-list", never, { "label": "label"; "items": "items"; "disabled": "disabled"; "max": "max"; "labelBtnAdd": "labelBtnAdd"; "backgroundColor": "backgroundColor"; }, { "itemsChange": "itemsChange"; }, never, never, false>;
20
+ }
@@ -0,0 +1,10 @@
1
+ import { EventEmitter } from "@angular/core";
2
+ export interface AccordionItem {
3
+ disabled: boolean;
4
+ hideToggle: boolean;
5
+ isExpanded: boolean;
6
+ expandChange: EventEmitter<void>;
7
+ close(): void;
8
+ open(): void;
9
+ toggle(): void;
10
+ }
@@ -0,0 +1,3 @@
1
+ import { InjectionToken } from "@angular/core";
2
+ import { AccordionItem } from "./accordion-item.interface";
3
+ export declare const ACCORDION_ITEM: InjectionToken<AccordionItem>;
@@ -0,0 +1,19 @@
1
+ import { AfterViewInit, OnDestroy, QueryList } from '@angular/core';
2
+ import { AccordionItem } from './accordion-item.interface';
3
+ import * as i0 from "@angular/core";
4
+ export declare class AccordionComponent implements AfterViewInit, OnDestroy {
5
+ class: string;
6
+ expansionItems: QueryList<AccordionItem>;
7
+ keepOnlyOnePanelOpen: boolean;
8
+ private isDestroyed$;
9
+ private resetListeners$;
10
+ constructor();
11
+ openAll(): void;
12
+ closeAll(): void;
13
+ ngAfterViewInit(): void;
14
+ private panelExpansionChanges;
15
+ private keepOnlyOnePanelOpenHandler;
16
+ ngOnDestroy(): void;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<AccordionComponent, never>;
18
+ static ɵcmp: i0.ɵɵComponentDeclaration<AccordionComponent, "wac-accordion", never, { "keepOnlyOnePanelOpen": "keepOnlyOnePanelOpen"; }, {}, ["expansionItems"], ["*"], false>;
19
+ }
@@ -0,0 +1,26 @@
1
+ import { AfterViewInit, ChangeDetectorRef, EventEmitter } from '@angular/core';
2
+ import { AccordionItem } from '../accordion/accordion-item.interface';
3
+ import { ExpansionPanelHeader } from '../expansion-panel-header/expansion-panel-header.interface';
4
+ import * as i0 from "@angular/core";
5
+ export declare class ExpansionPanelBase implements AccordionItem, AfterViewInit {
6
+ protected changeDetectorRef: ChangeDetectorRef;
7
+ header: ExpansionPanelHeader;
8
+ set disabled(disabled: boolean);
9
+ get disabled(): boolean;
10
+ _disabled: boolean;
11
+ set hideToggle(hideToggle: boolean);
12
+ get hideToggle(): boolean;
13
+ _hideToggle: boolean;
14
+ set isExpanded(isExpanded: boolean);
15
+ get isExpanded(): boolean;
16
+ _isExpanded: boolean;
17
+ isExpandedChange: EventEmitter<boolean>;
18
+ expandChange: EventEmitter<void>;
19
+ constructor(changeDetectorRef: ChangeDetectorRef);
20
+ ngAfterViewInit(): void;
21
+ close(): void;
22
+ open(): void;
23
+ toggle(): void;
24
+ static ɵfac: i0.ɵɵFactoryDeclaration<ExpansionPanelBase, never>;
25
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ExpansionPanelBase, never, never, { "disabled": "disabled"; "hideToggle": "hideToggle"; "isExpanded": "isExpanded"; }, { "isExpandedChange": "isExpandedChange"; }, ["header"], never, false>;
26
+ }
@@ -0,0 +1,11 @@
1
+ import { ChangeDetectorRef } from '@angular/core';
2
+ import { ExpansionPanelBase } from './expansion-panel-base';
3
+ import * as i0 from "@angular/core";
4
+ export declare class ExpansionPanelComponent extends ExpansionPanelBase {
5
+ protected changeDetectorRef: ChangeDetectorRef;
6
+ class: string;
7
+ get isDisabled(): boolean;
8
+ constructor(changeDetectorRef: ChangeDetectorRef);
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<ExpansionPanelComponent, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<ExpansionPanelComponent, "wac-expansion-panel", never, {}, {}, never, ["wac-expansion-panel-header, wacExpansionPanelHeader", "*"], false>;
11
+ }
@@ -0,0 +1,9 @@
1
+ import { ChangeDetectorRef } from '@angular/core';
2
+ import { ExpansionPanelBase } from './expansion-panel-base';
3
+ import * as i0 from "@angular/core";
4
+ export declare class ExpansionPanelDirective extends ExpansionPanelBase {
5
+ protected changeDetectorRef: ChangeDetectorRef;
6
+ constructor(changeDetectorRef: ChangeDetectorRef);
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<ExpansionPanelDirective, never>;
8
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ExpansionPanelDirective, "[wacExpansionPanel]", never, {}, {}, never, never, false>;
9
+ }
@@ -0,0 +1,20 @@
1
+ import { ChangeDetectorRef, EventEmitter } from '@angular/core';
2
+ import { ExpansionPanelHeader } from './expansion-panel-header.interface';
3
+ import * as i0 from "@angular/core";
4
+ export declare class ExpansionPanelHeaderBase implements ExpansionPanelHeader {
5
+ protected changeDetectorRef: ChangeDetectorRef;
6
+ onClick(): void;
7
+ disabled: boolean;
8
+ disabledChange: EventEmitter<boolean>;
9
+ hideToggle: boolean;
10
+ hideToggleChange: EventEmitter<boolean>;
11
+ isExpanded: boolean;
12
+ isExpandedChange: EventEmitter<boolean>;
13
+ constructor(changeDetectorRef: ChangeDetectorRef);
14
+ onToggle(): void;
15
+ close: () => {};
16
+ open: () => {};
17
+ toggle: () => {};
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<ExpansionPanelHeaderBase, never>;
19
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ExpansionPanelHeaderBase, never, never, { "disabled": "disabled"; "hideToggle": "hideToggle"; "isExpanded": "isExpanded"; }, { "disabledChange": "disabledChange"; "hideToggleChange": "hideToggleChange"; "isExpandedChange": "isExpandedChange"; }, never, never, false>;
20
+ }
@@ -0,0 +1,11 @@
1
+ import { ChangeDetectorRef } from '@angular/core';
2
+ import { ExpansionPanelHeaderBase } from './expansion-panel-header-base';
3
+ import * as i0 from "@angular/core";
4
+ export declare class ExpansionPanelHeaderComponent extends ExpansionPanelHeaderBase {
5
+ protected changeDetectorRef: ChangeDetectorRef;
6
+ class: string;
7
+ get isDisabled(): boolean;
8
+ constructor(changeDetectorRef: ChangeDetectorRef);
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<ExpansionPanelHeaderComponent, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<ExpansionPanelHeaderComponent, "wac-expansion-panel-header", never, {}, {}, never, ["*"], false>;
11
+ }
@@ -0,0 +1,9 @@
1
+ import { ChangeDetectorRef } from '@angular/core';
2
+ import { ExpansionPanelHeaderBase } from './expansion-panel-header-base';
3
+ import * as i0 from "@angular/core";
4
+ export declare class ExpansionPanelHeaderDirective extends ExpansionPanelHeaderBase {
5
+ protected changeDetectorRef: ChangeDetectorRef;
6
+ constructor(changeDetectorRef: ChangeDetectorRef);
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<ExpansionPanelHeaderDirective, never>;
8
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ExpansionPanelHeaderDirective, "[wacExpansionPanelHeader]", never, {}, {}, never, never, false>;
9
+ }
@@ -0,0 +1,8 @@
1
+ export interface ExpansionPanelHeader {
2
+ disabled: boolean;
3
+ hideToggle: boolean;
4
+ isExpanded: boolean;
5
+ close(): void;
6
+ open(): void;
7
+ toggle(): void;
8
+ }
@@ -0,0 +1,3 @@
1
+ import { InjectionToken } from "@angular/core";
2
+ import { ExpansionPanelHeader } from "./expansion-panel-header.interface";
3
+ export declare const EXPANSION_PANEL_HEADER: InjectionToken<ExpansionPanelHeader>;
@@ -0,0 +1,18 @@
1
+ import { AccordionComponent } from './accordion/accordion.component';
2
+ import { ExpansionPanelHeaderComponent } from './expansion-panel-header/expansion-panel-header.component';
3
+ import { ExpansionPanelHeaderDirective } from './expansion-panel-header/expansion-panel-header.directive';
4
+ import { ExpansionPanelComponent } from './expansion-panel/expansion-panel.component';
5
+ import { ExpansionPanelDirective } from './expansion-panel/expansion-panel.directive';
6
+ import * as i0 from "@angular/core";
7
+ import * as i1 from "./expansion-panel/expansion-panel.component";
8
+ import * as i2 from "./expansion-panel-header/expansion-panel-header.component";
9
+ import * as i3 from "./accordion/accordion.component";
10
+ import * as i4 from "./expansion-panel/expansion-panel.directive";
11
+ import * as i5 from "./expansion-panel-header/expansion-panel-header.directive";
12
+ import * as i6 from "@angular/common";
13
+ export declare const ExpansionExport: (typeof AccordionComponent | typeof ExpansionPanelHeaderComponent | typeof ExpansionPanelHeaderDirective | typeof ExpansionPanelComponent | typeof ExpansionPanelDirective)[];
14
+ export declare class ExpansionModule {
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<ExpansionModule, never>;
16
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ExpansionModule, [typeof i1.ExpansionPanelComponent, typeof i2.ExpansionPanelHeaderComponent, typeof i3.AccordionComponent, typeof i4.ExpansionPanelDirective, typeof i5.ExpansionPanelHeaderDirective], [typeof i6.CommonModule], [typeof i1.ExpansionPanelComponent, typeof i2.ExpansionPanelHeaderComponent, typeof i3.AccordionComponent, typeof i4.ExpansionPanelDirective, typeof i5.ExpansionPanelHeaderDirective]>;
17
+ static ɵinj: i0.ɵɵInjectorDeclaration<ExpansionModule>;
18
+ }
@@ -1,11 +1,10 @@
1
- import { OnInit } from '@angular/core';
2
1
  import * as i0 from "@angular/core";
3
- export declare class HeaderPageComponent implements OnInit {
2
+ export declare class HeaderPageComponent {
4
3
  title: string;
5
4
  linkBack: string[];
6
5
  withImg: boolean;
6
+ center: boolean;
7
7
  constructor();
8
- ngOnInit(): void;
9
8
  static ɵfac: i0.ɵɵFactoryDeclaration<HeaderPageComponent, never>;
10
- static ɵcmp: i0.ɵɵComponentDeclaration<HeaderPageComponent, "wac-header-page", never, { "title": "title"; "linkBack": "linkBack"; "withImg": "withImg"; }, {}, never, ["[role=header]", "*"], false>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<HeaderPageComponent, "wac-header-page", never, { "title": "title"; "linkBack": "linkBack"; "withImg": "withImg"; "center": "center"; }, {}, never, ["[role=header]", "[role=subtitle]", "*"], false>;
11
10
  }
@@ -1,9 +1,9 @@
1
- import { OnInit } from '@angular/core';
2
1
  import * as i0 from "@angular/core";
3
- export declare class H1Component implements OnInit {
2
+ export declare class H1Component {
3
+ annotation: string;
4
4
  withImg: boolean;
5
+ center: boolean;
5
6
  constructor();
6
- ngOnInit(): void;
7
7
  static ɵfac: i0.ɵɵFactoryDeclaration<H1Component, never>;
8
- static ɵcmp: i0.ɵɵComponentDeclaration<H1Component, "wac-h1", never, { "withImg": "withImg"; }, {}, never, ["*"], false>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<H1Component, "wac-h1", never, { "annotation": "annotation"; "withImg": "withImg"; "center": "center"; }, {}, never, ["*"], false>;
9
9
  }
@@ -32,6 +32,9 @@ export declare class InputComponent implements ControlValueAccessor {
32
32
  disabled: boolean;
33
33
  indication: string;
34
34
  success: boolean;
35
+ error: boolean;
36
+ maxlength: number | string;
37
+ minlength: number | string;
35
38
  indicationLeft: boolean;
36
39
  keypressEnter: EventEmitter<boolean>;
37
40
  blurred: EventEmitter<void>;
@@ -49,5 +52,5 @@ export declare class InputComponent implements ControlValueAccessor {
49
52
  onFocusOut(): void;
50
53
  keyPress(event: KeyboardEvent): void;
51
54
  static ɵfac: i0.ɵɵFactoryDeclaration<InputComponent, never>;
52
- static ɵcmp: i0.ɵɵComponentDeclaration<InputComponent, "wac-input", never, { "label": "label"; "value": "value"; "type": "type"; "placeholder": "placeholder"; "textInfo": "textInfo"; "textError": "textError"; "size": "size"; "isNumber": "isNumber"; "withoutBlock": "withoutBlock"; "icon": "icon"; "big": "big"; "medium": "medium"; "boldLabel": "boldLabel"; "min": "min"; "max": "max"; "disableMargin": "disableMargin"; "textPrepend": "textPrepend"; "textAppend": "textAppend"; "progressBar": "progressBar"; "extraClasses": "extraClasses"; "keyPreventDefault": "keyPreventDefault"; "showTooltip": "showTooltip"; "textTooltip": "textTooltip"; "iconTooltip": "iconTooltip"; "urlTooltip": "urlTooltip"; "linkTooltip": "linkTooltip"; "padding": "padding"; "disabled": "disabled"; "indication": "indication"; "success": "success"; "indicationLeft": "indicationLeft"; }, { "keypressEnter": "keypressEnter"; "blurred": "blurred"; }, never, never, false>;
55
+ static ɵcmp: i0.ɵɵComponentDeclaration<InputComponent, "wac-input", never, { "label": "label"; "value": "value"; "type": "type"; "placeholder": "placeholder"; "textInfo": "textInfo"; "textError": "textError"; "size": "size"; "isNumber": "isNumber"; "withoutBlock": "withoutBlock"; "icon": "icon"; "big": "big"; "medium": "medium"; "boldLabel": "boldLabel"; "min": "min"; "max": "max"; "disableMargin": "disableMargin"; "textPrepend": "textPrepend"; "textAppend": "textAppend"; "progressBar": "progressBar"; "extraClasses": "extraClasses"; "keyPreventDefault": "keyPreventDefault"; "showTooltip": "showTooltip"; "textTooltip": "textTooltip"; "iconTooltip": "iconTooltip"; "urlTooltip": "urlTooltip"; "linkTooltip": "linkTooltip"; "padding": "padding"; "disabled": "disabled"; "indication": "indication"; "success": "success"; "error": "error"; "maxlength": "maxlength"; "minlength": "minlength"; "indicationLeft": "indicationLeft"; }, { "keypressEnter": "keypressEnter"; "blurred": "blurred"; }, never, never, false>;
53
56
  }
@@ -1,6 +1,6 @@
1
- import { ElementRef, OnInit, Renderer2 } from '@angular/core';
1
+ import { AfterViewInit, ElementRef, Renderer2 } from '@angular/core';
2
2
  import * as i0 from "@angular/core";
3
- export declare class LinkComponent implements OnInit {
3
+ export declare class LinkComponent implements AfterViewInit {
4
4
  private renderer2;
5
5
  _link: string;
6
6
  set href(link: string);
@@ -8,11 +8,11 @@ export declare class LinkComponent implements OnInit {
8
8
  target: '_self' | '_blank' | '_parent' | '_top';
9
9
  id: string;
10
10
  class: string;
11
+ fontSize: string;
11
12
  linkComponent: ElementRef;
12
13
  constructor(renderer2: Renderer2);
13
- ngOnInit(): void;
14
14
  ngAfterViewInit(): void;
15
15
  setAttributesLink(): void;
16
16
  static ɵfac: i0.ɵɵFactoryDeclaration<LinkComponent, never>;
17
- static ɵcmp: i0.ɵɵComponentDeclaration<LinkComponent, "wac-link", never, { "href": "href"; "target": "target"; "id": "id"; "class": "class"; }, {}, never, ["*"], false>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<LinkComponent, "wac-link", never, { "href": "href"; "target": "target"; "id": "id"; "class": "class"; "fontSize": "fontSize"; }, {}, never, ["*"], false>;
18
18
  }
@@ -0,0 +1,28 @@
1
+ import { EventEmitter, OnChanges, SimpleChanges, TemplateRef } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare type ImageSource = string;
4
+ export declare type ImageAlt = string;
5
+ export declare type MosaicImage = {
6
+ src: ImageSource;
7
+ alt: ImageAlt;
8
+ };
9
+ export declare type MosaicImages = Readonly<MosaicImage[]>;
10
+ export declare class MosaicComponent implements OnChanges {
11
+ imagesList: MosaicImages;
12
+ isLoading: boolean;
13
+ numberOfColumn: number;
14
+ hoverImageTemplate: TemplateRef<any>;
15
+ importImageSrc: EventEmitter<string>;
16
+ loadMoreImages: EventEmitter<void>;
17
+ columns: MosaicImages[];
18
+ trackColumn(index: number): number;
19
+ trackImage(index: number, image: MosaicImage): string;
20
+ ngOnChanges(changes: SimpleChanges): void;
21
+ generateColumns(previousList: MosaicImages, currentList: MosaicImages, isNumberOfColumnChange: boolean): void;
22
+ separateImagesIntoColumns(newImagesToDisplay: MosaicImages): MosaicImages[];
23
+ concatColumns(oldColumns: MosaicImages[], newColumns: MosaicImages[]): MosaicImages[];
24
+ onBottomReached(): void;
25
+ onImportImage(src: ImageSource): void;
26
+ static ɵfac: i0.ɵɵFactoryDeclaration<MosaicComponent, never>;
27
+ static ɵcmp: i0.ɵɵComponentDeclaration<MosaicComponent, "wac-mosaic", never, { "imagesList": "imagesList"; "isLoading": "isLoading"; "numberOfColumn": "numberOfColumn"; "hoverImageTemplate": "hoverImageTemplate"; }, { "importImageSrc": "importImageSrc"; "loadMoreImages": "loadMoreImages"; }, never, never, false>;
28
+ }
@@ -12,6 +12,7 @@ export declare class SelectComponent implements ControlValueAccessor {
12
12
  maxWidthItems: string;
13
13
  search: boolean;
14
14
  searchValue: string;
15
+ openUp: boolean;
15
16
  searchValueChange: EventEmitter<string>;
16
17
  type: string;
17
18
  _calllToAction: CalllToAction;
@@ -41,5 +42,5 @@ export declare class SelectComponent implements ControlValueAccessor {
41
42
  registerOnChange(fn: any): void;
42
43
  registerOnTouched(fn: any): void;
43
44
  static ɵfac: i0.ɵɵFactoryDeclaration<SelectComponent, never>;
44
- static ɵcmp: i0.ɵɵComponentDeclaration<SelectComponent, "wac-select", never, { "items": "items"; "placeholder": "placeholder"; "label": "label"; "maxWidthItems": "maxWidthItems"; "search": "search"; "searchValue": "searchValue"; "type": "type"; "callToAction": "callToAction"; "maxWidth": "maxWidth"; "disabled": "disabled"; }, { "searchValueChange": "searchValueChange"; "selectValue": "selectValue"; "clickOnCallToAction": "clickOnCallToAction"; }, never, never, false>;
45
+ static ɵcmp: i0.ɵɵComponentDeclaration<SelectComponent, "wac-select", never, { "items": "items"; "placeholder": "placeholder"; "label": "label"; "maxWidthItems": "maxWidthItems"; "search": "search"; "searchValue": "searchValue"; "openUp": "openUp"; "type": "type"; "callToAction": "callToAction"; "maxWidth": "maxWidth"; "disabled": "disabled"; }, { "searchValueChange": "searchValueChange"; "selectValue": "selectValue"; "clickOnCallToAction": "clickOnCallToAction"; }, never, never, false>;
45
46
  }
@@ -44,9 +44,9 @@ export declare class SelectTestComponent implements OnInit, ControlValueAccessor
44
44
  private _handleClosedKeydown;
45
45
  /** Handles keyboard events when the selected is open. */
46
46
  private _handleOpenKeydown;
47
- onChange: (value: any) => void;
47
+ onChange: (value: number) => void;
48
48
  onTouch: (value: any) => void;
49
- writeValue(value: any): void;
49
+ writeValue(value: number): void;
50
50
  registerOnChange(fn: any): void;
51
51
  registerOnTouched(fn: any): void;
52
52
  ngOnDestroy(): void;
@@ -1,8 +1,8 @@
1
- import { QueryList } from '@angular/core';
1
+ import { OnDestroy, QueryList } from '@angular/core';
2
2
  import { Subject } from 'rxjs';
3
3
  import { OptionComponent } from '../option/option.component';
4
4
  import * as i0 from "@angular/core";
5
- export declare class ValueChangeService {
5
+ export declare class ValueChangeService implements OnDestroy {
6
6
  valueChange$: Subject<any>;
7
7
  set value(value: any);
8
8
  get value(): any;