myrta-ui 1.1.38 → 1.1.39
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/esm2020/lib/components/form/input-date-time/input-date-time.component.mjs +1 -1
- package/esm2020/lib/components/form/input-date-time/input-date-time.enum.mjs +1 -1
- package/esm2020/lib/components/form/input-date-time/models/input-date-time.model.mjs +2 -0
- package/esm2020/lib/components/form/input-datepicker/input-datepicker.component.mjs +1 -1
- package/esm2020/lib/components/form/input-datepicker/input-datepicker.enum.mjs +1 -1
- package/esm2020/lib/components/form/input-datepicker/models/input-datepicker.model.mjs +2 -0
- package/esm2020/lib/services/mrx-form-validator/helpers/get-sorting-validations.helper.mjs +2 -2
- package/esm2020/public-api.mjs +4 -1
- package/fesm2015/myrta-ui.mjs +1 -1
- package/fesm2015/myrta-ui.mjs.map +1 -1
- package/fesm2020/myrta-ui.mjs +1 -1
- package/fesm2020/myrta-ui.mjs.map +1 -1
- package/lib/components/form/input-date-time/input-date-time.component.d.ts +2 -1
- package/lib/components/form/input-date-time/input-date-time.enum.d.ts +0 -5
- package/lib/components/form/input-date-time/models/input-date-time.model.d.ts +5 -0
- package/lib/components/form/input-datepicker/input-datepicker.component.d.ts +6 -5
- package/lib/components/form/input-datepicker/input-datepicker.enum.d.ts +0 -5
- package/lib/components/form/input-datepicker/models/input-datepicker.model.d.ts +5 -0
- package/package.json +1 -1
- package/public-api.d.ts +3 -0
package/fesm2020/myrta-ui.mjs
CHANGED
|
@@ -4369,8 +4369,8 @@ const getSortingValidationsHelper = (validation) => {
|
|
|
4369
4369
|
ValidationTypesEnum.MaxLength,
|
|
4370
4370
|
ValidationTypesEnum.MinLength,
|
|
4371
4371
|
ValidationTypesEnum.Email,
|
|
4372
|
-
ValidationTypesEnum.Pattern,
|
|
4373
4372
|
ValidationTypesEnum.Required,
|
|
4373
|
+
ValidationTypesEnum.Pattern,
|
|
4374
4374
|
ValidationTypesEnum.Callback,
|
|
4375
4375
|
ValidationOptionsEnum.Type,
|
|
4376
4376
|
ValidationOptionsEnum.Messages
|