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.
Files changed (61) hide show
  1. package/es/_virtual/_commonjs-dynamic-modules.js +6 -0
  2. package/es/_virtual/jszip.min.js +7 -0
  3. package/es/_virtual/jszip.min2.js +4 -0
  4. package/es/drop-down-condition/drop-down-condition.vue.js +34 -33
  5. package/es/file-download-wrapper/file-download-wrapper.vue.js +265 -0
  6. package/es/file-download-wrapper/file-download-wrapper.vue2.js +4 -0
  7. package/es/file-download-wrapper/index.js +7 -0
  8. package/es/file-download-wrapper/key.js +17 -0
  9. package/es/file-download-wrapper/props.js +12 -0
  10. package/es/file-download-wrapper/style/index.css +66 -0
  11. package/es/height-collapse/height-collapse.vue.js +53 -0
  12. package/es/height-collapse/height-collapse.vue2.js +4 -0
  13. package/es/height-collapse/index.js +7 -0
  14. package/es/height-collapse/props.js +11 -0
  15. package/es/height-collapse/style/index.css +32 -0
  16. package/es/index.js +56 -50
  17. package/es/installs.js +22 -20
  18. package/es/node_modules/.pnpm/jszip@3.10.1/node_modules/jszip/dist/jszip.min.js +2320 -0
  19. package/es/style.css +99 -4
  20. package/lib/file-download-wrapper/style/index.css +66 -0
  21. package/lib/height-collapse/style/index.css +32 -0
  22. package/lib/style.css +99 -4
  23. package/package.json +4 -3
  24. package/types/src/annex-upload/annex-upload.vue.d.ts +8 -8
  25. package/types/src/annex-upload/index.d.ts +4 -4
  26. package/types/src/components.d.ts +2 -1
  27. package/types/src/drop-down-condition/drop-down-condition.vue.d.ts +2 -2
  28. package/types/src/drop-down-condition/index.d.ts +2 -2
  29. package/types/src/drop-down-condition/props.d.ts +1 -1
  30. package/types/src/file-download-wrapper/file-download-wrapper.d.ts +11 -0
  31. package/types/src/file-download-wrapper/file-download-wrapper.vue.d.ts +4 -0
  32. package/types/src/file-download-wrapper/index.d.ts +8 -0
  33. package/types/src/file-download-wrapper/key.d.ts +20 -0
  34. package/types/src/file-download-wrapper/props.d.ts +21 -0
  35. package/types/src/filter-container/filter-container.d.ts +2 -0
  36. package/types/src/filter-container/props.d.ts +0 -2
  37. package/types/src/filter-wrapper/index.d.ts +2 -1
  38. package/types/src/height-collapse/height-collapse.vue.d.ts +32 -0
  39. package/types/src/height-collapse/index.d.ts +50 -0
  40. package/types/src/height-collapse/props.d.ts +11 -0
  41. package/types/src/help-tag/help-tag.vue.d.ts +5 -5
  42. package/types/src/help-tag/index.d.ts +5 -5
  43. package/types/src/help-tag/props.d.ts +5 -5
  44. package/types/src/installs.d.ts +65 -526
  45. package/types/src/operation-log/index.d.ts +2 -2
  46. package/types/src/operation-log/operation-log.vue.d.ts +2 -2
  47. package/types/src/operation-log/props.d.ts +1 -1
  48. package/types/src/scale-screen/props.d.ts +2 -2
  49. package/es/input/index.js +0 -7
  50. package/es/input/input.vue.js +0 -40
  51. package/es/input/input.vue2.js +0 -4
  52. package/es/input/style/index.css +0 -3
  53. package/lib/input/style/index.css +0 -3
  54. package/types/src/input/index.d.ts +0 -515
  55. package/types/src/input/input.d.ts +0 -18
  56. package/types/src/input/input.vue.d.ts +0 -513
  57. package/types/src/shared/hello.d.ts +0 -1
  58. package/types/src/shared/index.d.ts +0 -2
  59. package/types/src/shared/typeCheck.d.ts +0 -2
  60. package/types/src/shared/types/InferVueDefaults.d.ts +0 -7
  61. 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 { YaheeInput as i } from "./input/index.js";
5
- import { YaheeComplexSearch as d } from "./complex-search/index.js";
6
- import { YaheeCopy as u } from "./copy/index.js";
7
- import { YaheeImageUpload as c } from "./image-upload/index.js";
8
- import { YaheeAnnexUpload as P } from "./annex-upload/index.js";
9
- import { YaheeOperationLog as I } from "./operation-log/index.js";
10
- import { YaheeCountryPlatformShopCondition as E } from "./country-platform-shop-condition/index.js";
11
- import { YaheeLeftCondition as L } from "./left-condition/index.js";
12
- import { YaheeLeftConditionEnum as B } from "./left-condition-enum/index.js";
13
- import { YaheeDropDownCondition as F } from "./drop-down-condition/index.js";
14
- import { YaheeCommonImport as T } from "./common-import/index.js";
15
- import { YaheeBorderWrap as b } from "./border-wrap/index.js";
16
- import { YaheeEchartGauge as w } from "./echart-gauge/index.js";
17
- import { YaheeScaleScreen as O } from "./scale-screen/index.js";
18
- import { YaheeHelpTag as q } from "./help-tag/index.js";
19
- import { YaheeFilterContainer as z } from "./filter-container/index.js";
20
- import { YaheeFilterWrapper as K } from "./filter-wrapper/index.js";
21
- import { defaultComplexSearchProps as N } from "./complex-search/props.js";
22
- import { defaultCopyProps as R } from "./copy/props.js";
23
- import { defaultBorderWrapPropsProps as X } from "./border-wrap/props.js";
24
- import { defaultEchartGaugeProps as _ } from "./echart-gauge/props.js";
25
- import { defaultScaleScreenProps as ee } from "./scale-screen/props.js";
26
- import { defaultHelpTagProps as re } from "./help-tag/props.js";
27
- const { setConfig: p } = t(), n = o([...r]);
28
- function x(e) {
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
- P as YaheeAnnexUpload,
33
- b as YaheeBorderWrap,
34
- T as YaheeCommonImport,
35
- d as YaheeComplexSearch,
36
- u as YaheeCopy,
37
- E as YaheeCountryPlatformShopCondition,
38
- F as YaheeDropDownCondition,
39
- w as YaheeEchartGauge,
40
- z as YaheeFilterContainer,
41
- K as YaheeFilterWrapper,
42
- q as YaheeHelpTag,
43
- c as YaheeImageUpload,
44
- i as YaheeInput,
45
- L as YaheeLeftCondition,
46
- B as YaheeLeftConditionEnum,
47
- I as YaheeOperationLog,
48
- O as YaheeScaleScreen,
49
- n as default,
50
- X as defaultBorderWrapPropsProps,
51
- N as defaultComplexSearchProps,
52
- R as defaultCopyProps,
53
- _ as defaultEchartGaugeProps,
54
- re as defaultHelpTagProps,
55
- ee as defaultScaleScreenProps,
56
- x as useGlobalConfig
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 { YaheeInput as o } from "./input/index.js";
2
- import { YaheeComplexSearch as e } from "./complex-search/index.js";
3
- import { YaheeCopy as r } from "./copy/index.js";
4
- import { YaheeImageUpload as m } from "./image-upload/index.js";
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 p } from "./left-condition/index.js";
8
- import { YaheeLeftConditionEnum as i } from "./left-condition-enum/index.js";
9
- import { YaheeDropDownCondition as f } from "./drop-down-condition/index.js";
10
- import { YaheeCountryPlatformShopCondition as n } from "./country-platform-shop-condition/index.js";
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 Y } from "./border-wrap/index.js";
13
- import { YaheeEchartGauge as l } from "./echart-gauge/index.js";
14
- import { YaheeScaleScreen as C } from "./scale-screen/index.js";
15
- import { YaheeHelpTag as d } from "./help-tag/index.js";
16
- import { YaheeFilterContainer as c } from "./filter-container/index.js";
17
- import { YaheeFilterWrapper as u } from "./filter-wrapper/index.js";
18
- const O = [
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
- u
36
+ g,
37
+ s
36
38
  ];
37
39
  export {
38
- O as default
40
+ T as default
39
41
  };