@acoustte-digital-services/digitalstore-controls-dev 0.8.1-dev.20260616104505 → 0.8.1-dev.20260616111809

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 CHANGED
@@ -6504,7 +6504,9 @@ var DataList = (props) => {
6504
6504
  controlType: InputControlType_default.lineTextInput,
6505
6505
  value: searchTerm,
6506
6506
  callback: (e) => setSearchTerm(e.value),
6507
- attributes: { placeholder: "Search..." }
6507
+ attributes: {
6508
+ placeholder: `Search by ${props.columns.filter((col) => col.isSearchable).map((col) => col.label).join(", ")}`
6509
+ }
6508
6510
  }
6509
6511
  ),
6510
6512
  props.filters && props.filters.map((filter) => /* @__PURE__ */ (0, import_jsx_runtime76.jsx)(
@@ -6666,7 +6668,9 @@ var DataList = (props) => {
6666
6668
  controlType: InputControlType_default.lineTextInput,
6667
6669
  value: searchTerm,
6668
6670
  callback: (e) => setSearchTerm(e.value),
6669
- attributes: { placeholder: "Search..." }
6671
+ attributes: {
6672
+ placeholder: `Search by ${props.columns.filter((col) => col.isSearchable).map((col) => col.label).join(", ")}`
6673
+ }
6670
6674
  }
6671
6675
  ),
6672
6676
  props.filters && props.filters.map((filter) => /* @__PURE__ */ (0, import_jsx_runtime76.jsx)(
package/dist/index.mjs CHANGED
@@ -4892,7 +4892,9 @@ var DataList = (props) => {
4892
4892
  controlType: InputControlType_default.lineTextInput,
4893
4893
  value: searchTerm,
4894
4894
  callback: (e) => setSearchTerm(e.value),
4895
- attributes: { placeholder: "Search..." }
4895
+ attributes: {
4896
+ placeholder: `Search by ${props.columns.filter((col) => col.isSearchable).map((col) => col.label).join(", ")}`
4897
+ }
4896
4898
  }
4897
4899
  ),
4898
4900
  props.filters && props.filters.map((filter) => /* @__PURE__ */ jsx65(
@@ -5054,7 +5056,9 @@ var DataList = (props) => {
5054
5056
  controlType: InputControlType_default.lineTextInput,
5055
5057
  value: searchTerm,
5056
5058
  callback: (e) => setSearchTerm(e.value),
5057
- attributes: { placeholder: "Search..." }
5059
+ attributes: {
5060
+ placeholder: `Search by ${props.columns.filter((col) => col.isSearchable).map((col) => col.label).join(", ")}`
5061
+ }
5058
5062
  }
5059
5063
  ),
5060
5064
  props.filters && props.filters.map((filter) => /* @__PURE__ */ jsx65(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@acoustte-digital-services/digitalstore-controls-dev",
3
- "version": "0.8.1-dev.20260616104505",
3
+ "version": "0.8.1-dev.20260616111809",
4
4
  "description": "Reusable React components",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",