@db-ux/ngx-core-components 3.0.0 → 3.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/components/accordion/accordion.d.ts +9 -10
- package/components/accordion-item/accordion-item.d.ts +9 -9
- package/components/badge/badge.d.ts +10 -10
- package/components/brand/brand.d.ts +8 -7
- package/components/button/button.d.ts +20 -19
- package/components/card/card.d.ts +7 -6
- package/components/checkbox/checkbox.d.ts +21 -21
- package/components/custom-select/custom-select.d.ts +51 -51
- package/components/custom-select/model.d.ts +1 -0
- package/components/custom-select-dropdown/custom-select-dropdown.d.ts +5 -4
- package/components/custom-select-form-field/custom-select-form-field.d.ts +4 -3
- package/components/custom-select-list/custom-select-list.d.ts +6 -5
- package/components/custom-select-list-item/custom-select-list-item.d.ts +15 -15
- package/components/divider/divider.d.ts +8 -7
- package/components/drawer/drawer.d.ts +14 -14
- package/components/header/header.d.ts +9 -10
- package/components/icon/icon.d.ts +8 -7
- package/components/infotext/infotext.d.ts +9 -8
- package/components/input/input.d.ts +45 -45
- package/components/link/link.d.ts +16 -15
- package/components/navigation/navigation.d.ts +4 -4
- package/components/navigation-item/navigation-item.d.ts +14 -14
- package/components/notification/notification.d.ts +18 -17
- package/components/page/page.d.ts +9 -8
- package/components/popover/popover.d.ts +11 -11
- package/components/radio/radio.d.ts +14 -14
- package/components/section/section.d.ts +6 -6
- package/components/select/select.d.ts +26 -27
- package/components/stack/stack.d.ts +10 -9
- package/components/switch/switch.d.ts +19 -19
- package/components/tab-item/tab-item.d.ts +16 -16
- package/components/tab-list/tab-list.d.ts +4 -4
- package/components/tab-panel/tab-panel.d.ts +5 -5
- package/components/tabs/tabs.d.ts +13 -14
- package/components/tag/tag.d.ts +14 -13
- package/components/textarea/textarea.d.ts +35 -35
- package/components/tooltip/tooltip.d.ts +11 -11
- package/fesm2022/db-ux-ngx-core-components.mjs +3239 -3151
- package/fesm2022/db-ux-ngx-core-components.mjs.map +1 -1
- package/index.d.ts +39 -0
- package/package.json +3 -3
|
@@ -1,22 +1,23 @@
|
|
|
1
|
-
import { AfterViewInit,
|
|
1
|
+
import { ElementRef, AfterViewInit, InputSignal } from "@angular/core";
|
|
2
2
|
import { ClickEvent, GeneralKeyboardEvent } from "../../shared/model";
|
|
3
|
+
import { DBDrawerProps } from "./model";
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class DBDrawer implements AfterViewInit {
|
|
5
6
|
protected readonly cls: (...args: import("../../utils").ClassNameArg[]) => string;
|
|
6
7
|
protected readonly getBooleanAsString: (originBool?: boolean | string) => any;
|
|
7
8
|
protected readonly DEFAULT_CLOSE_BUTTON: string;
|
|
8
|
-
open:
|
|
9
|
-
position:
|
|
10
|
-
backdrop:
|
|
11
|
-
variant:
|
|
12
|
-
id:
|
|
13
|
-
direction:
|
|
14
|
-
className:
|
|
15
|
-
spacing:
|
|
16
|
-
width:
|
|
17
|
-
rounded:
|
|
18
|
-
closeButtonId:
|
|
19
|
-
closeButtonText:
|
|
9
|
+
open: InputSignal<DBDrawerProps["open"]>;
|
|
10
|
+
position: InputSignal<DBDrawerProps["position"]>;
|
|
11
|
+
backdrop: InputSignal<DBDrawerProps["backdrop"]>;
|
|
12
|
+
variant: InputSignal<DBDrawerProps["variant"]>;
|
|
13
|
+
id: InputSignal<DBDrawerProps["id"]>;
|
|
14
|
+
direction: InputSignal<DBDrawerProps["direction"]>;
|
|
15
|
+
className: InputSignal<DBDrawerProps["className"]>;
|
|
16
|
+
spacing: InputSignal<DBDrawerProps["spacing"]>;
|
|
17
|
+
width: InputSignal<DBDrawerProps["width"]>;
|
|
18
|
+
rounded: InputSignal<DBDrawerProps["rounded"]>;
|
|
19
|
+
closeButtonId: InputSignal<DBDrawerProps["closeButtonId"]>;
|
|
20
|
+
closeButtonText: InputSignal<DBDrawerProps["closeButtonText"]>;
|
|
20
21
|
close: import("@angular/core").OutputEmitterRef<void | KeyboardEvent | MouseEvent | undefined>;
|
|
21
22
|
_ref: import("@angular/core").Signal<ElementRef<any> | undefined>;
|
|
22
23
|
dialogContainerRef: import("@angular/core").Signal<ElementRef<any> | undefined>;
|
|
@@ -30,7 +31,6 @@ export declare class DBDrawer implements AfterViewInit {
|
|
|
30
31
|
* @param customElementSelector the custom element like `my-component`
|
|
31
32
|
*/
|
|
32
33
|
private enableAttributePassing;
|
|
33
|
-
ngOnInit(): void;
|
|
34
34
|
ngAfterViewInit(): void;
|
|
35
35
|
static ɵfac: i0.ɵɵFactoryDeclaration<DBDrawer, never>;
|
|
36
36
|
static ɵcmp: i0.ɵɵComponentDeclaration<DBDrawer, "db-drawer", never, { "open": { "alias": "open"; "required": false; "isSignal": true; }; "position": { "alias": "position"; "required": false; "isSignal": true; }; "backdrop": { "alias": "backdrop"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "direction": { "alias": "direction"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "spacing": { "alias": "spacing"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "rounded": { "alias": "rounded"; "required": false; "isSignal": true; }; "closeButtonId": { "alias": "closeButtonId"; "required": false; "isSignal": true; }; "closeButtonText": { "alias": "closeButtonText"; "required": false; "isSignal": true; }; }, { "close": "close"; }, never, ["[drawer-header]", "*"], true, never>;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { AfterViewInit,
|
|
1
|
+
import { ElementRef, AfterViewInit, InputSignal } from "@angular/core";
|
|
2
|
+
import { DBHeaderProps } from "./model";
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class DBHeader implements AfterViewInit {
|
|
4
5
|
dbNavigation: any;
|
|
@@ -7,15 +8,14 @@ export declare class DBHeader implements AfterViewInit {
|
|
|
7
8
|
protected readonly cls: (...args: import("../../utils").ClassNameArg[]) => string;
|
|
8
9
|
protected readonly getBoolean: (originBool?: boolean | string, propertyName?: string) => boolean | undefined;
|
|
9
10
|
protected readonly DEFAULT_BURGER_MENU: string;
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
width:
|
|
15
|
-
burgerMenuLabel:
|
|
11
|
+
forceMobile: InputSignal<DBHeaderProps["forceMobile"]>;
|
|
12
|
+
drawerOpen: InputSignal<DBHeaderProps["drawerOpen"]>;
|
|
13
|
+
className: InputSignal<DBHeaderProps["className"]>;
|
|
14
|
+
id: InputSignal<DBHeaderProps["id"]>;
|
|
15
|
+
width: InputSignal<DBHeaderProps["width"]>;
|
|
16
|
+
burgerMenuLabel: InputSignal<DBHeaderProps["burgerMenuLabel"]>;
|
|
16
17
|
toggle: import("@angular/core").OutputEmitterRef<boolean | void>;
|
|
17
18
|
_ref: import("@angular/core").Signal<ElementRef<any> | undefined>;
|
|
18
|
-
_id: import("@angular/core").WritableSignal<string | undefined>;
|
|
19
19
|
initialized: import("@angular/core").WritableSignal<boolean>;
|
|
20
20
|
forcedToMobile: import("@angular/core").WritableSignal<boolean | undefined>;
|
|
21
21
|
handleToggle(event?: any): void;
|
|
@@ -27,8 +27,7 @@ export declare class DBHeader implements AfterViewInit {
|
|
|
27
27
|
* @param customElementSelector the custom element like `my-component`
|
|
28
28
|
*/
|
|
29
29
|
private enableAttributePassing;
|
|
30
|
-
ngOnInit(): void;
|
|
31
30
|
ngAfterViewInit(): void;
|
|
32
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<DBHeader, never>;
|
|
33
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DBHeader, "db-header", never, { "
|
|
32
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DBHeader, "db-header", never, { "forceMobile": { "alias": "forceMobile"; "required": false; "isSignal": true; }; "drawerOpen": { "alias": "drawerOpen"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "burgerMenuLabel": { "alias": "burgerMenuLabel"; "required": false; "isSignal": true; }; }, { "toggle": "toggle"; }, ["dbNavigation", "dbMetaNavigation", "dbSecondaryAction"], ["*", "*", "*", "*", "[brand]", "*", "[primary-action]", "*"], true, never>;
|
|
34
33
|
}
|
|
@@ -1,13 +1,14 @@
|
|
|
1
|
-
import { AfterViewInit,
|
|
1
|
+
import { ElementRef, AfterViewInit, InputSignal } from "@angular/core";
|
|
2
|
+
import type { DBIconProps } from "./model";
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class DBIcon implements AfterViewInit {
|
|
4
5
|
protected readonly cls: (...args: import("../../utils").ClassNameArg[]) => string;
|
|
5
|
-
id:
|
|
6
|
-
className:
|
|
7
|
-
icon:
|
|
8
|
-
weight:
|
|
9
|
-
variant:
|
|
10
|
-
text:
|
|
6
|
+
id: InputSignal<DBIconProps["id"]>;
|
|
7
|
+
className: InputSignal<DBIconProps["className"]>;
|
|
8
|
+
icon: InputSignal<DBIconProps["icon"]>;
|
|
9
|
+
weight: InputSignal<DBIconProps["weight"]>;
|
|
10
|
+
variant: InputSignal<DBIconProps["variant"]>;
|
|
11
|
+
text: InputSignal<DBIconProps["text"]>;
|
|
11
12
|
_ref: import("@angular/core").Signal<ElementRef<any> | undefined>;
|
|
12
13
|
constructor();
|
|
13
14
|
/**
|
|
@@ -1,15 +1,16 @@
|
|
|
1
|
-
import { AfterViewInit,
|
|
1
|
+
import { ElementRef, AfterViewInit, InputSignal } from "@angular/core";
|
|
2
|
+
import { DBInfotextProps } from "./model";
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class DBInfotext implements AfterViewInit {
|
|
4
5
|
protected readonly cls: (...args: import("../../utils").ClassNameArg[]) => string;
|
|
5
6
|
protected readonly getBooleanAsString: (originBool?: boolean | string) => any;
|
|
6
|
-
id:
|
|
7
|
-
className:
|
|
8
|
-
icon:
|
|
9
|
-
semantic:
|
|
10
|
-
size:
|
|
11
|
-
showIcon:
|
|
12
|
-
text:
|
|
7
|
+
id: InputSignal<DBInfotextProps["id"]>;
|
|
8
|
+
className: InputSignal<DBInfotextProps["className"]>;
|
|
9
|
+
icon: InputSignal<DBInfotextProps["icon"]>;
|
|
10
|
+
semantic: InputSignal<DBInfotextProps["semantic"]>;
|
|
11
|
+
size: InputSignal<DBInfotextProps["size"]>;
|
|
12
|
+
showIcon: InputSignal<DBInfotextProps["showIcon"]>;
|
|
13
|
+
text: InputSignal<DBInfotextProps["text"]>;
|
|
13
14
|
_ref: import("@angular/core").Signal<ElementRef<any> | undefined>;
|
|
14
15
|
constructor();
|
|
15
16
|
/**
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { AfterViewInit,
|
|
1
|
+
import { ElementRef, AfterViewInit, InputSignal, ModelSignal, Renderer2 } from "@angular/core";
|
|
2
2
|
import { ControlValueAccessor } from '@angular/forms';
|
|
3
3
|
import { ChangeEvent, InputEvent, InteractionEvent, ValueLabelType } from "../../shared/model";
|
|
4
|
+
import { DBInputProps } from "./model";
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class DBInput implements AfterViewInit, ControlValueAccessor {
|
|
6
7
|
private renderer;
|
|
@@ -14,49 +15,49 @@ export declare class DBInput implements AfterViewInit, ControlValueAccessor {
|
|
|
14
15
|
protected readonly getInputValue: (value?: number | string, inputType?: string) => string | number | undefined;
|
|
15
16
|
protected readonly stringPropVisible: (givenString?: string, showString?: boolean | string) => boolean;
|
|
16
17
|
protected readonly DEFAULT_VALID_MESSAGE: string;
|
|
17
|
-
id:
|
|
18
|
-
invalidMessage:
|
|
19
|
-
dataListId:
|
|
20
|
-
message:
|
|
21
|
-
showMessage:
|
|
22
|
-
value:
|
|
23
|
-
validMessage:
|
|
24
|
-
validation:
|
|
25
|
-
required:
|
|
26
|
-
minLength:
|
|
27
|
-
maxLength:
|
|
28
|
-
pattern:
|
|
29
|
-
dataList:
|
|
30
|
-
className:
|
|
31
|
-
variant:
|
|
32
|
-
showLabel:
|
|
33
|
-
showIconLeading:
|
|
34
|
-
showIcon:
|
|
35
|
-
iconLeading:
|
|
36
|
-
icon:
|
|
37
|
-
iconTrailing:
|
|
38
|
-
showRequiredAsterisk:
|
|
39
|
-
showIconTrailing:
|
|
40
|
-
label:
|
|
41
|
-
fieldSizing:
|
|
42
|
-
name:
|
|
43
|
-
type:
|
|
44
|
-
multiple:
|
|
45
|
-
placeholder:
|
|
46
|
-
disabled:
|
|
47
|
-
step:
|
|
48
|
-
maxlength:
|
|
49
|
-
minlength:
|
|
50
|
-
max:
|
|
51
|
-
min:
|
|
52
|
-
readOnly:
|
|
53
|
-
readonly:
|
|
54
|
-
form:
|
|
55
|
-
size:
|
|
56
|
-
autocomplete:
|
|
57
|
-
autofocus:
|
|
58
|
-
ariaDescribedBy:
|
|
59
|
-
messageIcon:
|
|
18
|
+
id: InputSignal<DBInputProps["id"]>;
|
|
19
|
+
invalidMessage: InputSignal<DBInputProps["invalidMessage"]>;
|
|
20
|
+
dataListId: InputSignal<DBInputProps["dataListId"]>;
|
|
21
|
+
message: InputSignal<DBInputProps["message"]>;
|
|
22
|
+
showMessage: InputSignal<DBInputProps["showMessage"]>;
|
|
23
|
+
value: ModelSignal<DBInputProps["value"]>;
|
|
24
|
+
validMessage: InputSignal<DBInputProps["validMessage"]>;
|
|
25
|
+
validation: InputSignal<DBInputProps["validation"]>;
|
|
26
|
+
required: InputSignal<DBInputProps["required"]>;
|
|
27
|
+
minLength: InputSignal<DBInputProps["minLength"]>;
|
|
28
|
+
maxLength: InputSignal<DBInputProps["maxLength"]>;
|
|
29
|
+
pattern: InputSignal<DBInputProps["pattern"]>;
|
|
30
|
+
dataList: InputSignal<DBInputProps["dataList"]>;
|
|
31
|
+
className: InputSignal<DBInputProps["className"]>;
|
|
32
|
+
variant: InputSignal<DBInputProps["variant"]>;
|
|
33
|
+
showLabel: InputSignal<DBInputProps["showLabel"]>;
|
|
34
|
+
showIconLeading: InputSignal<DBInputProps["showIconLeading"]>;
|
|
35
|
+
showIcon: InputSignal<DBInputProps["showIcon"]>;
|
|
36
|
+
iconLeading: InputSignal<DBInputProps["iconLeading"]>;
|
|
37
|
+
icon: InputSignal<DBInputProps["icon"]>;
|
|
38
|
+
iconTrailing: InputSignal<DBInputProps["iconTrailing"]>;
|
|
39
|
+
showRequiredAsterisk: InputSignal<DBInputProps["showRequiredAsterisk"]>;
|
|
40
|
+
showIconTrailing: InputSignal<DBInputProps["showIconTrailing"]>;
|
|
41
|
+
label: InputSignal<DBInputProps["label"]>;
|
|
42
|
+
fieldSizing: InputSignal<DBInputProps["fieldSizing"]>;
|
|
43
|
+
name: InputSignal<DBInputProps["name"]>;
|
|
44
|
+
type: InputSignal<DBInputProps["type"]>;
|
|
45
|
+
multiple: InputSignal<DBInputProps["multiple"]>;
|
|
46
|
+
placeholder: InputSignal<DBInputProps["placeholder"]>;
|
|
47
|
+
disabled: ModelSignal<DBInputProps["disabled"]>;
|
|
48
|
+
step: InputSignal<DBInputProps["step"]>;
|
|
49
|
+
maxlength: InputSignal<DBInputProps["maxlength"]>;
|
|
50
|
+
minlength: InputSignal<DBInputProps["minlength"]>;
|
|
51
|
+
max: InputSignal<DBInputProps["max"]>;
|
|
52
|
+
min: InputSignal<DBInputProps["min"]>;
|
|
53
|
+
readOnly: InputSignal<DBInputProps["readOnly"]>;
|
|
54
|
+
readonly: InputSignal<DBInputProps["readonly"]>;
|
|
55
|
+
form: InputSignal<DBInputProps["form"]>;
|
|
56
|
+
size: InputSignal<DBInputProps["size"]>;
|
|
57
|
+
autocomplete: InputSignal<DBInputProps["autocomplete"]>;
|
|
58
|
+
autofocus: InputSignal<DBInputProps["autofocus"]>;
|
|
59
|
+
ariaDescribedBy: InputSignal<DBInputProps["ariaDescribedBy"]>;
|
|
60
|
+
messageIcon: InputSignal<DBInputProps["messageIcon"]>;
|
|
60
61
|
input: import("@angular/core").OutputEmitterRef<void | Event>;
|
|
61
62
|
change: import("@angular/core").OutputEmitterRef<void | Event>;
|
|
62
63
|
blur: import("@angular/core").OutputEmitterRef<void | FocusEvent>;
|
|
@@ -91,7 +92,6 @@ export declare class DBInput implements AfterViewInit, ControlValueAccessor {
|
|
|
91
92
|
registerOnChange(onChange: any): void;
|
|
92
93
|
registerOnTouched(onTouched: any): void;
|
|
93
94
|
setDisabledState(disabled: boolean): void;
|
|
94
|
-
ngOnInit(): void;
|
|
95
95
|
ngAfterViewInit(): void;
|
|
96
96
|
static ɵfac: i0.ɵɵFactoryDeclaration<DBInput, never>;
|
|
97
97
|
static ɵcmp: i0.ɵɵComponentDeclaration<DBInput, "db-input", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "invalidMessage": { "alias": "invalidMessage"; "required": false; "isSignal": true; }; "dataListId": { "alias": "dataListId"; "required": false; "isSignal": true; }; "message": { "alias": "message"; "required": false; "isSignal": true; }; "showMessage": { "alias": "showMessage"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "validMessage": { "alias": "validMessage"; "required": false; "isSignal": true; }; "validation": { "alias": "validation"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "minLength": { "alias": "minLength"; "required": false; "isSignal": true; }; "maxLength": { "alias": "maxLength"; "required": false; "isSignal": true; }; "pattern": { "alias": "pattern"; "required": false; "isSignal": true; }; "dataList": { "alias": "dataList"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "showLabel": { "alias": "showLabel"; "required": false; "isSignal": true; }; "showIconLeading": { "alias": "showIconLeading"; "required": false; "isSignal": true; }; "showIcon": { "alias": "showIcon"; "required": false; "isSignal": true; }; "iconLeading": { "alias": "iconLeading"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "iconTrailing": { "alias": "iconTrailing"; "required": false; "isSignal": true; }; "showRequiredAsterisk": { "alias": "showRequiredAsterisk"; "required": false; "isSignal": true; }; "showIconTrailing": { "alias": "showIconTrailing"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "fieldSizing": { "alias": "fieldSizing"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "multiple": { "alias": "multiple"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "step": { "alias": "step"; "required": false; "isSignal": true; }; "maxlength": { "alias": "maxlength"; "required": false; "isSignal": true; }; "minlength": { "alias": "minlength"; "required": false; "isSignal": true; }; "max": { "alias": "max"; "required": false; "isSignal": true; }; "min": { "alias": "min"; "required": false; "isSignal": true; }; "readOnly": { "alias": "readOnly"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "form": { "alias": "form"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "autocomplete": { "alias": "autocomplete"; "required": false; "isSignal": true; }; "autofocus": { "alias": "autofocus"; "required": false; "isSignal": true; }; "ariaDescribedBy": { "alias": "ariaDescribedBy"; "required": false; "isSignal": true; }; "messageIcon": { "alias": "messageIcon"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "disabled": "disabledChange"; "input": "input"; "change": "change"; "blur": "blur"; "focus": "focus"; }, never, ["*"], true, never>;
|
|
@@ -1,22 +1,23 @@
|
|
|
1
|
-
import { AfterViewInit,
|
|
1
|
+
import { ElementRef, AfterViewInit, InputSignal } from "@angular/core";
|
|
2
|
+
import { DBLinkProps } from "./model";
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class DBLink implements AfterViewInit {
|
|
4
5
|
protected readonly cls: (...args: import("../../utils").ClassNameArg[]) => string;
|
|
5
6
|
protected readonly getBooleanAsString: (originBool?: boolean | string) => any;
|
|
6
|
-
id:
|
|
7
|
-
className:
|
|
8
|
-
href:
|
|
9
|
-
target:
|
|
10
|
-
rel:
|
|
11
|
-
role:
|
|
12
|
-
hreflang:
|
|
13
|
-
disabled:
|
|
14
|
-
size:
|
|
15
|
-
showIcon:
|
|
16
|
-
variant:
|
|
17
|
-
content:
|
|
18
|
-
wrap:
|
|
19
|
-
text:
|
|
7
|
+
id: InputSignal<DBLinkProps["id"]>;
|
|
8
|
+
className: InputSignal<DBLinkProps["className"]>;
|
|
9
|
+
href: InputSignal<DBLinkProps["href"]>;
|
|
10
|
+
target: InputSignal<DBLinkProps["target"]>;
|
|
11
|
+
rel: InputSignal<DBLinkProps["rel"]>;
|
|
12
|
+
role: InputSignal<DBLinkProps["role"]>;
|
|
13
|
+
hreflang: InputSignal<DBLinkProps["hreflang"]>;
|
|
14
|
+
disabled: InputSignal<DBLinkProps["disabled"]>;
|
|
15
|
+
size: InputSignal<DBLinkProps["size"]>;
|
|
16
|
+
showIcon: InputSignal<DBLinkProps["showIcon"]>;
|
|
17
|
+
variant: InputSignal<DBLinkProps["variant"]>;
|
|
18
|
+
content: InputSignal<DBLinkProps["content"]>;
|
|
19
|
+
wrap: InputSignal<DBLinkProps["wrap"]>;
|
|
20
|
+
text: InputSignal<DBLinkProps["text"]>;
|
|
20
21
|
_ref: import("@angular/core").Signal<ElementRef<any> | undefined>;
|
|
21
22
|
constructor();
|
|
22
23
|
/**
|
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
import { AfterViewInit,
|
|
1
|
+
import { ElementRef, AfterViewInit, InputSignal } from "@angular/core";
|
|
2
|
+
import { DBNavigationProps } from "./model";
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class DBNavigation implements AfterViewInit {
|
|
4
5
|
protected readonly cls: (...args: import("../../utils").ClassNameArg[]) => string;
|
|
5
|
-
id:
|
|
6
|
-
className:
|
|
6
|
+
id: InputSignal<DBNavigationProps["id"]>;
|
|
7
|
+
className: InputSignal<DBNavigationProps["className"]>;
|
|
7
8
|
_ref: import("@angular/core").Signal<ElementRef<any> | undefined>;
|
|
8
9
|
_id: import("@angular/core").WritableSignal<string | undefined>;
|
|
9
10
|
constructor();
|
|
@@ -13,7 +14,6 @@ export declare class DBNavigation implements AfterViewInit {
|
|
|
13
14
|
* @param customElementSelector the custom element like `my-component`
|
|
14
15
|
*/
|
|
15
16
|
private enableAttributePassing;
|
|
16
|
-
ngOnInit(): void;
|
|
17
17
|
ngAfterViewInit(): void;
|
|
18
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<DBNavigation, never>;
|
|
19
19
|
static ɵcmp: i0.ɵɵComponentDeclaration<DBNavigation, "db-navigation", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { AfterViewInit,
|
|
1
|
+
import { ElementRef, AfterViewInit, InputSignal } from "@angular/core";
|
|
2
2
|
import { ClickEvent } from "../../shared/model";
|
|
3
3
|
import { NavigationItemSafeTriangle } from "../../utils/navigation";
|
|
4
|
+
import { DBNavigationItemProps } from "./model";
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class DBNavigationItem implements AfterViewInit {
|
|
6
7
|
dbNavigationContent: any;
|
|
@@ -8,18 +9,18 @@ export declare class DBNavigationItem implements AfterViewInit {
|
|
|
8
9
|
protected readonly getBooleanAsString: (originBool?: boolean | string) => any;
|
|
9
10
|
protected readonly getBoolean: (originBool?: boolean | string, propertyName?: string) => boolean | undefined;
|
|
10
11
|
protected readonly DEFAULT_BACK: string;
|
|
11
|
-
subNavigationExpanded:
|
|
12
|
-
id:
|
|
13
|
-
className:
|
|
14
|
-
width:
|
|
15
|
-
icon:
|
|
16
|
-
showIcon:
|
|
17
|
-
active:
|
|
18
|
-
wrap:
|
|
19
|
-
disabled:
|
|
20
|
-
text:
|
|
21
|
-
backButtonId:
|
|
22
|
-
backButtonText:
|
|
12
|
+
subNavigationExpanded: InputSignal<DBNavigationItemProps["subNavigationExpanded"]>;
|
|
13
|
+
id: InputSignal<DBNavigationItemProps["id"]>;
|
|
14
|
+
className: InputSignal<DBNavigationItemProps["className"]>;
|
|
15
|
+
width: InputSignal<DBNavigationItemProps["width"]>;
|
|
16
|
+
icon: InputSignal<DBNavigationItemProps["icon"]>;
|
|
17
|
+
showIcon: InputSignal<DBNavigationItemProps["showIcon"]>;
|
|
18
|
+
active: InputSignal<DBNavigationItemProps["active"]>;
|
|
19
|
+
wrap: InputSignal<DBNavigationItemProps["wrap"]>;
|
|
20
|
+
disabled: InputSignal<DBNavigationItemProps["disabled"]>;
|
|
21
|
+
text: InputSignal<DBNavigationItemProps["text"]>;
|
|
22
|
+
backButtonId: InputSignal<DBNavigationItemProps["backButtonId"]>;
|
|
23
|
+
backButtonText: InputSignal<DBNavigationItemProps["backButtonText"]>;
|
|
23
24
|
click: import("@angular/core").OutputEmitterRef<void | MouseEvent>;
|
|
24
25
|
_ref: import("@angular/core").Signal<ElementRef<any> | undefined>;
|
|
25
26
|
initialized: import("@angular/core").WritableSignal<boolean>;
|
|
@@ -39,7 +40,6 @@ export declare class DBNavigationItem implements AfterViewInit {
|
|
|
39
40
|
* @param customElementSelector the custom element like `my-component`
|
|
40
41
|
*/
|
|
41
42
|
private enableAttributePassing;
|
|
42
|
-
ngOnInit(): void;
|
|
43
43
|
ngAfterViewInit(): void;
|
|
44
44
|
static ɵfac: i0.ɵɵFactoryDeclaration<DBNavigationItem, never>;
|
|
45
45
|
static ɵcmp: i0.ɵɵComponentDeclaration<DBNavigationItem, "db-navigation-item", never, { "subNavigationExpanded": { "alias": "subNavigationExpanded"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "showIcon": { "alias": "showIcon"; "required": false; "isSignal": true; }; "active": { "alias": "active"; "required": false; "isSignal": true; }; "wrap": { "alias": "wrap"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "text": { "alias": "text"; "required": false; "isSignal": true; }; "backButtonId": { "alias": "backButtonId"; "required": false; "isSignal": true; }; "backButtonText": { "alias": "backButtonText"; "required": false; "isSignal": true; }; }, { "click": "click"; }, ["dbNavigationContent"], ["*", "*", "[sub-navigation]"], true, never>;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import { AfterViewInit,
|
|
1
|
+
import { ElementRef, AfterViewInit, InputSignal } from "@angular/core";
|
|
2
2
|
import { ClickEvent } from "../../shared/model";
|
|
3
|
+
import { DBNotificationProps } from "./model";
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class DBNotification implements AfterViewInit {
|
|
5
6
|
protected readonly cls: (...args: import("../../utils").ClassNameArg[]) => string;
|
|
@@ -7,22 +8,22 @@ export declare class DBNotification implements AfterViewInit {
|
|
|
7
8
|
protected readonly stringPropVisible: (givenString?: string, showString?: boolean | string) => boolean;
|
|
8
9
|
protected readonly getBoolean: (originBool?: boolean | string, propertyName?: string) => boolean | undefined;
|
|
9
10
|
protected readonly DEFAULT_CLOSE_BUTTON: string;
|
|
10
|
-
id:
|
|
11
|
-
className:
|
|
12
|
-
ariaLive:
|
|
13
|
-
semantic:
|
|
14
|
-
variant:
|
|
15
|
-
icon:
|
|
16
|
-
showIcon:
|
|
17
|
-
linkVariant:
|
|
18
|
-
headline:
|
|
19
|
-
showHeadline:
|
|
20
|
-
text:
|
|
21
|
-
timestamp:
|
|
22
|
-
showTimestamp:
|
|
23
|
-
closeable:
|
|
24
|
-
closeButtonId:
|
|
25
|
-
closeButtonText:
|
|
11
|
+
id: InputSignal<DBNotificationProps["id"]>;
|
|
12
|
+
className: InputSignal<DBNotificationProps["className"]>;
|
|
13
|
+
ariaLive: InputSignal<DBNotificationProps["ariaLive"]>;
|
|
14
|
+
semantic: InputSignal<DBNotificationProps["semantic"]>;
|
|
15
|
+
variant: InputSignal<DBNotificationProps["variant"]>;
|
|
16
|
+
icon: InputSignal<DBNotificationProps["icon"]>;
|
|
17
|
+
showIcon: InputSignal<DBNotificationProps["showIcon"]>;
|
|
18
|
+
linkVariant: InputSignal<DBNotificationProps["linkVariant"]>;
|
|
19
|
+
headline: InputSignal<DBNotificationProps["headline"]>;
|
|
20
|
+
showHeadline: InputSignal<DBNotificationProps["showHeadline"]>;
|
|
21
|
+
text: InputSignal<DBNotificationProps["text"]>;
|
|
22
|
+
timestamp: InputSignal<DBNotificationProps["timestamp"]>;
|
|
23
|
+
showTimestamp: InputSignal<DBNotificationProps["showTimestamp"]>;
|
|
24
|
+
closeable: InputSignal<DBNotificationProps["closeable"]>;
|
|
25
|
+
closeButtonId: InputSignal<DBNotificationProps["closeButtonId"]>;
|
|
26
|
+
closeButtonText: InputSignal<DBNotificationProps["closeButtonText"]>;
|
|
26
27
|
close: import("@angular/core").OutputEmitterRef<void | MouseEvent | undefined>;
|
|
27
28
|
_ref: import("@angular/core").Signal<ElementRef<any> | undefined>;
|
|
28
29
|
handleClose(event?: ClickEvent<HTMLButtonElement> | void): void;
|
|
@@ -1,14 +1,15 @@
|
|
|
1
|
-
import { AfterViewInit,
|
|
1
|
+
import { ElementRef, OnDestroy, AfterViewInit, InputSignal } from "@angular/core";
|
|
2
|
+
import { DBPageProps } from "./model";
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class DBPage implements AfterViewInit {
|
|
4
|
+
export declare class DBPage implements AfterViewInit, OnDestroy {
|
|
4
5
|
protected readonly cls: (...args: import("../../utils").ClassNameArg[]) => string;
|
|
5
6
|
protected readonly getBooleanAsString: (originBool?: boolean | string) => any;
|
|
6
|
-
fadeIn:
|
|
7
|
-
documentOverflow:
|
|
8
|
-
variant:
|
|
9
|
-
id:
|
|
10
|
-
className:
|
|
11
|
-
mainClass:
|
|
7
|
+
fadeIn: InputSignal<DBPageProps["fadeIn"]>;
|
|
8
|
+
documentOverflow: InputSignal<DBPageProps["documentOverflow"]>;
|
|
9
|
+
variant: InputSignal<DBPageProps["variant"]>;
|
|
10
|
+
id: InputSignal<DBPageProps["id"]>;
|
|
11
|
+
className: InputSignal<DBPageProps["className"]>;
|
|
12
|
+
mainClass: InputSignal<DBPageProps["mainClass"]>;
|
|
12
13
|
_ref: import("@angular/core").Signal<ElementRef<any> | undefined>;
|
|
13
14
|
fontsLoaded: import("@angular/core").WritableSignal<boolean | undefined>;
|
|
14
15
|
constructor();
|
|
@@ -1,17 +1,18 @@
|
|
|
1
|
-
import { AfterViewInit,
|
|
1
|
+
import { ElementRef, AfterViewInit, InputSignal } from "@angular/core";
|
|
2
|
+
import { DBPopoverProps } from "./model";
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class DBPopover implements AfterViewInit {
|
|
4
5
|
protected readonly cls: (...args: import("../../utils").ClassNameArg[]) => string;
|
|
5
6
|
protected readonly getBooleanAsString: (originBool?: boolean | string) => any;
|
|
6
|
-
placement:
|
|
7
|
-
id:
|
|
8
|
-
className:
|
|
9
|
-
spacing:
|
|
10
|
-
gap:
|
|
11
|
-
animation:
|
|
12
|
-
open:
|
|
13
|
-
delay:
|
|
14
|
-
width:
|
|
7
|
+
placement: InputSignal<DBPopoverProps["placement"]>;
|
|
8
|
+
id: InputSignal<DBPopoverProps["id"]>;
|
|
9
|
+
className: InputSignal<DBPopoverProps["className"]>;
|
|
10
|
+
spacing: InputSignal<DBPopoverProps["spacing"]>;
|
|
11
|
+
gap: InputSignal<DBPopoverProps["gap"]>;
|
|
12
|
+
animation: InputSignal<DBPopoverProps["animation"]>;
|
|
13
|
+
open: InputSignal<DBPopoverProps["open"]>;
|
|
14
|
+
delay: InputSignal<DBPopoverProps["delay"]>;
|
|
15
|
+
width: InputSignal<DBPopoverProps["width"]>;
|
|
15
16
|
_ref: import("@angular/core").Signal<ElementRef<any> | undefined>;
|
|
16
17
|
initialized: import("@angular/core").WritableSignal<boolean>;
|
|
17
18
|
isExpanded: import("@angular/core").WritableSignal<boolean | undefined>;
|
|
@@ -30,7 +31,6 @@ export declare class DBPopover implements AfterViewInit {
|
|
|
30
31
|
* @param customElementSelector the custom element like `my-component`
|
|
31
32
|
*/
|
|
32
33
|
private enableAttributePassing;
|
|
33
|
-
ngOnInit(): void;
|
|
34
34
|
ngAfterViewInit(): void;
|
|
35
35
|
static ɵfac: i0.ɵɵFactoryDeclaration<DBPopover, never>;
|
|
36
36
|
static ɵcmp: i0.ɵɵComponentDeclaration<DBPopover, "db-popover", never, { "placement": { "alias": "placement"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "spacing": { "alias": "spacing"; "required": false; "isSignal": true; }; "gap": { "alias": "gap"; "required": false; "isSignal": true; }; "animation": { "alias": "animation"; "required": false; "isSignal": true; }; "open": { "alias": "open"; "required": false; "isSignal": true; }; "delay": { "alias": "delay"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; }, {}, never, ["[trigger]", "*"], true, never>;
|
|
@@ -1,24 +1,25 @@
|
|
|
1
|
-
import { AfterViewInit,
|
|
1
|
+
import { ElementRef, AfterViewInit, InputSignal, ModelSignal, Renderer2 } from "@angular/core";
|
|
2
2
|
import { ControlValueAccessor } from '@angular/forms';
|
|
3
3
|
import { ChangeEvent, InteractionEvent } from "../../shared/model";
|
|
4
|
+
import { DBRadioProps } from "./model";
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class DBRadio implements AfterViewInit, ControlValueAccessor {
|
|
6
7
|
private renderer;
|
|
7
8
|
protected readonly getHideProp: (show?: boolean | string) => any;
|
|
8
9
|
protected readonly cls: (...args: import("../../utils").ClassNameArg[]) => string;
|
|
9
10
|
protected readonly getBoolean: (originBool?: boolean | string, propertyName?: string) => boolean | undefined;
|
|
10
|
-
id:
|
|
11
|
-
checked:
|
|
12
|
-
size:
|
|
13
|
-
showLabel:
|
|
14
|
-
showRequiredAsterisk:
|
|
15
|
-
className:
|
|
16
|
-
validation:
|
|
17
|
-
name:
|
|
18
|
-
disabled:
|
|
19
|
-
value:
|
|
20
|
-
required:
|
|
21
|
-
label:
|
|
11
|
+
id: InputSignal<DBRadioProps["id"]>;
|
|
12
|
+
checked: InputSignal<DBRadioProps["checked"]>;
|
|
13
|
+
size: InputSignal<DBRadioProps["size"]>;
|
|
14
|
+
showLabel: InputSignal<DBRadioProps["showLabel"]>;
|
|
15
|
+
showRequiredAsterisk: InputSignal<DBRadioProps["showRequiredAsterisk"]>;
|
|
16
|
+
className: InputSignal<DBRadioProps["className"]>;
|
|
17
|
+
validation: InputSignal<DBRadioProps["validation"]>;
|
|
18
|
+
name: InputSignal<DBRadioProps["name"]>;
|
|
19
|
+
disabled: ModelSignal<DBRadioProps["disabled"]>;
|
|
20
|
+
value: ModelSignal<DBRadioProps["value"]>;
|
|
21
|
+
required: InputSignal<DBRadioProps["required"]>;
|
|
22
|
+
label: InputSignal<DBRadioProps["label"]>;
|
|
22
23
|
change: import("@angular/core").OutputEmitterRef<void | Event>;
|
|
23
24
|
blur: import("@angular/core").OutputEmitterRef<void | FocusEvent>;
|
|
24
25
|
focus: import("@angular/core").OutputEmitterRef<void | FocusEvent>;
|
|
@@ -40,7 +41,6 @@ export declare class DBRadio implements AfterViewInit, ControlValueAccessor {
|
|
|
40
41
|
registerOnChange(onChange: any): void;
|
|
41
42
|
registerOnTouched(onTouched: any): void;
|
|
42
43
|
setDisabledState(disabled: boolean): void;
|
|
43
|
-
ngOnInit(): void;
|
|
44
44
|
ngAfterViewInit(): void;
|
|
45
45
|
static ɵfac: i0.ɵɵFactoryDeclaration<DBRadio, never>;
|
|
46
46
|
static ɵcmp: i0.ɵɵComponentDeclaration<DBRadio, "db-radio", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "checked": { "alias": "checked"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "showLabel": { "alias": "showLabel"; "required": false; "isSignal": true; }; "showRequiredAsterisk": { "alias": "showRequiredAsterisk"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "validation": { "alias": "validation"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; }, { "disabled": "disabledChange"; "value": "valueChange"; "change": "change"; "blur": "blur"; "focus": "focus"; }, never, ["*"], true, never>;
|
|
@@ -1,11 +1,12 @@
|
|
|
1
|
-
import { AfterViewInit,
|
|
1
|
+
import { ElementRef, AfterViewInit, InputSignal } from "@angular/core";
|
|
2
|
+
import { DBSectionProps } from "./model";
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class DBSection implements AfterViewInit {
|
|
4
5
|
protected readonly cls: (...args: import("../../utils").ClassNameArg[]) => string;
|
|
5
|
-
id:
|
|
6
|
-
className:
|
|
7
|
-
spacing:
|
|
8
|
-
width:
|
|
6
|
+
id: InputSignal<DBSectionProps["id"]>;
|
|
7
|
+
className: InputSignal<DBSectionProps["className"]>;
|
|
8
|
+
spacing: InputSignal<DBSectionProps["spacing"]>;
|
|
9
|
+
width: InputSignal<DBSectionProps["width"]>;
|
|
9
10
|
_ref: import("@angular/core").Signal<ElementRef<any> | undefined>;
|
|
10
11
|
_id: import("@angular/core").WritableSignal<string | undefined>;
|
|
11
12
|
constructor();
|
|
@@ -15,7 +16,6 @@ export declare class DBSection implements AfterViewInit {
|
|
|
15
16
|
* @param customElementSelector the custom element like `my-component`
|
|
16
17
|
*/
|
|
17
18
|
private enableAttributePassing;
|
|
18
|
-
ngOnInit(): void;
|
|
19
19
|
ngAfterViewInit(): void;
|
|
20
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<DBSection, never>;
|
|
21
21
|
static ɵcmp: i0.ɵɵComponentDeclaration<DBSection, "db-section", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "className": { "alias": "className"; "required": false; "isSignal": true; }; "spacing": { "alias": "spacing"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|