@uniformdev/canvas-react 20.75.1-alpha.16 → 20.76.2

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.
@@ -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
- * @default "span"
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
- * @default false
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
- * @default undefined
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
- * @default "(value) => value"
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
- * @default "span"
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
- * @default false
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
- * @default undefined
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
- * @default "(value) => value"
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-CzdaUBnC.mjs';
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-CzdaUBnC.js';
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-CzdaUBnC.mjs';
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
- * @default "div"
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
- * @default undefined
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
- * @default "div"
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
- * @default undefined
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
- * @default false
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-CzdaUBnC.js';
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
- * @default "div"
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
- * @default undefined
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
- * @default "div"
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
- * @default undefined
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
- * @default false
899
+ * @defaultValue false
900
900
  **/
901
901
  global?: boolean;
902
902
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniformdev/canvas-react",
3
- "version": "20.75.1-alpha.16+4e56d1cd21",
3
+ "version": "20.76.2",
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.16+4e56d1cd21",
48
- "@uniformdev/context": "20.75.1-alpha.16+4e56d1cd21",
49
- "@uniformdev/context-react": "20.75.1-alpha.16+4e56d1cd21",
50
- "@uniformdev/richtext": "20.75.1-alpha.16+4e56d1cd21"
47
+ "@uniformdev/canvas": "20.76.2",
48
+ "@uniformdev/context": "20.76.2",
49
+ "@uniformdev/context-react": "20.76.2",
50
+ "@uniformdev/richtext": "20.76.2"
51
51
  },
52
52
  "peerDependencies": {
53
53
  "immer": ">= 10",
@@ -66,5 +66,5 @@
66
66
  "publishConfig": {
67
67
  "access": "public"
68
68
  },
69
- "gitHead": "4e56d1cd21f2d4a02b13d733e51fb71441cac298"
69
+ "gitHead": "d977f0afc2aa754b18053d9455e007712e712dbb"
70
70
  }