ecabs-components 2.0.0-alpha.2 → 2.0.0-alpha.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/README.md +9 -2
- package/fesm2022/ecabs-components.mjs +184 -15
- package/fesm2022/ecabs-components.mjs.map +1 -1
- package/lib/base/models/ecabs-date-picker-translations.models.d.ts +1 -0
- package/lib/base/validators/date-range.validator.d.ts +14 -0
- package/lib/ecabs-date-picker/ecabs-date-picker.component.d.ts +3 -0
- package/lib/ecabs-date-picker-actions/ecabs-date-picker-actions.component.d.ts +3 -1
- package/lib/ecabs-date-range-picker/ecabs-date-range-picker.component.d.ts +3 -0
- package/lib/ecabs-dialog-confirm/ecabs-dialog-confirm.component.d.ts +0 -1
- package/lib/ecabs-dialog-confirm-deletion/ecabs-dialog-confirm-deletion.component.d.ts +33 -0
- package/lib/ecabs-dialog-confirm-deletion/ecabs-dialog-confirm-deletion.module.d.ts +12 -0
- package/lib/ecabs-radio-button-list/ecabs-radio-button-list.component.d.ts +3 -1
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
- package/src/assets/styles/material/overrides/_datepicker.scss +1 -0
- package/src/assets/styles/tailwind/index.scss +1 -1
package/README.md
CHANGED
|
@@ -100,7 +100,14 @@ To get more help on the Angular CLI use `ng help` or go check out the [Angular C
|
|
|
100
100
|
- **v1.1.38** — Use native `matDatepickerToggleIcon` in `EcabsDateTimePicker`.
|
|
101
101
|
- **v1.1.39** — Added date adapter to public api.
|
|
102
102
|
- **v1.1.40** — `EcabsDateTimePicker`: Added support for preserving and returning `receivedValue` when there is no change in the input.
|
|
103
|
-
|
|
103
|
+
- **v1.1.41** — Added EcabsDialogConfirmationDeletionComponent.
|
|
104
|
+
- **v1.1.42** — Apply `width` and `height` properties directly to root `MatDialog` of `EcabsDialogConfirmComponent`.
|
|
105
|
+
- **v1.1.43** — Added disabling of Apply button for date range picker
|
|
106
|
+
- **v1.1.44** — Fixed issue Apply button is still active when only the DateFrom is selected
|
|
107
|
+
- **v1.1.45** — Added default validation of date range
|
|
108
|
+
- **v1.1.46** — Add `ViewChild` reference for `MatRadioGroup` and update event type in `EcabsRadioButtonListComponent`.
|
|
104
109
|
- **v2.0.1** - Fix color for `MatToggle`.
|
|
105
110
|
- Fix imports for `Datepicker` demo.
|
|
106
|
-
- **v2.0.0-alpha.1** - Optimize width for `EcabsPhone` engine, `ngx-intl-tel-input`.
|
|
111
|
+
- **v2.0.0-alpha.1** - Optimize width for `EcabsPhone` engine, `ngx-intl-tel-input`.
|
|
112
|
+
- **v2.0.0-alpha.2** - Upgrade libs versions (tailwind, etc.).
|
|
113
|
+
- **v2.0.0-alpha.3** - Fix font-size of date picker.
|