@xn-lib/component 0.1.16 → 0.1.19
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.
|
@@ -287,11 +287,10 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
|
|
|
287
287
|
}>, {
|
|
288
288
|
readonly disabled: boolean;
|
|
289
289
|
readonly filter: import("../types/cascader").Filter;
|
|
290
|
+
readonly showCheckbox: boolean;
|
|
290
291
|
readonly modelValue: CascaderValue | null;
|
|
291
292
|
readonly size: "small" | "default" | "large";
|
|
292
|
-
readonly showCheckbox: boolean;
|
|
293
293
|
readonly onLoad: import("../types/cascader").OnLoad;
|
|
294
|
-
readonly placeholder: string;
|
|
295
294
|
readonly getColumnStyle: (detail: {
|
|
296
295
|
level: number;
|
|
297
296
|
}) => string | Record<string, any>;
|
|
@@ -301,6 +300,7 @@ declare const __VLS_base: import("vue").DefineComponent<import("vue").ExtractPro
|
|
|
301
300
|
readonly labelField: string;
|
|
302
301
|
readonly separator: string;
|
|
303
302
|
readonly options: CascaderOption[];
|
|
303
|
+
readonly placeholder: string;
|
|
304
304
|
readonly clearable: boolean;
|
|
305
305
|
readonly filterable: boolean;
|
|
306
306
|
readonly expandTrigger: import("../types/cascader").ExpandTrigger;
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import type { CaretPosition } from '../types';
|
|
2
|
+
declare function setLineClass(lineIndex: number, className: string | string[] | undefined): void;
|
|
3
|
+
declare function setLineStyle(lineIndex: number, style: Partial<CSSStyleDeclaration> | undefined): void;
|
|
2
4
|
declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
3
5
|
readonly modelValue: {
|
|
4
6
|
readonly type: import("vue").PropType<import("../types").EditableTextareaModelValue>;
|
|
@@ -81,6 +83,8 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
81
83
|
blur: () => void | undefined;
|
|
82
84
|
getCaretPosition: () => CaretPosition | null;
|
|
83
85
|
setCaretPosition: (position: CaretPosition) => void;
|
|
86
|
+
setLineClass: typeof setLineClass;
|
|
87
|
+
setLineStyle: typeof setLineStyle;
|
|
84
88
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
85
89
|
input: (value: string) => void;
|
|
86
90
|
"update:modelValue": (value: import("../types").EditableTextareaModelValue) => void;
|
|
@@ -173,9 +177,9 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
173
177
|
}>, {
|
|
174
178
|
readonly disabled: boolean;
|
|
175
179
|
readonly modelValue: import("../types").EditableTextareaModelValue;
|
|
176
|
-
readonly placeholder: string;
|
|
177
180
|
readonly maxHeight: number;
|
|
178
181
|
readonly onEnter: import("../types").KeyboardEventHandler;
|
|
182
|
+
readonly placeholder: string;
|
|
179
183
|
readonly maxlength: number;
|
|
180
184
|
readonly readonly: boolean;
|
|
181
185
|
readonly autoHeight: boolean;
|