@linker-design-plus/tiny-peony 1.3.7 → 1.3.9
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 +23 -23
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1026 -1014
- package/dist/index.mjs.map +1 -1
- 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/contextMenu.vue.d.ts +6 -1
- package/dist/tiny-peony.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -66,6 +66,10 @@ declare const TinyPeony: {
|
|
|
66
66
|
type: (StringConstructor | NumberConstructor)[];
|
|
67
67
|
default: string;
|
|
68
68
|
};
|
|
69
|
+
pastable: {
|
|
70
|
+
type: BooleanConstructor;
|
|
71
|
+
default: boolean;
|
|
72
|
+
};
|
|
69
73
|
}>> & Readonly<{
|
|
70
74
|
onChange?: ((contentLength: number) => any) | undefined;
|
|
71
75
|
"onUpdate:textCount"?: ((value: number) => any) | undefined;
|
|
@@ -129,6 +133,7 @@ declare const TinyPeony: {
|
|
|
129
133
|
maxLength: number;
|
|
130
134
|
showWordLimit: boolean;
|
|
131
135
|
simple: boolean;
|
|
136
|
+
pastable: boolean;
|
|
132
137
|
preTime: string;
|
|
133
138
|
realTime: string;
|
|
134
139
|
textCount: number;
|
|
@@ -208,6 +213,10 @@ declare const TinyPeony: {
|
|
|
208
213
|
type: (StringConstructor | NumberConstructor)[];
|
|
209
214
|
default: string;
|
|
210
215
|
};
|
|
216
|
+
pastable: {
|
|
217
|
+
type: BooleanConstructor;
|
|
218
|
+
default: boolean;
|
|
219
|
+
};
|
|
211
220
|
}>> & Readonly<{
|
|
212
221
|
onChange?: ((contentLength: number) => any) | undefined;
|
|
213
222
|
"onUpdate:textCount"?: ((value: number) => any) | undefined;
|
|
@@ -265,6 +274,7 @@ declare const TinyPeony: {
|
|
|
265
274
|
maxLength: number;
|
|
266
275
|
showWordLimit: boolean;
|
|
267
276
|
simple: boolean;
|
|
277
|
+
pastable: boolean;
|
|
268
278
|
preTime: string;
|
|
269
279
|
realTime: string;
|
|
270
280
|
textCount: number;
|
|
@@ -341,6 +351,10 @@ declare const TinyPeony: {
|
|
|
341
351
|
type: (StringConstructor | NumberConstructor)[];
|
|
342
352
|
default: string;
|
|
343
353
|
};
|
|
354
|
+
pastable: {
|
|
355
|
+
type: BooleanConstructor;
|
|
356
|
+
default: boolean;
|
|
357
|
+
};
|
|
344
358
|
}>> & Readonly<{
|
|
345
359
|
onChange?: ((contentLength: number) => any) | undefined;
|
|
346
360
|
"onUpdate:textCount"?: ((value: number) => any) | undefined;
|
|
@@ -404,6 +418,7 @@ declare const TinyPeony: {
|
|
|
404
418
|
maxLength: number;
|
|
405
419
|
showWordLimit: boolean;
|
|
406
420
|
simple: boolean;
|
|
421
|
+
pastable: boolean;
|
|
407
422
|
preTime: string;
|
|
408
423
|
realTime: string;
|
|
409
424
|
textCount: number;
|