@dereekb/dbx-web 13.5.0 → 13.5.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/fesm2022/dereekb-dbx-web-mapbox.mjs +1 -1
- package/fesm2022/dereekb-dbx-web-mapbox.mjs.map +1 -1
- package/fesm2022/dereekb-dbx-web.mjs +16 -6
- package/fesm2022/dereekb-dbx-web.mjs.map +1 -1
- package/lib/button/_button.scss +5 -2
- package/package.json +6 -6
- package/types/dereekb-dbx-web.d.ts +5 -1
package/lib/button/_button.scss
CHANGED
|
@@ -78,14 +78,17 @@ $big-button-height: 46px; // 33% bigger
|
|
|
78
78
|
.dbx-button-column {
|
|
79
79
|
display: flex;
|
|
80
80
|
flex-direction: column;
|
|
81
|
-
align-items: center;
|
|
82
|
-
justify-items: center;
|
|
83
81
|
|
|
84
82
|
> * {
|
|
85
83
|
margin-bottom: 6px !important;
|
|
86
84
|
}
|
|
87
85
|
}
|
|
88
86
|
|
|
87
|
+
.dbx-button-column.dbx-button-column-center {
|
|
88
|
+
align-items: center;
|
|
89
|
+
justify-items: center;
|
|
90
|
+
}
|
|
91
|
+
|
|
89
92
|
// dbx-color interactions
|
|
90
93
|
$color-value: theming.$dbx-bg-color;
|
|
91
94
|
$contrast-value: theming.$dbx-color;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dereekb/dbx-web",
|
|
3
|
-
"version": "13.5.
|
|
3
|
+
"version": "13.5.1",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/cdk": "21.2.3",
|
|
6
6
|
"@angular/common": "21.2.3",
|
|
@@ -8,11 +8,11 @@
|
|
|
8
8
|
"@angular/forms": "21.2.3",
|
|
9
9
|
"@angular/material": "21.2.3",
|
|
10
10
|
"@angular/platform-browser": "21.2.3",
|
|
11
|
-
"@dereekb/browser": "13.5.
|
|
12
|
-
"@dereekb/date": "13.5.
|
|
13
|
-
"@dereekb/dbx-core": "13.5.
|
|
14
|
-
"@dereekb/rxjs": "13.5.
|
|
15
|
-
"@dereekb/util": "13.5.
|
|
11
|
+
"@dereekb/browser": "13.5.1",
|
|
12
|
+
"@dereekb/date": "13.5.1",
|
|
13
|
+
"@dereekb/dbx-core": "13.5.1",
|
|
14
|
+
"@dereekb/rxjs": "13.5.1",
|
|
15
|
+
"@dereekb/util": "13.5.1",
|
|
16
16
|
"@ngbracket/ngx-layout": "^21.0.0",
|
|
17
17
|
"@ngrx/component-store": "^21.0.0",
|
|
18
18
|
"@ngrx/effects": "^21.0.0",
|
|
@@ -718,11 +718,15 @@ interface DbxActionConfirmConfig<T = unknown> extends DbxPromptConfirmConfig {
|
|
|
718
718
|
declare class DbxActionConfirmDirective<T = unknown, O = unknown> extends AbstractPromptConfirmDirective {
|
|
719
719
|
readonly source: DbxActionContextStoreSourceInstance<T, O>;
|
|
720
720
|
readonly dbxActionConfirm: _angular_core.InputSignalWithTransform<Maybe<DbxActionConfirmConfig<T>>, Maybe<"" | DbxActionConfirmConfig<T>>>;
|
|
721
|
+
/**
|
|
722
|
+
* When true, the confirmation dialog is disabled and the action proceeds without prompting.
|
|
723
|
+
*/
|
|
724
|
+
readonly dbxActionConfirmSkip: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
721
725
|
constructor();
|
|
722
726
|
protected getDefaultDialogConfig(): Maybe<DbxPromptConfirmConfig>;
|
|
723
727
|
protected _handleDialogResult(result: boolean): boolean;
|
|
724
728
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxActionConfirmDirective<any, any>, never>;
|
|
725
|
-
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DbxActionConfirmDirective<any, any>, "[dbxActionConfirm]", never, { "dbxActionConfirm": { "alias": "dbxActionConfirm"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
729
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DbxActionConfirmDirective<any, any>, "[dbxActionConfirm]", never, { "dbxActionConfirm": { "alias": "dbxActionConfirm"; "required": false; "isSignal": true; }; "dbxActionConfirmSkip": { "alias": "dbxActionConfirmSkip"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
726
730
|
}
|
|
727
731
|
|
|
728
732
|
/**
|