@fullcalendar/bootstrap
Advanced tools
Comparing version 6.1.0 to 6.1.1
/*! | ||
FullCalendar Bootstrap 4 Plugin v6.1.0 | ||
FullCalendar Bootstrap 4 Plugin v6.1.1 | ||
Docs & License: https://fullcalendar.io/docs/bootstrap4 | ||
(c) 2022 Adam Shaw | ||
(c) 2023 Adam Shaw | ||
*/ | ||
@@ -6,0 +6,0 @@ FullCalendar.Bootstrap = (function (exports, core, internal$1) { |
/*! | ||
FullCalendar Bootstrap 4 Plugin v6.1.0 | ||
FullCalendar Bootstrap 4 Plugin v6.1.1 | ||
Docs & License: https://fullcalendar.io/docs/bootstrap4 | ||
(c) 2022 Adam Shaw | ||
(c) 2023 Adam Shaw | ||
*/ | ||
FullCalendar.Bootstrap=function(e,t,o){"use strict";class r extends o.Theme{}r.prototype.classes={root:"fc-theme-bootstrap",table:"table-bordered",tableCellShaded:"table-active",buttonGroup:"btn-group",button:"btn btn-primary",buttonActive:"active",popover:"popover",popoverHeader:"popover-header",popoverContent:"popover-body"},r.prototype.baseIconClass="fa",r.prototype.iconClasses={close:"fa-times",prev:"fa-chevron-left",next:"fa-chevron-right",prevYear:"fa-angle-double-left",nextYear:"fa-angle-double-right"},r.prototype.rtlIconClasses={prev:"fa-chevron-right",next:"fa-chevron-left",prevYear:"fa-angle-double-right",nextYear:"fa-angle-double-left"},r.prototype.iconOverrideOption="bootstrapFontAwesome",r.prototype.iconOverrideCustomButtonOption="bootstrapFontAwesome",r.prototype.iconOverridePrefix="fa-";o.injectStyles(".fc-theme-bootstrap a:not([href]){color:inherit}.fc-theme-bootstrap .fc-more-link:hover{text-decoration:none}");var a=t.createPlugin({name:"@fullcalendar/bootstrap",themeClasses:{bootstrap:r}}),n={__proto__:null,BootstrapTheme:r};return t.globalPlugins.push(a),e.Internal=n,e.default=a,Object.defineProperty(e,"__esModule",{value:!0}),e}({},FullCalendar,FullCalendar.Internal); |
18
index.js
@@ -1,19 +0,15 @@ | ||
'use strict'; | ||
import { createPlugin } from '@fullcalendar/core'; | ||
import { BootstrapTheme } from './internal.js'; | ||
import { injectStyles } from '@fullcalendar/core/internal'; | ||
Object.defineProperty(exports, '__esModule', { value: true }); | ||
var core = require('@fullcalendar/core'); | ||
var internalCommon = require('./internal.js'); | ||
var internal = require('@fullcalendar/core/internal'); | ||
var css_248z = ".fc-theme-bootstrap a:not([href]){color:inherit}.fc-theme-bootstrap .fc-more-link:hover{text-decoration:none}"; | ||
internal.injectStyles(css_248z); | ||
injectStyles(css_248z); | ||
var index = core.createPlugin({ | ||
var index = createPlugin({ | ||
name: '@fullcalendar/bootstrap', | ||
themeClasses: { | ||
bootstrap: internalCommon.BootstrapTheme, | ||
bootstrap: BootstrapTheme, | ||
}, | ||
}); | ||
exports["default"] = index; | ||
export { index as default }; |
@@ -1,8 +0,4 @@ | ||
'use strict'; | ||
import { Theme } from '@fullcalendar/core/internal'; | ||
Object.defineProperty(exports, '__esModule', { value: true }); | ||
var internal = require('@fullcalendar/core/internal'); | ||
class BootstrapTheme extends internal.Theme { | ||
class BootstrapTheme extends Theme { | ||
} | ||
@@ -38,2 +34,2 @@ BootstrapTheme.prototype.classes = { | ||
exports.BootstrapTheme = BootstrapTheme; | ||
export { BootstrapTheme }; |
{ | ||
"name": "@fullcalendar/bootstrap", | ||
"version": "6.1.0", | ||
"version": "6.1.1", | ||
"title": "FullCalendar Bootstrap 4 Plugin", | ||
@@ -16,3 +16,3 @@ "description": "Bootstrap 4 theme for FullCalendar", | ||
"peerDependencies": { | ||
"@fullcalendar/core": "~6.1.0" | ||
"@fullcalendar/core": "~6.1.1" | ||
}, | ||
@@ -32,6 +32,6 @@ "type": "module", | ||
}, | ||
"copyright": "2022 Adam Shaw", | ||
"copyright": "2023 Adam Shaw", | ||
"types": "./index.d.ts", | ||
"main": "./index.js", | ||
"module": "./index.esm.js", | ||
"main": "./index.cjs", | ||
"module": "./index.js", | ||
"unpkg": "./index.global.min.js", | ||
@@ -41,11 +41,13 @@ "jsdelivr": "./index.global.min.js", | ||
"./package.json": "./package.json", | ||
"./index.cjs": "./index.cjs", | ||
".": { | ||
"types": "./index.d.ts", | ||
"require": "./index.js", | ||
"import": "./index.esm.js" | ||
"require": "./index.cjs", | ||
"import": "./index.js" | ||
}, | ||
"./internal.cjs": "./internal.cjs", | ||
"./internal": { | ||
"types": "./internal.d.ts", | ||
"require": "./internal.js", | ||
"import": "./internal.esm.js" | ||
"require": "./internal.cjs", | ||
"import": "./internal.js" | ||
} | ||
@@ -52,0 +54,0 @@ }, |
11008