@sumaris-net/ngx-components 18.23.68 → 18.23.69

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/doc/changelog.md CHANGED
@@ -2193,7 +2193,12 @@ enh: Environment: add useHash property to configure Angular router to use hash U
2193
2193
  - enh(shared): Add new pipe `changeCaseToUnderscore` to convert camelCase to underscore_case in templates
2194
2194
 
2195
2195
  ## 18.23.65
2196
- - enh(date-time-field): Fix datetime value emission on invalid datetime
2196
+ - enh(date-time-field): Fix datetime value emission on invalid datetime (closes sumaris-app#1863)
2197
2197
 
2198
2198
  ## 18.23.68
2199
- - enh(theme): add responsive `min-width` utility classes for select panel
2199
+ - enh(theme): add responsive `min-width` utility classes for select panel - Allow to use panelClass with :
2200
+ * mobile/desktop: `min-width-fit-content`, `min-width-medium`, `min-width-large`, `min-width-xlarge` , `min-width-80vw` :
2201
+ * mobile only: `mat-select-panel-fit-content`|`mat-select-panel-medium-size`|`mat-select-panel-large-size`|`mat-select-panel-xlarge-size`|`mat-select-panel-80vw-size`
2202
+
2203
+ ## 18.23.69
2204
+ - enh(theme): MatAutocompleteField: add panelClass style `full-width`, as an alias of `full-size`
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sumaris-net/ngx-components",
3
3
  "description": "SUMARiS Angular components",
4
- "version": "18.23.68",
4
+ "version": "18.23.69",
5
5
  "author": "contact@e-is.pro",
6
6
  "license": "AGPL-3.0",
7
7
  "readmeFilename": "README.md",
@@ -2,7 +2,7 @@
2
2
  "name": "ngx-sumaris-components",
3
3
  "short_name": "ngx-sumaris-components",
4
4
  "manifest_version": 1,
5
- "version": "18.23.68",
5
+ "version": "18.23.69",
6
6
  "default_locale": "fr",
7
7
  "description": "Angular components for building beautiful and responsive Apps",
8
8
  "icons": [{
@@ -228,7 +228,8 @@ mat-option:not(:last-of-type) {
228
228
  --min-width: 450px;
229
229
  }
230
230
 
231
- &:has(.min-width-80vw) {
231
+ &:has(.min-width-80vw),
232
+ &:has(.mat-select-panel-80vw-size) {
232
233
  --min-width: 80vw;
233
234
  }
234
235
 
@@ -279,12 +280,15 @@ mat-option:not(:last-of-type) {
279
280
  --min-width: 450px;
280
281
  }
281
282
 
282
- &:has(.min-width-80vw) {
283
+ &:has(.min-width-80vw),
284
+ &:has(.mat-mdc-autocomplete-panel-80vw-size){
283
285
  --min-width: 80vw;
284
286
  }
285
287
 
286
- &:has(.mat-mdc-autocomplete-panel-full-size),
287
- &:has(.full-size) {
288
+ &:has(.full-size),
289
+ &:has(.full-width),
290
+ &:has(.mat-mdc-autocomplete-panel-full-size)
291
+ {
288
292
  --margin-left: 32px;
289
293
  --margin-right: 32px;
290
294
  --min-width: calc(100vw - var(--margin-left) - var(--margin-right));