summaryrefslogtreecommitdiff
path: root/public/js/fullcalendar/packages/bootstrap4/index.global.js
diff options
context:
space:
mode:
Diffstat (limited to 'public/js/fullcalendar/packages/bootstrap4/index.global.js')
-rw-r--r--public/js/fullcalendar/packages/bootstrap4/index.global.js64
1 files changed, 64 insertions, 0 deletions
diff --git a/public/js/fullcalendar/packages/bootstrap4/index.global.js b/public/js/fullcalendar/packages/bootstrap4/index.global.js
new file mode 100644
index 0000000..a699c90
--- /dev/null
+++ b/public/js/fullcalendar/packages/bootstrap4/index.global.js
@@ -0,0 +1,64 @@
1/*!
2FullCalendar Bootstrap 4 Plugin v6.1.17
3Docs & License: https://fullcalendar.io/docs/bootstrap4
4(c) 2024 Adam Shaw
5*/
6FullCalendar.Bootstrap = (function (exports, core, internal$1) {
7 'use strict';
8
9 class BootstrapTheme extends internal$1.Theme {
10 }
11 BootstrapTheme.prototype.classes = {
12 root: 'fc-theme-bootstrap',
13 table: 'table-bordered',
14 tableCellShaded: 'table-active',
15 buttonGroup: 'btn-group',
16 button: 'btn btn-primary',
17 buttonActive: 'active',
18 popover: 'popover',
19 popoverHeader: 'popover-header',
20 popoverContent: 'popover-body',
21 };
22 BootstrapTheme.prototype.baseIconClass = 'fa';
23 BootstrapTheme.prototype.iconClasses = {
24 close: 'fa-times',
25 prev: 'fa-chevron-left',
26 next: 'fa-chevron-right',
27 prevYear: 'fa-angle-double-left',
28 nextYear: 'fa-angle-double-right',
29 };
30 BootstrapTheme.prototype.rtlIconClasses = {
31 prev: 'fa-chevron-right',
32 next: 'fa-chevron-left',
33 prevYear: 'fa-angle-double-right',
34 nextYear: 'fa-angle-double-left',
35 };
36 BootstrapTheme.prototype.iconOverrideOption = 'bootstrapFontAwesome'; // TODO: make TS-friendly. move the option-processing into this plugin
37 BootstrapTheme.prototype.iconOverrideCustomButtonOption = 'bootstrapFontAwesome';
38 BootstrapTheme.prototype.iconOverridePrefix = 'fa-';
39
40 var css_248z = ".fc-theme-bootstrap a:not([href]){color:inherit}.fc-theme-bootstrap .fc-more-link:hover{text-decoration:none}";
41 internal$1.injectStyles(css_248z);
42
43 var plugin = core.createPlugin({
44 name: '@fullcalendar/bootstrap',
45 themeClasses: {
46 bootstrap: BootstrapTheme,
47 },
48 });
49
50 var internal = {
51 __proto__: null,
52 BootstrapTheme: BootstrapTheme
53 };
54
55 core.globalPlugins.push(plugin);
56
57 exports.Internal = internal;
58 exports["default"] = plugin;
59
60 Object.defineProperty(exports, '__esModule', { value: true });
61
62 return exports;
63
64})({}, FullCalendar, FullCalendar.Internal);