@fewangsit/wangsvue 1.5.199-alpha.6 → 1.5.199-alpha.7
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.
|
@@ -270,6 +270,7 @@ export interface CalendarProps {
|
|
|
270
270
|
* Supports single or multiple date selection.
|
|
271
271
|
*
|
|
272
272
|
* Used with `v-model`.
|
|
273
|
+
* It should not be used with useValidator. v-model should only be used when the Calendar not used in form
|
|
273
274
|
* @defaultValue null
|
|
274
275
|
*/
|
|
275
276
|
modelValue?: Date | Date[] | null;
|
|
@@ -381,12 +382,12 @@ export interface CalendarProps {
|
|
|
381
382
|
showButtons?: boolean;
|
|
382
383
|
|
|
383
384
|
/**
|
|
384
|
-
* Enable Validator using vee-validate. Combine with
|
|
385
|
+
* Enable Validator using vee-validate. Combine with Form component that handle form validation.
|
|
385
386
|
*/
|
|
386
387
|
useValidator?: boolean;
|
|
387
388
|
|
|
388
389
|
/**
|
|
389
|
-
* When used as field in From Validation using
|
|
390
|
+
* When used as field in From Validation using Form component,
|
|
390
391
|
* specify the unique field name, match with your needs for API request.
|
|
391
392
|
*/
|
|
392
393
|
fieldName?: string;
|
package/package.json
CHANGED
package/wangsvue.es.js
CHANGED
|
@@ -41684,6 +41684,7 @@ const va = /* @__PURE__ */ at({
|
|
|
41684
41684
|
L(it, {
|
|
41685
41685
|
onClick: ge,
|
|
41686
41686
|
class: "rotate-180 !p-1",
|
|
41687
|
+
"data-wv-section": "prevbutton",
|
|
41687
41688
|
icon: "arrow-right",
|
|
41688
41689
|
"icon-class": "w-5 h-5",
|
|
41689
41690
|
severity: "secondary",
|
|
@@ -41701,6 +41702,7 @@ const va = /* @__PURE__ */ at({
|
|
|
41701
41702
|
L(it, {
|
|
41702
41703
|
onClick: oe,
|
|
41703
41704
|
class: "!p-1",
|
|
41705
|
+
"data-wv-section": "nextbutton",
|
|
41704
41706
|
icon: "arrow-right",
|
|
41705
41707
|
"icon-class": "w-5 h-5",
|
|
41706
41708
|
severity: "secondary",
|