@alifd/chat 0.3.29-beta.0 → 0.3.29-beta.1

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/es/index.js CHANGED
@@ -31,4 +31,4 @@ export { default as RadioGroup } from './radio-group';
31
31
  export { default as CheckboxGroup } from './checkbox-group';
32
32
  export { default as Select } from './select';
33
33
  export { default as Flip } from './flip';
34
- export const version = '0.3.29-beta.0';
34
+ export const version = '0.3.29-beta.1';
@@ -1,5 +1,6 @@
1
- import type { SelectProps as FusionSelectProps } from '@alifd/next/types/select/types';
1
+ import type { SelectProps as FusionSelectProps, DataSourceItem } from '@alifd/next/types/select/types';
2
2
  export interface SelectProps extends FusionSelectProps {
3
3
  display: 'button' | 'select';
4
4
  buttonCols?: number;
5
5
  }
6
+ export type { DataSourceItem };
package/lib/index.js CHANGED
@@ -68,4 +68,4 @@ var select_1 = require("./select");
68
68
  Object.defineProperty(exports, "Select", { enumerable: true, get: function () { return tslib_1.__importDefault(select_1).default; } });
69
69
  var flip_1 = require("./flip");
70
70
  Object.defineProperty(exports, "Flip", { enumerable: true, get: function () { return tslib_1.__importDefault(flip_1).default; } });
71
- exports.version = '0.3.29-beta.0';
71
+ exports.version = '0.3.29-beta.1';
@@ -1,5 +1,6 @@
1
- import type { SelectProps as FusionSelectProps } from '@alifd/next/types/select/types';
1
+ import type { SelectProps as FusionSelectProps, DataSourceItem } from '@alifd/next/types/select/types';
2
2
  export interface SelectProps extends FusionSelectProps {
3
3
  display: 'button' | 'select';
4
4
  buttonCols?: number;
5
5
  }
6
+ export type { DataSourceItem };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alifd/chat",
3
- "version": "0.3.29-beta.0",
3
+ "version": "0.3.29-beta.1",
4
4
  "description": "A configurable component library for chat built on React.",
5
5
  "main": "lib/index.js",
6
6
  "module": "es/index.js",