@uniformdev/mesh-sdk-react 20.34.2-alpha.67 → 20.35.1-alpha.87

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/index.esm.js CHANGED
@@ -774,7 +774,7 @@ import { zodResolver } from "@hookform/resolvers/zod";
774
774
  import { Button, Callout, HorizontalRhythm, Input, useShortcut } from "@uniformdev/design-system";
775
775
  import { useLayoutEffect, useRef as useRef2 } from "react";
776
776
  import { useForm } from "react-hook-form";
777
- import { z } from "zod";
777
+ import * as z from "zod";
778
778
 
779
779
  // src/components/Variables/styles/VariableEditor.styles.ts
780
780
  import { css as css2 } from "@emotion/react";
@@ -1945,6 +1945,7 @@ var input2 = css5`
1945
1945
  &:disabled,
1946
1946
  &:disabled::placeholder,
1947
1947
  &:disabled:hover {
1948
+ border-color: var(--gray-200);
1948
1949
  border-radius: var(--rounded-sm);
1949
1950
  cursor: not-allowed;
1950
1951
  color: var(--gray-400);
@@ -1954,6 +1955,7 @@ var input2 = css5`
1954
1955
  &[contenteditable='false'] {
1955
1956
  cursor: not-allowed;
1956
1957
  color: var(--gray-400);
1958
+ border-color: var(--gray-200);
1957
1959
  }
1958
1960
 
1959
1961
  > p {
@@ -2947,6 +2949,8 @@ var variableValue = css9`
2947
2949
 
2948
2950
  // src/components/Variables/VariablesList.tsx
2949
2951
  import { Fragment as Fragment8, jsx as jsx33, jsxs as jsxs16 } from "@emotion/react/jsx-runtime";
2952
+ var DroppableHack = Droppable;
2953
+ var DraggableHack = Draggable;
2950
2954
  function VariablesList() {
2951
2955
  const { variables, dispatch, readOnly } = useVariables();
2952
2956
  const sorted = variablesToList(variables).filter((variable) => !variable.system);
@@ -2968,7 +2972,7 @@ function VariablesList() {
2968
2972
  }
2969
2973
  };
2970
2974
  return /* @__PURE__ */ jsxs16(Fragment8, { children: [
2971
- /* @__PURE__ */ jsx33(DragDropContext, { onDragEnd: (res) => onDragEnd(res), children: /* @__PURE__ */ jsx33(Droppable, { droppableId: "variables-table", children: (provided) => /* @__PURE__ */ jsxs16(Table, { ...provided.droppableProps, ref: provided.innerRef, children: [
2975
+ /* @__PURE__ */ jsx33(DragDropContext, { onDragEnd: (res) => onDragEnd(res), children: /* @__PURE__ */ jsx33(DroppableHack, { droppableId: "variables-table", children: (provided) => /* @__PURE__ */ jsxs16(Table, { ...provided.droppableProps, ref: provided.innerRef, children: [
2972
2976
  /* @__PURE__ */ jsx33(TableHead, { children: /* @__PURE__ */ jsxs16(TableRow, { children: [
2973
2977
  /* @__PURE__ */ jsx33(TableCellHead, { children: "Name" }),
2974
2978
  /* @__PURE__ */ jsx33(TableCellHead, { children: "Default Value" }),
@@ -2979,7 +2983,7 @@ function VariablesList() {
2979
2983
  const text = displayName != null ? displayName : name2;
2980
2984
  const textValue = variableDefaultTextValue(defaultValue);
2981
2985
  return /* @__PURE__ */ jsx33(
2982
- Draggable,
2986
+ DraggableHack,
2983
2987
  {
2984
2988
  draggableId: name2,
2985
2989
  index,
@@ -3594,8 +3598,8 @@ function urlEncodeRequestParameter(parameter, varValues) {
3594
3598
  value: decodeVariablesInUrlEncodedString(encodeURIComponent(parameter.value), varValues)
3595
3599
  };
3596
3600
  }
3597
- function decodeVariablesInUrlEncodedString(string, varValues) {
3598
- return string.replace(/(\$|%24)%7B(.*?)%7D/g, (_all, _money, body) => {
3601
+ function decodeVariablesInUrlEncodedString(string2, varValues) {
3602
+ return string2.replace(/(\$|%24)%7B(.*?)%7D/g, (_all, _money, body) => {
3599
3603
  var _a;
3600
3604
  const varName = decodeURIComponent(body);
3601
3605
  return ((_a = varValues == null ? void 0 : varValues[varName]) == null ? void 0 : _a.default) ? variableDefaultTextValue(varValues[varName].default) : `\${${varName}}`;
@@ -4202,7 +4206,7 @@ var ObjectSearchListItem = ({
4202
4206
  ),
4203
4207
  /* @__PURE__ */ jsxs23("div", { css: ObjectListItemInfoContainer, children: [
4204
4208
  selected ? /* @__PURE__ */ jsx49(Chip, { text: "selected", size: "xs" }) : null,
4205
- !popoverData ? null : /* @__PURE__ */ jsx49(Popover, { ariaLabel: title, buttonText: `See ${title} details`, iconColor: "default", children: popoverData })
4209
+ !popoverData ? null : /* @__PURE__ */ jsx49(Popover, { ariaLabel: title, buttonText: `See ${title} details`, children: popoverData })
4206
4210
  ] }),
4207
4211
  !children ? null : /* @__PURE__ */ jsx49("div", { css: ObjectListItemUnControlledContent, children })
4208
4212
  ]
@@ -4626,7 +4630,10 @@ function legacyThemeMapper(theme) {
4626
4630
 
4627
4631
  // src/components/ObjectSearch/ObjectSearchResultList.tsx
4628
4632
  import { Button as Button4, Counter } from "@uniformdev/design-system";
4629
- import { Draggable as Draggable2, Droppable as Droppable2 } from "react-beautiful-dnd";
4633
+ import {
4634
+ Draggable as Draggable2,
4635
+ Droppable as Droppable2
4636
+ } from "react-beautiful-dnd";
4630
4637
 
4631
4638
  // src/components/ObjectSearch/styles/ObjectSearchResultList.styles.ts
4632
4639
  import { css as css20 } from "@emotion/react";
@@ -4655,6 +4662,8 @@ var ObjectSearchResultListTitle = css20`
4655
4662
 
4656
4663
  // src/components/ObjectSearch/ObjectSearchResultList.tsx
4657
4664
  import { Fragment as Fragment10, jsx as jsx56, jsxs as jsxs28 } from "@emotion/react/jsx-runtime";
4665
+ var DroppableHack2 = Droppable2;
4666
+ var DraggableHack2 = Draggable2;
4658
4667
  function ObjectSearchResultList({
4659
4668
  resultLabelText = "Selected",
4660
4669
  removeButtonText = "Remove all",
@@ -4726,7 +4735,7 @@ function ObjectSearchResultList({
4726
4735
  ] })
4727
4736
  ] }),
4728
4737
  !selectedListItems.length ? whenNothingSelected : /* @__PURE__ */ jsx56(DragDropContext, { onDragEnd: (res) => onDragEnd(res), children: /* @__PURE__ */ jsx56(
4729
- Droppable2,
4738
+ DroppableHack2,
4730
4739
  {
4731
4740
  droppableId: multiSelectId != null ? multiSelectId : "canvas-multi-select",
4732
4741
  renderClone: getContainerForDnDReparenting ? getDraggableItem : void 0,
@@ -4734,7 +4743,7 @@ function ObjectSearchResultList({
4734
4743
  children: (provided) => /* @__PURE__ */ jsxs28("div", { ...provided.droppableProps, ref: provided.innerRef, children: [
4735
4744
  selectedListItems.map((item, i) => {
4736
4745
  return /* @__PURE__ */ jsx56(
4737
- Draggable2,
4746
+ DraggableHack2,
4738
4747
  {
4739
4748
  draggableId: item.id,
4740
4749
  index: i,
package/dist/index.js CHANGED
@@ -920,7 +920,7 @@ var import_zod = require("@hookform/resolvers/zod");
920
920
  var import_design_system4 = require("@uniformdev/design-system");
921
921
  var import_react12 = require("react");
922
922
  var import_react_hook_form = require("react-hook-form");
923
- var import_zod2 = require("zod");
923
+ var z = __toESM(require("zod"));
924
924
 
925
925
  // src/components/Variables/styles/VariableEditor.styles.ts
926
926
  var import_react11 = require("@emotion/react");
@@ -932,13 +932,13 @@ var variablesFormContainer = import_react11.css`
932
932
 
933
933
  // src/components/Variables/VariableEditor.tsx
934
934
  var import_jsx_runtime18 = require("@emotion/react/jsx-runtime");
935
- var schema = import_zod2.z.object({
936
- name: import_zod2.z.string().nonempty("Name can't be empty").regex(/^[^${}]+$/, "$, {, and } are reserved characters and cannot be used in a variable name"),
937
- default: import_zod2.z.string(),
938
- displayName: import_zod2.z.string().optional(),
939
- helpText: import_zod2.z.string().optional(),
940
- order: import_zod2.z.number().optional(),
941
- type: import_zod2.z.string().optional()
935
+ var schema = z.object({
936
+ name: z.string().nonempty("Name can't be empty").regex(/^[^${}]+$/, "$, {, and } are reserved characters and cannot be used in a variable name"),
937
+ default: z.string(),
938
+ displayName: z.string().optional(),
939
+ helpText: z.string().optional(),
940
+ order: z.number().optional(),
941
+ type: z.string().optional()
942
942
  });
943
943
  function VariableEditor({
944
944
  variable,
@@ -2085,6 +2085,7 @@ var input2 = import_react19.css`
2085
2085
  &:disabled,
2086
2086
  &:disabled::placeholder,
2087
2087
  &:disabled:hover {
2088
+ border-color: var(--gray-200);
2088
2089
  border-radius: var(--rounded-sm);
2089
2090
  cursor: not-allowed;
2090
2091
  color: var(--gray-400);
@@ -2094,6 +2095,7 @@ var input2 = import_react19.css`
2094
2095
  &[contenteditable='false'] {
2095
2096
  cursor: not-allowed;
2096
2097
  color: var(--gray-400);
2098
+ border-color: var(--gray-200);
2097
2099
  }
2098
2100
 
2099
2101
  > p {
@@ -3065,6 +3067,8 @@ var variableValue = import_react34.css`
3065
3067
 
3066
3068
  // src/components/Variables/VariablesList.tsx
3067
3069
  var import_jsx_runtime32 = require("@emotion/react/jsx-runtime");
3070
+ var DroppableHack = import_react_beautiful_dnd2.Droppable;
3071
+ var DraggableHack = import_react_beautiful_dnd2.Draggable;
3068
3072
  function VariablesList() {
3069
3073
  const { variables, dispatch, readOnly } = useVariables();
3070
3074
  const sorted = variablesToList(variables).filter((variable) => !variable.system);
@@ -3086,7 +3090,7 @@ function VariablesList() {
3086
3090
  }
3087
3091
  };
3088
3092
  return /* @__PURE__ */ (0, import_jsx_runtime32.jsxs)(import_jsx_runtime32.Fragment, { children: [
3089
- /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(DragDropContext, { onDragEnd: (res) => onDragEnd(res), children: /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(import_react_beautiful_dnd2.Droppable, { droppableId: "variables-table", children: (provided) => /* @__PURE__ */ (0, import_jsx_runtime32.jsxs)(import_design_system13.Table, { ...provided.droppableProps, ref: provided.innerRef, children: [
3093
+ /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(DragDropContext, { onDragEnd: (res) => onDragEnd(res), children: /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(DroppableHack, { droppableId: "variables-table", children: (provided) => /* @__PURE__ */ (0, import_jsx_runtime32.jsxs)(import_design_system13.Table, { ...provided.droppableProps, ref: provided.innerRef, children: [
3090
3094
  /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(import_design_system13.TableHead, { children: /* @__PURE__ */ (0, import_jsx_runtime32.jsxs)(import_design_system13.TableRow, { children: [
3091
3095
  /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(import_design_system13.TableCellHead, { children: "Name" }),
3092
3096
  /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(import_design_system13.TableCellHead, { children: "Default Value" }),
@@ -3097,7 +3101,7 @@ function VariablesList() {
3097
3101
  const text = displayName != null ? displayName : name2;
3098
3102
  const textValue = variableDefaultTextValue(defaultValue);
3099
3103
  return /* @__PURE__ */ (0, import_jsx_runtime32.jsx)(
3100
- import_react_beautiful_dnd2.Draggable,
3104
+ DraggableHack,
3101
3105
  {
3102
3106
  draggableId: name2,
3103
3107
  index,
@@ -3692,8 +3696,8 @@ function urlEncodeRequestParameter(parameter, varValues) {
3692
3696
  value: decodeVariablesInUrlEncodedString(encodeURIComponent(parameter.value), varValues)
3693
3697
  };
3694
3698
  }
3695
- function decodeVariablesInUrlEncodedString(string, varValues) {
3696
- return string.replace(/(\$|%24)%7B(.*?)%7D/g, (_all, _money, body) => {
3699
+ function decodeVariablesInUrlEncodedString(string2, varValues) {
3700
+ return string2.replace(/(\$|%24)%7B(.*?)%7D/g, (_all, _money, body) => {
3697
3701
  var _a;
3698
3702
  const varName = decodeURIComponent(body);
3699
3703
  return ((_a = varValues == null ? void 0 : varValues[varName]) == null ? void 0 : _a.default) ? variableDefaultTextValue(varValues[varName].default) : `\${${varName}}`;
@@ -4293,7 +4297,7 @@ var ObjectSearchListItem = ({
4293
4297
  ),
4294
4298
  /* @__PURE__ */ (0, import_jsx_runtime48.jsxs)("div", { css: ObjectListItemInfoContainer, children: [
4295
4299
  selected ? /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(import_design_system22.Chip, { text: "selected", size: "xs" }) : null,
4296
- !popoverData ? null : /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(import_design_system22.Popover, { ariaLabel: title, buttonText: `See ${title} details`, iconColor: "default", children: popoverData })
4300
+ !popoverData ? null : /* @__PURE__ */ (0, import_jsx_runtime48.jsx)(import_design_system22.Popover, { ariaLabel: title, buttonText: `See ${title} details`, children: popoverData })
4297
4301
  ] }),
4298
4302
  !children ? null : /* @__PURE__ */ (0, import_jsx_runtime48.jsx)("div", { css: ObjectListItemUnControlledContent, children })
4299
4303
  ]
@@ -4746,6 +4750,8 @@ var ObjectSearchResultListTitle = import_react50.css`
4746
4750
 
4747
4751
  // src/components/ObjectSearch/ObjectSearchResultList.tsx
4748
4752
  var import_jsx_runtime55 = require("@emotion/react/jsx-runtime");
4753
+ var DroppableHack2 = import_react_beautiful_dnd3.Droppable;
4754
+ var DraggableHack2 = import_react_beautiful_dnd3.Draggable;
4749
4755
  function ObjectSearchResultList({
4750
4756
  resultLabelText = "Selected",
4751
4757
  removeButtonText = "Remove all",
@@ -4817,7 +4823,7 @@ function ObjectSearchResultList({
4817
4823
  ] })
4818
4824
  ] }),
4819
4825
  !selectedListItems.length ? whenNothingSelected : /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(DragDropContext, { onDragEnd: (res) => onDragEnd(res), children: /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
4820
- import_react_beautiful_dnd3.Droppable,
4826
+ DroppableHack2,
4821
4827
  {
4822
4828
  droppableId: multiSelectId != null ? multiSelectId : "canvas-multi-select",
4823
4829
  renderClone: getContainerForDnDReparenting ? getDraggableItem : void 0,
@@ -4825,7 +4831,7 @@ function ObjectSearchResultList({
4825
4831
  children: (provided) => /* @__PURE__ */ (0, import_jsx_runtime55.jsxs)("div", { ...provided.droppableProps, ref: provided.innerRef, children: [
4826
4832
  selectedListItems.map((item, i) => {
4827
4833
  return /* @__PURE__ */ (0, import_jsx_runtime55.jsx)(
4828
- import_react_beautiful_dnd3.Draggable,
4834
+ DraggableHack2,
4829
4835
  {
4830
4836
  draggableId: item.id,
4831
4837
  index: i,
package/dist/index.mjs CHANGED
@@ -774,7 +774,7 @@ import { zodResolver } from "@hookform/resolvers/zod";
774
774
  import { Button, Callout, HorizontalRhythm, Input, useShortcut } from "@uniformdev/design-system";
775
775
  import { useLayoutEffect, useRef as useRef2 } from "react";
776
776
  import { useForm } from "react-hook-form";
777
- import { z } from "zod";
777
+ import * as z from "zod";
778
778
 
779
779
  // src/components/Variables/styles/VariableEditor.styles.ts
780
780
  import { css as css2 } from "@emotion/react";
@@ -1945,6 +1945,7 @@ var input2 = css5`
1945
1945
  &:disabled,
1946
1946
  &:disabled::placeholder,
1947
1947
  &:disabled:hover {
1948
+ border-color: var(--gray-200);
1948
1949
  border-radius: var(--rounded-sm);
1949
1950
  cursor: not-allowed;
1950
1951
  color: var(--gray-400);
@@ -1954,6 +1955,7 @@ var input2 = css5`
1954
1955
  &[contenteditable='false'] {
1955
1956
  cursor: not-allowed;
1956
1957
  color: var(--gray-400);
1958
+ border-color: var(--gray-200);
1957
1959
  }
1958
1960
 
1959
1961
  > p {
@@ -2947,6 +2949,8 @@ var variableValue = css9`
2947
2949
 
2948
2950
  // src/components/Variables/VariablesList.tsx
2949
2951
  import { Fragment as Fragment8, jsx as jsx33, jsxs as jsxs16 } from "@emotion/react/jsx-runtime";
2952
+ var DroppableHack = Droppable;
2953
+ var DraggableHack = Draggable;
2950
2954
  function VariablesList() {
2951
2955
  const { variables, dispatch, readOnly } = useVariables();
2952
2956
  const sorted = variablesToList(variables).filter((variable) => !variable.system);
@@ -2968,7 +2972,7 @@ function VariablesList() {
2968
2972
  }
2969
2973
  };
2970
2974
  return /* @__PURE__ */ jsxs16(Fragment8, { children: [
2971
- /* @__PURE__ */ jsx33(DragDropContext, { onDragEnd: (res) => onDragEnd(res), children: /* @__PURE__ */ jsx33(Droppable, { droppableId: "variables-table", children: (provided) => /* @__PURE__ */ jsxs16(Table, { ...provided.droppableProps, ref: provided.innerRef, children: [
2975
+ /* @__PURE__ */ jsx33(DragDropContext, { onDragEnd: (res) => onDragEnd(res), children: /* @__PURE__ */ jsx33(DroppableHack, { droppableId: "variables-table", children: (provided) => /* @__PURE__ */ jsxs16(Table, { ...provided.droppableProps, ref: provided.innerRef, children: [
2972
2976
  /* @__PURE__ */ jsx33(TableHead, { children: /* @__PURE__ */ jsxs16(TableRow, { children: [
2973
2977
  /* @__PURE__ */ jsx33(TableCellHead, { children: "Name" }),
2974
2978
  /* @__PURE__ */ jsx33(TableCellHead, { children: "Default Value" }),
@@ -2979,7 +2983,7 @@ function VariablesList() {
2979
2983
  const text = displayName != null ? displayName : name2;
2980
2984
  const textValue = variableDefaultTextValue(defaultValue);
2981
2985
  return /* @__PURE__ */ jsx33(
2982
- Draggable,
2986
+ DraggableHack,
2983
2987
  {
2984
2988
  draggableId: name2,
2985
2989
  index,
@@ -3594,8 +3598,8 @@ function urlEncodeRequestParameter(parameter, varValues) {
3594
3598
  value: decodeVariablesInUrlEncodedString(encodeURIComponent(parameter.value), varValues)
3595
3599
  };
3596
3600
  }
3597
- function decodeVariablesInUrlEncodedString(string, varValues) {
3598
- return string.replace(/(\$|%24)%7B(.*?)%7D/g, (_all, _money, body) => {
3601
+ function decodeVariablesInUrlEncodedString(string2, varValues) {
3602
+ return string2.replace(/(\$|%24)%7B(.*?)%7D/g, (_all, _money, body) => {
3599
3603
  var _a;
3600
3604
  const varName = decodeURIComponent(body);
3601
3605
  return ((_a = varValues == null ? void 0 : varValues[varName]) == null ? void 0 : _a.default) ? variableDefaultTextValue(varValues[varName].default) : `\${${varName}}`;
@@ -4202,7 +4206,7 @@ var ObjectSearchListItem = ({
4202
4206
  ),
4203
4207
  /* @__PURE__ */ jsxs23("div", { css: ObjectListItemInfoContainer, children: [
4204
4208
  selected ? /* @__PURE__ */ jsx49(Chip, { text: "selected", size: "xs" }) : null,
4205
- !popoverData ? null : /* @__PURE__ */ jsx49(Popover, { ariaLabel: title, buttonText: `See ${title} details`, iconColor: "default", children: popoverData })
4209
+ !popoverData ? null : /* @__PURE__ */ jsx49(Popover, { ariaLabel: title, buttonText: `See ${title} details`, children: popoverData })
4206
4210
  ] }),
4207
4211
  !children ? null : /* @__PURE__ */ jsx49("div", { css: ObjectListItemUnControlledContent, children })
4208
4212
  ]
@@ -4626,7 +4630,10 @@ function legacyThemeMapper(theme) {
4626
4630
 
4627
4631
  // src/components/ObjectSearch/ObjectSearchResultList.tsx
4628
4632
  import { Button as Button4, Counter } from "@uniformdev/design-system";
4629
- import { Draggable as Draggable2, Droppable as Droppable2 } from "react-beautiful-dnd";
4633
+ import {
4634
+ Draggable as Draggable2,
4635
+ Droppable as Droppable2
4636
+ } from "react-beautiful-dnd";
4630
4637
 
4631
4638
  // src/components/ObjectSearch/styles/ObjectSearchResultList.styles.ts
4632
4639
  import { css as css20 } from "@emotion/react";
@@ -4655,6 +4662,8 @@ var ObjectSearchResultListTitle = css20`
4655
4662
 
4656
4663
  // src/components/ObjectSearch/ObjectSearchResultList.tsx
4657
4664
  import { Fragment as Fragment10, jsx as jsx56, jsxs as jsxs28 } from "@emotion/react/jsx-runtime";
4665
+ var DroppableHack2 = Droppable2;
4666
+ var DraggableHack2 = Draggable2;
4658
4667
  function ObjectSearchResultList({
4659
4668
  resultLabelText = "Selected",
4660
4669
  removeButtonText = "Remove all",
@@ -4726,7 +4735,7 @@ function ObjectSearchResultList({
4726
4735
  ] })
4727
4736
  ] }),
4728
4737
  !selectedListItems.length ? whenNothingSelected : /* @__PURE__ */ jsx56(DragDropContext, { onDragEnd: (res) => onDragEnd(res), children: /* @__PURE__ */ jsx56(
4729
- Droppable2,
4738
+ DroppableHack2,
4730
4739
  {
4731
4740
  droppableId: multiSelectId != null ? multiSelectId : "canvas-multi-select",
4732
4741
  renderClone: getContainerForDnDReparenting ? getDraggableItem : void 0,
@@ -4734,7 +4743,7 @@ function ObjectSearchResultList({
4734
4743
  children: (provided) => /* @__PURE__ */ jsxs28("div", { ...provided.droppableProps, ref: provided.innerRef, children: [
4735
4744
  selectedListItems.map((item, i) => {
4736
4745
  return /* @__PURE__ */ jsx56(
4737
- Draggable2,
4746
+ DraggableHack2,
4738
4747
  {
4739
4748
  draggableId: item.id,
4740
4749
  index: i,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniformdev/mesh-sdk-react",
3
- "version": "20.34.2-alpha.67+d830718b43",
3
+ "version": "20.35.1-alpha.87+2cf616f622",
4
4
  "description": "Uniform Mesh Framework SDK for React",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "main": "./dist/index.js",
@@ -50,10 +50,10 @@
50
50
  "@lexical/selection": "0.25.0",
51
51
  "@lexical/utils": "0.25.0",
52
52
  "@react-icons/all-files": "https://github.com/react-icons/react-icons/releases/download/v5.5.0/react-icons-all-files-5.5.0.tgz",
53
- "@uniformdev/canvas": "20.34.2-alpha.67+d830718b43",
54
- "@uniformdev/design-system": "20.34.2-alpha.67+d830718b43",
55
- "@uniformdev/mesh-sdk": "20.34.2-alpha.67+d830718b43",
56
- "@uniformdev/richtext": "20.34.2-alpha.67+d830718b43",
53
+ "@uniformdev/canvas": "20.35.1-alpha.87+2cf616f622",
54
+ "@uniformdev/design-system": "20.35.1-alpha.87+2cf616f622",
55
+ "@uniformdev/mesh-sdk": "20.35.1-alpha.87+2cf616f622",
56
+ "@uniformdev/richtext": "20.35.1-alpha.87+2cf616f622",
57
57
  "dequal": "^2.0.3",
58
58
  "lexical": "0.25.0",
59
59
  "mitt": "3.0.1",
@@ -73,9 +73,9 @@
73
73
  "@emotion/react": "11.13.5",
74
74
  "@storybook/react": "8.3.3",
75
75
  "@svgr/cli": "6.5.1",
76
- "@types/react": "18.3.11",
76
+ "@types/react": "18.3.24",
77
77
  "@types/react-beautiful-dnd": "13.1.8",
78
- "@types/react-dom": "18.3.1",
78
+ "@types/react-dom": "18.3.7",
79
79
  "@types/uuid": "9.0.4",
80
80
  "react": "18.3.1",
81
81
  "react-dom": "18.3.1"
@@ -86,5 +86,5 @@
86
86
  "publishConfig": {
87
87
  "access": "public"
88
88
  },
89
- "gitHead": "d830718b43d1c26a8f6c22434975882eae4cbb3d"
89
+ "gitHead": "2cf616f622322e5322575c106742078b5e3d7992"
90
90
  }