@common-stack/frontend-stack-react 8.0.1-alpha.0 → 8.0.1-alpha.3

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.
@@ -1,2 +1,2 @@
1
1
  export declare const defaultCache: import("@emotion/cache").EmotionCache;
2
- export default function createEmotionCache(): import("@emotion/cache").EmotionCache;
2
+ export default function createEmotionCache(options?: {}): import("@emotion/cache").EmotionCache;
@@ -1,4 +1,4 @@
1
1
  import createCache from'@emotion/cache';const defaultCache = createEmotionCache();
2
- function createEmotionCache() {
3
- return createCache({ key: 'css', prepend: true });
2
+ function createEmotionCache(options = {}) {
3
+ return createCache({ key: 'css', ...options });
4
4
  }export{createEmotionCache as default,defaultCache};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@common-stack/frontend-stack-react",
3
- "version": "8.0.1-alpha.0",
3
+ "version": "8.0.1-alpha.3",
4
4
  "description": "Client Module for react app",
5
5
  "homepage": "https://github.com/cdmbase/fullstack-pro#readme",
6
6
  "bugs": {
@@ -34,7 +34,7 @@
34
34
  "@cdm-logger/server": "^9.0.3",
35
35
  "@common-stack/cache-api-server": "8.0.1-alpha.0",
36
36
  "@common-stack/client-core": "8.0.1-alpha.0",
37
- "@common-stack/client-react": "8.0.1-alpha.0",
37
+ "@common-stack/client-react": "8.0.1-alpha.2",
38
38
  "@common-stack/components-pro": "8.0.1-alpha.0",
39
39
  "@common-stack/core": "8.0.1-alpha.0",
40
40
  "@common-stack/remix-router-redux": "8.0.1-alpha.0",
@@ -48,7 +48,7 @@
48
48
  "@xstate/react": "^5.0.0",
49
49
  "cors": "^2.8.5",
50
50
  "cross-fetch": "^4.0.0",
51
- "dotenv": "^8.2.0",
51
+ "dotenv": "^16.4.0",
52
52
  "envalid": "~7.2.2",
53
53
  "express": "^4.18.2",
54
54
  "graphql": "^16.0.0",
@@ -83,8 +83,8 @@
83
83
  "@admin-layout/ant-ui": "^7.3.7-alpha.4",
84
84
  "@admin-layout/chakra-ui": "^7.3.7-alpha.4",
85
85
  "@chakra-ui/react": "^2.8.2",
86
- "@emotion/react": "^11.0.0",
87
- "@emotion/server": "^11.0.0",
86
+ "@emotion/react": "^11.14.0",
87
+ "@emotion/server": "^11.11.0",
88
88
  "antd": "^5.10.1",
89
89
  "jest-fetch-mock": "^3.0.3",
90
90
  "vite": "^5.2.12"
@@ -101,5 +101,5 @@
101
101
  "typescript": {
102
102
  "definition": "lib/index.d.ts"
103
103
  },
104
- "gitHead": "73d9088ae254fbc43425eed5c9f5cd95bd66e921"
104
+ "gitHead": "63f25bbcb06716edee777425a3d7de8494033e8e"
105
105
  }