eoss-ui 0.4.28 → 0.4.29
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/lib/button-group.js +5 -3
- package/lib/button.js +33 -22
- package/lib/data-table.js +15 -18
- package/lib/eoss-ui.common.js +129 -118
- package/lib/form.js +26 -26
- package/lib/{icon.js → icons.js} +10 -9
- package/lib/index.js +1 -1
- package/lib/table-form.js +11 -11
- package/lib/theme-chalk/index.css +1 -1
- package/package.json +1 -1
- package/packages/button/src/main.vue +43 -32
- package/packages/button-group/src/main.vue +3 -1
- package/packages/data-table/src/column.vue +47 -46
- package/packages/data-table/src/main.vue +1 -6
- package/packages/form/src/main.vue +24 -24
- package/packages/form/src/table.vue +6 -6
- package/packages/icons/index.js +5 -0
- package/packages/{icon → icons}/src/main.vue +2 -1
- package/packages/theme-chalk/lib/index.css +1 -1
- package/packages/theme-chalk/src/index.scss +1 -0
- package/src/index.js +4 -4
- package/packages/data-table/src/main copy.vue +0 -1383
- package/packages/icon/index.js +0 -5
- /package/packages/{icon → icons}/src/icon.json +0 -0
package/src/index.js
CHANGED
|
@@ -18,7 +18,7 @@ import FlowGroup from '../packages/flow-group/index.js';
|
|
|
18
18
|
import FlowList from '../packages/flow-list/index.js';
|
|
19
19
|
import HandleUser from '../packages/handle-user/index.js';
|
|
20
20
|
import Handler from '../packages/handler/index.js';
|
|
21
|
-
import
|
|
21
|
+
import Icons from '../packages/icons/index.js';
|
|
22
22
|
import Input from '../packages/input/index.js';
|
|
23
23
|
import InputNumber from '../packages/input-number/index.js';
|
|
24
24
|
import Label from '../packages/label/index.js';
|
|
@@ -70,7 +70,7 @@ const components = [
|
|
|
70
70
|
FlowList,
|
|
71
71
|
HandleUser,
|
|
72
72
|
Handler,
|
|
73
|
-
|
|
73
|
+
Icons,
|
|
74
74
|
Input,
|
|
75
75
|
InputNumber,
|
|
76
76
|
Label,
|
|
@@ -115,7 +115,7 @@ if (typeof window !== 'undefined' && window.Vue) {
|
|
|
115
115
|
}
|
|
116
116
|
|
|
117
117
|
export default {
|
|
118
|
-
version: '0.4.
|
|
118
|
+
version: '0.4.29',
|
|
119
119
|
install,
|
|
120
120
|
Button,
|
|
121
121
|
ButtonGroup,
|
|
@@ -135,7 +135,7 @@ export default {
|
|
|
135
135
|
FlowList,
|
|
136
136
|
HandleUser,
|
|
137
137
|
Handler,
|
|
138
|
-
|
|
138
|
+
Icons,
|
|
139
139
|
Input,
|
|
140
140
|
InputNumber,
|
|
141
141
|
Label,
|