dolphin-components 2.2.1 → 2.2.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/dist/dolphin-components.cjs.js +1621 -1621
- package/dist/dolphin-components.css +1 -1
- package/dist/dolphin-components.es.js +399 -390
- package/dist/dolphin-components.umd.js +74 -74
- package/dist/index.d.ts +8 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -161,14 +161,22 @@ export declare interface DateRangeProps {
|
|
|
161
161
|
|
|
162
162
|
export declare const DateSelector: DefineComponent<DateSelectorProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
163
163
|
"update:modelValue": (...args: any[]) => void;
|
|
164
|
+
"update:isBS": (...args: any[]) => void;
|
|
164
165
|
}, string, PublicProps, Readonly<DateSelectorProps> & Readonly<{
|
|
165
166
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
167
|
+
"onUpdate:isBS"?: ((...args: any[]) => any) | undefined;
|
|
166
168
|
}>, {
|
|
167
169
|
modelValue: string;
|
|
170
|
+
inputWidth: number;
|
|
171
|
+
isBS: boolean;
|
|
172
|
+
showToggle: boolean;
|
|
168
173
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
169
174
|
|
|
170
175
|
export declare interface DateSelectorProps {
|
|
171
176
|
modelValue: string;
|
|
177
|
+
inputWidth: number;
|
|
178
|
+
isBS: boolean;
|
|
179
|
+
showToggle: boolean;
|
|
172
180
|
}
|
|
173
181
|
|
|
174
182
|
export declare const FocusNext: {
|