@yorkjs/hive-ui 2.3.7 → 2.3.8

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.ts +9 -9
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yorkjs/hive-ui",
3
- "version": "2.3.7",
3
+ "version": "2.3.8",
4
4
  "description": "Hive UI - Taro React component library",
5
5
  "main": "src/index.ts",
6
6
  "module": "src/index.ts",
package/src/index.ts CHANGED
@@ -15,7 +15,7 @@ export { default as Alert } from './components/Alert'
15
15
  export { default as Switch } from './components/Switch'
16
16
  export { default as SimpleModal } from './components/SimpleModal'
17
17
  export { default as Progress } from './components/Progress'
18
- export { default as StatsCard, type StatsCardItem, type StatsCardProps } from './components/StatsCard'
18
+ export { default as StatsCard, StatsCardItem, StatsCardProps } from './components/StatsCard'
19
19
 
20
20
  export { default as FlowItem } from './item/FlowItem'
21
21
  export { default as ListItem } from './item/ListItem'
@@ -23,16 +23,16 @@ export { default as ProductItem, setProductItemConfig } from './item/ProductItem
23
23
 
24
24
  export {
25
25
  default as Table,
26
- type TableProps,
27
- type TableColumn,
26
+ TableProps,
27
+ TableColumn,
28
28
  } from './components/Table'
29
29
 
30
30
  export {
31
31
  default as RichTextEditor,
32
- type RichTextEditorProps,
33
- type RichTextBlock,
34
- type RichTextTextBlock,
35
- type RichTextImageBlock,
36
- type RichTextAlign,
37
- type RichTextBlockType,
32
+ RichTextEditorProps,
33
+ RichTextBlock,
34
+ RichTextTextBlock,
35
+ RichTextImageBlock,
36
+ RichTextAlign,
37
+ RichTextBlockType,
38
38
  } from './components/RichTextEditor'