@porscheinformatik/material-addons 10.1.7 → 10.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/porscheinformatik-material-addons.umd.js +395 -51
- 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/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/porscheinformatik-material-addons.js +4 -2
- package/esm2015/public-api.js +5 -1
- package/fesm2015/porscheinformatik-material-addons.js +329 -24
- package/fesm2015/porscheinformatik-material-addons.js.map +1 -1
- package/lib/card/card.component.d.ts +4 -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 +3 -1
- package/porscheinformatik-material-addons.metadata.json +1 -1
- package/public-api.d.ts +4 -0
- package/themes/common/styles.scss +17 -9
|
@@ -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;
|
|
@@ -254,13 +252,14 @@ mad-link-button {
|
|
|
254
252
|
background: rgba(0, 0, 0, 0);
|
|
255
253
|
}
|
|
256
254
|
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
255
|
+
/*
|
|
256
|
+
* This class can be used to fix mat-tabs at the top of a page
|
|
257
|
+
*/
|
|
258
|
+
.fixedtabs > .mat-tab-header {
|
|
259
|
+
z-index: 10;
|
|
260
|
+
width: 100vw;
|
|
261
|
+
position: fixed;
|
|
262
|
+
background-color: white;
|
|
264
263
|
}
|
|
265
264
|
|
|
266
265
|
.mat-dialog-actions {
|
|
@@ -280,6 +279,7 @@ mad-link-button {
|
|
|
280
279
|
.ellipsis-text-overflow {
|
|
281
280
|
@include ellipsis-text-overflow;
|
|
282
281
|
}
|
|
282
|
+
|
|
283
283
|
@media print {
|
|
284
284
|
.no-print,
|
|
285
285
|
.no-print * {
|
|
@@ -303,6 +303,14 @@ mad-link-button {
|
|
|
303
303
|
display: none !important;
|
|
304
304
|
}
|
|
305
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
|
+
|
|
306
314
|
.criteria-panel {
|
|
307
315
|
display: none !important;
|
|
308
316
|
height: 0 !important;
|