@portabletext/editor 1.35.3 → 1.36.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.
Files changed (34) hide show
  1. package/lib/_chunks-cjs/behavior.core.cjs.map +1 -1
  2. package/lib/_chunks-cjs/editor-provider.cjs +211 -74
  3. package/lib/_chunks-cjs/editor-provider.cjs.map +1 -1
  4. package/lib/_chunks-es/behavior.core.js.map +1 -1
  5. package/lib/_chunks-es/editor-provider.js +212 -75
  6. package/lib/_chunks-es/editor-provider.js.map +1 -1
  7. package/lib/behaviors/index.d.cts +150 -354
  8. package/lib/behaviors/index.d.ts +150 -354
  9. package/lib/index.d.cts +145 -77
  10. package/lib/index.d.ts +145 -77
  11. package/lib/plugins/index.cjs +19 -19
  12. package/lib/plugins/index.cjs.map +1 -1
  13. package/lib/plugins/index.d.cts +134 -77
  14. package/lib/plugins/index.d.ts +134 -77
  15. package/lib/plugins/index.js +21 -21
  16. package/lib/plugins/index.js.map +1 -1
  17. package/lib/selectors/index.d.cts +123 -77
  18. package/lib/selectors/index.d.ts +123 -77
  19. package/lib/utils/index.d.cts +123 -77
  20. package/lib/utils/index.d.ts +123 -77
  21. package/package.json +6 -6
  22. package/src/behavior-actions/behavior.actions.ts +2 -2
  23. package/src/behaviors/behavior.types.ts +10 -7
  24. package/src/editor/PortableTextEditor.tsx +22 -0
  25. package/src/editor/__tests__/self-solving.test.tsx +33 -1
  26. package/src/editor/components/Synchronizer.tsx +17 -3
  27. package/src/editor/editor-machine.ts +31 -15
  28. package/src/editor/mutation-machine.ts +160 -46
  29. package/src/editor/plugins/create-with-event-listeners.ts +1 -0
  30. package/src/editor/plugins/createWithPatches.ts +10 -3
  31. package/src/editor/with-applying-behavior-actions.ts +8 -6
  32. package/src/plugins/index.ts +2 -1
  33. package/src/plugins/plugin.decorator-shortcut.ts +3 -0
  34. package/src/utils/util.slice-blocks.test.ts +64 -0
@@ -1,5 +1,6 @@
1
1
  export {BehaviorPlugin} from './plugin.behavior'
2
- export {EventListenerPlugin} from './plugin.event-listener'
2
+ export {DecoratorShortcutPlugin} from './plugin.decorator-shortcut'
3
3
  export {EditorRefPlugin} from './plugin.editor-ref'
4
+ export {EventListenerPlugin} from './plugin.event-listener'
4
5
  export {MarkdownPlugin, type MarkdownPluginConfig} from './plugin.markdown'
5
6
  export {OneLinePlugin} from './plugin.one-line'
@@ -15,6 +15,9 @@ import type {EditorSchema} from '../selectors'
15
15
  import type {BlockOffset} from '../types/block-offset'
16
16
  import * as utils from '../utils'
17
17
 
18
+ /**
19
+ * @beta
20
+ */
18
21
  export function DecoratorShortcutPlugin(config: {
19
22
  decorator: ({schema}: {schema: EditorSchema}) => string | undefined
20
23
  pair: {char: string; amount: number}
@@ -341,4 +341,68 @@ describe(sliceBlocks.name, () => {
341
341
  },
342
342
  ])
343
343
  })
344
+
345
+ test('slicing text block with custom props', () => {
346
+ expect(
347
+ sliceBlocks({
348
+ blocks: [
349
+ {
350
+ _key: 'b0',
351
+ _type: 'block',
352
+ children: [{_key: 's0', _type: 'span', text: 'Hello, world!'}],
353
+ _map: {},
354
+ },
355
+ ],
356
+ selection: {
357
+ anchor: {
358
+ path: [{_key: 'b0'}, 'children', {_key: 's0'}],
359
+ offset: 7,
360
+ },
361
+ focus: {
362
+ path: [{_key: 'b0'}, 'children', {_key: 's0'}],
363
+ offset: 12,
364
+ },
365
+ },
366
+ }),
367
+ ).toEqual([
368
+ {
369
+ _key: 'b0',
370
+ _type: 'block',
371
+ children: [{_key: 's0', _type: 'span', text: 'world'}],
372
+ _map: {},
373
+ },
374
+ ])
375
+ })
376
+
377
+ test('slicing span with custom props', () => {
378
+ expect(
379
+ sliceBlocks({
380
+ blocks: [
381
+ {
382
+ _key: 'b0',
383
+ _type: 'block',
384
+ children: [
385
+ {_key: 's0', _type: 'span', text: 'Hello, world!', _map: {}},
386
+ ],
387
+ },
388
+ ],
389
+ selection: {
390
+ anchor: {
391
+ path: [{_key: 'b0'}, 'children', {_key: 's0'}],
392
+ offset: 7,
393
+ },
394
+ focus: {
395
+ path: [{_key: 'b0'}, 'children', {_key: 's0'}],
396
+ offset: 12,
397
+ },
398
+ },
399
+ }),
400
+ ).toEqual([
401
+ {
402
+ _key: 'b0',
403
+ _type: 'block',
404
+ children: [{_key: 's0', _type: 'span', text: 'world', _map: {}}],
405
+ },
406
+ ])
407
+ })
344
408
  })