@db-ux/ngx-core-components 4.5.2 → 4.5.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.d.ts
CHANGED
|
@@ -2175,6 +2175,8 @@ type DBNavigationItemDefaultState = {
|
|
|
2175
2175
|
hasSubNavigation?: boolean;
|
|
2176
2176
|
navigationItemSafeTriangle?: NavigationItemSafeTriangle;
|
|
2177
2177
|
autoClose?: boolean;
|
|
2178
|
+
subNavigationId?: string;
|
|
2179
|
+
subNavigationToggleId?: string;
|
|
2178
2180
|
};
|
|
2179
2181
|
type DBNavigationItemState = DBNavigationItemDefaultState & ClickEventState<HTMLButtonElement> & GlobalState & InitializedState & NavigationBehaviorState;
|
|
2180
2182
|
|
|
@@ -2184,8 +2186,8 @@ declare class DBNavigationItem implements AfterViewInit {
|
|
|
2184
2186
|
protected readonly getBooleanAsString: (originBool?: boolean | string) => any;
|
|
2185
2187
|
protected readonly getBoolean: (originBool?: boolean | string, propertyName?: string) => boolean | undefined;
|
|
2186
2188
|
protected readonly DEFAULT_BACK: string;
|
|
2187
|
-
subNavigationExpanded: InputSignal<DBNavigationItemProps["subNavigationExpanded"]>;
|
|
2188
2189
|
id: InputSignal<DBNavigationItemProps["id"]>;
|
|
2190
|
+
subNavigationExpanded: InputSignal<DBNavigationItemProps["subNavigationExpanded"]>;
|
|
2189
2191
|
propOverrides: InputSignal<DBNavigationItemProps["propOverrides"]>;
|
|
2190
2192
|
className: InputSignal<DBNavigationItemProps["className"]>;
|
|
2191
2193
|
width: InputSignal<DBNavigationItemProps["width"]>;
|
|
@@ -2205,6 +2207,8 @@ declare class DBNavigationItem implements AfterViewInit {
|
|
|
2205
2207
|
isSubNavigationExpanded: _angular_core.WritableSignal<boolean>;
|
|
2206
2208
|
autoClose: _angular_core.WritableSignal<boolean | undefined>;
|
|
2207
2209
|
navigationItemSafeTriangle: _angular_core.WritableSignal<NavigationItemSafeTriangle | undefined>;
|
|
2210
|
+
subNavigationId: _angular_core.WritableSignal<string | undefined>;
|
|
2211
|
+
subNavigationToggleId: _angular_core.WritableSignal<string | undefined>;
|
|
2208
2212
|
handleNavigationItemClick(event: any): void;
|
|
2209
2213
|
handleClick(event: ClickEvent<HTMLButtonElement> | any): void;
|
|
2210
2214
|
handleBackClick(event: ClickEvent<HTMLButtonElement> | any): void;
|
|
@@ -2217,7 +2221,7 @@ declare class DBNavigationItem implements AfterViewInit {
|
|
|
2217
2221
|
private enableAttributePassing;
|
|
2218
2222
|
ngAfterViewInit(): void;
|
|
2219
2223
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DBNavigationItem, never>;
|
|
2220
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBNavigationItem, "db-navigation-item", never, { "
|
|
2224
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DBNavigationItem, "db-navigation-item", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "subNavigationExpanded": { "alias": "subNavigationExpanded"; "required": false; "isSignal": true; }; "propOverrides": { "alias": "propOverrides"; "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>;
|
|
2221
2225
|
}
|
|
2222
2226
|
|
|
2223
2227
|
declare class NavigationContentDirective {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@db-ux/ngx-core-components",
|
|
3
|
-
"version": "4.5.
|
|
3
|
+
"version": "4.5.4",
|
|
4
4
|
"description": "Angular components @db-ux/core-components",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -16,8 +16,8 @@
|
|
|
16
16
|
"access": "public"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@db-ux/core-components": "4.5.
|
|
20
|
-
"@db-ux/core-foundations": "4.5.
|
|
19
|
+
"@db-ux/core-components": "4.5.4",
|
|
20
|
+
"@db-ux/core-foundations": "4.5.4",
|
|
21
21
|
"tslib": "^2.3.0"
|
|
22
22
|
},
|
|
23
23
|
"typings": "index.d.ts",
|