@prosekit/web 0.8.1 → 0.8.2

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 (43) hide show
  1. package/dist/autocomplete.d.ts +0 -15
  2. package/dist/autocomplete.d.ts.map +1 -1
  3. package/dist/autocomplete.js +0 -3
  4. package/dist/autocomplete.js.map +1 -1
  5. package/dist/block-handle.d.ts +0 -12
  6. package/dist/block-handle.d.ts.map +1 -1
  7. package/dist/block-handle.js +0 -3
  8. package/dist/block-handle.js.map +1 -1
  9. package/dist/drop-indicator.d.ts.map +1 -1
  10. package/dist/drop-indicator.js.map +1 -1
  11. package/dist/get-safe-editor-view.js.map +1 -1
  12. package/dist/index.d.ts.map +1 -1
  13. package/dist/index.js.map +1 -1
  14. package/dist/inline-popover.d.ts +0 -12
  15. package/dist/inline-popover.d.ts.map +1 -1
  16. package/dist/inline-popover.js.map +1 -1
  17. package/dist/menu.d.ts.map +1 -1
  18. package/dist/menu.js.map +1 -1
  19. package/dist/popover.d.ts.map +1 -1
  20. package/dist/popover.js.map +1 -1
  21. package/dist/resizable.d.ts +0 -15
  22. package/dist/resizable.d.ts.map +1 -1
  23. package/dist/resizable.js +0 -6
  24. package/dist/resizable.js.map +1 -1
  25. package/dist/table-handle.d.ts.map +1 -1
  26. package/dist/table-handle.js.map +1 -1
  27. package/dist/tooltip.d.ts.map +1 -1
  28. package/dist/tooltip.js.map +1 -1
  29. package/dist/use-editor-extension.js.map +1 -1
  30. package/dist/use-editor-update-event.js.map +1 -1
  31. package/dist/use-scrolling.js.map +1 -1
  32. package/package.json +10 -10
  33. package/src/components/autocomplete/autocomplete-popup.ts +0 -6
  34. package/src/components/autocomplete/autocomplete-positioner.ts +0 -3
  35. package/src/components/autocomplete/autocomplete-root.ts +0 -6
  36. package/src/components/block-handle/block-handle-popup.ts +0 -3
  37. package/src/components/block-handle/block-handle-positioner.ts +0 -3
  38. package/src/components/block-handle/block-handle-root.ts +0 -6
  39. package/src/components/inline-popover/inline-popover-popup.ts +0 -3
  40. package/src/components/inline-popover/inline-popover-positioner.ts +0 -3
  41. package/src/components/inline-popover/inline-popover-root.ts +0 -6
  42. package/src/components/resizable/resizable-handle.ts +0 -3
  43. package/src/components/resizable/resizable-root.ts +0 -12
@@ -11,9 +11,6 @@ import { OverlayPositionerPropsDeclaration, setupOverlayPositioner, type Overlay
11
11
 
12
12
  import { InlinePopoverStoreContext } from './store.ts'
13
13
 
14
- /**
15
- * @public
16
- */
17
14
  export interface InlinePopoverPositionerProps extends
18
15
  Omit<
19
16
  OverlayPositionerProps,
@@ -19,9 +19,6 @@ import { useKeymap } from '../../hooks/use-keymap.ts'
19
19
  import { InlinePopoverStoreContext } from './store.ts'
20
20
  import { getVirtualSelectionElement } from './virtual-selection-element.ts'
21
21
 
22
- /**
23
- * @public
24
- */
25
22
  export interface InlinePopoverRootProps extends OverlayRootProps {
26
23
  /**
27
24
  * The ProseKit editor instance.
@@ -58,9 +55,6 @@ export const InlinePopoverRootPropsDeclaration: PropsDeclaration<InlinePopoverRo
58
55
  dismissOnEscape: { default: true, attribute: 'dismiss-on-escape', type: 'boolean' },
59
56
  })
60
57
 
61
- /**
62
- * @public
63
- */
64
58
  export interface InlinePopoverRootEvents {
65
59
  /**
66
60
  * Emitted when the open state of the popover changes.
@@ -5,9 +5,6 @@ import { getWindow } from '@ocavue/utils'
5
5
  import { calcResize } from './calc-resize.ts'
6
6
  import { onResizeContext, onResizeEndContext, onResizeStartContext } from './context.ts'
7
7
 
8
- /**
9
- * @public
10
- */
11
8
  export interface ResizableHandleProps {
12
9
  /**
13
10
  * The position of the handle.
@@ -13,9 +13,6 @@ import {
13
13
  type OnResizeStart,
14
14
  } from './context.ts'
15
15
 
16
- /**
17
- * @public
18
- */
19
16
  export interface ResizableRootProps {
20
17
  /**
21
18
  * The width of the resizable element.
@@ -48,9 +45,6 @@ export const ResizableRootPropsDeclaration: PropsDeclaration<ResizableRootProps>
48
45
  aspectRatio: { default: null, attribute: 'data-aspect-ratio', type: 'json' },
49
46
  })
50
47
 
51
- /**
52
- * @public
53
- */
54
48
  export interface ResizableRootEvents {
55
49
  /**
56
50
  * Emitted when a resize operation starts.
@@ -63,9 +57,6 @@ export interface ResizableRootEvents {
63
57
  resizeEnd: ResizeEndEvent
64
58
  }
65
59
 
66
- /**
67
- * @public
68
- */
69
60
  export class ResizeStartEvent extends Event {
70
61
  readonly detail: {
71
62
  readonly width: number
@@ -77,9 +68,6 @@ export class ResizeStartEvent extends Event {
77
68
  }
78
69
  }
79
70
 
80
- /**
81
- * @public
82
- */
83
71
  export class ResizeEndEvent extends Event {
84
72
  readonly detail: {
85
73
  readonly width: number