Skip to content

Commit 43d1488

Browse files
committed
add flatpickr static files
1 parent 6c59792 commit 43d1488

File tree

6 files changed

+91
-6
lines changed

6 files changed

+91
-6
lines changed

resources/assets/flatpickr/dist/flatpickr.js

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

resources/assets/flatpickr/dist/flatpickr.min.css

+13
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
+68
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
(function (global, factory) {
2+
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
3+
typeof define === 'function' && define.amd ? define(['exports'], factory) :
4+
(global = global || self, factory(global.zh = {}));
5+
}(this, (function (exports) { 'use strict';
6+
7+
var fp = typeof window !== "undefined" && window.flatpickr !== undefined
8+
? window.flatpickr
9+
: {
10+
l10ns: {},
11+
};
12+
var Mandarin = {
13+
weekdays: {
14+
shorthand: ["周日", "周一", "周二", "周三", "周四", "周五", "周六"],
15+
longhand: [
16+
"星期日",
17+
"星期一",
18+
"星期二",
19+
"星期三",
20+
"星期四",
21+
"星期五",
22+
"星期六",
23+
],
24+
},
25+
months: {
26+
shorthand: [
27+
"一月",
28+
"二月",
29+
"三月",
30+
"四月",
31+
"五月",
32+
"六月",
33+
"七月",
34+
"八月",
35+
"九月",
36+
"十月",
37+
"十一月",
38+
"十二月",
39+
],
40+
longhand: [
41+
"一月",
42+
"二月",
43+
"三月",
44+
"四月",
45+
"五月",
46+
"六月",
47+
"七月",
48+
"八月",
49+
"九月",
50+
"十月",
51+
"十一月",
52+
"十二月",
53+
],
54+
},
55+
rangeSeparator: " 至 ",
56+
weekAbbreviation: "周",
57+
scrollTitle: "滚动切换",
58+
toggleTitle: "点击切换 12/24 小时时制",
59+
};
60+
fp.l10ns.zh = Mandarin;
61+
var zh = fp.l10ns;
62+
63+
exports.Mandarin = Mandarin;
64+
exports.default = zh;
65+
66+
Object.defineProperty(exports, '__esModule', { value: true });
67+
68+
})));

resources/assets/flatpickr/dist/shortcut-buttons-flatpickr/shortcut-buttons-flatpickr.min.js

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)