@uniformdev/canvas-react 20.75.1-alpha.16 → 20.75.1-alpha.7
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-CzdaUBnC.d.mts → PureUniformText-BFhXK0lt.d.mts} +4 -4
- package/dist/{PureUniformText-CzdaUBnC.d.ts → PureUniformText-BFhXK0lt.d.ts} +4 -4
- package/dist/core.d.mts +1 -1
- package/dist/core.d.ts +1 -1
- package/dist/index.d.mts +6 -6
- package/dist/index.d.ts +6 -6
- package/dist/index.esm.js +2 -18
- package/dist/index.js +16 -32
- package/dist/index.mjs +2 -18
- package/package.json +6 -6
|
@@ -5,7 +5,7 @@ type ParameterTextValue = string | undefined;
|
|
|
5
5
|
type PureUniformTextProps = {
|
|
6
6
|
/**
|
|
7
7
|
* The name of the HTML tag to render.
|
|
8
|
-
* @
|
|
8
|
+
* @defaultValue "span"
|
|
9
9
|
*/
|
|
10
10
|
as?: React.ElementType;
|
|
11
11
|
/** The ID of the parameter. */
|
|
@@ -16,20 +16,20 @@ type PureUniformTextProps = {
|
|
|
16
16
|
isContextualEditing: boolean;
|
|
17
17
|
/**
|
|
18
18
|
* When set to true, it adds `whiteSpace: 'pre-wrap'` to the styles of the root element to allow the rendering of line breaks.
|
|
19
|
-
* @
|
|
19
|
+
* @defaultValue false
|
|
20
20
|
*/
|
|
21
21
|
isMultiline?: boolean;
|
|
22
22
|
/**
|
|
23
23
|
* Sets the value to show in Canvas editor when the parameter value is empty.
|
|
24
24
|
* Can be a static string, or a function to generate the placeholder out of parameter info.
|
|
25
|
-
* @
|
|
25
|
+
* @defaultValue undefined
|
|
26
26
|
*/
|
|
27
27
|
placeholder?: string | ((parameter: {
|
|
28
28
|
id: string;
|
|
29
29
|
}) => string | undefined);
|
|
30
30
|
/**
|
|
31
31
|
* A function to customize the rendering of the parameter value. Useful to format the value before rendering it.
|
|
32
|
-
* @
|
|
32
|
+
* @defaultValue "(value) => value"
|
|
33
33
|
*/
|
|
34
34
|
render?: (value: ParameterTextValue) => React.ReactNode;
|
|
35
35
|
} & Omit<React.HTMLAttributes<HTMLSpanElement>, 'children' | 'placeholder'>;
|
|
@@ -5,7 +5,7 @@ type ParameterTextValue = string | undefined;
|
|
|
5
5
|
type PureUniformTextProps = {
|
|
6
6
|
/**
|
|
7
7
|
* The name of the HTML tag to render.
|
|
8
|
-
* @
|
|
8
|
+
* @defaultValue "span"
|
|
9
9
|
*/
|
|
10
10
|
as?: React.ElementType;
|
|
11
11
|
/** The ID of the parameter. */
|
|
@@ -16,20 +16,20 @@ type PureUniformTextProps = {
|
|
|
16
16
|
isContextualEditing: boolean;
|
|
17
17
|
/**
|
|
18
18
|
* When set to true, it adds `whiteSpace: 'pre-wrap'` to the styles of the root element to allow the rendering of line breaks.
|
|
19
|
-
* @
|
|
19
|
+
* @defaultValue false
|
|
20
20
|
*/
|
|
21
21
|
isMultiline?: boolean;
|
|
22
22
|
/**
|
|
23
23
|
* Sets the value to show in Canvas editor when the parameter value is empty.
|
|
24
24
|
* Can be a static string, or a function to generate the placeholder out of parameter info.
|
|
25
|
-
* @
|
|
25
|
+
* @defaultValue undefined
|
|
26
26
|
*/
|
|
27
27
|
placeholder?: string | ((parameter: {
|
|
28
28
|
id: string;
|
|
29
29
|
}) => string | undefined);
|
|
30
30
|
/**
|
|
31
31
|
* A function to customize the rendering of the parameter value. Useful to format the value before rendering it.
|
|
32
|
-
* @
|
|
32
|
+
* @defaultValue "(value) => value"
|
|
33
33
|
*/
|
|
34
34
|
render?: (value: ParameterTextValue) => React.ReactNode;
|
|
35
35
|
} & Omit<React.HTMLAttributes<HTMLSpanElement>, 'children' | 'placeholder'>;
|
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 { P as PureUniformText, a as PureUniformTextProps } from './PureUniformText-
|
|
3
|
+
export { P as PureUniformText, a as PureUniformTextProps } from './PureUniformText-BFhXK0lt.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 { P as PureUniformText, a as PureUniformTextProps } from './PureUniformText-
|
|
3
|
+
export { P as PureUniformText, a as PureUniformTextProps } from './PureUniformText-BFhXK0lt.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 { a as PureUniformTextProps } from './PureUniformText-
|
|
4
|
+
import { a as PureUniformTextProps } from './PureUniformText-BFhXK0lt.mjs';
|
|
5
5
|
import { CompositionMetadata } from '@uniformdev/context';
|
|
6
6
|
import { RichTextNode } from '@uniformdev/richtext';
|
|
7
7
|
export { linkParamValueToAnchorProps } from '@uniformdev/richtext';
|
|
@@ -792,7 +792,7 @@ type RenderRichTextComponentResolver = (node: RichTextNode) => RichTextRendererC
|
|
|
792
792
|
type UniformRichTextProps = {
|
|
793
793
|
/**
|
|
794
794
|
* The name of the HTML tag to render.
|
|
795
|
-
* @
|
|
795
|
+
* @defaultValue "div"
|
|
796
796
|
*/
|
|
797
797
|
as?: React$1.ElementType | null;
|
|
798
798
|
/** The ID of the parameter. */
|
|
@@ -805,7 +805,7 @@ type UniformRichTextProps = {
|
|
|
805
805
|
/**
|
|
806
806
|
* Sets the value to show in Canvas editor when the parameter value is empty.
|
|
807
807
|
* Can be a static string, or a function to generate the placeholder out of parameter info.
|
|
808
|
-
* @
|
|
808
|
+
* @defaultValue undefined
|
|
809
809
|
*/
|
|
810
810
|
placeholder?: string | ((parameter: {
|
|
811
811
|
id: string;
|
|
@@ -817,7 +817,7 @@ type UniformRichTextProps = {
|
|
|
817
817
|
declare const UniformRichText: React$1.ForwardRefExoticComponent<{
|
|
818
818
|
/**
|
|
819
819
|
* The name of the HTML tag to render.
|
|
820
|
-
* @
|
|
820
|
+
* @defaultValue "div"
|
|
821
821
|
*/
|
|
822
822
|
as?: React$1.ElementType | null;
|
|
823
823
|
/** The ID of the parameter. */
|
|
@@ -830,7 +830,7 @@ declare const UniformRichText: React$1.ForwardRefExoticComponent<{
|
|
|
830
830
|
/**
|
|
831
831
|
* Sets the value to show in Canvas editor when the parameter value is empty.
|
|
832
832
|
* Can be a static string, or a function to generate the placeholder out of parameter info.
|
|
833
|
-
* @
|
|
833
|
+
* @defaultValue undefined
|
|
834
834
|
*/
|
|
835
835
|
placeholder?: string | ((parameter: {
|
|
836
836
|
id: string;
|
|
@@ -896,7 +896,7 @@ type UseUniformContextualEditingStateProps = {
|
|
|
896
896
|
/**
|
|
897
897
|
* When set to true, the hook will return the global contextual state no matter where its used.
|
|
898
898
|
* When set to false, it will return only the state relevant to the current component (determined using `useUniformCurrentComponent`).
|
|
899
|
-
* @
|
|
899
|
+
* @defaultValue false
|
|
900
900
|
**/
|
|
901
901
|
global?: boolean;
|
|
902
902
|
};
|
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 { a as PureUniformTextProps } from './PureUniformText-
|
|
4
|
+
import { a as PureUniformTextProps } from './PureUniformText-BFhXK0lt.js';
|
|
5
5
|
import { CompositionMetadata } from '@uniformdev/context';
|
|
6
6
|
import { RichTextNode } from '@uniformdev/richtext';
|
|
7
7
|
export { linkParamValueToAnchorProps } from '@uniformdev/richtext';
|
|
@@ -792,7 +792,7 @@ type RenderRichTextComponentResolver = (node: RichTextNode) => RichTextRendererC
|
|
|
792
792
|
type UniformRichTextProps = {
|
|
793
793
|
/**
|
|
794
794
|
* The name of the HTML tag to render.
|
|
795
|
-
* @
|
|
795
|
+
* @defaultValue "div"
|
|
796
796
|
*/
|
|
797
797
|
as?: React$1.ElementType | null;
|
|
798
798
|
/** The ID of the parameter. */
|
|
@@ -805,7 +805,7 @@ type UniformRichTextProps = {
|
|
|
805
805
|
/**
|
|
806
806
|
* Sets the value to show in Canvas editor when the parameter value is empty.
|
|
807
807
|
* Can be a static string, or a function to generate the placeholder out of parameter info.
|
|
808
|
-
* @
|
|
808
|
+
* @defaultValue undefined
|
|
809
809
|
*/
|
|
810
810
|
placeholder?: string | ((parameter: {
|
|
811
811
|
id: string;
|
|
@@ -817,7 +817,7 @@ type UniformRichTextProps = {
|
|
|
817
817
|
declare const UniformRichText: React$1.ForwardRefExoticComponent<{
|
|
818
818
|
/**
|
|
819
819
|
* The name of the HTML tag to render.
|
|
820
|
-
* @
|
|
820
|
+
* @defaultValue "div"
|
|
821
821
|
*/
|
|
822
822
|
as?: React$1.ElementType | null;
|
|
823
823
|
/** The ID of the parameter. */
|
|
@@ -830,7 +830,7 @@ declare const UniformRichText: React$1.ForwardRefExoticComponent<{
|
|
|
830
830
|
/**
|
|
831
831
|
* Sets the value to show in Canvas editor when the parameter value is empty.
|
|
832
832
|
* Can be a static string, or a function to generate the placeholder out of parameter info.
|
|
833
|
-
* @
|
|
833
|
+
* @defaultValue undefined
|
|
834
834
|
*/
|
|
835
835
|
placeholder?: string | ((parameter: {
|
|
836
836
|
id: string;
|
|
@@ -896,7 +896,7 @@ type UseUniformContextualEditingStateProps = {
|
|
|
896
896
|
/**
|
|
897
897
|
* When set to true, the hook will return the global contextual state no matter where its used.
|
|
898
898
|
* When set to false, it will return only the state relevant to the current component (determined using `useUniformCurrentComponent`).
|
|
899
|
-
* @
|
|
899
|
+
* @defaultValue false
|
|
900
900
|
**/
|
|
901
901
|
global?: boolean;
|
|
902
902
|
};
|
package/dist/index.esm.js
CHANGED
|
@@ -781,34 +781,18 @@ var LinebreakRichTextNode = () => {
|
|
|
781
781
|
};
|
|
782
782
|
|
|
783
783
|
// src/components/UniformRichText/nodes/ListItemRichTextNode.tsx
|
|
784
|
-
import { getRichTextListItemValue } from "@uniformdev/richtext";
|
|
785
784
|
import React13 from "react";
|
|
786
785
|
var ListItemRichTextNode = ({ children, node }) => {
|
|
787
786
|
const { value } = node;
|
|
788
|
-
|
|
789
|
-
return /* @__PURE__ */ React13.createElement(
|
|
790
|
-
"li",
|
|
791
|
-
{
|
|
792
|
-
value: typeof normalizedValue === "number" && Number.isFinite(normalizedValue) && normalizedValue > 0 ? normalizedValue : void 0
|
|
793
|
-
},
|
|
794
|
-
children
|
|
795
|
-
);
|
|
787
|
+
return /* @__PURE__ */ React13.createElement("li", { value: Number.isFinite(value) && value > 0 ? value : void 0 }, children);
|
|
796
788
|
};
|
|
797
789
|
|
|
798
790
|
// src/components/UniformRichText/nodes/ListRichTextNode.tsx
|
|
799
|
-
import { getRichTextListStart } from "@uniformdev/richtext";
|
|
800
791
|
import React14 from "react";
|
|
801
792
|
var ListRichTextNode = ({ children, node }) => {
|
|
802
793
|
const { tag, start } = node;
|
|
803
794
|
const ListTag = tag != null ? tag : "ul";
|
|
804
|
-
|
|
805
|
-
return /* @__PURE__ */ React14.createElement(
|
|
806
|
-
ListTag,
|
|
807
|
-
{
|
|
808
|
-
start: typeof normalizedStart === "number" && Number.isFinite(normalizedStart) && normalizedStart > 0 ? normalizedStart : void 0
|
|
809
|
-
},
|
|
810
|
-
children
|
|
811
|
-
);
|
|
795
|
+
return /* @__PURE__ */ React14.createElement(ListTag, { start: Number.isFinite(start) && start > 0 ? start : void 0 }, children);
|
|
812
796
|
};
|
|
813
797
|
|
|
814
798
|
// src/components/UniformRichText/nodes/ParagraphRichTextNode.tsx
|
package/dist/index.js
CHANGED
|
@@ -759,11 +759,11 @@ var LinkRichTextNode = ({ children, node }) => {
|
|
|
759
759
|
|
|
760
760
|
// src/components/UniformRichText/UniformRichText.tsx
|
|
761
761
|
var import_canvas11 = require("@uniformdev/canvas");
|
|
762
|
-
var
|
|
762
|
+
var import_richtext6 = require("@uniformdev/richtext");
|
|
763
763
|
var import_react22 = __toESM(require("react"));
|
|
764
764
|
|
|
765
765
|
// src/components/UniformRichText/UniformRichTextNode.tsx
|
|
766
|
-
var
|
|
766
|
+
var import_richtext5 = require("@uniformdev/richtext");
|
|
767
767
|
var import_react21 = __toESM(require("react"));
|
|
768
768
|
|
|
769
769
|
// src/components/UniformRichText/nodes/AssetRichTextNode.tsx
|
|
@@ -801,57 +801,41 @@ var LinebreakRichTextNode = () => {
|
|
|
801
801
|
};
|
|
802
802
|
|
|
803
803
|
// src/components/UniformRichText/nodes/ListItemRichTextNode.tsx
|
|
804
|
-
var import_richtext2 = require("@uniformdev/richtext");
|
|
805
804
|
var import_react15 = __toESM(require("react"));
|
|
806
805
|
var ListItemRichTextNode = ({ children, node }) => {
|
|
807
806
|
const { value } = node;
|
|
808
|
-
|
|
809
|
-
return /* @__PURE__ */ import_react15.default.createElement(
|
|
810
|
-
"li",
|
|
811
|
-
{
|
|
812
|
-
value: typeof normalizedValue === "number" && Number.isFinite(normalizedValue) && normalizedValue > 0 ? normalizedValue : void 0
|
|
813
|
-
},
|
|
814
|
-
children
|
|
815
|
-
);
|
|
807
|
+
return /* @__PURE__ */ import_react15.default.createElement("li", { value: Number.isFinite(value) && value > 0 ? value : void 0 }, children);
|
|
816
808
|
};
|
|
817
809
|
|
|
818
810
|
// src/components/UniformRichText/nodes/ListRichTextNode.tsx
|
|
819
|
-
var import_richtext3 = require("@uniformdev/richtext");
|
|
820
811
|
var import_react16 = __toESM(require("react"));
|
|
821
812
|
var ListRichTextNode = ({ children, node }) => {
|
|
822
813
|
const { tag, start } = node;
|
|
823
814
|
const ListTag = tag != null ? tag : "ul";
|
|
824
|
-
|
|
825
|
-
return /* @__PURE__ */ import_react16.default.createElement(
|
|
826
|
-
ListTag,
|
|
827
|
-
{
|
|
828
|
-
start: typeof normalizedStart === "number" && Number.isFinite(normalizedStart) && normalizedStart > 0 ? normalizedStart : void 0
|
|
829
|
-
},
|
|
830
|
-
children
|
|
831
|
-
);
|
|
815
|
+
return /* @__PURE__ */ import_react16.default.createElement(ListTag, { start: Number.isFinite(start) && start > 0 ? start : void 0 }, children);
|
|
832
816
|
};
|
|
833
817
|
|
|
834
818
|
// src/components/UniformRichText/nodes/ParagraphRichTextNode.tsx
|
|
835
|
-
var
|
|
819
|
+
var import_richtext2 = require("@uniformdev/richtext");
|
|
836
820
|
var import_react17 = __toESM(require("react"));
|
|
837
821
|
var ParagraphRichTextNode = ({ children, node }) => {
|
|
838
822
|
const { format, direction } = node;
|
|
839
823
|
return /* @__PURE__ */ import_react17.default.createElement(
|
|
840
824
|
"p",
|
|
841
825
|
{
|
|
842
|
-
dir: (0,
|
|
843
|
-
style: (0,
|
|
826
|
+
dir: (0, import_richtext2.isPureDirection)(direction) ? direction : void 0,
|
|
827
|
+
style: (0, import_richtext2.isPureTextAlign)(format) ? { textAlign: format } : void 0
|
|
844
828
|
},
|
|
845
829
|
children
|
|
846
830
|
);
|
|
847
831
|
};
|
|
848
832
|
|
|
849
833
|
// src/components/UniformRichText/nodes/TableCellRichTextNode.tsx
|
|
850
|
-
var
|
|
834
|
+
var import_richtext3 = require("@uniformdev/richtext");
|
|
851
835
|
var import_react18 = __toESM(require("react"));
|
|
852
836
|
var TableCellRichTextNode = ({ children, node }) => {
|
|
853
837
|
const { headerState } = node;
|
|
854
|
-
const TableCellTag = (0,
|
|
838
|
+
const TableCellTag = (0, import_richtext3.getRichTextTagFromTableCellHeaderState)(headerState);
|
|
855
839
|
return /* @__PURE__ */ import_react18.default.createElement(TableCellTag, null, children);
|
|
856
840
|
};
|
|
857
841
|
|
|
@@ -862,18 +846,18 @@ var TabRichTextNode = () => {
|
|
|
862
846
|
};
|
|
863
847
|
|
|
864
848
|
// src/components/UniformRichText/nodes/TextRichTextNode.tsx
|
|
865
|
-
var
|
|
849
|
+
var import_richtext4 = require("@uniformdev/richtext");
|
|
866
850
|
var import_react20 = __toESM(require("react"));
|
|
867
851
|
var TextRichTextNode = ({ node }) => {
|
|
868
852
|
const { text, format } = node;
|
|
869
|
-
const tags = (0,
|
|
853
|
+
const tags = (0, import_richtext4.getRichTextTagsFromTextFormat)(format);
|
|
870
854
|
return /* @__PURE__ */ import_react20.default.createElement(import_react20.default.Fragment, null, tags.length > 0 ? tags.reduceRight((children, Tag) => /* @__PURE__ */ import_react20.default.createElement(Tag, null, children), text) : text);
|
|
871
855
|
};
|
|
872
856
|
|
|
873
857
|
// src/components/UniformRichText/UniformRichTextNode.tsx
|
|
874
858
|
function UniformRichTextNode({ node, ...props }) {
|
|
875
859
|
var _a;
|
|
876
|
-
if (!(0,
|
|
860
|
+
if (!(0, import_richtext5.isRichTextNode)(node)) return null;
|
|
877
861
|
let NodeRenderer = (_a = props.resolveRichTextRenderer) == null ? void 0 : _a.call(props, node);
|
|
878
862
|
if (typeof NodeRenderer === "undefined") {
|
|
879
863
|
NodeRenderer = resolveRichTextDefaultRenderer(node);
|
|
@@ -923,10 +907,10 @@ var UniformRichText = import_react22.default.forwardRef(function UniformRichText
|
|
|
923
907
|
const placeholderProp = placeholder != null ? placeholder : contextualEditingDefaultPlaceholder;
|
|
924
908
|
const computedPlaceholder = typeof placeholderProp === "function" ? placeholderProp({ id: parameterId }) : placeholderProp;
|
|
925
909
|
const value = parameter.value;
|
|
926
|
-
if (!value || !(0,
|
|
927
|
-
if (!isContextualEditing && (0,
|
|
910
|
+
if (!value || !(0, import_richtext6.isRichTextValue)(value)) return null;
|
|
911
|
+
if (!isContextualEditing && (0, import_richtext6.isRichTextValueConsideredEmpty)(value)) return null;
|
|
928
912
|
if (!Tag) {
|
|
929
|
-
return isContextualEditing && (0,
|
|
913
|
+
return isContextualEditing && (0, import_richtext6.isRichTextValueConsideredEmpty)(value) ? /* @__PURE__ */ import_react22.default.createElement(
|
|
930
914
|
"p",
|
|
931
915
|
{
|
|
932
916
|
...{
|
|
@@ -949,7 +933,7 @@ var UniformRichText = import_react22.default.forwardRef(function UniformRichText
|
|
|
949
933
|
[import_canvas11.ATTRIBUTE_PARAMETER_TYPE]: "richText"
|
|
950
934
|
} : {}
|
|
951
935
|
},
|
|
952
|
-
(0,
|
|
936
|
+
(0, import_richtext6.isRichTextValueConsideredEmpty)(value) ? /* @__PURE__ */ import_react22.default.createElement("p", null, /* @__PURE__ */ import_react22.default.createElement("i", null, computedPlaceholder)) : /* @__PURE__ */ import_react22.default.createElement(UniformRichTextNode, { node: value.root, resolveRichTextRenderer })
|
|
953
937
|
);
|
|
954
938
|
});
|
|
955
939
|
|
package/dist/index.mjs
CHANGED
|
@@ -781,34 +781,18 @@ var LinebreakRichTextNode = () => {
|
|
|
781
781
|
};
|
|
782
782
|
|
|
783
783
|
// src/components/UniformRichText/nodes/ListItemRichTextNode.tsx
|
|
784
|
-
import { getRichTextListItemValue } from "@uniformdev/richtext";
|
|
785
784
|
import React13 from "react";
|
|
786
785
|
var ListItemRichTextNode = ({ children, node }) => {
|
|
787
786
|
const { value } = node;
|
|
788
|
-
|
|
789
|
-
return /* @__PURE__ */ React13.createElement(
|
|
790
|
-
"li",
|
|
791
|
-
{
|
|
792
|
-
value: typeof normalizedValue === "number" && Number.isFinite(normalizedValue) && normalizedValue > 0 ? normalizedValue : void 0
|
|
793
|
-
},
|
|
794
|
-
children
|
|
795
|
-
);
|
|
787
|
+
return /* @__PURE__ */ React13.createElement("li", { value: Number.isFinite(value) && value > 0 ? value : void 0 }, children);
|
|
796
788
|
};
|
|
797
789
|
|
|
798
790
|
// src/components/UniformRichText/nodes/ListRichTextNode.tsx
|
|
799
|
-
import { getRichTextListStart } from "@uniformdev/richtext";
|
|
800
791
|
import React14 from "react";
|
|
801
792
|
var ListRichTextNode = ({ children, node }) => {
|
|
802
793
|
const { tag, start } = node;
|
|
803
794
|
const ListTag = tag != null ? tag : "ul";
|
|
804
|
-
|
|
805
|
-
return /* @__PURE__ */ React14.createElement(
|
|
806
|
-
ListTag,
|
|
807
|
-
{
|
|
808
|
-
start: typeof normalizedStart === "number" && Number.isFinite(normalizedStart) && normalizedStart > 0 ? normalizedStart : void 0
|
|
809
|
-
},
|
|
810
|
-
children
|
|
811
|
-
);
|
|
795
|
+
return /* @__PURE__ */ React14.createElement(ListTag, { start: Number.isFinite(start) && start > 0 ? start : void 0 }, children);
|
|
812
796
|
};
|
|
813
797
|
|
|
814
798
|
// src/components/UniformRichText/nodes/ParagraphRichTextNode.tsx
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/canvas-react",
|
|
3
|
-
"version": "20.75.1-alpha.
|
|
3
|
+
"version": "20.75.1-alpha.7+ad3780cc13",
|
|
4
4
|
"description": "React SDK for Uniform Canvas",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -44,10 +44,10 @@
|
|
|
44
44
|
"apidocs-extract": "api-extractor run --local"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@uniformdev/canvas": "20.75.1-alpha.
|
|
48
|
-
"@uniformdev/context": "20.75.1-alpha.
|
|
49
|
-
"@uniformdev/context-react": "20.75.1-alpha.
|
|
50
|
-
"@uniformdev/richtext": "20.75.1-alpha.
|
|
47
|
+
"@uniformdev/canvas": "20.75.1-alpha.7+ad3780cc13",
|
|
48
|
+
"@uniformdev/context": "20.75.1-alpha.7+ad3780cc13",
|
|
49
|
+
"@uniformdev/context-react": "20.75.1-alpha.7+ad3780cc13",
|
|
50
|
+
"@uniformdev/richtext": "20.75.1-alpha.7+ad3780cc13"
|
|
51
51
|
},
|
|
52
52
|
"peerDependencies": {
|
|
53
53
|
"immer": ">= 10",
|
|
@@ -66,5 +66,5 @@
|
|
|
66
66
|
"publishConfig": {
|
|
67
67
|
"access": "public"
|
|
68
68
|
},
|
|
69
|
-
"gitHead": "
|
|
69
|
+
"gitHead": "ad3780cc13fc3e5f328db96ccd428109e09248ae"
|
|
70
70
|
}
|