lkt-vue-kernel 1.0.19 → 1.0.20
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.ts +5 -5
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -280,11 +280,11 @@ interface OptionConfig {
|
|
|
280
280
|
declare class Option extends LktItem implements OptionConfig {
|
|
281
281
|
value: ValidOptionValue;
|
|
282
282
|
label: string;
|
|
283
|
-
data
|
|
284
|
-
disabled
|
|
285
|
-
group
|
|
286
|
-
icon
|
|
287
|
-
modal
|
|
283
|
+
data?: LktObject;
|
|
284
|
+
disabled?: boolean;
|
|
285
|
+
group?: string;
|
|
286
|
+
icon?: string;
|
|
287
|
+
modal?: ValidModalName;
|
|
288
288
|
constructor(data?: Partial<OptionConfig>);
|
|
289
289
|
}
|
|
290
290
|
|