@shival99/z-ui 2.1.15 → 2.1.17
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/fesm2022/shival99-z-ui-components-z-input.mjs +25 -11
- package/fesm2022/shival99-z-ui-components-z-input.mjs.map +1 -1
- package/fesm2022/shival99-z-ui-components-z-table.mjs +6 -6
- package/fesm2022/shival99-z-ui-components-z-table.mjs.map +1 -1
- package/fesm2022/shival99-z-ui-providers.mjs +15 -3
- package/fesm2022/shival99-z-ui-providers.mjs.map +1 -1
- package/package.json +1 -1
- package/types/shival99-z-ui-components-z-input.d.ts +5 -2
- package/types/shival99-z-ui-components-z-table.d.ts +1 -1
- package/types/shival99-z-ui-providers.d.ts +4 -1
|
@@ -1667,8 +1667,8 @@ class ZTableEditCellComponent {
|
|
|
1667
1667
|
[zMask]="editConfig().mask || ''"
|
|
1668
1668
|
[zDecimalPlaces]="editConfig().decimalPlaces"
|
|
1669
1669
|
[zAllowNegative]="editConfig().allowNegative ?? false"
|
|
1670
|
-
[zThousandSeparator]="editConfig().thousandSeparator
|
|
1671
|
-
[zDecimalMarker]="editConfig().decimalMarker
|
|
1670
|
+
[zThousandSeparator]="editConfig().thousandSeparator"
|
|
1671
|
+
[zDecimalMarker]="editConfig().decimalMarker"
|
|
1672
1672
|
[zLoading]="cfg().loading"
|
|
1673
1673
|
[zLoadingOutline]="true"
|
|
1674
1674
|
[zDisabled]="cfg().disabled"
|
|
@@ -1828,8 +1828,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.9", ngImpor
|
|
|
1828
1828
|
[zMask]="editConfig().mask || ''"
|
|
1829
1829
|
[zDecimalPlaces]="editConfig().decimalPlaces"
|
|
1830
1830
|
[zAllowNegative]="editConfig().allowNegative ?? false"
|
|
1831
|
-
[zThousandSeparator]="editConfig().thousandSeparator
|
|
1832
|
-
[zDecimalMarker]="editConfig().decimalMarker
|
|
1831
|
+
[zThousandSeparator]="editConfig().thousandSeparator"
|
|
1832
|
+
[zDecimalMarker]="editConfig().decimalMarker"
|
|
1833
1833
|
[zLoading]="cfg().loading"
|
|
1834
1834
|
[zLoadingOutline]="true"
|
|
1835
1835
|
[zDisabled]="cfg().disabled"
|
|
@@ -4116,8 +4116,8 @@ class ZTableCellEditPipe {
|
|
|
4116
4116
|
mask: config.mask ?? '',
|
|
4117
4117
|
decimalPlaces: config.decimalPlaces,
|
|
4118
4118
|
allowNegative: config.allowNegative ?? false,
|
|
4119
|
-
thousandSeparator: config.thousandSeparator
|
|
4120
|
-
decimalMarker: config.decimalMarker
|
|
4119
|
+
thousandSeparator: config.thousandSeparator,
|
|
4120
|
+
decimalMarker: config.decimalMarker,
|
|
4121
4121
|
selectConfig: config.selectConfig ?? {},
|
|
4122
4122
|
selectMode: config.selectMode ?? config.mode ?? 'single',
|
|
4123
4123
|
selectShowSearch: config.selectShowSearch ?? true,
|