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,50 @@
1
+ import { SFCWithInstall } from '../utils/typescript';
2
+ import { CreateComponentPublicInstanceWithMixins, ComponentOptionsMixin, PublicProps, GlobalComponents, GlobalDirectives, ComponentProvideOptions, ComponentOptionsBase, VNodeProps, AllowedComponentProps, ComponentCustomProps } from 'vue';
3
+ import { HeightCollapseProps } from './props';
4
+ export declare const YaheeHeightCollapse: SFCWithInstall<{
5
+ new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly< HeightCollapseProps> & Readonly<{
6
+ onChange?: (isExpand: boolean) => any;
7
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
8
+ change: (isExpand: boolean) => any;
9
+ }, PublicProps, {
10
+ maxHeight: number;
11
+ defaultExpand: boolean;
12
+ expandTitle: string;
13
+ collapseTitle: string;
14
+ }, true, {}, {}, GlobalComponents, GlobalDirectives, string, {
15
+ contentRef: HTMLDivElement;
16
+ }, any, ComponentProvideOptions, {
17
+ P: {};
18
+ B: {};
19
+ D: {};
20
+ C: {};
21
+ M: {};
22
+ Defaults: {};
23
+ }, Readonly< HeightCollapseProps> & Readonly<{
24
+ onChange?: (isExpand: boolean) => any;
25
+ }>, {}, {}, {}, {}, {
26
+ maxHeight: number;
27
+ defaultExpand: boolean;
28
+ expandTitle: string;
29
+ collapseTitle: string;
30
+ }>;
31
+ __isFragment?: never;
32
+ __isTeleport?: never;
33
+ __isSuspense?: never;
34
+ } & ComponentOptionsBase<Readonly< HeightCollapseProps> & Readonly<{
35
+ onChange?: (isExpand: boolean) => any;
36
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
37
+ change: (isExpand: boolean) => any;
38
+ }, string, {
39
+ maxHeight: number;
40
+ defaultExpand: boolean;
41
+ expandTitle: string;
42
+ collapseTitle: string;
43
+ }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
44
+ $slots: {
45
+ default?(_: {}): any;
46
+ };
47
+ })> & Record<string, any>;
48
+ export default YaheeHeightCollapse;
49
+ export * from './height-collapse.vue';
50
+ export * from './props';
@@ -0,0 +1,11 @@
1
+ export interface HeightCollapseProps {
2
+ /** 收起状态下的最大高度,超出则显示展开按钮 */
3
+ maxHeight?: number;
4
+ /** 是否默认展开 */
5
+ defaultExpand?: boolean;
6
+ /** 展开状态下的hover提示文案 */
7
+ expandTitle?: string;
8
+ /** 收起状态下的hover提示文案 */
9
+ collapseTitle?: string;
10
+ }
11
+ export declare function defaultHeightCollapseProps(): Required<HeightCollapseProps>;
@@ -65,7 +65,6 @@ declare const _default: DefineComponent<ExtractPropTypes<{
65
65
  readonly showArrow: boolean;
66
66
  }> & Omit<{
67
67
  readonly disabled: boolean;
68
- readonly tabindex: string | number;
69
68
  readonly width: string | number;
70
69
  readonly trigger: TooltipTriggerType | TooltipTriggerType[];
71
70
  readonly effect: PopperEffect;
@@ -74,16 +73,17 @@ declare const _default: DefineComponent<ExtractPropTypes<{
74
73
  readonly persistent: boolean;
75
74
  readonly showArrow: boolean;
76
75
  readonly placement: Placement;
76
+ readonly tabindex: string | number;
77
77
  readonly content: string;
78
78
  readonly triggerKeys: string[];
79
79
  readonly enterable: boolean;
80
80
  readonly showAfter: number;
81
81
  readonly hideAfter: number;
82
82
  readonly autoClose: number;
83
- readonly transition?: string;
84
- readonly title?: string;
85
83
  readonly visible?: boolean;
84
+ readonly transition?: string;
86
85
  readonly appendTo?: string | HTMLElement;
86
+ readonly title?: string;
87
87
  readonly popperClass?: string | {
88
88
  [x: string]: boolean;
89
89
  } | (string | {
@@ -114,7 +114,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
114
114
  "onAfter-leave"?: (() => any) | undefined;
115
115
  "onBefore-enter"?: (() => any) | undefined;
116
116
  "onBefore-leave"?: (() => any) | undefined;
117
- } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "disabled" | "tabindex" | "visible" | "width" | "trigger" | "effect" | "popperOptions" | "teleported" | "persistent" | "showArrow" | "offset" | "placement" | "content" | "triggerKeys" | "enterable" | "showAfter" | "hideAfter" | "autoClose">;
117
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "visible" | "disabled" | "width" | "trigger" | "effect" | "popperOptions" | "teleported" | "persistent" | "showArrow" | "offset" | "placement" | "tabindex" | "content" | "triggerKeys" | "enterable" | "showAfter" | "hideAfter" | "autoClose">;
118
118
  $attrs: {
119
119
  [x: string]: unknown;
120
120
  };
@@ -576,7 +576,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
576
576
  "onAfter-leave"?: (() => any) | undefined;
577
577
  "onBefore-enter"?: (() => any) | undefined;
578
578
  "onBefore-leave"?: (() => any) | undefined;
579
- }, "disabled" | "tabindex" | "visible" | "width" | "trigger" | "effect" | "popperOptions" | "teleported" | "persistent" | "showArrow" | "offset" | "placement" | "popperRef" | "content" | "triggerKeys" | "enterable" | "showAfter" | "hideAfter" | "autoClose" | "hide"> & ShallowUnwrapRef<{
579
+ }, "visible" | "disabled" | "width" | "trigger" | "effect" | "popperOptions" | "teleported" | "persistent" | "showArrow" | "offset" | "placement" | "tabindex" | "popperRef" | "content" | "triggerKeys" | "enterable" | "showAfter" | "hideAfter" | "autoClose" | "hide"> & ShallowUnwrapRef<{
580
580
  popperRef: ComputedRef< PopperInstance | undefined>;
581
581
  hide: () => void;
582
582
  }> & {} & ComponentCustomProperties & {} & {
@@ -66,7 +66,6 @@ export declare const YaheeHelpTag: SFCWithInstall<DefineComponent<ExtractPropTyp
66
66
  readonly showArrow: boolean;
67
67
  }> & Omit<{
68
68
  readonly disabled: boolean;
69
- readonly tabindex: string | number;
70
69
  readonly width: string | number;
71
70
  readonly trigger: TooltipTriggerType | TooltipTriggerType[];
72
71
  readonly effect: PopperEffect;
@@ -75,16 +74,17 @@ export declare const YaheeHelpTag: SFCWithInstall<DefineComponent<ExtractPropTyp
75
74
  readonly persistent: boolean;
76
75
  readonly showArrow: boolean;
77
76
  readonly placement: Placement;
77
+ readonly tabindex: string | number;
78
78
  readonly content: string;
79
79
  readonly triggerKeys: string[];
80
80
  readonly enterable: boolean;
81
81
  readonly showAfter: number;
82
82
  readonly hideAfter: number;
83
83
  readonly autoClose: number;
84
- readonly transition?: string;
85
- readonly title?: string;
86
84
  readonly visible?: boolean;
85
+ readonly transition?: string;
87
86
  readonly appendTo?: string | HTMLElement;
87
+ readonly title?: string;
88
88
  readonly popperClass?: string | {
89
89
  [x: string]: boolean;
90
90
  } | (string | {
@@ -115,7 +115,7 @@ export declare const YaheeHelpTag: SFCWithInstall<DefineComponent<ExtractPropTyp
115
115
  "onAfter-leave"?: (() => any) | undefined;
116
116
  "onBefore-enter"?: (() => any) | undefined;
117
117
  "onBefore-leave"?: (() => any) | undefined;
118
- } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "disabled" | "tabindex" | "visible" | "width" | "trigger" | "effect" | "popperOptions" | "teleported" | "persistent" | "showArrow" | "offset" | "placement" | "content" | "triggerKeys" | "enterable" | "showAfter" | "hideAfter" | "autoClose">;
118
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "visible" | "disabled" | "width" | "trigger" | "effect" | "popperOptions" | "teleported" | "persistent" | "showArrow" | "offset" | "placement" | "tabindex" | "content" | "triggerKeys" | "enterable" | "showAfter" | "hideAfter" | "autoClose">;
119
119
  $attrs: {
120
120
  [x: string]: unknown;
121
121
  };
@@ -577,7 +577,7 @@ export declare const YaheeHelpTag: SFCWithInstall<DefineComponent<ExtractPropTyp
577
577
  "onAfter-leave"?: (() => any) | undefined;
578
578
  "onBefore-enter"?: (() => any) | undefined;
579
579
  "onBefore-leave"?: (() => any) | undefined;
580
- }, "disabled" | "tabindex" | "visible" | "width" | "trigger" | "effect" | "popperOptions" | "teleported" | "persistent" | "showArrow" | "offset" | "placement" | "popperRef" | "content" | "triggerKeys" | "enterable" | "showAfter" | "hideAfter" | "autoClose" | "hide"> & ShallowUnwrapRef<{
580
+ }, "visible" | "disabled" | "width" | "trigger" | "effect" | "popperOptions" | "teleported" | "persistent" | "showArrow" | "offset" | "placement" | "tabindex" | "popperRef" | "content" | "triggerKeys" | "enterable" | "showAfter" | "hideAfter" | "autoClose" | "hide"> & ShallowUnwrapRef<{
581
581
  popperRef: ComputedRef< PopperInstance | undefined>;
582
582
  hide: () => void;
583
583
  }> & {} & ComponentCustomProperties & {} & {
@@ -10,13 +10,13 @@ export interface HelpTagProps {
10
10
  */
11
11
  tipsId: string;
12
12
  /**
13
- * 提示内容宽度高度定义
14
- * @default ''
15
- */
16
- tipsContentSize: () => ({
13
+ * 提示内容宽度高度定义
14
+ * @default ''
15
+ */
16
+ tipsContentSize: () => {
17
17
  width: number;
18
18
  height: number;
19
- });
19
+ };
20
20
  }
21
21
  export declare function defaultHelpTagProps(): {
22
22
  tipsContentSize: () => {