yahee-components 0.0.100 → 0.0.103

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 (62) 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 +5 -223
  5. package/es/drop-down-condition/drop-down-condition.vue2.js +220 -2
  6. package/es/file-download-wrapper/file-download-wrapper.vue.js +265 -0
  7. package/es/file-download-wrapper/file-download-wrapper.vue2.js +4 -0
  8. package/es/file-download-wrapper/index.js +7 -0
  9. package/es/file-download-wrapper/key.js +17 -0
  10. package/es/file-download-wrapper/props.js +12 -0
  11. package/es/file-download-wrapper/style/index.css +66 -0
  12. package/es/height-collapse/height-collapse.vue.js +53 -0
  13. package/es/height-collapse/height-collapse.vue2.js +4 -0
  14. package/es/height-collapse/index.js +7 -0
  15. package/es/height-collapse/props.js +11 -0
  16. package/es/height-collapse/style/index.css +32 -0
  17. package/es/index.js +56 -50
  18. package/es/installs.js +22 -20
  19. package/es/node_modules/.pnpm/jszip@3.10.1/node_modules/jszip/dist/jszip.min.js +2320 -0
  20. package/es/style.css +99 -4
  21. package/lib/file-download-wrapper/style/index.css +66 -0
  22. package/lib/height-collapse/style/index.css +32 -0
  23. package/lib/style.css +99 -4
  24. package/package.json +4 -3
  25. package/types/src/annex-upload/annex-upload.vue.d.ts +8 -8
  26. package/types/src/annex-upload/index.d.ts +4 -4
  27. package/types/src/components.d.ts +2 -1
  28. package/types/src/drop-down-condition/drop-down-condition.vue.d.ts +30 -16
  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/operation-log/index.d.ts +2 -2
  45. package/types/src/operation-log/operation-log.vue.d.ts +2 -2
  46. package/types/src/operation-log/props.d.ts +1 -1
  47. package/types/src/scale-screen/props.d.ts +2 -2
  48. package/es/input/index.js +0 -7
  49. package/es/input/input.vue.js +0 -40
  50. package/es/input/input.vue2.js +0 -4
  51. package/es/input/style/index.css +0 -3
  52. package/lib/input/style/index.css +0 -3
  53. package/types/src/drop-down-condition/index.d.ts +0 -462
  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/installs.d.ts +0 -3481
  58. package/types/src/shared/hello.d.ts +0 -1
  59. package/types/src/shared/index.d.ts +0 -2
  60. package/types/src/shared/typeCheck.d.ts +0 -2
  61. package/types/src/shared/types/InferVueDefaults.d.ts +0 -7
  62. package/types/src/shared/types/index.d.ts +0 -1
@@ -1 +0,0 @@
1
- export declare function hello(to?: string): string;
@@ -1,2 +0,0 @@
1
- export * from './hello';
2
- export * from './types';
@@ -1,2 +0,0 @@
1
- export declare function isObjectLike(val: unknown): val is Record<any, any>;
2
- export declare function isFunction(val: unknown): val is Function;
@@ -1,7 +0,0 @@
1
- type NativeType = null | number | string | boolean | symbol | Function;
2
- type InferDefault<P, T> = ((props: P) => T & {}) | (T extends NativeType ? T : never);
3
- /** 推断出 props 默认值的类型 */
4
- export type InferVueDefaults<T> = {
5
- [K in keyof T]?: InferDefault<T, T[K]>;
6
- };
7
- export {};
@@ -1 +0,0 @@
1
- export * from './InferVueDefaults';