@linker-design-plus/tiny-peony 1.3.4 → 1.3.5
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 +15 -0
- package/dist/index.js +25 -25
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1802 -1765
- package/dist/index.mjs.map +1 -1
- package/dist/intersection/components/editor/context.d.ts +4 -0
- package/dist/intersection/components/editor/editor.d.ts +9 -0
- package/dist/intersection/components/editor/index.d.ts +15 -0
- package/dist/intersection/components/modals/Refine/context.d.ts +1 -0
- package/dist/tiny-peony.css +1 -1
- package/dist/utils/dom.d.ts +6 -4
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -62,6 +62,10 @@ declare const TinyPeony: {
|
|
|
62
62
|
refineContext: {
|
|
63
63
|
type: import("vue").PropType<import("./intersection/components/editor/context").RefineContext>;
|
|
64
64
|
};
|
|
65
|
+
editorHeight: {
|
|
66
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
67
|
+
default: string;
|
|
68
|
+
};
|
|
65
69
|
}>> & Readonly<{
|
|
66
70
|
onChange?: ((contentLength: number) => any) | undefined;
|
|
67
71
|
"onUpdate:textCount"?: ((value: number) => any) | undefined;
|
|
@@ -132,6 +136,7 @@ declare const TinyPeony: {
|
|
|
132
136
|
listenMode: import("./typings/shared").ListenModeEnum;
|
|
133
137
|
contentStyle: import("vue").CSSProperties;
|
|
134
138
|
refinable: boolean;
|
|
139
|
+
editorHeight: string | number;
|
|
135
140
|
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
136
141
|
P: {};
|
|
137
142
|
B: {};
|
|
@@ -199,6 +204,10 @@ declare const TinyPeony: {
|
|
|
199
204
|
refineContext: {
|
|
200
205
|
type: import("vue").PropType<import("./intersection/components/editor/context").RefineContext>;
|
|
201
206
|
};
|
|
207
|
+
editorHeight: {
|
|
208
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
209
|
+
default: string;
|
|
210
|
+
};
|
|
202
211
|
}>> & Readonly<{
|
|
203
212
|
onChange?: ((contentLength: number) => any) | undefined;
|
|
204
213
|
"onUpdate:textCount"?: ((value: number) => any) | undefined;
|
|
@@ -263,6 +272,7 @@ declare const TinyPeony: {
|
|
|
263
272
|
listenMode: import("./typings/shared").ListenModeEnum;
|
|
264
273
|
contentStyle: import("vue").CSSProperties;
|
|
265
274
|
refinable: boolean;
|
|
275
|
+
editorHeight: string | number;
|
|
266
276
|
}>;
|
|
267
277
|
__isFragment?: never;
|
|
268
278
|
__isTeleport?: never;
|
|
@@ -327,6 +337,10 @@ declare const TinyPeony: {
|
|
|
327
337
|
refineContext: {
|
|
328
338
|
type: import("vue").PropType<import("./intersection/components/editor/context").RefineContext>;
|
|
329
339
|
};
|
|
340
|
+
editorHeight: {
|
|
341
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
342
|
+
default: string;
|
|
343
|
+
};
|
|
330
344
|
}>> & Readonly<{
|
|
331
345
|
onChange?: ((contentLength: number) => any) | undefined;
|
|
332
346
|
"onUpdate:textCount"?: ((value: number) => any) | undefined;
|
|
@@ -397,6 +411,7 @@ declare const TinyPeony: {
|
|
|
397
411
|
listenMode: import("./typings/shared").ListenModeEnum;
|
|
398
412
|
contentStyle: import("vue").CSSProperties;
|
|
399
413
|
refinable: boolean;
|
|
414
|
+
editorHeight: string | number;
|
|
400
415
|
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
|
401
416
|
install: (app: App, options?: Record<string, any>) => void;
|
|
402
417
|
} & {
|