@yr3/ui 1.1.8 → 1.1.9
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/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -2181,8 +2181,8 @@ type MonthSelectorProps = {
|
|
|
2181
2181
|
format?: DTXFormat;
|
|
2182
2182
|
lastIndex?: number;
|
|
2183
2183
|
nextIndex?: number;
|
|
2184
|
-
onNext?: (value: string) => void;
|
|
2185
|
-
onLast?: (value: string) => void;
|
|
2184
|
+
onNext?: (value: string[]) => void;
|
|
2185
|
+
onLast?: (value: string[]) => void;
|
|
2186
2186
|
onChange: (value: string) => void;
|
|
2187
2187
|
propsComponent?: {
|
|
2188
2188
|
control?: Omit<React$1.ComponentProps<typeof Input>, 'value' | 'onChange'>;
|
package/dist/index.d.ts
CHANGED
|
@@ -2181,8 +2181,8 @@ type MonthSelectorProps = {
|
|
|
2181
2181
|
format?: DTXFormat;
|
|
2182
2182
|
lastIndex?: number;
|
|
2183
2183
|
nextIndex?: number;
|
|
2184
|
-
onNext?: (value: string) => void;
|
|
2185
|
-
onLast?: (value: string) => void;
|
|
2184
|
+
onNext?: (value: string[]) => void;
|
|
2185
|
+
onLast?: (value: string[]) => void;
|
|
2186
2186
|
onChange: (value: string) => void;
|
|
2187
2187
|
propsComponent?: {
|
|
2188
2188
|
control?: Omit<React$1.ComponentProps<typeof Input>, 'value' | 'onChange'>;
|