@webiny/app 6.2.0-beta.0 → 6.3.0-beta.0

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/core/Plugin.d.ts CHANGED
@@ -4,5 +4,5 @@ interface PluginProps {
4
4
  providers?: Decorator<GenericComponent>[];
5
5
  children?: React.ReactNode;
6
6
  }
7
- export declare const Plugin: React.NamedExoticComponent<PluginProps>;
7
+ export declare const Plugin: React.MemoExoticComponent<({ providers, children }: PluginProps) => React.JSX.Element>;
8
8
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webiny/app",
3
- "version": "6.2.0-beta.0",
3
+ "version": "6.3.0-beta.0",
4
4
  "type": "module",
5
5
  "main": "index.js",
6
6
  "repository": {
@@ -19,12 +19,12 @@
19
19
  "@emotion/styled": "11.14.1",
20
20
  "@types/react": "18.3.28",
21
21
  "@webiny/di": "0.2.3",
22
- "@webiny/feature": "6.2.0-beta.0",
23
- "@webiny/i18n": "6.2.0-beta.0",
24
- "@webiny/i18n-react": "6.2.0-beta.0",
25
- "@webiny/plugins": "6.2.0-beta.0",
26
- "@webiny/react-composition": "6.2.0-beta.0",
27
- "@webiny/react-properties": "6.2.0-beta.0",
22
+ "@webiny/feature": "6.3.0-beta.0",
23
+ "@webiny/i18n": "6.3.0-beta.0",
24
+ "@webiny/i18n-react": "6.3.0-beta.0",
25
+ "@webiny/plugins": "6.3.0-beta.0",
26
+ "@webiny/react-composition": "6.3.0-beta.0",
27
+ "@webiny/react-properties": "6.3.0-beta.0",
28
28
  "apollo-cache": "1.3.5",
29
29
  "apollo-cache-inmemory": "1.6.6",
30
30
  "apollo-client": "2.6.10",
@@ -41,7 +41,7 @@
41
41
  "lodash": "4.18.1",
42
42
  "minimatch": "10.2.5",
43
43
  "mobx": "6.15.0",
44
- "nanoid": "5.1.7",
44
+ "nanoid": "5.1.9",
45
45
  "react": "18.3.1",
46
46
  "react-dom": "18.3.1",
47
47
  "ts-invariant": "0.10.3",
@@ -51,10 +51,10 @@
51
51
  "devDependencies": {
52
52
  "@types/lodash": "4.17.24",
53
53
  "@types/warning": "3.0.4",
54
- "@webiny/build-tools": "6.2.0-beta.0",
54
+ "@webiny/build-tools": "6.3.0-beta.0",
55
55
  "rimraf": "6.1.3",
56
- "type-fest": "5.5.0",
57
- "typescript": "5.9.3",
56
+ "type-fest": "5.6.0",
57
+ "typescript": "6.0.3",
58
58
  "vitest": "4.1.4"
59
59
  },
60
60
  "publishConfig": {
@@ -68,5 +68,5 @@
68
68
  ]
69
69
  }
70
70
  },
71
- "gitHead": "3d3148358b6febbc857371930871743bec3b3939"
71
+ "gitHead": "94c21e58aebc9855bf1ae972423281faa0f5c135"
72
72
  }
@@ -1 +1 @@
1
- {"version":3,"names":["React","Image","rest","finalProps","srcSet","Object","keys","map","key","join","createElement"],"sources":["Image.tsx"],"sourcesContent":["import React from \"react\";\n\n// Accepts all props that a normal <img> element would accept.\ninterface ImageProps\n extends React.DetailedHTMLProps<React.ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement> {\n [key: string]: any;\n}\n\nconst Image = ({ ...rest }: ImageProps) => {\n const finalProps = { ...rest };\n const srcSet = finalProps.srcSet;\n if (srcSet && typeof srcSet === \"object\") {\n finalProps.srcSet = Object.keys(srcSet)\n .map(key => `${srcSet[key]} ${key}`)\n .join(\", \");\n }\n\n return <img {...finalProps} />;\n};\n\nexport { Image, type ImageProps };\n"],"mappings":"AAAA,OAAOA,KAAK,MAAM,OAAO;;AAEzB;;AAMA,MAAMC,KAAK,GAAGA,CAAC;EAAE,GAAGC;AAAiB,CAAC,KAAK;EACvC,MAAMC,UAAU,GAAG;IAAE,GAAGD;EAAK,CAAC;EAC9B,MAAME,MAAM,GAAGD,UAAU,CAACC,MAAM;EAChC,IAAIA,MAAM,IAAI,OAAOA,MAAM,KAAK,QAAQ,EAAE;IACtCD,UAAU,CAACC,MAAM,GAAGC,MAAM,CAACC,IAAI,CAACF,MAAM,CAAC,CAClCG,GAAG,CAACC,GAAG,IAAI,GAAGJ,MAAM,CAACI,GAAG,CAAC,IAAIA,GAAG,EAAE,CAAC,CACnCC,IAAI,CAAC,IAAI,CAAC;EACnB;EAEA,oBAAOT,KAAA,CAAAU,aAAA,QAASP,UAAa,CAAC;AAClC,CAAC;AAED,SAASF,KAAK","ignoreList":[]}
1
+ {"version":3,"names":["React","Image","rest","finalProps","srcSet","Object","keys","map","key","join","createElement"],"sources":["Image.tsx"],"sourcesContent":["import React from \"react\";\n\n// Accepts all props that a normal <img> element would accept.\ninterface ImageProps extends React.DetailedHTMLProps<\n React.ImgHTMLAttributes<HTMLImageElement>,\n HTMLImageElement\n> {\n [key: string]: any;\n}\n\nconst Image = ({ ...rest }: ImageProps) => {\n const finalProps = { ...rest };\n const srcSet = finalProps.srcSet;\n if (srcSet && typeof srcSet === \"object\") {\n finalProps.srcSet = Object.keys(srcSet)\n .map(key => `${srcSet[key]} ${key}`)\n .join(\", \");\n }\n\n return <img {...finalProps} />;\n};\n\nexport { Image, type ImageProps };\n"],"mappings":"AAAA,OAAOA,KAAK,MAAM,OAAO;;AAEzB;;AAQA,MAAMC,KAAK,GAAGA,CAAC;EAAE,GAAGC;AAAiB,CAAC,KAAK;EACvC,MAAMC,UAAU,GAAG;IAAE,GAAGD;EAAK,CAAC;EAC9B,MAAME,MAAM,GAAGD,UAAU,CAACC,MAAM;EAChC,IAAIA,MAAM,IAAI,OAAOA,MAAM,KAAK,QAAQ,EAAE;IACtCD,UAAU,CAACC,MAAM,GAAGC,MAAM,CAACC,IAAI,CAACF,MAAM,CAAC,CAClCG,GAAG,CAACC,GAAG,IAAI,GAAGJ,MAAM,CAACI,GAAG,CAAC,IAAIA,GAAG,EAAE,CAAC,CACnCC,IAAI,CAAC,IAAI,CAAC;EACnB;EAEA,oBAAOT,KAAA,CAAAU,aAAA,QAASP,UAAa,CAAC;AAClC,CAAC;AAED,SAASF,KAAK","ignoreList":[]}