Skip to content

Commit f84be2b

Browse files
committed
🆙 fix lint errors
1 parent d8e5a8e commit f84be2b

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

src/fields/fieldCleave.vue

+5-5
Original file line numberDiff line numberDiff line change
@@ -23,18 +23,18 @@ export default {
2323
// onCreditCardTypeChanged: onCreditCardTypeChanged.bind(this),
2424
// Phone
2525
phone: false,
26-
phoneRegionCode: 'AU',
26+
phoneRegionCode: "AU",
2727
// Date
2828
date: false,
29-
datePattern: ['d', 'm', 'Y'],
29+
datePattern: ["d", "m", "Y"],
3030
// Numerals
3131
numeral: false,
32-
numeralThousandsGroupStyle: 'thousand',
32+
numeralThousandsGroupStyle: "thousand",
3333
numeralDecimalScale: 2,
34-
numeralDecimalMark: '.',
34+
numeralDecimalMark: ".",
3535
// General
3636
blocks: [],
37-
delimiter: ' ',
37+
delimiter: " ",
3838
prefix: null,
3939
numericOnly: false,
4040
uppercase: false,

src/fields/fieldPikaday.vue

+7-7
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,11 @@
5050
field: this.$el, // bind the datepicker to a form field
5151
// trigger: , // use a different element to trigger opening the datepicker, see [trigger example][] (default to `field`)
5252
bound: true, // automatically show/hide the datepicker on `field` focus (default `true` if `field` is set)
53-
position: 'bottom left', // preferred position of the datepicker relative to the form field, e.g.: `top right`, `bottom right` **Note:** automatic adjustment may occur to avoid datepicker from being displayed outside the viewport, see [positions example][] (default to 'bottom left')
53+
position: "bottom left", // preferred position of the datepicker relative to the form field, e.g.: `top right`, `bottom right` **Note:** automatic adjustment may occur to avoid datepicker from being displayed outside the viewport, see [positions example][] (default to "bottom left")
5454
reposition: true, // can be set to false to not reposition datepicker within the viewport, forcing it to take the configured `position` (default: true)
5555
// container: , // DOM node to render calendar into, see [container example][] (default: undefined)
5656
// format: , // the default output format for `.toString()` and `field` value (requires [Moment.js][moment] for custom formatting)
57-
// formatStrict: , // the default flag for moment's strict date parsing (requires [Moment.js][moment] for custom formatting)
57+
// formatStrict: , // the default flag for moment"s strict date parsing (requires [Moment.js][moment] for custom formatting)
5858
// defaultDate: , // the initial date to view when first opened
5959
// setDefaultDate: , // make the `defaultDate` the initial selected value
6060
firstDay: 1, // first day of the week (0: Sunday, 1: Monday, etc)
@@ -66,11 +66,11 @@
6666
showWeekNumber: false, // show the ISO week number at the head of the row (default `false`)
6767
isRTL: false, // reverse the calendar for right-to-left languages
6868
i18n: {
69-
previousMonth : 'Previous Month',
70-
nextMonth : 'Next Month',
71-
months : ['January','February','March','April','May','June','July','August','September','October','November','December'],
72-
weekdays : ['Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday'],
73-
weekdaysShort : ['Sun','Mon','Tue','Wed','Thu','Fri','Sat']
69+
previousMonth : "Previous Month",
70+
nextMonth : "Next Month",
71+
months : ["January","February","March","April","May","June","July","August","September","October","November","December"],
72+
weekdays : ["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],
73+
weekdaysShort : ["Sun","Mon","Tue","Wed","Thu","Fri","Sat"]
7474
}, // language defaults for month and weekday names (see internationalization below)
7575
// yearSuffix: , // additional text to append to the year in the title
7676
showMonthAfterYear: false, // render the month after year in the title (default `false`)

0 commit comments

Comments
 (0)