@messenger-box/chakra-ui-inbox 10.0.2-alpha.5 → 10.0.3-alpha.2

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/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [10.0.3-alpha.2](https://github.com/cdmbase/messenger-box/compare/v10.0.3-alpha.1...v10.0.3-alpha.2) (2025-02-24)
7
+
8
+ **Note:** Version bump only for package @messenger-box/chakra-ui-inbox
9
+
10
+ ## [10.0.3-alpha.0](https://github.com/cdmbase/messenger-box/compare/v10.0.2-alpha.6...v10.0.3-alpha.0) (2025-02-24)
11
+
12
+ **Note:** Version bump only for package @messenger-box/chakra-ui-inbox
13
+
6
14
  ## [10.0.2-alpha.5](https://github.com/CDEBase/messenger-box/compare/v10.0.2-alpha.4...v10.0.2-alpha.5) (2025-02-24)
7
15
 
8
16
  **Note:** Version bump only for package @messenger-box/chakra-ui-inbox
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@messenger-box/chakra-ui-inbox",
3
- "version": "10.0.2-alpha.5",
3
+ "version": "10.0.3-alpha.2",
4
4
  "description": "Account browser",
5
5
  "license": "ISC",
6
6
  "author": "CDMBase LLC",
@@ -21,10 +21,10 @@
21
21
  "watch": "npm run build:lib:watch"
22
22
  },
23
23
  "dependencies": {
24
- "@messenger-box/core": "10.0.2-alpha.5",
25
- "@messenger-box/platform-client": "10.0.2-alpha.5",
26
- "date-fns": "^2.28.0",
27
- "date-fns-tz": "^1.3.3",
24
+ "@messenger-box/core": "10.0.3-alpha.0",
25
+ "@messenger-box/platform-client": "10.0.3-alpha.0",
26
+ "date-fns": "^4.1.0",
27
+ "date-fns-tz": "^3.2.0",
28
28
  "emoji-mart": "^3.0.1",
29
29
  "javascript-time-ago": "^2.3.13"
30
30
  },
@@ -54,5 +54,5 @@
54
54
  "typescript": {
55
55
  "definition": "lib/index.d.ts"
56
56
  },
57
- "gitHead": "a54223fc4058746a7e563003413e9c7b394a38aa"
57
+ "gitHead": "5af212ba674f013e84bdf055e0999702f088263d"
58
58
  }
package/rollup.config.mjs CHANGED
@@ -26,33 +26,10 @@ export default (commandLineArgs) => {
26
26
  },
27
27
  ],
28
28
  },
29
- isWatchMode,
29
+ {
30
+ isWatchMode,
31
+ generateRoutesJSON: true,
32
+ },
30
33
  ),
31
34
  ];
32
35
  };
33
- // import { createRollupConfig } from '../../../rollup.config.base.mjs';
34
-
35
- // const additionalPlugins = [];
36
- // // Use the createRollupConfig function to merge the base and specific configurations
37
- // export default [
38
- // createRollupConfig({
39
- // input: ['src/index.ts'],
40
- // plugins: [
41
- // // Spread in additional plugins specific to this config
42
- // ...additionalPlugins,
43
- // ],
44
- // output: [
45
- // {
46
- // dir: 'lib',
47
- // format: 'es',
48
- // name: 'chakra-ui-inbox',
49
- // compact: true,
50
- // exports: 'named',
51
- // sourcemap: true,
52
- // preserveModules: true,
53
- // chunkFileNames: '[name]-[hash].[format].js',
54
- // globals: { react: 'React' },
55
- // },
56
- // ],
57
- // }),
58
- // ];