@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.
- package/package.json +1 -1
- package/src/main.js +8 -1
package/package.json
CHANGED
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 = {}) => {
|