@porscheinformatik/material-addons 10.1.9 → 10.2.3
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/bundles/porscheinformatik-material-addons.umd.js +856 -52
- package/bundles/porscheinformatik-material-addons.umd.js.map +1 -1
- package/bundles/porscheinformatik-material-addons.umd.min.js +2 -2
- package/bundles/porscheinformatik-material-addons.umd.min.js.map +1 -1
- package/esm2015/lib/card/card.component.js +19 -5
- package/esm2015/lib/content-panel/content-header/content-header.component.js +15 -0
- package/esm2015/lib/content-panel/content-panel-container/content-panel-container.component.js +15 -0
- package/esm2015/lib/content-panel/content-panel-container-content/content-panel-container-content.component.js +15 -0
- package/esm2015/lib/content-panel/content-panel-container-footer/content-panel-container-footer.component.js +15 -0
- package/esm2015/lib/content-panel/content-panel.module.js +29 -0
- package/esm2015/lib/content-panel/main-container/main-container.component.js +15 -0
- package/esm2015/lib/data-table/data-table-action.js +1 -0
- package/esm2015/lib/data-table/data-table-column-header.js +1 -0
- package/esm2015/lib/data-table/data-table.component.js +103 -0
- package/esm2015/lib/data-table/data-table.js +1 -0
- package/esm2015/lib/data-table/data-table.module.js +33 -0
- package/esm2015/lib/flowbar/flowbar.component.js +186 -0
- package/esm2015/lib/flowbar/flowbar.module.js +14 -0
- package/esm2015/lib/material-addons.module.js +3 -3
- package/esm2015/lib/numeric-field/numeric-field.directive.js +4 -2
- package/esm2015/lib/quick-list/base-quick-list.component.js +89 -0
- package/esm2015/lib/quick-list/quick-list-compact/quick-list-compact.component.js +18 -0
- package/esm2015/lib/quick-list/quick-list.component.js +6 -77
- package/esm2015/lib/quick-list/quick-list.module.js +6 -4
- package/esm2015/lib/stepper/mad-stepper-animation.js +13 -0
- package/esm2015/lib/stepper/step-header/step-header.component.js +75 -0
- package/esm2015/lib/stepper/stepper.component.js +167 -0
- package/esm2015/lib/stepper/stepper.module.js +18 -0
- package/esm2015/lib/table/table.component.js +1 -1
- package/esm2015/lib/table/table.module.js +3 -3
- package/esm2015/porscheinformatik-material-addons.js +5 -2
- package/esm2015/public-api.js +15 -1
- package/fesm2015/porscheinformatik-material-addons.js +737 -25
- package/fesm2015/porscheinformatik-material-addons.js.map +1 -1
- package/lib/card/card.component.d.ts +4 -0
- package/lib/content-panel/content-header/content-header.component.d.ts +5 -0
- package/lib/content-panel/content-panel-container/content-panel-container.component.d.ts +5 -0
- package/lib/content-panel/content-panel-container-content/content-panel-container-content.component.d.ts +5 -0
- package/lib/content-panel/content-panel-container-footer/content-panel-container-footer.component.d.ts +5 -0
- package/lib/content-panel/content-panel.module.d.ts +2 -0
- package/lib/content-panel/main-container/main-container.component.d.ts +5 -0
- package/lib/data-table/data-table-action.d.ts +5 -0
- package/lib/data-table/data-table-column-header.d.ts +6 -0
- package/lib/data-table/data-table.component.d.ts +39 -0
- package/lib/data-table/data-table.d.ts +2 -0
- package/lib/data-table/data-table.module.d.ts +2 -0
- package/lib/flowbar/flowbar.component.d.ts +42 -0
- package/lib/flowbar/flowbar.module.d.ts +2 -0
- package/lib/quick-list/base-quick-list.component.d.ts +29 -0
- package/lib/quick-list/quick-list-compact/quick-list-compact.component.d.ts +6 -0
- package/lib/quick-list/quick-list.component.d.ts +4 -27
- package/lib/stepper/mad-stepper-animation.d.ts +7 -0
- package/lib/stepper/step-header/step-header.component.d.ts +23 -0
- package/lib/stepper/stepper.component.d.ts +47 -0
- package/lib/stepper/stepper.module.d.ts +2 -0
- package/package.json +6 -6
- package/porscheinformatik-material-addons.d.ts +4 -1
- package/porscheinformatik-material-addons.metadata.json +1 -1
- package/public-api.d.ts +14 -0
- package/themes/common/styles.scss +2 -2
- package/themes/pbv.scss +2 -1
package/public-api.d.ts
CHANGED
|
@@ -14,6 +14,20 @@ export * from './lib/card/card.module';
|
|
|
14
14
|
export * from './lib/quick-list/quick-list.module';
|
|
15
15
|
export * from './lib/table/table';
|
|
16
16
|
export * from './lib/table/table.module';
|
|
17
|
+
export * from './lib/data-table/data-table';
|
|
18
|
+
export * from './lib/data-table/data-table.module';
|
|
17
19
|
export * from './lib/throttle-click/throttle-click.directive';
|
|
18
20
|
export * from './lib/throttle-click/throttle-click.module';
|
|
21
|
+
export * from './lib/stepper/stepper.component';
|
|
22
|
+
export * from './lib/stepper/step-header/step-header.component';
|
|
23
|
+
export * from './lib/stepper/mad-stepper-animation';
|
|
24
|
+
export * from './lib/stepper/stepper.module';
|
|
25
|
+
export * from './lib/content-panel/content-header/content-header.component';
|
|
26
|
+
export * from './lib/content-panel/content-panel-container/content-panel-container.component';
|
|
27
|
+
export * from './lib/content-panel/content-panel-container-content/content-panel-container-content.component';
|
|
28
|
+
export * from './lib/content-panel/content-panel-container-footer/content-panel-container-footer.component';
|
|
29
|
+
export * from './lib/content-panel/main-container/main-container.component';
|
|
30
|
+
export * from './lib/content-panel/content-panel.module';
|
|
31
|
+
export * from './lib/flowbar/flowbar.component';
|
|
32
|
+
export * from './lib/flowbar/flowbar.module';
|
|
19
33
|
export * from './lib/material-addons.module';
|
|
@@ -35,9 +35,9 @@ $contrast: (
|
|
|
35
35
|
@return map-get($color-scheme, background-color);
|
|
36
36
|
}
|
|
37
37
|
|
|
38
|
-
@mixin build-custom-theme($primary-palette, $warn-palette:
|
|
38
|
+
@mixin build-custom-theme($primary-palette, $warn-palette: $mat-red, $theme-name: 'undefined') {
|
|
39
39
|
$material-addons-colors-primary: mat-palette($primary-palette);
|
|
40
|
-
$material-addons-colors-warn: $warn-palette;
|
|
40
|
+
$material-addons-colors-warn: mat-palette($warn-palette);
|
|
41
41
|
$material-addons-theme: mat-light-theme($material-addons-colors-primary, $material-addons-colors-primary, $material-addons-colors-warn);
|
|
42
42
|
|
|
43
43
|
$hover-color: mat-palette($primary-palette, 50);
|
package/themes/pbv.scss
CHANGED
|
@@ -27,7 +27,7 @@ $warn-palette: (
|
|
|
27
27
|
200: #ca8e9e,
|
|
28
28
|
300: #b56077,
|
|
29
29
|
400: #a53e5a,
|
|
30
|
-
500: #
|
|
30
|
+
500: #970505,
|
|
31
31
|
600: #8d1937,
|
|
32
32
|
700: #82142f,
|
|
33
33
|
800: #781127,
|
|
@@ -36,6 +36,7 @@ $warn-palette: (
|
|
|
36
36
|
A200: #ff667a,
|
|
37
37
|
A400: #ff334e,
|
|
38
38
|
A700: #ff1a38,
|
|
39
|
+
contrast: $contrast,
|
|
39
40
|
);
|
|
40
41
|
|
|
41
42
|
$main-primary: get-main-color($primary-palette);
|