react-bricks 3.2.9 → 3.2.10

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-bricks",
3
- "version": "3.2.9",
3
+ "version": "3.2.10",
4
4
  "description": "React Bricks is a CMS with visual editing based on React components for Next.js and Gatsby.",
5
5
  "keywords": [
6
6
  "react bricks",
@@ -35,29 +35,28 @@
35
35
  "react-dom": ">=17"
36
36
  },
37
37
  "dependencies": {
38
- "@tippyjs/react": "^4.2.5",
39
- "axios": "^0.23.0",
38
+ "@tippyjs/react": "^4.2.6",
39
+ "axios": "^0.25.0",
40
40
  "classnames": "^2.3.1",
41
- "color": "^3.1.3",
41
+ "color": "^4.2.0",
42
42
  "intersection-observer": "^0.12.0",
43
43
  "is-hotkey": "^0.2.0",
44
44
  "lodash.debounce": "^4.0.8",
45
45
  "rb-cogo-toast": "^4.2.6",
46
46
  "rc-switch": "^3.2.2",
47
47
  "react-copy-to-clipboard": "^5.0.4",
48
- "react-dropzone": "^11.4.2",
49
- "react-error-boundary": "^3.1.3",
50
- "react-hook-form": "^7.17.4",
48
+ "react-dropzone": "^11.5.1",
49
+ "react-error-boundary": "^3.1.4",
50
+ "react-hook-form": "^7.25.0",
51
51
  "react-icons": "^4.3.1",
52
- "react-image-crop": "^9.0.4",
53
- "react-loader-spinner": "^4.0.0",
54
- "react-modal": "^3.14.3",
52
+ "react-image-crop": "^9.0.5",
53
+ "react-modal": "^3.14.4",
55
54
  "react-progressive-graceful-image": "^0.6.14",
56
- "react-query": "^3.26.0",
55
+ "react-query": "^3.34.11",
57
56
  "react-tag-autocomplete": "^6.3.0",
58
- "slate": "^0.63.0",
59
- "slate-history": "^0.62.0",
60
- "slate-react": "^0.65.2",
57
+ "slate": "^0.72.3",
58
+ "slate-history": "^0.66.0",
59
+ "slate-react": "^0.72.6",
61
60
  "uuid": "^8.3.2"
62
61
  }
63
62
  }
package/react-bricks.d.ts CHANGED
@@ -251,7 +251,7 @@ declare namespace types {
251
251
  interface IBlockType {
252
252
  name: string;
253
253
  label: string;
254
- getDefaultProps: () => object;
254
+ getDefaultProps?: () => object;
255
255
  hideFromAddMenu?: boolean;
256
256
  sideEditProps?: Array<ISideEditProp | ISideGroup>;
257
257
  repeaterItems?: IRepeaterItem[];