@sumaris-net/ngx-components 2.8.3-beta8 → 2.8.3
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 +7 -0
- package/esm2022/src/app/admin/users/users.mjs +3 -3
- package/esm2022/src/app/core/account/account.page.mjs +3 -3
- package/esm2022/src/app/core/account/new-token.modal.mjs +1 -1
- package/esm2022/src/app/core/form/buttons/form-buttons-bar.component.mjs +12 -14
- package/esm2022/src/app/core/form/entity/editor.class.mjs +4 -2
- package/esm2022/src/app/core/form/entity/entity-editor-modal.class.mjs +2 -1
- package/esm2022/src/app/core/form/entity/entity-editor.class.mjs +3 -2
- package/esm2022/src/app/core/form/form-container.class.mjs +13 -1
- package/esm2022/src/app/core/form/form.utils.mjs +10 -1
- package/esm2022/src/app/core/services/model/referential.model.mjs +4 -1
- package/esm2022/src/app/core/settings/settings.page.mjs +2 -2
- package/esm2022/src/app/core/table/async-table.class.mjs +1 -1
- package/esm2022/src/app/core/table/entities-async-table-datasource.class.mjs +10 -7
- package/esm2022/src/app/core/table/entities-table-datasource.class.mjs +10 -7
- package/esm2022/src/app/core/table/table.class.mjs +1 -1
- package/esm2022/src/app/core/table/testing/table.testing.mjs +1 -1
- package/esm2022/src/app/core/table/testing/table2.testing.mjs +1 -1
- package/esm2022/src/app/shared/dates.mjs +11 -2
- package/esm2022/src/app/shared/form/field.component.mjs +1 -1
- package/esm2022/src/app/shared/functions.mjs +21 -1
- package/esm2022/src/app/shared/guard/component-dirty.guard.mjs +1 -1
- package/esm2022/src/app/shared/material/autocomplete/material.autocomplete.mjs +3 -3
- package/esm2022/src/app/shared/material/autocomplete/testing/autocomplete.test.mjs +3 -3
- package/esm2022/src/app/shared/material/boolean/material.boolean.mjs +2 -2
- package/esm2022/src/app/shared/material/datetime/material.date.mjs +33 -9
- package/esm2022/src/app/shared/material/datetime/material.dateshort.mjs +33 -9
- package/esm2022/src/app/shared/material/datetime/material.datetime.mjs +3 -3
- package/esm2022/src/app/shared/material/datetime/testing/mat-date-time.test.mjs +3 -3
- package/esm2022/src/app/shared/material/datetime/testing/mat-date.test.mjs +6 -5
- package/esm2022/src/app/shared/material/datetime/testing/mat-dateshort.test.mjs +8 -5
- package/esm2022/src/app/shared/material/latlong/material.latlong.mjs +4 -4
- package/esm2022/src/app/shared/named-filter/named-filter-selector.component.mjs +5 -2
- package/esm2022/src/app/shared/pipes/arrays.pipe.mjs +16 -1
- package/esm2022/src/app/shared/pipes/pipes.module.mjs +5 -2
- package/fesm2022/sumaris-net.ngx-components.mjs +5026 -4900
- package/fesm2022/sumaris-net.ngx-components.mjs.map +1 -1
- package/package.json +1 -1
- package/src/app/core/account/account.page.d.ts +2 -2
- package/src/app/core/form/buttons/form-buttons-bar.component.d.ts +2 -3
- package/src/app/core/form/entity/editor.class.d.ts +2 -3
- package/src/app/core/form/form-container.class.d.ts +3 -0
- package/src/app/core/form/form.utils.d.ts +10 -0
- package/src/app/core/services/model/referential.model.d.ts +1 -0
- package/src/app/core/settings/settings.page.d.ts +1 -2
- package/src/app/core/table/async-table.class.d.ts +2 -2
- package/src/app/core/table/entities-async-table-datasource.class.d.ts +1 -0
- package/src/app/core/table/entities-table-datasource.class.d.ts +1 -0
- package/src/app/core/table/table.class.d.ts +2 -2
- package/src/app/shared/dates.d.ts +4 -3
- package/src/app/shared/functions.d.ts +2 -0
- package/src/app/shared/guard/component-dirty.guard.d.ts +1 -6
- package/src/app/shared/material/autocomplete/material.autocomplete.d.ts +1 -1
- package/src/app/shared/material/datetime/material.date.d.ts +12 -5
- package/src/app/shared/material/datetime/material.dateshort.d.ts +12 -5
- package/src/app/shared/material/datetime/material.datetime.d.ts +1 -1
- package/src/app/shared/material/latlong/material.latlong.d.ts +1 -1
- package/src/app/shared/pipes/arrays.pipe.d.ts +5 -0
- package/src/app/shared/pipes/pipes.module.d.ts +1 -1
- package/src/assets/manifest.json +1 -1
- package/src/theme/_ngx-components.forms.scss +2 -0
- package/src/theme/_ngx-components.tabs.scss +2 -0
package/doc/changelog.md
CHANGED
|
@@ -743,3 +743,10 @@ This will allow subclasses to override the default selectedTabIndex after an err
|
|
|
743
743
|
- [enh] Function `getPropertyByPath` now handles the optional chaining operator `(?.)`
|
|
744
744
|
- [enh] Add `AccountService.onWillLogout` emitter
|
|
745
745
|
- [fix] Table: Call `emitRefresh()` instead of `onRefresh.emit()` to safely emit to an opened Observable
|
|
746
|
+
|
|
747
|
+
# 2.8.3
|
|
748
|
+
- [enh] Add support of `<mat-hint>` in MatDateTime, MatDate, MatDateShort, MatAutocompleteField and MatLatLongField
|
|
749
|
+
- [enh] Add `DateUtils.compare` to be able to sort dates (using Array `sort()`)
|
|
750
|
+
- [enh] Add function `resizeArray(T[], size): T[]`
|
|
751
|
+
- [fix] NamedFilter: Abort import if callback returns null or undefined
|
|
752
|
+
- [fix] DataSource: Use `hasSomeDirtyRow()` to check if datasource has dirty row when calling `watchAll()`
|