@ldmjs/ui 1.0.0-dev-13 → 1.0.0-dev-16
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 +31 -1
- package/dist/calendar.js +1 -1
- package/dist/css/index.css +10 -2
- package/dist/floating.js +1 -0
- package/dist/imask.js +1 -0
- package/dist/index.js +1345 -251
- package/dist/scss/_inputs.scss +9 -0
- package/dist/types/options.d.ts +4 -0
- package/dist/types/validation.d.ts +3 -7
- package/package.json +2 -3
package/README.md
CHANGED
|
@@ -259,7 +259,6 @@ const items = [
|
|
|
259
259
|
:multiselect="multiselect"
|
|
260
260
|
:required="required"
|
|
261
261
|
label="Ld Select List Box"
|
|
262
|
-
item-text="first_name"
|
|
263
262
|
:persistent-hint="persistentHint"
|
|
264
263
|
:option-hint="optionHint"
|
|
265
264
|
input-hint="Select Box Hint"
|
|
@@ -285,6 +284,32 @@ const handlers = {
|
|
|
285
284
|
select: () => { return [] },
|
|
286
285
|
}
|
|
287
286
|
```
|
|
287
|
+
## #ld-radiogroup
|
|
288
|
+
|
|
289
|
+
### use radio inputs
|
|
290
|
+
|
|
291
|
+
```html
|
|
292
|
+
<ld-radiogroup v-model="radioValue" label="Ld Radio Buttons">
|
|
293
|
+
<ld-radiobutton label="Radio Button 1" :value="0" />
|
|
294
|
+
<ld-radiobutton label="Radio Button 2" :value="1" />
|
|
295
|
+
</ld-radiogroup>
|
|
296
|
+
```
|
|
297
|
+
|
|
298
|
+
## #ld-textarea
|
|
299
|
+
|
|
300
|
+
### use textarea
|
|
301
|
+
|
|
302
|
+
```html
|
|
303
|
+
<ld-textarea v-model="commentValue" label="Ld Textarea" label-on-top :rows="4" />
|
|
304
|
+
```
|
|
305
|
+
|
|
306
|
+
## #ld-select
|
|
307
|
+
|
|
308
|
+
### use select
|
|
309
|
+
|
|
310
|
+
```html
|
|
311
|
+
<ld-select v-model="selectedElement" :items="elements" label="Ld select" />
|
|
312
|
+
```
|
|
288
313
|
|
|
289
314
|
# Utilities
|
|
290
315
|
|
|
@@ -297,3 +322,8 @@ const handlers = {
|
|
|
297
322
|
|
|
298
323
|
# Directives
|
|
299
324
|
- v-active
|
|
325
|
+
|
|
326
|
+
# Mixins
|
|
327
|
+
|
|
328
|
+
- ValidateMixin // class-component style
|
|
329
|
+
- ValidateMixinOptions // options style
|