yuang-framework-ui-pc 1.1.152 → 1.1.153
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/es/yu-framework-short-message-captcha-input/index.d.ts +2 -2
- package/es/yu-framework-short-message-captcha-input/index.js +2 -2
- package/es/yu-framework-short-message-captcha-input/style/index.js +1 -0
- package/lib/yu-framework-short-message-captcha-input/index.cjs +2 -2
- package/lib/yu-framework-short-message-captcha-input/index.d.ts +2 -2
- package/lib/yu-framework-short-message-captcha-input/style/index.cjs +1 -0
- package/package.json +1 -1
|
@@ -7,9 +7,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
7
7
|
}>>, {
|
|
8
8
|
changeShortMessageCaptcha: () => void;
|
|
9
9
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
10
|
+
change: (...args: any[]) => void;
|
|
10
11
|
"update:modelValue": (...args: any[]) => void;
|
|
11
12
|
initSuccess: (...args: any[]) => void;
|
|
12
|
-
change: (...args: any[]) => void;
|
|
13
13
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
14
14
|
modelValue: String;
|
|
15
15
|
param?: Object;
|
|
@@ -17,9 +17,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
17
17
|
modelValue: string;
|
|
18
18
|
param: {};
|
|
19
19
|
}>>> & Readonly<{
|
|
20
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
20
21
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
21
22
|
onInitSuccess?: ((...args: any[]) => any) | undefined;
|
|
22
|
-
onChange?: ((...args: any[]) => any) | undefined;
|
|
23
23
|
}>, {
|
|
24
24
|
param: Object;
|
|
25
25
|
modelValue: String;
|
|
@@ -2,6 +2,7 @@ import { defineComponent, computed, ref, onMounted, watch, resolveComponent, cre
|
|
|
2
2
|
import { ElMessage } from "element-plus";
|
|
3
3
|
import CaptchaIcon from "./components/CaptchaIcon";
|
|
4
4
|
import { http } from "yuang-framework-ui-common/lib/config/httpConfig";
|
|
5
|
+
import EleDialog from "../ele-dialog/index";
|
|
5
6
|
const _hoisted_1 = { class: "captcha-container" };
|
|
6
7
|
const _hoisted_2 = { class: "captcha-card" };
|
|
7
8
|
const _hoisted_3 = ["src"];
|
|
@@ -106,7 +107,6 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
106
107
|
return (_ctx, _cache) => {
|
|
107
108
|
const _component_el_input = resolveComponent("el-input");
|
|
108
109
|
const _component_el_button = resolveComponent("el-button");
|
|
109
|
-
const _component_ele_dialog = resolveComponent("ele-dialog");
|
|
110
110
|
return openBlock(), createElementBlock("div", null, [
|
|
111
111
|
createElementVNode("div", {
|
|
112
112
|
class: normalizeClass(`yu-form-item-${componentParam.value.inputSize}-wrapper`)
|
|
@@ -146,7 +146,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
146
146
|
_: 1
|
|
147
147
|
}, 8, ["size", "class"]))
|
|
148
148
|
], 2),
|
|
149
|
-
createVNode(
|
|
149
|
+
createVNode(EleDialog, {
|
|
150
150
|
modelValue: isShowCaptcha.value,
|
|
151
151
|
"onUpdate:modelValue": _cache[3] || (_cache[3] = ($event) => isShowCaptcha.value = $event),
|
|
152
152
|
title: "发送验证码",
|
|
@@ -3,6 +3,7 @@ const vue = require("vue");
|
|
|
3
3
|
const elementPlus = require("element-plus");
|
|
4
4
|
const CaptchaIcon = require("./components/CaptchaIcon");
|
|
5
5
|
const httpConfig = require("yuang-framework-ui-common/lib/config/httpConfig");
|
|
6
|
+
const EleDialog = require("../ele-dialog/index");
|
|
6
7
|
const _hoisted_1 = { class: "captcha-container" };
|
|
7
8
|
const _hoisted_2 = { class: "captcha-card" };
|
|
8
9
|
const _hoisted_3 = ["src"];
|
|
@@ -107,7 +108,6 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
|
107
108
|
return (_ctx, _cache) => {
|
|
108
109
|
const _component_el_input = vue.resolveComponent("el-input");
|
|
109
110
|
const _component_el_button = vue.resolveComponent("el-button");
|
|
110
|
-
const _component_ele_dialog = vue.resolveComponent("ele-dialog");
|
|
111
111
|
return vue.openBlock(), vue.createElementBlock("div", null, [
|
|
112
112
|
vue.createElementVNode("div", {
|
|
113
113
|
class: vue.normalizeClass(`yu-form-item-${componentParam.value.inputSize}-wrapper`)
|
|
@@ -147,7 +147,7 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
|
147
147
|
_: 1
|
|
148
148
|
}, 8, ["size", "class"]))
|
|
149
149
|
], 2),
|
|
150
|
-
vue.createVNode(
|
|
150
|
+
vue.createVNode(EleDialog, {
|
|
151
151
|
modelValue: isShowCaptcha.value,
|
|
152
152
|
"onUpdate:modelValue": _cache[3] || (_cache[3] = ($event) => isShowCaptcha.value = $event),
|
|
153
153
|
title: "发送验证码",
|
|
@@ -7,9 +7,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
7
7
|
}>>, {
|
|
8
8
|
changeShortMessageCaptcha: () => void;
|
|
9
9
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
10
|
+
change: (...args: any[]) => void;
|
|
10
11
|
"update:modelValue": (...args: any[]) => void;
|
|
11
12
|
initSuccess: (...args: any[]) => void;
|
|
12
|
-
change: (...args: any[]) => void;
|
|
13
13
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
14
14
|
modelValue: String;
|
|
15
15
|
param?: Object;
|
|
@@ -17,9 +17,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
17
17
|
modelValue: string;
|
|
18
18
|
param: {};
|
|
19
19
|
}>>> & Readonly<{
|
|
20
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
20
21
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
21
22
|
onInitSuccess?: ((...args: any[]) => any) | undefined;
|
|
22
|
-
onChange?: ((...args: any[]) => any) | undefined;
|
|
23
23
|
}>, {
|
|
24
24
|
param: Object;
|
|
25
25
|
modelValue: String;
|