@fullcalendar/bootstrap
Advanced tools
Comparing version 6.0.2 to 6.0.3
/*! | ||
FullCalendar Bootstrap 4 Plugin v6.0.2 | ||
FullCalendar Bootstrap 4 Plugin v6.0.3 | ||
Docs & License: https://fullcalendar.io/docs/bootstrap4 | ||
@@ -4,0 +4,0 @@ (c) 2022 Adam Shaw |
/*! | ||
FullCalendar Bootstrap 4 Plugin v6.0.2 | ||
FullCalendar Bootstrap 4 Plugin v6.0.3 | ||
Docs & License: https://fullcalendar.io/docs/bootstrap4 | ||
@@ -4,0 +4,0 @@ (c) 2022 Adam Shaw |
18
index.js
@@ -1,15 +0,19 @@ | ||
import { createPlugin } from '@fullcalendar/core/index.js'; | ||
import { BootstrapTheme } from './internal.js'; | ||
import { injectStyles } from '@fullcalendar/core/internal.js'; | ||
'use strict'; | ||
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}"; | ||
injectStyles(css_248z); | ||
internal.injectStyles(css_248z); | ||
var index = createPlugin({ | ||
var index = core.createPlugin({ | ||
name: '@fullcalendar/bootstrap', | ||
themeClasses: { | ||
bootstrap: BootstrapTheme, | ||
bootstrap: internalCommon.BootstrapTheme, | ||
}, | ||
}); | ||
export { index as default }; | ||
exports["default"] = index; |
@@ -1,4 +0,8 @@ | ||
import { Theme } from '@fullcalendar/core/internal.js'; | ||
'use strict'; | ||
class BootstrapTheme extends Theme { | ||
Object.defineProperty(exports, '__esModule', { value: true }); | ||
var internal = require('@fullcalendar/core/internal'); | ||
class BootstrapTheme extends internal.Theme { | ||
} | ||
@@ -34,2 +38,2 @@ BootstrapTheme.prototype.classes = { | ||
export { BootstrapTheme }; | ||
exports.BootstrapTheme = BootstrapTheme; |
{ | ||
"name": "@fullcalendar/bootstrap", | ||
"version": "6.0.2", | ||
"version": "6.0.3", | ||
"title": "FullCalendar Bootstrap 4 Plugin", | ||
@@ -16,3 +16,3 @@ "description": "Bootstrap 4 theme for FullCalendar", | ||
"peerDependencies": { | ||
"@fullcalendar/core": "~6.0.2" | ||
"@fullcalendar/core": "~6.0.3" | ||
}, | ||
@@ -33,5 +33,5 @@ "type": "module", | ||
"copyright": "2022 Adam Shaw", | ||
"main": "./index.cjs", | ||
"module": "./index.js", | ||
"types": "./index.d.ts", | ||
"main": "./index.js", | ||
"module": "./index.esm.js", | ||
"unpkg": "./index.global.min.js", | ||
@@ -41,15 +41,11 @@ "jsdelivr": "./index.global.min.js", | ||
"./package.json": "./package.json", | ||
"./index.cjs": "./index.cjs", | ||
"./index.js": "./index.js", | ||
".": { | ||
"types": "./index.d.ts", | ||
"require": "./index.cjs", | ||
"import": "./index.js" | ||
"require": "./index.js", | ||
"import": "./index.esm.js" | ||
}, | ||
"./internal.cjs": "./internal.cjs", | ||
"./internal.js": "./internal.js", | ||
"./internal": { | ||
"types": "./internal.d.ts", | ||
"require": "./internal.cjs", | ||
"import": "./internal.js" | ||
"require": "./internal.js", | ||
"import": "./internal.esm.js" | ||
} | ||
@@ -56,0 +52,0 @@ }, |
10658
11