@vizel/react 1.1.0 → 1.1.1

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 (2) hide show
  1. package/dist/index.d.ts +30 -30
  2. package/package.json +6 -16
package/dist/index.d.ts CHANGED
@@ -1,39 +1,39 @@
1
1
  import { ComponentProps } from 'react';
2
- import { CustomIconMap } from '@vizel/core';
2
+ import { CustomIconMap } from '../../packages/core/src/index.ts';
3
3
  import { default as default_2 } from 'react';
4
- import { Editor } from '@vizel/core';
5
- import { Extensions } from '@vizel/core';
4
+ import { Editor } from '../../packages/core/src/index.ts';
5
+ import { Extensions } from '../../packages/core/src/index.ts';
6
6
  import { Icon } from '@iconify/react';
7
- import { JSONContent } from '@vizel/core';
7
+ import { JSONContent } from '../../packages/core/src/index.ts';
8
8
  import { JSX } from 'react/jsx-runtime';
9
9
  import { ReactNode } from 'react';
10
10
  import { Ref } from 'react';
11
- import { SuggestionOptions } from '@vizel/core';
12
- import { VizelAutoSaveOptions } from '@vizel/core';
13
- import { VizelCollaborationOptions } from '@vizel/core';
14
- import { VizelCollaborationUser } from '@vizel/core';
15
- import { VizelColorDefinition } from '@vizel/core';
16
- import { VizelComment } from '@vizel/core';
17
- import { VizelCommentOptions } from '@vizel/core';
18
- import { VizelCommentReply } from '@vizel/core';
19
- import { VizelCreateEditorOptions } from '@vizel/core';
20
- import { VizelEditorState } from '@vizel/core';
21
- import { VizelEmbedData } from '@vizel/core';
22
- import { VizelFeatureOptions } from '@vizel/core';
23
- import { VizelIconContextValue } from '@vizel/core';
24
- import { VizelIconName } from '@vizel/core';
25
- import { VizelMarkdownSyncOptions } from '@vizel/core';
26
- import { VizelNodeTypeOption } from '@vizel/core';
27
- import { VizelPortalLayer } from '@vizel/core';
28
- import { VizelSaveStatus } from '@vizel/core';
29
- import { VizelSlashCommandItem } from '@vizel/core';
30
- import { VizelSlashMenuRendererOptions } from '@vizel/core';
31
- import { VizelThemeProviderOptions } from '@vizel/core';
32
- import { VizelThemeState } from '@vizel/core';
33
- import { VizelToolbarAction } from '@vizel/core';
34
- import { VizelVersionHistoryOptions } from '@vizel/core';
35
- import { VizelVersionSnapshot } from '@vizel/core';
36
- import { VizelYjsProvider } from '@vizel/core';
11
+ import { SuggestionOptions } from '../../packages/core/src/index.ts';
12
+ import { VizelAutoSaveOptions } from '../../packages/core/src/index.ts';
13
+ import { VizelCollaborationOptions } from '../../packages/core/src/index.ts';
14
+ import { VizelCollaborationUser } from '../../packages/core/src/index.ts';
15
+ import { VizelColorDefinition } from '../../packages/core/src/index.ts';
16
+ import { VizelComment } from '../../packages/core/src/index.ts';
17
+ import { VizelCommentOptions } from '../../packages/core/src/index.ts';
18
+ import { VizelCommentReply } from '../../packages/core/src/index.ts';
19
+ import { VizelCreateEditorOptions } from '../../packages/core/src/index.ts';
20
+ import { VizelEditorState } from '../../packages/core/src/index.ts';
21
+ import { VizelEmbedData } from '../../packages/core/src/index.ts';
22
+ import { VizelFeatureOptions } from '../../packages/core/src/index.ts';
23
+ import { VizelIconContextValue } from '../../packages/core/src/index.ts';
24
+ import { VizelIconName } from '../../packages/core/src/index.ts';
25
+ import { VizelMarkdownSyncOptions } from '../../packages/core/src/index.ts';
26
+ import { VizelNodeTypeOption } from '../../packages/core/src/index.ts';
27
+ import { VizelPortalLayer } from '../../packages/core/src/index.ts';
28
+ import { VizelSaveStatus } from '../../packages/core/src/index.ts';
29
+ import { VizelSlashCommandItem } from '../../packages/core/src/index.ts';
30
+ import { VizelSlashMenuRendererOptions } from '../../packages/core/src/index.ts';
31
+ import { VizelThemeProviderOptions } from '../../packages/core/src/index.ts';
32
+ import { VizelThemeState } from '../../packages/core/src/index.ts';
33
+ import { VizelToolbarAction } from '../../packages/core/src/index.ts';
34
+ import { VizelVersionHistoryOptions } from '../../packages/core/src/index.ts';
35
+ import { VizelVersionSnapshot } from '../../packages/core/src/index.ts';
36
+ import { VizelYjsProvider } from '../../packages/core/src/index.ts';
37
37
 
38
38
  /**
39
39
  * Creates a suggestion render configuration for the SlashCommand extension.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vizel/react",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "type": "module",
5
5
  "repository": {
6
6
  "type": "git",
@@ -27,22 +27,12 @@
27
27
  "rich-text",
28
28
  "block-editor"
29
29
  ],
30
- "main": "./src/index.ts",
31
- "types": "./src/index.ts",
30
+ "main": "./dist/index.js",
31
+ "types": "./dist/index.d.ts",
32
32
  "exports": {
33
33
  ".": {
34
- "types": "./src/index.ts",
35
- "import": "./src/index.ts"
36
- }
37
- },
38
- "publishConfig": {
39
- "main": "./dist/index.js",
40
- "types": "./dist/index.d.ts",
41
- "exports": {
42
- ".": {
43
- "types": "./dist/index.d.ts",
44
- "import": "./dist/index.js"
45
- }
34
+ "types": "./dist/index.d.ts",
35
+ "import": "./dist/index.js"
46
36
  }
47
37
  },
48
38
  "files": [
@@ -54,7 +44,7 @@
54
44
  },
55
45
  "dependencies": {
56
46
  "@iconify/react": "^6.0.2",
57
- "@vizel/core": "^1.1.0"
47
+ "@vizel/core": "^1.1.1"
58
48
  },
59
49
  "peerDependencies": {
60
50
  "react": "^19",