@uniformdev/canvas-react 20.75.1-alpha.0 → 20.76.1-alpha.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/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 +18 -2
- package/dist/index.js +32 -16
- package/dist/index.mjs +18 -2
- 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,18 +781,34 @@ var LinebreakRichTextNode = () => {
|
|
|
781
781
|
};
|
|
782
782
|
|
|
783
783
|
// src/components/UniformRichText/nodes/ListItemRichTextNode.tsx
|
|
784
|
+
import { getRichTextListItemValue } from "@uniformdev/richtext";
|
|
784
785
|
import React13 from "react";
|
|
785
786
|
var ListItemRichTextNode = ({ children, node }) => {
|
|
786
787
|
const { value } = node;
|
|
787
|
-
|
|
788
|
+
const normalizedValue = getRichTextListItemValue(value);
|
|
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
|
+
);
|
|
788
796
|
};
|
|
789
797
|
|
|
790
798
|
// src/components/UniformRichText/nodes/ListRichTextNode.tsx
|
|
799
|
+
import { getRichTextListStart } from "@uniformdev/richtext";
|
|
791
800
|
import React14 from "react";
|
|
792
801
|
var ListRichTextNode = ({ children, node }) => {
|
|
793
802
|
const { tag, start } = node;
|
|
794
803
|
const ListTag = tag != null ? tag : "ul";
|
|
795
|
-
|
|
804
|
+
const normalizedStart = getRichTextListStart(start);
|
|
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
|
+
);
|
|
796
812
|
};
|
|
797
813
|
|
|
798
814
|
// 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_richtext8 = 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_richtext7 = require("@uniformdev/richtext");
|
|
767
767
|
var import_react21 = __toESM(require("react"));
|
|
768
768
|
|
|
769
769
|
// src/components/UniformRichText/nodes/AssetRichTextNode.tsx
|
|
@@ -801,41 +801,57 @@ var LinebreakRichTextNode = () => {
|
|
|
801
801
|
};
|
|
802
802
|
|
|
803
803
|
// src/components/UniformRichText/nodes/ListItemRichTextNode.tsx
|
|
804
|
+
var import_richtext2 = require("@uniformdev/richtext");
|
|
804
805
|
var import_react15 = __toESM(require("react"));
|
|
805
806
|
var ListItemRichTextNode = ({ children, node }) => {
|
|
806
807
|
const { value } = node;
|
|
807
|
-
|
|
808
|
+
const normalizedValue = (0, import_richtext2.getRichTextListItemValue)(value);
|
|
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
|
+
);
|
|
808
816
|
};
|
|
809
817
|
|
|
810
818
|
// src/components/UniformRichText/nodes/ListRichTextNode.tsx
|
|
819
|
+
var import_richtext3 = require("@uniformdev/richtext");
|
|
811
820
|
var import_react16 = __toESM(require("react"));
|
|
812
821
|
var ListRichTextNode = ({ children, node }) => {
|
|
813
822
|
const { tag, start } = node;
|
|
814
823
|
const ListTag = tag != null ? tag : "ul";
|
|
815
|
-
|
|
824
|
+
const normalizedStart = (0, import_richtext3.getRichTextListStart)(start);
|
|
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
|
+
);
|
|
816
832
|
};
|
|
817
833
|
|
|
818
834
|
// src/components/UniformRichText/nodes/ParagraphRichTextNode.tsx
|
|
819
|
-
var
|
|
835
|
+
var import_richtext4 = require("@uniformdev/richtext");
|
|
820
836
|
var import_react17 = __toESM(require("react"));
|
|
821
837
|
var ParagraphRichTextNode = ({ children, node }) => {
|
|
822
838
|
const { format, direction } = node;
|
|
823
839
|
return /* @__PURE__ */ import_react17.default.createElement(
|
|
824
840
|
"p",
|
|
825
841
|
{
|
|
826
|
-
dir: (0,
|
|
827
|
-
style: (0,
|
|
842
|
+
dir: (0, import_richtext4.isPureDirection)(direction) ? direction : void 0,
|
|
843
|
+
style: (0, import_richtext4.isPureTextAlign)(format) ? { textAlign: format } : void 0
|
|
828
844
|
},
|
|
829
845
|
children
|
|
830
846
|
);
|
|
831
847
|
};
|
|
832
848
|
|
|
833
849
|
// src/components/UniformRichText/nodes/TableCellRichTextNode.tsx
|
|
834
|
-
var
|
|
850
|
+
var import_richtext5 = require("@uniformdev/richtext");
|
|
835
851
|
var import_react18 = __toESM(require("react"));
|
|
836
852
|
var TableCellRichTextNode = ({ children, node }) => {
|
|
837
853
|
const { headerState } = node;
|
|
838
|
-
const TableCellTag = (0,
|
|
854
|
+
const TableCellTag = (0, import_richtext5.getRichTextTagFromTableCellHeaderState)(headerState);
|
|
839
855
|
return /* @__PURE__ */ import_react18.default.createElement(TableCellTag, null, children);
|
|
840
856
|
};
|
|
841
857
|
|
|
@@ -846,18 +862,18 @@ var TabRichTextNode = () => {
|
|
|
846
862
|
};
|
|
847
863
|
|
|
848
864
|
// src/components/UniformRichText/nodes/TextRichTextNode.tsx
|
|
849
|
-
var
|
|
865
|
+
var import_richtext6 = require("@uniformdev/richtext");
|
|
850
866
|
var import_react20 = __toESM(require("react"));
|
|
851
867
|
var TextRichTextNode = ({ node }) => {
|
|
852
868
|
const { text, format } = node;
|
|
853
|
-
const tags = (0,
|
|
869
|
+
const tags = (0, import_richtext6.getRichTextTagsFromTextFormat)(format);
|
|
854
870
|
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);
|
|
855
871
|
};
|
|
856
872
|
|
|
857
873
|
// src/components/UniformRichText/UniformRichTextNode.tsx
|
|
858
874
|
function UniformRichTextNode({ node, ...props }) {
|
|
859
875
|
var _a;
|
|
860
|
-
if (!(0,
|
|
876
|
+
if (!(0, import_richtext7.isRichTextNode)(node)) return null;
|
|
861
877
|
let NodeRenderer = (_a = props.resolveRichTextRenderer) == null ? void 0 : _a.call(props, node);
|
|
862
878
|
if (typeof NodeRenderer === "undefined") {
|
|
863
879
|
NodeRenderer = resolveRichTextDefaultRenderer(node);
|
|
@@ -907,10 +923,10 @@ var UniformRichText = import_react22.default.forwardRef(function UniformRichText
|
|
|
907
923
|
const placeholderProp = placeholder != null ? placeholder : contextualEditingDefaultPlaceholder;
|
|
908
924
|
const computedPlaceholder = typeof placeholderProp === "function" ? placeholderProp({ id: parameterId }) : placeholderProp;
|
|
909
925
|
const value = parameter.value;
|
|
910
|
-
if (!value || !(0,
|
|
911
|
-
if (!isContextualEditing && (0,
|
|
926
|
+
if (!value || !(0, import_richtext8.isRichTextValue)(value)) return null;
|
|
927
|
+
if (!isContextualEditing && (0, import_richtext8.isRichTextValueConsideredEmpty)(value)) return null;
|
|
912
928
|
if (!Tag) {
|
|
913
|
-
return isContextualEditing && (0,
|
|
929
|
+
return isContextualEditing && (0, import_richtext8.isRichTextValueConsideredEmpty)(value) ? /* @__PURE__ */ import_react22.default.createElement(
|
|
914
930
|
"p",
|
|
915
931
|
{
|
|
916
932
|
...{
|
|
@@ -933,7 +949,7 @@ var UniformRichText = import_react22.default.forwardRef(function UniformRichText
|
|
|
933
949
|
[import_canvas11.ATTRIBUTE_PARAMETER_TYPE]: "richText"
|
|
934
950
|
} : {}
|
|
935
951
|
},
|
|
936
|
-
(0,
|
|
952
|
+
(0, import_richtext8.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 })
|
|
937
953
|
);
|
|
938
954
|
});
|
|
939
955
|
|
package/dist/index.mjs
CHANGED
|
@@ -781,18 +781,34 @@ var LinebreakRichTextNode = () => {
|
|
|
781
781
|
};
|
|
782
782
|
|
|
783
783
|
// src/components/UniformRichText/nodes/ListItemRichTextNode.tsx
|
|
784
|
+
import { getRichTextListItemValue } from "@uniformdev/richtext";
|
|
784
785
|
import React13 from "react";
|
|
785
786
|
var ListItemRichTextNode = ({ children, node }) => {
|
|
786
787
|
const { value } = node;
|
|
787
|
-
|
|
788
|
+
const normalizedValue = getRichTextListItemValue(value);
|
|
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
|
+
);
|
|
788
796
|
};
|
|
789
797
|
|
|
790
798
|
// src/components/UniformRichText/nodes/ListRichTextNode.tsx
|
|
799
|
+
import { getRichTextListStart } from "@uniformdev/richtext";
|
|
791
800
|
import React14 from "react";
|
|
792
801
|
var ListRichTextNode = ({ children, node }) => {
|
|
793
802
|
const { tag, start } = node;
|
|
794
803
|
const ListTag = tag != null ? tag : "ul";
|
|
795
|
-
|
|
804
|
+
const normalizedStart = getRichTextListStart(start);
|
|
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
|
+
);
|
|
796
812
|
};
|
|
797
813
|
|
|
798
814
|
// 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.
|
|
3
|
+
"version": "20.76.1-alpha.3+61820b0b3e",
|
|
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.
|
|
48
|
-
"@uniformdev/context": "20.
|
|
49
|
-
"@uniformdev/context-react": "20.
|
|
50
|
-
"@uniformdev/richtext": "20.
|
|
47
|
+
"@uniformdev/canvas": "20.76.1-alpha.3+61820b0b3e",
|
|
48
|
+
"@uniformdev/context": "20.76.1-alpha.3+61820b0b3e",
|
|
49
|
+
"@uniformdev/context-react": "20.76.1-alpha.3+61820b0b3e",
|
|
50
|
+
"@uniformdev/richtext": "20.76.1-alpha.3+61820b0b3e"
|
|
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": "61820b0b3e1be2512bcfad6bd0a30092ffa7f9a3"
|
|
70
70
|
}
|