pimelon-ui 0.1.62 → 0.1.63

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pimelon-ui",
3
- "version": "0.1.62",
3
+ "version": "0.1.63",
4
4
  "description": "A set of components and utilities for rapid UI development",
5
5
  "main": "./src/index.js",
6
6
  "scripts": {
@@ -107,7 +107,14 @@ import FeatherIcon from './FeatherIcon.vue'
107
107
  import TextInput from './TextInput.vue'
108
108
  export default {
109
109
  name: 'DateRangePicker',
110
- props: ['modelValue', 'placeholder', 'formatter', 'readonly', 'inputClass'],
110
+ props: [
111
+ 'value',
112
+ 'modelValue',
113
+ 'placeholder',
114
+ 'formatter',
115
+ 'readonly',
116
+ 'inputClass',
117
+ ],
111
118
  emits: ['update:modelValue', 'change'],
112
119
  components: {
113
120
  Popover,