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.
- package/README.md +1 -1
- package/fesm2022/suis.mjs +482 -686
- package/fesm2022/suis.mjs.map +1 -1
- package/lib/components/suis-accordion/suis-accordion.component.d.ts +5 -4
- package/lib/components/suis-alert/suis-alert.component.d.ts +6 -5
- package/lib/components/suis-box/suis-box.component.d.ts +3 -3
- package/lib/components/suis-breadcrumbs/suis-breadcrumbs.component.d.ts +2 -2
- package/lib/components/suis-chart/suis-chart.component.d.ts +8 -8
- package/lib/components/suis-chip/suis-chip.component.d.ts +5 -6
- package/lib/components/suis-container/suis-container.component.d.ts +2 -2
- package/lib/components/suis-dialog/suis-dialog.component.d.ts +6 -7
- package/lib/components/suis-divider/suis-divider.component.d.ts +2 -2
- package/lib/components/suis-form-field/suis-form-field.component.d.ts +2 -2
- package/lib/components/suis-icon/suis-icon.component.d.ts +8 -8
- package/lib/components/suis-input/suis-input.component.d.ts +4 -5
- package/lib/components/suis-input-chips/suis-input-chips.component.d.ts +5 -5
- package/lib/components/suis-input-image/suis-input-image.component.d.ts +3 -3
- package/lib/components/suis-input-number/suis-input-number.component.d.ts +2 -2
- package/lib/components/suis-input-radio/suis-input-radio.component.d.ts +6 -6
- package/lib/components/suis-item/suis-item.component.d.ts +4 -4
- package/lib/components/suis-label/suis-label.component.d.ts +5 -5
- package/lib/components/suis-notification/suis-notification.component.d.ts +3 -4
- package/lib/components/suis-pagination/suis-pagination.component.d.ts +15 -13
- package/lib/components/suis-progress-bar/suis-progress-bar.component.d.ts +6 -6
- package/lib/components/suis-spinner/suis-spinner.component.d.ts +3 -3
- package/lib/components/suis-spinner-container/suis-spinner-container.component.d.ts +5 -5
- package/lib/components/suis-table/suis-table-column.directive.d.ts +1 -1
- package/lib/components/suis-table/suis-table.component.d.ts +12 -10
- package/lib/components/suis-tabs/suis-tab-actions.pipe.d.ts +2 -2
- package/lib/components/suis-tabs/suis-tab-template.pipe.d.ts +2 -2
- package/lib/components/suis-tabs/suis-tab.directive.d.ts +2 -2
- package/lib/components/suis-tabs/suis-tabs.component.d.ts +6 -5
- package/lib/components/suis-text-area/suis-text-area.component.d.ts +2 -2
- package/lib/components/suis-title/suis-title.component.d.ts +2 -2
- package/lib/components/suis-toolbar/suis-toolbar.component.d.ts +2 -2
- package/lib/modules/suis-button/components/suis-button-link/suis-button-link.component.d.ts +6 -6
- package/lib/modules/suis-navigation/components/suis-navigation/suis-navigation.component.d.ts +11 -9
- package/lib/modules/suis-navigation/components/suis-navigation-group/suis-navigation-group.component.d.ts +10 -7
- package/lib/modules/suis-navigation/components/suis-navigation-group-item/suis-navigation-group-item.component.d.ts +11 -9
- package/lib/modules/suis-navigation/components/suis-navigation-item/suis-navigation-item.component.d.ts +5 -5
- package/lib/modules/suis-select/classes/suis-select-button.base.d.ts +7 -8
- package/lib/modules/suis-select/classes/suis-select-multi.base.d.ts +4 -4
- package/lib/modules/suis-select/classes/suis-select-single.base.d.ts +2 -2
- package/lib/modules/suis-select/classes/suis-select.base.d.ts +12 -12
- package/lib/modules/suis-select/components/suis-select-group/suis-select-group.component.d.ts +3 -3
- package/lib/modules/suis-select/components/suis-select-group-option/suis-select-group-option.component.d.ts +4 -4
- package/lib/modules/suis-select/components/suis-select-multi-group/suis-select-multi-group.component.d.ts +3 -3
- package/lib/modules/suis-select/components/suis-select-option/suis-select-option.component.d.ts +10 -10
- package/lib/shared/classes/suis-button.base.d.ts +7 -8
- package/lib/shared/classes/suis-checkbox.base.d.ts +2 -2
- package/lib/shared/classes/suis-input.base.d.ts +8 -8
- package/package.json +1 -1
@@ -5,19 +5,19 @@ export declare class SuisSpinnerContainerComponent {
|
|
5
5
|
/**
|
6
6
|
* Sets the size of the spinner. Type of SuisSize. By default set to 'md'.
|
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
|
/**
|
14
14
|
* Adds blur effect to the container background. By default set to false.
|
15
15
|
*/
|
16
|
-
blur: boolean
|
16
|
+
readonly blur: import("@angular/core").InputSignal<boolean>;
|
17
17
|
/**
|
18
18
|
* Position absolute to the parent element (must have relative position). By default set to false.
|
19
19
|
*/
|
20
|
-
absolute: boolean
|
20
|
+
readonly absolute: import("@angular/core").InputSignal<boolean>;
|
21
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<SuisSpinnerContainerComponent, never>;
|
22
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SuisSpinnerContainerComponent, "suis-spinner-container", never, { "size": { "alias": "size"; "required": false; }; "color": { "alias": "color"; "required": false; }; "blur": { "alias": "blur"; "required": false; }; "absolute": { "alias": "absolute"; "required": false; }; }, {}, never, never, true, never>;
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SuisSpinnerContainerComponent, "suis-spinner-container", never, { "size": { "alias": "size"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "blur": { "alias": "blur"; "required": false; "isSignal": true; }; "absolute": { "alias": "absolute"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
23
23
|
}
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import { SuisTableCellDirective } from './suis-table-cell.directive';
|
2
2
|
import * as i0 from "@angular/core";
|
3
3
|
export declare class SuisTableColumnDirective {
|
4
|
-
cell
|
4
|
+
readonly cell: import("@angular/core").Signal<SuisTableCellDirective | undefined>;
|
5
5
|
protected _name: string;
|
6
6
|
protected _orderProperty: string;
|
7
7
|
/** Unique name for this column. */
|
@@ -1,40 +1,42 @@
|
|
1
|
-
import { EventEmitter, QueryList } from '@angular/core';
|
2
1
|
import { SuisTableDataItem } from './suis-table.interfaces';
|
3
2
|
import { SuisTableColumnDirective } from './suis-table-column.directive';
|
4
3
|
import { SuisSort } from '../../types/suis-sort.type';
|
5
4
|
import * as i0 from "@angular/core";
|
6
5
|
export declare class SuisTableComponent {
|
7
6
|
/** @internal */
|
8
|
-
columns
|
7
|
+
readonly columns: import("@angular/core").Signal<readonly SuisTableColumnDirective[]>;
|
9
8
|
/**
|
10
9
|
* Data items collection. Type of SuisTableDataItem[]. By default set to empty array. Required input.
|
11
10
|
*/
|
12
|
-
data: SuisTableDataItem[] | null
|
11
|
+
readonly data: import("@angular/core").InputSignal<SuisTableDataItem[] | null>;
|
13
12
|
/**
|
14
13
|
* Specifies property that data is ordered. By default set to empty string.
|
15
14
|
*/
|
16
|
-
orderBy: string
|
15
|
+
readonly orderBy: import("@angular/core").InputSignal<string>;
|
16
|
+
_orderBy: import("@angular/core").WritableSignal<string>;
|
17
17
|
/**
|
18
18
|
* Specifies sort condition. Type of SuisSort - 'asc' and 'desc'. By default set to 'asc'.
|
19
19
|
*/
|
20
|
-
sortBy: SuisSort
|
20
|
+
readonly sortBy: import("@angular/core").InputSignal<SuisSort>;
|
21
|
+
_sortBy: import("@angular/core").WritableSignal<SuisSort>;
|
21
22
|
/**
|
22
23
|
* Shows loading spinner and blurs data. By default set to false.
|
23
24
|
*/
|
24
|
-
loading: boolean
|
25
|
+
readonly loading: import("@angular/core").InputSignal<boolean>;
|
25
26
|
/**
|
26
27
|
* Message shown in table when there is no data to display.
|
27
28
|
*/
|
28
|
-
emptyMessage: string
|
29
|
+
readonly emptyMessage: import("@angular/core").InputSignal<string>;
|
29
30
|
/**
|
30
31
|
* Emits value on sort condition change.
|
31
32
|
*/
|
32
|
-
sortByChange:
|
33
|
+
readonly sortByChange: import("@angular/core").OutputEmitterRef<SuisSort>;
|
33
34
|
/**
|
34
35
|
* Emits value on order property change.
|
35
36
|
*/
|
36
|
-
orderByChange:
|
37
|
+
readonly orderByChange: import("@angular/core").OutputEmitterRef<string>;
|
38
|
+
constructor();
|
37
39
|
onColumnClick(property: string): void;
|
38
40
|
static ɵfac: i0.ɵɵFactoryDeclaration<SuisTableComponent, never>;
|
39
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SuisTableComponent, "suis-table", never, { "data": { "alias": "data"; "required": true; }; "orderBy": { "alias": "orderBy"; "required": false; }; "sortBy": { "alias": "sortBy"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "emptyMessage": { "alias": "emptyMessage"; "required": false; }; }, { "sortByChange": "sortByChange"; "orderByChange": "orderByChange"; }, ["columns"], never, true, never>;
|
41
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SuisTableComponent, "suis-table", never, { "data": { "alias": "data"; "required": true; "isSignal": true; }; "orderBy": { "alias": "orderBy"; "required": false; "isSignal": true; }; "sortBy": { "alias": "sortBy"; "required": false; "isSignal": true; }; "loading": { "alias": "loading"; "required": false; "isSignal": true; }; "emptyMessage": { "alias": "emptyMessage"; "required": false; "isSignal": true; }; }, { "sortByChange": "sortByChange"; "orderByChange": "orderByChange"; }, ["columns"], never, true, never>;
|
40
42
|
}
|
@@ -1,8 +1,8 @@
|
|
1
|
-
import { PipeTransform
|
1
|
+
import { PipeTransform } from '@angular/core';
|
2
2
|
import { SuisTabDirective } from './suis-tab.directive';
|
3
3
|
import * as i0 from "@angular/core";
|
4
4
|
export declare class SuisTabActionsPipe implements PipeTransform {
|
5
|
-
transform(tabs:
|
5
|
+
transform(tabs: readonly SuisTabDirective[] | undefined): string[];
|
6
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<SuisTabActionsPipe, never>;
|
7
7
|
static ɵpipe: i0.ɵɵPipeDeclaration<SuisTabActionsPipe, "suisTabActions", true>;
|
8
8
|
}
|
@@ -1,8 +1,8 @@
|
|
1
|
-
import { PipeTransform,
|
1
|
+
import { PipeTransform, TemplateRef } from '@angular/core';
|
2
2
|
import { SuisTabDirective } from './suis-tab.directive';
|
3
3
|
import * as i0 from "@angular/core";
|
4
4
|
export declare class SuisTabTemplatePipe implements PipeTransform {
|
5
|
-
transform(tabs:
|
5
|
+
transform(tabs: readonly SuisTabDirective[] | undefined, currentTab: string): TemplateRef<any> | null;
|
6
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<SuisTabTemplatePipe, never>;
|
7
7
|
static ɵpipe: i0.ɵɵPipeDeclaration<SuisTabTemplatePipe, "suisTabTemplate", true>;
|
8
8
|
}
|
@@ -5,7 +5,7 @@ export declare class SuisTabDirective {
|
|
5
5
|
* Template of the tab.
|
6
6
|
*/
|
7
7
|
readonly templateRef: TemplateRef<any>;
|
8
|
-
name: string
|
8
|
+
readonly name: import("@angular/core").InputSignal<string>;
|
9
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<SuisTabDirective, never>;
|
10
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<SuisTabDirective, "[suisTab]", never, { "name": { "alias": "suisTab"; "required": true; }; }, {}, never, never, true, never>;
|
10
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<SuisTabDirective, "[suisTab]", never, { "name": { "alias": "suisTab"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
11
11
|
}
|
@@ -1,18 +1,19 @@
|
|
1
|
-
import { EventEmitter, QueryList } from '@angular/core';
|
2
1
|
import { SuisTabDirective } from './suis-tab.directive';
|
3
2
|
import * as i0 from "@angular/core";
|
4
3
|
export declare class SuisTabsComponent {
|
5
4
|
/** @internal */
|
6
|
-
tabs
|
5
|
+
readonly tabs: import("@angular/core").Signal<readonly SuisTabDirective[]>;
|
7
6
|
/**
|
8
7
|
* Name of the current displayed tab. Must correspond with the name passed into suisTab directive. By default set to empty string.
|
9
8
|
*/
|
10
|
-
currentTab: string
|
9
|
+
readonly currentTab: import("@angular/core").InputSignal<string>;
|
10
|
+
_currentTab: import("@angular/core").WritableSignal<string>;
|
11
11
|
/**
|
12
12
|
* Emits name of the clicked tab.
|
13
13
|
*/
|
14
|
-
tabClicked:
|
14
|
+
readonly tabClicked: import("@angular/core").OutputEmitterRef<string>;
|
15
|
+
constructor();
|
15
16
|
onTabActionClick(name: string): void;
|
16
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<SuisTabsComponent, never>;
|
17
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SuisTabsComponent, "suis-tabs", never, { "currentTab": { "alias": "currentTab"; "required": false; }; }, { "tabClicked": "tabClicked"; }, ["tabs"], never, true, never>;
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SuisTabsComponent, "suis-tabs", never, { "currentTab": { "alias": "currentTab"; "required": false; "isSignal": true; }; }, { "tabClicked": "tabClicked"; }, ["tabs"], never, true, never>;
|
18
19
|
}
|
@@ -4,11 +4,11 @@ export declare class SuisTextAreaComponent 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: string;
|
10
10
|
writeValue(obj: string): void;
|
11
11
|
onChange(event: Event): void;
|
12
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<SuisTextAreaComponent, never>;
|
13
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SuisTextAreaComponent, "suis-text-area", never, { "placeholder": { "alias": "placeholder"; "required": false; }; }, {}, never, never, true, never>;
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SuisTextAreaComponent, "suis-text-area", never, { "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
14
14
|
}
|
@@ -6,7 +6,7 @@ export declare class SuisTitleComponent {
|
|
6
6
|
/**
|
7
7
|
* Sets level of the header tag. Type of SuisTitle. By default set to H1.
|
8
8
|
*/
|
9
|
-
level: SuisTitle
|
9
|
+
readonly level: import("@angular/core").InputSignal<SuisTitle>;
|
10
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<SuisTitleComponent, never>;
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SuisTitleComponent, "suis-title", never, { "level": { "alias": "level"; "required": false; }; }, {}, never, ["*"], true, never>;
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SuisTitleComponent, "suis-title", never, { "level": { "alias": "level"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
12
12
|
}
|
@@ -3,7 +3,7 @@ export declare class SuisToolbarComponent {
|
|
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<SuisToolbarComponent, never>;
|
8
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SuisToolbarComponent, "suis-toolbar", never, { "spacing": { "alias": "spacing"; "required": false; }; }, {}, never, ["[suisToolbarLeft]", "[suisToolbarCenter]", "[suisToolbarRight]"], true, never>;
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SuisToolbarComponent, "suis-toolbar", never, { "spacing": { "alias": "spacing"; "required": false; "isSignal": true; }; }, {}, never, ["[suisToolbarLeft]", "[suisToolbarCenter]", "[suisToolbarRight]"], true, never>;
|
9
9
|
}
|
@@ -5,24 +5,24 @@ export declare class SuisButtonLinkComponent extends SuisButtonBase {
|
|
5
5
|
/**
|
6
6
|
* Sets routerLink of the anchor tag. No default value.
|
7
7
|
*/
|
8
|
-
routerLink
|
8
|
+
readonly routerLink: import("@angular/core").InputSignal<string | any[] | undefined>;
|
9
9
|
/**
|
10
10
|
* Sets target of the anchor tag. No default value.
|
11
11
|
*/
|
12
|
-
target
|
12
|
+
readonly target: import("@angular/core").InputSignal<string | undefined>;
|
13
13
|
/**
|
14
14
|
* Sets queryParams of the anchor tag. No default value.
|
15
15
|
*/
|
16
|
-
queryParams
|
16
|
+
readonly queryParams: import("@angular/core").InputSignal<Params | undefined>;
|
17
17
|
/**
|
18
18
|
* Sets queryParamsHandling of the anchor tag. No default value.
|
19
19
|
*/
|
20
|
-
queryParamsHandling
|
20
|
+
readonly queryParamsHandling: import("@angular/core").InputSignal<QueryParamsHandling | undefined>;
|
21
21
|
/**
|
22
22
|
* Sets relativeTo of the anchor tag. No default value.
|
23
23
|
*/
|
24
|
-
relativeTo
|
24
|
+
readonly relativeTo: import("@angular/core").InputSignal<ActivatedRoute | undefined>;
|
25
25
|
onClick(event: Event): void;
|
26
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<SuisButtonLinkComponent, never>;
|
27
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SuisButtonLinkComponent, "suis-button-link", never, { "routerLink": { "alias": "routerLink"; "required": true; }; "target": { "alias": "target"; "required": false; }; "queryParams": { "alias": "queryParams"; "required": false; }; "queryParamsHandling": { "alias": "queryParamsHandling"; "required": false; }; "relativeTo": { "alias": "relativeTo"; "required": false; }; }, {}, never, ["*"], true, never>;
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SuisButtonLinkComponent, "suis-button-link", never, { "routerLink": { "alias": "routerLink"; "required": true; "isSignal": true; }; "target": { "alias": "target"; "required": false; "isSignal": true; }; "queryParams": { "alias": "queryParams"; "required": false; "isSignal": true; }; "queryParamsHandling": { "alias": "queryParamsHandling"; "required": false; "isSignal": true; }; "relativeTo": { "alias": "relativeTo"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
28
28
|
}
|
package/lib/modules/suis-navigation/components/suis-navigation/suis-navigation.component.d.ts
CHANGED
@@ -4,38 +4,40 @@ import { SuisNavigationItemDirective } from '../../directives/suis-navigation-it
|
|
4
4
|
import * as i0 from "@angular/core";
|
5
5
|
export declare class SuisNavigationComponent {
|
6
6
|
/** @internal */
|
7
|
-
suisNavigationItem
|
7
|
+
readonly suisNavigationItem: import("@angular/core").Signal<SuisNavigationItemDirective | undefined>;
|
8
8
|
/**
|
9
9
|
* List of navigation items. Type of SuisNavigationGroupItem[]. By default set to empty array.
|
10
10
|
*/
|
11
|
-
items: SuisNavigationGroupItem[]
|
11
|
+
readonly items: import("@angular/core").InputSignal<SuisNavigationGroupItem[]>;
|
12
12
|
/**
|
13
13
|
* Condition to expand groups at view initialization. By default set to true.
|
14
14
|
*/
|
15
|
-
expandedGroups: boolean
|
15
|
+
readonly expandedGroups: import("@angular/core").InputSignal<boolean>;
|
16
16
|
/**
|
17
17
|
* Adds expand / collapse logic to group header items. By default set to false.
|
18
18
|
*/
|
19
|
-
expandable: boolean
|
19
|
+
readonly expandable: import("@angular/core").InputSignal<boolean>;
|
20
20
|
/**
|
21
21
|
* Adds collapse / expand logic to navigiaton. By default set to false.
|
22
22
|
*/
|
23
|
-
collapsable: boolean
|
23
|
+
readonly collapsable: import("@angular/core").InputSignal<boolean>;
|
24
24
|
/**
|
25
25
|
* Collapses the navigiation, when collapsable is enabled. By default set to false.
|
26
26
|
*/
|
27
|
-
collapsed: boolean
|
27
|
+
readonly collapsed: import("@angular/core").InputSignal<boolean>;
|
28
|
+
_collapsed: import("@angular/core").WritableSignal<boolean>;
|
28
29
|
/**
|
29
30
|
* Emits on collapsed value changed.
|
30
31
|
*/
|
31
|
-
collaspedChange: EventEmitter<boolean
|
32
|
+
readonly collaspedChange: import("@angular/core").InputSignal<EventEmitter<boolean>>;
|
32
33
|
/**
|
33
34
|
* Enables dark mode pallette. By default set to true.
|
34
35
|
*/
|
35
|
-
darkMode: boolean
|
36
|
+
readonly darkMode: import("@angular/core").InputSignal<boolean>;
|
37
|
+
constructor();
|
36
38
|
onToggle(): void;
|
37
39
|
/** @internal */
|
38
40
|
groupItemTrackBy(index: number, groupItem: SuisNavigationGroupItem): string;
|
39
41
|
static ɵfac: i0.ɵɵFactoryDeclaration<SuisNavigationComponent, never>;
|
40
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SuisNavigationComponent, "suis-navigation", never, { "items": { "alias": "items"; "required": false; }; "expandedGroups": { "alias": "expandedGroups"; "required": false; }; "expandable": { "alias": "expandable"; "required": false; }; "collapsable": { "alias": "collapsable"; "required": false; }; "collapsed": { "alias": "collapsed"; "required": false; }; "collaspedChange": { "alias": "collaspedChange"; "required": false; }; "darkMode": { "alias": "darkMode"; "required": false; }; }, {}, ["suisNavigationItem"], never, true, never>;
|
42
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SuisNavigationComponent, "suis-navigation", never, { "items": { "alias": "items"; "required": false; "isSignal": true; }; "expandedGroups": { "alias": "expandedGroups"; "required": false; "isSignal": true; }; "expandable": { "alias": "expandable"; "required": false; "isSignal": true; }; "collapsable": { "alias": "collapsable"; "required": false; "isSignal": true; }; "collapsed": { "alias": "collapsed"; "required": false; "isSignal": true; }; "collaspedChange": { "alias": "collaspedChange"; "required": false; "isSignal": true; }; "darkMode": { "alias": "darkMode"; "required": false; "isSignal": true; }; }, {}, ["suisNavigationItem"], never, true, never>;
|
41
43
|
}
|
@@ -5,27 +5,30 @@ export declare class SuisNavigationGroupComponent {
|
|
5
5
|
/**
|
6
6
|
* Navigation item data. Type of SuisNavigationGroupItem.
|
7
7
|
*/
|
8
|
-
item
|
8
|
+
readonly item: import("@angular/core").InputSignal<SuisNavigationGroupItem | undefined>;
|
9
9
|
/**
|
10
10
|
* Template to be displayed instead of item's label.
|
11
11
|
*/
|
12
|
-
templateRef
|
12
|
+
readonly templateRef: import("@angular/core").InputSignal<TemplateRef<{
|
13
13
|
$implicit: SuisNavigationItem;
|
14
|
-
}>;
|
14
|
+
}> | undefined>;
|
15
15
|
/**
|
16
16
|
* Expanded state of the navigation group. By default set to true.
|
17
17
|
*/
|
18
|
-
expanded: boolean
|
18
|
+
readonly expanded: import("@angular/core").InputSignal<boolean>;
|
19
|
+
_expanded: import("@angular/core").WritableSignal<boolean>;
|
19
20
|
/**
|
20
21
|
* Adds expand / collapse logic to group header items. By default set to false.
|
21
22
|
*/
|
22
|
-
expandable: boolean
|
23
|
+
readonly expandable: import("@angular/core").InputSignal<boolean>;
|
23
24
|
/**
|
24
25
|
* Enables dark mode pallette. By default set to true.
|
25
26
|
*/
|
26
|
-
darkMode: boolean
|
27
|
+
readonly darkMode: import("@angular/core").InputSignal<boolean>;
|
28
|
+
constructor();
|
27
29
|
/** @internal */
|
28
30
|
itemTrackBy(index: number, item: SuisNavigationGroupItem): string;
|
31
|
+
onExpandedChange(value: boolean): void;
|
29
32
|
static ɵfac: i0.ɵɵFactoryDeclaration<SuisNavigationGroupComponent, never>;
|
30
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SuisNavigationGroupComponent, "suis-navigation-group", never, { "item": { "alias": "item"; "required": false; }; "templateRef": { "alias": "templateRef"; "required": false; }; "expanded": { "alias": "expanded"; "required": false; }; "expandable": { "alias": "expandable"; "required": false; }; "darkMode": { "alias": "darkMode"; "required": false; }; }, {}, never, never, true, never>;
|
33
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SuisNavigationGroupComponent, "suis-navigation-group", never, { "item": { "alias": "item"; "required": false; "isSignal": true; }; "templateRef": { "alias": "templateRef"; "required": false; "isSignal": true; }; "expanded": { "alias": "expanded"; "required": false; "isSignal": true; }; "expandable": { "alias": "expandable"; "required": false; "isSignal": true; }; "darkMode": { "alias": "darkMode"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
31
34
|
}
|
@@ -1,34 +1,36 @@
|
|
1
|
-
import {
|
1
|
+
import { TemplateRef } from '@angular/core';
|
2
2
|
import { SuisNavigationGroupItem, SuisNavigationItem } from '../../interfaces/suis-navigation-item.interfaces';
|
3
3
|
import * as i0 from "@angular/core";
|
4
4
|
export declare class SuisNavigationGroupItemComponent {
|
5
5
|
/**
|
6
6
|
* Navigation item data. Type of SuisNavigationGroupItem.
|
7
7
|
*/
|
8
|
-
item
|
8
|
+
readonly item: import("@angular/core").InputSignal<SuisNavigationGroupItem | undefined>;
|
9
9
|
/**
|
10
10
|
* Template to be displayed instead of item's label.s
|
11
11
|
*/
|
12
|
-
templateRef
|
12
|
+
readonly templateRef: import("@angular/core").InputSignal<TemplateRef<{
|
13
13
|
$implicit: SuisNavigationItem;
|
14
|
-
}>;
|
14
|
+
}> | undefined>;
|
15
15
|
/**
|
16
16
|
* Controlls styling of the item based on expanded state of group. By default set to true.
|
17
17
|
*/
|
18
|
-
expanded: boolean
|
18
|
+
readonly expanded: import("@angular/core").InputSignal<boolean>;
|
19
|
+
_expanded: import("@angular/core").WritableSignal<boolean>;
|
19
20
|
/**
|
20
21
|
* Adds expand / collapse logic to item. By default set to false.
|
21
22
|
*/
|
22
|
-
expandable: boolean
|
23
|
+
readonly expandable: import("@angular/core").InputSignal<boolean>;
|
23
24
|
/**
|
24
25
|
* Emits when expanded value of the item has been changed.
|
25
26
|
*/
|
26
|
-
expandedChange:
|
27
|
+
readonly expandedChange: import("@angular/core").OutputEmitterRef<boolean>;
|
27
28
|
/**
|
28
29
|
* Enables dark mode pallette. By default set to true.
|
29
30
|
*/
|
30
|
-
darkMode: boolean
|
31
|
+
readonly darkMode: import("@angular/core").InputSignal<boolean>;
|
32
|
+
constructor();
|
31
33
|
onToggle(): void;
|
32
34
|
static ɵfac: i0.ɵɵFactoryDeclaration<SuisNavigationGroupItemComponent, never>;
|
33
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SuisNavigationGroupItemComponent, "suis-navigation-group-item", never, { "item": { "alias": "item"; "required": false; }; "templateRef": { "alias": "templateRef"; "required": false; }; "expanded": { "alias": "expanded"; "required": false; }; "expandable": { "alias": "expandable"; "required": false; }; "darkMode": { "alias": "darkMode"; "required": false; }; }, { "expandedChange": "expandedChange"; }, never, never, true, never>;
|
35
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SuisNavigationGroupItemComponent, "suis-navigation-group-item", never, { "item": { "alias": "item"; "required": false; "isSignal": true; }; "templateRef": { "alias": "templateRef"; "required": false; "isSignal": true; }; "expanded": { "alias": "expanded"; "required": false; "isSignal": true; }; "expandable": { "alias": "expandable"; "required": false; "isSignal": true; }; "darkMode": { "alias": "darkMode"; "required": false; "isSignal": true; }; }, { "expandedChange": "expandedChange"; }, never, never, true, never>;
|
34
36
|
}
|
@@ -5,17 +5,17 @@ export declare class SuisNavigationItemComponent {
|
|
5
5
|
/**
|
6
6
|
* Navigation item data. Type of SuisNavigationItem.
|
7
7
|
*/
|
8
|
-
item
|
8
|
+
readonly item: import("@angular/core").InputSignal<SuisNavigationItem | undefined>;
|
9
9
|
/**
|
10
10
|
* Template to be displayed instead of item's label.
|
11
11
|
*/
|
12
|
-
templateRef
|
12
|
+
readonly templateRef: import("@angular/core").InputSignal<TemplateRef<{
|
13
13
|
$implicit: SuisNavigationItem;
|
14
|
-
}>;
|
14
|
+
}> | undefined>;
|
15
15
|
/**
|
16
16
|
* Enables dark mode pallette. By default set to true.
|
17
17
|
*/
|
18
|
-
darkMode: boolean
|
18
|
+
readonly darkMode: import("@angular/core").InputSignal<boolean>;
|
19
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<SuisNavigationItemComponent, never>;
|
20
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SuisNavigationItemComponent, "suis-navigation-item", never, { "item": { "alias": "item"; "required": false; }; "templateRef": { "alias": "templateRef"; "required": false; }; "darkMode": { "alias": "darkMode"; "required": false; }; }, {}, never, never, true, never>;
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SuisNavigationItemComponent, "suis-navigation-item", never, { "item": { "alias": "item"; "required": false; "isSignal": true; }; "templateRef": { "alias": "templateRef"; "required": false; "isSignal": true; }; "darkMode": { "alias": "darkMode"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
21
21
|
}
|
@@ -1,32 +1,31 @@
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
2
1
|
import * as i0 from "@angular/core";
|
3
2
|
export declare abstract class SuisSelectButtonBase {
|
4
3
|
/**
|
5
4
|
* Sets the readonly state of select button. By default set to false.
|
6
5
|
*/
|
7
|
-
readonly: boolean
|
6
|
+
readonly readonly: import("@angular/core").InputSignal<boolean>;
|
8
7
|
/**
|
9
8
|
* Sets the invalid state of select button. By default set to false.
|
10
9
|
*/
|
11
|
-
invalid: boolean
|
10
|
+
readonly invalid: import("@angular/core").InputSignal<boolean>;
|
12
11
|
/**
|
13
12
|
* Allows to clear the select value by using cross icon in button. By default set to false.
|
14
13
|
*/
|
15
|
-
clearable: boolean
|
14
|
+
readonly clearable: import("@angular/core").InputSignal<boolean>;
|
16
15
|
/**
|
17
16
|
* Indicates if select content is expanded and styles chevron accordingly. By default set to false.
|
18
17
|
*/
|
19
|
-
expanded: boolean
|
18
|
+
readonly expanded: import("@angular/core").InputSignal<boolean>;
|
20
19
|
/**
|
21
20
|
* Emits on button click.
|
22
21
|
*/
|
23
|
-
expandedChange:
|
22
|
+
readonly expandedChange: import("@angular/core").OutputEmitterRef<void>;
|
24
23
|
/**
|
25
24
|
* Emits on button cross icon click.
|
26
25
|
*/
|
27
|
-
cleared:
|
26
|
+
readonly cleared: import("@angular/core").OutputEmitterRef<any>;
|
28
27
|
onExpand(): void;
|
29
28
|
onClear(event: any): void;
|
30
29
|
static ɵfac: i0.ɵɵFactoryDeclaration<SuisSelectButtonBase, never>;
|
31
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<SuisSelectButtonBase, never, never, { "readonly": { "alias": "readonly"; "required": false; }; "invalid": { "alias": "invalid"; "required": false; }; "clearable": { "alias": "clearable"; "required": false; }; "expanded": { "alias": "expanded"; "required": false; }; }, { "expandedChange": "expandedChange"; "cleared": "cleared"; }, never, never, true, never>;
|
30
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<SuisSelectButtonBase, never, never, { "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "invalid": { "alias": "invalid"; "required": false; "isSignal": true; }; "clearable": { "alias": "clearable"; "required": false; "isSignal": true; }; "expanded": { "alias": "expanded"; "required": false; "isSignal": true; }; }, { "expandedChange": "expandedChange"; "cleared": "cleared"; }, never, never, true, never>;
|
32
31
|
}
|
@@ -7,20 +7,20 @@ export declare abstract class SuisSelectMultiBase<T> extends SuisSelectBase<T> {
|
|
7
7
|
/**
|
8
8
|
* Allows to select duplicated values and remove checkboxes next to options' label. By default set to false.
|
9
9
|
*/
|
10
|
-
duplicate: boolean
|
10
|
+
readonly duplicate: import("@angular/core").InputSignal<boolean>;
|
11
11
|
/**
|
12
12
|
* Sets the color pallette of the chips. Type of SuisColor. By default set to 'primary'.
|
13
13
|
*/
|
14
|
-
chipColor: SuisColor
|
14
|
+
readonly chipColor: import("@angular/core").InputSignal<SuisColor>;
|
15
15
|
/**
|
16
16
|
* Sets the color of the chips' cross icon. Type of SuisColor. By default set to 'white'.
|
17
17
|
*/
|
18
|
-
chipIconColor: SuisColor
|
18
|
+
readonly chipIconColor: import("@angular/core").InputSignal<SuisColor>;
|
19
19
|
writeValue(obj: T[]): void;
|
20
20
|
onSelect(value: T): void;
|
21
21
|
onRemove(index: number): void;
|
22
22
|
clearValue(): void;
|
23
23
|
setValue(value: T[]): void;
|
24
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<SuisSelectMultiBase<any>, never>;
|
25
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<SuisSelectMultiBase<any>, never, never, { "duplicate": { "alias": "duplicate"; "required": false; }; "chipColor": { "alias": "chipColor"; "required": false; }; "chipIconColor": { "alias": "chipIconColor"; "required": false; }; }, {}, never, never, true, never>;
|
25
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<SuisSelectMultiBase<any>, never, never, { "duplicate": { "alias": "duplicate"; "required": false; "isSignal": true; }; "chipColor": { "alias": "chipColor"; "required": false; "isSignal": true; }; "chipIconColor": { "alias": "chipIconColor"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
26
26
|
}
|
@@ -6,11 +6,11 @@ export declare abstract class SuisSelectSingleBase<T> extends SuisSelectBase<T>
|
|
6
6
|
/**
|
7
7
|
* Allows mechanism of clearing value. By default set to true.
|
8
8
|
*/
|
9
|
-
nullable: boolean
|
9
|
+
readonly nullable: import("@angular/core").InputSignal<boolean>;
|
10
10
|
writeValue(obj: T): void;
|
11
11
|
onSelect(value: T): void;
|
12
12
|
clearValue(): void;
|
13
13
|
setValue(value: T | null): void;
|
14
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<SuisSelectSingleBase<any>, never>;
|
15
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<SuisSelectSingleBase<any>, never, never, { "nullable": { "alias": "nullable"; "required": false; }; }, {}, never, never, true, never>;
|
15
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<SuisSelectSingleBase<any>, never, never, { "nullable": { "alias": "nullable"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
16
16
|
}
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { ElementRef
|
1
|
+
import { ElementRef } from '@angular/core';
|
2
2
|
import { SuisInputBase } from '../../../shared/classes/suis-input.base';
|
3
3
|
import { SuisSelectOption } from '../interfaces/suis-select-option.interfaces';
|
4
4
|
import { SuisSelectOptionDirective } from '../directives/suis-select-option.directive';
|
@@ -6,9 +6,9 @@ import { SuisSortOptional } from '../../../types/suis-sort.type';
|
|
6
6
|
import * as i0 from "@angular/core";
|
7
7
|
export declare abstract class SuisSelectBase<T> extends SuisInputBase {
|
8
8
|
/** @internal */
|
9
|
-
suisSelectOption
|
9
|
+
readonly suisSelectOption: import("@angular/core").Signal<SuisSelectOptionDirective | undefined>;
|
10
10
|
/** @internal */
|
11
|
-
searchInput
|
11
|
+
readonly searchInput: import("@angular/core").Signal<ElementRef<any> | undefined>;
|
12
12
|
/** @internal */
|
13
13
|
protected searchPhrase: string;
|
14
14
|
/** @internal */
|
@@ -16,35 +16,35 @@ export declare abstract class SuisSelectBase<T> extends SuisInputBase {
|
|
16
16
|
/**
|
17
17
|
* Options displayed in dropdown list. Type of SuisSelectOption[].
|
18
18
|
*/
|
19
|
-
options: SuisSelectOption[]
|
19
|
+
readonly options: import("@angular/core").InputSignal<SuisSelectOption[]>;
|
20
20
|
/**
|
21
21
|
* Defines way of sorting options. Type of SuisSortOptional. By default set to 'asc'.
|
22
22
|
*/
|
23
|
-
sortOptions: SuisSortOptional
|
23
|
+
readonly sortOptions: import("@angular/core").InputSignal<SuisSortOptional>;
|
24
24
|
/**
|
25
25
|
* Displays search input above options. By default set to true.
|
26
26
|
*/
|
27
|
-
search: boolean
|
27
|
+
readonly search: import("@angular/core").InputSignal<boolean>;
|
28
28
|
/**
|
29
29
|
* Placeholder text displayed in options search. By default set to 'Search...'.
|
30
30
|
*/
|
31
|
-
searchPlaceholder: string
|
31
|
+
readonly searchPlaceholder: import("@angular/core").InputSignal<string>;
|
32
32
|
/**
|
33
33
|
* Placeholder text displayed when value is not selected. By default set to 'Select option...'.
|
34
34
|
*/
|
35
|
-
placeholder: string
|
35
|
+
readonly placeholder: import("@angular/core").InputSignal<string>;
|
36
36
|
/**
|
37
37
|
* Option value property name in options. By default set to 'value'.
|
38
38
|
*/
|
39
|
-
optionValue: string
|
39
|
+
readonly optionValue: import("@angular/core").InputSignal<string>;
|
40
40
|
/**
|
41
41
|
* Option label property name in options. By default set to 'label'.
|
42
42
|
*/
|
43
|
-
optionLabel: string
|
43
|
+
readonly optionLabel: import("@angular/core").InputSignal<string>;
|
44
44
|
/**
|
45
45
|
* Emits on search phrase changed.
|
46
46
|
*/
|
47
|
-
searchPhraseChanged:
|
47
|
+
readonly searchPhraseChanged: import("@angular/core").OutputEmitterRef<string>;
|
48
48
|
abstract onSelect(value: T): void;
|
49
49
|
abstract clearValue(): void;
|
50
50
|
abstract setValue(value: any): void;
|
@@ -56,5 +56,5 @@ export declare abstract class SuisSelectBase<T> extends SuisInputBase {
|
|
56
56
|
/** @internal */
|
57
57
|
optionTrackBy(index: number, option: SuisSelectOption): string;
|
58
58
|
static ɵfac: i0.ɵɵFactoryDeclaration<SuisSelectBase<any>, never>;
|
59
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<SuisSelectBase<any>, never, never, { "options": { "alias": "options"; "required": false; }; "sortOptions": { "alias": "sortOptions"; "required": false; }; "search": { "alias": "search"; "required": false; }; "searchPlaceholder": { "alias": "searchPlaceholder"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "optionValue": { "alias": "optionValue"; "required": false; }; "optionLabel": { "alias": "optionLabel"; "required": false; }; }, { "searchPhraseChanged": "searchPhraseChanged"; }, ["suisSelectOption"], never, true, never>;
|
59
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<SuisSelectBase<any>, never, never, { "options": { "alias": "options"; "required": false; "isSignal": true; }; "sortOptions": { "alias": "sortOptions"; "required": false; "isSignal": true; }; "search": { "alias": "search"; "required": false; "isSignal": true; }; "searchPlaceholder": { "alias": "searchPlaceholder"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "optionValue": { "alias": "optionValue"; "required": false; "isSignal": true; }; "optionLabel": { "alias": "optionLabel"; "required": false; "isSignal": true; }; }, { "searchPhraseChanged": "searchPhraseChanged"; }, ["suisSelectOption"], never, true, never>;
|
60
60
|
}
|
package/lib/modules/suis-select/components/suis-select-group/suis-select-group.component.d.ts
CHANGED
@@ -4,11 +4,11 @@ import { SuisSelectGroupOption } from '../../interfaces/suis-select-group-option
|
|
4
4
|
import * as i0 from "@angular/core";
|
5
5
|
export declare class SuisSelectGroupComponent<T> extends SuisSelectSingleBase<T> {
|
6
6
|
/** @internal */
|
7
|
-
suisSelectGroupOption
|
7
|
+
readonly suisSelectGroupOption: import("@angular/core").Signal<SuisSelectGroupOptionDirective | undefined>;
|
8
8
|
/**
|
9
9
|
* Group options displayed in dropdown list. Type of SuisSelectGroupOption[].
|
10
10
|
*/
|
11
|
-
groupOptions: SuisSelectGroupOption[]
|
11
|
+
readonly groupOptions: import("@angular/core").InputSignal<SuisSelectGroupOption[]>;
|
12
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<SuisSelectGroupComponent<any>, never>;
|
13
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SuisSelectGroupComponent<any>, "suis-select-group", never, { "groupOptions": { "alias": "groupOptions"; "required": false; }; }, {}, ["suisSelectGroupOption"], never, true, never>;
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SuisSelectGroupComponent<any>, "suis-select-group", never, { "groupOptions": { "alias": "groupOptions"; "required": false; "isSignal": true; }; }, {}, ["suisSelectGroupOption"], never, true, never>;
|
14
14
|
}
|
@@ -5,13 +5,13 @@ export declare class SuisSelectGroupOptionComponent {
|
|
5
5
|
/**
|
6
6
|
* Item data. Type of SuisSelectGroupOption. Required input.
|
7
7
|
*/
|
8
|
-
option
|
8
|
+
readonly option: import("@angular/core").InputSignal<SuisSelectGroupOption | undefined>;
|
9
9
|
/**
|
10
10
|
* Template to be displayed instead of item's label.
|
11
11
|
*/
|
12
|
-
templateRef
|
12
|
+
readonly templateRef: import("@angular/core").InputSignal<TemplateRef<{
|
13
13
|
$implicit: SuisSelectGroupOption;
|
14
|
-
}>;
|
14
|
+
}> | undefined>;
|
15
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<SuisSelectGroupOptionComponent, never>;
|
16
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SuisSelectGroupOptionComponent, "suis-select-group-option", never, { "option": { "alias": "option"; "required": true; }; "templateRef": { "alias": "templateRef"; "required": false; }; }, {}, never, never, true, never>;
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SuisSelectGroupOptionComponent, "suis-select-group-option", never, { "option": { "alias": "option"; "required": true; "isSignal": true; }; "templateRef": { "alias": "templateRef"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
17
17
|
}
|
@@ -4,11 +4,11 @@ import { SuisSelectGroupOptionDirective } from '../../directives/suis-select-gro
|
|
4
4
|
import * as i0 from "@angular/core";
|
5
5
|
export declare class SuisSelectMultiGroupComponent<T> extends SuisSelectMultiBase<T> {
|
6
6
|
/** @internal */
|
7
|
-
suisSelectGroupOption
|
7
|
+
readonly suisSelectGroupOption: import("@angular/core").Signal<SuisSelectGroupOptionDirective | undefined>;
|
8
8
|
/**
|
9
9
|
* Group options displayed in dropdown list. Type of SuisSelectGroupOption[].
|
10
10
|
*/
|
11
|
-
groupOptions: SuisSelectGroupOption[]
|
11
|
+
readonly groupOptions: import("@angular/core").InputSignal<SuisSelectGroupOption[]>;
|
12
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<SuisSelectMultiGroupComponent<any>, never>;
|
13
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SuisSelectMultiGroupComponent<any>, "suis-select-multi-group", never, { "groupOptions": { "alias": "groupOptions"; "required": false; }; }, {}, ["suisSelectGroupOption"], never, true, never>;
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SuisSelectMultiGroupComponent<any>, "suis-select-multi-group", never, { "groupOptions": { "alias": "groupOptions"; "required": false; "isSignal": true; }; }, {}, ["suisSelectGroupOption"], never, true, never>;
|
14
14
|
}
|