@uniformdev/canvas-react 20.50.2-alpha.1 → 20.50.2-alpha.109
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/{PureUniformText-B3GAm6Dc.d.mts → PureUniformText-CzdaUBnC.d.mts} +1 -1
- package/dist/{PureUniformText-B3GAm6Dc.d.ts → PureUniformText-CzdaUBnC.d.ts} +1 -1
- package/dist/core.d.mts +1 -1
- package/dist/core.d.ts +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +8 -9
|
@@ -38,4 +38,4 @@ type PureUniformTextProps = {
|
|
|
38
38
|
*/
|
|
39
39
|
declare const PureUniformText: ({ as: Tag, parameterId, component, skipCustomRendering, isContextualEditing, isMultiline, placeholder, render, ...props }: PureUniformTextProps) => React.JSX.Element | null;
|
|
40
40
|
|
|
41
|
-
export {
|
|
41
|
+
export { PureUniformText as P, type PureUniformTextProps as a };
|
|
@@ -38,4 +38,4 @@ type PureUniformTextProps = {
|
|
|
38
38
|
*/
|
|
39
39
|
declare const PureUniformText: ({ as: Tag, parameterId, component, skipCustomRendering, isContextualEditing, isMultiline, placeholder, render, ...props }: PureUniformTextProps) => React.JSX.Element | null;
|
|
40
40
|
|
|
41
|
-
export {
|
|
41
|
+
export { PureUniformText as P, type PureUniformTextProps as a };
|
package/dist/core.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ComponentInstance, RootComponentInstance } from '@uniformdev/canvas';
|
|
2
2
|
import React, { PropsWithChildren } from 'react';
|
|
3
|
-
export {
|
|
3
|
+
export { P as PureUniformText, a as PureUniformTextProps } from './PureUniformText-CzdaUBnC.mjs';
|
|
4
4
|
|
|
5
5
|
type PureContextualEditingComponentWrapperProps = {
|
|
6
6
|
isPlaceholder: boolean | undefined;
|
package/dist/core.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ComponentInstance, RootComponentInstance } from '@uniformdev/canvas';
|
|
2
2
|
import React, { PropsWithChildren } from 'react';
|
|
3
|
-
export {
|
|
3
|
+
export { P as PureUniformText, a as PureUniformTextProps } from './PureUniformText-CzdaUBnC.js';
|
|
4
4
|
|
|
5
5
|
type PureContextualEditingComponentWrapperProps = {
|
|
6
6
|
isPlaceholder: boolean | undefined;
|
package/dist/index.d.mts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React$1, { Key, ReactNode, PropsWithChildren } from 'react';
|
|
2
2
|
import { ComponentInstance, RootComponentInstance, UpdateCompositionMessage, getParameterAttributes as getParameterAttributes$1, UpdateContextualEditingStateInternalMessage } from '@uniformdev/canvas';
|
|
3
3
|
export { GetParameterAttributesProps, createUniformApiEnhancer } from '@uniformdev/canvas';
|
|
4
|
-
import {
|
|
4
|
+
import { a as PureUniformTextProps } from './PureUniformText-CzdaUBnC.mjs';
|
|
5
5
|
import { CompositionMetadata } from '@uniformdev/context';
|
|
6
6
|
import { RichTextNode } from '@uniformdev/richtext';
|
|
7
7
|
|
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React$1, { Key, ReactNode, PropsWithChildren } from 'react';
|
|
2
2
|
import { ComponentInstance, RootComponentInstance, UpdateCompositionMessage, getParameterAttributes as getParameterAttributes$1, UpdateContextualEditingStateInternalMessage } from '@uniformdev/canvas';
|
|
3
3
|
export { GetParameterAttributesProps, createUniformApiEnhancer } from '@uniformdev/canvas';
|
|
4
|
-
import {
|
|
4
|
+
import { a as PureUniformTextProps } from './PureUniformText-CzdaUBnC.js';
|
|
5
5
|
import { CompositionMetadata } from '@uniformdev/context';
|
|
6
6
|
import { RichTextNode } from '@uniformdev/richtext';
|
|
7
7
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/canvas-react",
|
|
3
|
-
"version": "20.50.2-alpha.
|
|
3
|
+
"version": "20.50.2-alpha.109+846837c66a",
|
|
4
4
|
"description": "React SDK for Uniform Canvas",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -39,16 +39,15 @@
|
|
|
39
39
|
"build": "tsup",
|
|
40
40
|
"dev": "tsup --watch",
|
|
41
41
|
"clean": "rimraf dist",
|
|
42
|
-
"test": "
|
|
43
|
-
"lint": "eslint \"src/**/*.{js,ts,tsx}\"",
|
|
42
|
+
"test": "vitest run",
|
|
44
43
|
"format": "prettier --write \"src/**/*.{js,ts,tsx}\"",
|
|
45
|
-
"
|
|
44
|
+
"apidocs-extract": "api-extractor run --local"
|
|
46
45
|
},
|
|
47
46
|
"dependencies": {
|
|
48
|
-
"@uniformdev/canvas": "20.50.2-alpha.
|
|
49
|
-
"@uniformdev/context": "20.50.2-alpha.
|
|
50
|
-
"@uniformdev/context-react": "20.50.2-alpha.
|
|
51
|
-
"@uniformdev/richtext": "20.50.2-alpha.
|
|
47
|
+
"@uniformdev/canvas": "20.50.2-alpha.109+846837c66a",
|
|
48
|
+
"@uniformdev/context": "20.50.2-alpha.109+846837c66a",
|
|
49
|
+
"@uniformdev/context-react": "20.50.2-alpha.109+846837c66a",
|
|
50
|
+
"@uniformdev/richtext": "20.50.2-alpha.109+846837c66a"
|
|
52
51
|
},
|
|
53
52
|
"peerDependencies": {
|
|
54
53
|
"immer": ">= 10",
|
|
@@ -67,5 +66,5 @@
|
|
|
67
66
|
"publishConfig": {
|
|
68
67
|
"access": "public"
|
|
69
68
|
},
|
|
70
|
-
"gitHead": "
|
|
69
|
+
"gitHead": "846837c66ad0f518683c100615b59b27f91498ba"
|
|
71
70
|
}
|