@hostlink/nuxt-light 1.67.1 → 1.67.2

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/module.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "light",
3
3
  "configKey": "light",
4
- "version": "1.67.1",
4
+ "version": "1.67.2",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "1.0.2",
7
7
  "unbuild": "3.6.1"
@@ -724,12 +724,12 @@ const hasFilters = computed(() => {
724
724
  :options="localSearchOptions[col.name]" emit-value map-options
725
725
  :multiple="col.searchMultiple" use-input input-debounce="0" @filter="(val, update) => {
726
726
  searchSelectFilter(val, update, col.name);
727
- }" :style="col.searchStyle" />
727
+ }" :style="col.searchStyle" :placeholder="col.searchPlaceholder" />
728
728
  </template>
729
729
 
730
730
  <template v-if="col.searchType == 'date'">
731
731
  <l-date-picker dense clearable filled square :outlined="false" hide-bottom-space
732
- v-model="filters[col.name]" range :style="col.searchStyle" />
732
+ v-model="filters[col.name]" range :style="col.searchStyle" :placeholder="col.searchPlaceholder" />
733
733
  </template>
734
734
 
735
735
  <template v-if="col.searchType == 'boolean'">
@@ -44,7 +44,8 @@ export default defineLightModel({
44
44
  label: "Join date",
45
45
  sortable: true,
46
46
  searchable: true,
47
- searchType: "date"
47
+ searchType: "date",
48
+ searchPlaceholder: "Pick a date range..."
48
49
  },
49
50
  roles: {
50
51
  label: "Roles"
@@ -53,6 +54,7 @@ export default defineLightModel({
53
54
  label: "Status",
54
55
  searchable: true,
55
56
  searchType: "select",
57
+ searchPlaceholder: "Filter by status...",
56
58
  searchOptions: [
57
59
  { label: "Active", value: 0 },
58
60
  { label: "Inactive", value: 1 }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hostlink/nuxt-light",
3
- "version": "1.67.1",
3
+ "version": "1.67.2",
4
4
  "description": "HostLink Nuxt Light Framework",
5
5
  "repository": {
6
6
  "type": "git",