@fangzhongya/fang-ui 0.0.15 → 0.0.16
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/dist/components/array/index.scss +5 -9
- package/dist/components/choice-select/src/data.cjs +1 -1
- package/dist/components/choice-select/src/data.js +1 -1
- package/dist/components/company-select/src/data.cjs +1 -1
- package/dist/components/company-select/src/data.js +1 -1
- package/dist/components/cs-config/src/data.cjs +1 -1
- package/dist/components/cs-config/src/data.js +1 -1
- package/dist/components/department-select/src/data.cjs +1 -1
- package/dist/components/department-select/src/data.js +1 -1
- package/dist/components/dialog/index.scss +4 -4
- package/dist/components/drawer/index.scss +1 -1
- package/dist/components/el-tables/index.scss +1 -1
- package/dist/components/forms/index.scss +7 -7
- package/dist/components/forms-item/index.scss +2 -2
- package/dist/components/icon/src/data.cjs +1 -1
- package/dist/components/icon/src/data.js +1 -1
- package/dist/components/icon-picker/src/data.cjs +1 -1
- package/dist/components/icon-picker/src/data.js +1 -1
- package/dist/components/iframe/src/data.cjs +1 -1
- package/dist/components/iframe/src/data.js +1 -1
- package/dist/components/index.scss +2 -1
- package/dist/components/pagin/index.scss +1 -1
- package/dist/components/retract/src/data.cjs +1 -1
- package/dist/components/retract/src/data.js +1 -1
- package/dist/components/right-key/src/data.cjs +1 -1
- package/dist/components/right-key/src/data.js +1 -1
- package/dist/components/role-select/src/data.cjs +1 -1
- package/dist/components/role-select/src/data.js +1 -1
- package/dist/components/select-dialog/src/data.cjs +1 -1
- package/dist/components/select-dialog/src/data.js +1 -1
- package/dist/components/select-popover/src/data.cjs +1 -1
- package/dist/components/select-popover/src/data.js +1 -1
- package/dist/components/table-list/src/data.cjs +1 -1
- package/dist/components/table-list/src/data.js +1 -1
- package/dist/components/tables/index.cjs +3 -2
- package/dist/components/tables/index.css +24 -5
- package/dist/components/tables/index.js +3 -2
- package/dist/components/tables/index.scss +32 -0
- package/dist/components/tables/index.ts +1 -0
- package/dist/components/tables/src/index.cjs +113 -5
- package/dist/components/tables/src/index.js +113 -5
- package/dist/components/tables/src/index.vue +1 -34
- package/dist/components/tables/src/index2.cjs +2 -113
- package/dist/components/tables/src/index2.js +1 -112
- package/dist/components/tables-pagin/index.scss +4 -4
- package/dist/components/tree-select-box/src/data.cjs +1 -1
- package/dist/components/tree-select-box/src/data.js +1 -1
- package/dist/components/user-select/src/data.cjs +1 -1
- package/dist/components/user-select/src/data.js +1 -1
- package/dist/components/vxe-tables/index.scss +6 -6
- package/dist/directives/index.cjs +8 -8
- package/dist/directives/index.d.ts +3 -3
- package/dist/directives/index.js +8 -8
- package/dist/directives/index.ts +3 -3
- package/dist/icons/vue/index.cjs +4 -4
- package/dist/icons/vue/index.d.ts +2 -2
- package/dist/icons/vue/index.js +8 -8
- package/dist/icons/vue/index.ts +3 -3
- package/dist/index.cjs +8 -8
- package/dist/index.css +23 -0
- package/dist/index.js +8 -8
- package/dist/utils/index.d.ts +1 -1
- package/dist/utils/index.ts +1 -1
- package/dist/utils/vues/index.d.ts +1 -1
- package/dist/utils/vues/index.ts +1 -1
- package/package.json +5 -5
|
@@ -36,7 +36,7 @@ $vtables: 'vtables';
|
|
|
36
36
|
&.is-disabled {
|
|
37
37
|
cursor: not-allowed;
|
|
38
38
|
}
|
|
39
|
-
.#{
|
|
39
|
+
.#{e()}checkbox__label {
|
|
40
40
|
color: var(--vxe-table-header-font-color);
|
|
41
41
|
font-weight: var(--vxe-table-header-font-weight);
|
|
42
42
|
}
|
|
@@ -57,24 +57,24 @@ $vtables: 'vtables';
|
|
|
57
57
|
cursor: not-allowed;
|
|
58
58
|
}
|
|
59
59
|
position: relative;
|
|
60
|
-
.#{
|
|
60
|
+
.#{e()}radio {
|
|
61
61
|
height: auto;
|
|
62
62
|
}
|
|
63
63
|
&.center {
|
|
64
|
-
.#{
|
|
64
|
+
.#{e()}radio {
|
|
65
65
|
text-align: center;
|
|
66
66
|
display: table-cell;
|
|
67
67
|
}
|
|
68
|
-
.#{
|
|
68
|
+
.#{e()}radio__label {
|
|
69
69
|
display: none;
|
|
70
70
|
}
|
|
71
71
|
}
|
|
72
72
|
&.right {
|
|
73
|
-
.#{
|
|
73
|
+
.#{e()}radio {
|
|
74
74
|
text-align: right;
|
|
75
75
|
display: table-cell;
|
|
76
76
|
}
|
|
77
|
-
.#{
|
|
77
|
+
.#{e()}radio__label {
|
|
78
78
|
display: none;
|
|
79
79
|
}
|
|
80
80
|
}
|
|
@@ -2,15 +2,15 @@
|
|
|
2
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
3
|
const index = require("./adjust/index.cjs");
|
|
4
4
|
const index$1 = require("./drag/index.cjs");
|
|
5
|
-
const index$2 = require("./
|
|
6
|
-
const index$3 = require("./
|
|
7
|
-
const index$4 = require("
|
|
5
|
+
const index$2 = require("./expose/index.cjs");
|
|
6
|
+
const index$3 = require("./locus/index.cjs");
|
|
7
|
+
const index$4 = require("./scroll/index.cjs");
|
|
8
8
|
const index$5 = require("./stick/index.cjs");
|
|
9
|
-
const index$6 = require("
|
|
9
|
+
const index$6 = require("../components/loading/src/index.cjs");
|
|
10
10
|
exports.Adjust = index.default;
|
|
11
11
|
exports.Drag = index$1.default;
|
|
12
|
-
exports.
|
|
13
|
-
exports.
|
|
14
|
-
exports.
|
|
12
|
+
exports.Expose = index$2.default;
|
|
13
|
+
exports.Locus = index$3.default;
|
|
14
|
+
exports.Scroll = index$4.default;
|
|
15
15
|
exports.Stick = index$5.default;
|
|
16
|
-
exports.
|
|
16
|
+
exports.VLoading = index$6.vLoading;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export { default as Adjust } from './adjust';
|
|
2
2
|
export { default as Drag } from './drag';
|
|
3
|
-
export { default as Locus } from './locus';
|
|
4
3
|
export { default as Expose } from './expose';
|
|
5
|
-
export { default as
|
|
6
|
-
export { default as Stick } from './stick';
|
|
4
|
+
export { default as Locus } from './locus';
|
|
7
5
|
export { default as Scroll } from './scroll';
|
|
6
|
+
export { default as Stick } from './stick';
|
|
7
|
+
export { default as VLoading } from './v-loading';
|
package/dist/directives/index.js
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import { default as default2 } from "./adjust/index.js";
|
|
2
2
|
import { default as default3 } from "./drag/index.js";
|
|
3
|
-
import { default as default4 } from "./
|
|
4
|
-
import { default as default5 } from "./
|
|
3
|
+
import { default as default4 } from "./expose/index.js";
|
|
4
|
+
import { default as default5 } from "./locus/index.js";
|
|
5
|
+
import { default as default6 } from "./scroll/index.js";
|
|
6
|
+
import { default as default7 } from "./stick/index.js";
|
|
5
7
|
import { vLoading } from "../components/loading/src/index.js";
|
|
6
|
-
import { default as default6 } from "./stick/index.js";
|
|
7
|
-
import { default as default7 } from "./scroll/index.js";
|
|
8
8
|
export {
|
|
9
9
|
default2 as Adjust,
|
|
10
10
|
default3 as Drag,
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
11
|
+
default4 as Expose,
|
|
12
|
+
default5 as Locus,
|
|
13
|
+
default6 as Scroll,
|
|
14
|
+
default7 as Stick,
|
|
15
15
|
vLoading as VLoading
|
|
16
16
|
};
|
package/dist/directives/index.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export { default as Adjust } from './adjust';
|
|
2
2
|
export { default as Drag } from './drag';
|
|
3
|
-
export { default as Locus } from './locus';
|
|
4
3
|
export { default as Expose } from './expose';
|
|
5
|
-
export { default as
|
|
4
|
+
export { default as Locus } from './locus';
|
|
5
|
+
export { default as Scroll } from './scroll';
|
|
6
6
|
export { default as Stick } from './stick';
|
|
7
|
-
export { default as
|
|
7
|
+
export { default as VLoading } from './v-loading';
|
package/dist/icons/vue/index.cjs
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
-
const bottomLeft = require("./bottom-left.cjs");
|
|
4
3
|
const bicycle = require("./bicycle.cjs");
|
|
5
|
-
const bottomRight = require("./bottom-right.cjs");
|
|
6
4
|
const bottom = require("./bottom.cjs");
|
|
7
|
-
|
|
5
|
+
const bottomLeft = require("./bottom-left.cjs");
|
|
6
|
+
const bottomRight = require("./bottom-right.cjs");
|
|
8
7
|
exports.Bicycle = bicycle.default;
|
|
9
|
-
exports.BottomRight = bottomRight.default;
|
|
10
8
|
exports.Bottom = bottom.default;
|
|
9
|
+
exports.BottomLeft = bottomLeft.default;
|
|
10
|
+
exports.BottomRight = bottomRight.default;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { default as BottomLeft } from './bottom-left';
|
|
2
1
|
export { default as Bicycle } from './bicycle';
|
|
3
|
-
export { default as BottomRight } from './bottom-right';
|
|
4
2
|
export { default as Bottom } from './bottom';
|
|
3
|
+
export { default as BottomLeft } from './bottom-left';
|
|
4
|
+
export { default as BottomRight } from './bottom-right';
|
package/dist/icons/vue/index.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { default as default2 } from "./
|
|
2
|
-
import { default as default3 } from "./
|
|
3
|
-
import { default as default4 } from "./bottom-
|
|
4
|
-
import { default as default5 } from "./bottom.js";
|
|
1
|
+
import { default as default2 } from "./bicycle.js";
|
|
2
|
+
import { default as default3 } from "./bottom.js";
|
|
3
|
+
import { default as default4 } from "./bottom-left.js";
|
|
4
|
+
import { default as default5 } from "./bottom-right.js";
|
|
5
5
|
export {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
6
|
+
default2 as Bicycle,
|
|
7
|
+
default3 as Bottom,
|
|
8
|
+
default4 as BottomLeft,
|
|
9
|
+
default5 as BottomRight
|
|
10
10
|
};
|
package/dist/icons/vue/index.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { default as BottomLeft } from './bottom-left.vue'
|
|
2
1
|
export { default as Bicycle } from './bicycle.vue'
|
|
3
|
-
export { default as
|
|
4
|
-
export { default as
|
|
2
|
+
export { default as Bottom } from './bottom.vue'
|
|
3
|
+
export { default as BottomLeft } from './bottom-left.vue'
|
|
4
|
+
export { default as BottomRight } from './bottom-right.vue'
|
package/dist/index.cjs
CHANGED
|
@@ -120,10 +120,10 @@ const index$1O = require("./components/tables/index.cjs");
|
|
|
120
120
|
const index$1P = require("./components/vxe-tables/index.cjs");
|
|
121
121
|
const index$1Q = require("./directives/adjust/index.cjs");
|
|
122
122
|
const index$1R = require("./directives/drag/index.cjs");
|
|
123
|
-
const index$1S = require("./directives/
|
|
124
|
-
const index$1T = require("./directives/
|
|
125
|
-
const index$1U = require("./directives/
|
|
126
|
-
const index$1V = require("./directives/
|
|
123
|
+
const index$1S = require("./directives/expose/index.cjs");
|
|
124
|
+
const index$1T = require("./directives/locus/index.cjs");
|
|
125
|
+
const index$1U = require("./directives/scroll/index.cjs");
|
|
126
|
+
const index$1V = require("./directives/stick/index.cjs");
|
|
127
127
|
const index = {
|
|
128
128
|
install: function(app) {
|
|
129
129
|
const com = index$1W;
|
|
@@ -257,8 +257,8 @@ exports.Tables = index$1O.Tables;
|
|
|
257
257
|
exports.VxeTables = index$1P.VxeTables;
|
|
258
258
|
exports.Adjust = index$1Q.default;
|
|
259
259
|
exports.Drag = index$1R.default;
|
|
260
|
-
exports.
|
|
261
|
-
exports.
|
|
262
|
-
exports.
|
|
263
|
-
exports.
|
|
260
|
+
exports.Expose = index$1S.default;
|
|
261
|
+
exports.Locus = index$1T.default;
|
|
262
|
+
exports.Scroll = index$1U.default;
|
|
263
|
+
exports.Stick = index$1V.default;
|
|
264
264
|
exports.default = index;
|
package/dist/index.css
CHANGED
|
@@ -654,4 +654,27 @@
|
|
|
654
654
|
}
|
|
655
655
|
.tables-pagin-paginat .el-pagination {
|
|
656
656
|
justify-content: flex-end;
|
|
657
|
+
}
|
|
658
|
+
|
|
659
|
+
.tables-pag {
|
|
660
|
+
width: 100%;
|
|
661
|
+
height: 100%;
|
|
662
|
+
flex: 1;
|
|
663
|
+
display: flex;
|
|
664
|
+
flex-direction: column;
|
|
665
|
+
}
|
|
666
|
+
.tables-pag-main {
|
|
667
|
+
display: flex;
|
|
668
|
+
flex-direction: column;
|
|
669
|
+
flex: 1;
|
|
670
|
+
width: 100%;
|
|
671
|
+
}
|
|
672
|
+
.tables-pag-main.is-radio .el-table__header .el-table-column--selection .el-checkbox {
|
|
673
|
+
display: none;
|
|
674
|
+
}
|
|
675
|
+
.tables-pag-paginat {
|
|
676
|
+
overflow: hidden;
|
|
677
|
+
}
|
|
678
|
+
.tables-pag-paginat .el-pagination {
|
|
679
|
+
justify-content: flex-end;
|
|
657
680
|
}
|
package/dist/index.js
CHANGED
|
@@ -118,10 +118,10 @@ import { Tables } from "./components/tables/index.js";
|
|
|
118
118
|
import { VxeTables } from "./components/vxe-tables/index.js";
|
|
119
119
|
import { default as default2 } from "./directives/adjust/index.js";
|
|
120
120
|
import { default as default3 } from "./directives/drag/index.js";
|
|
121
|
-
import { default as default4 } from "./directives/
|
|
122
|
-
import { default as default5 } from "./directives/
|
|
123
|
-
import { default as default6 } from "./directives/
|
|
124
|
-
import { default as default7 } from "./directives/
|
|
121
|
+
import { default as default4 } from "./directives/expose/index.js";
|
|
122
|
+
import { default as default5 } from "./directives/locus/index.js";
|
|
123
|
+
import { default as default6 } from "./directives/scroll/index.js";
|
|
124
|
+
import { default as default7 } from "./directives/stick/index.js";
|
|
125
125
|
const index = {
|
|
126
126
|
install: function(app) {
|
|
127
127
|
const com = index$1;
|
|
@@ -185,7 +185,7 @@ export {
|
|
|
185
185
|
Edit,
|
|
186
186
|
EditFloat,
|
|
187
187
|
ElTables,
|
|
188
|
-
|
|
188
|
+
default4 as Expose,
|
|
189
189
|
Form,
|
|
190
190
|
FormItem,
|
|
191
191
|
Forms,
|
|
@@ -210,7 +210,7 @@ export {
|
|
|
210
210
|
Labels,
|
|
211
211
|
Lists,
|
|
212
212
|
Loading,
|
|
213
|
-
|
|
213
|
+
default5 as Locus,
|
|
214
214
|
Menu,
|
|
215
215
|
Message,
|
|
216
216
|
MessageBox,
|
|
@@ -227,7 +227,7 @@ export {
|
|
|
227
227
|
Retract,
|
|
228
228
|
RightKey,
|
|
229
229
|
RoleSelect,
|
|
230
|
-
|
|
230
|
+
default6 as Scroll,
|
|
231
231
|
Select,
|
|
232
232
|
SelectDialog,
|
|
233
233
|
SelectPopover,
|
|
@@ -235,7 +235,7 @@ export {
|
|
|
235
235
|
Selector,
|
|
236
236
|
Selects,
|
|
237
237
|
Slider,
|
|
238
|
-
|
|
238
|
+
default7 as Stick,
|
|
239
239
|
StickDiv,
|
|
240
240
|
StickEdge,
|
|
241
241
|
StickWindow,
|
package/dist/utils/index.d.ts
CHANGED
package/dist/utils/index.ts
CHANGED
package/dist/utils/vues/index.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fangzhongya/fang-ui",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.16",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description ": "fang-ui",
|
|
7
7
|
"keywords": [
|
|
@@ -48,13 +48,13 @@
|
|
|
48
48
|
"vuedraggable": "4.1.0",
|
|
49
49
|
"vxe-table": "4.14.4",
|
|
50
50
|
"@fang-ui/components": "0.0.1-0",
|
|
51
|
-
"@fang-ui/directives": "0.0.1-0",
|
|
52
51
|
"@fang-ui/hooks": "0.0.1-0",
|
|
53
|
-
"@fang-ui/locale": "0.0.1-0",
|
|
54
52
|
"@fang-ui/icons": "0.0.1-0",
|
|
55
|
-
"@fang-ui/
|
|
53
|
+
"@fang-ui/directives": "0.0.1-0",
|
|
56
54
|
"@fang-ui/theme": "0.0.1-0",
|
|
57
|
-
"@fang-ui/types": "0.0.1-0"
|
|
55
|
+
"@fang-ui/types": "0.0.1-0",
|
|
56
|
+
"@fang-ui/utils": "0.0.1-0",
|
|
57
|
+
"@fang-ui/locale": "0.0.1-0"
|
|
58
58
|
},
|
|
59
59
|
"main": "./dist/index.cjs",
|
|
60
60
|
"module": "./dist/index.js",
|