@dereekb/dbx-web 9.24.0 → 9.24.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/calendar/package.json +2 -2
- package/esm2020/lib/interaction/dialog/dialog.content.footer.component.mjs +13 -4
- package/fesm2015/dereekb-dbx-web.mjs +13 -3
- package/fesm2015/dereekb-dbx-web.mjs.map +1 -1
- package/fesm2020/dereekb-dbx-web.mjs +12 -3
- package/fesm2020/dereekb-dbx-web.mjs.map +1 -1
- package/lib/interaction/dialog/dialog.content.footer.component.d.ts +9 -1
- package/lib/router/layout/anchorlist/_anchorlist.scss +2 -2
- package/mapbox/package.json +3 -3
- package/package.json +3 -3
- package/table/package.json +3 -3
package/calendar/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dereekb/dbx-web/calendar",
|
|
3
|
-
"version": "9.24.
|
|
3
|
+
"version": "9.24.1",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "^14.2.0",
|
|
6
6
|
"@angular/core": "^14.2.0",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"rxjs": "^7.5.0",
|
|
9
9
|
"@angular/material": "^14.2.0",
|
|
10
10
|
"angular-calendar": "^0.30.1",
|
|
11
|
-
"@dereekb/dbx-web": "9.24.
|
|
11
|
+
"@dereekb/dbx-web": "9.24.1"
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
14
|
"tslib": "^2.3.0"
|
|
@@ -7,8 +7,13 @@ import * as i1 from "@angular/material/button";
|
|
|
7
7
|
export class DbxDialogContentFooterComponent {
|
|
8
8
|
constructor() {
|
|
9
9
|
this.closeText = 'Close';
|
|
10
|
+
this.buttonColor = undefined;
|
|
10
11
|
this.close = new EventEmitter();
|
|
11
12
|
}
|
|
13
|
+
set config(config) {
|
|
14
|
+
this.closeText = config?.closeText ?? 'Close';
|
|
15
|
+
this.buttonColor = config?.buttonColor ?? undefined;
|
|
16
|
+
}
|
|
12
17
|
closeClicked() {
|
|
13
18
|
this.close.emit(undefined);
|
|
14
19
|
}
|
|
@@ -17,15 +22,15 @@ export class DbxDialogContentFooterComponent {
|
|
|
17
22
|
}
|
|
18
23
|
}
|
|
19
24
|
DbxDialogContentFooterComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxDialogContentFooterComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
20
|
-
DbxDialogContentFooterComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.12", type: DbxDialogContentFooterComponent, selector: "dbx-dialog-content-footer", inputs: { closeText: "closeText" }, outputs: { close: "close" }, host: { classAttribute: "dbx-dialog-content-footer" }, ngImport: i0, template: `
|
|
21
|
-
<button mat-raised-button (click)="closeClicked()">{{ closeText }}</button>
|
|
25
|
+
DbxDialogContentFooterComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.12", type: DbxDialogContentFooterComponent, selector: "dbx-dialog-content-footer", inputs: { closeText: "closeText", buttonColor: "buttonColor", config: "config" }, outputs: { close: "close" }, host: { classAttribute: "dbx-dialog-content-footer" }, ngImport: i0, template: `
|
|
26
|
+
<button mat-raised-button [color]="buttonColor" (click)="closeClicked()">{{ closeText }}</button>
|
|
22
27
|
`, isInline: true, dependencies: [{ kind: "component", type: i1.MatButton, selector: "button[mat-button], button[mat-raised-button], button[mat-icon-button], button[mat-fab], button[mat-mini-fab], button[mat-stroked-button], button[mat-flat-button]", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }] });
|
|
23
28
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxDialogContentFooterComponent, decorators: [{
|
|
24
29
|
type: Component,
|
|
25
30
|
args: [{
|
|
26
31
|
selector: 'dbx-dialog-content-footer',
|
|
27
32
|
template: `
|
|
28
|
-
<button mat-raised-button (click)="closeClicked()">{{ closeText }}</button>
|
|
33
|
+
<button mat-raised-button [color]="buttonColor" (click)="closeClicked()">{{ closeText }}</button>
|
|
29
34
|
`,
|
|
30
35
|
host: {
|
|
31
36
|
class: 'dbx-dialog-content-footer'
|
|
@@ -33,7 +38,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
|
|
|
33
38
|
}]
|
|
34
39
|
}], propDecorators: { closeText: [{
|
|
35
40
|
type: Input
|
|
41
|
+
}], buttonColor: [{
|
|
42
|
+
type: Input
|
|
36
43
|
}], close: [{
|
|
37
44
|
type: Output
|
|
45
|
+
}], config: [{
|
|
46
|
+
type: Input
|
|
38
47
|
}] } });
|
|
39
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
48
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGlhbG9nLmNvbnRlbnQuZm9vdGVyLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3BhY2thZ2VzL2RieC13ZWIvc3JjL2xpYi9pbnRlcmFjdGlvbi9kaWFsb2cvZGlhbG9nLmNvbnRlbnQuZm9vdGVyLmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLFlBQVksRUFBRSxLQUFLLEVBQWEsTUFBTSxFQUFFLE1BQU0sZUFBZSxDQUFDOzs7QUFTbEY7O0dBRUc7QUFVSCxNQUFNLE9BQU8sK0JBQStCO0lBVDVDO1FBV0UsY0FBUyxHQUFHLE9BQU8sQ0FBQztRQUdwQixnQkFBVyxHQUFpQixTQUFTLENBQUM7UUFHN0IsVUFBSyxHQUFHLElBQUksWUFBWSxFQUFRLENBQUM7S0FlM0M7SUFiQyxJQUNJLE1BQU0sQ0FBQyxNQUEyQztRQUNwRCxJQUFJLENBQUMsU0FBUyxHQUFHLE1BQU0sRUFBRSxTQUFTLElBQUksT0FBTyxDQUFDO1FBQzlDLElBQUksQ0FBQyxXQUFXLEdBQUcsTUFBTSxFQUFFLFdBQVcsSUFBSSxTQUFTLENBQUM7SUFDdEQsQ0FBQztJQUVELFlBQVk7UUFDVixJQUFJLENBQUMsS0FBSyxDQUFDLElBQUksQ0FBQyxTQUFTLENBQUMsQ0FBQztJQUM3QixDQUFDO0lBRUQsV0FBVztRQUNULElBQUksQ0FBQyxLQUFLLENBQUMsUUFBUSxFQUFFLENBQUM7SUFDeEIsQ0FBQzs7NkhBdEJVLCtCQUErQjtpSEFBL0IsK0JBQStCLHVPQVBoQzs7R0FFVDs0RkFLVSwrQkFBK0I7a0JBVDNDLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLDJCQUEyQjtvQkFDckMsUUFBUSxFQUFFOztHQUVUO29CQUNELElBQUksRUFBRTt3QkFDSixLQUFLLEVBQUUsMkJBQTJCO3FCQUNuQztpQkFDRjs4QkFHQyxTQUFTO3NCQURSLEtBQUs7Z0JBSU4sV0FBVztzQkFEVixLQUFLO2dCQUlHLEtBQUs7c0JBRGIsTUFBTTtnQkFJSCxNQUFNO3NCQURULEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIEV2ZW50RW1pdHRlciwgSW5wdXQsIE9uRGVzdHJveSwgT3V0cHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBUaGVtZVBhbGV0dGUgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9jb3JlJztcbmltcG9ydCB7IE1heWJlIH0gZnJvbSAnQGRlcmVla2IvdXRpbCc7XG5cbmV4cG9ydCBpbnRlcmZhY2UgRGJ4RGlhbG9nQ29udGVudEZvb3RlckNvbmZpZyB7XG4gIGJ1dHRvbkNvbG9yPzogVGhlbWVQYWxldHRlO1xuICBjbG9zZVRleHQ/OiBzdHJpbmc7XG59XG5cbi8qKlxuICogQ29tcG9uZW50IHVzZWQgdG8gc2hvdyBhIGNsb3NlIGJ1dHRvbiBhdCB0aGUgYm90dG9tIG9mIGEgZGlhbG9nLlxuICovXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdkYngtZGlhbG9nLWNvbnRlbnQtZm9vdGVyJyxcbiAgdGVtcGxhdGU6IGBcbiAgICA8YnV0dG9uIG1hdC1yYWlzZWQtYnV0dG9uIFtjb2xvcl09XCJidXR0b25Db2xvclwiIChjbGljayk9XCJjbG9zZUNsaWNrZWQoKVwiPnt7IGNsb3NlVGV4dCB9fTwvYnV0dG9uPlxuICBgLFxuICBob3N0OiB7XG4gICAgY2xhc3M6ICdkYngtZGlhbG9nLWNvbnRlbnQtZm9vdGVyJ1xuICB9XG59KVxuZXhwb3J0IGNsYXNzIERieERpYWxvZ0NvbnRlbnRGb290ZXJDb21wb25lbnQgaW1wbGVtZW50cyBPbkRlc3Ryb3kge1xuICBASW5wdXQoKVxuICBjbG9zZVRleHQgPSAnQ2xvc2UnO1xuXG4gIEBJbnB1dCgpXG4gIGJ1dHRvbkNvbG9yOiBUaGVtZVBhbGV0dGUgPSB1bmRlZmluZWQ7XG5cbiAgQE91dHB1dCgpXG4gIHJlYWRvbmx5IGNsb3NlID0gbmV3IEV2ZW50RW1pdHRlcjx2b2lkPigpO1xuXG4gIEBJbnB1dCgpXG4gIHNldCBjb25maWcoY29uZmlnOiBNYXliZTxEYnhEaWFsb2dDb250ZW50Rm9vdGVyQ29uZmlnPikge1xuICAgIHRoaXMuY2xvc2VUZXh0ID0gY29uZmlnPy5jbG9zZVRleHQgPz8gJ0Nsb3NlJztcbiAgICB0aGlzLmJ1dHRvbkNvbG9yID0gY29uZmlnPy5idXR0b25Db2xvciA/PyB1bmRlZmluZWQ7XG4gIH1cblxuICBjbG9zZUNsaWNrZWQoKSB7XG4gICAgdGhpcy5jbG9zZS5lbWl0KHVuZGVmaW5lZCk7XG4gIH1cblxuICBuZ09uRGVzdHJveSgpOiB2b2lkIHtcbiAgICB0aGlzLmNsb3NlLmNvbXBsZXRlKCk7XG4gIH1cbn1cbiJdfQ==
|
|
@@ -895,8 +895,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
|
|
|
895
895
|
class DbxDialogContentFooterComponent {
|
|
896
896
|
constructor() {
|
|
897
897
|
this.closeText = 'Close';
|
|
898
|
+
this.buttonColor = undefined;
|
|
898
899
|
this.close = new EventEmitter();
|
|
899
900
|
}
|
|
901
|
+
set config(config) {
|
|
902
|
+
var _a, _b;
|
|
903
|
+
this.closeText = (_a = config === null || config === void 0 ? void 0 : config.closeText) !== null && _a !== void 0 ? _a : 'Close';
|
|
904
|
+
this.buttonColor = (_b = config === null || config === void 0 ? void 0 : config.buttonColor) !== null && _b !== void 0 ? _b : undefined;
|
|
905
|
+
}
|
|
900
906
|
closeClicked() {
|
|
901
907
|
this.close.emit(undefined);
|
|
902
908
|
}
|
|
@@ -905,15 +911,15 @@ class DbxDialogContentFooterComponent {
|
|
|
905
911
|
}
|
|
906
912
|
}
|
|
907
913
|
DbxDialogContentFooterComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxDialogContentFooterComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
908
|
-
DbxDialogContentFooterComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.12", type: DbxDialogContentFooterComponent, selector: "dbx-dialog-content-footer", inputs: { closeText: "closeText" }, outputs: { close: "close" }, host: { classAttribute: "dbx-dialog-content-footer" }, ngImport: i0, template: `
|
|
909
|
-
<button mat-raised-button (click)="closeClicked()">{{ closeText }}</button>
|
|
914
|
+
DbxDialogContentFooterComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.12", type: DbxDialogContentFooterComponent, selector: "dbx-dialog-content-footer", inputs: { closeText: "closeText", buttonColor: "buttonColor", config: "config" }, outputs: { close: "close" }, host: { classAttribute: "dbx-dialog-content-footer" }, ngImport: i0, template: `
|
|
915
|
+
<button mat-raised-button [color]="buttonColor" (click)="closeClicked()">{{ closeText }}</button>
|
|
910
916
|
`, isInline: true, dependencies: [{ kind: "component", type: i2.MatButton, selector: "button[mat-button], button[mat-raised-button], button[mat-icon-button], button[mat-fab], button[mat-mini-fab], button[mat-stroked-button], button[mat-flat-button]", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }] });
|
|
911
917
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxDialogContentFooterComponent, decorators: [{
|
|
912
918
|
type: Component,
|
|
913
919
|
args: [{
|
|
914
920
|
selector: 'dbx-dialog-content-footer',
|
|
915
921
|
template: `
|
|
916
|
-
<button mat-raised-button (click)="closeClicked()">{{ closeText }}</button>
|
|
922
|
+
<button mat-raised-button [color]="buttonColor" (click)="closeClicked()">{{ closeText }}</button>
|
|
917
923
|
`,
|
|
918
924
|
host: {
|
|
919
925
|
class: 'dbx-dialog-content-footer'
|
|
@@ -921,8 +927,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
|
|
|
921
927
|
}]
|
|
922
928
|
}], propDecorators: { closeText: [{
|
|
923
929
|
type: Input
|
|
930
|
+
}], buttonColor: [{
|
|
931
|
+
type: Input
|
|
924
932
|
}], close: [{
|
|
925
933
|
type: Output
|
|
934
|
+
}], config: [{
|
|
935
|
+
type: Input
|
|
926
936
|
}] } });
|
|
927
937
|
|
|
928
938
|
/**
|