@porscheinformatik/material-addons 0.0.35 → 0.0.99
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/README.md +29 -29
- package/esm2022/lib/button/button.mjs +7 -0
- package/esm2022/lib/button/button.module.mjs +26 -0
- package/esm2022/lib/button/danger-button/danger-button.component.mjs +28 -0
- package/esm2022/lib/button/flat-button/link-button.component.mjs +28 -0
- package/esm2022/lib/button/icon-button/icon-button.component.mjs +28 -0
- package/esm2022/lib/button/mad-basic-button.mjs +39 -0
- package/esm2022/lib/button/outline-button/outline-button.component.mjs +28 -0
- package/esm2022/lib/button/primary-button/primary-button.component.mjs +28 -0
- package/esm2022/lib/card/card.component.mjs +129 -0
- package/esm2022/lib/card/card.mjs +2 -0
- package/esm2022/lib/card/card.module.mjs +23 -0
- package/esm2022/lib/content-panel/content-header/content-header.component.mjs +11 -0
- package/esm2022/lib/content-panel/content-panel-container/content-panel-container.component.mjs +11 -0
- package/esm2022/lib/content-panel/content-panel-container-content/content-panel-container-content.component.mjs +11 -0
- package/esm2022/lib/content-panel/content-panel-container-footer/content-panel-container-footer.component.mjs +11 -0
- package/esm2022/lib/content-panel/content-panel.module.mjs +42 -0
- package/esm2022/lib/content-panel/main-container/main-container.component.mjs +11 -0
- package/esm2022/lib/data-table/data-table-action-type.mjs +6 -0
- package/esm2022/lib/data-table/data-table-action.mjs +2 -0
- package/esm2022/lib/data-table/data-table-column-definition.mjs +2 -0
- package/esm2022/lib/data-table/data-table-column.mjs +2 -0
- package/esm2022/lib/data-table/data-table-columns-modal/data-table-columns-modal.component.mjs +103 -0
- package/esm2022/lib/data-table/data-table-row.mjs +2 -0
- package/esm2022/lib/data-table/data-table.component.mjs +529 -0
- package/esm2022/lib/data-table/data-table.mjs +3 -0
- package/esm2022/lib/data-table/data-table.module.mjs +81 -0
- package/esm2022/lib/file-upload/drag-and-drop-directive.directive.mjs +61 -0
- package/esm2022/lib/file-upload/file-upload.component.mjs +78 -0
- package/esm2022/lib/flowbar/flowbar.component.mjs +190 -0
- package/esm2022/lib/flowbar/flowbar.module.mjs +19 -0
- package/esm2022/lib/material-action-button/material-action-button.component.mjs +34 -0
- package/esm2022/lib/material-action-button/material-action-button.module.mjs +22 -0
- package/esm2022/lib/material-addons.module.mjs +45 -0
- package/esm2022/lib/numeric-field/number-format.service.mjs +139 -0
- package/esm2022/lib/numeric-field/numeric-field.directive.mjs +295 -0
- package/esm2022/lib/numeric-field/numeric-field.mjs +2 -0
- package/esm2022/lib/numeric-field/numeric-field.module.mjs +24 -0
- package/esm2022/lib/quick-list/base-quick-list.component.mjs +124 -0
- package/esm2022/lib/quick-list/quick-list-compact/quick-list-compact.component.mjs +22 -0
- package/esm2022/lib/quick-list/quick-list.component.mjs +23 -0
- package/esm2022/lib/quick-list/quick-list.mjs +6 -0
- package/esm2022/lib/quick-list/quick-list.module.mjs +46 -0
- package/esm2022/lib/quick-list/reactive-form-quick-list/reactive-form-quick-list.component.mjs +22 -0
- package/esm2022/lib/quick-list/reactive-form-quick-list-compact/reactive-form-quick-list-compact.component.mjs +22 -0
- package/esm2022/lib/readonly/readonly-form-field/readonly-form-field.component.mjs +181 -0
- package/esm2022/lib/readonly/readonly-form-field-wrapper/readonly-form-field-wrapper.component.mjs +206 -0
- package/esm2022/lib/readonly/readonly-form-field.module.mjs +25 -0
- package/esm2022/lib/stepper/mad-stepper-animation.mjs +13 -0
- package/esm2022/lib/stepper/step-header/step-header.component.mjs +77 -0
- package/esm2022/lib/stepper/stepper.component.mjs +159 -0
- package/esm2022/lib/stepper/stepper.module.mjs +23 -0
- package/esm2022/lib/table/column-header.mjs +2 -0
- package/esm2022/lib/table/table-action.mjs +2 -0
- package/esm2022/lib/table/table.component.mjs +130 -0
- package/esm2022/lib/table/table.mjs +2 -0
- package/esm2022/lib/table/table.module.mjs +56 -0
- package/esm2022/lib/throttle-click/throttle-click.directive.mjs +38 -0
- package/esm2022/lib/throttle-click/throttle-click.module.mjs +18 -0
- package/esm2022/lib/toolbar/toolbar-action.interface.mjs +2 -0
- package/esm2022/lib/toolbar/toolbar.component.mjs +78 -0
- package/esm2022/lib/toolbar/toolbar.module.mjs +56 -0
- package/esm2022/lib/toolbar/toolbar.service.mjs +124 -0
- package/esm2022/porscheinformatik-material-addons.mjs +5 -0
- package/esm2022/public_api.mjs +42 -0
- package/fesm2022/porscheinformatik-material-addons.mjs +3229 -0
- package/fesm2022/porscheinformatik-material-addons.mjs.map +1 -0
- package/index.d.ts +6 -0
- package/lib/button/button.d.ts +7 -0
- package/lib/button/button.d.ts.map +1 -0
- package/lib/button/button.module.d.ts +17 -0
- package/lib/button/button.module.d.ts.map +1 -0
- package/lib/button/danger-button/danger-button.component.d.ts +13 -0
- package/lib/button/danger-button/danger-button.component.d.ts.map +1 -0
- package/lib/button/flat-button/link-button.component.d.ts +13 -0
- package/lib/button/flat-button/link-button.component.d.ts.map +1 -0
- package/lib/button/icon-button/icon-button.component.d.ts +13 -0
- package/lib/button/icon-button/icon-button.component.d.ts.map +1 -0
- package/lib/button/mad-basic-button.d.ts +14 -0
- package/lib/button/mad-basic-button.d.ts.map +1 -0
- package/lib/button/outline-button/outline-button.component.d.ts +13 -0
- package/lib/button/outline-button/outline-button.component.d.ts.map +1 -0
- package/lib/button/primary-button/primary-button.component.d.ts +13 -0
- package/lib/button/primary-button/primary-button.component.d.ts.map +1 -0
- package/lib/card/card.component.d.ts +28 -0
- package/lib/card/card.component.d.ts.map +1 -0
- package/lib/card/card.d.ts +2 -0
- package/lib/card/card.d.ts.map +1 -0
- package/lib/card/card.module.d.ts +14 -0
- package/lib/card/card.module.d.ts.map +1 -0
- package/lib/content-panel/content-header/content-header.component.d.ts +6 -0
- package/lib/content-panel/content-header/content-header.component.d.ts.map +1 -0
- package/lib/content-panel/content-panel-container/content-panel-container.component.d.ts +6 -0
- package/lib/content-panel/content-panel-container/content-panel-container.component.d.ts.map +1 -0
- package/lib/content-panel/content-panel-container-content/content-panel-container-content.component.d.ts +6 -0
- package/lib/content-panel/content-panel-container-content/content-panel-container-content.component.d.ts.map +1 -0
- package/lib/content-panel/content-panel-container-footer/content-panel-container-footer.component.d.ts +6 -0
- package/lib/content-panel/content-panel-container-footer/content-panel-container-footer.component.d.ts.map +1 -0
- package/lib/content-panel/content-panel.module.d.ts +13 -0
- package/lib/content-panel/content-panel.module.d.ts.map +1 -0
- package/lib/content-panel/main-container/main-container.component.d.ts +6 -0
- package/lib/content-panel/main-container/main-container.component.d.ts.map +1 -0
- package/lib/data-table/data-table-action-type.d.ts +6 -0
- package/lib/data-table/data-table-action-type.d.ts.map +1 -0
- package/lib/data-table/data-table-action.d.ts +8 -0
- package/lib/data-table/data-table-action.d.ts.map +1 -0
- package/lib/data-table/data-table-column-definition.d.ts +28 -0
- package/lib/data-table/data-table-column-definition.d.ts.map +1 -0
- package/lib/data-table/data-table-column.d.ts +11 -0
- package/lib/data-table/data-table-column.d.ts.map +1 -0
- package/lib/data-table/data-table-columns-modal/data-table-columns-modal.component.d.ts +27 -0
- package/lib/data-table/data-table-columns-modal/data-table-columns-modal.component.d.ts.map +1 -0
- package/lib/data-table/data-table-row.d.ts +7 -0
- package/lib/data-table/data-table-row.d.ts.map +1 -0
- package/lib/data-table/data-table.component.d.ts +123 -0
- package/lib/data-table/data-table.component.d.ts.map +1 -0
- package/lib/data-table/data-table.d.ts +6 -0
- package/lib/data-table/data-table.d.ts.map +1 -0
- package/lib/data-table/data-table.module.d.ts +25 -0
- package/lib/data-table/data-table.module.d.ts.map +1 -0
- package/lib/file-upload/drag-and-drop-directive.directive.d.ts +13 -0
- package/lib/file-upload/drag-and-drop-directive.directive.d.ts.map +1 -0
- package/lib/file-upload/file-upload.component.d.ts +22 -0
- package/lib/file-upload/file-upload.component.d.ts.map +1 -0
- package/lib/flowbar/flowbar.component.d.ts +47 -0
- package/lib/flowbar/flowbar.component.d.ts.map +1 -0
- package/lib/flowbar/flowbar.module.d.ts +10 -0
- package/lib/flowbar/flowbar.module.d.ts.map +1 -0
- package/lib/material-action-button/material-action-button.component.d.ts +12 -8
- package/lib/material-action-button/material-action-button.component.d.ts.map +1 -0
- package/lib/material-action-button/material-action-button.module.d.ts +13 -2
- package/lib/material-action-button/material-action-button.module.d.ts.map +1 -0
- package/lib/material-addons.module.d.ts +15 -2
- package/lib/material-addons.module.d.ts.map +1 -0
- package/lib/numeric-field/number-format.service.d.ts +31 -0
- package/lib/numeric-field/number-format.service.d.ts.map +1 -0
- package/lib/numeric-field/numeric-field.d.ts +2 -0
- package/lib/numeric-field/numeric-field.d.ts.map +1 -0
- package/lib/numeric-field/numeric-field.directive.d.ts +45 -0
- package/lib/numeric-field/numeric-field.directive.d.ts.map +1 -0
- package/lib/numeric-field/numeric-field.module.d.ts +10 -0
- package/lib/numeric-field/numeric-field.module.d.ts.map +1 -0
- package/lib/quick-list/base-quick-list.component.d.ts +41 -0
- package/lib/quick-list/base-quick-list.component.d.ts.map +1 -0
- package/lib/quick-list/quick-list-compact/quick-list-compact.component.d.ts +12 -0
- package/lib/quick-list/quick-list-compact/quick-list-compact.component.d.ts.map +1 -0
- package/lib/quick-list/quick-list.component.d.ts +12 -0
- package/lib/quick-list/quick-list.component.d.ts.map +1 -0
- package/lib/quick-list/quick-list.d.ts +6 -0
- package/lib/quick-list/quick-list.d.ts.map +1 -0
- package/lib/quick-list/quick-list.module.d.ts +17 -0
- package/lib/quick-list/quick-list.module.d.ts.map +1 -0
- package/lib/quick-list/reactive-form-quick-list/reactive-form-quick-list.component.d.ts +12 -0
- package/lib/quick-list/reactive-form-quick-list/reactive-form-quick-list.component.d.ts.map +1 -0
- package/lib/quick-list/reactive-form-quick-list-compact/reactive-form-quick-list-compact.component.d.ts +12 -0
- package/lib/quick-list/reactive-form-quick-list-compact/reactive-form-quick-list-compact.component.d.ts.map +1 -0
- package/lib/readonly/readonly-form-field/readonly-form-field.component.d.ts +56 -14
- package/lib/readonly/readonly-form-field/readonly-form-field.component.d.ts.map +1 -0
- package/lib/readonly/readonly-form-field-wrapper/readonly-form-field-wrapper.component.d.ts +89 -31
- package/lib/readonly/readonly-form-field-wrapper/readonly-form-field-wrapper.component.d.ts.map +1 -0
- package/lib/readonly/readonly-form-field.module.d.ts +16 -2
- package/lib/readonly/readonly-form-field.module.d.ts.map +1 -0
- package/lib/stepper/mad-stepper-animation.d.ts +8 -0
- package/lib/stepper/mad-stepper-animation.d.ts.map +1 -0
- package/lib/stepper/step-header/step-header.component.d.ts +27 -0
- package/lib/stepper/step-header/step-header.component.d.ts.map +1 -0
- package/lib/stepper/stepper.component.d.ts +53 -0
- package/lib/stepper/stepper.component.d.ts.map +1 -0
- package/lib/stepper/stepper.module.d.ts +14 -0
- package/lib/stepper/stepper.module.d.ts.map +1 -0
- package/lib/table/column-header.d.ts +8 -0
- package/lib/table/column-header.d.ts.map +1 -0
- package/lib/table/table-action.d.ts +6 -0
- package/lib/table/table-action.d.ts.map +1 -0
- package/lib/table/table.component.d.ts +43 -0
- package/lib/table/table.component.d.ts.map +1 -0
- package/lib/table/table.d.ts +4 -0
- package/lib/table/table.d.ts.map +1 -0
- package/lib/table/table.module.d.ts +18 -0
- package/lib/table/table.module.d.ts.map +1 -0
- package/lib/throttle-click/throttle-click.directive.d.ts +14 -0
- package/lib/throttle-click/throttle-click.directive.d.ts.map +1 -0
- package/lib/throttle-click/throttle-click.module.d.ts +9 -0
- package/lib/throttle-click/throttle-click.module.d.ts.map +1 -0
- package/lib/toolbar/toolbar-action.interface.d.ts +28 -18
- package/lib/toolbar/toolbar-action.interface.d.ts.map +1 -0
- package/lib/toolbar/toolbar.component.d.ts +28 -19
- package/lib/toolbar/toolbar.component.d.ts.map +1 -0
- package/lib/toolbar/toolbar.module.d.ts +18 -2
- package/lib/toolbar/toolbar.module.d.ts.map +1 -0
- package/lib/toolbar/toolbar.service.d.ts +44 -33
- package/lib/toolbar/toolbar.service.d.ts.map +1 -0
- package/package.json +29 -24
- package/porscheinformatik-material-addons.d.ts.map +1 -0
- package/public_api.d.ts +39 -0
- package/public_api.d.ts.map +1 -0
- package/themes/common/styles.scss +359 -303
- package/themes/pbv.scss +64 -56
- package/themes/poa.scss +64 -40
- package/bundles/porscheinformatik-material-addons.umd.js +0 -755
- package/esm2015/lib/material-action-button/material-action-button.component.js +0 -43
- package/esm2015/lib/material-action-button/material-action-button.module.js +0 -19
- package/esm2015/lib/material-addons.module.js +0 -16
- package/esm2015/lib/readonly/readonly-form-field/readonly-form-field.component.js +0 -61
- package/esm2015/lib/readonly/readonly-form-field-wrapper/readonly-form-field-wrapper.component.js +0 -124
- package/esm2015/lib/readonly/readonly-form-field.module.js +0 -20
- package/esm2015/lib/toolbar/toolbar-action.interface.js +0 -47
- package/esm2015/lib/toolbar/toolbar.component.js +0 -112
- package/esm2015/lib/toolbar/toolbar.module.js +0 -29
- package/esm2015/lib/toolbar/toolbar.service.js +0 -197
- package/esm2015/porscheinformatik-material-addons.js +0 -9
- package/esm2015/public-api.js +0 -18
- package/esm5/lib/material-action-button/material-action-button.component.js +0 -45
- package/esm5/lib/material-action-button/material-action-button.module.js +0 -23
- package/esm5/lib/material-addons.module.js +0 -20
- package/esm5/lib/readonly/readonly-form-field/readonly-form-field.component.js +0 -67
- package/esm5/lib/readonly/readonly-form-field-wrapper/readonly-form-field-wrapper.component.js +0 -145
- package/esm5/lib/readonly/readonly-form-field.module.js +0 -24
- package/esm5/lib/toolbar/toolbar-action.interface.js +0 -47
- package/esm5/lib/toolbar/toolbar.component.js +0 -131
- package/esm5/lib/toolbar/toolbar.module.js +0 -33
- package/esm5/lib/toolbar/toolbar.service.js +0 -245
- package/esm5/porscheinformatik-material-addons.js +0 -9
- package/esm5/public-api.js +0 -18
- package/porscheinformatik-material-addons.d.ts +0 -4
- package/porscheinformatik-material-addons.metadata.json +0 -1
- package/public-api.d.ts +0 -10
package/index.d.ts
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export { MadBasicButton } from './mad-basic-button';
|
|
2
|
+
export { DangerButtonComponent } from './danger-button/danger-button.component';
|
|
3
|
+
export { LinkButtonComponent } from './flat-button/link-button.component';
|
|
4
|
+
export { IconButtonComponent } from './icon-button/icon-button.component';
|
|
5
|
+
export { OutlineButtonComponent } from './outline-button/outline-button.component';
|
|
6
|
+
export { PrimaryButtonComponent } from './primary-button/primary-button.component';
|
|
7
|
+
//# sourceMappingURL=button.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"button.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/button/button.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAC;AACpD,OAAO,EAAE,qBAAqB,EAAE,MAAM,yCAAyC,CAAC;AAChF,OAAO,EAAE,mBAAmB,EAAE,MAAM,qCAAqC,CAAC;AAC1E,OAAO,EAAE,mBAAmB,EAAE,MAAM,qCAAqC,CAAC;AAC1E,OAAO,EAAE,sBAAsB,EAAE,MAAM,2CAA2C,CAAC;AACnF,OAAO,EAAE,sBAAsB,EAAE,MAAM,2CAA2C,CAAC"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./primary-button/primary-button.component";
|
|
3
|
+
import * as i2 from "./outline-button/outline-button.component";
|
|
4
|
+
import * as i3 from "./flat-button/link-button.component";
|
|
5
|
+
import * as i4 from "./danger-button/danger-button.component";
|
|
6
|
+
import * as i5 from "./icon-button/icon-button.component";
|
|
7
|
+
import * as i6 from "@angular/common";
|
|
8
|
+
import * as i7 from "@angular/router";
|
|
9
|
+
import * as i8 from "@angular/material/button";
|
|
10
|
+
import * as i9 from "@angular/material/icon";
|
|
11
|
+
import * as i10 from "@angular/material/tooltip";
|
|
12
|
+
export declare class ButtonModule {
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonModule, never>;
|
|
14
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ButtonModule, [typeof i1.PrimaryButtonComponent, typeof i2.OutlineButtonComponent, typeof i3.LinkButtonComponent, typeof i4.DangerButtonComponent, typeof i5.IconButtonComponent], [typeof i6.CommonModule, typeof i7.RouterModule, typeof i8.MatButtonModule, typeof i9.MatIconModule, typeof i10.MatTooltipModule], [typeof i1.PrimaryButtonComponent, typeof i2.OutlineButtonComponent, typeof i3.LinkButtonComponent, typeof i4.DangerButtonComponent, typeof i5.IconButtonComponent]>;
|
|
15
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ButtonModule>;
|
|
16
|
+
}
|
|
17
|
+
//# sourceMappingURL=button.module.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"button.module.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/button/button.module.ts"],"names":[],"mappings":";;;;;;;;;;;AAYA,qBAKa,YAAY;yCAAZ,YAAY;0CAAZ,YAAY;0CAAZ,YAAY;CAAG"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { ElementRef } from '@angular/core';
|
|
2
|
+
import { MadBasicButton } from '../mad-basic-button';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class DangerButtonComponent extends MadBasicButton {
|
|
5
|
+
type: string;
|
|
6
|
+
disabled: boolean;
|
|
7
|
+
title: string;
|
|
8
|
+
button: ElementRef;
|
|
9
|
+
constructor();
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DangerButtonComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DangerButtonComponent, "mad-danger-button", never, { "type": { "alias": "type"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "title": { "alias": "title"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=danger-button.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"danger-button.component.d.ts","sourceRoot":"","sources":["../../../../../projects/material-addons/src/lib/button/danger-button/danger-button.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAoB,MAAM,eAAe,CAAC;AACxE,OAAO,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;;AAErD,qBAKa,qBAAsB,SAAQ,cAAc;IAEvD,IAAI,EAAE,MAAM,CAAC;IAGb,QAAQ,EAAE,OAAO,CAAC;IAGlB,KAAK,SAAM;IAE2C,MAAM,EAAE,UAAU,CAAC;;yCAV9D,qBAAqB;2CAArB,qBAAqB;CAiBjC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { ElementRef } from '@angular/core';
|
|
2
|
+
import { MadBasicButton } from '../mad-basic-button';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class LinkButtonComponent extends MadBasicButton {
|
|
5
|
+
type: string;
|
|
6
|
+
disabled: boolean;
|
|
7
|
+
title: string;
|
|
8
|
+
button: ElementRef;
|
|
9
|
+
constructor();
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LinkButtonComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LinkButtonComponent, "mad-link-button", never, { "type": { "alias": "type"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "title": { "alias": "title"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=link-button.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"link-button.component.d.ts","sourceRoot":"","sources":["../../../../../projects/material-addons/src/lib/button/flat-button/link-button.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAoB,MAAM,eAAe,CAAC;AACxE,OAAO,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;;AACrD,qBAKa,mBAAoB,SAAQ,cAAc;IAErD,IAAI,EAAE,MAAM,CAAC;IAGb,QAAQ,EAAE,OAAO,CAAC;IAGlB,KAAK,SAAM;IAE2C,MAAM,EAAE,UAAU,CAAC;;yCAV9D,mBAAmB;2CAAnB,mBAAmB;CAiB/B"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { ElementRef } from '@angular/core';
|
|
2
|
+
import { MadBasicButton } from '../mad-basic-button';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class IconButtonComponent extends MadBasicButton {
|
|
5
|
+
type: string;
|
|
6
|
+
disabled: boolean;
|
|
7
|
+
title: string;
|
|
8
|
+
button: ElementRef;
|
|
9
|
+
constructor();
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IconButtonComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IconButtonComponent, "mad-icon-button", never, { "type": { "alias": "type"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "title": { "alias": "title"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=icon-button.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"icon-button.component.d.ts","sourceRoot":"","sources":["../../../../../projects/material-addons/src/lib/button/icon-button/icon-button.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAoB,MAAM,eAAe,CAAC;AACxE,OAAO,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;;AAErD,qBAKa,mBAAoB,SAAQ,cAAc;IAErD,IAAI,EAAE,MAAM,CAAC;IAGb,QAAQ,EAAE,OAAO,CAAC;IAGlB,KAAK,SAAM;IAE2C,MAAM,EAAE,UAAU,CAAC;;yCAV9D,mBAAmB;2CAAnB,mBAAmB;CAiB/B"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { ElementRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare abstract class MadBasicButton {
|
|
4
|
+
button: ElementRef;
|
|
5
|
+
disabled: boolean;
|
|
6
|
+
get pointerEvent(): string;
|
|
7
|
+
get opacity(): string;
|
|
8
|
+
disableClick: (e: Event) => any;
|
|
9
|
+
ngOnChanges(): void;
|
|
10
|
+
disableButton(): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MadBasicButton, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MadBasicButton, "ng-component", never, {}, {}, never, never, false, never>;
|
|
13
|
+
}
|
|
14
|
+
//# sourceMappingURL=mad-basic-button.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"mad-basic-button.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/button/mad-basic-button.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAe,MAAM,eAAe,CAAC;;AAEnE,8BAGsB,cAAc;IAClC,MAAM,EAAE,UAAU,CAAC;IACnB,QAAQ,EAAE,OAAO,CAAC;IAElB,IACI,YAAY,IAAI,MAAM,CAEzB;IAED,IACI,OAAO,IAAI,MAAM,CAEpB;IAED,YAAY,MAAO,KAAK,KAAG,GAAG,CAAwB;IAEtD,WAAW,IAAI,IAAI;IAInB,aAAa,IAAI,IAAI;yCApBD,cAAc;2CAAd,cAAc;CA2BnC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { ElementRef } from '@angular/core';
|
|
2
|
+
import { MadBasicButton } from '../mad-basic-button';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class OutlineButtonComponent extends MadBasicButton {
|
|
5
|
+
type: string;
|
|
6
|
+
disabled: boolean;
|
|
7
|
+
title: string;
|
|
8
|
+
button: ElementRef;
|
|
9
|
+
constructor();
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OutlineButtonComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OutlineButtonComponent, "mad-outline-button", never, { "type": { "alias": "type"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "title": { "alias": "title"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=outline-button.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"outline-button.component.d.ts","sourceRoot":"","sources":["../../../../../projects/material-addons/src/lib/button/outline-button/outline-button.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAoB,MAAM,eAAe,CAAC;AACxE,OAAO,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;;AAErD,qBAKa,sBAAuB,SAAQ,cAAc;IAExD,IAAI,EAAE,MAAM,CAAC;IAGb,QAAQ,EAAE,OAAO,CAAC;IAGlB,KAAK,SAAM;IAE2C,MAAM,EAAE,UAAU,CAAC;;yCAV9D,sBAAsB;2CAAtB,sBAAsB;CAiBlC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { ElementRef } from '@angular/core';
|
|
2
|
+
import { MadBasicButton } from '../mad-basic-button';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class PrimaryButtonComponent extends MadBasicButton {
|
|
5
|
+
type: string;
|
|
6
|
+
disabled: boolean;
|
|
7
|
+
title: string;
|
|
8
|
+
button: ElementRef;
|
|
9
|
+
constructor();
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PrimaryButtonComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PrimaryButtonComponent, "mad-primary-button", never, { "type": { "alias": "type"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "title": { "alias": "title"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=primary-button.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"primary-button.component.d.ts","sourceRoot":"","sources":["../../../../../projects/material-addons/src/lib/button/primary-button/primary-button.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAoB,MAAM,eAAe,CAAC;AACxE,OAAO,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;;AAErD,qBAKa,sBAAuB,SAAQ,cAAc;IAExD,IAAI,EAAE,MAAM,CAAC;IAGb,QAAQ,EAAE,OAAO,CAAC;IAGlB,KAAK,SAAM;IAE2C,MAAM,EAAE,UAAU,CAAC;;yCAV9D,sBAAsB;2CAAtB,sBAAsB;CAiBlC"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class CardComponent {
|
|
4
|
+
cancelDisabled: boolean;
|
|
5
|
+
cancelText: string;
|
|
6
|
+
readonly: boolean;
|
|
7
|
+
editText: string;
|
|
8
|
+
expandable: boolean;
|
|
9
|
+
expanded: boolean;
|
|
10
|
+
saveDisabled: boolean;
|
|
11
|
+
saveText: string;
|
|
12
|
+
title: string;
|
|
13
|
+
editMode: boolean;
|
|
14
|
+
additionalActionIcon: string;
|
|
15
|
+
additionalActionText: string;
|
|
16
|
+
edit: EventEmitter<any>;
|
|
17
|
+
cancel: EventEmitter<any>;
|
|
18
|
+
save: EventEmitter<any>;
|
|
19
|
+
additionalAction: EventEmitter<any>;
|
|
20
|
+
onCancel(): void;
|
|
21
|
+
onEdit(): void;
|
|
22
|
+
onSave(): void;
|
|
23
|
+
toggleCollapse(): void;
|
|
24
|
+
additionalActionClicked(): void;
|
|
25
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CardComponent, never>;
|
|
26
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CardComponent, "mad-card", never, { "cancelDisabled": { "alias": "cancelDisabled"; "required": false; }; "cancelText": { "alias": "cancelText"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "editText": { "alias": "editText"; "required": false; }; "expandable": { "alias": "expandable"; "required": false; }; "expanded": { "alias": "expanded"; "required": false; }; "saveDisabled": { "alias": "saveDisabled"; "required": false; }; "saveText": { "alias": "saveText"; "required": false; }; "title": { "alias": "title"; "required": false; }; "editMode": { "alias": "editMode"; "required": false; }; "additionalActionIcon": { "alias": "additionalActionIcon"; "required": false; }; "additionalActionText": { "alias": "additionalActionText"; "required": false; }; }, { "edit": "edit"; "cancel": "cancel"; "save": "save"; "additionalAction": "additionalAction"; }, never, ["*"], false, never>;
|
|
27
|
+
}
|
|
28
|
+
//# sourceMappingURL=card.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"card.component.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/card/card.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,YAAY,EAAiB,MAAM,eAAe,CAAC;;AAGvE,qBAmCa,aAAa;IACf,cAAc,UAAS;IACvB,UAAU,SAAa;IACvB,QAAQ,UAAQ;IAChB,QAAQ,SAAa;IACrB,UAAU,UAAQ;IAClB,QAAQ,UAAQ;IAChB,YAAY,UAAS;IACrB,QAAQ,SAAa;IACrB,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,UAAS;IACjB,oBAAoB,EAAE,MAAM,CAAC;IAC7B,oBAAoB,SAAM;IACzB,IAAI,oBAAsB;IAC1B,MAAM,oBAAsB;IAC5B,IAAI,oBAAsB;IAC1B,gBAAgB,oBAAsB;IAEhD,QAAQ,IAAI,IAAI;IAIhB,MAAM,IAAI,IAAI;IAKd,MAAM,IAAI,IAAI;IAId,cAAc,IAAI,IAAI;IAItB,uBAAuB,IAAI,IAAI;yCAnCpB,aAAa;2CAAb,aAAa;CAsCzB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"card.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/card/card.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./card.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@angular/material/card";
|
|
5
|
+
import * as i4 from "@angular/material/icon";
|
|
6
|
+
import * as i5 from "../button/button.module";
|
|
7
|
+
import * as i6 from "@angular/material/button";
|
|
8
|
+
import * as i7 from "../throttle-click/throttle-click.module";
|
|
9
|
+
export declare class CardModule {
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CardModule, never>;
|
|
11
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<CardModule, [typeof i1.CardComponent], [typeof i2.CommonModule, typeof i3.MatCardModule, typeof i4.MatIconModule, typeof i5.ButtonModule, typeof i6.MatButtonModule, typeof i7.ThrottleClickModule], [typeof i1.CardComponent]>;
|
|
12
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<CardModule>;
|
|
13
|
+
}
|
|
14
|
+
//# sourceMappingURL=card.module.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"card.module.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/card/card.module.ts"],"names":[],"mappings":";;;;;;;;AASA,qBAKa,UAAU;yCAAV,UAAU;0CAAV,UAAU;0CAAV,UAAU;CAAG"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class ContentHeaderComponent {
|
|
3
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ContentHeaderComponent, never>;
|
|
4
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ContentHeaderComponent, "mad-content-header", never, {}, {}, never, ["*"], false, never>;
|
|
5
|
+
}
|
|
6
|
+
//# sourceMappingURL=content-header.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"content-header.component.d.ts","sourceRoot":"","sources":["../../../../../projects/material-addons/src/lib/content-panel/content-header/content-header.component.ts"],"names":[],"mappings":";AAEA,qBAKa,sBAAsB;yCAAtB,sBAAsB;2CAAtB,sBAAsB;CAAG"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class ContentPanelContainerComponent {
|
|
3
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ContentPanelContainerComponent, never>;
|
|
4
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ContentPanelContainerComponent, "mad-content-panel-container", never, {}, {}, never, ["mad-content-panel-container-content", "mad-content-panel-container-footer"], false, never>;
|
|
5
|
+
}
|
|
6
|
+
//# sourceMappingURL=content-panel-container.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"content-panel-container.component.d.ts","sourceRoot":"","sources":["../../../../../projects/material-addons/src/lib/content-panel/content-panel-container/content-panel-container.component.ts"],"names":[],"mappings":";AAEA,qBAKa,8BAA8B;yCAA9B,8BAA8B;2CAA9B,8BAA8B;CAAG"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class ContentPanelContainerContentComponent {
|
|
3
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ContentPanelContainerContentComponent, never>;
|
|
4
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ContentPanelContainerContentComponent, "mad-content-panel-container-content", never, {}, {}, never, ["*"], false, never>;
|
|
5
|
+
}
|
|
6
|
+
//# sourceMappingURL=content-panel-container-content.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"content-panel-container-content.component.d.ts","sourceRoot":"","sources":["../../../../../projects/material-addons/src/lib/content-panel/content-panel-container-content/content-panel-container-content.component.ts"],"names":[],"mappings":";AAEA,qBAKa,qCAAqC;yCAArC,qCAAqC;2CAArC,qCAAqC;CAAG"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class ContentPanelContainerFooterComponent {
|
|
3
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ContentPanelContainerFooterComponent, never>;
|
|
4
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ContentPanelContainerFooterComponent, "mad-content-panel-container-footer", never, {}, {}, never, ["*"], false, never>;
|
|
5
|
+
}
|
|
6
|
+
//# sourceMappingURL=content-panel-container-footer.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"content-panel-container-footer.component.d.ts","sourceRoot":"","sources":["../../../../../projects/material-addons/src/lib/content-panel/content-panel-container-footer/content-panel-container-footer.component.ts"],"names":[],"mappings":";AAEA,qBAKa,oCAAoC;yCAApC,oCAAoC;2CAApC,oCAAoC;CAAG"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./content-header/content-header.component";
|
|
3
|
+
import * as i2 from "./content-panel-container/content-panel-container.component";
|
|
4
|
+
import * as i3 from "./content-panel-container-content/content-panel-container-content.component";
|
|
5
|
+
import * as i4 from "./content-panel-container-footer/content-panel-container-footer.component";
|
|
6
|
+
import * as i5 from "./main-container/main-container.component";
|
|
7
|
+
import * as i6 from "@angular/common";
|
|
8
|
+
export declare class ContentPanelModule {
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ContentPanelModule, never>;
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ContentPanelModule, [typeof i1.ContentHeaderComponent, typeof i2.ContentPanelContainerComponent, typeof i3.ContentPanelContainerContentComponent, typeof i4.ContentPanelContainerFooterComponent, typeof i5.MainContainerComponent], [typeof i6.CommonModule], [typeof i1.ContentHeaderComponent, typeof i2.ContentPanelContainerComponent, typeof i3.ContentPanelContainerContentComponent, typeof i4.ContentPanelContainerFooterComponent, typeof i5.MainContainerComponent]>;
|
|
11
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ContentPanelModule>;
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=content-panel.module.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"content-panel.module.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/content-panel/content-panel.module.ts"],"names":[],"mappings":";;;;;;;AAQA,qBAiBa,kBAAkB;yCAAlB,kBAAkB;0CAAlB,kBAAkB;0CAAlB,kBAAkB;CAAG"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class MainContainerComponent {
|
|
3
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MainContainerComponent, never>;
|
|
4
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MainContainerComponent, "mad-main-container", never, {}, {}, never, ["mad-content-header", "mad-flowbar", "mad-content-panel-container"], false, never>;
|
|
5
|
+
}
|
|
6
|
+
//# sourceMappingURL=main-container.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"main-container.component.d.ts","sourceRoot":"","sources":["../../../../../projects/material-addons/src/lib/content-panel/main-container/main-container.component.ts"],"names":[],"mappings":";AAEA,qBAKa,sBAAsB;yCAAtB,sBAAsB;2CAAtB,sBAAsB;CAAG"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"data-table-action-type.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/data-table/data-table-action-type.ts"],"names":[],"mappings":"AAAA,qBAAa,mBAAmB;IAC9B,MAAM,CAAC,MAAM,SAAY;IACzB,MAAM,CAAC,KAAK,SAAW;IACvB,MAAM,CAAC,IAAI,SAAU;CACtB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"data-table-action.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/data-table/data-table-action.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,eAAe;IAC9B,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,MAAM,CAAC;IACf,IAAI,EAAE,QAAQ,GAAG,OAAO,GAAG,MAAM,CAAC;IAClC,QAAQ,CAAC,EAAE,GAAG,EAAE,CAAC;IACjB,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { DataTableColumn } from './data-table-column';
|
|
2
|
+
export interface DataTableColumnDefinition {
|
|
3
|
+
id: string;
|
|
4
|
+
label: string;
|
|
5
|
+
editable?: boolean;
|
|
6
|
+
infotext?: string;
|
|
7
|
+
displayedColumns: DataTableColumn[];
|
|
8
|
+
}
|
|
9
|
+
export interface DataTableColumnDefinitionChange {
|
|
10
|
+
action: string;
|
|
11
|
+
definition: DataTableColumnDefinition;
|
|
12
|
+
}
|
|
13
|
+
export interface DataTableDialogData {
|
|
14
|
+
allColumns: DataTableColumn[];
|
|
15
|
+
definition: DataTableColumnDefinition;
|
|
16
|
+
deleteDefinitionAllowed: boolean;
|
|
17
|
+
filterColumnsLabel: string;
|
|
18
|
+
filterColumnsPlaceHolder: string;
|
|
19
|
+
noDataText: string;
|
|
20
|
+
titleLabel: string;
|
|
21
|
+
selectedLabel: string;
|
|
22
|
+
availableLabel: string;
|
|
23
|
+
saveLabel: string;
|
|
24
|
+
deleteLabel: string;
|
|
25
|
+
cancelLabel: string;
|
|
26
|
+
infoTextLabel: string;
|
|
27
|
+
}
|
|
28
|
+
//# sourceMappingURL=data-table-column-definition.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"data-table-column-definition.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/data-table/data-table-column-definition.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAC;AAEtD,MAAM,WAAW,yBAAyB;IACxC,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,gBAAgB,EAAE,eAAe,EAAE,CAAC;CACrC;AAED,MAAM,WAAW,+BAA+B;IAC9C,MAAM,EAAE,MAAM,CAAC;IACf,UAAU,EAAE,yBAAyB,CAAC;CACvC;AAED,MAAM,WAAW,mBAAmB;IAClC,UAAU,EAAE,eAAe,EAAE,CAAC;IAC9B,UAAU,EAAE,yBAAyB,CAAC;IACtC,uBAAuB,EAAE,OAAO,CAAC;IACjC,kBAAkB,EAAE,MAAM,CAAC;IAC3B,wBAAwB,EAAE,MAAM,CAAC;IACjC,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;IACnB,aAAa,EAAE,MAAM,CAAC;IACtB,cAAc,EAAE,MAAM,CAAC;IACvB,SAAS,EAAE,MAAM,CAAC;IAClB,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;IACpB,aAAa,EAAE,MAAM,CAAC;CACvB"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export interface DataTableColumn {
|
|
2
|
+
id: string;
|
|
3
|
+
label: string;
|
|
4
|
+
orderByName?: string;
|
|
5
|
+
dataPropertyName: string;
|
|
6
|
+
isSortable?: boolean;
|
|
7
|
+
isRightAligned?: boolean;
|
|
8
|
+
transformer?: any;
|
|
9
|
+
transformerParams?: any[];
|
|
10
|
+
}
|
|
11
|
+
//# sourceMappingURL=data-table-column.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"data-table-column.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/data-table/data-table-column.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,eAAe;IAC9B,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,gBAAgB,EAAE,MAAM,CAAC;IACzB,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,WAAW,CAAC,EAAE,GAAG,CAAC;IAClB,iBAAiB,CAAC,EAAE,GAAG,EAAE,CAAC;CAC3B"}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { MatDialogRef } from '@angular/material/dialog';
|
|
3
|
+
import { DataTableColumn } from '../data-table-column';
|
|
4
|
+
import { DataTableColumnDefinition, DataTableDialogData } from '../data-table-column-definition';
|
|
5
|
+
import { CdkDrag, CdkDragDrop, CdkDropList } from '@angular/cdk/drag-drop';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class DataTableColumnsModalComponent implements OnInit {
|
|
8
|
+
dialogRef: MatDialogRef<DataTableColumnsModalComponent>;
|
|
9
|
+
data: DataTableDialogData;
|
|
10
|
+
definition: DataTableColumnDefinition;
|
|
11
|
+
searchFilter: string;
|
|
12
|
+
selectedColumns: DataTableColumn[];
|
|
13
|
+
availableColumns: DataTableColumn[];
|
|
14
|
+
filteredAvailableColumns: DataTableColumn[];
|
|
15
|
+
constructor(dialogRef: MatDialogRef<DataTableColumnsModalComponent>, data: DataTableDialogData);
|
|
16
|
+
ngOnInit(): void;
|
|
17
|
+
onDrop(event: CdkDragDrop<DataTableColumn[]>): void;
|
|
18
|
+
onSave(): void;
|
|
19
|
+
onDelete(): void;
|
|
20
|
+
onCancel(): void;
|
|
21
|
+
updateFilterValue(): void;
|
|
22
|
+
findMatchingItemIndex(previousContainer: CdkDropList, item: CdkDrag): number;
|
|
23
|
+
clearFilterValue(): void;
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DataTableColumnsModalComponent, never>;
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DataTableColumnsModalComponent, "mad-data-table-columns-modal.component", never, {}, {}, never, never, false, never>;
|
|
26
|
+
}
|
|
27
|
+
//# sourceMappingURL=data-table-columns-modal.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"data-table-columns-modal.component.d.ts","sourceRoot":"","sources":["../../../../../projects/material-addons/src/lib/data-table/data-table-columns-modal/data-table-columns-modal.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAqB,MAAM,EAAE,MAAM,eAAe,CAAC;AAC1D,OAAO,EAAmB,YAAY,EAAE,MAAM,0BAA0B,CAAC;AACzE,OAAO,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAC;AACvD,OAAO,EAAE,yBAAyB,EAAmC,mBAAmB,EAAE,MAAM,iCAAiC,CAAC;AAClI,OAAO,EAAE,OAAO,EAAE,WAAW,EAAE,WAAW,EAAsC,MAAM,wBAAwB,CAAC;;AAE/G,qBAKa,8BAA+B,YAAW,MAAM;IAQlD,SAAS,EAAE,YAAY,CAAC,8BAA8B,CAAC;IAEvD,IAAI,EAAE,mBAAmB;IATlC,UAAU,EAAE,yBAAyB,CAAC;IACtC,YAAY,EAAE,MAAM,CAAC;IACrB,eAAe,EAAE,eAAe,EAAE,CAAM;IACxC,gBAAgB,EAAE,eAAe,EAAE,CAAM;IACzC,wBAAwB,EAAE,eAAe,EAAE,CAAM;gBAGxC,SAAS,EAAE,YAAY,CAAC,8BAA8B,CAAC,EAEvD,IAAI,EAAE,mBAAmB;IAGlC,QAAQ,IAAI,IAAI;IAchB,MAAM,CAAC,KAAK,EAAE,WAAW,CAAC,eAAe,EAAE,CAAC,GAAG,IAAI;IAWnD,MAAM,IAAI,IAAI;IASd,QAAQ,IAAI,IAAI;IAQhB,QAAQ,IAAI,IAAI;IAIhB,iBAAiB,IAAI,IAAI;IAQzB,qBAAqB,CAAC,iBAAiB,EAAE,WAAW,EAAE,IAAI,EAAE,OAAO,GAAG,MAAM;IAc5E,gBAAgB,IAAI,IAAI;yCAjFb,8BAA8B;2CAA9B,8BAA8B;CAqF1C"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"data-table-row.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/data-table/data-table-row.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,YAAY;IAC3B,EAAE,EAAE,MAAM,CAAC;IACX,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,UAAU,EAAE,GAAG,CAAC;IAChB,aAAa,EAAE,GAAG,CAAC;CACpB"}
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
import { AfterViewInit, EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { MatTableDataSource } from '@angular/material/table';
|
|
3
|
+
import { MatPaginator, PageEvent } from '@angular/material/paginator';
|
|
4
|
+
import { MatSort, Sort } from '@angular/material/sort';
|
|
5
|
+
import { DataTableColumn } from './data-table-column';
|
|
6
|
+
import { DataTableAction } from './data-table-action';
|
|
7
|
+
import { SelectionModel } from '@angular/cdk/collections';
|
|
8
|
+
import { MatDialog } from '@angular/material/dialog';
|
|
9
|
+
import { DataTableColumnDefinition, DataTableColumnDefinitionChange } from './data-table-column-definition';
|
|
10
|
+
import { DataTableRow } from './data-table-row';
|
|
11
|
+
import * as i0 from "@angular/core";
|
|
12
|
+
export declare class DataTableComponent implements OnInit, AfterViewInit {
|
|
13
|
+
private matDialog;
|
|
14
|
+
filterLabel: string;
|
|
15
|
+
filterPlaceholder: string;
|
|
16
|
+
filterColumnsLabel: string;
|
|
17
|
+
filterColumnsPlaceHolder: string;
|
|
18
|
+
noDataText: string;
|
|
19
|
+
columnSettingsModalTitleLabel: string;
|
|
20
|
+
selectedLabel: string;
|
|
21
|
+
availableLabel: string;
|
|
22
|
+
saveLabel: string;
|
|
23
|
+
deleteLabel: string;
|
|
24
|
+
cancelLabel: string;
|
|
25
|
+
infoTextLabel: string;
|
|
26
|
+
tableClass: string;
|
|
27
|
+
pageSizeOptions: number[];
|
|
28
|
+
externalFilter: any;
|
|
29
|
+
actions: DataTableAction[];
|
|
30
|
+
idGenerator: any;
|
|
31
|
+
parentIdGenerator: any;
|
|
32
|
+
deleteDefinitionAllowed: boolean;
|
|
33
|
+
useAsync: boolean;
|
|
34
|
+
translateLabels: boolean;
|
|
35
|
+
set filterValue(filterValue: string);
|
|
36
|
+
set displayedColumns(cols: DataTableColumn[]);
|
|
37
|
+
set displayedColumnDefinition(def: DataTableColumnDefinition);
|
|
38
|
+
set tableData(data: any[]);
|
|
39
|
+
set page(page: PageEvent);
|
|
40
|
+
set columnDefinitions(definitions: DataTableColumnDefinition[]);
|
|
41
|
+
set loading(isLoading: boolean);
|
|
42
|
+
set defaultPageSize(defaultSize: number);
|
|
43
|
+
set externalPaginator(paginator: any);
|
|
44
|
+
set paginationEnabled(isPaginationEnabled: boolean);
|
|
45
|
+
set allColumns(allColumns: DataTableColumn[]);
|
|
46
|
+
set filterEnabled(isFilterEnabled: boolean);
|
|
47
|
+
set forceMode(mode: string);
|
|
48
|
+
sortEvent: EventEmitter<Sort>;
|
|
49
|
+
actionEvent: EventEmitter<DataTableAction>;
|
|
50
|
+
pageEvent: EventEmitter<PageEvent>;
|
|
51
|
+
allColumnsEvent: EventEmitter<void>;
|
|
52
|
+
columnDefinitionChangeEvent: EventEmitter<DataTableColumnDefinitionChange>;
|
|
53
|
+
viewDefinitionChangeEvent: EventEmitter<DataTableColumnDefinition>;
|
|
54
|
+
paginator: MatPaginator;
|
|
55
|
+
sort: MatSort;
|
|
56
|
+
readonly ACTION_COLUMN_NAME = "__action__";
|
|
57
|
+
readonly SINGLE: string;
|
|
58
|
+
readonly BATCH: string;
|
|
59
|
+
readonly NONE: string;
|
|
60
|
+
tableActions: DataTableAction[];
|
|
61
|
+
rowActions: DataTableAction[];
|
|
62
|
+
columns: DataTableColumn[];
|
|
63
|
+
allSelected: boolean;
|
|
64
|
+
selected: [];
|
|
65
|
+
_forceMode: string;
|
|
66
|
+
rowMap: Map<string, DataTableRow>;
|
|
67
|
+
dataSource: MatTableDataSource<any[]>;
|
|
68
|
+
selectionModel: SelectionModel<string>;
|
|
69
|
+
columnIds: string[];
|
|
70
|
+
allColumnDefinitions: DataTableColumnDefinition[];
|
|
71
|
+
editableColumnDefinitions: DataTableColumnDefinition[];
|
|
72
|
+
viewableColumnDefinitions: DataTableColumnDefinition[];
|
|
73
|
+
selectedColumnDefinion: DataTableColumnDefinition;
|
|
74
|
+
allAvailableColumns: DataTableColumn[];
|
|
75
|
+
selectedDefinition: DataTableColumnDefinition;
|
|
76
|
+
defaultAction: DataTableAction;
|
|
77
|
+
isFilterEnabled: boolean;
|
|
78
|
+
isPaginationEnabled: boolean;
|
|
79
|
+
mode: string;
|
|
80
|
+
isRowClickable: boolean;
|
|
81
|
+
showColumnModal: boolean;
|
|
82
|
+
isLoading: boolean;
|
|
83
|
+
extPaginator: MatPaginator;
|
|
84
|
+
paginatorLength: number;
|
|
85
|
+
paginatorPageIndex: number;
|
|
86
|
+
paginatorPageSize: number;
|
|
87
|
+
constructor(matDialog: MatDialog);
|
|
88
|
+
static compare(a: Record<string, any>, b: Record<string, any>, sort: Sort): number;
|
|
89
|
+
static compareNumber(x: number, y: number, ascending: boolean): number;
|
|
90
|
+
static compareString(x: string, y: string, ascending: boolean): number;
|
|
91
|
+
static compareBoolean(x: boolean, y: boolean, ascending: boolean): number;
|
|
92
|
+
static transformData(value: any, transformer: any, transformerParams: any): any;
|
|
93
|
+
static generateRowId(): string;
|
|
94
|
+
static isClickOnRowMenuIcon(event: MouseEvent): boolean;
|
|
95
|
+
ngOnInit(): void;
|
|
96
|
+
ngAfterViewInit(): void;
|
|
97
|
+
onColumnSettings(definition?: DataTableColumnDefinition): void;
|
|
98
|
+
onViewDefinition(definition: DataTableColumnDefinition): void;
|
|
99
|
+
isCurrentDefinition(definition: DataTableColumnDefinition): boolean;
|
|
100
|
+
get selectedCount(): number;
|
|
101
|
+
get rowCount(): number;
|
|
102
|
+
getAllDataSourceRowsOfCurrentPage(): any[];
|
|
103
|
+
getSelectedCount(actionType: string): string;
|
|
104
|
+
isDisabled(actionType: string): boolean;
|
|
105
|
+
onToggleSelectAll(): void;
|
|
106
|
+
isSelected(rowId: string): boolean;
|
|
107
|
+
setFilterValue(value: string): void;
|
|
108
|
+
onRowEvent(event: MouseEvent, row: any, action?: DataTableAction): void;
|
|
109
|
+
onSortingEvent(sort: Sort): void;
|
|
110
|
+
onPageEvent(event: PageEvent): void;
|
|
111
|
+
onTableAction(tableAction: DataTableAction): void;
|
|
112
|
+
private emitTableAction;
|
|
113
|
+
private generateDisplayedDataElement;
|
|
114
|
+
private internalSort;
|
|
115
|
+
private setActions;
|
|
116
|
+
private createDataMapsAndSetDisplayedDataSourceData;
|
|
117
|
+
private openColumnModal;
|
|
118
|
+
private getTableMode;
|
|
119
|
+
private unsetPageSizeIfNecessary;
|
|
120
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DataTableComponent, never>;
|
|
121
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DataTableComponent, "mad-data-table", never, { "filterLabel": { "alias": "filterLabel"; "required": false; }; "filterPlaceholder": { "alias": "filterPlaceholder"; "required": false; }; "filterColumnsLabel": { "alias": "filterColumnsLabel"; "required": false; }; "filterColumnsPlaceHolder": { "alias": "filterColumnsPlaceHolder"; "required": false; }; "noDataText": { "alias": "noDataText"; "required": false; }; "columnSettingsModalTitleLabel": { "alias": "columnSettingsModalTitleLabel"; "required": false; }; "selectedLabel": { "alias": "selectedLabel"; "required": false; }; "availableLabel": { "alias": "availableLabel"; "required": false; }; "saveLabel": { "alias": "saveLabel"; "required": false; }; "deleteLabel": { "alias": "deleteLabel"; "required": false; }; "cancelLabel": { "alias": "cancelLabel"; "required": false; }; "infoTextLabel": { "alias": "infoTextLabel"; "required": false; }; "tableClass": { "alias": "tableClass"; "required": false; }; "pageSizeOptions": { "alias": "pageSizeOptions"; "required": false; }; "externalFilter": { "alias": "externalFilter"; "required": false; }; "actions": { "alias": "actions"; "required": false; }; "idGenerator": { "alias": "idGenerator"; "required": false; }; "parentIdGenerator": { "alias": "parentIdGenerator"; "required": false; }; "deleteDefinitionAllowed": { "alias": "deleteDefinitionAllowed"; "required": false; }; "useAsync": { "alias": "useAsync"; "required": false; }; "translateLabels": { "alias": "translateLabels"; "required": false; }; "filterValue": { "alias": "filterValue"; "required": false; }; "displayedColumns": { "alias": "displayedColumns"; "required": false; }; "displayedColumnDefinition": { "alias": "displayedColumnDefinition"; "required": false; }; "tableData": { "alias": "tableData"; "required": false; }; "page": { "alias": "page"; "required": false; }; "columnDefinitions": { "alias": "columnDefinitions"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "defaultPageSize": { "alias": "defaultPageSize"; "required": false; }; "externalPaginator": { "alias": "externalPaginator"; "required": false; }; "paginationEnabled": { "alias": "paginationEnabled"; "required": false; }; "allColumns": { "alias": "allColumns"; "required": false; }; "filterEnabled": { "alias": "filterEnabled"; "required": false; }; "forceMode": { "alias": "forceMode"; "required": false; }; }, { "sortEvent": "sortEvent"; "actionEvent": "actionEvent"; "pageEvent": "pageEvent"; "allColumnsEvent": "allColumnsEvent"; "columnDefinitionChangeEvent": "columnDefinitionChangeEvent"; "viewDefinitionChangeEvent": "viewDefinitionChangeEvent"; }, never, never, false, never>;
|
|
122
|
+
}
|
|
123
|
+
//# sourceMappingURL=data-table.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"data-table.component.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/data-table/data-table.component.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export { DataTableColumn } from './data-table-column';
|
|
2
|
+
export * from './data-table-columns-modal/data-table-columns-modal.component';
|
|
3
|
+
export { DataTableAction } from './data-table-action';
|
|
4
|
+
export { DataTableColumnDefinition } from './data-table-column-definition';
|
|
5
|
+
export { DataTableComponent } from './data-table.component';
|
|
6
|
+
//# sourceMappingURL=data-table.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"data-table.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/data-table/data-table.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAC;AACtD,cAAc,+DAA+D,CAAC;AAC9E,OAAO,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAC;AACtD,OAAO,EAAE,yBAAyB,EAAE,MAAM,gCAAgC,CAAC;AAC3E,OAAO,EAAE,kBAAkB,EAAE,MAAM,wBAAwB,CAAC"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./data-table.component";
|
|
3
|
+
import * as i2 from "./data-table-columns-modal/data-table-columns-modal.component";
|
|
4
|
+
import * as i3 from "@angular/common";
|
|
5
|
+
import * as i4 from "@angular/material/button";
|
|
6
|
+
import * as i5 from "@angular/material/icon";
|
|
7
|
+
import * as i6 from "@angular/material/form-field";
|
|
8
|
+
import * as i7 from "@angular/material/input";
|
|
9
|
+
import * as i8 from "@angular/material/menu";
|
|
10
|
+
import * as i9 from "@angular/material/paginator";
|
|
11
|
+
import * as i10 from "@angular/material/sort";
|
|
12
|
+
import * as i11 from "@angular/material/table";
|
|
13
|
+
import * as i12 from "@angular/material/progress-spinner";
|
|
14
|
+
import * as i13 from "../button/button.module";
|
|
15
|
+
import * as i14 from "@ngx-translate/core";
|
|
16
|
+
import * as i15 from "@angular/material/checkbox";
|
|
17
|
+
import * as i16 from "@angular/material/badge";
|
|
18
|
+
import * as i17 from "@angular/cdk/drag-drop";
|
|
19
|
+
import * as i18 from "@angular/forms";
|
|
20
|
+
export declare class DataTableModule {
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DataTableModule, never>;
|
|
22
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DataTableModule, [typeof i1.DataTableComponent, typeof i2.DataTableColumnsModalComponent], [typeof i3.CommonModule, typeof i4.MatButtonModule, typeof i5.MatIconModule, typeof i6.MatFormFieldModule, typeof i7.MatInputModule, typeof i8.MatMenuModule, typeof i9.MatPaginatorModule, typeof i10.MatSortModule, typeof i11.MatTableModule, typeof i12.MatProgressSpinnerModule, typeof i13.ButtonModule, typeof i14.TranslateModule, typeof i15.MatCheckboxModule, typeof i16.MatBadgeModule, typeof i17.DragDropModule, typeof i18.FormsModule], [typeof i1.DataTableComponent, typeof i2.DataTableColumnsModalComponent]>;
|
|
23
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<DataTableModule>;
|
|
24
|
+
}
|
|
25
|
+
//# sourceMappingURL=data-table.module.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"data-table.module.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/data-table/data-table.module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;AAoBA,qBAsBa,eAAe;yCAAf,eAAe;0CAAf,eAAe;0CAAf,eAAe;CAAG"}
|