@qynpm/ui 0.0.2 → 1.0.2

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 (58) hide show
  1. package/README.md +183 -8
  2. package/dist/index-1ocyh-Ge.js +1 -0
  3. package/dist/index-BYAIkGVF.js +1 -0
  4. package/dist/index-BaU5rDMh.js +1 -0
  5. package/dist/index-BddPsC3s.mjs +384 -0
  6. package/dist/index-BzzxlJ2O.mjs +205 -0
  7. package/dist/index-C02naY8D.mjs +276 -0
  8. package/dist/index-CEg8yYrg.mjs +142 -0
  9. package/dist/index-CibtL3Up.mjs +325 -0
  10. package/dist/index-Cuwe7RLf.mjs +88 -0
  11. package/dist/index-CzJWU89H.js +1 -0
  12. package/dist/index-DQ-EEZgS.js +1 -0
  13. package/dist/index-Dg93AsO_.mjs +216 -0
  14. package/dist/index-Djj-T8oy.mjs +137 -0
  15. package/dist/index-DlwgfuD9.mjs +55 -0
  16. package/dist/index-Do5SZ8yS.js +1 -0
  17. package/dist/index-DooOsQ9d.js +1 -0
  18. package/dist/index-DzX3lxdp.js +1 -0
  19. package/dist/index-tC70xKe_.js +1 -0
  20. package/dist/index.cjs +1 -0
  21. package/dist/install-CxBnxbuN.mjs +8 -0
  22. package/dist/install-c8il9DQv.js +1 -0
  23. package/dist/js.cookie-XvHV2tha.js +1 -0
  24. package/dist/js.cookie-tagl12-O.mjs +74 -0
  25. package/dist/plugin-vue_export-helper-BHFhmbuH.js +1 -0
  26. package/dist/plugin-vue_export-helper-CHgC5LLL.mjs +9 -0
  27. package/dist/qy-action-bar/index.cjs +1 -0
  28. package/dist/qy-dialog/index.cjs +1 -0
  29. package/dist/qy-form-section/index.cjs +1 -0
  30. package/dist/qy-input/index.cjs +1 -0
  31. package/dist/qy-record-quote-search/index.cjs +1 -0
  32. package/dist/qy-remark-image/index.cjs +2 -0
  33. package/dist/qy-search-input/index.cjs +1 -0
  34. package/dist/qy-select/index.cjs +1 -0
  35. package/dist/qy-upload/index.cjs +1 -0
  36. package/index.d.ts +16 -4
  37. package/package.json +60 -7
  38. package/qy-action-bar/index.d.ts +5 -0
  39. package/qy-action-bar/index.js +4 -0
  40. package/qy-dialog/index.d.ts +5 -0
  41. package/qy-dialog/index.js +4 -0
  42. package/qy-form-section/index.d.ts +5 -0
  43. package/qy-form-section/index.js +4 -0
  44. package/qy-input/index.d.ts +5 -0
  45. package/qy-input/index.js +4 -0
  46. package/qy-record-quote-search/index.d.ts +5 -0
  47. package/qy-record-quote-search/index.js +4 -0
  48. package/qy-remark-image/index.d.ts +5 -0
  49. package/qy-remark-image/index.js +4 -0
  50. package/qy-search-input/index.d.ts +5 -0
  51. package/qy-search-input/index.js +4 -0
  52. package/qy-select/index.d.ts +5 -0
  53. package/qy-select/index.js +4 -0
  54. package/qy-upload/index.d.ts +5 -0
  55. package/qy-upload/index.js +4 -0
  56. package/dist/ui.es.js +0 -994
  57. package/dist/ui.umd.js +0 -2
  58. package/index.js +0 -9
@@ -0,0 +1,5 @@
1
+ import type { DefineComponent, Plugin } from 'vue'
2
+
3
+ declare const QySearchInput: DefineComponent<any, any, any> & Plugin
4
+
5
+ export default QySearchInput
@@ -0,0 +1,4 @@
1
+ import QySearchInput from '../lib/qy-search-input/index.vue'
2
+ import { withInstall } from '../lib/utils/install'
3
+
4
+ export default withInstall(QySearchInput, 'QySearchInput')
@@ -0,0 +1,5 @@
1
+ import type { DefineComponent, Plugin } from 'vue'
2
+
3
+ declare const QySelect: DefineComponent<any, any, any> & Plugin
4
+
5
+ export default QySelect
@@ -0,0 +1,4 @@
1
+ import QySelect from '../lib/qy-select/index.vue'
2
+ import { withInstall } from '../lib/utils/install'
3
+
4
+ export default withInstall(QySelect, 'QySelect')
@@ -0,0 +1,5 @@
1
+ import type { DefineComponent, Plugin } from 'vue'
2
+
3
+ declare const QyUpload: DefineComponent<any, any, any> & Plugin
4
+
5
+ export default QyUpload
@@ -0,0 +1,4 @@
1
+ import QyUpload from '../lib/upload/index.vue'
2
+ import { withInstall } from '../lib/utils/install'
3
+
4
+ export default withInstall(QyUpload, 'QyUpload')