@puredesktop/puredesktop-ui-bridge 2.1.2 → 2.1.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@puredesktop/puredesktop-ui-bridge",
3
- "version": "2.1.2",
3
+ "version": "2.1.3",
4
4
  "description": "PureScience plugin SDK — bridge client, theme, and shared UI",
5
5
  "type": "module",
6
6
  "repository": {
@@ -61,11 +61,19 @@
61
61
  "./components/proofing": "./src/components/proofing/index.ts",
62
62
  "./components/print-design": "./src/components/print-design/index.ts",
63
63
  "./components/assets/asset-library": "./src/components/assets/asset-library/index.ts",
64
+ "./components/common/buttons/*": "./src/components/common/buttons/*.tsx",
65
+ "./components/common/containers/*": "./src/components/common/containers/*.tsx",
64
66
  "./components/common/connections": "./src/components/common/connections/index.ts",
65
67
  "./components/common/context": "./src/components/common/context/index.ts",
66
68
  "./components/common/canvas": "./src/components/common/canvas/index.ts",
67
69
  "./components/common/desk": "./src/components/common/desk/index.ts",
70
+ "./components/common/feedback/*": "./src/components/common/feedback/*.tsx",
71
+ "./components/common/inputs/*": "./src/components/common/inputs/*.tsx",
72
+ "./components/common/navigation/*": "./src/components/common/navigation/*.tsx",
68
73
  "./components/common/research": "./src/components/common/research/index.ts",
74
+ "./components/common/typography/*": "./src/components/common/typography/*.tsx",
75
+ "./components/common/typography/Heading": "./src/components/common/typography/Heading.tsx",
76
+ "./components/common/typography/Text": "./src/components/common/typography/Text.tsx",
69
77
  "./components/common/inputs/PaletteCirclePicker": "./src/components/common/inputs/PaletteCirclePicker.tsx",
70
78
  "./components/common/inputs/PaletteDropdown": "./src/components/common/inputs/PaletteDropdown.tsx",
71
79
  "./components/common/lists/reorderable": "./src/components/common/lists/reorderable/index.ts",
@@ -2,7 +2,7 @@ import type { Editor } from '@tiptap/core'
2
2
  import {
3
3
  insertCollectionImageFromBinaryResult,
4
4
  insertInlineAssetKind,
5
- } from '@purescience/platform-editor'
5
+ } from '@puredesktop/platform-editor'
6
6
  import type { CollectionAssetDocumentAdapter } from '../components/assets/asset-library/types.js'
7
7
  import type { PlatformAssetSummary } from './types.js'
8
8
 
@@ -1,4 +1,4 @@
1
- import { COLLECTION_ASSET_SRC_ATTR } from '@purescience/platform-editor'
1
+ import { COLLECTION_ASSET_SRC_ATTR } from '@puredesktop/platform-editor'
2
2
 
3
3
  export { COLLECTION_ASSET_SRC_ATTR }
4
4
 
@@ -1,5 +1,5 @@
1
1
  import type { Editor } from '@tiptap/core'
2
- import { insertCollectionImage } from '@purescience/platform-editor'
2
+ import { insertCollectionImage } from '@puredesktop/platform-editor'
3
3
  import { DEFAULT_COLLECTION_FIGURES_DIR } from './collectionAssets.js'
4
4
  import { absoluteCollectionAssetPath } from './collectionDocumentHtml.js'
5
5
 
@@ -1,13 +1,13 @@
1
1
  /**
2
2
  * Framework-agnostic inline asset preview (mermaid / math / table HTML).
3
- * Mermaid rendering lives in `@purescience/platform-editor/mermaidPreview`.
3
+ * Mermaid rendering lives in `@puredesktop/platform-editor/mermaidPreview`.
4
4
  */
5
5
 
6
6
  import {
7
7
  expandMermaidBlocksForPrint,
8
8
  extractMermaidSourceFromHtml,
9
9
  renderMermaidPreviewSvg,
10
- } from '@purescience/platform-editor/mermaidPreview'
10
+ } from '@puredesktop/platform-editor/mermaidPreview'
11
11
 
12
12
  export {
13
13
  expandMermaidBlocksForPrint,
@@ -1,6 +1,6 @@
1
1
  import { useEffect, useRef, type ChangeEvent } from 'react'
2
2
  import { styled } from 'styled-components'
3
- import type { EditorCommentPromptProps } from '@purescience/platform-editor'
3
+ import type { EditorCommentPromptProps } from '@puredesktop/platform-editor'
4
4
  import { Button } from '../common/buttons/Button.js'
5
5
  import { FlexRow } from '../common/containers/flex.js'
6
6
  import { TextAreaField } from '../common/inputs/TextAreaField.js'
@@ -1,6 +1,6 @@
1
1
  import type { KeyboardEvent } from 'react'
2
2
  import { styled } from 'styled-components'
3
- import type { EditorLinkPromptProps } from '@purescience/platform-editor'
3
+ import type { EditorLinkPromptProps } from '@puredesktop/platform-editor'
4
4
  import { Button } from '../common/buttons/Button.js'
5
5
  import { FlexRow } from '../common/containers/flex.js'
6
6
  import { BareInput } from '../common/inputs/BareInput.js'
@@ -3,7 +3,7 @@ import {
3
3
  DocumentEditor as BaseDocumentEditor,
4
4
  type DocumentEditorHandle,
5
5
  type DocumentEditorProps as BaseDocumentEditorProps,
6
- } from '@purescience/platform-editor'
6
+ } from '@puredesktop/platform-editor'
7
7
  import { defaultEditorToolbarOverlays } from './toolbarOverlays.js'
8
8
 
9
9
  export type DocumentEditorProps = BaseDocumentEditorProps
@@ -59,7 +59,7 @@ export {
59
59
  runAutoReview,
60
60
  validateAutoReviewFindings,
61
61
  ToolbarInlineToolButton,
62
- } from '@purescience/platform-editor'
62
+ } from '@puredesktop/platform-editor'
63
63
  export type {
64
64
  AppliedAutoReviewFinding,
65
65
  AutoReviewFindingInput,
@@ -95,4 +95,4 @@ export type {
95
95
  DocumentDiffViewProps,
96
96
  AlignedDiffLine,
97
97
  AlignedLineDiffResult,
98
- } from '@purescience/platform-editor'
98
+ } from '@puredesktop/platform-editor'
@@ -1,4 +1,4 @@
1
- import type { EditorToolbarOverlays } from '@purescience/platform-editor'
1
+ import type { EditorToolbarOverlays } from '@puredesktop/platform-editor'
2
2
  import { EditorCommentPromptDialog } from '../components/editor/EditorCommentPromptDialog.js'
3
3
  import { EditorLinkPromptDialog } from '../components/editor/EditorLinkPromptDialog.js'
4
4