@ddwl/ddwl-ui 1.2.0 → 1.2.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/main.js +8 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ddwl/ddwl-ui",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "private": false,
5
5
  "main": "src/main.js",
6
6
  "style": "lib/theme/index.css",
package/src/main.js CHANGED
@@ -16,6 +16,10 @@ import SearchTable from './packages/search-table'
16
16
  import SvgIcon from './packages/svg-icon'
17
17
  import Table from './packages/table'
18
18
  import Upload from './packages/upload'
19
+ import Select from './packages/select'
20
+ import CheckboxGroup from './packages/checkbox-group'
21
+ import RadioGroup from './packages/radio-group'
22
+
19
23
  import extendComponentInstall from './lib/install/index.js'
20
24
 
21
25
  import './lib/theme/index.css'
@@ -38,7 +42,10 @@ const components = [
38
42
  SearchTable,
39
43
  SvgIcon,
40
44
  Table,
41
- Upload
45
+ Upload,
46
+ Select,
47
+ CheckboxGroup,
48
+ RadioGroup
42
49
  ]
43
50
 
44
51
  const install = (Vue, opts = {}) => {