@ng-matero/extensions 19.0.0 → 19.0.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/grid/grid.scss CHANGED
@@ -142,7 +142,7 @@ $_tokens: tokens-mtx-grid.$prefix, tokens-mtx-grid.get-token-slots();
142
142
  .mtx-grid-checkbox-cell {
143
143
  width: 60px;
144
144
  min-width: 60px;
145
- padding: 0 calc((60px - var(--mdc-checkbox-state-layer-size)) / 2);
145
+ padding: 0 calc((60px - var(--mdc-checkbox-state-layer-size, 40px)) / 2);
146
146
  }
147
147
  }
148
148
 
@@ -157,7 +157,7 @@ $_tokens: tokens-mtx-grid.$prefix, tokens-mtx-grid.get-token-slots();
157
157
  display: flex;
158
158
  justify-content: space-between;
159
159
  align-items: center;
160
- min-height: var(--mat-table-header-container-height);
160
+ min-height: var(--mat-table-header-container-height, 56px);
161
161
  padding: 8px;
162
162
  box-sizing: border-box;
163
163
 
@@ -208,7 +208,7 @@ $_tokens: tokens-mtx-grid.$prefix, tokens-mtx-grid.get-token-slots();
208
208
  .mtx-grid-statusbar {
209
209
  display: flex;
210
210
  align-items: center;
211
- min-height: var(--mat-table-header-container-height);
211
+ min-height: var(--mat-table-header-container-height, 56px);
212
212
  padding: 8px;
213
213
  box-sizing: border-box;
214
214
 
@@ -231,9 +231,8 @@ $_tokens: tokens-mtx-grid.$prefix, tokens-mtx-grid.get-token-slots();
231
231
  display: inline-block;
232
232
  vertical-align: middle;
233
233
 
234
-
235
234
  @include token-utils.use-tokens($_tokens...) {
236
- $compat-size: token-utils.get-token-variable(row-expand-button-size);
235
+ $compat-size: token-utils.get-token-variable(row-expand-button-size, 40px);
237
236
 
238
237
  width: var(--mdc-icon-button-state-layer-size, $compat-size);
239
238
  height: var(--mdc-icon-button-state-layer-size, $compat-size);
@@ -243,7 +242,7 @@ $_tokens: tokens-mtx-grid.$prefix, tokens-mtx-grid.get-token-slots();
243
242
  .mtx-grid-expansion-detail {
244
243
  display: flex;
245
244
  align-items: center;
246
- min-height: var(--mat-table-row-item-container-height);
245
+ min-height: var(--mat-table-row-item-container-height, 52px);
247
246
  overflow: hidden;
248
247
  }
249
248
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ng-matero/extensions",
3
- "version": "19.0.0",
3
+ "version": "19.0.1",
4
4
  "description": "Angular Material Extensions",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -78,14 +78,14 @@
78
78
  "types": "./button/index.d.ts",
79
79
  "default": "./fesm2022/mtxButton.mjs"
80
80
  },
81
- "./checkbox-group": {
82
- "types": "./checkbox-group/index.d.ts",
83
- "default": "./fesm2022/mtxCheckboxGroup.mjs"
84
- },
85
81
  "./colorpicker": {
86
82
  "types": "./colorpicker/index.d.ts",
87
83
  "default": "./fesm2022/mtxColorpicker.mjs"
88
84
  },
85
+ "./checkbox-group": {
86
+ "types": "./checkbox-group/index.d.ts",
87
+ "default": "./fesm2022/mtxCheckboxGroup.mjs"
88
+ },
89
89
  "./column-resize": {
90
90
  "types": "./column-resize/index.d.ts",
91
91
  "default": "./fesm2022/mtxColumnResize.mjs"