@porscheinformatik/material-addons 17.0.2 → 17.1.0
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/esm2022/lib/button/button.mjs +3 -1
- package/esm2022/lib/button/button.module.mjs +34 -4
- package/esm2022/lib/button/flat-button/link-button.component.mjs +2 -2
- package/esm2022/lib/button/icon-button/icon-button.component.mjs +2 -2
- package/esm2022/lib/button/mad-basic-button.mjs +2 -2
- package/esm2022/lib/button/mad-button/mad-button.directive.mjs +60 -0
- package/esm2022/lib/button/mad-button-group/mad-button-group.component.mjs +20 -0
- package/esm2022/lib/button/outline-button/outline-button.component.mjs +6 -3
- package/esm2022/lib/button/primary-button/primary-button.component.mjs +3 -3
- package/esm2022/lib/card/card.component.mjs +3 -3
- package/esm2022/lib/card/card.mjs +1 -1
- package/esm2022/lib/data-table/data-table-columns-modal/data-table-columns-modal.component.mjs +5 -5
- package/esm2022/lib/data-table/data-table.component.mjs +3 -3
- package/esm2022/lib/data-table/data-table.mjs +1 -1
- package/esm2022/lib/file-upload/drag-and-drop-directive.directive.mjs +2 -2
- package/esm2022/lib/file-upload/file-upload.component.mjs +18 -12
- package/esm2022/lib/layout/content-panel/content-header/content-header.component.mjs +11 -0
- package/esm2022/lib/layout/content-panel/content-panel-container/content-panel-container.component.mjs +11 -0
- package/esm2022/lib/layout/content-panel/content-panel-container-content/content-panel-container-content.component.mjs +11 -0
- package/esm2022/lib/layout/content-panel/content-panel-container-footer/content-panel-container-footer.component.mjs +11 -0
- package/esm2022/lib/layout/content-panel/content-panel-container-sidebar/content-panel-container-sidebar.component.mjs +11 -0
- package/esm2022/lib/layout/content-panel/content-panel.module.mjs +47 -0
- package/esm2022/lib/layout/content-panel/main-container/main-container.component.mjs +11 -0
- package/esm2022/lib/layout/flowbar/flowbar.component.mjs +190 -0
- package/esm2022/lib/{flowbar → layout/flowbar}/flowbar.module.mjs +1 -1
- package/esm2022/lib/layout/sidebar/sidebar-item/sidebar-item.component.mjs +11 -0
- package/esm2022/lib/layout/sidebar/sidebar.component.mjs +19 -0
- package/esm2022/lib/layout/sidebar/sidebar.module.mjs +21 -0
- package/esm2022/lib/layout/toolbar/toolbar-action.interface.mjs +2 -0
- package/esm2022/lib/layout/toolbar/toolbar.component.mjs +78 -0
- package/esm2022/lib/layout/toolbar/toolbar.module.mjs +56 -0
- package/esm2022/lib/layout/toolbar/toolbar.service.mjs +124 -0
- package/esm2022/lib/material-addons.module.mjs +8 -4
- package/esm2022/lib/numeric-field/numeric-field.directive.mjs +4 -4
- package/esm2022/lib/numeric-field/numeric-field.mjs +1 -1
- package/esm2022/lib/quick-list/base-quick-list.component.mjs +2 -4
- package/esm2022/lib/quick-list/quick-list-compact/quick-list-compact.component.mjs +3 -3
- package/esm2022/lib/quick-list/quick-list.component.mjs +3 -3
- package/esm2022/lib/quick-list/quick-list.mjs +1 -1
- package/esm2022/lib/quick-list/quick-list.module.mjs +25 -5
- package/esm2022/lib/quick-list/reactive-form-quick-list/reactive-form-quick-list.component.mjs +4 -4
- package/esm2022/lib/quick-list/reactive-form-quick-list-compact/reactive-form-quick-list-compact.component.mjs +4 -4
- package/esm2022/lib/readonly/readonly-form-field/readonly-form-field.component.mjs +3 -3
- package/esm2022/lib/readonly/readonly-form-field-wrapper/readonly-form-field-wrapper.component.mjs +3 -3
- package/esm2022/lib/readonly/readonly-form-field.module.mjs +2 -2
- package/esm2022/lib/stepper/step-header/step-header.component.mjs +3 -3
- package/esm2022/lib/stepper/stepper.component.mjs +7 -7
- package/esm2022/lib/stepper/stepper.module.mjs +2 -2
- package/esm2022/lib/table/table.component.mjs +3 -3
- package/esm2022/lib/table/table.mjs +1 -1
- package/esm2022/lib/throttle-click/throttle-click.directive.mjs +2 -2
- package/esm2022/public_api.mjs +17 -13
- package/fesm2022/porscheinformatik-material-addons.mjs +510 -326
- package/fesm2022/porscheinformatik-material-addons.mjs.map +1 -1
- package/lib/button/button.d.ts +2 -0
- package/lib/button/button.d.ts.map +1 -1
- package/lib/button/button.module.d.ts +8 -6
- package/lib/button/button.module.d.ts.map +1 -1
- package/lib/button/flat-button/link-button.component.d.ts.map +1 -1
- package/lib/button/icon-button/icon-button.component.d.ts.map +1 -1
- package/lib/button/mad-basic-button.d.ts.map +1 -1
- package/lib/button/mad-button/mad-button.directive.d.ts +23 -0
- package/lib/button/mad-button/mad-button.directive.d.ts.map +1 -0
- package/lib/button/mad-button-group/mad-button-group.component.d.ts +7 -0
- package/lib/button/mad-button-group/mad-button-group.component.d.ts.map +1 -0
- package/lib/button/outline-button/outline-button.component.d.ts +3 -1
- package/lib/button/outline-button/outline-button.component.d.ts.map +1 -1
- package/lib/button/primary-button/primary-button.component.d.ts.map +1 -1
- package/lib/card/card.d.ts.map +1 -1
- package/lib/data-table/data-table.d.ts.map +1 -1
- package/lib/file-upload/drag-and-drop-directive.directive.d.ts.map +1 -1
- package/lib/file-upload/file-upload.component.d.ts +5 -3
- package/lib/file-upload/file-upload.component.d.ts.map +1 -1
- package/lib/layout/content-panel/content-header/content-header.component.d.ts.map +1 -0
- package/lib/{content-panel → layout/content-panel}/content-panel-container/content-panel-container.component.d.ts +1 -1
- package/lib/layout/content-panel/content-panel-container/content-panel-container.component.d.ts.map +1 -0
- package/lib/layout/content-panel/content-panel-container-content/content-panel-container-content.component.d.ts.map +1 -0
- package/lib/layout/content-panel/content-panel-container-footer/content-panel-container-footer.component.d.ts.map +1 -0
- package/lib/layout/content-panel/content-panel-container-sidebar/content-panel-container-sidebar.component.d.ts +6 -0
- package/lib/layout/content-panel/content-panel-container-sidebar/content-panel-container-sidebar.component.d.ts.map +1 -0
- package/lib/{content-panel → layout/content-panel}/content-panel.module.d.ts +4 -3
- package/lib/layout/content-panel/content-panel.module.d.ts.map +1 -0
- package/lib/layout/content-panel/main-container/main-container.component.d.ts.map +1 -0
- package/lib/layout/flowbar/flowbar.component.d.ts.map +1 -0
- package/lib/layout/flowbar/flowbar.module.d.ts.map +1 -0
- package/lib/layout/sidebar/sidebar-item/sidebar-item.component.d.ts +6 -0
- package/lib/layout/sidebar/sidebar-item/sidebar-item.component.d.ts.map +1 -0
- package/lib/layout/sidebar/sidebar.component.d.ts +8 -0
- package/lib/layout/sidebar/sidebar.component.d.ts.map +1 -0
- package/lib/layout/sidebar/sidebar.module.d.ts +12 -0
- package/lib/layout/sidebar/sidebar.module.d.ts.map +1 -0
- package/lib/layout/toolbar/toolbar-action.interface.d.ts.map +1 -0
- package/lib/layout/toolbar/toolbar.component.d.ts.map +1 -0
- package/lib/{toolbar → layout/toolbar}/toolbar.module.d.ts +2 -2
- package/lib/layout/toolbar/toolbar.module.d.ts.map +1 -0
- package/lib/layout/toolbar/toolbar.service.d.ts.map +1 -0
- package/lib/material-addons.module.d.ts +3 -2
- package/lib/material-addons.module.d.ts.map +1 -1
- package/lib/numeric-field/numeric-field.d.ts.map +1 -1
- package/lib/numeric-field/numeric-field.directive.d.ts.map +1 -1
- package/lib/quick-list/base-quick-list.component.d.ts +1 -1
- package/lib/quick-list/base-quick-list.component.d.ts.map +1 -1
- package/lib/quick-list/quick-list-compact/quick-list-compact.component.d.ts +1 -1
- package/lib/quick-list/quick-list-compact/quick-list-compact.component.d.ts.map +1 -1
- package/lib/quick-list/quick-list.component.d.ts +1 -1
- package/lib/quick-list/quick-list.component.d.ts.map +1 -1
- package/lib/quick-list/quick-list.d.ts.map +1 -1
- package/lib/quick-list/quick-list.module.d.ts.map +1 -1
- package/lib/quick-list/reactive-form-quick-list/reactive-form-quick-list.component.d.ts +2 -2
- package/lib/quick-list/reactive-form-quick-list/reactive-form-quick-list.component.d.ts.map +1 -1
- package/lib/quick-list/reactive-form-quick-list-compact/reactive-form-quick-list-compact.component.d.ts +2 -2
- package/lib/quick-list/reactive-form-quick-list-compact/reactive-form-quick-list-compact.component.d.ts.map +1 -1
- package/lib/readonly/readonly-form-field/readonly-form-field.component.d.ts.map +1 -1
- package/lib/readonly/readonly-form-field-wrapper/readonly-form-field-wrapper.component.d.ts.map +1 -1
- package/lib/stepper/step-header/step-header.component.d.ts.map +1 -1
- package/lib/stepper/stepper.component.d.ts.map +1 -1
- package/lib/table/table.d.ts.map +1 -1
- package/package.json +4 -2
- package/public_api.d.ts +16 -12
- package/public_api.d.ts.map +1 -1
- package/themes/carcat.scss +38 -0
- package/themes/common/button.scss +34 -0
- package/themes/common/styles.scss +169 -40
- package/themes/common/theme.scss +57 -0
- package/themes/pbv.scss +16 -26
- package/themes/poa.scss +30 -39
- package/esm2022/lib/content-panel/content-header/content-header.component.mjs +0 -11
- package/esm2022/lib/content-panel/content-panel-container/content-panel-container.component.mjs +0 -11
- package/esm2022/lib/content-panel/content-panel-container-content/content-panel-container-content.component.mjs +0 -11
- package/esm2022/lib/content-panel/content-panel-container-footer/content-panel-container-footer.component.mjs +0 -11
- package/esm2022/lib/content-panel/content-panel.module.mjs +0 -42
- package/esm2022/lib/content-panel/main-container/main-container.component.mjs +0 -11
- package/esm2022/lib/flowbar/flowbar.component.mjs +0 -190
- package/esm2022/lib/toolbar/toolbar-action.interface.mjs +0 -2
- package/esm2022/lib/toolbar/toolbar.component.mjs +0 -78
- package/esm2022/lib/toolbar/toolbar.module.mjs +0 -56
- package/esm2022/lib/toolbar/toolbar.service.mjs +0 -124
- package/lib/content-panel/content-header/content-header.component.d.ts.map +0 -1
- package/lib/content-panel/content-panel-container/content-panel-container.component.d.ts.map +0 -1
- package/lib/content-panel/content-panel-container-content/content-panel-container-content.component.d.ts.map +0 -1
- package/lib/content-panel/content-panel-container-footer/content-panel-container-footer.component.d.ts.map +0 -1
- package/lib/content-panel/content-panel.module.d.ts.map +0 -1
- package/lib/content-panel/main-container/main-container.component.d.ts.map +0 -1
- package/lib/flowbar/flowbar.component.d.ts.map +0 -1
- package/lib/flowbar/flowbar.module.d.ts.map +0 -1
- package/lib/toolbar/toolbar-action.interface.d.ts.map +0 -1
- package/lib/toolbar/toolbar.component.d.ts.map +0 -1
- package/lib/toolbar/toolbar.module.d.ts.map +0 -1
- package/lib/toolbar/toolbar.service.d.ts.map +0 -1
- /package/lib/{content-panel → layout/content-panel}/content-header/content-header.component.d.ts +0 -0
- /package/lib/{content-panel → layout/content-panel}/content-panel-container-content/content-panel-container-content.component.d.ts +0 -0
- /package/lib/{content-panel → layout/content-panel}/content-panel-container-footer/content-panel-container-footer.component.d.ts +0 -0
- /package/lib/{content-panel → layout/content-panel}/main-container/main-container.component.d.ts +0 -0
- /package/lib/{flowbar → layout/flowbar}/flowbar.component.d.ts +0 -0
- /package/lib/{flowbar → layout/flowbar}/flowbar.module.d.ts +0 -0
- /package/lib/{toolbar → layout/toolbar}/toolbar-action.interface.d.ts +0 -0
- /package/lib/{toolbar → layout/toolbar}/toolbar.component.d.ts +0 -0
- /package/lib/{toolbar → layout/toolbar}/toolbar.service.d.ts +0 -0
package/lib/button/button.d.ts
CHANGED
|
@@ -4,4 +4,6 @@ export { LinkButtonComponent } from './flat-button/link-button.component';
|
|
|
4
4
|
export { IconButtonComponent } from './icon-button/icon-button.component';
|
|
5
5
|
export { OutlineButtonComponent } from './outline-button/outline-button.component';
|
|
6
6
|
export { PrimaryButtonComponent } from './primary-button/primary-button.component';
|
|
7
|
+
export { MadButtonDirective } from './mad-button/mad-button.directive';
|
|
8
|
+
export { MadButtonGroupComponent } from './mad-button-group/mad-button-group.component';
|
|
7
9
|
//# sourceMappingURL=button.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"button.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/button/button.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
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;AACnF,OAAO,EAAE,kBAAkB,EAAE,MAAM,mCAAmC,CAAC;AACvE,OAAO,EAAE,uBAAuB,EAAE,MAAM,+CAA+C,CAAC"}
|
|
@@ -4,14 +4,16 @@ import * as i2 from "./outline-button/outline-button.component";
|
|
|
4
4
|
import * as i3 from "./flat-button/link-button.component";
|
|
5
5
|
import * as i4 from "./danger-button/danger-button.component";
|
|
6
6
|
import * as i5 from "./icon-button/icon-button.component";
|
|
7
|
-
import * as i6 from "
|
|
8
|
-
import * as i7 from "
|
|
9
|
-
import * as i8 from "@angular/
|
|
10
|
-
import * as i9 from "@angular/
|
|
11
|
-
import * as i10 from "@angular/material/
|
|
7
|
+
import * as i6 from "./mad-button/mad-button.directive";
|
|
8
|
+
import * as i7 from "./mad-button-group/mad-button-group.component";
|
|
9
|
+
import * as i8 from "@angular/common";
|
|
10
|
+
import * as i9 from "@angular/router";
|
|
11
|
+
import * as i10 from "@angular/material/button";
|
|
12
|
+
import * as i11 from "@angular/material/icon";
|
|
13
|
+
import * as i12 from "@angular/material/tooltip";
|
|
12
14
|
export declare class ButtonModule {
|
|
13
15
|
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
|
|
16
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ButtonModule, [typeof i1.PrimaryButtonComponent, typeof i2.OutlineButtonComponent, typeof i3.LinkButtonComponent, typeof i4.DangerButtonComponent, typeof i5.IconButtonComponent, typeof i6.MadButtonDirective, typeof i7.MadButtonGroupComponent], [typeof i8.CommonModule, typeof i9.RouterModule, typeof i10.MatButtonModule, typeof i11.MatIconModule, typeof i12.MatTooltipModule], [typeof i1.PrimaryButtonComponent, typeof i2.OutlineButtonComponent, typeof i3.LinkButtonComponent, typeof i4.DangerButtonComponent, typeof i5.IconButtonComponent, typeof i6.MadButtonDirective, typeof i7.MadButtonGroupComponent]>;
|
|
15
17
|
static ɵinj: i0.ɵɵInjectorDeclaration<ButtonModule>;
|
|
16
18
|
}
|
|
17
19
|
//# sourceMappingURL=button.module.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"button.module.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/button/button.module.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"button.module.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/button/button.module.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAcA,qBAqBa,YAAY;yCAAZ,YAAY;0CAAZ,YAAY;0CAAZ,YAAY;CAAG"}
|
|
@@ -1 +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,
|
|
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,qBAIa,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"}
|
|
@@ -1 +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,
|
|
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,qBAIa,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"}
|
|
@@ -1 +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,
|
|
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,23 @@
|
|
|
1
|
+
import { ElementRef, OnInit, Renderer2 } from '@angular/core';
|
|
2
|
+
import { ThemePalette } from '@angular/material/core';
|
|
3
|
+
import { MatAnchor, MatButton } from '@angular/material/button';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class MadButtonDirective implements OnInit {
|
|
6
|
+
private renderer;
|
|
7
|
+
private elementRef;
|
|
8
|
+
static readonly UPPERCASE_CLASS = "mad-uppercase";
|
|
9
|
+
static readonly OUTLINE_CLASS = "mad-outline";
|
|
10
|
+
static readonly DEFAULT_COLOR = "primary";
|
|
11
|
+
color: ThemePalette;
|
|
12
|
+
private readonly matComponent;
|
|
13
|
+
constructor(renderer: Renderer2, elementRef: ElementRef<HTMLButtonElement | HTMLAnchorElement>, anchor: MatAnchor, button: MatButton);
|
|
14
|
+
set outline(value: boolean);
|
|
15
|
+
set uppercase(value: boolean);
|
|
16
|
+
ngOnInit(): void;
|
|
17
|
+
setUppercase(value: boolean): void;
|
|
18
|
+
setOutline(value: boolean): void;
|
|
19
|
+
addOrRemoveClass(condition: boolean, className: string): void;
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MadButtonDirective, [null, null, { optional: true; }, { optional: true; }]>;
|
|
21
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MadButtonDirective, "[madButton]", never, { "color": { "alias": "color"; "required": false; }; "outline": { "alias": "outline"; "required": false; }; "uppercase": { "alias": "uppercase"; "required": false; }; }, {}, never, never, false, never>;
|
|
22
|
+
}
|
|
23
|
+
//# sourceMappingURL=mad-button.directive.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"mad-button.directive.d.ts","sourceRoot":"","sources":["../../../../../projects/material-addons/src/lib/button/mad-button/mad-button.directive.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAS,MAAM,EAAY,SAAS,EAAE,MAAM,eAAe,CAAC;AAC1F,OAAO,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAC;AACtD,OAAO,EAAE,SAAS,EAAE,SAAS,EAAE,MAAM,0BAA0B,CAAC;;AAEhE,qBAGa,kBAAmB,YAAW,MAAM;IAS7C,OAAO,CAAC,QAAQ;IAChB,OAAO,CAAC,UAAU;IATpB,MAAM,CAAC,QAAQ,CAAC,eAAe,mBAAmB;IAClD,MAAM,CAAC,QAAQ,CAAC,aAAa,iBAAiB;IAC9C,MAAM,CAAC,QAAQ,CAAC,aAAa,aAAa;IAEjC,KAAK,EAAE,YAAY,CAAC;IAC7B,OAAO,CAAC,QAAQ,CAAC,YAAY,CAAwB;gBAG3C,QAAQ,EAAE,SAAS,EACnB,UAAU,EAAE,UAAU,CAAC,iBAAiB,GAAG,iBAAiB,CAAC,EACzD,MAAM,EAAE,SAAS,EACjB,MAAM,EAAE,SAAS;IAQ/B,IAAa,OAAO,CAAC,KAAK,EAAE,OAAO,EAElC;IACD,IAAa,SAAS,CAAC,KAAK,EAAE,OAAO,EAEpC;IAED,QAAQ;IAOR,YAAY,CAAC,KAAK,EAAE,OAAO;IAI3B,UAAU,CAAC,KAAK,EAAE,OAAO;IAIzB,gBAAgB,CAAC,SAAS,EAAE,OAAO,EAAE,SAAS,EAAE,MAAM;yCA1C3C,kBAAkB;2CAAlB,kBAAkB;CAiD9B"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class MadButtonGroupComponent {
|
|
3
|
+
setClass: boolean;
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MadButtonGroupComponent, never>;
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MadButtonGroupComponent, "mad-button-group", never, {}, {}, never, ["*"], false, never>;
|
|
6
|
+
}
|
|
7
|
+
//# sourceMappingURL=mad-button-group.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"mad-button-group.component.d.ts","sourceRoot":"","sources":["../../../../../projects/material-addons/src/lib/button/mad-button-group/mad-button-group.component.ts"],"names":[],"mappings":";AAEA,qBAIa,uBAAuB;IACK,QAAQ,UAAQ;yCAD5C,uBAAuB;2CAAvB,uBAAuB;CAEnC"}
|
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
import { ElementRef } from '@angular/core';
|
|
2
2
|
import { MadBasicButton } from '../mad-basic-button';
|
|
3
|
+
import { ThemePalette } from '@angular/material/core';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class OutlineButtonComponent extends MadBasicButton {
|
|
5
6
|
type: string;
|
|
6
7
|
disabled: boolean;
|
|
7
8
|
title: string;
|
|
9
|
+
color: ThemePalette;
|
|
8
10
|
button: ElementRef;
|
|
9
11
|
constructor();
|
|
10
12
|
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>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OutlineButtonComponent, "mad-outline-button", never, { "type": { "alias": "type"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "title": { "alias": "title"; "required": false; }; "color": { "alias": "color"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
12
14
|
}
|
|
13
15
|
//# sourceMappingURL=outline-button.component.d.ts.map
|
|
@@ -1 +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;;
|
|
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;AACrD,OAAO,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAC;;AAEtD,qBAKa,sBAAuB,SAAQ,cAAc;IAExD,IAAI,EAAE,MAAM,CAAC;IAGb,QAAQ,EAAE,OAAO,CAAC;IAGlB,KAAK,SAAM;IAGX,KAAK,EAAE,YAAY,CAAa;IAEsB,MAAM,EAAE,UAAU,CAAC;;yCAb9D,sBAAsB;2CAAtB,sBAAsB;CAoBlC"}
|
|
@@ -1 +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,
|
|
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,qBAIa,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"}
|
package/lib/card/card.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"card.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/card/card.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
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"}
|
|
@@ -1 +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,
|
|
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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"drag-and-drop-directive.directive.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/file-upload/drag-and-drop-directive.directive.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"drag-and-drop-directive.directive.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/file-upload/drag-and-drop-directive.directive.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,YAAY,EAAqC,MAAM,eAAe,CAAC;;AAE3F,qBAIa,6BAA6B;IAExC,aAAa,oBAA2B;IAED,OAAO,CAAC,UAAU,CAAuB;IAClD,OAAO,CAAC,OAAO,CAAO;IAGd,UAAU,CAAC,KAAK,EAAE,GAAG;IAQpB,WAAW,CAAC,KAAK,EAAE,GAAG;IAStD,MAAM,CAAC,KAAK,EAAE,GAAG;yCAzBb,6BAA6B;2CAA7B,6BAA6B;CAmCzC"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
export type UploadError =
|
|
4
|
-
export declare class FileUploadComponent {
|
|
3
|
+
export type UploadError = 'ONLY_SINGLE_FILE' | 'FILETYPE_NOT_SUPPORTED';
|
|
4
|
+
export declare class FileUploadComponent implements OnInit {
|
|
5
5
|
id: string;
|
|
6
6
|
multiple: boolean;
|
|
7
7
|
accept: string[];
|
|
@@ -10,7 +10,9 @@ export declare class FileUploadComponent {
|
|
|
10
10
|
fileEmitter: EventEmitter<FileList>;
|
|
11
11
|
errorEmitter: EventEmitter<UploadError>;
|
|
12
12
|
fileList: File[];
|
|
13
|
+
acceptForInput: string[];
|
|
13
14
|
private uploadError;
|
|
15
|
+
ngOnInit(): void;
|
|
14
16
|
uploadFile(fileList: FileList): void;
|
|
15
17
|
getFileEnding(name: string): void;
|
|
16
18
|
openFile(file: File): void;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"file-upload.component.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/file-upload/file-upload.component.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"file-upload.component.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/file-upload/file-upload.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,YAAY,EAAS,MAAM,EAAU,MAAM,eAAe,CAAC;;AAS/E,MAAM,MAAM,WAAW,GAAG,kBAAkB,GAAG,wBAAwB,CAAC;AAExE,qBAOa,mBAAoB,YAAW,MAAM;IACvC,EAAE,EAAE,MAAM,CAAC;IACX,QAAQ,EAAE,OAAO,CAAC;IAClB,MAAM,EAAE,MAAM,EAAE,CAAC;IACjB,IAAI,EAAE,MAAM,CAAC;IACb,YAAY,EAAE,OAAO,CAAS;IAC7B,WAAW,yBAAgC;IAC3C,YAAY,4BAAmC;IAEzD,QAAQ,EAAE,IAAI,EAAE,CAAM;IACtB,cAAc,EAAE,MAAM,EAAE,CAAM;IAC9B,OAAO,CAAC,WAAW,CAAkB;IAErC,QAAQ,IAAI,IAAI;IAMhB,UAAU,CAAC,QAAQ,EAAE,QAAQ,GAAG,IAAI;IAoBpC,aAAa,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI;IAQjC,QAAQ,CAAC,IAAI,EAAE,IAAI;yCA/CR,mBAAmB;2CAAnB,mBAAmB;CAkD/B"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"content-header.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/material-addons/src/lib/layout/content-panel/content-header/content-header.component.ts"],"names":[],"mappings":";AAEA,qBAKa,sBAAsB;yCAAtB,sBAAsB;2CAAtB,sBAAsB;CAAG"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class ContentPanelContainerComponent {
|
|
3
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>;
|
|
4
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ContentPanelContainerComponent, "mad-content-panel-container", never, {}, {}, never, ["mad-content-panel-container-sidebar", "mad-content-panel-container-content", "mad-content-panel-container-footer"], false, never>;
|
|
5
5
|
}
|
|
6
6
|
//# sourceMappingURL=content-panel-container.component.d.ts.map
|
package/lib/layout/content-panel/content-panel-container/content-panel-container.component.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"content-panel-container.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/material-addons/src/lib/layout/content-panel/content-panel-container/content-panel-container.component.ts"],"names":[],"mappings":";AAEA,qBAKa,8BAA8B;yCAA9B,8BAA8B;2CAA9B,8BAA8B;CAAG"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"content-panel-container-content.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/material-addons/src/lib/layout/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 @@
|
|
|
1
|
+
{"version":3,"file":"content-panel-container-footer.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/material-addons/src/lib/layout/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,6 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class ContentPanelContainerSidebarComponent {
|
|
3
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ContentPanelContainerSidebarComponent, never>;
|
|
4
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ContentPanelContainerSidebarComponent, "mad-content-panel-container-sidebar", never, {}, {}, never, ["*"], false, never>;
|
|
5
|
+
}
|
|
6
|
+
//# sourceMappingURL=content-panel-container-sidebar.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"content-panel-container-sidebar.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/material-addons/src/lib/layout/content-panel/content-panel-container-sidebar/content-panel-container-sidebar.component.ts"],"names":[],"mappings":";AAEA,qBAKa,qCAAqC;yCAArC,qCAAqC;2CAArC,qCAAqC;CAAG"}
|
|
@@ -3,11 +3,12 @@ import * as i1 from "./content-header/content-header.component";
|
|
|
3
3
|
import * as i2 from "./content-panel-container/content-panel-container.component";
|
|
4
4
|
import * as i3 from "./content-panel-container-content/content-panel-container-content.component";
|
|
5
5
|
import * as i4 from "./content-panel-container-footer/content-panel-container-footer.component";
|
|
6
|
-
import * as i5 from "./
|
|
7
|
-
import * as i6 from "
|
|
6
|
+
import * as i5 from "./content-panel-container-sidebar/content-panel-container-sidebar.component";
|
|
7
|
+
import * as i6 from "./main-container/main-container.component";
|
|
8
|
+
import * as i7 from "@angular/common";
|
|
8
9
|
export declare class ContentPanelModule {
|
|
9
10
|
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
|
|
11
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ContentPanelModule, [typeof i1.ContentHeaderComponent, typeof i2.ContentPanelContainerComponent, typeof i3.ContentPanelContainerContentComponent, typeof i4.ContentPanelContainerFooterComponent, typeof i5.ContentPanelContainerSidebarComponent, typeof i6.MainContainerComponent], [typeof i7.CommonModule], [typeof i1.ContentHeaderComponent, typeof i2.ContentPanelContainerComponent, typeof i3.ContentPanelContainerContentComponent, typeof i4.ContentPanelContainerFooterComponent, typeof i5.ContentPanelContainerSidebarComponent, typeof i6.MainContainerComponent]>;
|
|
11
12
|
static ɵinj: i0.ɵɵInjectorDeclaration<ContentPanelModule>;
|
|
12
13
|
}
|
|
13
14
|
//# 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/layout/content-panel/content-panel.module.ts"],"names":[],"mappings":";;;;;;;;AAUA,qBAmBa,kBAAkB;yCAAlB,kBAAkB;0CAAlB,kBAAkB;0CAAlB,kBAAkB;CAAG"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"main-container.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/material-addons/src/lib/layout/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":"flowbar.component.d.ts","sourceRoot":"","sources":["../../../../../projects/material-addons/src/lib/layout/flowbar/flowbar.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAa,YAAY,EAAS,MAAM,EAAqB,MAAM,eAAe,CAAC;;AAGzG,MAAM,WAAW,KAAK;IACpB,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,QAAQ,CAAC,EAAE,KAAK,EAAE,CAAC;IACnB,aAAa,CAAC,EAAE,KAAK,CAAC;CACvB;AAED,qBAKa,gBAAiB,YAAW,MAAM,EAAE,aAAa;IAC5C,MAAM,EAAE,KAAK,EAAE,CAAM;IAChB,WAAW,EAAE,KAAK,CAAC;IACZ,iBAAiB,EAAE,YAAY,CAAC,KAAK,CAAC,CAAiC;IACnG;;;;OAIG;IACoB,YAAY,EAAE,YAAY,CAAC,KAAK,CAAC,CAAiC;IACnE,OAAO,CAAC,OAAO,CAAa;IAElD,IAAI,gBAAgB,IAAI,MAAM,CAE7B;IAED,IAAI,mBAAmB,IAAI,MAAM,CAEhC;IAED,QAAQ,IAAI,IAAI;IAchB,eAAe,IAAI,IAAI;IAIvB,qBAAqB,IAAI,MAAM;IAK/B,gBAAgB,CAAC,IAAI,EAAE,KAAK,GAAG,IAAI;IAanC,wBAAwB,CAAC,IAAI,EAAE,KAAK,GAAG,IAAI;IAM3C,mBAAmB,CAAC,OAAO,EAAE,KAAK,GAAG,IAAI;IAIzC,QAAQ,IAAI,IAAI;IAchB,IAAI,IAAI,IAAI;IAcZ,mBAAmB,IAAI,OAAO;IAY9B,eAAe,IAAI,OAAO;IAY1B,UAAU,IAAI,OAAO;IAWrB,eAAe,IAAI,MAAM;IAIzB,sBAAsB,IAAI,MAAM;IAIhC,YAAY,IAAI,IAAI;IAKpB,WAAW,CAAC,KAAK,EAAE,GAAG,EAAE,IAAI,EAAE,KAAK,GAAG,IAAI;IAK1C,OAAO,CAAC,oBAAoB;IAI5B,OAAO,CAAC,cAAc;IAItB,OAAO,CAAC,aAAa;IAIrB,OAAO,CAAC,wBAAwB;IAKhC,OAAO,CAAC,yBAAyB;IAKjC,OAAO,CAAC,uBAAuB;IAQ/B,OAAO,CAAC,mBAAmB;yCAjLhB,gBAAgB;2CAAhB,gBAAgB;CAqL5B"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"flowbar.module.d.ts","sourceRoot":"","sources":["../../../../../projects/material-addons/src/lib/layout/flowbar/flowbar.module.ts"],"names":[],"mappings":";;;;AAKA,qBAKa,aAAa;yCAAb,aAAa;0CAAb,aAAa;0CAAb,aAAa;CAAG"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class SidebarItemComponent {
|
|
3
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SidebarItemComponent, never>;
|
|
4
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SidebarItemComponent, "[mad-sidebar-item]", never, {}, {}, never, ["*"], false, never>;
|
|
5
|
+
}
|
|
6
|
+
//# sourceMappingURL=sidebar-item.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"sidebar-item.component.d.ts","sourceRoot":"","sources":["../../../../../../projects/material-addons/src/lib/layout/sidebar/sidebar-item/sidebar-item.component.ts"],"names":[],"mappings":";AAEA,qBAMa,oBAAoB;yCAApB,oBAAoB;2CAApB,oBAAoB;CAAG"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class SidebarComponent {
|
|
3
|
+
collapsed: boolean;
|
|
4
|
+
toggleCollapse(): void;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SidebarComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SidebarComponent, "mad-sidebar", never, {}, {}, never, ["*"], false, never>;
|
|
7
|
+
}
|
|
8
|
+
//# sourceMappingURL=sidebar.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"sidebar.component.d.ts","sourceRoot":"","sources":["../../../../../projects/material-addons/src/lib/layout/sidebar/sidebar.component.ts"],"names":[],"mappings":";AAEA,qBAKa,gBAAgB;IAC3B,SAAS,UAAS;IAElB,cAAc;yCAHH,gBAAgB;2CAAhB,gBAAgB;CAM5B"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./sidebar.component";
|
|
3
|
+
import * as i2 from "./sidebar-item/sidebar-item.component";
|
|
4
|
+
import * as i3 from "@angular/common";
|
|
5
|
+
import * as i4 from "@angular/material/icon";
|
|
6
|
+
import * as i5 from "@angular/material/button";
|
|
7
|
+
export declare class SidebarModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SidebarModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SidebarModule, [typeof i1.SidebarComponent, typeof i2.SidebarItemComponent], [typeof i3.CommonModule, typeof i4.MatIconModule, typeof i5.MatButtonModule], [typeof i1.SidebarComponent, typeof i2.SidebarItemComponent]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SidebarModule>;
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=sidebar.module.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"sidebar.module.d.ts","sourceRoot":"","sources":["../../../../../projects/material-addons/src/lib/layout/sidebar/sidebar.module.ts"],"names":[],"mappings":";;;;;;AAOA,qBAKa,aAAa;yCAAb,aAAa;0CAAb,aAAa;0CAAb,aAAa;CAAG"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"toolbar-action.interface.d.ts","sourceRoot":"","sources":["../../../../../projects/material-addons/src/lib/layout/toolbar/toolbar-action.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,MAAM,CAAC;AAClC,OAAO,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAC;AAEtD,MAAM,WAAW,MAAM;IACrB,OAAO,EAAE,MAAM,CAAC;IAChB,aAAa,EAAE,MAAM,CAAC;IACtB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,MAAM,CAAC,EAAE,UAAU,CAAC,OAAO,CAAC,CAAC;CAC9B;AAED,MAAM,WAAW,UAAW,SAAQ,MAAM;IACxC,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,MAAM,CAAC,EAAE,MAAM,GAAG,CAAC;IACnB,kBAAkB,CAAC,EAAE,OAAO,CAAC;CAC9B;AAED,MAAM,WAAW,UAAW,SAAQ,MAAM;IACxC,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EAAE,MAAM,GAAG,CAAC;CACpB;AAED,MAAM,WAAW,kBAAkB;IACjC,KAAK,EAAE,GAAG,CAAC;IACX,KAAK,CAAC,EAAE,YAAY,CAAC;CACtB;AAED,MAAM,WAAW,aAAc,SAAQ,MAAM;IAC3C,MAAM,EAAE,MAAM,GAAG,CAAC;IAClB,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,KAAK,CAAC,EAAE,kBAAkB,CAAC;CAC5B"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"toolbar.component.d.ts","sourceRoot":"","sources":["../../../../../projects/material-addons/src/lib/layout/toolbar/toolbar.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,EAAE,MAAM,2BAA2B,CAAC;AAClD,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AACnD,OAAO,EAAE,UAAU,EAAM,MAAM,MAAM,CAAC;AACtC,OAAO,EAAE,kBAAkB,EAAe,MAAM,qBAAqB,CAAC;AAEtE,OAAO,EAAE,MAAM,EAAE,UAAU,EAAE,UAAU,EAAE,aAAa,EAAE,MAAM,4BAA4B,CAAC;;AAE3F,qBAKa,gBAAgB;IAIzB,OAAO,CAAC,kBAAkB;IAC1B,OAAO,CAAC,YAAY;IACpB,OAAO,CAAC,cAAc;IALxB,UAAU,EAAE,UAAU,CAAC,OAAO,CAAC,CAAgG;gBAGrH,kBAAkB,EAAE,kBAAkB,EACtC,YAAY,EAAE,KAAK,EACnB,cAAc,EAAE,cAAc;IAGxC,QAAQ,IAAI,MAAM;IAOlB,iBAAiB,IAAI,aAAa,EAAE;IAIpC,cAAc,IAAI,UAAU,EAAE;IAI9B,aAAa,CAAC,MAAM,EAAE,MAAM,GAAG,UAAU,CAAC,OAAO,CAAC;IAOlD,YAAY,CAAC,MAAM,EAAE,UAAU,GAAG,UAAU,GAAG,OAAO;IAItD,cAAc,CAAC,MAAM,EAAE,UAAU,GAAG,OAAO;IAI3C,QAAQ,CAAC,MAAM,EAAE,UAAU,GAAG,UAAU,GAAG,OAAO;IAIlD,aAAa,IAAI,UAAU;IAI3B,6BAA6B,IAAI,OAAO;IAIxC,0BAA0B,IAAI,MAAM;IAIpC,gBAAgB,IAAI,OAAO;IAQ3B,0BAA0B,IAAI,OAAO;yCA/D1B,gBAAgB;2CAAhB,gBAAgB;CAkE5B"}
|
|
@@ -6,9 +6,9 @@ import * as i4 from "@angular/material/menu";
|
|
|
6
6
|
import * as i5 from "@angular/material/button";
|
|
7
7
|
import * as i6 from "@angular/material/toolbar";
|
|
8
8
|
import * as i7 from "@angular/material/icon";
|
|
9
|
-
import * as i8 from "
|
|
9
|
+
import * as i8 from "../../material-action-button/material-action-button.module";
|
|
10
10
|
import * as i9 from "@angular/material/tooltip";
|
|
11
|
-
import * as i10 from "
|
|
11
|
+
import * as i10 from "../../button/button.module";
|
|
12
12
|
import * as i11 from "@angular/material/badge";
|
|
13
13
|
export declare class ToolbarModule {
|
|
14
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<ToolbarModule, never>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"toolbar.module.d.ts","sourceRoot":"","sources":["../../../../../projects/material-addons/src/lib/layout/toolbar/toolbar.module.ts"],"names":[],"mappings":";;;;;;;;;;;;AAaA,qBAgBa,aAAa;yCAAb,aAAa;0CAAb,aAAa;0CAAb,aAAa;CAAG"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"toolbar.service.d.ts","sourceRoot":"","sources":["../../../../../projects/material-addons/src/lib/layout/toolbar/toolbar.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAc,SAAS,EAAE,MAAM,eAAe,CAAC;AACtD,OAAO,EAAiB,MAAM,EAAE,MAAM,iBAAiB,CAAC;AACxD,OAAO,EAAE,YAAY,EAAE,MAAM,MAAM,CAAC;AACpC,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AACvD,OAAO,EAAE,UAAU,EAAE,UAAU,EAAE,aAAa,EAAE,MAAM,4BAA4B,CAAC;;AAEnF,qBAGa,cAAe,YAAW,SAAS;IAa5C,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,SAAS;IAbnB,UAAU,EAAE,UAAU,CAAC;IACvB,WAAW,EAAE,UAAU,EAAE,CAAM;IAC/B,cAAc,EAAE,aAAa,EAAE,CAAM;IACrC,0BAA0B,UAAS;IACnC,SAAS,EAAE,MAAM,CAAC;IAClB,kBAAkB,EAAE,YAAY,CAAC;IACjC,OAAO,CAAC,KAAK,CAAS;IACtB,OAAO,CAAC,uBAAuB,CAAU;IAEzC,OAAO,CAAC,UAAU,CAAS;gBAGjB,MAAM,EAAE,MAAM,EACd,SAAS,EAAE,gBAAgB;IAerC,IAAI,YAAY,IAAI,MAAM,CAEzB;IAED,IAAI,YAAY,CAAC,YAAY,EAAE,MAAM,EAEpC;IAED,WAAW,IAAI,IAAI;IAMnB,iBAAiB,IAAI,aAAa,EAAE;IAIpC,gBAAgB,CAAC,MAAM,EAAE,aAAa,GAAG,IAAI;IAU7C,YAAY,CAAC,SAAS,EAAE,MAAM,GAAG,IAAI;IAIrC,6BAA6B,CAAC,0BAA0B,EAAE,OAAO,GAAG,IAAI;IAIxE,6BAA6B,IAAI,OAAO;IAIxC,YAAY,IAAI,MAAM;IAItB,mBAAmB,IAAI,IAAI;IAI3B,cAAc,IAAI,UAAU,EAAE;IAI9B,aAAa,IAAI,UAAU;IAI3B,0BAA0B,CAAC,uBAAuB,EAAE,MAAM,GAAG,IAAI;IAIjE,0BAA0B,IAAI,MAAM;IAIpC,aAAa,CAAC,UAAU,EAAE,UAAU,GAAG,IAAI;IAU3C;;OAEG;IACH,aAAa,CAAC,WAAW,EAAE,MAAM,EAAE,aAAa,UAAQ,GAAG,IAAI;IAY/D,mBAAmB,CAAC,iBAAiB,UAAQ,GAAG,IAAI;IAcpD,gBAAgB,IAAI,IAAI;yCApIb,cAAc;6CAAd,cAAc;CAuI1B"}
|
|
@@ -1,15 +1,16 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
import * as i1 from "./readonly/readonly-form-field.module";
|
|
3
3
|
import * as i2 from "./button/button.module";
|
|
4
|
-
import * as i3 from "./toolbar/toolbar.module";
|
|
4
|
+
import * as i3 from "./layout/toolbar/toolbar.module";
|
|
5
5
|
import * as i4 from "./material-action-button/material-action-button.module";
|
|
6
6
|
import * as i5 from "./numeric-field/numeric-field.module";
|
|
7
7
|
import * as i6 from "./card/card.module";
|
|
8
8
|
import * as i7 from "./quick-list/quick-list.module";
|
|
9
9
|
import * as i8 from "./throttle-click/throttle-click.module";
|
|
10
|
+
import * as i9 from "./layout/sidebar/sidebar.module";
|
|
10
11
|
export declare class MaterialAddonsModule {
|
|
11
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<MaterialAddonsModule, never>;
|
|
12
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MaterialAddonsModule, never, never, [typeof i1.ReadOnlyFormFieldModule, typeof i2.ButtonModule, typeof i3.ToolbarModule, typeof i4.MaterialActionButtonModule, typeof i5.NumericFieldModule, typeof i6.CardModule, typeof i7.QuickListModule, typeof i8.ThrottleClickModule]>;
|
|
13
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MaterialAddonsModule, never, never, [typeof i1.ReadOnlyFormFieldModule, typeof i2.ButtonModule, typeof i3.ToolbarModule, typeof i4.MaterialActionButtonModule, typeof i5.NumericFieldModule, typeof i6.CardModule, typeof i7.QuickListModule, typeof i8.ThrottleClickModule, typeof i9.SidebarModule]>;
|
|
13
14
|
static ɵinj: i0.ɵɵInjectorDeclaration<MaterialAddonsModule>;
|
|
14
15
|
}
|
|
15
16
|
//# sourceMappingURL=material-addons.module.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"material-addons.module.d.ts","sourceRoot":"","sources":["../../../projects/material-addons/src/lib/material-addons.module.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"material-addons.module.d.ts","sourceRoot":"","sources":["../../../projects/material-addons/src/lib/material-addons.module.ts"],"names":[],"mappings":";;;;;;;;;;AAWA,qBAaa,oBAAoB;yCAApB,oBAAoB;0CAApB,oBAAoB;0CAApB,oBAAoB;CAAG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"numeric-field.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/numeric-field/numeric-field.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"numeric-field.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/numeric-field/numeric-field.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,qBAAqB,EAAE,MAAM,2BAA2B,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"numeric-field.directive.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/numeric-field/numeric-field.directive.ts"],"names":[],"mappings":"AAMA,OAAO,EACL,gBAAgB,EAEhB,UAAU,EACV,YAAY,EAGZ,SAAS,EACT,MAAM,EAEN,SAAS,EACV,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,oBAAoB,EAAqB,MAAM,gBAAgB,CAAC;AACzE,OAAO,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAC;;AAQ9D,qBAgBa,qBAAsB,YAAW,MAAM,EAAE,SAAS,EAAE,gBAAgB,EAAE,oBAAoB;
|
|
1
|
+
{"version":3,"file":"numeric-field.directive.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/numeric-field/numeric-field.directive.ts"],"names":[],"mappings":"AAMA,OAAO,EACL,gBAAgB,EAEhB,UAAU,EACV,YAAY,EAGZ,SAAS,EACT,MAAM,EAEN,SAAS,EACV,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,oBAAoB,EAAqB,MAAM,gBAAgB,CAAC;AACzE,OAAO,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAC;;AAQ9D,qBAgBa,qBAAsB,YAAW,MAAM,EAAE,SAAS,EAAE,gBAAgB,EAAE,oBAAoB;IA+BnG,OAAO,CAAC,QAAQ;IAChB,OAAO,CAAC,OAAO;IACf,OAAO,CAAC,mBAAmB;IAhCT,SAAS,EAAE,OAAO,GAAG,MAAM,CAAW;IAClC,aAAa,SAAK;IACd,UAAU,UAAS;IACpB,gBAAgB,UAAS;IACrC,IAAI,EAAE,MAAM,GAAG,IAAI,CAAQ;IACnB,YAAY,EAAE,OAAO,GAAG,MAAM,CAAW;IAClC,mBAAmB,uBAA8B;IAE/E,OAAO,CAAC,YAAY,CAAM;IAC1B,OAAO,CAAC,aAAa,CAAO;IAC5B,OAAO,CAAC,aAAa,CAAS;IAC9B,OAAO,CAAC,mBAAmB,CAAa;IACxC,OAAO,CAAC,aAAa,CAAa;IAClC,OAAO,CAAC,eAAe,CAAa;IAEpC,IACI,YAAY,CAAC,KAAK,EAAE,MAAM,EAQ7B;IAED,OAAO,CAAC,QAAQ,CAAkB;IAClC,OAAO,CAAC,QAAQ,CAAkB;gBAGxB,QAAQ,EAAE,SAAS,EACnB,OAAO,EAAE,UAAU,EACnB,mBAAmB,EAAE,mBAAmB;IAKlD,QAAQ,EAAE,GAAG,CAAY;IAEzB,SAAS,EAAE,GAAG,CAAY;IAE1B,gBAAgB,CAAC,EAAE,EAAE,GAAG,GAAG,IAAI;IAI/B,iBAAiB,CAAC,EAAE,EAAE,GAAG,GAAG,IAAI;IAIhC,gBAAgB,IAAI,IAAI;IAIxB,UAAU,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI;IAI/B,QAAQ,IAAI,IAAI;IA8EhB,WAAW,IAAI,IAAI;IAInB,kBAAkB,IAAI,IAAI;IAI1B,kBAAkB,IAAI,IAAI;IAc1B,WAAW,CAAC,OAAO,EAAE,gBAAgB,EAAE,eAAe,EAAE,OAAO,GAAG,IAAI;IAyCtE,WAAW,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI;IAYhC,sBAAsB,IAAI,MAAM,GAAG,SAAS;IAS5C,OAAO,CAAC,gBAAgB;IAmCxB,OAAO,CAAC,cAAc;IAetB,OAAO,CAAC,eAAe;yCA9QZ,qBAAqB;2CAArB,qBAAqB;CAkRjC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { AfterViewInit, ChangeDetectorRef, ElementRef, EventEmitter, OnInit, QueryList, TemplateRef } from '@angular/core';
|
|
2
|
-
import { AbstractControl, FormArray, FormBuilder } from
|
|
2
|
+
import { AbstractControl, FormArray, FormBuilder } from '@angular/forms';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export interface QuickListItem {
|
|
5
5
|
id: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"base-quick-list.component.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/quick-list/base-quick-list.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,aAAa,EACb,iBAAiB,EAGjB,UAAU,EACV,YAAY,EAEZ,MAAM,EAEN,SAAS,EACT,WAAW,EAEZ,MAAM,eAAe,CAAC;AACvB,OAAO,
|
|
1
|
+
{"version":3,"file":"base-quick-list.component.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/quick-list/base-quick-list.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,aAAa,EACb,iBAAiB,EAGjB,UAAU,EACV,YAAY,EAEZ,MAAM,EAEN,SAAS,EACT,WAAW,EAEZ,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,eAAe,EAAE,SAAS,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;;AAEzE,MAAM,WAAW,aAAa;IAC5B,EAAE,EAAE,MAAM,CAAC;CACZ;AAED,qBAKa,sBAAsB,CAAC,CAAC,CAAE,YAAW,MAAM,EAAE,aAAa;IAoB5D,iBAAiB,EAAE,iBAAiB;IACpC,WAAW,EAAE,WAAW;IApBxB,QAAQ,MAAa;IACrB,QAAQ,SAAa;IACrB,WAAW,UAAQ;IACnB,cAAc,UAAQ;IACtB,SAAS,MAAa;IACtB,QAAQ,EAAE,OAAO,CAAC;IAClB,QAAQ,EAAE,MAAM,CAAC;IACjB,QAAQ,EAAE,MAAM,CAAC;IACjB,SAAS,EAAE,SAAS,CAAC;IAEpB,KAAK,kBAAyB;IAC9B,OAAO,kBAAyB;IACf,YAAY,EAAE,WAAW,CAAC,GAAG,CAAC,CAAC;IACrC,QAAQ,EAAE,SAAS,CAAC,UAAU,CAAC,CAAC;IAErD,aAAa,EAAE,MAAM,CAAC;IACtB,gBAAgB,EAAE,QAAQ,CAAC;gBAGlB,iBAAiB,EAAE,iBAAiB,EACpC,WAAW,EAAE,WAAW;IAGjC,QAAQ,IAAI,IAAI;IAShB,eAAe,IAAI,IAAI;IAIvB,OAAO,IAAI,IAAI;IAOf,eAAe;IAMf,UAAU,CAAC,IAAI,EAAE,CAAC,GAAG,IAAI;IAOzB,kBAAkB,CAAC,IAAI,EAAE,eAAe,CAAC,GAAG,CAAC;IAW7C,aAAa,IAAI,IAAI;IAarB,YAAY,IAAI,OAAO;IAIvB,oBAAoB,IAAI,OAAO;IAI/B,eAAe,IAAI,OAAO;IAI1B,uBAAuB,IAAI,OAAO;IAIlC,OAAO,CAAC,cAAc;yCAjGX,sBAAsB;2CAAtB,sBAAsB;CA4GlC"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ChangeDetectorRef } from '@angular/core';
|
|
2
2
|
import { BaseQuickListComponent, QuickListItem } from '../base-quick-list.component';
|
|
3
|
-
import { FormBuilder } from
|
|
3
|
+
import { FormBuilder } from '@angular/forms';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class QuickListCompactComponent extends BaseQuickListComponent<QuickListItem> {
|
|
6
6
|
changeDetectorRef: ChangeDetectorRef;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"quick-list-compact.component.d.ts","sourceRoot":"","sources":["../../../../../projects/material-addons/src/lib/quick-list/quick-list-compact/quick-list-compact.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAa,MAAM,eAAe,CAAC;AAC7D,OAAO,EAAE,sBAAsB,EAAE,aAAa,EAAE,MAAM,8BAA8B,CAAC;AACrF,OAAO,
|
|
1
|
+
{"version":3,"file":"quick-list-compact.component.d.ts","sourceRoot":"","sources":["../../../../../projects/material-addons/src/lib/quick-list/quick-list-compact/quick-list-compact.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAa,MAAM,eAAe,CAAC;AAC7D,OAAO,EAAE,sBAAsB,EAAE,aAAa,EAAE,MAAM,8BAA8B,CAAC;AACrF,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;;AAE7C,qBAaa,yBAA0B,SAAQ,sBAAsB,CAAC,aAAa,CAAC;IAEzE,iBAAiB,EAAE,iBAAiB;IACpC,WAAW,EAAE,WAAW;gBADxB,iBAAiB,EAAE,iBAAiB,EACpC,WAAW,EAAE,WAAW;yCAHtB,yBAAyB;2CAAzB,yBAAyB;CAOrC"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ChangeDetectorRef } from '@angular/core';
|
|
2
2
|
import { BaseQuickListComponent, QuickListItem } from './base-quick-list.component';
|
|
3
|
-
import { FormBuilder } from
|
|
3
|
+
import { FormBuilder } from '@angular/forms';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class QuickListComponent extends BaseQuickListComponent<QuickListItem> {
|
|
6
6
|
changeDetectorRef: ChangeDetectorRef;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"quick-list.component.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/quick-list/quick-list.component.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,iBAAiB,EAAa,MAAM,eAAe,CAAC;AAC7D,OAAO,EAAE,sBAAsB,EAAE,aAAa,EAAE,MAAM,6BAA6B,CAAC;AACpF,OAAO,
|
|
1
|
+
{"version":3,"file":"quick-list.component.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/quick-list/quick-list.component.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,iBAAiB,EAAa,MAAM,eAAe,CAAC;AAC7D,OAAO,EAAE,sBAAsB,EAAE,aAAa,EAAE,MAAM,6BAA6B,CAAC;AACpF,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;;AAE7C,qBAKa,kBAAmB,SAAQ,sBAAsB,CAAC,aAAa,CAAC;IAElE,iBAAiB,EAAE,iBAAiB;IACpC,WAAW,EAAE,WAAW;gBADxB,iBAAiB,EAAE,iBAAiB,EACpC,WAAW,EAAE,WAAW;yCAHtB,kBAAkB;2CAAlB,kBAAkB;CAO9B"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"quick-list.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/quick-list/quick-list.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"quick-list.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/quick-list/quick-list.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,yBAAyB,EAAE,MAAM,mDAAmD,CAAC;AAC9F,OAAO,EAAE,sBAAsB,EAAE,MAAM,6BAA6B,CAAC;AACrE,OAAO,EAAE,kBAAkB,EAAE,MAAM,wBAAwB,CAAC;AAC5D,OAAO,EAAE,8BAA8B,EAAE,MAAM,+DAA+D,CAAC;AAC/G,OAAO,EAAE,qCAAqC,EAAE,MAAM,+EAA+E,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"quick-list.module.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/quick-list/quick-list.module.ts"],"names":[],"mappings":";;;;;;;;;;;AAYA,
|
|
1
|
+
{"version":3,"file":"quick-list.module.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/quick-list/quick-list.module.ts"],"names":[],"mappings":";;;;;;;;;;;AAYA,qBAiBa,eAAe;yCAAf,eAAe;0CAAf,eAAe;0CAAf,eAAe;CAAG"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ChangeDetectorRef } from '@angular/core';
|
|
2
|
-
import { BaseQuickListComponent, QuickListItem } from
|
|
3
|
-
import { FormBuilder } from
|
|
2
|
+
import { BaseQuickListComponent, QuickListItem } from '../base-quick-list.component';
|
|
3
|
+
import { FormBuilder } from '@angular/forms';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class ReactiveFormQuickListComponent extends BaseQuickListComponent<QuickListItem> {
|
|
6
6
|
changeDetectorRef: ChangeDetectorRef;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"reactive-form-quick-list.component.d.ts","sourceRoot":"","sources":["../../../../../projects/material-addons/src/lib/quick-list/reactive-form-quick-list/reactive-form-quick-list.component.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"reactive-form-quick-list.component.d.ts","sourceRoot":"","sources":["../../../../../projects/material-addons/src/lib/quick-list/reactive-form-quick-list/reactive-form-quick-list.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAa,MAAM,eAAe,CAAC;AAC7D,OAAO,EAAE,sBAAsB,EAAE,aAAa,EAAE,MAAM,8BAA8B,CAAC;AACrF,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;;AAE7C,qBAKa,8BAA+B,SAAQ,sBAAsB,CAAC,aAAa,CAAC;IAE9E,iBAAiB,EAAE,iBAAiB;IACpC,WAAW,EAAE,WAAW;gBADxB,iBAAiB,EAAE,iBAAiB,EACpC,WAAW,EAAE,WAAW;yCAHtB,8BAA8B;2CAA9B,8BAA8B;CAO1C"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ChangeDetectorRef } from '@angular/core';
|
|
2
|
-
import { FormBuilder } from
|
|
3
|
-
import { BaseQuickListComponent, QuickListItem } from
|
|
2
|
+
import { FormBuilder } from '@angular/forms';
|
|
3
|
+
import { BaseQuickListComponent, QuickListItem } from '../base-quick-list.component';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class ReactiveFormQuickListCompactComponent extends BaseQuickListComponent<QuickListItem> {
|
|
6
6
|
changeDetectorRef: ChangeDetectorRef;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"reactive-form-quick-list-compact.component.d.ts","sourceRoot":"","sources":["../../../../../projects/material-addons/src/lib/quick-list/reactive-form-quick-list-compact/reactive-form-quick-list-compact.component.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"reactive-form-quick-list-compact.component.d.ts","sourceRoot":"","sources":["../../../../../projects/material-addons/src/lib/quick-list/reactive-form-quick-list-compact/reactive-form-quick-list-compact.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAa,MAAM,eAAe,CAAC;AAC7D,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAC7C,OAAO,EAAE,sBAAsB,EAAE,aAAa,EAAE,MAAM,8BAA8B,CAAC;;AAErF,qBAKa,qCAAsC,SAAQ,sBAAsB,CAAC,aAAa,CAAC;IAErF,iBAAiB,EAAE,iBAAiB;IACpC,WAAW,EAAE,WAAW;gBADxB,iBAAiB,EAAE,iBAAiB,EACpC,WAAW,EAAE,WAAW;yCAHtB,qCAAqC;2CAArC,qCAAqC;CAOjD"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"readonly-form-field.component.d.ts","sourceRoot":"","sources":["../../../../../projects/material-addons/src/lib/readonly/readonly-form-field/readonly-form-field.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,gBAAgB,EAChB,iBAAiB,EAEjB,UAAU,EACV,YAAY,EAEZ,SAAS,EAET,SAAS,EACT,aAAa,EAEd,MAAM,eAAe,CAAC;AACvB,OAAO,
|
|
1
|
+
{"version":3,"file":"readonly-form-field.component.d.ts","sourceRoot":"","sources":["../../../../../projects/material-addons/src/lib/readonly/readonly-form-field/readonly-form-field.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,gBAAgB,EAChB,iBAAiB,EAEjB,UAAU,EACV,YAAY,EAEZ,SAAS,EAET,SAAS,EACT,aAAa,EAEd,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAC3D,OAAO,EAAE,mBAAmB,EAAE,MAAM,2CAA2C,CAAC;;AAEhF;;;;GAIG;AAEH,qBAKa,0BAA2B,YAAW,SAAS,EAAE,gBAAgB;IA8C1E,OAAO,CAAC,cAAc;IACtB,OAAO,CAAC,QAAQ;IAChB,OAAO,CAAC,mBAAmB;IA9C7B,eAAe,EAAE,UAAU,CAAC;IACZ,KAAK,EAAE,GAAG,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACV,SAAS,EAAE,OAAO,GAAG,MAAM,CAAU;IAClC,YAAY,UAAS;IACpB,aAAa,SAAK;IACd,UAAU,UAAS;IACpB,gBAAgB,UAAS;IACrC,IAAI,EAAE,MAAM,GAAG,IAAI,CAAQ;IACnB,YAAY,EAAE,OAAO,GAAG,MAAM,CAAU;IACxC,YAAY,EAAE,MAAM,GAAG,IAAI,CAAQ;IACjD,SAAS,UAAS;IAClB,IAAI,EAAE,MAAM,CAAC;IACb,EAAE,EAAE,MAAM,CAAC;IAOX,aAAa,UAAS;IAC/B;;OAEG;IACM,MAAM,EAAE,MAAM,CAAC;IACxB;;OAEG;IACM,MAAM,EAAE,MAAM,CAAC;IACxB;;OAEG;IACM,iBAAiB,UAAS;IACzB,oBAAoB,oBAAsB;IAC1C,oBAAoB,oBAAsB;IAC9B,OAAO,EAAE,UAAU,CAAC;IAC1C,YAAY,EAAE,iBAAiB,CAE7B;IAEF,OAAO,CAAC,QAAQ,CAAkB;IAClC,OAAO,CAAC,QAAQ,CAAkB;gBAGxB,cAAc,EAAE,iBAAiB,EACjC,QAAQ,EAAE,SAAS,EACnB,mBAAmB,EAAE,mBAAmB;IAGlD,WAAW,CAAC,CAAC,EAAE,aAAa,GAAG,IAAI;IAiBnC,kBAAkB,IAAI,IAAI;IAI1B,aAAa;IAIb,aAAa;IAIb,OAAO,CAAC,gBAAgB;yCAhFb,0BAA0B;2CAA1B,0BAA0B;CAkItC"}
|
package/lib/readonly/readonly-form-field-wrapper/readonly-form-field-wrapper.component.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"readonly-form-field-wrapper.component.d.ts","sourceRoot":"","sources":["../../../../../projects/material-addons/src/lib/readonly/readonly-form-field-wrapper/readonly-form-field-wrapper.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,gBAAgB,EAChB,aAAa,EACb,iBAAiB,EAEjB,UAAU,
|
|
1
|
+
{"version":3,"file":"readonly-form-field-wrapper.component.d.ts","sourceRoot":"","sources":["../../../../../projects/material-addons/src/lib/readonly/readonly-form-field-wrapper/readonly-form-field-wrapper.component.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,gBAAgB,EAChB,aAAa,EACb,iBAAiB,EAEjB,UAAU,EACV,YAAY,EAEZ,SAAS,EACT,MAAM,EAEN,aAAa,EAEd,MAAM,eAAe,CAAC;;AAEvB;;;;GAIG;AACH,qBAKa,iCAAkC,YAAW,MAAM,EAAE,aAAa,EAAE,SAAS,EAAE,gBAAgB;IAsExG,OAAO,CAAC,cAAc;IACtB,OAAO,CAAC,UAAU;IArEpB,eAAe,EAAE,UAAU,CAAC;IAE5B,sBAAsB,EAAE,UAAU,CAAC;IAEnC;;;OAGG;IACM,QAAQ,UAAQ;IAEzB;;;OAGG;IACa,KAAK,EAAE,GAAG,CAAC;IAEP,SAAS,EAAE,OAAO,GAAG,MAAM,CAAU;IAClC,YAAY,UAAS;IACpB,aAAa,SAAK;IACd,UAAU,UAAS;IACpB,gBAAgB,UAAS;IACrC,IAAI,EAAE,MAAM,GAAG,IAAI,CAAQ;IACnB,YAAY,EAAE,OAAO,GAAG,MAAM,CAAU;IACxC,YAAY,EAAE,MAAM,GAAG,IAAI,CAAQ;IACjD,EAAE,EAAE,MAAM,CAAC;IACpB;;;OAGG;IACM,SAAS,UAAS;IAE3B;;OAEG;IACM,IAAI,EAAE,MAAM,CAAC;IAEtB;;;;;OAKG;IACM,aAAa,UAAS;IACtB,sBAAsB,UAAS;IACxC;;OAEG;IACM,MAAM,EAAE,MAAM,CAAC;IACxB;;OAEG;IACM,MAAM,EAAE,MAAM,CAAC;IACxB;;OAEG;IACM,iBAAiB,UAAS;IACzB,oBAAoB,oBAAsB;IAC1C,oBAAoB,oBAAsB;IAEpD;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IAEd,sBAAsB,UAAS;IAC/B,WAAW,EAAE,MAAM,CAAC;gBAGV,cAAc,EAAE,iBAAiB,EACjC,UAAU,EAAE,UAAU;IAGhC,QAAQ,IAAI,IAAI;IAIhB,eAAe,IAAI,IAAI;IAKvB,kBAAkB,IAAI,IAAI;IAK1B,WAAW,CAAC,CAAC,EAAE,aAAa,GAAG,IAAI;IAInC,QAAQ,IAAI,MAAM;IAOlB,aAAa;IAIb,aAAa;IAIb,OAAO,CAAC,WAAW;IAYnB,OAAO,CAAC,YAAY;IAQpB,OAAO,CAAC,YAAY;IAOpB,OAAO,CAAC,qBAAqB;IAY7B,OAAO,CAAC,yBAAyB;IAWjC,OAAO,CAAC,2BAA2B;IAcnC,OAAO,CAAC,gCAAgC;IAIxC,OAAO,CAAC,eAAe;IAOvB,OAAO,CAAC,oBAAoB;yCAtLjB,iCAAiC;2CAAjC,iCAAiC;CA6L7C"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"step-header.component.d.ts","sourceRoot":"","sources":["../../../../../projects/material-addons/src/lib/stepper/step-header/step-header.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAc,SAAS,EAAE,MAAM,sBAAsB,CAAC;AAC5E,OAAO,EAAE,aAAa,EAAsC,UAAU,EAAS,SAAS,EAAqB,MAAM,eAAe,CAAC;AACnI,OAAO,EAAE,YAAY,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;;AAE9D,qBAYa,mBAAoB,SAAQ,aAAc,YAAW,aAAa,EAAE,SAAS;
|
|
1
|
+
{"version":3,"file":"step-header.component.d.ts","sourceRoot":"","sources":["../../../../../projects/material-addons/src/lib/stepper/step-header/step-header.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAc,SAAS,EAAE,MAAM,sBAAsB,CAAC;AAC5E,OAAO,EAAE,aAAa,EAAsC,UAAU,EAAS,SAAS,EAAqB,MAAM,eAAe,CAAC;AACnI,OAAO,EAAE,YAAY,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;;AAE9D,qBAYa,mBAAoB,SAAQ,aAAc,YAAW,aAAa,EAAE,SAAS;IAwBtF,OAAO,CAAC,aAAa;IAtBvB,KAAK,EAAE,MAAM,CAAC;IAGd,KAAK,EAAE,MAAM,CAAC;IAEL,KAAK,EAAE,SAAS,CAAC;IAEjB,YAAY,EAAE,MAAM,CAAC;IAErB,QAAQ,EAAE,OAAO,CAAC;IAElB,MAAM,EAAE,OAAO,CAAC;IAEhB,QAAQ,EAAE,OAAO,CAAC;IAElB,QAAQ,EAAE,OAAO,CAAC;IAElB,SAAS,EAAE,OAAO,CAAC;IAEnB,MAAM,EAAE,OAAO,CAAC;gBAGf,aAAa,EAAE,YAAY,EACnC,WAAW,EAAE,UAAU,CAAC,WAAW,CAAC;IAKtC,eAAe,IAAI,IAAI;IAIvB,WAAW,IAAI,IAAI;IAInB,+BAA+B;IAC/B,KAAK,CAAC,MAAM,CAAC,EAAE,WAAW,EAAE,OAAO,CAAC,EAAE,YAAY,GAAG,IAAI;IAQzD,cAAc,IAAI,MAAM;IAUxB,OAAO,IAAI,MAAM;yCAzDN,mBAAmB;2CAAnB,mBAAmB;CAiE/B"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"stepper.component.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/stepper/stepper.component.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"stepper.component.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/stepper/stepper.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AACnD,OAAO,EAAE,OAAO,EAAE,UAAU,EAAc,wBAAwB,EAAE,MAAM,sBAAsB,CAAC;AACjG,OAAO,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AACrD,OAAO,EACL,gBAAgB,EAEhB,iBAAiB,EAGjB,UAAU,EACV,YAAY,EAIZ,SAAS,EACT,MAAM,EAGN,SAAS,EAET,gBAAgB,EAEjB,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,OAAO,EAAgB,MAAM,MAAM,CAAC;AAE7C,OAAO,EAAE,mBAAmB,EAAE,MAAM,qCAAqC,CAAC;;AAG1E,qBAQa,aAAc,SAAQ,OAAQ,YAAW,gBAAgB,EAAE,SAAS;IAkBjC,OAAO,CAAC,OAAO;IAC3D,OAAO,CAAC,iBAAiB;IAlB3B,qGAAqG;IAErG,MAAM,oBAA2B;IAEjC,sGAAsG;IAEtG,MAAM,oBAA2B;IAEjC,4GAA4G;IAE5G,aAAa,oBAA2B;IAExC,UAAU,UAAS;IAEnB,OAAO,CAAC,WAAW,CAAsB;gBAGa,OAAO,EAAE,gBAAgB,EACrE,iBAAiB,EAAE,gBAAgB;IAK7C,kBAAkB;IAclB,WAAW;IAIX,IAAI,CAAC,iBAAiB,UAAO,GAAG,IAAI;IASpC,sBAAsB,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI;IAU3C,YAAY,IAAI,IAAI;IAWpB,gBAAgB,IAAI,IAAI;IAMxB,OAAO,CAAC,cAAc;yCA9EX,aAAa;2CAAb,aAAa;CA4FzB;AAED,qBAea,gBAAiB,SAAQ,UAAW,YAAW,MAAM,EAAE,gBAAgB;IAClF,oEAAoE;IAC1D,QAAQ,CAAC,aAAa,EAAE,YAAY,CAAC,IAAI,CAAC,CAA4B;IAGhF,eAAe,EAAE,MAAM,CAAC;IAGxB,eAAe,EAAE,MAAM,CAAC;IACxB,mDAAmD;IAChB,WAAW,EAAE,SAAS,CAAC,mBAAmB,CAAC,CAAC;IAE/E,+BAA+B;IACwB,MAAM,EAAE,SAAS,CAAC,aAAa,CAAC,CAAC;IAExF,qFAAqF;IACrF,KAAK,EAAE,SAAS,CAAC,aAAa,CAAC,CAAkC;IAEjE,QAAQ,CAAC,cAAc,0BAAiC;gBAEhC,GAAG,EAAE,cAAc,EAAE,iBAAiB,EAAE,iBAAiB,EAAE,UAAU,EAAE,UAAU,CAAC,WAAW,CAAC;IAKtH,QAAQ;IAKR,kBAAkB;IAmBlB;;OAEG;IACH,sBAAsB,CAAC,KAAK,EAAE,MAAM,GAAG,wBAAwB;IAQ/D,gBAAgB,CAAC,KAAK,EAAE,MAAM,EAAE,IAAI,EAAE,aAAa,GAAG,OAAO;yCA5DlD,gBAAgB;2CAAhB,gBAAgB;CA+D5B"}
|
package/lib/table/table.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"table.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/table/table.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"table.d.ts","sourceRoot":"","sources":["../../../../projects/material-addons/src/lib/table/table.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAC/C,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAC7C,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@porscheinformatik/material-addons",
|
|
3
|
-
"version": "17.0
|
|
3
|
+
"version": "17.1.0",
|
|
4
4
|
"description": "Custom theme and components for Angular Material",
|
|
5
5
|
"homepage": "https://github.com/porscheinformatik/material-addons",
|
|
6
6
|
"repository": {
|
|
@@ -40,7 +40,9 @@
|
|
|
40
40
|
"@angular/material": ">= 16.0.0",
|
|
41
41
|
"@angular/common": ">= 16.0.0",
|
|
42
42
|
"@angular/core": ">= 16.0.0",
|
|
43
|
-
"@ngx-translate/core": ">= 14.0.0"
|
|
43
|
+
"@ngx-translate/core": ">= 14.0.0",
|
|
44
|
+
"material-icons": "^1.11.11",
|
|
45
|
+
"roboto-fontface": "0.10.0"
|
|
44
46
|
},
|
|
45
47
|
"exports": {
|
|
46
48
|
"./package.json": {
|