@porscheinformatik/material-addons 10.1.8 → 10.2.2
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 +8 -2
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';
|
|
@@ -121,8 +121,6 @@ table {
|
|
|
121
121
|
}
|
|
122
122
|
|
|
123
123
|
.button-panel {
|
|
124
|
-
display: flex;
|
|
125
|
-
flex-direction: row;
|
|
126
124
|
padding-top: 16px;
|
|
127
125
|
padding-bottom: 8px;
|
|
128
126
|
padding-right: 16px;
|
|
@@ -305,6 +303,14 @@ mad-link-button {
|
|
|
305
303
|
display: none !important;
|
|
306
304
|
}
|
|
307
305
|
|
|
306
|
+
mad-primary-button,
|
|
307
|
+
mad-outline-button,
|
|
308
|
+
mad-danger-button,
|
|
309
|
+
mad-link-button,
|
|
310
|
+
mad-icon-button {
|
|
311
|
+
display: none !important;
|
|
312
|
+
}
|
|
313
|
+
|
|
308
314
|
.criteria-panel {
|
|
309
315
|
display: none !important;
|
|
310
316
|
height: 0 !important;
|