@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@weni/unnnic-system",
3
- "version": "3.24.1",
3
+ "version": "3.24.2",
4
4
  "type": "commonjs",
5
5
  "files": [
6
6
  "dist",
@@ -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<{