@acoustte-digital-services/digitalstore-controls-dev 0.8.1-dev.20260615111335 → 0.8.1-dev.20260615115948
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/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -6622,7 +6622,7 @@ function mapApiToColumns(siteForm) {
|
|
|
6622
6622
|
label: col.label,
|
|
6623
6623
|
name: col.columnName,
|
|
6624
6624
|
controlType: viewControlMap[col.controlTypeCode] ?? ViewControlTypes.lineText,
|
|
6625
|
-
|
|
6625
|
+
enableSorting: col.enableSorting ?? false,
|
|
6626
6626
|
isSearchable: col.isSearchable ?? false,
|
|
6627
6627
|
width: "w-2/12",
|
|
6628
6628
|
showAsLink: col.showAsLink ?? false,
|
package/dist/index.mjs
CHANGED
|
@@ -5009,7 +5009,7 @@ function mapApiToColumns(siteForm) {
|
|
|
5009
5009
|
label: col.label,
|
|
5010
5010
|
name: col.columnName,
|
|
5011
5011
|
controlType: viewControlMap[col.controlTypeCode] ?? ViewControlTypes.lineText,
|
|
5012
|
-
|
|
5012
|
+
enableSorting: col.enableSorting ?? false,
|
|
5013
5013
|
isSearchable: col.isSearchable ?? false,
|
|
5014
5014
|
width: "w-2/12",
|
|
5015
5015
|
showAsLink: col.showAsLink ?? false,
|
package/package.json
CHANGED