@dereekb/dbx-web 13.11.6 → 13.11.7
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": "@dereekb/dbx-web",
|
|
3
|
-
"version": "13.11.
|
|
3
|
+
"version": "13.11.7",
|
|
4
4
|
"sideEffects": [
|
|
5
5
|
"*.scss",
|
|
6
6
|
"*.css"
|
|
@@ -13,12 +13,12 @@
|
|
|
13
13
|
"@angular/material": "^21.2.9",
|
|
14
14
|
"@angular/platform-browser": "21.2.11",
|
|
15
15
|
"@cantoo/pdf-lib": "^2.6.5",
|
|
16
|
-
"@dereekb/browser": "13.11.
|
|
17
|
-
"@dereekb/date": "13.11.
|
|
18
|
-
"@dereekb/dbx-core": "13.11.
|
|
19
|
-
"@dereekb/rxjs": "13.11.
|
|
20
|
-
"@dereekb/util": "13.11.
|
|
21
|
-
"@dereekb/vitest": "13.11.
|
|
16
|
+
"@dereekb/browser": "13.11.7",
|
|
17
|
+
"@dereekb/date": "13.11.7",
|
|
18
|
+
"@dereekb/dbx-core": "13.11.7",
|
|
19
|
+
"@dereekb/rxjs": "13.11.7",
|
|
20
|
+
"@dereekb/util": "13.11.7",
|
|
21
|
+
"@dereekb/vitest": "13.11.7",
|
|
22
22
|
"@ngbracket/ngx-layout": "^21.0.0",
|
|
23
23
|
"@ngrx/component-store": "^21.1.0",
|
|
24
24
|
"@ngrx/effects": "^21.1.0",
|
|
@@ -5450,6 +5450,8 @@ interface DbxButtonStyle {
|
|
|
5450
5450
|
readonly spinnerColor?: Maybe<ThemePalette | DbxThemeColor>;
|
|
5451
5451
|
/**
|
|
5452
5452
|
* Custom CSS background color for the button.
|
|
5453
|
+
*
|
|
5454
|
+
* @deprecated Use {@link color} with a {@link DbxColorConfig}, e.g. `{ color: '#ff0066' }`. The `[dbxColor]` directive applies the background through `.dbx-color-bg`.
|
|
5453
5455
|
*/
|
|
5454
5456
|
readonly customButtonColor?: Maybe<string>;
|
|
5455
5457
|
/**
|
|
@@ -5803,6 +5805,9 @@ declare class DbxButtonComponent extends AbstractDbxButtonDirective {
|
|
|
5803
5805
|
readonly buttonStyle: _angular_core.InputSignal<Maybe<DbxButtonStyle>>;
|
|
5804
5806
|
readonly color: _angular_core.InputSignal<Maybe<"" | "default" | "primary" | "secondary" | "tertiary" | "accent" | "warn" | "notice" | "ok" | "success" | "grey" | "disabled" | _dereekb_dbx_web.DbxColorConfig | undefined>>;
|
|
5805
5807
|
readonly spinnerColor: _angular_core.InputSignal<Maybe<"default" | "primary" | "secondary" | "tertiary" | "accent" | "warn" | "notice" | "ok" | "success" | "grey" | "disabled" | undefined>>;
|
|
5808
|
+
/**
|
|
5809
|
+
* @deprecated Use {@link color} with a {@link DbxColorConfig}, e.g. `[color]="{ color: '#ff0066' }"`. The `[dbxColor]` directive applies the background through `.dbx-color-bg`.
|
|
5810
|
+
*/
|
|
5806
5811
|
readonly customButtonColor: _angular_core.InputSignal<Maybe<string>>;
|
|
5807
5812
|
readonly customTextColor: _angular_core.InputSignal<Maybe<string>>;
|
|
5808
5813
|
readonly customSpinnerColor: _angular_core.InputSignal<Maybe<string>>;
|