@onereach/ui-components 5.0.2-beta.3152.0 → 5.0.2-beta.3153.0

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.
@@ -119,6 +119,10 @@ var script = defineComponent({
119
119
  type: String,
120
120
  default: undefined
121
121
  },
122
+ searchPlaceholder: {
123
+ type: String,
124
+ default: undefined
125
+ },
122
126
  hint: {
123
127
  type: String,
124
128
  default: undefined
@@ -427,7 +431,7 @@ var __vue_render__ = function () {
427
431
  class: _vm.searchControlStyles.concat([_vm.isEmptyModelValue && 'md:!ml-none']),
428
432
  attrs: {
429
433
  "type": 'search',
430
- "placeholder": _vm.placeholder,
434
+ "placeholder": _vm.searchPlaceholder,
431
435
  "size": _vm.size,
432
436
  "disable-default-styles": true
433
437
  },
@@ -484,7 +488,7 @@ var __vue_render__ = function () {
484
488
  class: _vm.searchControlStyles,
485
489
  attrs: {
486
490
  "type": 'search',
487
- "placeholder": _vm.placeholder
491
+ "placeholder": _vm.searchPlaceholder
488
492
  },
489
493
  model: {
490
494
  value: _vm.searchText,
@@ -74,6 +74,10 @@ declare const _default: import("vue").ComponentOptions<import("vue").default, im
74
74
  type: StringConstructor;
75
75
  default: undefined;
76
76
  };
77
+ searchPlaceholder: {
78
+ type: StringConstructor;
79
+ default: undefined;
80
+ };
77
81
  hint: {
78
82
  type: StringConstructor;
79
83
  default: undefined;
@@ -139,6 +143,10 @@ declare const _default: import("vue").ComponentOptions<import("vue").default, im
139
143
  type: StringConstructor;
140
144
  default: undefined;
141
145
  };
146
+ searchPlaceholder: {
147
+ type: StringConstructor;
148
+ default: undefined;
149
+ };
142
150
  hint: {
143
151
  type: StringConstructor;
144
152
  default: undefined;
@@ -183,6 +191,7 @@ declare const _default: import("vue").ComponentOptions<import("vue").default, im
183
191
  multiple: boolean;
184
192
  size: SelectSize;
185
193
  placeholder: string;
194
+ searchPlaceholder: string;
186
195
  hint: string;
187
196
  error: string | boolean;
188
197
  required: boolean;
@@ -246,6 +255,7 @@ declare const _default: import("vue").ComponentOptions<import("vue").default, im
246
255
  multiple: boolean;
247
256
  size: SelectSize;
248
257
  placeholder: string;
258
+ searchPlaceholder: string;
249
259
  hint: string;
250
260
  error: string | boolean;
251
261
  required: boolean;
@@ -265,6 +275,7 @@ declare const _default: import("vue").ComponentOptions<import("vue").default, im
265
275
  multiple: boolean;
266
276
  size: SelectSize;
267
277
  placeholder: string;
278
+ searchPlaceholder: string;
268
279
  hint: string;
269
280
  error: string | boolean;
270
281
  required: boolean;
@@ -84,6 +84,10 @@ var script = defineComponent({
84
84
  type: String,
85
85
  default: undefined
86
86
  },
87
+ searchPlaceholder: {
88
+ type: String,
89
+ default: undefined
90
+ },
87
91
  hint: {
88
92
  type: String,
89
93
  default: undefined
@@ -1,5 +1,5 @@
1
- import { s as script } from '../../OrSelect.vue_vue_type_script_lang-aa2ccd3b.js';
2
- export { s as default } from '../../OrSelect.vue_vue_type_script_lang-aa2ccd3b.js';
1
+ import { s as script } from '../../OrSelect.vue_vue_type_script_lang-77ad0fa1.js';
2
+ export { s as default } from '../../OrSelect.vue_vue_type_script_lang-77ad0fa1.js';
3
3
  import { resolveComponent, resolveDirective, openBlock, createElementBlock, normalizeClass, createBlock, withCtx, renderSlot, createTextVNode, toDisplayString, createCommentVNode, withDirectives, createElementVNode, Fragment, renderList, withModifiers, createVNode, vShow } from 'vue';
4
4
  import 'vue-demi';
5
5
  import '../../utils/isEmptyValue.js';
@@ -188,7 +188,7 @@ function render(_ctx, _cache, $props, $setup, $data, $options) {
188
188
  "onUpdate:modelValue": _cache[2] || (_cache[2] = $event => _ctx.searchText = $event),
189
189
  class: normalizeClass([..._ctx.searchControlStyles, _ctx.isEmptyModelValue && 'md:!ml-none']),
190
190
  type: 'search',
191
- placeholder: _ctx.placeholder,
191
+ placeholder: _ctx.searchPlaceholder,
192
192
  size: _ctx.size,
193
193
  "disable-default-styles": true,
194
194
  onClick: _cache[3] || (_cache[3] = withModifiers(() => {}, ["stop"]))
@@ -218,7 +218,7 @@ function render(_ctx, _cache, $props, $setup, $data, $options) {
218
218
  "onUpdate:modelValue": _cache[5] || (_cache[5] = $event => _ctx.searchText = $event),
219
219
  class: normalizeClass(_ctx.searchControlStyles),
220
220
  type: 'search',
221
- placeholder: _ctx.placeholder
221
+ placeholder: _ctx.searchPlaceholder
222
222
  }, null, 8 /* PROPS */, ["modelValue", "class", "placeholder"])) : createCommentVNode("v-if", true), _ctx.resolvedSearchOptions.length > 0 ? (openBlock(), createElementBlock(Fragment, {
223
223
  key: 1
224
224
  }, [_ctx.groupByFunction ? (openBlock(true), createElementBlock(Fragment, {
@@ -30,6 +30,10 @@ declare const _default: import("vue-demi").DefineComponent<{
30
30
  type: StringConstructor;
31
31
  default: undefined;
32
32
  };
33
+ searchPlaceholder: {
34
+ type: StringConstructor;
35
+ default: undefined;
36
+ };
33
37
  hint: {
34
38
  type: StringConstructor;
35
39
  default: undefined;
@@ -131,6 +135,10 @@ declare const _default: import("vue-demi").DefineComponent<{
131
135
  type: StringConstructor;
132
136
  default: undefined;
133
137
  };
138
+ searchPlaceholder: {
139
+ type: StringConstructor;
140
+ default: undefined;
141
+ };
134
142
  hint: {
135
143
  type: StringConstructor;
136
144
  default: undefined;
@@ -180,6 +188,7 @@ declare const _default: import("vue-demi").DefineComponent<{
180
188
  multiple: boolean;
181
189
  size: SelectSize;
182
190
  placeholder: string;
191
+ searchPlaceholder: string;
183
192
  hint: string;
184
193
  error: string | boolean;
185
194
  required: boolean;
@@ -1,4 +1,4 @@
1
- export { s as OrSelectV3 } from '../../OrSelect.vue_vue_type_script_lang-aa2ccd3b.js';
1
+ export { s as OrSelectV3 } from '../../OrSelect.vue_vue_type_script_lang-77ad0fa1.js';
2
2
  export { InputBoxSize as SelectSize } from '../OrInputBoxV3/props.js';
3
3
  import 'vue-demi';
4
4
  import '../../utils/isEmptyValue.js';
@@ -114,7 +114,7 @@ export { s as OrSearchV3 } from '../OrSearch.vue_vue_type_script_lang-12bbade9.j
114
114
  export { s as OrSegmentedControlV3 } from '../OrSegmentedControl.vue_vue_type_script_lang-3a7df112.js';
115
115
  export { SegmentedControlSize } from './OrSegmentedControlV3/props.js';
116
116
  export { s as OrSelect } from '../OrSelect.vue_vue_type_script_lang-2516881b.js';
117
- export { s as OrSelectV3 } from '../OrSelect.vue_vue_type_script_lang-aa2ccd3b.js';
117
+ export { s as OrSelectV3 } from '../OrSelect.vue_vue_type_script_lang-77ad0fa1.js';
118
118
  export { s as OrSidebar } from '../OrSidebar.vue_vue_type_script_lang-81941fe6.js';
119
119
  export { OrSidebarSide } from './OrSidebar/constants.js';
120
120
  export { s as OrSidebarV3 } from '../OrSidebar.vue_vue_type_script_lang-a7103da5.js';
@@ -74,7 +74,7 @@ export { s as OrSegmentedControlV3 } from './OrSegmentedControl.vue_vue_type_scr
74
74
  import './components/OrSelect/OrSelect.js';
75
75
  export { s as OrSelect } from './OrSelect.vue_vue_type_script_lang-2516881b.js';
76
76
  import './components/OrSelectV3/OrSelect.js';
77
- export { s as OrSelectV3 } from './OrSelect.vue_vue_type_script_lang-aa2ccd3b.js';
77
+ export { s as OrSelectV3 } from './OrSelect.vue_vue_type_script_lang-77ad0fa1.js';
78
78
  import './components/OrSidebar/OrSidebar.js';
79
79
  export { s as OrSidebar } from './OrSidebar.vue_vue_type_script_lang-81941fe6.js';
80
80
  import './components/OrSidebarV3/OrSidebar.js';
@@ -134,6 +134,10 @@ var script = defineComponent({
134
134
  type: String,
135
135
  default: undefined
136
136
  },
137
+ searchPlaceholder: {
138
+ type: String,
139
+ default: undefined
140
+ },
137
141
  hint: {
138
142
  type: String,
139
143
  default: undefined
@@ -442,7 +446,7 @@ var __vue_render__ = function () {
442
446
  class: _vm.searchControlStyles.concat([_vm.isEmptyModelValue && 'md:!ml-none']),
443
447
  attrs: {
444
448
  "type": 'search',
445
- "placeholder": _vm.placeholder,
449
+ "placeholder": _vm.searchPlaceholder,
446
450
  "size": _vm.size,
447
451
  "disable-default-styles": true
448
452
  },
@@ -499,7 +503,7 @@ var __vue_render__ = function () {
499
503
  class: _vm.searchControlStyles,
500
504
  attrs: {
501
505
  "type": 'search',
502
- "placeholder": _vm.placeholder
506
+ "placeholder": _vm.searchPlaceholder
503
507
  },
504
508
  model: {
505
509
  value: _vm.searchText,
@@ -78,7 +78,7 @@ export { _ as OrSearch } from '../OrSearch-ac542dd6.js';
78
78
  export { _ as OrSearchV3 } from '../OrSearch-598dee09.js';
79
79
  export { _ as OrSegmentedControlV3, S as SegmentedControlSize } from '../OrSegmentedControl-d4e32f80.js';
80
80
  export { _ as OrSelect } from '../OrSelect-c0d04cf6.js';
81
- export { _ as OrSelectV3 } from '../OrSelect-804d3352.js';
81
+ export { _ as OrSelectV3 } from '../OrSelect-fb4bcd02.js';
82
82
  export { _ as OrSidebar, O as OrSidebarSide } from '../OrSidebar-c56a9221.js';
83
83
  export { _ as OrSidebarV3 } from '../OrSidebar-0539d572.js';
84
84
  export { O as OrSidebarPlacement } from '../OrSidebarCollapseButton-8474d9c3.js';
@@ -74,6 +74,10 @@ declare const _default: import("vue").ComponentOptions<import("vue").default, im
74
74
  type: StringConstructor;
75
75
  default: undefined;
76
76
  };
77
+ searchPlaceholder: {
78
+ type: StringConstructor;
79
+ default: undefined;
80
+ };
77
81
  hint: {
78
82
  type: StringConstructor;
79
83
  default: undefined;
@@ -139,6 +143,10 @@ declare const _default: import("vue").ComponentOptions<import("vue").default, im
139
143
  type: StringConstructor;
140
144
  default: undefined;
141
145
  };
146
+ searchPlaceholder: {
147
+ type: StringConstructor;
148
+ default: undefined;
149
+ };
142
150
  hint: {
143
151
  type: StringConstructor;
144
152
  default: undefined;
@@ -183,6 +191,7 @@ declare const _default: import("vue").ComponentOptions<import("vue").default, im
183
191
  multiple: boolean;
184
192
  size: SelectSize;
185
193
  placeholder: string;
194
+ searchPlaceholder: string;
186
195
  hint: string;
187
196
  error: string | boolean;
188
197
  required: boolean;
@@ -246,6 +255,7 @@ declare const _default: import("vue").ComponentOptions<import("vue").default, im
246
255
  multiple: boolean;
247
256
  size: SelectSize;
248
257
  placeholder: string;
258
+ searchPlaceholder: string;
249
259
  hint: string;
250
260
  error: string | boolean;
251
261
  required: boolean;
@@ -265,6 +275,7 @@ declare const _default: import("vue").ComponentOptions<import("vue").default, im
265
275
  multiple: boolean;
266
276
  size: SelectSize;
267
277
  placeholder: string;
278
+ searchPlaceholder: string;
268
279
  hint: string;
269
280
  error: string | boolean;
270
281
  required: boolean;
@@ -1,4 +1,4 @@
1
- export { _ as OrSelectV3 } from '../../OrSelect-804d3352.js';
1
+ export { _ as OrSelectV3 } from '../../OrSelect-fb4bcd02.js';
2
2
  export { I as SelectSize } from '../../OrInputBox.vue_rollup-plugin-vue_script-4fde9829.js';
3
3
  import 'vue-demi';
4
4
  import '../../dropdown-open-06d651cf.js';
@@ -78,7 +78,7 @@ export { _ as OrSearch } from './OrSearch-ac542dd6.js';
78
78
  export { _ as OrSearchV3 } from './OrSearch-598dee09.js';
79
79
  export { _ as OrSegmentedControlV3, S as SegmentedControlSize } from './OrSegmentedControl-d4e32f80.js';
80
80
  export { _ as OrSelect } from './OrSelect-c0d04cf6.js';
81
- export { _ as OrSelectV3 } from './OrSelect-804d3352.js';
81
+ export { _ as OrSelectV3 } from './OrSelect-fb4bcd02.js';
82
82
  export { _ as OrSidebar, O as OrSidebarSide } from './OrSidebar-c56a9221.js';
83
83
  export { _ as OrSidebarV3 } from './OrSidebar-0539d572.js';
84
84
  export { O as OrSidebarPlacement } from './OrSidebarCollapseButton-8474d9c3.js';
@@ -133,6 +133,10 @@ var script = defineComponent({
133
133
  type: String,
134
134
  default: undefined
135
135
  },
136
+ searchPlaceholder: {
137
+ type: String,
138
+ default: undefined
139
+ },
136
140
  hint: {
137
141
  type: String,
138
142
  default: undefined
@@ -444,7 +448,7 @@ function render(_ctx, _cache, $props, $setup, $data, $options) {
444
448
  "onUpdate:modelValue": _cache[2] || (_cache[2] = $event => _ctx.searchText = $event),
445
449
  class: normalizeClass([..._ctx.searchControlStyles, _ctx.isEmptyModelValue && 'md:!ml-none']),
446
450
  type: 'search',
447
- placeholder: _ctx.placeholder,
451
+ placeholder: _ctx.searchPlaceholder,
448
452
  size: _ctx.size,
449
453
  "disable-default-styles": true,
450
454
  onClick: _cache[3] || (_cache[3] = withModifiers(() => {}, ["stop"]))
@@ -474,7 +478,7 @@ function render(_ctx, _cache, $props, $setup, $data, $options) {
474
478
  "onUpdate:modelValue": _cache[5] || (_cache[5] = $event => _ctx.searchText = $event),
475
479
  class: normalizeClass(_ctx.searchControlStyles),
476
480
  type: 'search',
477
- placeholder: _ctx.placeholder
481
+ placeholder: _ctx.searchPlaceholder
478
482
  }, null, 8 /* PROPS */, ["modelValue", "class", "placeholder"])) : createCommentVNode("v-if", true), _ctx.resolvedSearchOptions.length > 0 ? (openBlock(), createElementBlock(Fragment, {
479
483
  key: 1
480
484
  }, [_ctx.groupByFunction ? (openBlock(true), createElementBlock(Fragment, {
@@ -75,7 +75,7 @@ export { s as OrSearch } from '../OrSearch-2800e9bf.js';
75
75
  export { s as OrSearchV3 } from '../OrSearch-998e4390.js';
76
76
  export { s as OrSegmentedControlV3, S as SegmentedControlSize } from '../OrSegmentedControl-c8eb217d.js';
77
77
  export { s as OrSelect } from '../OrSelect-9520d6e6.js';
78
- export { s as OrSelectV3 } from '../OrSelect-268edd66.js';
78
+ export { s as OrSelectV3 } from '../OrSelect-3907d94e.js';
79
79
  export { s as OrSidebar, O as OrSidebarSide } from '../OrSidebar-aaf73310.js';
80
80
  export { s as OrSidebarV3 } from '../OrSidebar-d8e70813.js';
81
81
  export { O as OrSidebarPlacement } from '../OrSidebarCollapseButton-7a9f76cf.js';
@@ -30,6 +30,10 @@ declare const _default: import("vue-demi").DefineComponent<{
30
30
  type: StringConstructor;
31
31
  default: undefined;
32
32
  };
33
+ searchPlaceholder: {
34
+ type: StringConstructor;
35
+ default: undefined;
36
+ };
33
37
  hint: {
34
38
  type: StringConstructor;
35
39
  default: undefined;
@@ -131,6 +135,10 @@ declare const _default: import("vue-demi").DefineComponent<{
131
135
  type: StringConstructor;
132
136
  default: undefined;
133
137
  };
138
+ searchPlaceholder: {
139
+ type: StringConstructor;
140
+ default: undefined;
141
+ };
134
142
  hint: {
135
143
  type: StringConstructor;
136
144
  default: undefined;
@@ -180,6 +188,7 @@ declare const _default: import("vue-demi").DefineComponent<{
180
188
  multiple: boolean;
181
189
  size: SelectSize;
182
190
  placeholder: string;
191
+ searchPlaceholder: string;
183
192
  hint: string;
184
193
  error: string | boolean;
185
194
  required: boolean;
@@ -1,4 +1,4 @@
1
- export { s as OrSelectV3 } from '../../OrSelect-268edd66.js';
1
+ export { s as OrSelectV3 } from '../../OrSelect-3907d94e.js';
2
2
  export { I as SelectSize } from '../../OrInputBox-912a6254.js';
3
3
  import 'vue-demi';
4
4
  import '../../dropdown-open-06d651cf.js';
@@ -75,7 +75,7 @@ export { s as OrSearch } from './OrSearch-2800e9bf.js';
75
75
  export { s as OrSearchV3 } from './OrSearch-998e4390.js';
76
76
  export { s as OrSegmentedControlV3, S as SegmentedControlSize } from './OrSegmentedControl-c8eb217d.js';
77
77
  export { s as OrSelect } from './OrSelect-9520d6e6.js';
78
- export { s as OrSelectV3 } from './OrSelect-268edd66.js';
78
+ export { s as OrSelectV3 } from './OrSelect-3907d94e.js';
79
79
  export { s as OrSidebar, O as OrSidebarSide } from './OrSidebar-aaf73310.js';
80
80
  export { s as OrSidebarV3 } from './OrSidebar-d8e70813.js';
81
81
  export { O as OrSidebarPlacement } from './OrSidebarCollapseButton-7a9f76cf.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onereach/ui-components",
3
- "version": "5.0.2-beta.3152.0",
3
+ "version": "5.0.2-beta.3153.0",
4
4
  "npmUnpacked": "4.15.2",
5
5
  "description": "Vue components library for v2/3",
6
6
  "sideEffects": false,
@@ -99,7 +99,7 @@
99
99
  v-model="searchText"
100
100
  :class="[...searchControlStyles, isEmptyModelValue && 'md:!ml-none']"
101
101
  :type="'search'"
102
- :placeholder="placeholder"
102
+ :placeholder="searchPlaceholder"
103
103
  :size="size"
104
104
  :disable-default-styles="true"
105
105
  @click.stop
@@ -142,7 +142,7 @@
142
142
  v-model="searchText"
143
143
  :class="searchControlStyles"
144
144
  :type="'search'"
145
- :placeholder="placeholder"
145
+ :placeholder="searchPlaceholder"
146
146
  />
147
147
  </template>
148
148
 
@@ -351,6 +351,11 @@ export default defineComponent({
351
351
  default: undefined,
352
352
  },
353
353
 
354
+ searchPlaceholder: {
355
+ type: String,
356
+ default: undefined,
357
+ },
358
+
354
359
  hint: {
355
360
  type: String,
356
361
  default: undefined,