@db-ux/ngx-core-components 4.11.1 → 4.12.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@db-ux/ngx-core-components",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.12.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Angular components @db-ux/core-components",
|
|
6
6
|
"repository": {
|
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
"main": "fesm2022/db-ux-ngx-core-components.mjs",
|
|
12
12
|
"module": "fesm2022/db-ux-ngx-core-components.mjs",
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@db-ux/core-components": "4.
|
|
15
|
-
"@db-ux/core-foundations": "4.
|
|
14
|
+
"@db-ux/core-components": "4.12.1",
|
|
15
|
+
"@db-ux/core-foundations": "4.12.1",
|
|
16
16
|
"tslib": "^2.3.0"
|
|
17
17
|
},
|
|
18
18
|
"publishConfig": {
|
|
@@ -1765,6 +1765,9 @@ type DBDrawerDefaultProps = {
|
|
|
1765
1765
|
type DBDrawerProps = DBDrawerDefaultProps & GlobalProps & CloseEventProps<ClickEvent<HTMLButtonElement | HTMLDialogElement> | GeneralKeyboardEvent<HTMLDialogElement>> & InnerCloseButtonProps & WidthProps & SpacingProps;
|
|
1766
1766
|
type DBDrawerDefaultState = {
|
|
1767
1767
|
handleDialogOpen: () => void;
|
|
1768
|
+
isNotModal: () => boolean;
|
|
1769
|
+
handleBackdropPointerDown: (event: any) => void;
|
|
1770
|
+
backdropPointerDown: boolean;
|
|
1768
1771
|
};
|
|
1769
1772
|
type DBDrawerState = DBDrawerDefaultState & GlobalState & CloseEventState<ClickEvent<HTMLButtonElement | HTMLDialogElement> | GeneralKeyboardEvent<HTMLDialogElement>> & InitializedState;
|
|
1770
1773
|
|
|
@@ -1789,7 +1792,10 @@ declare class DBDrawer implements AfterViewInit, OnDestroy {
|
|
|
1789
1792
|
_ref: _angular_core.Signal<ElementRef<any> | undefined>;
|
|
1790
1793
|
dialogContainerRef: _angular_core.Signal<ElementRef<any> | undefined>;
|
|
1791
1794
|
initialized: _angular_core.WritableSignal<boolean>;
|
|
1795
|
+
backdropPointerDown: _angular_core.WritableSignal<boolean>;
|
|
1792
1796
|
observer: _angular_core.WritableSignal<MutationObserver | undefined>;
|
|
1797
|
+
isNotModal(): boolean;
|
|
1798
|
+
handleBackdropPointerDown(event: any): void;
|
|
1793
1799
|
handleClose(event?: ClickEvent<HTMLButtonElement | HTMLDialogElement> | GeneralKeyboardEvent<HTMLDialogElement> | void, forceClose?: boolean): void;
|
|
1794
1800
|
handleDialogOpen(): void;
|
|
1795
1801
|
setupObserver(element: HTMLElement | null): void;
|