@uniformdev/canvas-react 19.55.2-alpha.46 → 19.55.2-alpha.52

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/core.d.mts CHANGED
@@ -1,8 +1,8 @@
1
1
  import { ComponentInstance, RootComponentInstance } from '@uniformdev/canvas';
2
- import React from 'react';
2
+ import React, { PropsWithChildren } from 'react';
3
3
  export { a as PureUniformText, P as PureUniformTextProps } from './PureUniformText-37defdc5.js';
4
4
 
5
- declare const PureContextualEditingComponentWrapper: ({ children, isPlaceholder, parentComponent, component, slotName, indexInSlot, slotChildrenCount, isReadOnly, }: React.PropsWithChildren<{
5
+ type PureContextualEditingComponentWrapperProps = {
6
6
  isPlaceholder: boolean | undefined;
7
7
  parentComponent: ComponentInstance | undefined;
8
8
  component: ComponentInstance | RootComponentInstance;
@@ -10,6 +10,7 @@ declare const PureContextualEditingComponentWrapper: ({ children, isPlaceholder,
10
10
  indexInSlot: number | undefined;
11
11
  slotChildrenCount: number | undefined;
12
12
  isReadOnly: string | undefined;
13
- }>) => React.JSX.Element;
13
+ };
14
+ declare const PureContextualEditingComponentWrapper: ({ children, isPlaceholder, parentComponent, component, slotName, indexInSlot, slotChildrenCount, isReadOnly, }: PropsWithChildren<PureContextualEditingComponentWrapperProps>) => React.JSX.Element;
14
15
 
15
- export { PureContextualEditingComponentWrapper };
16
+ export { PureContextualEditingComponentWrapper, PureContextualEditingComponentWrapperProps };
package/dist/core.d.ts CHANGED
@@ -1,8 +1,8 @@
1
1
  import { ComponentInstance, RootComponentInstance } from '@uniformdev/canvas';
2
- import React from 'react';
2
+ import React, { PropsWithChildren } from 'react';
3
3
  export { a as PureUniformText, P as PureUniformTextProps } from './PureUniformText-37defdc5.js';
4
4
 
5
- declare const PureContextualEditingComponentWrapper: ({ children, isPlaceholder, parentComponent, component, slotName, indexInSlot, slotChildrenCount, isReadOnly, }: React.PropsWithChildren<{
5
+ type PureContextualEditingComponentWrapperProps = {
6
6
  isPlaceholder: boolean | undefined;
7
7
  parentComponent: ComponentInstance | undefined;
8
8
  component: ComponentInstance | RootComponentInstance;
@@ -10,6 +10,7 @@ declare const PureContextualEditingComponentWrapper: ({ children, isPlaceholder,
10
10
  indexInSlot: number | undefined;
11
11
  slotChildrenCount: number | undefined;
12
12
  isReadOnly: string | undefined;
13
- }>) => React.JSX.Element;
13
+ };
14
+ declare const PureContextualEditingComponentWrapper: ({ children, isPlaceholder, parentComponent, component, slotName, indexInSlot, slotChildrenCount, isReadOnly, }: PropsWithChildren<PureContextualEditingComponentWrapperProps>) => React.JSX.Element;
14
15
 
15
- export { PureContextualEditingComponentWrapper };
16
+ export { PureContextualEditingComponentWrapper, PureContextualEditingComponentWrapperProps };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniformdev/canvas-react",
3
- "version": "19.55.2-alpha.46+7e4af0d56",
3
+ "version": "19.55.2-alpha.52+12f0e007e",
4
4
  "description": "React SDK for Uniform Canvas",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "main": "./dist/index.js",
@@ -45,10 +45,10 @@
45
45
  "document": "api-extractor run --local"
46
46
  },
47
47
  "dependencies": {
48
- "@uniformdev/canvas": "19.55.2-alpha.46+7e4af0d56",
49
- "@uniformdev/context": "19.55.2-alpha.46+7e4af0d56",
50
- "@uniformdev/context-react": "19.55.2-alpha.46+7e4af0d56",
51
- "@uniformdev/richtext": "19.55.2-alpha.46+7e4af0d56"
48
+ "@uniformdev/canvas": "19.55.2-alpha.52+12f0e007e",
49
+ "@uniformdev/context": "19.55.2-alpha.52+12f0e007e",
50
+ "@uniformdev/context-react": "19.55.2-alpha.52+12f0e007e",
51
+ "@uniformdev/richtext": "19.55.2-alpha.52+12f0e007e"
52
52
  },
53
53
  "peerDependencies": {
54
54
  "react": ">= 16 || 17 || 18",
@@ -65,5 +65,5 @@
65
65
  "publishConfig": {
66
66
  "access": "public"
67
67
  },
68
- "gitHead": "7e4af0d56a1f13233f4dc1b2b926a5be4ca8636e"
68
+ "gitHead": "12f0e007e1b47387c6422a52d7a8473f8bae0969"
69
69
  }