Updated admin dependencies. Brought in datetime picker and upped the bootstrap dep (fixes #1807)

This commit is contained in:
Djamil Legato
2020-01-31 11:53:58 -08:00
parent 9c929f15a4
commit f847d9430a
10 changed files with 4144 additions and 156 deletions

View File

@@ -1,6 +1,6 @@
import $ from 'jquery'; import $ from 'jquery';
import { config } from 'grav-config'; import { config } from 'grav-config';
import 'eonasdan-bootstrap-datetimepicker'; import '../../utils/bootstrap-datetimepicker';
export default class DateTimeField { export default class DateTimeField {

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -14,30 +14,33 @@
"author": "RocketTheme, LLC", "author": "RocketTheme, LLC",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"chartist": "0.11.0", "bootstrap": "^3.4",
"codemirror": "^5.30.0", "chartist": "0.11.4",
"codemirror": "^5.51.0",
"cookies-js": "^1.2.3", "cookies-js": "^1.2.3",
"debounce": "^1.0.2", "debounce": "^1.2.0",
"dropzone": "^5.3.0", "dropzone": "^5.5.1",
"eonasdan-bootstrap-datetimepicker": "^4.17.47",
"es6-map": "^0.1.5", "es6-map": "^0.1.5",
"es6-promise": "^4.1.1", "es6-promise": "^4.2.8",
"eventemitter3": "^4.0.0", "eventemitter3": "^4.0.0",
"exif-js": "^2.3.0", "exif-js": "^2.3.0",
"gemini-scrollbar": "^1.5.2", "gemini-scrollbar": "^1.5.3",
"immutable": "^3.8.1", "immutable": "^3.8.2",
"immutablediff": "^0.4.4", "immutablediff": "^0.4.4",
"js-yaml": "^3.10.0", "js-yaml": "^3.13.1",
"mout": "^1.0.0", "moment": "^2.24.0",
"popper.js": "^1.14.4", "moment-timezone": "^0.5.27",
"rangetouch": "^1.0.5", "mout": "^1.2.2",
"selectize": "^0.12.4", "npm-check-updates": "^4.0.1",
"sortablejs": "^1.6.1", "popper.js": "^1.16.1",
"rangetouch": "^2.0.0",
"selectize": "^0.12.6",
"sortablejs": "^1.10.2",
"speakingurl": "^14.0.1", "speakingurl": "^14.0.1",
"toastr": "^2.1.2", "toastr": "^2.1.4",
"watchjs": "0.0.0", "watchjs": "0.0.0",
"whatwg-fetch": "^2.0.3", "whatwg-fetch": "^3.0.0",
"yarn": "^1.15.2" "yarn": "^1.21.1"
}, },
"devDependencies": { "devDependencies": {
"babel-core": "^6.25.0", "babel-core": "^6.25.0",

View File

@@ -494,7 +494,7 @@ form {
} }
input[type=checkbox]:checked + label:before { input[type=checkbox]:checked + label:before {
content:"\f00c"; content:"\f00c";
font-family: "FontAwesome"; font-family: "FontAwesome", sans-serif;
font-size: 1.2rem; font-size: 1.2rem;
line-height: 1; line-height: 1;
text-align: center; text-align: center;
@@ -827,7 +827,7 @@ textarea.frontmatter {
} }
} }
& > div:last-of-type() { & > div:last-of-type {
.checkboxes.toggleable { .checkboxes.toggleable {
label { label {
border-right-width: 1px; border-right-width: 1px;

View File

@@ -8,15 +8,16 @@ module.exports = {
'codemirror', 'codemirror',
'chartist', 'chartist',
'selectize', 'selectize',
'rangetouch', /* 'rangetouch',*/
'toastr', 'toastr',
'bootstrap', 'bootstrap',
'sortablejs', 'sortablejs',
'dropzone', 'dropzone',
'eonasdan-bootstrap-datetimepicker',
'watchjs', 'watchjs',
'js-yaml', 'js-yaml',
'speakingurl' 'speakingurl',
'moment',
'moment-timezone'
] ]
}, },
output: { output: {

File diff suppressed because it is too large Load Diff