@fastkit/vui-wysiwyg 6.0.34 → 7.0.0
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/vui-wysiwyg.d.ts +64 -63
- package/package.json +17 -110
package/dist/vui-wysiwyg.d.ts
CHANGED
|
@@ -12,8 +12,9 @@ import { HistoryOptions } from '@tiptap/extension-history';
|
|
|
12
12
|
import { LinkOptions } from '@tiptap/extension-link';
|
|
13
13
|
import { OrderedListOptions } from '@tiptap/extension-ordered-list';
|
|
14
14
|
import { TextAlignOptions } from '@tiptap/extension-text-align';
|
|
15
|
-
import * as
|
|
16
|
-
import * as
|
|
15
|
+
import * as vue_jsx_runtime from 'vue/jsx-runtime';
|
|
16
|
+
import * as _fastkit_vue_utils from '@fastkit/vue-utils';
|
|
17
|
+
import * as _fastkit_vue_form_control from '@fastkit/vue-form-control';
|
|
17
18
|
|
|
18
19
|
declare const EDITOR_EVENTS: readonly ["beforeCreate", "create", "update", "selectionUpdate", "transaction", "focus", "blur", "destroy"];
|
|
19
20
|
type PrefixedEventName<S extends string> = `on${Capitalize<S>}`;
|
|
@@ -271,11 +272,11 @@ declare const VWysiwygEditor: vue.DefineComponent<{
|
|
|
271
272
|
disabledMinHeight: BooleanConstructor;
|
|
272
273
|
disabledMaxHeight: BooleanConstructor;
|
|
273
274
|
'v-slots': PropType<{
|
|
274
|
-
[x: `error:${string}`]: (error:
|
|
275
|
-
label?: ((wrapper:
|
|
276
|
-
hint?: ((wrapper:
|
|
277
|
-
infoAppends?: ((wrapper:
|
|
278
|
-
error?: ((error:
|
|
275
|
+
[x: `error:${string}`]: (error: _fastkit_vue_form_control.FormNodeError) => VNodeChild;
|
|
276
|
+
label?: ((wrapper: _fastkit_vue_form_control.FormNodeWrapper) => VNodeChild) | undefined;
|
|
277
|
+
hint?: ((wrapper: _fastkit_vue_form_control.FormNodeWrapper) => VNodeChild) | undefined;
|
|
278
|
+
infoAppends?: ((wrapper: _fastkit_vue_form_control.FormNodeWrapper) => VNodeChild) | undefined;
|
|
279
|
+
error?: ((error: _fastkit_vue_form_control.FormNodeError) => VNodeChild) | undefined;
|
|
279
280
|
default?: (() => VNodeChild) | undefined;
|
|
280
281
|
startAdornment?: (() => VNodeChild) | undefined;
|
|
281
282
|
endAdornment?: (() => VNodeChild) | undefined;
|
|
@@ -289,30 +290,30 @@ declare const VWysiwygEditor: vue.DefineComponent<{
|
|
|
289
290
|
type: PropType<"flat" | "outlined" | "filled">;
|
|
290
291
|
validator: (value: any) => boolean;
|
|
291
292
|
};
|
|
292
|
-
startAdornment: PropType<
|
|
293
|
-
endAdornment: PropType<
|
|
293
|
+
startAdornment: PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
294
|
+
endAdornment: PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
294
295
|
tabindex: {
|
|
295
|
-
type: (
|
|
296
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
296
297
|
default: number;
|
|
297
298
|
};
|
|
298
|
-
nodeControl: PropType<
|
|
299
|
-
label: PropType<
|
|
300
|
-
hint: PropType<
|
|
301
|
-
hinttip: PropType<
|
|
302
|
-
hinttipDelay: PropType<
|
|
303
|
-
infoAppends: PropType<
|
|
299
|
+
nodeControl: PropType<_fastkit_vue_form_control.FormNodeControl<any, any, BooleanConstructor>>;
|
|
300
|
+
label: PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
301
|
+
hint: PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
302
|
+
hinttip: PropType<_fastkit_vue_form_control.FormNodeWrapperHinttip>;
|
|
303
|
+
hinttipDelay: PropType<_fastkit_vue_form_control.FormNodeWrapperHinttipDelay>;
|
|
304
|
+
infoAppends: PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
304
305
|
hiddenInfo: BooleanConstructor;
|
|
305
|
-
requiredChip: PropType<
|
|
306
|
+
requiredChip: PropType<_fastkit_vue_form_control.RequiredChipSource>;
|
|
306
307
|
collectErrorMessages: {
|
|
307
308
|
type: BooleanConstructor;
|
|
308
309
|
default: boolean;
|
|
309
310
|
};
|
|
310
|
-
minlength: (
|
|
311
|
-
maxlength: (
|
|
312
|
-
pattern: (
|
|
311
|
+
minlength: (NumberConstructor | StringConstructor)[];
|
|
312
|
+
maxlength: (NumberConstructor | StringConstructor)[];
|
|
313
|
+
pattern: (StringConstructor | RegExpConstructor)[];
|
|
313
314
|
placeholder: StringConstructor;
|
|
314
|
-
autocapitalize: PropType<
|
|
315
|
-
finalizers: PropType<
|
|
315
|
+
autocapitalize: PropType<_fastkit_vue_form_control.FormAutoCapitalize>;
|
|
316
|
+
finalizers: PropType<_fastkit_vue_form_control.TextableFinalizerSpec>;
|
|
316
317
|
counter: PropType<string | number | boolean>;
|
|
317
318
|
counterValue: PropType<(value: string) => number>;
|
|
318
319
|
limit: BooleanConstructor;
|
|
@@ -328,14 +329,14 @@ declare const VWysiwygEditor: vue.DefineComponent<{
|
|
|
328
329
|
required: BooleanConstructor | PropType<boolean>;
|
|
329
330
|
clearable: BooleanConstructor;
|
|
330
331
|
validateTiming: {
|
|
331
|
-
type: PropType<
|
|
332
|
-
default:
|
|
332
|
+
type: PropType<_fastkit_vue_form_control.ValidateTiming>;
|
|
333
|
+
default: _fastkit_vue_form_control.ValidateTiming;
|
|
333
334
|
};
|
|
334
335
|
rules: {
|
|
335
|
-
type: PropType<
|
|
336
|
+
type: PropType<_fastkit_vue_form_control.RecursiveVerifiableRuleOrFn>;
|
|
336
337
|
default: () => never[];
|
|
337
338
|
};
|
|
338
|
-
validationDeps: PropType<(nodeControl:
|
|
339
|
+
validationDeps: PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl<any, any, BooleanConstructor>) => any>;
|
|
339
340
|
error: BooleanConstructor;
|
|
340
341
|
errorMessages: PropType<string | string[]>;
|
|
341
342
|
showOwnErrors: {
|
|
@@ -343,13 +344,13 @@ declare const VWysiwygEditor: vue.DefineComponent<{
|
|
|
343
344
|
default: undefined;
|
|
344
345
|
};
|
|
345
346
|
detach: BooleanConstructor;
|
|
346
|
-
}, () => JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
347
|
+
}, () => vue_jsx_runtime.JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
|
347
348
|
'update:modelValue': (value: string) => boolean;
|
|
348
|
-
'update:errors': (errors:
|
|
349
|
+
'update:errors': (errors: _fastkit_vue_form_control.FormNodeError[]) => boolean;
|
|
349
350
|
change: (value: string) => boolean;
|
|
350
351
|
focus: (ev: FocusEvent) => boolean;
|
|
351
352
|
blur: (ev: FocusEvent) => boolean;
|
|
352
|
-
}, string, vue.
|
|
353
|
+
}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
|
|
353
354
|
extensions: {
|
|
354
355
|
type: PropType<RawWysiwygExtension[]>;
|
|
355
356
|
default: () => never[];
|
|
@@ -362,11 +363,11 @@ declare const VWysiwygEditor: vue.DefineComponent<{
|
|
|
362
363
|
disabledMinHeight: BooleanConstructor;
|
|
363
364
|
disabledMaxHeight: BooleanConstructor;
|
|
364
365
|
'v-slots': PropType<{
|
|
365
|
-
[x: `error:${string}`]: (error:
|
|
366
|
-
label?: ((wrapper:
|
|
367
|
-
hint?: ((wrapper:
|
|
368
|
-
infoAppends?: ((wrapper:
|
|
369
|
-
error?: ((error:
|
|
366
|
+
[x: `error:${string}`]: (error: _fastkit_vue_form_control.FormNodeError) => VNodeChild;
|
|
367
|
+
label?: ((wrapper: _fastkit_vue_form_control.FormNodeWrapper) => VNodeChild) | undefined;
|
|
368
|
+
hint?: ((wrapper: _fastkit_vue_form_control.FormNodeWrapper) => VNodeChild) | undefined;
|
|
369
|
+
infoAppends?: ((wrapper: _fastkit_vue_form_control.FormNodeWrapper) => VNodeChild) | undefined;
|
|
370
|
+
error?: ((error: _fastkit_vue_form_control.FormNodeError) => VNodeChild) | undefined;
|
|
370
371
|
default?: (() => VNodeChild) | undefined;
|
|
371
372
|
startAdornment?: (() => VNodeChild) | undefined;
|
|
372
373
|
endAdornment?: (() => VNodeChild) | undefined;
|
|
@@ -380,30 +381,30 @@ declare const VWysiwygEditor: vue.DefineComponent<{
|
|
|
380
381
|
type: PropType<"flat" | "outlined" | "filled">;
|
|
381
382
|
validator: (value: any) => boolean;
|
|
382
383
|
};
|
|
383
|
-
startAdornment: PropType<
|
|
384
|
-
endAdornment: PropType<
|
|
384
|
+
startAdornment: PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
385
|
+
endAdornment: PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
385
386
|
tabindex: {
|
|
386
|
-
type: (
|
|
387
|
+
type: (NumberConstructor | StringConstructor)[];
|
|
387
388
|
default: number;
|
|
388
389
|
};
|
|
389
|
-
nodeControl: PropType<
|
|
390
|
-
label: PropType<
|
|
391
|
-
hint: PropType<
|
|
392
|
-
hinttip: PropType<
|
|
393
|
-
hinttipDelay: PropType<
|
|
394
|
-
infoAppends: PropType<
|
|
390
|
+
nodeControl: PropType<_fastkit_vue_form_control.FormNodeControl<any, any, BooleanConstructor>>;
|
|
391
|
+
label: PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
392
|
+
hint: PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
393
|
+
hinttip: PropType<_fastkit_vue_form_control.FormNodeWrapperHinttip>;
|
|
394
|
+
hinttipDelay: PropType<_fastkit_vue_form_control.FormNodeWrapperHinttipDelay>;
|
|
395
|
+
infoAppends: PropType<_fastkit_vue_utils.VNodeChildOrSlot>;
|
|
395
396
|
hiddenInfo: BooleanConstructor;
|
|
396
|
-
requiredChip: PropType<
|
|
397
|
+
requiredChip: PropType<_fastkit_vue_form_control.RequiredChipSource>;
|
|
397
398
|
collectErrorMessages: {
|
|
398
399
|
type: BooleanConstructor;
|
|
399
400
|
default: boolean;
|
|
400
401
|
};
|
|
401
|
-
minlength: (
|
|
402
|
-
maxlength: (
|
|
403
|
-
pattern: (
|
|
402
|
+
minlength: (NumberConstructor | StringConstructor)[];
|
|
403
|
+
maxlength: (NumberConstructor | StringConstructor)[];
|
|
404
|
+
pattern: (StringConstructor | RegExpConstructor)[];
|
|
404
405
|
placeholder: StringConstructor;
|
|
405
|
-
autocapitalize: PropType<
|
|
406
|
-
finalizers: PropType<
|
|
406
|
+
autocapitalize: PropType<_fastkit_vue_form_control.FormAutoCapitalize>;
|
|
407
|
+
finalizers: PropType<_fastkit_vue_form_control.TextableFinalizerSpec>;
|
|
407
408
|
counter: PropType<string | number | boolean>;
|
|
408
409
|
counterValue: PropType<(value: string) => number>;
|
|
409
410
|
limit: BooleanConstructor;
|
|
@@ -419,14 +420,14 @@ declare const VWysiwygEditor: vue.DefineComponent<{
|
|
|
419
420
|
required: BooleanConstructor | PropType<boolean>;
|
|
420
421
|
clearable: BooleanConstructor;
|
|
421
422
|
validateTiming: {
|
|
422
|
-
type: PropType<
|
|
423
|
-
default:
|
|
423
|
+
type: PropType<_fastkit_vue_form_control.ValidateTiming>;
|
|
424
|
+
default: _fastkit_vue_form_control.ValidateTiming;
|
|
424
425
|
};
|
|
425
426
|
rules: {
|
|
426
|
-
type: PropType<
|
|
427
|
+
type: PropType<_fastkit_vue_form_control.RecursiveVerifiableRuleOrFn>;
|
|
427
428
|
default: () => never[];
|
|
428
429
|
};
|
|
429
|
-
validationDeps: PropType<(nodeControl:
|
|
430
|
+
validationDeps: PropType<(nodeControl: _fastkit_vue_form_control.FormNodeControl<any, any, BooleanConstructor>) => any>;
|
|
430
431
|
error: BooleanConstructor;
|
|
431
432
|
errorMessages: PropType<string | string[]>;
|
|
432
433
|
showOwnErrors: {
|
|
@@ -439,7 +440,7 @@ declare const VWysiwygEditor: vue.DefineComponent<{
|
|
|
439
440
|
onBlur?: ((ev: FocusEvent) => any) | undefined;
|
|
440
441
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
441
442
|
onChange?: ((value: string) => any) | undefined;
|
|
442
|
-
"onUpdate:errors"?: ((errors:
|
|
443
|
+
"onUpdate:errors"?: ((errors: _fastkit_vue_form_control.FormNodeError[]) => any) | undefined;
|
|
443
444
|
}, {
|
|
444
445
|
extensions: RawWysiwygExtension[];
|
|
445
446
|
autofocus: boolean;
|
|
@@ -454,28 +455,28 @@ declare const VWysiwygEditor: vue.DefineComponent<{
|
|
|
454
455
|
viewonly: boolean;
|
|
455
456
|
spellcheck: boolean;
|
|
456
457
|
clearable: boolean;
|
|
457
|
-
validateTiming:
|
|
458
|
-
rules:
|
|
458
|
+
validateTiming: _fastkit_vue_form_control.ValidateTiming;
|
|
459
|
+
rules: _fastkit_vue_form_control.RecursiveVerifiableRuleOrFn;
|
|
459
460
|
showOwnErrors: boolean;
|
|
460
461
|
detach: boolean;
|
|
461
462
|
tools: RawWysiwygEditorTool[];
|
|
462
463
|
floatingToolbar: boolean;
|
|
463
464
|
disabledMinHeight: boolean;
|
|
464
465
|
disabledMaxHeight: boolean;
|
|
465
|
-
},
|
|
466
|
-
[x: `error:${string}`]: (error:
|
|
466
|
+
}, _fastkit_vue_utils.DefinedSlots<{
|
|
467
|
+
[x: `error:${string}`]: (error: _fastkit_vue_form_control.FormNodeError) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
467
468
|
[key: string]: any;
|
|
468
469
|
}>[];
|
|
469
|
-
label?: ((wrapper:
|
|
470
|
+
label?: ((wrapper: _fastkit_vue_form_control.FormNodeWrapper) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
470
471
|
[key: string]: any;
|
|
471
472
|
}>[]) | undefined;
|
|
472
|
-
hint?: ((wrapper:
|
|
473
|
+
hint?: ((wrapper: _fastkit_vue_form_control.FormNodeWrapper) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
473
474
|
[key: string]: any;
|
|
474
475
|
}>[]) | undefined;
|
|
475
|
-
infoAppends?: ((wrapper:
|
|
476
|
+
infoAppends?: ((wrapper: _fastkit_vue_form_control.FormNodeWrapper) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
476
477
|
[key: string]: any;
|
|
477
478
|
}>[]) | undefined;
|
|
478
|
-
error?: ((error:
|
|
479
|
+
error?: ((error: _fastkit_vue_form_control.FormNodeError) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
479
480
|
[key: string]: any;
|
|
480
481
|
}>[]) | undefined;
|
|
481
482
|
} & {
|
|
@@ -490,4 +491,4 @@ declare const VWysiwygEditor: vue.DefineComponent<{
|
|
|
490
491
|
}>[]) | undefined;
|
|
491
492
|
}>>;
|
|
492
493
|
|
|
493
|
-
export { CreateWysiwygColorToolOptions, CreatedWysiwygExtension, RawWysiwygEditorTool, RawWysiwygExtension, ResolvedWysiwygEditorSettings, VUI_WYSIWYG_EDITOR_SYMBOL, VWysiwygEditor, VWysiwygEditorAPI, WYSIWYG_TEXT_ALIGN_VALUES, WysiwygBulletListTool, WysiwygColorExtension, WysiwygColorItem, WysiwygColorOptions, WysiwygCustomTagExtension, WysiwygCustomTagSettings, WysiwygCustomTagToolSettings, WysiwygEditorContext, WysiwygEditorEvent, WysiwygEditorEventsBucket, WysiwygEditorEventsOptions, WysiwygEditorInitializeContext, WysiwygEditorPrefixedEvent, WysiwygEditorTool, WysiwygEditorToolFactory, WysiwygEditorToolIcon, WysiwygExtensionFactory, WysiwygExtensionSource, WysiwygFormatBoldTool, WysiwygFormatItalicTool, WysiwygFormatUnderlineTool, WysiwygHistoryTool, WysiwygLinkTool, WysiwygLinter, WysiwygLinterBadWords, WysiwygLinterHeadingLevel, WysiwygLinterOptions, WysiwygLinterPlugin, WysiwygLinterPunctuation, WysiwygOrderedListTool, WysiwygTextAlignOptions, WysiwygTextAlignTool, WysiwygTextAlignValue, createWysiwygColorTool, createWysiwygCustomTagMark, createWysiwygCustomTagTool, createWysiwygExtension, resolveRawWysiwygEditorTools, resolveRawWysiwygExtensions };
|
|
494
|
+
export { type CreateWysiwygColorToolOptions, type CreatedWysiwygExtension, type RawWysiwygEditorTool, type RawWysiwygExtension, type ResolvedWysiwygEditorSettings, VUI_WYSIWYG_EDITOR_SYMBOL, VWysiwygEditor, type VWysiwygEditorAPI, WYSIWYG_TEXT_ALIGN_VALUES, WysiwygBulletListTool, WysiwygColorExtension, type WysiwygColorItem, type WysiwygColorOptions, WysiwygCustomTagExtension, type WysiwygCustomTagSettings, type WysiwygCustomTagToolSettings, type WysiwygEditorContext, type WysiwygEditorEvent, type WysiwygEditorEventsBucket, type WysiwygEditorEventsOptions, WysiwygEditorInitializeContext, type WysiwygEditorPrefixedEvent, type WysiwygEditorTool, type WysiwygEditorToolFactory, type WysiwygEditorToolIcon, type WysiwygExtensionFactory, type WysiwygExtensionSource, WysiwygFormatBoldTool, WysiwygFormatItalicTool, WysiwygFormatUnderlineTool, WysiwygHistoryTool, WysiwygLinkTool, WysiwygLinter, WysiwygLinterBadWords, WysiwygLinterHeadingLevel, type WysiwygLinterOptions, WysiwygLinterPlugin, WysiwygLinterPunctuation, WysiwygOrderedListTool, type WysiwygTextAlignOptions, WysiwygTextAlignTool, type WysiwygTextAlignValue, createWysiwygColorTool, createWysiwygCustomTagMark, createWysiwygCustomTagTool, createWysiwygExtension, resolveRawWysiwygEditorTools, resolveRawWysiwygExtensions };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fastkit/vui-wysiwyg",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "7.0.0",
|
|
4
4
|
"description": "vui-wysiwyg",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"repository": {
|
|
@@ -189,123 +189,30 @@
|
|
|
189
189
|
},
|
|
190
190
|
"./*": "./dist/*"
|
|
191
191
|
},
|
|
192
|
-
"main": "./dist/vui-wysiwyg.mjs",
|
|
193
|
-
"types": "./dist/vui-wysiwyg.d.ts",
|
|
194
|
-
"typesVersions": {
|
|
195
|
-
"*": {
|
|
196
|
-
".": [
|
|
197
|
-
"./dist/vui-wysiwyg.d.ts"
|
|
198
|
-
],
|
|
199
|
-
"tiptap/core": [
|
|
200
|
-
"./dist/tiptap/core.d.ts"
|
|
201
|
-
],
|
|
202
|
-
"pm/view": [
|
|
203
|
-
"./dist/pm/view.d.ts"
|
|
204
|
-
],
|
|
205
|
-
"pm/transform": [
|
|
206
|
-
"./dist/pm/transform.d.ts"
|
|
207
|
-
],
|
|
208
|
-
"pm/trailing-node": [
|
|
209
|
-
"./dist/pm/trailing-node.d.ts"
|
|
210
|
-
],
|
|
211
|
-
"pm/tables": [
|
|
212
|
-
"./dist/pm/tables.d.ts"
|
|
213
|
-
],
|
|
214
|
-
"pm/state": [
|
|
215
|
-
"./dist/pm/state.d.ts"
|
|
216
|
-
],
|
|
217
|
-
"pm/schema-list": [
|
|
218
|
-
"./dist/pm/schema-list.d.ts"
|
|
219
|
-
],
|
|
220
|
-
"pm/schema-basic": [
|
|
221
|
-
"./dist/pm/schema-basic.d.ts"
|
|
222
|
-
],
|
|
223
|
-
"pm/model": [
|
|
224
|
-
"./dist/pm/model.d.ts"
|
|
225
|
-
],
|
|
226
|
-
"pm/menu": [
|
|
227
|
-
"./dist/pm/menu.d.ts"
|
|
228
|
-
],
|
|
229
|
-
"pm/markdown": [
|
|
230
|
-
"./dist/pm/markdown.d.ts"
|
|
231
|
-
],
|
|
232
|
-
"pm/keymap": [
|
|
233
|
-
"./dist/pm/keymap.d.ts"
|
|
234
|
-
],
|
|
235
|
-
"pm/inputrules": [
|
|
236
|
-
"./dist/pm/inputrules.d.ts"
|
|
237
|
-
],
|
|
238
|
-
"pm/history": [
|
|
239
|
-
"./dist/pm/history.d.ts"
|
|
240
|
-
],
|
|
241
|
-
"pm/gapcursor": [
|
|
242
|
-
"./dist/pm/gapcursor.d.ts"
|
|
243
|
-
],
|
|
244
|
-
"pm/dropcursor": [
|
|
245
|
-
"./dist/pm/dropcursor.d.ts"
|
|
246
|
-
],
|
|
247
|
-
"pm/commands": [
|
|
248
|
-
"./dist/pm/commands.d.ts"
|
|
249
|
-
],
|
|
250
|
-
"pm/collab": [
|
|
251
|
-
"./dist/pm/collab.d.ts"
|
|
252
|
-
],
|
|
253
|
-
"pm/changeset": [
|
|
254
|
-
"./dist/pm/changeset.d.ts"
|
|
255
|
-
],
|
|
256
|
-
"tiptap/extensions/underline": [
|
|
257
|
-
"./dist/tiptap/extensions/underline.d.ts"
|
|
258
|
-
],
|
|
259
|
-
"tiptap/extensions/text-style": [
|
|
260
|
-
"./dist/tiptap/extensions/text-style.d.ts"
|
|
261
|
-
],
|
|
262
|
-
"tiptap/extensions/text-align": [
|
|
263
|
-
"./dist/tiptap/extensions/text-align.d.ts"
|
|
264
|
-
],
|
|
265
|
-
"tiptap/extensions/ordered-list": [
|
|
266
|
-
"./dist/tiptap/extensions/ordered-list.d.ts"
|
|
267
|
-
],
|
|
268
|
-
"tiptap/extensions/link": [
|
|
269
|
-
"./dist/tiptap/extensions/link.d.ts"
|
|
270
|
-
],
|
|
271
|
-
"tiptap/extensions/italic": [
|
|
272
|
-
"./dist/tiptap/extensions/italic.d.ts"
|
|
273
|
-
],
|
|
274
|
-
"tiptap/extensions/history": [
|
|
275
|
-
"./dist/tiptap/extensions/history.d.ts"
|
|
276
|
-
],
|
|
277
|
-
"tiptap/extensions/bullet-list": [
|
|
278
|
-
"./dist/tiptap/extensions/bullet-list.d.ts"
|
|
279
|
-
],
|
|
280
|
-
"tiptap/extensions/bold": [
|
|
281
|
-
"./dist/tiptap/extensions/bold.d.ts"
|
|
282
|
-
]
|
|
283
|
-
}
|
|
284
|
-
},
|
|
285
192
|
"files": [
|
|
286
193
|
"dist"
|
|
287
194
|
],
|
|
288
195
|
"dependencies": {
|
|
289
|
-
"@tiptap/extension-bold": "^2.
|
|
290
|
-
"@tiptap/extension-bullet-list": "^2.
|
|
291
|
-
"@tiptap/extension-history": "^2.
|
|
292
|
-
"@tiptap/extension-italic": "^2.
|
|
293
|
-
"@tiptap/extension-link": "^2.
|
|
294
|
-
"@tiptap/extension-ordered-list": "^2.
|
|
295
|
-
"@tiptap/extension-text-align": "^2.
|
|
296
|
-
"@tiptap/extension-text-style": "^2.
|
|
297
|
-
"@tiptap/extension-underline": "^2.
|
|
298
|
-
"@tiptap/pm": "^2.
|
|
299
|
-
"@tiptap/starter-kit": "^2.
|
|
300
|
-
"@tiptap/vue-3": "^2.
|
|
301
|
-
"@types/markdown-it": "^13.0.
|
|
196
|
+
"@tiptap/extension-bold": "^2.1.16",
|
|
197
|
+
"@tiptap/extension-bullet-list": "^2.1.16",
|
|
198
|
+
"@tiptap/extension-history": "^2.1.16",
|
|
199
|
+
"@tiptap/extension-italic": "^2.1.16",
|
|
200
|
+
"@tiptap/extension-link": "^2.1.16",
|
|
201
|
+
"@tiptap/extension-ordered-list": "^2.1.16",
|
|
202
|
+
"@tiptap/extension-text-align": "^2.1.16",
|
|
203
|
+
"@tiptap/extension-text-style": "^2.1.16",
|
|
204
|
+
"@tiptap/extension-underline": "^2.1.16",
|
|
205
|
+
"@tiptap/pm": "^2.1.16",
|
|
206
|
+
"@tiptap/starter-kit": "^2.1.16",
|
|
207
|
+
"@tiptap/vue-3": "^2.1.16",
|
|
208
|
+
"@types/markdown-it": "^13.0.7"
|
|
302
209
|
},
|
|
303
210
|
"devDependencies": {
|
|
304
|
-
"@fastkit/vui": "0.
|
|
211
|
+
"@fastkit/vui": "0.19.0"
|
|
305
212
|
},
|
|
306
213
|
"peerDependencies": {
|
|
307
|
-
"vue": "^3.
|
|
308
|
-
"@fastkit/vui": "0.
|
|
214
|
+
"vue": "^3.4.0",
|
|
215
|
+
"@fastkit/vui": "0.19.0"
|
|
309
216
|
},
|
|
310
217
|
"scripts": {
|
|
311
218
|
"build": "plugboy build",
|