@das-fed/utils 6.3.0-beta.9 → 6.4.0-dev.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 (39) hide show
  1. package/api-services/modules/file/index.d.ts +1 -1
  2. package/api-services/modules/file/index.js +253 -244
  3. package/api-services/modules/file/index.js.gz +0 -0
  4. package/common-info/set-personal-info/index.js +591 -565
  5. package/common-info/set-personal-info/index.js.gz +0 -0
  6. package/common-tools/date-format/index.js +2 -1
  7. package/common-tools/get-url-params/index.d.ts +1 -1
  8. package/common-tools/get-url-params/index.js +49 -46
  9. package/common-tools/get-url-params/index.js.gz +0 -0
  10. package/common-tools/update-fav-icon/index.js +1 -1
  11. package/create-api-service/index.js +1405 -1371
  12. package/create-api-service/index.js.gz +0 -0
  13. package/create-api-service/sso/index.js +739 -714
  14. package/create-api-service/sso/index.js.gz +0 -0
  15. package/curring-http/index.js +856 -830
  16. package/curring-http/index.js.gz +0 -0
  17. package/directive/auth/index.d.ts +8 -0
  18. package/directive/auth/index.js +62 -0
  19. package/directive/auth/index.js.gz +0 -0
  20. package/directive/clickOutside/index.d.ts +6 -0
  21. package/directive/clickOutside/index.js +27 -0
  22. package/directive/hoverInside/index.d.ts +6 -0
  23. package/directive/hoverInside/index.js +21 -0
  24. package/directive/utils/index.d.ts +7 -0
  25. package/directive/utils/index.js +7 -0
  26. package/esm-map.json +135 -5
  27. package/hooks/popup-manager/use-zindex/index.d.ts +5 -0
  28. package/hooks/popup-manager/use-zindex/index.js +22 -0
  29. package/hooks/use-get-auth/apis.d.ts +4 -0
  30. package/hooks/use-get-auth/index.d.ts +9 -0
  31. package/hooks/use-get-auth/index.js +53 -0
  32. package/hooks/use-get-auth/index.js.gz +0 -0
  33. package/package.json +5 -3
  34. package/pinyin-first-character/index.js +142 -132
  35. package/pinyin-first-character/index.js.gz +0 -0
  36. package/style/index.js +1 -1
  37. package/style/index.js.gz +0 -0
  38. package/vue/hooks/use-model-value/index.d.ts +5 -0
  39. package/vue/hooks/use-model-value/index.js +10 -0
package/style/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @vue/shared v3.4.31
2
+ * @vue/shared v3.4.35
3
3
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
4
4
  * @license MIT
5
5
  **/
package/style/index.js.gz CHANGED
Binary file
@@ -0,0 +1,5 @@
1
+ import { Ref } from 'vue';
2
+
3
+ /** 简化组件内使用modelValue时的watch过程 */
4
+ declare const useModelValue: (props: any, propKey: string) => Ref;
5
+ export { useModelValue };
@@ -0,0 +1,10 @@
1
+ import { ref as o, watchEffect as u } from "vue";
2
+ const c = (e, t) => {
3
+ const l = o(e[t]);
4
+ return u(() => {
5
+ l.value = e[t];
6
+ }), l;
7
+ };
8
+ export {
9
+ c as useModelValue
10
+ };