eoss-ui 0.4.78 → 0.4.79
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 +2 -2
- package/lib/button.js +147 -136
- package/lib/card.js +2 -2
- package/lib/cascader.js +2 -2
- package/lib/checkbox-group.js +2 -2
- package/lib/clients.js +2 -2
- package/lib/data-table-form.js +3 -2
- package/lib/data-table.js +3 -2
- package/lib/date-picker.js +2 -2
- package/lib/dialog.js +7 -5
- package/lib/enterprise.js +2 -2
- package/lib/eoss-ui.common.js +435 -194
- package/lib/error-page.js +2 -2
- package/lib/flow-group.js +2 -2
- package/lib/flow-list.js +2 -2
- package/lib/flow.js +3 -2
- package/lib/form.js +54 -6
- package/lib/handle-user.js +2 -2
- package/lib/handler.js +2 -2
- package/lib/icons.js +4 -4
- package/lib/index.js +1 -1
- package/lib/input-number.js +2 -2
- package/lib/input.js +9 -9
- package/lib/label.js +2 -2
- package/lib/layout.js +182 -11
- package/lib/login.js +4 -2
- package/lib/main.js +10 -9
- package/lib/menu.js +2 -2
- package/lib/nav.js +2 -2
- package/lib/notify.js +2 -2
- package/lib/page.js +2 -2
- package/lib/pagination.js +2 -2
- package/lib/player.js +8 -8
- package/lib/qr-code.js +4 -4
- package/lib/radio-group.js +2 -2
- package/lib/retrial-auth.js +2 -2
- package/lib/select-ganged.js +2 -2
- package/lib/select.js +4 -4
- package/lib/selector-panel.js +44 -54
- package/lib/selector.js +4 -4
- package/lib/sizer.js +2 -2
- package/lib/steps.js +2 -2
- package/lib/switch.js +2 -2
- package/lib/table-form.js +20 -8
- package/lib/tabs-panel.js +2 -2
- package/lib/tabs.js +2 -2
- package/lib/theme-chalk/index.css +1 -1
- package/lib/theme-chalk/layout.css +1 -0
- package/lib/tips.js +2 -2
- package/lib/toolbar.js +2 -2
- package/lib/tree-group.js +2 -2
- package/lib/tree.js +2 -2
- package/lib/upload.js +2 -2
- package/lib/wujie.js +2 -2
- package/lib/wxlogin.js +2 -2
- package/package.json +2 -1
- package/packages/button/src/main.vue +178 -158
- package/packages/form/src/main.vue +10 -6
- package/packages/form/src/table.vue +3 -2
- package/packages/layout/src/item.vue +104 -0
- package/packages/layout/src/main.vue +7 -2
- package/packages/theme-chalk/lib/index.css +1 -1
- package/packages/theme-chalk/lib/layout.css +1 -0
- package/packages/theme-chalk/src/layout.scss +44 -0
- package/src/index.js +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@charset "UTF-8";.es-layout{height:100%;position:relative;-webkit-transition:height .2s ease;transition:height .2s ease;padding:6px}.es-layout .es-layout-item{position:absolute;padding:6px;-ms-touch-action:none;touch-action:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.es-layout .es-layout-item .es-card{width:100%;height:100%}.es-layout .es-layout-item .es-layout-resizable{width:20px;height:20px;position:absolute;right:6px;bottom:6px;z-index:9999;cursor:se-resize}.es-layout .es-layout-item .es-layout-resizable-width{width:10px;position:absolute;top:6px;right:6px;bottom:6px;z-index:9998;cursor:e-resize}.es-layout .es-layout-item .es-layout-resizable-height{height:10px;position:absolute;left:6px;right:6px;bottom:6px;z-index:9998;cursor:s-resize}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
@import './common/var.scss';
|
|
2
|
+
.es-layout {
|
|
3
|
+
height: 100%;
|
|
4
|
+
position: relative;
|
|
5
|
+
transition: height 200ms ease;
|
|
6
|
+
padding: 6px;
|
|
7
|
+
.es-layout-item {
|
|
8
|
+
position: absolute;
|
|
9
|
+
padding: 6px;
|
|
10
|
+
touch-action: none;
|
|
11
|
+
user-select: none;
|
|
12
|
+
.es-card {
|
|
13
|
+
width: 100%;
|
|
14
|
+
height: 100%;
|
|
15
|
+
}
|
|
16
|
+
.es-layout-resizable {
|
|
17
|
+
width: 20px;
|
|
18
|
+
height: 20px;
|
|
19
|
+
position: absolute;
|
|
20
|
+
right: 6px;
|
|
21
|
+
bottom: 6px;
|
|
22
|
+
z-index: 9999;
|
|
23
|
+
cursor: se-resize;
|
|
24
|
+
}
|
|
25
|
+
.es-layout-resizable-width {
|
|
26
|
+
width: 10px;
|
|
27
|
+
position: absolute;
|
|
28
|
+
top: 6px;
|
|
29
|
+
right: 6px;
|
|
30
|
+
bottom: 6px;
|
|
31
|
+
z-index: 9998;
|
|
32
|
+
cursor: e-resize;
|
|
33
|
+
}
|
|
34
|
+
.es-layout-resizable-height {
|
|
35
|
+
height: 10px;
|
|
36
|
+
position: absolute;
|
|
37
|
+
left: 6px;
|
|
38
|
+
right: 6px;
|
|
39
|
+
bottom: 6px;
|
|
40
|
+
z-index: 9998;
|
|
41
|
+
cursor: s-resize;
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|