yahee-components 0.0.100 → 0.0.102
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/es/_virtual/_commonjs-dynamic-modules.js +6 -0
- package/es/_virtual/jszip.min.js +7 -0
- package/es/_virtual/jszip.min2.js +4 -0
- package/es/drop-down-condition/drop-down-condition.vue.js +34 -33
- package/es/file-download-wrapper/file-download-wrapper.vue.js +265 -0
- package/es/file-download-wrapper/file-download-wrapper.vue2.js +4 -0
- package/es/file-download-wrapper/index.js +7 -0
- package/es/file-download-wrapper/key.js +17 -0
- package/es/file-download-wrapper/props.js +12 -0
- package/es/file-download-wrapper/style/index.css +66 -0
- package/es/height-collapse/height-collapse.vue.js +53 -0
- package/es/height-collapse/height-collapse.vue2.js +4 -0
- package/es/height-collapse/index.js +7 -0
- package/es/height-collapse/props.js +11 -0
- package/es/height-collapse/style/index.css +32 -0
- package/es/index.js +56 -50
- package/es/installs.js +22 -20
- package/es/node_modules/.pnpm/jszip@3.10.1/node_modules/jszip/dist/jszip.min.js +2320 -0
- package/es/style.css +99 -4
- package/lib/file-download-wrapper/style/index.css +66 -0
- package/lib/height-collapse/style/index.css +32 -0
- package/lib/style.css +99 -4
- package/package.json +4 -3
- package/types/src/annex-upload/annex-upload.vue.d.ts +8 -8
- package/types/src/annex-upload/index.d.ts +4 -4
- package/types/src/components.d.ts +2 -1
- package/types/src/drop-down-condition/drop-down-condition.vue.d.ts +2 -2
- package/types/src/drop-down-condition/index.d.ts +2 -2
- package/types/src/drop-down-condition/props.d.ts +1 -1
- package/types/src/file-download-wrapper/file-download-wrapper.d.ts +11 -0
- package/types/src/file-download-wrapper/file-download-wrapper.vue.d.ts +4 -0
- package/types/src/file-download-wrapper/index.d.ts +8 -0
- package/types/src/file-download-wrapper/key.d.ts +20 -0
- package/types/src/file-download-wrapper/props.d.ts +21 -0
- package/types/src/filter-container/filter-container.d.ts +2 -0
- package/types/src/filter-container/props.d.ts +0 -2
- package/types/src/filter-wrapper/index.d.ts +2 -1
- package/types/src/height-collapse/height-collapse.vue.d.ts +32 -0
- package/types/src/height-collapse/index.d.ts +50 -0
- package/types/src/height-collapse/props.d.ts +11 -0
- package/types/src/help-tag/help-tag.vue.d.ts +5 -5
- package/types/src/help-tag/index.d.ts +5 -5
- package/types/src/help-tag/props.d.ts +5 -5
- package/types/src/installs.d.ts +65 -526
- package/types/src/operation-log/index.d.ts +2 -2
- package/types/src/operation-log/operation-log.vue.d.ts +2 -2
- package/types/src/operation-log/props.d.ts +1 -1
- package/types/src/scale-screen/props.d.ts +2 -2
- package/es/input/index.js +0 -7
- package/es/input/input.vue.js +0 -40
- package/es/input/input.vue2.js +0 -4
- package/es/input/style/index.css +0 -3
- package/lib/input/style/index.css +0 -3
- package/types/src/input/index.d.ts +0 -515
- package/types/src/input/input.d.ts +0 -18
- package/types/src/input/input.vue.d.ts +0 -513
- package/types/src/shared/hello.d.ts +0 -1
- package/types/src/shared/index.d.ts +0 -2
- package/types/src/shared/typeCheck.d.ts +0 -2
- package/types/src/shared/types/InferVueDefaults.d.ts +0 -7
- package/types/src/shared/types/index.d.ts +0 -1
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
@charset "UTF-8";
|
|
2
|
+
.yahee-height-collapse-wrapper {
|
|
3
|
+
width: 100%;
|
|
4
|
+
position: relative;
|
|
5
|
+
}
|
|
6
|
+
.yahee-height-collapse-wrapper .height-collapse-content {
|
|
7
|
+
width: 100%;
|
|
8
|
+
transition: max-height 0.2s ease;
|
|
9
|
+
}
|
|
10
|
+
.yahee-height-collapse-wrapper .show-filters {
|
|
11
|
+
cursor: pointer;
|
|
12
|
+
width: 100%;
|
|
13
|
+
background: #eaeded;
|
|
14
|
+
font-weight: bold;
|
|
15
|
+
color: #3366cc;
|
|
16
|
+
text-align: center;
|
|
17
|
+
font-size: 10px;
|
|
18
|
+
height: 12px;
|
|
19
|
+
z-index: 1111;
|
|
20
|
+
display: inline-block;
|
|
21
|
+
position: absolute;
|
|
22
|
+
margin: 0;
|
|
23
|
+
border-bottom: 1px solid #3366cc;
|
|
24
|
+
border-top: 1px solid #ddd;
|
|
25
|
+
line-height: 9px;
|
|
26
|
+
left: 0;
|
|
27
|
+
/* 收起状态的额外样式可以通过 .show-filters.more 来扩展 */
|
|
28
|
+
}
|
|
29
|
+
.yahee-height-collapse-wrapper .show-filters:hover {
|
|
30
|
+
background: #9bafbf;
|
|
31
|
+
color: #fff;
|
|
32
|
+
}
|
package/es/index.js
CHANGED
|
@@ -1,57 +1,63 @@
|
|
|
1
1
|
import { makeInstaller as o } from "./utils/install.js";
|
|
2
2
|
import r from "./installs.js";
|
|
3
3
|
import { config as t } from "./utils/config.js";
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
18
|
-
import {
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
21
|
-
import {
|
|
22
|
-
import {
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
import {
|
|
26
|
-
import {
|
|
27
|
-
|
|
28
|
-
|
|
4
|
+
import { YaheeComplexSearch as i } from "./complex-search/index.js";
|
|
5
|
+
import { YaheeCopy as s } from "./copy/index.js";
|
|
6
|
+
import { YaheeImageUpload as u } from "./image-upload/index.js";
|
|
7
|
+
import { YaheeAnnexUpload as c } from "./annex-upload/index.js";
|
|
8
|
+
import { YaheeOperationLog as P } from "./operation-log/index.js";
|
|
9
|
+
import { YaheeCountryPlatformShopCondition as W } from "./country-platform-shop-condition/index.js";
|
|
10
|
+
import { YaheeLeftCondition as F } from "./left-condition/index.js";
|
|
11
|
+
import { YaheeLeftConditionEnum as w } from "./left-condition-enum/index.js";
|
|
12
|
+
import { YaheeDropDownCondition as E } from "./drop-down-condition/index.js";
|
|
13
|
+
import { YaheeCommonImport as I } from "./common-import/index.js";
|
|
14
|
+
import { YaheeBorderWrap as B } from "./border-wrap/index.js";
|
|
15
|
+
import { YaheeEchartGauge as U } from "./echart-gauge/index.js";
|
|
16
|
+
import { YaheeScaleScreen as k } from "./scale-screen/index.js";
|
|
17
|
+
import { YaheeHelpTag as O } from "./help-tag/index.js";
|
|
18
|
+
import { YaheeFilterContainer as q } from "./filter-container/index.js";
|
|
19
|
+
import { YaheeFilterWrapper as z } from "./filter-wrapper/index.js";
|
|
20
|
+
import { YaheeHeightCollapse as K } from "./height-collapse/index.js";
|
|
21
|
+
import { YaheeFileDownloadWrapper as N } from "./file-download-wrapper/index.js";
|
|
22
|
+
import { defaultComplexSearchProps as R } from "./complex-search/props.js";
|
|
23
|
+
import { defaultCopyProps as X } from "./copy/props.js";
|
|
24
|
+
import { defaultBorderWrapPropsProps as _ } from "./border-wrap/props.js";
|
|
25
|
+
import { defaultEchartGaugeProps as ee } from "./echart-gauge/props.js";
|
|
26
|
+
import { defaultScaleScreenProps as re } from "./scale-screen/props.js";
|
|
27
|
+
import { defaultHelpTagProps as pe } from "./help-tag/props.js";
|
|
28
|
+
import { defaultHeightCollapseProps as fe } from "./height-collapse/props.js";
|
|
29
|
+
import { defaultFileDownloadWrapperProps as le } from "./file-download-wrapper/props.js";
|
|
30
|
+
const { setConfig: p } = t(), l = o([...r]);
|
|
31
|
+
function n(e) {
|
|
29
32
|
p(e);
|
|
30
33
|
}
|
|
31
34
|
export {
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
R as
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
35
|
+
c as YaheeAnnexUpload,
|
|
36
|
+
B as YaheeBorderWrap,
|
|
37
|
+
I as YaheeCommonImport,
|
|
38
|
+
i as YaheeComplexSearch,
|
|
39
|
+
s as YaheeCopy,
|
|
40
|
+
W as YaheeCountryPlatformShopCondition,
|
|
41
|
+
E as YaheeDropDownCondition,
|
|
42
|
+
U as YaheeEchartGauge,
|
|
43
|
+
N as YaheeFileDownloadWrapper,
|
|
44
|
+
q as YaheeFilterContainer,
|
|
45
|
+
z as YaheeFilterWrapper,
|
|
46
|
+
K as YaheeHeightCollapse,
|
|
47
|
+
O as YaheeHelpTag,
|
|
48
|
+
u as YaheeImageUpload,
|
|
49
|
+
F as YaheeLeftCondition,
|
|
50
|
+
w as YaheeLeftConditionEnum,
|
|
51
|
+
P as YaheeOperationLog,
|
|
52
|
+
k as YaheeScaleScreen,
|
|
53
|
+
l as default,
|
|
54
|
+
_ as defaultBorderWrapPropsProps,
|
|
55
|
+
R as defaultComplexSearchProps,
|
|
56
|
+
X as defaultCopyProps,
|
|
57
|
+
ee as defaultEchartGaugeProps,
|
|
58
|
+
le as defaultFileDownloadWrapperProps,
|
|
59
|
+
fe as defaultHeightCollapseProps,
|
|
60
|
+
pe as defaultHelpTagProps,
|
|
61
|
+
re as defaultScaleScreenProps,
|
|
62
|
+
n as useGlobalConfig
|
|
57
63
|
};
|
package/es/installs.js
CHANGED
|
@@ -1,39 +1,41 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import { YaheeOperationLog as t } from "./operation-log/index.js";
|
|
1
|
+
import { YaheeComplexSearch as o } from "./complex-search/index.js";
|
|
2
|
+
import { YaheeCopy as e } from "./copy/index.js";
|
|
3
|
+
import { YaheeImageUpload as r } from "./image-upload/index.js";
|
|
4
|
+
import { YaheeOperationLog as m } from "./operation-log/index.js";
|
|
6
5
|
import { YaheeAnnexUpload as a } from "./annex-upload/index.js";
|
|
7
|
-
import { YaheeLeftCondition as
|
|
8
|
-
import { YaheeLeftConditionEnum as
|
|
9
|
-
import { YaheeDropDownCondition as
|
|
10
|
-
import { YaheeCountryPlatformShopCondition as
|
|
6
|
+
import { YaheeLeftCondition as t } from "./left-condition/index.js";
|
|
7
|
+
import { YaheeLeftConditionEnum as p } from "./left-condition-enum/index.js";
|
|
8
|
+
import { YaheeDropDownCondition as i } from "./drop-down-condition/index.js";
|
|
9
|
+
import { YaheeCountryPlatformShopCondition as f } from "./country-platform-shop-condition/index.js";
|
|
11
10
|
import { YaheeCommonImport as h } from "./common-import/index.js";
|
|
12
|
-
import { YaheeBorderWrap as
|
|
13
|
-
import { YaheeEchartGauge as
|
|
14
|
-
import { YaheeScaleScreen as
|
|
15
|
-
import { YaheeHelpTag as
|
|
16
|
-
import { YaheeFilterContainer as
|
|
17
|
-
import { YaheeFilterWrapper as
|
|
18
|
-
|
|
11
|
+
import { YaheeBorderWrap as n } from "./border-wrap/index.js";
|
|
12
|
+
import { YaheeEchartGauge as Y } from "./echart-gauge/index.js";
|
|
13
|
+
import { YaheeScaleScreen as l } from "./scale-screen/index.js";
|
|
14
|
+
import { YaheeHelpTag as C } from "./help-tag/index.js";
|
|
15
|
+
import { YaheeFilterContainer as d } from "./filter-container/index.js";
|
|
16
|
+
import { YaheeFilterWrapper as c } from "./filter-wrapper/index.js";
|
|
17
|
+
import { YaheeHeightCollapse as g } from "./height-collapse/index.js";
|
|
18
|
+
import { YaheeFileDownloadWrapper as s } from "./file-download-wrapper/index.js";
|
|
19
|
+
const T = [
|
|
19
20
|
o,
|
|
20
21
|
e,
|
|
21
22
|
r,
|
|
22
23
|
m,
|
|
23
|
-
t,
|
|
24
24
|
a,
|
|
25
|
+
t,
|
|
25
26
|
p,
|
|
26
27
|
i,
|
|
27
28
|
f,
|
|
28
|
-
n,
|
|
29
29
|
h,
|
|
30
|
+
n,
|
|
30
31
|
Y,
|
|
31
32
|
l,
|
|
32
33
|
C,
|
|
33
34
|
d,
|
|
34
35
|
c,
|
|
35
|
-
|
|
36
|
+
g,
|
|
37
|
+
s
|
|
36
38
|
];
|
|
37
39
|
export {
|
|
38
|
-
|
|
40
|
+
T as default
|
|
39
41
|
};
|