@weni/unnnic-system 3.24.1 → 3.24.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/CHANGELOG.md +6 -0
- package/dist/{es-7729d97e.mjs → es-ed911940.mjs} +1 -1
- package/dist/{index-37383c86.mjs → index-7d671d89.mjs} +7 -5
- package/dist/{pt-br-b1af2ba0.mjs → pt-br-eaae2beb.mjs} +1 -1
- package/dist/style.css +1 -1
- package/dist/unnnic.mjs +1 -1
- package/dist/unnnic.umd.js +1 -1
- package/package.json +1 -1
- package/src/components/InputDatePicker/InputDatePicker.vue +4 -0
package/package.json
CHANGED
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
:iconRight="iconPosition === 'right' ? 'calendar_month' : undefined"
|
|
11
11
|
readonly
|
|
12
12
|
:modelValue="overwrittenValue || filterText || ''"
|
|
13
|
+
:disabled="disabled"
|
|
13
14
|
@click="openPopover"
|
|
14
15
|
@focus="openPopover"
|
|
15
16
|
/>
|
|
@@ -97,6 +98,8 @@ interface InputDatePickerProps {
|
|
|
97
98
|
hideOptions?: boolean;
|
|
98
99
|
|
|
99
100
|
periodBaseDate?: string;
|
|
101
|
+
|
|
102
|
+
disabled?: boolean;
|
|
100
103
|
}
|
|
101
104
|
|
|
102
105
|
const props = withDefaults(defineProps<InputDatePickerProps>(), {
|
|
@@ -118,6 +121,7 @@ const props = withDefaults(defineProps<InputDatePickerProps>(), {
|
|
|
118
121
|
disableClear: false,
|
|
119
122
|
hideOptions: false,
|
|
120
123
|
periodBaseDate: '',
|
|
124
|
+
disabled: false,
|
|
121
125
|
});
|
|
122
126
|
|
|
123
127
|
const emit = defineEmits<{
|