@sitecore-content-sdk/react 1.4.0-canary.2 → 1.4.0-canary.21

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.
@@ -11,7 +11,7 @@ const react_1 = __importDefault(require("react"));
11
11
  * @public
12
12
  */
13
13
  const DefaultEmptyFieldEditingComponentText = (props) => {
14
- return react_1.default.createElement(props.tag || 'span', props, '[No text in field]');
14
+ return react_1.default.createElement(props.tag || 'span', Object.assign(Object.assign({}, props), { suppressHydrationWarning: true }), '[No text in field]');
15
15
  };
16
16
  exports.DefaultEmptyFieldEditingComponentText = DefaultEmptyFieldEditingComponentText;
17
17
  /**
@@ -27,6 +27,6 @@ const DefaultEmptyFieldEditingComponentImage = (props) => {
27
27
  maxHeight: '400px',
28
28
  cursor: 'pointer',
29
29
  };
30
- return (react_1.default.createElement("img", Object.assign({}, props, { alt: "", src: 'data:image/svg+xml,%3Csvg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 240 240" style="enable-background:new 0 0 240 240;" xml:space="preserve"%3E%3Cstyle type="text/css"%3E .st0%7Bfill:none;%7D .st1%7Bfill:%23969696;%7D .st2%7Bfill:%23FFFFFF;%7D .st3%7Bfill:%23FFFFFF;stroke:%23FFFFFF;stroke-width:0.75;stroke-miterlimit:10;%7D%0A%3C/style%3E%3Cg%3E%3Crect class="st0" width="240" height="240"/%3E%3Cg%3E%3Cg%3E%3Crect x="20" y="20" class="st1" width="200" height="200"/%3E%3C/g%3E%3Cg%3E%3Ccircle class="st2" cx="174" cy="67" r="14"/%3E%3Cpath class="st2" d="M174,54c7.17,0,13,5.83,13,13s-5.83,13-13,13s-13-5.83-13-13S166.83,54,174,54 M174,52 c-8.28,0-15,6.72-15,15s6.72,15,15,15s15-6.72,15-15S182.28,52,174,52L174,52z"/%3E%3C/g%3E%3Cpolyline class="st3" points="29.5,179.25 81.32,122.25 95.41,137.75 137.23,91.75 209.5,179.75 "/%3E%3C/g%3E%3C/g%3E%3C/svg%3E', className: `scEmptyImage ${props.className || ''}`, style: inlineStyles })));
30
+ return (react_1.default.createElement("img", Object.assign({}, props, { suppressContentEditableWarning: true, alt: "", src: 'data:image/svg+xml,%3Csvg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 240 240" style="enable-background:new 0 0 240 240;" xml:space="preserve"%3E%3Cstyle type="text/css"%3E .st0%7Bfill:none;%7D .st1%7Bfill:%23969696;%7D .st2%7Bfill:%23FFFFFF;%7D .st3%7Bfill:%23FFFFFF;stroke:%23FFFFFF;stroke-width:0.75;stroke-miterlimit:10;%7D%0A%3C/style%3E%3Cg%3E%3Crect class="st0" width="240" height="240"/%3E%3Cg%3E%3Cg%3E%3Crect x="20" y="20" class="st1" width="200" height="200"/%3E%3C/g%3E%3Cg%3E%3Ccircle class="st2" cx="174" cy="67" r="14"/%3E%3Cpath class="st2" d="M174,54c7.17,0,13,5.83,13,13s-5.83,13-13,13s-13-5.83-13-13S166.83,54,174,54 M174,52 c-8.28,0-15,6.72-15,15s6.72,15,15,15s15-6.72,15-15S182.28,52,174,52L174,52z"/%3E%3C/g%3E%3Cpolyline class="st3" points="29.5,179.25 81.32,122.25 95.41,137.75 137.23,91.75 209.5,179.75 "/%3E%3C/g%3E%3C/g%3E%3C/svg%3E', className: `scEmptyImage ${props.className || ''}`, style: inlineStyles })));
31
31
  };
32
32
  exports.DefaultEmptyFieldEditingComponentImage = DefaultEmptyFieldEditingComponentImage;
@@ -68,8 +68,13 @@ const DesignLibraryPreviewEvents = ({ designLibraryStatus, component, }) => {
68
68
  const unsubUpdate = addComponentUpdateHandler(component, (updated) => {
69
69
  _updateServerComponentAction({ uid: updated.uid, updatedComponent: updated });
70
70
  });
71
+ // eslint-disable-next-line no-unused-vars
72
+ const unsubPreview = addServerComponentPreviewHandler((_eventArgs) => {
73
+ console.error('Component Library variant generation for server components is temporarily disabled.');
74
+ });
71
75
  return () => {
72
76
  unsubUpdate && unsubUpdate();
77
+ unsubPreview && unsubPreview();
73
78
  };
74
79
  }, [component, designLibraryStatus]);
75
80
  return react_1.default.createElement(react_1.default.Fragment, null);
@@ -79,7 +79,9 @@ const DesignLibraryServer = async ({ page, componentMap, rendering, loadServerIm
79
79
  return null;
80
80
  }
81
81
  const isVariantGeneration = (_a = page.mode.designLibrary) === null || _a === void 0 ? void 0 : _a.isVariantGeneration;
82
- if (isVariantGeneration) {
82
+ // Temporarily disable server side variant generation due to potential security vulerability
83
+ // eslint-disable-next-line no-constant-condition
84
+ if (isVariantGeneration && false) {
83
85
  return (react_1.default.createElement(exports.DesignLibraryServerVariantGeneration, { page: page, rendering: rendering, loadServerImportMap: loadServerImportMap, componentMap: componentMap }));
84
86
  }
85
87
  return (react_1.default.createElement(exports.DesignLibraryServerPreview, { page: page, rendering: rendering, componentMap: componentMap }));
@@ -52,7 +52,7 @@ const AppPlaceholder = (props) => {
52
52
  .filter((element) => element);
53
53
  const finalRendering = page.mode.isEditing
54
54
  ? [
55
- react_1.default.createElement(PlaceholderMetadata_1.PlaceholderMetadata, { key: parentRendering.uid, placeholderName: props.name, rendering: parentRendering }, components),
55
+ react_1.default.createElement(PlaceholderMetadata_1.PlaceholderMetadata, { key: parentRendering.uid || 'placeholder-metadata-root', placeholderName: props.name, rendering: parentRendering }, components),
56
56
  ]
57
57
  : components;
58
58
  const placeholderEmpty = !placeholderRenderings.length;
@@ -69,7 +69,7 @@ _a, ref) => {
69
69
  }
70
70
  const htmlProps = Object.assign({ dangerouslySetInnerHTML: {
71
71
  __html: field.value,
72
- }, ref }, otherProps);
72
+ }, ref, suppressHydrationWarning: field.metadata ? true : undefined }, otherProps);
73
73
  return react_1.default.createElement(tag || 'div', htmlProps);
74
74
  }), { defaultEmptyFieldEditingComponent: DefaultEmptyFieldEditingComponents_1.DefaultEmptyFieldEditingComponentText, isForwardRef: true }), true);
75
75
  exports.RichText.displayName = 'RichText';
@@ -59,7 +59,10 @@ exports.Text = (0, withFieldMetadata_1.withFieldMetadata)((0, withEmptyFieldEdit
59
59
  else {
60
60
  children = output;
61
61
  }
62
- if (tag || !encode) {
62
+ if (field.metadata) {
63
+ return react_1.default.createElement(tag || 'span', Object.assign(Object.assign({}, htmlProps), { suppressHydrationWarning: true }), children);
64
+ }
65
+ else if (tag || !encode) {
63
66
  return react_1.default.createElement(tag || 'span', htmlProps, children);
64
67
  }
65
68
  else {
@@ -54,7 +54,7 @@ function withEmptyFieldEditingComponent(FieldComponent, options) {
54
54
  if (!props.emptyFieldEditingComponent) {
55
55
  resolvedProps = Object.assign(Object.assign({}, props), { editable: undefined, field: undefined });
56
56
  }
57
- return react_1.default.createElement(Component, Object.assign({}, resolvedProps));
57
+ return react_1.default.createElement(Component, Object.assign({}, resolvedProps, { suppressHydrationWarning: true }));
58
58
  }
59
59
  return null;
60
60
  };
@@ -5,7 +5,7 @@ import React from 'react';
5
5
  * @public
6
6
  */
7
7
  export const DefaultEmptyFieldEditingComponentText = (props) => {
8
- return React.createElement(props.tag || 'span', props, '[No text in field]');
8
+ return React.createElement(props.tag || 'span', Object.assign(Object.assign({}, props), { suppressHydrationWarning: true }), '[No text in field]');
9
9
  };
10
10
  /**
11
11
  * The DefaultEmptyFieldEditingComponentImage component.
@@ -20,5 +20,5 @@ export const DefaultEmptyFieldEditingComponentImage = (props) => {
20
20
  maxHeight: '400px',
21
21
  cursor: 'pointer',
22
22
  };
23
- return (React.createElement("img", Object.assign({}, props, { alt: "", src: 'data:image/svg+xml,%3Csvg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 240 240" style="enable-background:new 0 0 240 240;" xml:space="preserve"%3E%3Cstyle type="text/css"%3E .st0%7Bfill:none;%7D .st1%7Bfill:%23969696;%7D .st2%7Bfill:%23FFFFFF;%7D .st3%7Bfill:%23FFFFFF;stroke:%23FFFFFF;stroke-width:0.75;stroke-miterlimit:10;%7D%0A%3C/style%3E%3Cg%3E%3Crect class="st0" width="240" height="240"/%3E%3Cg%3E%3Cg%3E%3Crect x="20" y="20" class="st1" width="200" height="200"/%3E%3C/g%3E%3Cg%3E%3Ccircle class="st2" cx="174" cy="67" r="14"/%3E%3Cpath class="st2" d="M174,54c7.17,0,13,5.83,13,13s-5.83,13-13,13s-13-5.83-13-13S166.83,54,174,54 M174,52 c-8.28,0-15,6.72-15,15s6.72,15,15,15s15-6.72,15-15S182.28,52,174,52L174,52z"/%3E%3C/g%3E%3Cpolyline class="st3" points="29.5,179.25 81.32,122.25 95.41,137.75 137.23,91.75 209.5,179.75 "/%3E%3C/g%3E%3C/g%3E%3C/svg%3E', className: `scEmptyImage ${props.className || ''}`, style: inlineStyles })));
23
+ return (React.createElement("img", Object.assign({}, props, { suppressContentEditableWarning: true, alt: "", src: 'data:image/svg+xml,%3Csvg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 240 240" style="enable-background:new 0 0 240 240;" xml:space="preserve"%3E%3Cstyle type="text/css"%3E .st0%7Bfill:none;%7D .st1%7Bfill:%23969696;%7D .st2%7Bfill:%23FFFFFF;%7D .st3%7Bfill:%23FFFFFF;stroke:%23FFFFFF;stroke-width:0.75;stroke-miterlimit:10;%7D%0A%3C/style%3E%3Cg%3E%3Crect class="st0" width="240" height="240"/%3E%3Cg%3E%3Cg%3E%3Crect x="20" y="20" class="st1" width="200" height="200"/%3E%3C/g%3E%3Cg%3E%3Ccircle class="st2" cx="174" cy="67" r="14"/%3E%3Cpath class="st2" d="M174,54c7.17,0,13,5.83,13,13s-5.83,13-13,13s-13-5.83-13-13S166.83,54,174,54 M174,52 c-8.28,0-15,6.72-15,15s6.72,15,15,15s15-6.72,15-15S182.28,52,174,52L174,52z"/%3E%3C/g%3E%3Cpolyline class="st3" points="29.5,179.25 81.32,122.25 95.41,137.75 137.23,91.75 209.5,179.75 "/%3E%3C/g%3E%3C/g%3E%3C/svg%3E', className: `scEmptyImage ${props.className || ''}`, style: inlineStyles })));
24
24
  };
@@ -31,8 +31,13 @@ export const DesignLibraryPreviewEvents = ({ designLibraryStatus, component, })
31
31
  const unsubUpdate = addComponentUpdateHandler(component, (updated) => {
32
32
  _updateServerComponentAction({ uid: updated.uid, updatedComponent: updated });
33
33
  });
34
+ // eslint-disable-next-line no-unused-vars
35
+ const unsubPreview = addServerComponentPreviewHandler((_eventArgs) => {
36
+ console.error('Component Library variant generation for server components is temporarily disabled.');
37
+ });
34
38
  return () => {
35
39
  unsubUpdate && unsubUpdate();
40
+ unsubPreview && unsubPreview();
36
41
  };
37
42
  }, [component, designLibraryStatus]);
38
43
  return React.createElement(React.Fragment, null);
@@ -39,7 +39,9 @@ export const DesignLibraryServer = async ({ page, componentMap, rendering, loadS
39
39
  return null;
40
40
  }
41
41
  const isVariantGeneration = (_a = page.mode.designLibrary) === null || _a === void 0 ? void 0 : _a.isVariantGeneration;
42
- if (isVariantGeneration) {
42
+ // Temporarily disable server side variant generation due to potential security vulerability
43
+ // eslint-disable-next-line no-constant-condition
44
+ if (isVariantGeneration && false) {
43
45
  return (React.createElement(DesignLibraryServerVariantGeneration, { page: page, rendering: rendering, loadServerImportMap: loadServerImportMap, componentMap: componentMap }));
44
46
  }
45
47
  return (React.createElement(DesignLibraryServerPreview, { page: page, rendering: rendering, componentMap: componentMap }));
@@ -46,7 +46,7 @@ export const AppPlaceholder = (props) => {
46
46
  .filter((element) => element);
47
47
  const finalRendering = page.mode.isEditing
48
48
  ? [
49
- React.createElement(PlaceholderMetadata, { key: parentRendering.uid, placeholderName: props.name, rendering: parentRendering }, components),
49
+ React.createElement(PlaceholderMetadata, { key: parentRendering.uid || 'placeholder-metadata-root', placeholderName: props.name, rendering: parentRendering }, components),
50
50
  ]
51
51
  : components;
52
52
  const placeholderEmpty = !placeholderRenderings.length;
@@ -33,7 +33,7 @@ _a, ref) => {
33
33
  }
34
34
  const htmlProps = Object.assign({ dangerouslySetInnerHTML: {
35
35
  __html: field.value,
36
- }, ref }, otherProps);
36
+ }, ref, suppressHydrationWarning: field.metadata ? true : undefined }, otherProps);
37
37
  return React.createElement(tag || 'div', htmlProps);
38
38
  }), { defaultEmptyFieldEditingComponent: DefaultEmptyFieldEditingComponentText, isForwardRef: true }), true);
39
39
  RichText.displayName = 'RichText';
@@ -53,7 +53,10 @@ export const Text = withFieldMetadata(withEmptyFieldEditingComponent((_a) => {
53
53
  else {
54
54
  children = output;
55
55
  }
56
- if (tag || !encode) {
56
+ if (field.metadata) {
57
+ return React.createElement(tag || 'span', Object.assign(Object.assign({}, htmlProps), { suppressHydrationWarning: true }), children);
58
+ }
59
+ else if (tag || !encode) {
57
60
  return React.createElement(tag || 'span', htmlProps, children);
58
61
  }
59
62
  else {
@@ -18,7 +18,7 @@ export function withEmptyFieldEditingComponent(FieldComponent, options) {
18
18
  if (!props.emptyFieldEditingComponent) {
19
19
  resolvedProps = Object.assign(Object.assign({}, props), { editable: undefined, field: undefined });
20
20
  }
21
- return React.createElement(Component, Object.assign({}, resolvedProps));
21
+ return React.createElement(Component, Object.assign({}, resolvedProps, { suppressHydrationWarning: true }));
22
22
  }
23
23
  return null;
24
24
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sitecore-content-sdk/react",
3
- "version": "1.4.0-canary.2",
3
+ "version": "1.4.0-canary.21",
4
4
  "main": "dist/cjs/index.js",
5
5
  "module": "dist/esm/index.js",
6
6
  "sideEffects": false,
@@ -20,7 +20,7 @@
20
20
  "api-extractor:verify": "api-extractor run"
21
21
  },
22
22
  "engines": {
23
- "node": ">=22"
23
+ "node": ">=24"
24
24
  },
25
25
  "author": {
26
26
  "name": "Sitecore Corporation",
@@ -39,7 +39,7 @@
39
39
  "@types/chai": "^5.2.2",
40
40
  "@types/chai-string": "^1.4.5",
41
41
  "@types/mocha": "^10.0.10",
42
- "@types/node": "22.15.14",
42
+ "@types/node": "^24.10.4",
43
43
  "@types/proxyquire": "^1.3.31",
44
44
  "@types/react": "^19.2.7",
45
45
  "@types/react-dom": "^19.2.3",
@@ -76,13 +76,13 @@
76
76
  "react-dom": "^19.2.1"
77
77
  },
78
78
  "dependencies": {
79
- "@sitecore-content-sdk/core": "1.4.0-canary.2",
80
- "@sitecore-content-sdk/search": "1.4.0-canary.2",
79
+ "@sitecore-content-sdk/core": "1.4.0-canary.21",
80
+ "@sitecore-content-sdk/search": "1.4.0-canary.21",
81
81
  "fast-deep-equal": "^3.1.3"
82
82
  },
83
83
  "description": "",
84
84
  "types": "types/index.d.ts",
85
- "gitHead": "a566163f138188b5b3d22dbf2d87f373a1eb0715",
85
+ "gitHead": "3a549b8e4333e1268b7e6ac9bd69c15ee503caae",
86
86
  "files": [
87
87
  "dist",
88
88
  "types",
@@ -1 +1 @@
1
- {"version":3,"file":"DefaultEmptyFieldEditingComponents.d.ts","sourceRoot":"","sources":["../../src/components/DefaultEmptyFieldEditingComponents.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B;;;;GAIG;AACH,eAAO,MAAM,qCAAqC,EAAE,KAAK,CAAC,EAAE,CAAC;IAC3D,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC;IACvB,GAAG,CAAC,EAAE,MAAM,CAAC;CACd,CAEA,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,sCAAsC,EAAE,KAAK,CAAC,EAAE,CAAC;IAC5D,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC;IACvB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB,CAkBA,CAAC"}
1
+ {"version":3,"file":"DefaultEmptyFieldEditingComponents.d.ts","sourceRoot":"","sources":["../../src/components/DefaultEmptyFieldEditingComponents.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B;;;;GAIG;AACH,eAAO,MAAM,qCAAqC,EAAE,KAAK,CAAC,EAAE,CAAC;IAC3D,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC;IACvB,GAAG,CAAC,EAAE,MAAM,CAAC;CACd,CAMA,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,sCAAsC,EAAE,KAAK,CAAC,EAAE,CAAC;IAC5D,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC;IACvB,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB,CAmBA,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"DesignLibraryClientEvents.d.ts","sourceRoot":"","sources":["../../../src/components/DesignLibrary/DesignLibraryClientEvents.tsx"],"names":[],"mappings":"AACA,OAAO,KAAoB,MAAM,OAAO,CAAC;AAIzC,OAAO,EACL,+BAA+B,EAC/B,yCAAyC,EAC1C,MAAM,UAAU,CAAC;AAYlB,eAAO,MAAM,kBAAkB,GAAI,OAAO,GAAG,SAS5C,CAAC;AAEF;;;;;;GAMG;AACH,eAAO,MAAM,0BAA0B,GAAI,qCAGxC,+BAA+B,sBAgBjC,CAAC;AAEF;;;;;;;GAOG;AACH,eAAO,MAAM,oCAAoC,GAAI,sFAMlD,yCAAyC,sBA6C3C,CAAC"}
1
+ {"version":3,"file":"DesignLibraryClientEvents.d.ts","sourceRoot":"","sources":["../../../src/components/DesignLibrary/DesignLibraryClientEvents.tsx"],"names":[],"mappings":"AACA,OAAO,KAAoB,MAAM,OAAO,CAAC;AAIzC,OAAO,EACL,+BAA+B,EAC/B,yCAAyC,EAC1C,MAAM,UAAU,CAAC;AAYlB,eAAO,MAAM,kBAAkB,GAAI,OAAO,GAAG,SAS5C,CAAC;AAEF;;;;;;GAMG;AACH,eAAO,MAAM,0BAA0B,GAAI,qCAGxC,+BAA+B,sBAwBjC,CAAC;AAEF;;;;;;;GAOG;AACH,eAAO,MAAM,oCAAoC,GAAI,sFAMlD,yCAAyC,sBA6C3C,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"DesignLibraryServer.d.ts","sourceRoot":"","sources":["../../../src/components/DesignLibrary/DesignLibraryServer.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,OAAO,CAAC;AAiB1B,OAAO,EAEL,wBAAwB,EACxB,+BAA+B,EAC/B,yCAAyC,EAC1C,MAAM,UAAU,CAAC;AAOlB,eAAO,MAAM,kBAAkB,GAAU,OAAO,GAAG,kBAUlD,CAAC;AAEF;;;;;;;;;;GAUG;AACH,eAAO,MAAM,mBAAmB,GAAU,yDAKvC,wBAAwB,sCAqB1B,CAAC;AAEF;;;;;;;;;GASG;AACH,eAAO,MAAM,oCAAoC,GAAU,yDAKxD,yCAAyC,+BA4F3C,CAAC;AAEF;;;;;;;;;GASG;AACH,eAAO,MAAM,0BAA0B,GAAU,oCAI9C,+BAA+B,+BAyCjC,CAAC"}
1
+ {"version":3,"file":"DesignLibraryServer.d.ts","sourceRoot":"","sources":["../../../src/components/DesignLibrary/DesignLibraryServer.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,OAAO,CAAC;AAiB1B,OAAO,EAEL,wBAAwB,EACxB,+BAA+B,EAC/B,yCAAyC,EAC1C,MAAM,UAAU,CAAC;AAOlB,eAAO,MAAM,kBAAkB,GAAU,OAAO,GAAG,kBAUlD,CAAC;AAEF;;;;;;;;;;GAUG;AACH,eAAO,MAAM,mBAAmB,GAAU,yDAKvC,wBAAwB,sCAuB1B,CAAC;AAEF;;;;;;;;;GASG;AACH,eAAO,MAAM,oCAAoC,GAAU,yDAKxD,yCAAyC,+BA4F3C,CAAC;AAEF;;;;;;;;;GASG;AACH,eAAO,MAAM,0BAA0B,GAAU,oCAI9C,+BAA+B,+BAyCjC,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"RichText.d.ts","sourceRoot":"","sources":["../../src/components/RichText.tsx"],"names":[],"mappings":"AACA,OAAO,KAAmC,MAAM,OAAO,CAAC;AAIxD,OAAO,EAAE,kBAAkB,EAAE,MAAM,eAAe,CAAC;AACnD,OAAO,EAAE,aAAa,EAAqB,MAAM,mCAAmC,CAAC;AAErF;;;GAGG;AACH,MAAM,WAAW,aAAc,SAAQ,aAAa;IAClD,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED;;;GAGG;AACH,MAAM,WAAW,aAAc,SAAQ,kBAAkB,CAAC,aAAa,CAAC;IACtE,CAAC,cAAc,EAAE,MAAM,GAAG,OAAO,CAAC;IAClC,gCAAgC;IAChC,KAAK,CAAC,EAAE,aAAa,CAAC;IACtB;;;OAGG;IACH,GAAG,CAAC,EAAE,MAAM,CAAC;CACd;AAED;;;;GAIG;AACH,eAAO,MAAM,QAAQ,EAAE,KAAK,CAAC,EAAE,CAAC,aAAa,CA0B5C,CAAC"}
1
+ {"version":3,"file":"RichText.d.ts","sourceRoot":"","sources":["../../src/components/RichText.tsx"],"names":[],"mappings":"AACA,OAAO,KAAmC,MAAM,OAAO,CAAC;AAIxD,OAAO,EAAE,kBAAkB,EAAE,MAAM,eAAe,CAAC;AACnD,OAAO,EAAE,aAAa,EAAqB,MAAM,mCAAmC,CAAC;AAErF;;;GAGG;AACH,MAAM,WAAW,aAAc,SAAQ,aAAa;IAClD,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED;;;GAGG;AACH,MAAM,WAAW,aAAc,SAAQ,kBAAkB,CAAC,aAAa,CAAC;IACtE,CAAC,cAAc,EAAE,MAAM,GAAG,OAAO,CAAC;IAClC,gCAAgC;IAChC,KAAK,CAAC,EAAE,aAAa,CAAC;IACtB;;;OAGG;IACH,GAAG,CAAC,EAAE,MAAM,CAAC;CACd;AAED;;;;GAIG;AACH,eAAO,MAAM,QAAQ,EAAE,KAAK,CAAC,EAAE,CAAC,aAAa,CA2B5C,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"Text.d.ts","sourceRoot":"","sources":["../../src/components/Text.tsx"],"names":[],"mappings":"AACA,OAAO,KAAuB,MAAM,OAAO,CAAC;AAI5C,OAAO,EAAE,kBAAkB,EAAE,MAAM,eAAe,CAAC;AACnD,OAAO,EAAE,aAAa,EAAqB,MAAM,mCAAmC,CAAC;AAErF;;;GAGG;AACH,MAAM,WAAW,SAAU,SAAQ,aAAa;IAC9C,KAAK,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;CACzB;AAED,MAAM,WAAW,SAAU,SAAQ,kBAAkB,CAAC,SAAS,CAAC;IAC9D,CAAC,cAAc,EAAE,MAAM,GAAG,OAAO,CAAC;IAClC,2BAA2B;IAC3B,KAAK,CAAC,EAAE,SAAS,CAAC;IAClB;;OAEG;IACH,GAAG,CAAC,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,MAAM,CAAC,EAAE,OAAO,CAAC;CAClB;AAED;;;GAGG;AACH,eAAO,MAAM,IAAI,EAAE,KAAK,CAAC,EAAE,CAAC,SAAS,CA2DpC,CAAC"}
1
+ {"version":3,"file":"Text.d.ts","sourceRoot":"","sources":["../../src/components/Text.tsx"],"names":[],"mappings":"AACA,OAAO,KAAuB,MAAM,OAAO,CAAC;AAI5C,OAAO,EAAE,kBAAkB,EAAE,MAAM,eAAe,CAAC;AACnD,OAAO,EAAE,aAAa,EAAqB,MAAM,mCAAmC,CAAC;AAErF;;;GAGG;AACH,MAAM,WAAW,SAAU,SAAQ,aAAa;IAC9C,KAAK,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;CACzB;AAED,MAAM,WAAW,SAAU,SAAQ,kBAAkB,CAAC,SAAS,CAAC;IAC9D,CAAC,cAAc,EAAE,MAAM,GAAG,OAAO,CAAC;IAClC,2BAA2B;IAC3B,KAAK,CAAC,EAAE,SAAS,CAAC;IAClB;;OAEG;IACH,GAAG,CAAC,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,MAAM,CAAC,EAAE,OAAO,CAAC;CAClB;AAED;;;GAGG;AACH,eAAO,MAAM,IAAI,EAAE,KAAK,CAAC,EAAE,CAAC,SAAS,CAiEpC,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"withEmptyFieldEditingComponent.d.ts","sourceRoot":"","sources":["../../src/enhancers/withEmptyFieldEditingComponent.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,aAAa,EAAc,MAAM,OAAO,CAAC;AACzD,OAAO,EACL,iBAAiB,EACjB,KAAK,EAEL,aAAa,EACd,MAAM,mCAAmC,CAAC;AAE3C;;GAEG;AACH,MAAM,WAAW,qCAAqC;IACpD;;OAEG;IACH,iCAAiC,EAAE,KAAK,CAAC,EAAE,CAAC;IAC5C;;OAEG;IACH,YAAY,CAAC,EAAE,OAAO,CAAC;CACxB;AAKD,UAAU,mCAAmC,CAAC,KAAK;IAEjD,KAAK,CAAC,EAAE,CAAC,OAAO,CAAC,KAAK,CAAC,GAAG,iBAAiB,CAAC,GAAG,aAAa,CAAC;IAC7D,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,0BAA0B,CAAC,EAAE,KAAK,CAAC,cAAc,CAAC,KAAK,CAAC,GAAG,KAAK,CAAC,EAAE,CAAC,KAAK,CAAC,CAAC;CAC5E;AAED;;;;;GAKG;AACH,wBAAgB,8BAA8B,CAC5C,mBAAmB,SAAS,mCAAmC,CAAC,mBAAmB,CAAC,EACpF,cAAc,GAAG,WAAW,EAE5B,cAAc,EAAE,aAAa,CAAC,mBAAmB,CAAC,EAClD,OAAO,EAAE,qCAAqC,gIA0C/B,mBAAmB,wBAKnC"}
1
+ {"version":3,"file":"withEmptyFieldEditingComponent.d.ts","sourceRoot":"","sources":["../../src/enhancers/withEmptyFieldEditingComponent.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,aAAa,EAAc,MAAM,OAAO,CAAC;AACzD,OAAO,EACL,iBAAiB,EACjB,KAAK,EAEL,aAAa,EACd,MAAM,mCAAmC,CAAC;AAE3C;;GAEG;AACH,MAAM,WAAW,qCAAqC;IACpD;;OAEG;IACH,iCAAiC,EAAE,KAAK,CAAC,EAAE,CAAC;IAC5C;;OAEG;IACH,YAAY,CAAC,EAAE,OAAO,CAAC;CACxB;AAKD,UAAU,mCAAmC,CAAC,KAAK;IAEjD,KAAK,CAAC,EAAE,CAAC,OAAO,CAAC,KAAK,CAAC,GAAG,iBAAiB,CAAC,GAAG,aAAa,CAAC;IAC7D,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,0BAA0B,CAAC,EAAE,KAAK,CAAC,cAAc,CAAC,KAAK,CAAC,GAAG,KAAK,CAAC,EAAE,CAAC,KAAK,CAAC,CAAC;CAC5E;AAED;;;;;GAKG;AACH,wBAAgB,8BAA8B,CAC5C,mBAAmB,SAAS,mCAAmC,CAAC,mBAAmB,CAAC,EACpF,cAAc,GAAG,WAAW,EAE5B,cAAc,EAAE,aAAa,CAAC,mBAAmB,CAAC,EAClD,OAAO,EAAE,qCAAqC,gIAwC/B,mBAAmB,wBAKnC"}