hy-app 0.4.1 → 0.4.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.
- package/README.md +2 -1
- package/components/hy-config-provider/hy-config-provider.vue +1 -1
- package/global.d.ts +0 -1
- package/index.ts +0 -2
- package/package.json +2 -2
- package/web-types.json +1 -1
- package/components/hy-login/ThePhoneLogin.vue +0 -106
- package/components/hy-login/TheUserLogin.vue +0 -271
- package/components/hy-login/hy-login.vue +0 -288
- package/components/hy-login/props.ts +0 -32
- package/components/hy-login/typing.d.ts +0 -65
- package/store/index.ts +0 -9
- package/store/userInfo.ts +0 -26
package/README.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
## 在线使用文档地址
|
|
2
2
|
[华玥组件库文档(需要翻墙)](https://hy-component-docs.vercel.app/)
|
|
3
|
-
[华玥组件库文档(
|
|
3
|
+
[华玥组件库文档(国内旧地址,2025-11-12之后域名过期)](https://www.gxh151.top)
|
|
4
|
+
[华玥组件库文档(国内新地址)](https://www.hy-design-uni.top)
|
|
4
5
|
|
|
5
6
|
## H5测试页面地址
|
|
6
7
|
[华玥组件库dome(需要翻墙)](https://hy-design-uni.vercel.app/#/)
|
|
@@ -17,7 +17,7 @@ export default {
|
|
|
17
17
|
</script>
|
|
18
18
|
|
|
19
19
|
<script setup lang="ts">
|
|
20
|
-
import { computed } from "vue";
|
|
20
|
+
import { computed, toRefs, watch } from "vue";
|
|
21
21
|
import type { CSSProperties, PropType } from "vue";
|
|
22
22
|
import { addUnit, colorGradient } from "../../utils";
|
|
23
23
|
import { ColorConfig } from "../../config";
|
package/global.d.ts
CHANGED
|
@@ -38,7 +38,6 @@ declare module "vue" {
|
|
|
38
38
|
HyLineProgress: (typeof import("./components/hy-line-progress/hy-line-progress.vue"))["default"];
|
|
39
39
|
HyList: (typeof import("./components/hy-list/hy-list.vue"))["default"];
|
|
40
40
|
HyLoading: (typeof import("./components/hy-loading/hy-loading.vue"))["default"];
|
|
41
|
-
HyLogin: (typeof import("./components/hy-login/hy-login.vue"))["default"];
|
|
42
41
|
HyMenu: (typeof import("./components/hy-menu/hy-menu.vue"))["default"];
|
|
43
42
|
HyModal: (typeof import("./components/hy-modal/hy-modal.vue"))["default"];
|
|
44
43
|
HyNavbar: (typeof import("./components/hy-navbar/hy-navbar.vue"))["default"];
|
package/index.ts
CHANGED