@gemafajarramadhan/dynamic-ui 1.1.29 → 1.1.31
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 +0 -26
- package/dist/dynamic-ui.css +2 -2
- package/dist/dynamic-ui.es.js +81274 -23766
- package/dist/dynamic-ui.umd.js +10293 -1728
- package/dist/index.d.ts +0 -11
- package/package.json +1 -1
- package/src/index.d.ts +0 -11
package/README.md
CHANGED
|
@@ -255,7 +255,6 @@ Selain Web Components, library ini juga menyediakan **27 komponen Vue** yang bis
|
|
|
255
255
|
| `DCodeAutoComplete` | Input autocomplete dengan pencarian dan fetch API otomatis |
|
|
256
256
|
| `DCodeMultiSelect` | Dropdown multi-pilihan |
|
|
257
257
|
| `DCodeDatePicker` | Date picker kalender |
|
|
258
|
-
| `DCodeDateRangePicker` | Date range picker |
|
|
259
258
|
| `DCodeCurrencyField` | Input nilai mata uang |
|
|
260
259
|
| `DCodeOtpInput` | Input OTP digit-per-digit |
|
|
261
260
|
| `DCodeFileField` | Input file dengan preview |
|
|
@@ -1939,31 +1938,6 @@ Date picker atau date range picker dengan berbagai format.
|
|
|
1939
1938
|
|
|
1940
1939
|
---
|
|
1941
1940
|
|
|
1942
|
-
### `DCodeDateRangePicker`
|
|
1943
|
-
|
|
1944
|
-
Date range picker sederhana berbasis popover input.
|
|
1945
|
-
|
|
1946
|
-
| Prop | Tipe | Default | Deskripsi |
|
|
1947
|
-
|------|------|---------|-----------|
|
|
1948
|
-
| `modelValue` | `{ start, end }\|null` | — | Range tanggal (v-model) |
|
|
1949
|
-
| `placeholder` | `string` | `'YYYY-MM-DD - YYYY-MM-DD'` | Placeholder |
|
|
1950
|
-
| `disabled` | `boolean` | `false` | Nonaktifkan |
|
|
1951
|
-
| `clearable` | `boolean` | `true` | Tombol clear |
|
|
1952
|
-
| `returnType` | `'date'\|'iso'\|'yyyy-mm-dd'` | `'yyyy-mm-dd'` | Format return |
|
|
1953
|
-
| `requireBoth` | `boolean` | `false` | Wajib isi keduanya |
|
|
1954
|
-
|
|
1955
|
-
```vue
|
|
1956
|
-
<template>
|
|
1957
|
-
<DCodeDateRangePicker
|
|
1958
|
-
v-model="form.periode"
|
|
1959
|
-
placeholder="Pilih periode..."
|
|
1960
|
-
return-type="yyyy-mm-dd"
|
|
1961
|
-
/>
|
|
1962
|
-
</template>
|
|
1963
|
-
```
|
|
1964
|
-
|
|
1965
|
-
---
|
|
1966
|
-
|
|
1967
1941
|
### `DCodeCurrencyField`
|
|
1968
1942
|
|
|
1969
1943
|
Input angka dengan format mata uang otomatis.
|