suis 4.0.0 → 4.0.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.
Files changed (52) hide show
  1. package/README.md +1 -1
  2. package/fesm2022/suis.mjs +482 -686
  3. package/fesm2022/suis.mjs.map +1 -1
  4. package/lib/components/suis-accordion/suis-accordion.component.d.ts +5 -4
  5. package/lib/components/suis-alert/suis-alert.component.d.ts +6 -5
  6. package/lib/components/suis-box/suis-box.component.d.ts +3 -3
  7. package/lib/components/suis-breadcrumbs/suis-breadcrumbs.component.d.ts +2 -2
  8. package/lib/components/suis-chart/suis-chart.component.d.ts +8 -8
  9. package/lib/components/suis-chip/suis-chip.component.d.ts +5 -6
  10. package/lib/components/suis-container/suis-container.component.d.ts +2 -2
  11. package/lib/components/suis-dialog/suis-dialog.component.d.ts +6 -7
  12. package/lib/components/suis-divider/suis-divider.component.d.ts +2 -2
  13. package/lib/components/suis-form-field/suis-form-field.component.d.ts +2 -2
  14. package/lib/components/suis-icon/suis-icon.component.d.ts +8 -8
  15. package/lib/components/suis-input/suis-input.component.d.ts +4 -5
  16. package/lib/components/suis-input-chips/suis-input-chips.component.d.ts +5 -5
  17. package/lib/components/suis-input-image/suis-input-image.component.d.ts +3 -3
  18. package/lib/components/suis-input-number/suis-input-number.component.d.ts +2 -2
  19. package/lib/components/suis-input-radio/suis-input-radio.component.d.ts +6 -6
  20. package/lib/components/suis-item/suis-item.component.d.ts +4 -4
  21. package/lib/components/suis-label/suis-label.component.d.ts +5 -5
  22. package/lib/components/suis-notification/suis-notification.component.d.ts +3 -4
  23. package/lib/components/suis-pagination/suis-pagination.component.d.ts +15 -13
  24. package/lib/components/suis-progress-bar/suis-progress-bar.component.d.ts +6 -6
  25. package/lib/components/suis-spinner/suis-spinner.component.d.ts +3 -3
  26. package/lib/components/suis-spinner-container/suis-spinner-container.component.d.ts +5 -5
  27. package/lib/components/suis-table/suis-table-column.directive.d.ts +1 -1
  28. package/lib/components/suis-table/suis-table.component.d.ts +12 -10
  29. package/lib/components/suis-tabs/suis-tab-actions.pipe.d.ts +2 -2
  30. package/lib/components/suis-tabs/suis-tab-template.pipe.d.ts +2 -2
  31. package/lib/components/suis-tabs/suis-tab.directive.d.ts +2 -2
  32. package/lib/components/suis-tabs/suis-tabs.component.d.ts +6 -5
  33. package/lib/components/suis-text-area/suis-text-area.component.d.ts +2 -2
  34. package/lib/components/suis-title/suis-title.component.d.ts +2 -2
  35. package/lib/components/suis-toolbar/suis-toolbar.component.d.ts +2 -2
  36. package/lib/modules/suis-button/components/suis-button-link/suis-button-link.component.d.ts +6 -6
  37. package/lib/modules/suis-navigation/components/suis-navigation/suis-navigation.component.d.ts +11 -9
  38. package/lib/modules/suis-navigation/components/suis-navigation-group/suis-navigation-group.component.d.ts +10 -7
  39. package/lib/modules/suis-navigation/components/suis-navigation-group-item/suis-navigation-group-item.component.d.ts +11 -9
  40. package/lib/modules/suis-navigation/components/suis-navigation-item/suis-navigation-item.component.d.ts +5 -5
  41. package/lib/modules/suis-select/classes/suis-select-button.base.d.ts +7 -8
  42. package/lib/modules/suis-select/classes/suis-select-multi.base.d.ts +4 -4
  43. package/lib/modules/suis-select/classes/suis-select-single.base.d.ts +2 -2
  44. package/lib/modules/suis-select/classes/suis-select.base.d.ts +12 -12
  45. package/lib/modules/suis-select/components/suis-select-group/suis-select-group.component.d.ts +3 -3
  46. package/lib/modules/suis-select/components/suis-select-group-option/suis-select-group-option.component.d.ts +4 -4
  47. package/lib/modules/suis-select/components/suis-select-multi-group/suis-select-multi-group.component.d.ts +3 -3
  48. package/lib/modules/suis-select/components/suis-select-option/suis-select-option.component.d.ts +10 -10
  49. package/lib/shared/classes/suis-button.base.d.ts +7 -8
  50. package/lib/shared/classes/suis-checkbox.base.d.ts +2 -2
  51. package/lib/shared/classes/suis-input.base.d.ts +8 -8
  52. package/package.json +1 -1
@@ -1,15 +1,16 @@
1
- import { EventEmitter } from '@angular/core';
2
1
  import * as i0 from "@angular/core";
3
2
  export declare class SuisAccordionComponent {
4
3
  /**
5
4
  * Controlls styling of the accordion based on expanded state of group. By default set to false.
6
5
  */
7
- expanded: boolean;
6
+ readonly expanded: import("@angular/core").InputSignal<boolean>;
7
+ _expanded: import("@angular/core").WritableSignal<boolean>;
8
8
  /**
9
9
  * Emits when expanded value of the accordion has been changed.
10
10
  */
11
- expandedChange: EventEmitter<boolean>;
11
+ readonly expandedChange: import("@angular/core").OutputEmitterRef<boolean>;
12
+ constructor();
12
13
  onToggle(): void;
13
14
  static ɵfac: i0.ɵɵFactoryDeclaration<SuisAccordionComponent, never>;
14
- static ɵcmp: i0.ɵɵComponentDeclaration<SuisAccordionComponent, "suis-accordion", never, { "expanded": { "alias": "expanded"; "required": false; }; }, { "expandedChange": "expandedChange"; }, never, ["[suisAccordionHeader]", "[suisAccordionContent]"], true, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<SuisAccordionComponent, "suis-accordion", never, { "expanded": { "alias": "expanded"; "required": false; "isSignal": true; }; }, { "expandedChange": "expandedChange"; }, never, ["[suisAccordionHeader]", "[suisAccordionContent]"], true, never>;
15
16
  }
@@ -1,20 +1,21 @@
1
- import { EventEmitter } from '@angular/core';
2
1
  import { SuisInfoColor } from '../../types';
3
2
  import * as i0 from "@angular/core";
4
3
  export declare class SuisAlertComponent {
5
4
  /**
6
5
  * Controls visibilty of the alert. By default set to false.
7
6
  */
8
- hidden: boolean;
7
+ readonly hidden: import("@angular/core").InputSignal<boolean>;
8
+ _hidden: import("@angular/core").WritableSignal<boolean>;
9
9
  /**
10
10
  * Emits change of hidden state.
11
11
  */
12
- hiddenChange: EventEmitter<boolean>;
12
+ readonly hiddenChange: import("@angular/core").OutputEmitterRef<boolean>;
13
13
  /**
14
14
  * Sets the color pallette of the alert. Type of SuisInfoColor. By default set to 'danger'.
15
15
  */
16
- color: SuisInfoColor;
16
+ readonly color: import("@angular/core").InputSignal<SuisInfoColor>;
17
+ constructor();
17
18
  onCancel(): void;
18
19
  static ɵfac: i0.ɵɵFactoryDeclaration<SuisAlertComponent, never>;
19
- static ɵcmp: i0.ɵɵComponentDeclaration<SuisAlertComponent, "suis-alert", never, { "hidden": { "alias": "hidden"; "required": false; }; "color": { "alias": "color"; "required": false; }; }, { "hiddenChange": "hiddenChange"; }, never, ["*"], true, never>;
20
+ static ɵcmp: i0.ɵɵComponentDeclaration<SuisAlertComponent, "suis-alert", never, { "hidden": { "alias": "hidden"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; }, { "hiddenChange": "hiddenChange"; }, never, ["*"], true, never>;
20
21
  }
@@ -3,11 +3,11 @@ export declare class SuisBoxComponent {
3
3
  /**
4
4
  * Adds a padding around the content. By default set to false.
5
5
  */
6
- spacing: boolean;
6
+ readonly spacing: import("@angular/core").InputSignal<boolean>;
7
7
  /**
8
8
  * Sets box height to 100%. By default set to false.
9
9
  */
10
- fullHeight: boolean;
10
+ readonly fullHeight: import("@angular/core").InputSignal<boolean>;
11
11
  static ɵfac: i0.ɵɵFactoryDeclaration<SuisBoxComponent, never>;
12
- static ɵcmp: i0.ɵɵComponentDeclaration<SuisBoxComponent, "suis-box", never, { "spacing": { "alias": "spacing"; "required": false; }; "fullHeight": { "alias": "fullHeight"; "required": false; }; }, {}, never, ["*"], true, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<SuisBoxComponent, "suis-box", never, { "spacing": { "alias": "spacing"; "required": false; "isSignal": true; }; "fullHeight": { "alias": "fullHeight"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
13
13
  }
@@ -4,9 +4,9 @@ export declare class SuisBreadcrumbsComponent {
4
4
  /**
5
5
  * List of breadcrumbs items. Type of SuisBreadcrumbItem[]. By default set to empty array.
6
6
  */
7
- items: SuisBreadcrumbItem[];
7
+ readonly items: import("@angular/core").InputSignal<SuisBreadcrumbItem[]>;
8
8
  /** @internal */
9
9
  itemTrackBy(index: number, item: SuisBreadcrumbItem): string;
10
10
  static ɵfac: i0.ɵɵFactoryDeclaration<SuisBreadcrumbsComponent, never>;
11
- static ɵcmp: i0.ɵɵComponentDeclaration<SuisBreadcrumbsComponent, "suis-breadcrumbs", never, { "items": { "alias": "items"; "required": false; }; }, {}, never, never, true, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<SuisBreadcrumbsComponent, "suis-breadcrumbs", never, { "items": { "alias": "items"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
12
12
  }
@@ -13,31 +13,31 @@ export declare class SuisChartComponent {
13
13
  /**
14
14
  * Array of the chart bars labels. By default set to empty array.
15
15
  */
16
- labels: string[];
16
+ readonly labels: import("@angular/core").InputSignal<string[]>;
17
17
  /**
18
18
  * Array of data values and optionally colors. Type of SuisChartDataItem[]. By default set to empty array.
19
19
  */
20
- data: SuisChartDataItem[];
20
+ readonly data: import("@angular/core").InputSignal<SuisChartDataItem[]>;
21
21
  /**
22
22
  * Sets the default color of the chart bars. Type of SuisColor. By default set to 'primary'.
23
23
  */
24
- color: SuisColor;
24
+ readonly color: import("@angular/core").InputSignal<SuisColor>;
25
25
  /**
26
26
  * Adjusts the width of the chart bars. Type of SuisSize. By default set to 'md'.
27
27
  */
28
- size: SuisSize;
28
+ readonly size: import("@angular/core").InputSignal<SuisSize>;
29
29
  /**
30
30
  * Sets the maximum value automatically based on data values. By default set to false.
31
31
  */
32
- autoMax: boolean;
32
+ readonly autoMax: import("@angular/core").InputSignal<boolean>;
33
33
  /**
34
34
  * Array of comparision data values and optionally colors. Type of SuisChartDataItem[]. By default set to empty array.
35
35
  */
36
- compareData: SuisChartDataItem[];
36
+ readonly compareData: import("@angular/core").InputSignal<SuisChartDataItem[]>;
37
37
  /**
38
38
  * Sets the default color of the comparision chart bars. Type of SuisColor. By default set to 'warning'.
39
39
  */
40
- compareColor: SuisColor;
40
+ readonly compareColor: import("@angular/core").InputSignal<SuisColor>;
41
41
  static ɵfac: i0.ɵɵFactoryDeclaration<SuisChartComponent, never>;
42
- static ɵcmp: i0.ɵɵComponentDeclaration<SuisChartComponent, "suis-chart", never, { "maxValue": { "alias": "maxValue"; "required": false; }; "labels": { "alias": "labels"; "required": false; }; "data": { "alias": "data"; "required": false; }; "color": { "alias": "color"; "required": false; }; "size": { "alias": "size"; "required": false; }; "autoMax": { "alias": "autoMax"; "required": false; }; "compareData": { "alias": "compareData"; "required": false; }; "compareColor": { "alias": "compareColor"; "required": false; }; }, {}, never, never, true, never>;
42
+ static ɵcmp: i0.ɵɵComponentDeclaration<SuisChartComponent, "suis-chart", never, { "maxValue": { "alias": "maxValue"; "required": false; }; "labels": { "alias": "labels"; "required": false; "isSignal": true; }; "data": { "alias": "data"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "autoMax": { "alias": "autoMax"; "required": false; "isSignal": true; }; "compareData": { "alias": "compareData"; "required": false; "isSignal": true; }; "compareColor": { "alias": "compareColor"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
43
43
  }
@@ -1,25 +1,24 @@
1
- import { EventEmitter } from '@angular/core';
2
1
  import { SuisColor } from '../../types/suis-color.type';
3
2
  import * as i0 from "@angular/core";
4
3
  export declare class SuisChipComponent {
5
4
  /**
6
5
  * Sets the color pallette of the chip. Type of SuisColor. By default set to 'primary'.
7
6
  */
8
- color: SuisColor;
7
+ readonly color: import("@angular/core").InputSignal<SuisColor>;
9
8
  /**
10
9
  * Sets the color of the cross icon. Visible only if removable set to true. Type of SuisColor. By default set to 'white'.
11
10
  */
12
- iconColor: SuisColor;
11
+ readonly iconColor: import("@angular/core").InputSignal<SuisColor>;
13
12
  /**
14
13
  * Shows cross icon with remove action. By default set to false.
15
14
  */
16
- removable: boolean;
15
+ readonly removable: import("@angular/core").InputSignal<boolean>;
17
16
  /**
18
17
  * Emits on cross icon click.
19
18
  */
20
- remove: EventEmitter<void>;
19
+ readonly remove: import("@angular/core").OutputEmitterRef<void>;
21
20
  /** @internal */
22
21
  onRemove(): void;
23
22
  static ɵfac: i0.ɵɵFactoryDeclaration<SuisChipComponent, never>;
24
- static ɵcmp: i0.ɵɵComponentDeclaration<SuisChipComponent, "suis-chip", never, { "color": { "alias": "color"; "required": false; }; "iconColor": { "alias": "iconColor"; "required": false; }; "removable": { "alias": "removable"; "required": false; }; }, { "remove": "remove"; }, never, ["*"], true, never>;
23
+ static ɵcmp: i0.ɵɵComponentDeclaration<SuisChipComponent, "suis-chip", never, { "color": { "alias": "color"; "required": false; "isSignal": true; }; "iconColor": { "alias": "iconColor"; "required": false; "isSignal": true; }; "removable": { "alias": "removable"; "required": false; "isSignal": true; }; }, { "remove": "remove"; }, never, ["*"], true, never>;
25
24
  }
@@ -3,7 +3,7 @@ export declare class SuisContainerComponent {
3
3
  /**
4
4
  * Adds a padding around the content. By default set to false.
5
5
  */
6
- spacing: boolean;
6
+ readonly spacing: import("@angular/core").InputSignal<boolean>;
7
7
  static ɵfac: i0.ɵɵFactoryDeclaration<SuisContainerComponent, never>;
8
- static ɵcmp: i0.ɵɵComponentDeclaration<SuisContainerComponent, "suis-container", never, { "spacing": { "alias": "spacing"; "required": false; }; }, {}, never, ["*"], true, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<SuisContainerComponent, "suis-container", never, { "spacing": { "alias": "spacing"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
9
9
  }
@@ -1,4 +1,3 @@
1
- import { EventEmitter } from '@angular/core';
2
1
  import { SuisSize } from '../../types/suis-size.type';
3
2
  import * as i0 from "@angular/core";
4
3
  export declare class SuisDialogComponent {
@@ -6,25 +5,25 @@ export declare class SuisDialogComponent {
6
5
  /**
7
6
  * Sets width size of the dialog. Type of SuisSize. By default set to 'md'.
8
7
  */
9
- size: SuisSize;
8
+ readonly size: import("@angular/core").InputSignal<SuisSize>;
10
9
  /**
11
10
  * Displays the cancel button in the actions footer of the dialog. By default set to true.
12
11
  */
13
- cancelButton: boolean;
12
+ readonly cancelButton: import("@angular/core").InputSignal<boolean>;
14
13
  /**
15
14
  * Displays the confirm button in the actions footer of the dialog. By default set to true.
16
15
  */
17
- confirmButton: boolean;
16
+ readonly confirmButton: import("@angular/core").InputSignal<boolean>;
18
17
  /**
19
18
  * Emits on confirm button clicked.
20
19
  */
21
- confirmed: EventEmitter<void>;
20
+ readonly confirmed: import("@angular/core").OutputEmitterRef<void>;
22
21
  /**
23
22
  * Emits on cancel button or cross icon clicked.
24
23
  */
25
- cancelled: EventEmitter<void>;
24
+ readonly cancelled: import("@angular/core").OutputEmitterRef<void>;
26
25
  onConfirm(): void;
27
26
  onCancel(): void;
28
27
  static ɵfac: i0.ɵɵFactoryDeclaration<SuisDialogComponent, never>;
29
- static ɵcmp: i0.ɵɵComponentDeclaration<SuisDialogComponent, "suis-dialog", never, { "size": { "alias": "size"; "required": false; }; "cancelButton": { "alias": "cancelButton"; "required": false; }; "confirmButton": { "alias": "confirmButton"; "required": false; }; }, { "confirmed": "confirmed"; "cancelled": "cancelled"; }, never, ["[suisDialogHeader]", "[suisDialogContent]"], true, never>;
28
+ static ɵcmp: i0.ɵɵComponentDeclaration<SuisDialogComponent, "suis-dialog", never, { "size": { "alias": "size"; "required": false; "isSignal": true; }; "cancelButton": { "alias": "cancelButton"; "required": false; "isSignal": true; }; "confirmButton": { "alias": "confirmButton"; "required": false; "isSignal": true; }; }, { "confirmed": "confirmed"; "cancelled": "cancelled"; }, never, ["[suisDialogHeader]", "[suisDialogContent]"], true, never>;
30
29
  }
@@ -4,7 +4,7 @@ export declare class SuisDividerComponent {
4
4
  /**
5
5
  * Sets the color of the divider. Type of SuisColor. By default set to 'tertiary'.
6
6
  */
7
- color: SuisColor;
7
+ readonly color: import("@angular/core").InputSignal<SuisColor>;
8
8
  static ɵfac: i0.ɵɵFactoryDeclaration<SuisDividerComponent, never>;
9
- static ɵcmp: i0.ɵɵComponentDeclaration<SuisDividerComponent, "suis-divider", never, { "color": { "alias": "color"; "required": false; }; }, {}, never, never, true, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<SuisDividerComponent, "suis-divider", never, { "color": { "alias": "color"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
10
10
  }
@@ -4,7 +4,7 @@ export declare class SuisFormFieldComponent {
4
4
  /**
5
5
  * Template to be added below the field with error message.
6
6
  */
7
- errorTemplate?: TemplateRef<HTMLElement>;
7
+ readonly errorTemplate: import("@angular/core").InputSignal<TemplateRef<HTMLElement> | undefined>;
8
8
  static ɵfac: i0.ɵɵFactoryDeclaration<SuisFormFieldComponent, never>;
9
- static ɵcmp: i0.ɵɵComponentDeclaration<SuisFormFieldComponent, "suis-form-field", never, { "errorTemplate": { "alias": "errorTemplate"; "required": false; }; }, {}, never, ["*"], true, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<SuisFormFieldComponent, "suis-form-field", never, { "errorTemplate": { "alias": "errorTemplate"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
10
10
  }
@@ -6,31 +6,31 @@ export declare class SuisIconComponent {
6
6
  /**
7
7
  * Sets the font size of the HTML Entity itself. Type of SuisSize. By default set to 'md'.
8
8
  */
9
- size: SuisSize;
9
+ readonly size: import("@angular/core").InputSignal<SuisSize>;
10
10
  /**
11
11
  * Sets the color pallette of the icon and surroundings. Type of SuisColor. By default set to 'dark'.
12
12
  */
13
- color: SuisColor;
13
+ readonly color: import("@angular/core").InputSignal<SuisColor>;
14
14
  /**
15
15
  * Sets the HTML Entity displayed in content. Type of SuisIconType. By default set to 'question'.
16
16
  */
17
- type: SuisIconType;
17
+ readonly type: import("@angular/core").InputSignal<SuisIconType>;
18
18
  /**
19
19
  * Shows the circled border around the icon. By default set to false. Can not be combined with filled (will be overriden then).
20
20
  */
21
- outlined: boolean;
21
+ readonly outlined: import("@angular/core").InputSignal<boolean>;
22
22
  /**
23
23
  * Shows the circled background behind the icon. By default set to false. Overrides outlined behavior if used at the sime time.
24
24
  */
25
- filled: boolean;
25
+ readonly filled: import("@angular/core").InputSignal<boolean>;
26
26
  /**
27
27
  * Shows the pointer cursor when hovered. By default set to false.
28
28
  */
29
- pointer: boolean;
29
+ readonly pointer: import("@angular/core").InputSignal<boolean>;
30
30
  /**
31
31
  * Sets HTML Entity font weight to bold. By default set to false.
32
32
  */
33
- bold: boolean;
33
+ readonly bold: import("@angular/core").InputSignal<boolean>;
34
34
  static ɵfac: i0.ɵɵFactoryDeclaration<SuisIconComponent, never>;
35
- static ɵcmp: i0.ɵɵComponentDeclaration<SuisIconComponent, "suis-icon", never, { "size": { "alias": "size"; "required": false; }; "color": { "alias": "color"; "required": false; }; "type": { "alias": "type"; "required": false; }; "outlined": { "alias": "outlined"; "required": false; }; "filled": { "alias": "filled"; "required": false; }; "pointer": { "alias": "pointer"; "required": false; }; "bold": { "alias": "bold"; "required": false; }; }, {}, never, never, true, never>;
35
+ static ɵcmp: i0.ɵɵComponentDeclaration<SuisIconComponent, "suis-icon", never, { "size": { "alias": "size"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "outlined": { "alias": "outlined"; "required": false; "isSignal": true; }; "filled": { "alias": "filled"; "required": false; "isSignal": true; }; "pointer": { "alias": "pointer"; "required": false; "isSignal": true; }; "bold": { "alias": "bold"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
36
36
  }
@@ -1,4 +1,3 @@
1
- import { EventEmitter } from '@angular/core';
2
1
  import { SuisInputType } from './suis-input.types';
3
2
  import { SuisInputBase } from '../../shared/classes/suis-input.base';
4
3
  import * as i0 from "@angular/core";
@@ -6,20 +5,20 @@ export declare class SuisInputComponent extends SuisInputBase {
6
5
  /**
7
6
  * Sets input's type to one of the accepted values - type of SuisInputType. By default set to 'text'.
8
7
  */
9
- type: SuisInputType;
8
+ readonly type: import("@angular/core").InputSignal<SuisInputType>;
10
9
  /**
11
10
  * Placeholder text displayed in input. By default set to empty string.
12
11
  */
13
- placeholder: string;
12
+ readonly placeholder: import("@angular/core").InputSignal<string>;
14
13
  /**
15
14
  * Emits on keydown enter input event.
16
15
  */
17
- enterPressed: EventEmitter<void>;
16
+ readonly enterPressed: import("@angular/core").OutputEmitterRef<void>;
18
17
  /** @internal */
19
18
  value: string;
20
19
  writeValue(obj: string): void;
21
20
  onChange(event: Event): void;
22
21
  onEnter(): void;
23
22
  static ɵfac: i0.ɵɵFactoryDeclaration<SuisInputComponent, never>;
24
- static ɵcmp: i0.ɵɵComponentDeclaration<SuisInputComponent, "suis-input", never, { "type": { "alias": "type"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; }, { "enterPressed": "enterPressed"; }, never, never, true, never>;
23
+ static ɵcmp: i0.ɵɵComponentDeclaration<SuisInputComponent, "suis-input", never, { "type": { "alias": "type"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; }, { "enterPressed": "enterPressed"; }, never, never, true, never>;
25
24
  }
@@ -5,19 +5,19 @@ import { SuisColor } from '../../types/suis-color.type';
5
5
  import * as i0 from "@angular/core";
6
6
  export declare class SuisInputChipsComponent extends SuisInputBase {
7
7
  /** @internal */
8
- inputEl?: ElementRef;
8
+ readonly inputEl: import("@angular/core").Signal<ElementRef<any> | undefined>;
9
9
  /**
10
10
  * Placeholder text displayed in input. By default set to empty string.
11
11
  */
12
- placeholder: string;
12
+ readonly placeholder: import("@angular/core").InputSignal<string>;
13
13
  /**
14
14
  * Sets the color pallette of the chips. Type of SuisColor. By default set to 'primary'.
15
15
  */
16
- chipColor: SuisColor;
16
+ readonly chipColor: import("@angular/core").InputSignal<SuisColor>;
17
17
  /**
18
18
  * Sets the color of the chips' cross icon. Type of SuisColor. By default set to 'white'.
19
19
  */
20
- chipIconColor: SuisColor;
20
+ readonly chipIconColor: import("@angular/core").InputSignal<SuisColor>;
21
21
  /** @internal */
22
22
  value: string[];
23
23
  /** @internal */
@@ -28,5 +28,5 @@ export declare class SuisInputChipsComponent extends SuisInputBase {
28
28
  submitValue(): void;
29
29
  onDocumentClick(event: Event): void;
30
30
  static ɵfac: i0.ɵɵFactoryDeclaration<SuisInputChipsComponent, never>;
31
- static ɵcmp: i0.ɵɵComponentDeclaration<SuisInputChipsComponent, "suis-input-chips", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "chipColor": { "alias": "chipColor"; "required": false; }; "chipIconColor": { "alias": "chipIconColor"; "required": false; }; }, {}, never, never, true, never>;
31
+ static ɵcmp: i0.ɵɵComponentDeclaration<SuisInputChipsComponent, "suis-input-chips", never, { "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "chipColor": { "alias": "chipColor"; "required": false; "isSignal": true; }; "chipIconColor": { "alias": "chipIconColor"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
32
32
  }
@@ -1,13 +1,13 @@
1
- import { ElementRef, EventEmitter } from '@angular/core';
1
+ import { ElementRef } from '@angular/core';
2
2
  import { SuisInputBase } from '../../shared/classes/suis-input.base';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class SuisInputImageComponent extends SuisInputBase {
5
5
  /** @internal */
6
- fileInput?: ElementRef;
6
+ readonly fileInput: import("@angular/core").Signal<ElementRef<any> | undefined>;
7
7
  /**
8
8
  * Emits value on FileList upload.
9
9
  */
10
- uploaded: EventEmitter<FileList>;
10
+ readonly uploaded: import("@angular/core").OutputEmitterRef<FileList>;
11
11
  /** @internal */
12
12
  value: FileList | null;
13
13
  /** @internal */
@@ -4,11 +4,11 @@ export declare class SuisInputNumberComponent extends SuisInputBase {
4
4
  /**
5
5
  * Placeholder text displayed in input. By default set to empty string.
6
6
  */
7
- placeholder: string;
7
+ readonly placeholder: import("@angular/core").InputSignal<string>;
8
8
  /** @internal */
9
9
  value: number | null;
10
10
  writeValue(obj: number | null): void;
11
11
  onChange(event: Event): void;
12
12
  static ɵfac: i0.ɵɵFactoryDeclaration<SuisInputNumberComponent, never>;
13
- static ɵcmp: i0.ɵɵComponentDeclaration<SuisInputNumberComponent, "suis-input-number", never, { "placeholder": { "alias": "placeholder"; "required": false; }; }, {}, never, never, true, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<SuisInputNumberComponent, "suis-input-number", never, { "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
14
14
  }
@@ -3,24 +3,24 @@ import { RadioControlValueAccessor } from '@angular/forms';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class SuisInputRadioComponent extends RadioControlValueAccessor implements AfterViewInit {
5
5
  /** @internal */
6
- radioInput?: ElementRef;
6
+ readonly radioInput: import("@angular/core").Signal<ElementRef<any> | undefined>;
7
7
  /**
8
8
  * Sets HTML id attribute of the input. By default is undefined.
9
9
  */
10
- id?: string;
10
+ readonly id: import("@angular/core").InputSignal<string | undefined>;
11
11
  /**
12
12
  * Sets input disabled state. By default set to false.
13
13
  */
14
- readonly: boolean;
14
+ readonly readonly: import("@angular/core").InputSignal<boolean>;
15
15
  /**
16
16
  * Adds invalid styling to the input. By default set to false.
17
17
  */
18
- invalid: boolean;
18
+ readonly invalid: import("@angular/core").InputSignal<boolean>;
19
19
  /**
20
20
  * Sets input checked state to true. By default set to false.
21
21
  */
22
- default: boolean;
22
+ readonly default: import("@angular/core").InputSignal<boolean>;
23
23
  ngAfterViewInit(): void;
24
24
  static ɵfac: i0.ɵɵFactoryDeclaration<SuisInputRadioComponent, never>;
25
- static ɵcmp: i0.ɵɵComponentDeclaration<SuisInputRadioComponent, "suis-input-radio", never, { "id": { "alias": "id"; "required": true; }; "readonly": { "alias": "readonly"; "required": false; }; "invalid": { "alias": "invalid"; "required": false; }; "default": { "alias": "default"; "required": false; }; }, {}, never, ["*"], true, never>;
25
+ static ɵcmp: i0.ɵɵComponentDeclaration<SuisInputRadioComponent, "suis-input-radio", never, { "id": { "alias": "id"; "required": true; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "invalid": { "alias": "invalid"; "required": false; "isSignal": true; }; "default": { "alias": "default"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
26
26
  }
@@ -3,15 +3,15 @@ export declare class SuisItemComponent {
3
3
  /**
4
4
  * Adds a padding around the content. By default set to true.
5
5
  */
6
- spacing: boolean;
6
+ readonly spacing: import("@angular/core").InputSignal<boolean>;
7
7
  /**
8
8
  * Styles item as a header. By default set to false.
9
9
  */
10
- header: boolean;
10
+ readonly header: import("@angular/core").InputSignal<boolean>;
11
11
  /**
12
12
  * Displays border bottom below the item. Does not effect header item. By default set to true.
13
13
  */
14
- divider: boolean;
14
+ readonly divider: import("@angular/core").InputSignal<boolean>;
15
15
  static ɵfac: i0.ɵɵFactoryDeclaration<SuisItemComponent, never>;
16
- static ɵcmp: i0.ɵɵComponentDeclaration<SuisItemComponent, "suis-item", never, { "spacing": { "alias": "spacing"; "required": false; }; "header": { "alias": "header"; "required": false; }; "divider": { "alias": "divider"; "required": false; }; }, {}, never, ["*"], true, never>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<SuisItemComponent, "suis-item", never, { "spacing": { "alias": "spacing"; "required": false; "isSignal": true; }; "header": { "alias": "header"; "required": false; "isSignal": true; }; "divider": { "alias": "divider"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
17
17
  }
@@ -3,19 +3,19 @@ export declare class SuisLabelComponent {
3
3
  /**
4
4
  * Sets the HTML for attribute of the label. By default is undefined.
5
5
  */
6
- for?: string;
6
+ readonly for: import("@angular/core").InputSignal<string | undefined>;
7
7
  /**
8
8
  * Adds a red colored asterisk after the label. By default set to false.
9
9
  */
10
- required: boolean;
10
+ readonly required: import("@angular/core").InputSignal<boolean>;
11
11
  /**
12
12
  * Shows the pointer cursor when hovered. By default set to false.
13
13
  */
14
- pointer: boolean;
14
+ readonly pointer: import("@angular/core").InputSignal<boolean>;
15
15
  /**
16
16
  * Grays out the label content and removes cursor pointer behavior. By default set to false.
17
17
  */
18
- readonly: boolean;
18
+ readonly readonly: import("@angular/core").InputSignal<boolean>;
19
19
  static ɵfac: i0.ɵɵFactoryDeclaration<SuisLabelComponent, never>;
20
- static ɵcmp: i0.ɵɵComponentDeclaration<SuisLabelComponent, "suis-label", never, { "for": { "alias": "for"; "required": false; }; "required": { "alias": "required"; "required": false; }; "pointer": { "alias": "pointer"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; }, {}, never, ["*", "[suisLabelAside]"], true, never>;
20
+ static ɵcmp: i0.ɵɵComponentDeclaration<SuisLabelComponent, "suis-label", never, { "for": { "alias": "for"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "pointer": { "alias": "pointer"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; }, {}, never, ["*", "[suisLabelAside]"], true, never>;
21
21
  }
@@ -1,16 +1,15 @@
1
- import { EventEmitter } from '@angular/core';
2
1
  import { SuisNotification } from './suis-notification.interfaces';
3
2
  import * as i0 from "@angular/core";
4
3
  export declare class SuisNotificationComponent {
5
4
  /**
6
5
  * Notification item data. Type of SuisNotification.
7
6
  */
8
- notification?: SuisNotification | null;
7
+ notification: import("@angular/core").InputSignal<SuisNotification | null | undefined>;
9
8
  /**
10
9
  * Emits on close button action.
11
10
  */
12
- closed: EventEmitter<void>;
11
+ readonly closed: import("@angular/core").OutputEmitterRef<void>;
13
12
  onClose(): void;
14
13
  static ɵfac: i0.ɵɵFactoryDeclaration<SuisNotificationComponent, never>;
15
- static ɵcmp: i0.ɵɵComponentDeclaration<SuisNotificationComponent, "suis-notification", never, { "notification": { "alias": "notification"; "required": true; }; }, { "closed": "closed"; }, never, never, true, never>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<SuisNotificationComponent, "suis-notification", never, { "notification": { "alias": "notification"; "required": true; "isSignal": true; }; }, { "closed": "closed"; }, never, never, true, never>;
16
15
  }
@@ -1,52 +1,54 @@
1
- import { EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core';
1
+ import { OnInit } from '@angular/core';
2
2
  import { FormControl } from '@angular/forms';
3
3
  import * as i0 from "@angular/core";
4
- export declare class SuisPaginationComponent implements OnInit, OnChanges {
4
+ export declare class SuisPaginationComponent implements OnInit {
5
5
  private readonly destroyRef;
6
6
  /** @internal */
7
7
  /**
8
8
  * Number of the maximum page that can be reached based on totalItems and perPage values.
9
9
  */
10
- maxPage: number;
10
+ readonly maxPage: import("@angular/core").Signal<number>;
11
11
  /**
12
12
  * Number of the page presented. By default set to 1.
13
13
  */
14
- page: number;
14
+ readonly page: import("@angular/core").InputSignal<number>;
15
+ _page: import("@angular/core").WritableSignal<number>;
15
16
  /**
16
17
  * Number of items presented per page. Value must be included in perPageOptions. By default set to 15.
17
18
  */
18
- perPage: number;
19
+ readonly perPage: import("@angular/core").InputSignal<number>;
20
+ _perPage: import("@angular/core").WritableSignal<number>;
19
21
  /**
20
22
  * Options of perPage dropdown. Be default set to [10, 15, 20, 25].
21
23
  */
22
- perPageOptions: number[];
24
+ readonly perPageOptions: import("@angular/core").InputSignal<number[]>;
23
25
  /**
24
26
  * Number of total items in data source. By default set to 0.
25
27
  */
26
- totalItems: number;
28
+ readonly totalItems: import("@angular/core").InputSignal<number>;
27
29
  /**
28
30
  * Sets the of label in "1 'of' 25". By default set to 'of'.
29
31
  */
30
- ofLabel: string;
32
+ readonly ofLabel: import("@angular/core").InputSignal<string>;
31
33
  /**
32
34
  * Sets the items label in "1-10 'of' 25 'items'". By default set to 'Page'.
33
35
  */
34
- itemsLabel: string;
36
+ readonly itemsLabel: import("@angular/core").InputSignal<string>;
35
37
  /**
36
38
  * Emits on page value change.
37
39
  */
38
- pageChange: EventEmitter<number>;
40
+ readonly pageChange: import("@angular/core").OutputEmitterRef<number>;
39
41
  /**
40
42
  * Emits on perPage value change.
41
43
  */
42
- perPageChange: EventEmitter<number>;
44
+ readonly perPageChange: import("@angular/core").OutputEmitterRef<number>;
43
45
  /** @internal */
44
46
  perPageControl: FormControl<number>;
47
+ constructor();
45
48
  ngOnInit(): void;
46
- ngOnChanges(changes: SimpleChanges): void;
47
49
  next(): void;
48
50
  previous(): void;
49
51
  onPerPageChange(value: number): void;
50
52
  static ɵfac: i0.ɵɵFactoryDeclaration<SuisPaginationComponent, never>;
51
- static ɵcmp: i0.ɵɵComponentDeclaration<SuisPaginationComponent, "suis-pagination", never, { "page": { "alias": "page"; "required": false; }; "perPage": { "alias": "perPage"; "required": false; }; "perPageOptions": { "alias": "perPageOptions"; "required": false; }; "totalItems": { "alias": "totalItems"; "required": false; }; "ofLabel": { "alias": "ofLabel"; "required": false; }; "itemsLabel": { "alias": "itemsLabel"; "required": false; }; }, { "pageChange": "pageChange"; "perPageChange": "perPageChange"; }, never, never, true, never>;
53
+ static ɵcmp: i0.ɵɵComponentDeclaration<SuisPaginationComponent, "suis-pagination", never, { "page": { "alias": "page"; "required": false; "isSignal": true; }; "perPage": { "alias": "perPage"; "required": false; "isSignal": true; }; "perPageOptions": { "alias": "perPageOptions"; "required": false; "isSignal": true; }; "totalItems": { "alias": "totalItems"; "required": false; "isSignal": true; }; "ofLabel": { "alias": "ofLabel"; "required": false; "isSignal": true; }; "itemsLabel": { "alias": "itemsLabel"; "required": false; "isSignal": true; }; }, { "pageChange": "pageChange"; "perPageChange": "perPageChange"; }, never, never, true, never>;
52
54
  }
@@ -4,23 +4,23 @@ export declare class SuisProgressBarComponent {
4
4
  /**
5
5
  * The value corresponding to the progress bar. By default set to 0.
6
6
  */
7
- value: number;
7
+ readonly value: import("@angular/core").InputSignal<number>;
8
8
  /**
9
9
  * Maximum value of the progress bar. By default set to 100.
10
10
  */
11
- maxValue: number;
11
+ readonly maxValue: import("@angular/core").InputSignal<number>;
12
12
  /**
13
13
  * Sets the color of the progress bar. Type of SuisColor. By default set to 'primary'.
14
14
  */
15
- color: SuisColor;
15
+ readonly color: import("@angular/core").InputSignal<SuisColor>;
16
16
  /**
17
17
  * Sets the background color of the progress bar. Type of SuisColor. By default set to 'tertiary'.
18
18
  */
19
- backgroundColor: SuisColor;
19
+ readonly backgroundColor: import("@angular/core").InputSignal<SuisColor>;
20
20
  /**
21
21
  * Sets the height of the progress bar. Type of SuisSize. By default set to 'md'.
22
22
  */
23
- size: SuisSize;
23
+ readonly size: import("@angular/core").InputSignal<SuisSize>;
24
24
  static ɵfac: i0.ɵɵFactoryDeclaration<SuisProgressBarComponent, never>;
25
- static ɵcmp: i0.ɵɵComponentDeclaration<SuisProgressBarComponent, "suis-progress-bar", never, { "value": { "alias": "value"; "required": false; }; "maxValue": { "alias": "maxValue"; "required": false; }; "color": { "alias": "color"; "required": false; }; "backgroundColor": { "alias": "backgroundColor"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, never, true, never>;
25
+ static ɵcmp: i0.ɵɵComponentDeclaration<SuisProgressBarComponent, "suis-progress-bar", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "maxValue": { "alias": "maxValue"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "backgroundColor": { "alias": "backgroundColor"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
26
26
  }
@@ -5,11 +5,11 @@ export declare class SuisSpinnerComponent {
5
5
  /**
6
6
  * Sets the size of the spinner. Type of SuisSize. By default set to 'sm'.
7
7
  */
8
- size: SuisSize;
8
+ readonly size: import("@angular/core").InputSignal<SuisSize>;
9
9
  /**
10
10
  * Sets the color of the spinner. Type of SuisColor. By default set to 'primary'.
11
11
  */
12
- color: SuisColor;
12
+ readonly color: import("@angular/core").InputSignal<SuisColor>;
13
13
  static ɵfac: i0.ɵɵFactoryDeclaration<SuisSpinnerComponent, never>;
14
- static ɵcmp: i0.ɵɵComponentDeclaration<SuisSpinnerComponent, "suis-spinner", never, { "size": { "alias": "size"; "required": false; }; "color": { "alias": "color"; "required": false; }; }, {}, never, never, true, never>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<SuisSpinnerComponent, "suis-spinner", never, { "size": { "alias": "size"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
15
15
  }