react-validate-component 0.4.0 → 0.5.0
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 +10 -333
- package/dist/react-validate-component.cjs.development.js +102 -48
- package/dist/react-validate-component.cjs.development.js.map +1 -1
- package/dist/react-validate-component.cjs.production.min.js +1 -1
- package/dist/react-validate-component.cjs.production.min.js.map +1 -1
- package/dist/react-validate-component.esm.js +102 -48
- package/dist/react-validate-component.esm.js.map +1 -1
- package/dist/vEmail/index.d.ts +2 -2
- package/dist/vEmail/vEmail.d.ts +1 -1
- package/dist/vRadio/index.d.ts +2 -1
- package/dist/vRadio/vRadio.d.ts +16 -0
- package/dist/vURL/index.d.ts +2 -2
- package/dist/vURL/vURL.d.ts +1 -1
- package/package.json +1 -1
- package/src/vCheckbox/index.tsx +1 -1
- package/src/vEmail/index.tsx +9 -9
- package/src/vEmail/vEmail.ts +1 -1
- package/src/vRadio/index.tsx +106 -2
- package/src/vRadio/vRadio.ts +27 -0
- package/src/vText/index.tsx +7 -7
- package/src/vURL/index.tsx +9 -9
- package/src/vURL/vURL.ts +1 -1
- package/src/vCheckbox/index.module.css +0 -34
- package/src/vText/index.module.css +0 -210
- package/src/vURL/index.module.css +0 -210
- /package/src/{vEmail/index.module.css → index.module.css} +0 -0
package/README.md
CHANGED
|
@@ -24,340 +24,17 @@ yarn add react-validate-component
|
|
|
24
24
|
|
|
25
25
|
## 사용법, How to use
|
|
26
26
|
|
|
27
|
-
현재 라이브러리에는 `VText`, `VCheckbox`, `VURL`, `VEmail` 컴포넌트가 구현되어 있습니다. 이 컴포넌트를 사용하여 텍스트 입력 필드의 유효성 검사를 쉽게 구현할 수 있습니다.
|
|
27
|
+
현재 라이브러리에는 `VText`, `VCheckbox`, `VURL`, `VEmail`, `VRadio` 컴포넌트가 구현되어 있습니다. 이 컴포넌트를 사용하여 텍스트 입력 필드의 유효성 검사를 쉽게 구현할 수 있습니다.
|
|
28
28
|
|
|
29
|
-
The library currently includes the `VText`, `VCheckbox`, `VURL`, `VEmail` component. You can use this component to easily implement validation for text input fields.
|
|
29
|
+
The library currently includes the `VText`, `VCheckbox`, `VURL`, `VEmail`, `VRadio` component. You can use this component to easily implement validation for text input fields.
|
|
30
30
|
|
|
31
|
-
|
|
31
|
+
## 컴포넌트, Components
|
|
32
32
|
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
```jsx
|
|
40
|
-
import React from 'react';
|
|
41
|
-
import { VText } from 'react-validate-component';
|
|
42
|
-
|
|
43
|
-
const App = () => {
|
|
44
|
-
const [message, setMessage] = React.useState('');
|
|
45
|
-
const [vState, setVState] = React.useState(false);
|
|
46
|
-
const [vMessage, setVMessage] = React.useState('');
|
|
47
|
-
|
|
48
|
-
React.useEffect(() => {
|
|
49
|
-
if (/[\d]/gim.exec(message)) {
|
|
50
|
-
setVState(true);
|
|
51
|
-
setVMessage('DO NOT INPUT NUMBER.');
|
|
52
|
-
} else {
|
|
53
|
-
setVState(false);
|
|
54
|
-
setVMessage('');
|
|
55
|
-
}
|
|
56
|
-
}, [message]);
|
|
57
|
-
|
|
58
|
-
return (
|
|
59
|
-
<section className={styles.layout}>
|
|
60
|
-
<h1>React-Validate-Component</h1>
|
|
61
|
-
<div>
|
|
62
|
-
<h2>VText</h2>
|
|
63
|
-
<h3>DO NOT INPUT NUMBER.</h3>
|
|
64
|
-
<VText
|
|
65
|
-
vState={vState}
|
|
66
|
-
vType={'outer'}
|
|
67
|
-
vClassName={'test'}
|
|
68
|
-
vShowMessage={true}
|
|
69
|
-
vMessage={vMessage}
|
|
70
|
-
vLocateMessage={'bottom-left'}
|
|
71
|
-
vMessageClass={styles.validation_message}
|
|
72
|
-
vIsAnimate={true}
|
|
73
|
-
props={{
|
|
74
|
-
onChange: (e: { target: { value: string } }) => {
|
|
75
|
-
setMessage(e.target.value);
|
|
76
|
-
},
|
|
77
|
-
placeholder: 'this is react-validate-component test.',
|
|
78
|
-
className: styles.input_text,
|
|
79
|
-
defaultValue: 'test',
|
|
80
|
-
}}
|
|
81
|
-
/>
|
|
82
|
-
</div>
|
|
83
|
-
</section>
|
|
84
|
-
);
|
|
85
|
-
};
|
|
86
|
-
|
|
87
|
-
export default App;
|
|
88
|
-
```
|
|
89
|
-
|
|
90
|
-
#### Props
|
|
91
|
-
|
|
92
|
-
- `vState` (boolean): 유효성 상태 값입니다.
|
|
93
|
-
- `vType` (`inner`, `outer`, `tooltip`): 유효성 메시지를 띄우는 타입입니다.
|
|
94
|
-
- `vClassName` (string): 유효성 입힐 class 명입니다.
|
|
95
|
-
- `vShowMessage` (boolean): 유효성 메시지 출력 여부값입니다.
|
|
96
|
-
- `vMessage` (string): 유효성 검사 실패 시 표시할 에러 메시지입니다.
|
|
97
|
-
- `vLocateMessage` (`top-left`, `top`, `top-right`, `center-left`, `center`, `center-right`, `bottom-left`, `bottom`, `bottom-right`): 유효성 메시지를 element 어디에 붙일지 위치값입니다.
|
|
98
|
-
- `vMessageClass` (string): 유효성 메시지에 입힐 class 명입니다.
|
|
99
|
-
- `vIsAnimate` (boolean): 유효성 메시지 출력 시 애니메이션 적용할지 여부입니다. (현재는 opacity만 적용되어있습니다.)
|
|
100
|
-
- `props` (object): 기타 옵션입니다. 기본 input 태그에 attribute로 넣을 값들을 입력하시면 됩니다.
|
|
101
|
-
|
|
102
|
-
- `vState` (boolean): The validity status value.
|
|
103
|
-
- `vType` (`inner`, `outer`, `tooltip`): The type of validation message display.
|
|
104
|
-
- `vClassName` (string): The class name to apply for validation styling.
|
|
105
|
-
- `vShowMessage` (boolean): Whether to display the validation message.
|
|
106
|
-
- `vMessage` (string): The error message to display when validation fails.
|
|
107
|
-
- `vLocateMessage` (`top-left`, `top`, `top-right`, `center-left`, `center`, `center-right`, `bottom-left`, `bottom`, `bottom-right`): The position where the validation message should be displayed relative to the element.
|
|
108
|
-
- `vMessageClass` (string): The class name to apply to the validation message.
|
|
109
|
-
- `vIsAnimate` (boolean): Whether to apply animation when displaying the validation message (currently, only opacity animation is supported).
|
|
110
|
-
- `props` (object): Other options. Enter values for attributes that can be added to the basic input tag.
|
|
111
|
-
|
|
112
|
-
### VCheckbox Component
|
|
113
|
-
|
|
114
|
-
`VCheckbox` 컴포넌트는 기본적인 체크박스 필드에 유효성 검사 문구를 출력해주는 기능을 제공합니다.
|
|
115
|
-
|
|
116
|
-
The `VCheckbox` component provides functionality to display validation messages for basic checkbox fields.
|
|
117
|
-
|
|
118
|
-
#### 사용 예제, Example
|
|
119
|
-
|
|
120
|
-
```jsx
|
|
121
|
-
import React from 'react';
|
|
122
|
-
import { VCheckbox } from 'react-validate-component';
|
|
123
|
-
|
|
124
|
-
const App = () => {
|
|
125
|
-
const list = ['Tiger', 'Rabbit', 'Elephant', 'Dog', 'Pig', 'Cat', 'Duck'];
|
|
126
|
-
const [checked, setChecked] = React.useState<boolean[]>(
|
|
127
|
-
Array.from(list, () => false)
|
|
128
|
-
);
|
|
129
|
-
const [vState, setvState] = React.useState<boolean>(false);
|
|
130
|
-
const [vMessage2, setVMessage2] = React.useState<string>('');
|
|
131
|
-
React.useEffect(() => {
|
|
132
|
-
if (checked.filter(v => v).length > 3) {
|
|
133
|
-
setvState(true);
|
|
134
|
-
setVMessage2('You can check up to 3 items.');
|
|
135
|
-
} else {
|
|
136
|
-
setvState(false);
|
|
137
|
-
setVMessage2('');
|
|
138
|
-
}
|
|
139
|
-
}, [checked]);
|
|
140
|
-
|
|
141
|
-
return (
|
|
142
|
-
<section className={styles.layout}>
|
|
143
|
-
<h1>React-Validate-Component</h1>
|
|
144
|
-
<div>
|
|
145
|
-
<h2>VCheckbox</h2>
|
|
146
|
-
<h3>CHECK UP TO 3.</h3>
|
|
147
|
-
<VCheckbox
|
|
148
|
-
vState={vState}
|
|
149
|
-
vType={'bottom'}
|
|
150
|
-
// vClassName={'test'}
|
|
151
|
-
vLabelClassName={styles.label_class}
|
|
152
|
-
vCheckedClassName={styles.label_check_class}
|
|
153
|
-
vCheckList={list}
|
|
154
|
-
vCheckedList={checked}
|
|
155
|
-
vShowMessage={true}
|
|
156
|
-
vMessage={vMessage2}
|
|
157
|
-
vMessageClass={styles.validation_message}
|
|
158
|
-
vIsAnimate={true}
|
|
159
|
-
props={{
|
|
160
|
-
onChange: (e: { target: { value: string; checked: boolean } }) => {
|
|
161
|
-
const tmp = [...checked];
|
|
162
|
-
const findIndex = list.findIndex(val => val === e.target.value);
|
|
163
|
-
tmp[findIndex] = e.target.checked;
|
|
164
|
-
setChecked(tmp);
|
|
165
|
-
},
|
|
166
|
-
}}
|
|
167
|
-
/>
|
|
168
|
-
</div>
|
|
169
|
-
</section>
|
|
170
|
-
);
|
|
171
|
-
};
|
|
172
|
-
|
|
173
|
-
export default App;
|
|
174
|
-
```
|
|
175
|
-
|
|
176
|
-
#### Props
|
|
177
|
-
|
|
178
|
-
- `vState` (boolean): 유효성 상태 값입니다.
|
|
179
|
-
- `vType` (`top`, `bottom`): 유효성 메시지를 띄우는 타입입니다.
|
|
180
|
-
- `vClassName` (string): 유효성 입힐 class 명입니다.
|
|
181
|
-
- `vLabelClassName` (string): label 태그에 입힐 class 명입니다.
|
|
182
|
-
- `vCheckedClassName` (string): check 상태일 때 입힐 class 명입니다.
|
|
183
|
-
- `vCheckList` (string[]): checkbox를 만들때 사용하는 배열입니다. 해당 배열에 있는 string값으로 체크박스를 만듭니다.
|
|
184
|
-
- `vCheckedList` (boolean[]): 현재 체크되어있는 상태를 나타내는 배열입니다.
|
|
185
|
-
- `vShowMessage` (boolean): 유효성 메시지 출력 여부값입니다.
|
|
186
|
-
- `vMessage` (string): 유효성 검사 실패 시 표시할 에러 메시지입니다.
|
|
187
|
-
- `vMessageClass` (string): 유효성 메시지에 입힐 class 명입니다.
|
|
188
|
-
- `vIsAnimate` (boolean): 유효성 메시지 출력 시 애니메이션 적용할지 여부입니다. (현재는 opacity만 적용되어있습니다.)
|
|
189
|
-
- `props` (object): 기타 옵션입니다. 기본 input 태그에 attribute로 넣을 값들을 입력하시면 됩니다.
|
|
190
|
-
|
|
191
|
-
- `vState` (boolean): The validity status value.
|
|
192
|
-
- `vType` (`top`, `bottom`): The type of validation message display.
|
|
193
|
-
- `vClassName` (string): The class name to apply for validation styling.
|
|
194
|
-
- `vLabelClassName` (string): The class name to apply to the `label` tag.
|
|
195
|
-
- `vCheckedClassName` (string): The class name to apply when checked.
|
|
196
|
-
- `vCheckList` (string[]): An array used to create checkboxes. Checkboxes are created using the string values in this array.
|
|
197
|
-
- `vCheckedList` (boolean[]): An array representing the current checked state.
|
|
198
|
-
- `vShowMessage` (boolean): Whether to display the validation message.
|
|
199
|
-
- `vMessage` (string): The error message to display when validation fails.
|
|
200
|
-
- `vMessageClass` (string): The class name to apply to the validation message.
|
|
201
|
-
- `vIsAnimate` (boolean): Whether to apply animation when displaying the validation message (currently, only opacity animation is supported).
|
|
202
|
-
- `props` (object): Other options. Enter values for attributes that can be added to the basic input tag.
|
|
203
|
-
|
|
204
|
-
### VURL Component
|
|
205
|
-
|
|
206
|
-
`VURL` 컴포넌트는 기본적인 URL 필드에 유효성 검사 문구를 출력해주는 기능을 제공합니다.
|
|
207
|
-
|
|
208
|
-
The `VURL` component provides functionality to display validation messages for basic url fields.
|
|
209
|
-
|
|
210
|
-
#### 사용 예제, Example
|
|
211
|
-
|
|
212
|
-
```jsx
|
|
213
|
-
import React from 'react';
|
|
214
|
-
import { VURL } from 'react-validate-component';
|
|
215
|
-
|
|
216
|
-
const App = () => {
|
|
217
|
-
const [vState, setvState] = React.useState < boolean > false;
|
|
218
|
-
const [vMessage, setvMessage] = React.useState < string > '';
|
|
219
|
-
const [message, setmessage] =
|
|
220
|
-
React.useState < string > 'https://www.naver.com';
|
|
221
|
-
|
|
222
|
-
React.useEffect(() => {
|
|
223
|
-
if (/^http[s]?:\/\/([\S]{3,})/i.test(message)) {
|
|
224
|
-
setvState(false);
|
|
225
|
-
setvMessage('');
|
|
226
|
-
} else {
|
|
227
|
-
setvState(true);
|
|
228
|
-
setvMessage('IT MUST BE URL.');
|
|
229
|
-
}
|
|
230
|
-
}, [message]);
|
|
231
|
-
|
|
232
|
-
return (
|
|
233
|
-
<div>
|
|
234
|
-
<h2>VURL</h2>
|
|
235
|
-
<h3>INPUT URL.</h3>
|
|
236
|
-
<VURL
|
|
237
|
-
vState={vState}
|
|
238
|
-
vType={'outer'}
|
|
239
|
-
// vClassName={'test'}
|
|
240
|
-
vShowMessage={true}
|
|
241
|
-
vMessage={vMessage}
|
|
242
|
-
vLocateMessage={'bottom-left'}
|
|
243
|
-
vMessageClass={styles.validation_message}
|
|
244
|
-
vIsAnimate={true}
|
|
245
|
-
props={{
|
|
246
|
-
onChange: (e: { target: { value: string } }) => {
|
|
247
|
-
setmessage(e.target.value);
|
|
248
|
-
},
|
|
249
|
-
placeholder: 'this is react-validate-component test.',
|
|
250
|
-
className: styles.input_text,
|
|
251
|
-
defaultValue: 'https://www.naver.com',
|
|
252
|
-
}}
|
|
253
|
-
/>
|
|
254
|
-
</div>
|
|
255
|
-
);
|
|
256
|
-
};
|
|
257
|
-
|
|
258
|
-
export default App;
|
|
259
|
-
```
|
|
260
|
-
|
|
261
|
-
#### Props
|
|
262
|
-
|
|
263
|
-
- `vState` (boolean): 유효성 상태 값입니다.
|
|
264
|
-
- `vType` (`inner`, `outer`, `tooltip`): 유효성 메시지를 띄우는 타입입니다.
|
|
265
|
-
- `vClassName` (string): 유효성 입힐 class 명입니다.
|
|
266
|
-
- `vShowMessage` (boolean): 유효성 메시지 출력 여부값입니다.
|
|
267
|
-
- `vMessage` (string): 유효성 검사 실패 시 표시할 에러 메시지입니다.
|
|
268
|
-
- `vLocateMessage` (`top-left`, `top`, `top-right`, `center-left`, `center`, `center-right`, `bottom-left`, `bottom`, `bottom-right`): 유효성 메시지를 element 어디에 붙일지 위치값입니다.
|
|
269
|
-
- `vMessageClass` (string): 유효성 메시지에 입힐 class 명입니다.
|
|
270
|
-
- `vIsAnimate` (boolean): 유효성 메시지 출력 시 애니메이션 적용할지 여부입니다. (현재는 opacity만 적용되어있습니다.)
|
|
271
|
-
- `props` (object): 기타 옵션입니다. 기본 input 태그에 attribute로 넣을 값들을 입력하시면 됩니다.
|
|
272
|
-
|
|
273
|
-
- `vState` (boolean): The validity status value.
|
|
274
|
-
- `vType` (`inner`, `outer`, `tooltip`): The type of validation message display.
|
|
275
|
-
- `vClassName` (string): The class name to apply for validation styling.
|
|
276
|
-
- `vShowMessage` (boolean): Whether to display the validation message.
|
|
277
|
-
- `vMessage` (string): The error message to display when validation fails.
|
|
278
|
-
- `vLocateMessage` (`top-left`, `top`, `top-right`, `center-left`, `center`, `center-right`, `bottom-left`, `bottom`, `bottom-right`): The position where the validation message should be displayed relative to the element.
|
|
279
|
-
- `vMessageClass` (string): The class name to apply to the validation message.
|
|
280
|
-
- `vIsAnimate` (boolean): Whether to apply animation when displaying the validation message (currently, only opacity animation is supported).
|
|
281
|
-
- `props` (object): Other options. Enter values for attributes that can be added to the basic input tag.
|
|
282
|
-
|
|
283
|
-
### VEmail Component
|
|
284
|
-
|
|
285
|
-
`VEmail` 컴포넌트는 기본적인 Email 필드에 유효성 검사 문구를 출력해주는 기능을 제공합니다.
|
|
286
|
-
|
|
287
|
-
The `VEmail` component provides functionality to display validation messages for basic Email fields.
|
|
288
|
-
|
|
289
|
-
#### 사용 예제, Example
|
|
290
|
-
|
|
291
|
-
```jsx
|
|
292
|
-
import React from 'react';
|
|
293
|
-
import { VEmail } from 'react-validate-component';
|
|
294
|
-
|
|
295
|
-
const App = () => {
|
|
296
|
-
const [vState, setvState] = React.useState < boolean > false;
|
|
297
|
-
const [vMessage, setvMessage] = React.useState < string > '';
|
|
298
|
-
const [message, setmessage] =
|
|
299
|
-
React.useState < string > 'https://www.naver.com';
|
|
300
|
-
|
|
301
|
-
React.useEffect(() => {
|
|
302
|
-
if (/^[a-zA-Z0-9+-\_.]+@[a-zA-Z0-9-]+\.[a-zA-Z0-9-.]+$/i.test(message)) {
|
|
303
|
-
setvState(false);
|
|
304
|
-
setvMessage('');
|
|
305
|
-
} else {
|
|
306
|
-
setvState(true);
|
|
307
|
-
setvMessage('IT MUST BE EMAIL.');
|
|
308
|
-
}
|
|
309
|
-
}, [message]);
|
|
310
|
-
|
|
311
|
-
return (
|
|
312
|
-
<div>
|
|
313
|
-
<h2>VEmail</h2>
|
|
314
|
-
<h3>INPUT EMail.</h3>
|
|
315
|
-
<VEmail
|
|
316
|
-
vState={vState}
|
|
317
|
-
vType={'outer'}
|
|
318
|
-
// vClassName={'test'}
|
|
319
|
-
vShowMessage={true}
|
|
320
|
-
vMessage={vMessage}
|
|
321
|
-
vLocateMessage={'bottom-left'}
|
|
322
|
-
vMessageClass={styles.validation_message}
|
|
323
|
-
vIsAnimate={true}
|
|
324
|
-
props={{
|
|
325
|
-
onChange: (e: { target: { value: string } }) => {
|
|
326
|
-
setmessage(e.target.value);
|
|
327
|
-
},
|
|
328
|
-
placeholder: 'this is react-validate-component test.',
|
|
329
|
-
className: styles.input_text,
|
|
330
|
-
defaultValue: 'test@test.com',
|
|
331
|
-
}}
|
|
332
|
-
/>
|
|
333
|
-
</div>
|
|
334
|
-
);
|
|
335
|
-
};
|
|
336
|
-
|
|
337
|
-
export default App;
|
|
338
|
-
```
|
|
339
|
-
|
|
340
|
-
#### Props
|
|
341
|
-
|
|
342
|
-
- `vState` (boolean): 유효성 상태 값입니다.
|
|
343
|
-
- `vType` (`inner`, `outer`, `tooltip`): 유효성 메시지를 띄우는 타입입니다.
|
|
344
|
-
- `vClassName` (string): 유효성 입힐 class 명입니다.
|
|
345
|
-
- `vShowMessage` (boolean): 유효성 메시지 출력 여부값입니다.
|
|
346
|
-
- `vMessage` (string): 유효성 검사 실패 시 표시할 에러 메시지입니다.
|
|
347
|
-
- `vLocateMessage` (`top-left`, `top`, `top-right`, `center-left`, `center`, `center-right`, `bottom-left`, `bottom`, `bottom-right`): 유효성 메시지를 element 어디에 붙일지 위치값입니다.
|
|
348
|
-
- `vMessageClass` (string): 유효성 메시지에 입힐 class 명입니다.
|
|
349
|
-
- `vIsAnimate` (boolean): 유효성 메시지 출력 시 애니메이션 적용할지 여부입니다. (현재는 opacity만 적용되어있습니다.)
|
|
350
|
-
- `props` (object): 기타 옵션입니다. 기본 input 태그에 attribute로 넣을 값들을 입력하시면 됩니다.
|
|
351
|
-
|
|
352
|
-
- `vState` (boolean): The validity status value.
|
|
353
|
-
- `vType` (`inner`, `outer`, `tooltip`): The type of validation message display.
|
|
354
|
-
- `vClassName` (string): The class name to apply for validation styling.
|
|
355
|
-
- `vShowMessage` (boolean): Whether to display the validation message.
|
|
356
|
-
- `vMessage` (string): The error message to display when validation fails.
|
|
357
|
-
- `vLocateMessage` (`top-left`, `top`, `top-right`, `center-left`, `center`, `center-right`, `bottom-left`, `bottom`, `bottom-right`): The position where the validation message should be displayed relative to the element.
|
|
358
|
-
- `vMessageClass` (string): The class name to apply to the validation message.
|
|
359
|
-
- `vIsAnimate` (boolean): Whether to apply animation when displaying the validation message (currently, only opacity animation is supported).
|
|
360
|
-
- `props` (object): Other options. Enter values for attributes that can be added to the basic input tag.
|
|
33
|
+
[vText](./doc/vtext.md)
|
|
34
|
+
[vCheckbox](./doc/vcheckbox.md)
|
|
35
|
+
[vURL](./doc/vurl.md)
|
|
36
|
+
[vEmail](./doc/vemail.md)
|
|
37
|
+
[vRadio](./doc/vradio.md)
|
|
361
38
|
|
|
362
39
|
### 유효성 검사 규칙, Validation Rules
|
|
363
40
|
|
|
@@ -369,11 +46,11 @@ export default App;
|
|
|
369
46
|
|
|
370
47
|
## 개발중인 기능, Features in Development
|
|
371
48
|
|
|
372
|
-
- 현재 `VText`, `VCheckbox`, `VURL`, `VEmail` 컴포넌트만 구현되어 있으며, 다른 입력 유형에 대한 컴포넌트도 개발할 예정입니다.
|
|
49
|
+
- 현재 `VText`, `VCheckbox`, `VURL`, `VEmail`, `VRadio` 컴포넌트만 구현되어 있으며, 다른 입력 유형에 대한 컴포넌트도 개발할 예정입니다.
|
|
373
50
|
- 추가적인 유효성 검사 규칙 및 에러 메시지 처리 기능이 계획되어 있습니다.
|
|
374
51
|
- 현재 문서에 이미지를 추가한 문서 업데이트도 예정되어있습니다.
|
|
375
52
|
|
|
376
|
-
- Currently, only the `VText`, `VCheckbox`, `VURL`, `VEmail` component is implemented, but components for other input types are planned for development.
|
|
53
|
+
- Currently, only the `VText`, `VCheckbox`, `VURL`, `VEmail`, `VRadio` component is implemented, but components for other input types are planned for development.
|
|
377
54
|
- Additional validation rules and error message handling features are also in the pipeline.
|
|
378
55
|
- Updates to the documentation, including the addition of images, are also planned.
|
|
379
56
|
|