-
-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Commit
* * fix verbiage * * fixes #2778 * sort of fixes #2775 * * fixes #2778 * sort of fixes #2775 * Add Bootstrap Icons plugin (#2776) * Add Bootstrap Icons plugin * Order plugin list alphabetically in docs * Fix indentation to match other types --------- Co-authored-by: Jonathan Peterson <[email protected]> Co-authored-by: Sebastian Blank <[email protected]> * * fix missing stuff --------- Co-authored-by: John Pariseau <[email protected]> Co-authored-by: Sebastian Blank <[email protected]>
- Loading branch information
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
/*! | ||
* Tempus Dominus v6.4.3 (https://getdatepicker.com/) | ||
* Copyright 2013-2023 Jonathan Peterson | ||
* Licensed under MIT (https://github.com/Eonasdan/tempus-dominus/blob/master/LICENSE) | ||
*/ | ||
(function(g,f){typeof exports==='object'&&typeof module!=='undefined'?f(exports):typeof define==='function'&&define.amd?define(['exports'],f):(g=typeof globalThis!=='undefined'?globalThis:g||self,f((g.tempusDominus=g.tempusDominus||{},g.tempusDominus.plugins=g.tempusDominus.plugins||{},g.tempusDominus.plugins.bi_one={})));})(this,(function(exports){'use strict';// this obviously requires the Bootstrap Icons v1 libraries to be loaded | ||
const biOneIcons = { | ||
type: 'icons', | ||
time: 'bi bi-clock', | ||
date: 'bi bi-calendar-week', | ||
up: 'bi bi-arrow-up', | ||
down: 'bi bi-arrow-down', | ||
previous: 'bi bi-chevron-left', | ||
next: 'bi bi-chevron-right', | ||
today: 'bi bi-calendar-check', | ||
clear: 'bi bi-trash', | ||
close: 'bi bi-x', | ||
}; | ||
// noinspection JSUnusedGlobalSymbols | ||
const load = (_, __, tdFactory) => { | ||
tdFactory.DefaultOptions.display.icons = biOneIcons; | ||
};exports.biOneIcons=biOneIcons;exports.load=load;Object.defineProperty(exports,'__esModule',{value:true});})); |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,10 +15,10 @@ <h2 id='cdn'>Via CDN</h2> | |
<code class='language-html'><!-- Popperjs --> | ||
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" crossorigin="anonymous"></script> | ||
<!-- Tempus Dominus JavaScript --> | ||
<script src="https://cdn.jsdelivr.net/npm/@eonasdan/[email protected].1/dist/js/tempus-dominus.min.js" crossorigin="anonymous"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/@eonasdan/[email protected].3/dist/js/tempus-dominus.min.js" crossorigin="anonymous"></script> | ||
|
||
<!-- Tempus Dominus Styles --> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@eonasdan/[email protected].1/dist/css/tempus-dominus.min.css" crossorigin="anonymous"></code> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@eonasdan/[email protected].3/dist/css/tempus-dominus.min.css" crossorigin="anonymous"></code> | ||
</pre> | ||
</div> | ||
|
||
|