@sumaris-net/ngx-components 21.0.0-rc13 → 21.0.0-rc15

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
@@ -1,6 +1,5 @@
1
1
  # Change log
2
2
 
3
-
4
3
  ## 0.1.7
5
4
 
6
5
  - enh: Menu: Allow dynamic insertion, using a new config options (see 'CORE_CONFIG_OPTIONS.MENU_ITEMS')
@@ -2197,7 +2196,7 @@ enh: Environment: add useHash property to configure Angular router to use hash U
2197
2196
 
2198
2197
  ## 18.23.68
2199
2198
  - 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` :
2199
+ * mobile/desktop: `min-width-fit-content`, `min-width-medium`, `min-width-large`, `min-width-xlarge` , `min-width-80vw` :
2201
2200
  * 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
2201
 
2203
2202
  ## 18.23.69
@@ -2213,7 +2212,7 @@ enh: Environment: add useHash property to configure Angular router to use hash U
2213
2212
  ## 18.24.0
2214
2213
  - enh(form-container) Allow to call `addForm()`, `addForms()` and `removeForm()` with a FormGroup argument (it will be wrapped into AppForm)
2215
2214
 
2216
- ## 18.24.1 - 18.24.2
2215
+ ## 18.24.1 - 18.24.2
2217
2216
  - enh(editor) Fix error in `saveDirtyChildren()` error, when having no children
2218
2217
 
2219
2218
  ## 18.24.3
@@ -2246,6 +2245,9 @@ enh: Environment: add useHash property to configure Angular router to use hash U
2246
2245
  ## 18.24.22
2247
2246
  - fix(menu) Allow to hide the footer, on small screens
2248
2247
 
2248
+ ## 18.24.23
2249
+ - fix(material.date) Prevent event propagation in `openDatePicker()`
2250
+
2249
2251
  ## 18.24.24
2250
2252
  - enh(FileUtils) Add more options to `showUploadPopover()` like `backdropDismiss`, `keyboardClose` and `translucent`.
2251
2253
 
@@ -2259,9 +2261,42 @@ enh: Environment: add useHash property to configure Angular router to use hash U
2259
2261
  ## 18.25.1
2260
2262
  - fix(startup) Missing export symbols in public API
2261
2263
 
2264
+ ## 18.25.3
2265
+ - fix(animations) Fix Chrome warning about non-animatable property `overflow` in `expansionAnimation`
2266
+
2267
+ ## 18.25.4
2268
+ - fix(AppAsyncTable) Add `logPrefix` property to allow customizing the logs prefix
2269
+
2270
+ ## 18.25.5
2271
+ - enh(mat-autocomplete-field) Add custom header and footer support for `mat-autocomplete-field`, using `<ng-template panelHeader>` and `<ng-template panelFooter>`
2272
+ - enh(mat-autocomplete-field) Add new inputs `showPanelHeader` and `showPanelFooter` to hide defaults header/footer
2273
+
2274
+ ## 18.25.6
2275
+ - enh(gallery) Add `zoomPresentation` to display slideshow without modal, but inside the main container
2276
+
2277
+ ## 18.25.15
2278
+ - enh(gallery) Rename mouse zoom, rotate and crop options to `enableMouseZoom`, `enableRotate` and `enableCrop`
2279
+ - enh(gallery) Rename `zoomPresentation` into `slideshowMode`
2280
+
2281
+ ## 18.26.0
2282
+ - enh(icon-selector) New component suite for icon selection: `AppIconSelectorModal` (modal with tabs, search, badges) and `AppIconSelectorField` (form field with ControlValueAccessor)
2283
+ - enh(generate-icons) New `npm run generate:icons` script to generate `assets/icons-ref.json` from `node_modules` (ionicons + material-design-icons)
2284
+
2262
2285
  ## 21.0.0
2263
2286
  - enh(core) Migration to Angular 21 and Ionic 8
2264
2287
  - enh(e2e) Allow to run e2e on many peer/login, using file `e2e/.environments.json` or `.environments.json` (or `.local/environments.json`)
2265
2288
  - fix(Toolbar) Add subTitle input
2266
2289
  - fix(AuthForm): fix error message display
2267
2290
  - fix(UsersTable): fix error message display and use @if instead of @ngIf
2291
+
2292
+ ## 21.0.1
2293
+ - enh(autocomplete): Add `showHeaderList` and `showFooterList` inputs to control header/footer visibility in dropdown
2294
+ - enh(autocomplete): Add `headerListTemplate` and `footerListTemplate` content projection slots for custom header/footer content
2295
+
2296
+ ## 21.0.2
2297
+ - enh(about) Add changelog link (Notes de version) to About modal, using ConfigurationService and markdown modal
2298
+
2299
+ ## 21.1.0
2300
+ - Breaking change: GraphqlService now driven by `APP_GRAPHQL_SERVICE` token, and provided by default with `CoreModule.forRoot()`; Removed from service constructors
2301
+ - Breaking change: Translate service updated to v18: the TranslateModule has benn removed. Now use `provideTranslateService()` or `provideChildTranslateService()`
2302
+ - enh(GraphqlService): add `onExpiredAuth` subject to handle expired auth events, registered by account service.