dolphin-components 2.2.2 → 2.2.3
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 +87 -87
- package/dist/dolphin-components.css +1 -1
- package/dist/dolphin-components.es.js +1811 -1799
- package/dist/dolphin-components.umd.js +25 -25
- package/dist/index.d.ts +5 -3
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -166,6 +166,7 @@ export declare const DateSelector: DefineComponent<DateSelectorProps, {}, {}, {}
|
|
|
166
166
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
167
167
|
"onUpdate:isBS"?: ((...args: any[]) => any) | undefined;
|
|
168
168
|
}>, {
|
|
169
|
+
disabled: boolean;
|
|
169
170
|
modelValue: string;
|
|
170
171
|
inputWidth: number;
|
|
171
172
|
isBS: boolean;
|
|
@@ -174,9 +175,10 @@ showToggle: boolean;
|
|
|
174
175
|
|
|
175
176
|
export declare interface DateSelectorProps {
|
|
176
177
|
modelValue: string;
|
|
177
|
-
inputWidth
|
|
178
|
-
isBS
|
|
179
|
-
showToggle
|
|
178
|
+
inputWidth?: number;
|
|
179
|
+
isBS?: boolean;
|
|
180
|
+
showToggle?: boolean;
|
|
181
|
+
disabled?: boolean;
|
|
180
182
|
}
|
|
181
183
|
|
|
182
184
|
export declare const FocusNext: {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dolphin-components",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "2.2.
|
|
4
|
+
"version": "2.2.3",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
7
7
|
"dist"
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"vue-router": "^4.5.0"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@types/node": "^22.15.
|
|
49
|
+
"@types/node": "^22.15.21",
|
|
50
50
|
"@vitejs/plugin-vue": "^5.2.4",
|
|
51
51
|
"@vue/tsconfig": "^0.7.0",
|
|
52
52
|
"path": "^0.12.7",
|