@messenger-box/chat-ui 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/chat-ui
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/chat-ui
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/chat-ui
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@messenger-box/chat-ui",
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",
@@ -43,10 +43,10 @@
43
43
  "@chatscope/chat-ui-kit-react": "^1.10.1",
44
44
  "@chatscope/chat-ui-kit-styles": "^1.4.0",
45
45
  "@chatscope/use-chat": "^3.1.1",
46
- "@messenger-box/core": "10.0.2-alpha.5",
47
- "@messenger-box/platform-client": "10.0.2-alpha.5",
48
- "date-fns": "^2.28.0",
49
- "date-fns-tz": "^1.3.3",
46
+ "@messenger-box/core": "10.0.3-alpha.0",
47
+ "@messenger-box/platform-client": "10.0.3-alpha.0",
48
+ "date-fns": "^4.1.0",
49
+ "date-fns-tz": "^3.2.0",
50
50
  "emoji-mart": "^3.0.1",
51
51
  "javascript-time-ago": "^2.3.13"
52
52
  },
@@ -76,5 +76,5 @@
76
76
  "typescript": {
77
77
  "definition": "lib/index.d.ts"
78
78
  },
79
- "gitHead": "a54223fc4058746a7e563003413e9c7b394a38aa"
79
+ "gitHead": "5af212ba674f013e84bdf055e0999702f088263d"
80
80
  }
package/rollup.config.mjs CHANGED
@@ -27,35 +27,10 @@ export default (commandLineArgs) => {
27
27
  },
28
28
  ],
29
29
  },
30
- isWatchMode,
30
+ {
31
+ isWatchMode,
32
+ generateRoutesJSON: true,
33
+ },
31
34
  ),
32
35
  ];
33
36
  };
34
- // import { createRollupConfig } from '../../../rollup.config.base.mjs';
35
-
36
- // const additionalPlugins = [];
37
- // // Use the createRollupConfig function to merge the base and specific configurations
38
- // export default [
39
- // createRollupConfig({
40
- // input: [
41
- // 'src/index.ts',
42
- // ],
43
- // plugins: [
44
- // // Spread in additional plugins specific to this config
45
- // ...additionalPlugins,
46
- // ],
47
- // output: [
48
- // {
49
- // dir: 'lib',
50
- // format: 'es',
51
- // name: 'chakra-ui-inbox',
52
- // compact: true,
53
- // exports: 'named',
54
- // sourcemap: true,
55
- // preserveModules: true,
56
- // chunkFileNames: '[name]-[hash].[format].js',
57
- // globals: { react: 'React' },
58
- // },
59
- // ],
60
- // }),
61
- // ];