Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## [4.7.11] - 26/11/2024

- Updated dependencies
- Fixed scripts

## [4.7.10] - 04/16/2021

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

const gulp = require("gulp");
const del = require("del");
const sass = require("gulp-sass");
const sass = require("gulp-sass")(require('sass'));
const rename = require("gulp-rename");
const hb = require("gulp-hb");
const layouts = require("handlebars-layouts");
Expand Down
40 changes: 20 additions & 20 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"name": "sing",
"version": "4.7.10",
"version": "4.7.11",
"description": "Sing App - Bootstrap 4.5 Admin Dashboard",
"scripts": {
"build": "gulp build",
"watch": "gulp watch"
},
"dependencies": {
"animate.css": "^3.7.0",
"autosize": "^4.0.2",
"autosize": "^4.0.4",
"awesome-bootstrap-checkbox": "^1.0.1",
"backbone": "^1.4.0",
"backbone": "^1.6.0",
"backbone.paginator": "^2.0.8",
"backgrid": "^0.3.8",
"backgrid-paginator": "^0.3.9",
Expand All @@ -27,22 +27,22 @@
"d3v5": "npm:d3@^5.1.0",
"datatables": "^1.10.18",
"driver.js": "^0.9.8",
"dropzone": "^5.7.2",
"dropzone": "^5.9.3",
"easy-pie-chart": "^2.1.7",
"eonasdan-bootstrap-datetimepicker": "^4.17.47",
"eonasdan-bootstrap-datetimepicker": "^4.17.49",
"flot": "^0.8.3",
"flot-orderbars": "^1.0.0",
"flot.dashes": "https://github.com/cquartier/flot.dashes.git",
"flotanimator": "https://github.com/Codicode/flotanimator",
"font-awesome": "^4.7.0",
"fullcalendar": "^3.10.2",
"glob": "^7.1.6",
"fullcalendar": "^3.10.5",
"glob": "^7.2.3",
"glyphicons-halflings": "^1.9.1",
"gmaps": "^0.4.25",
"grunt": "^1.3.0",
"grunt": "^1.6.1",
"hammerjs": "^2.0.8",
"handlebars": "^4.7.6",
"holderjs": "^2.9.7",
"handlebars": "^4.7.8",
"holderjs": "^2.9.9",
"intro.js": "^2.9.3",
"jasny-bootstrap": "^3.1.3",
"jquery": "2.1.4",
Expand All @@ -55,19 +55,19 @@
"jquery-pjax": "^2.0.1",
"jquery-slimscroll": "^1.3.8",
"jquery-sparkline": "^2.4.0",
"jquery-ui": "^1.12.1",
"jquery-ui": "^1.14.1",
"jquery-ui-touch-punch": "^0.2.3",
"jquery.animate-number": "0.0.14",
"jvectormap": "2.0.4",
"line-awesome": "github:icons8/line-awesome",
"magnific-popup": "^1.1.0",
"magnific-popup": "^1.2.0",
"markdown": "^0.5.0",
"messenger": "https://github.com/HubSpot/messenger.git",
"metrojs": "^0.9.77",
"minimatch": "^3.0.4",
"moment": "^2.29.0",
"minimatch": "^3.1.2",
"moment": "^2.30.1",
"morris.js": "^0.5.0",
"node-sass": "^4.13.1",
"sass": "^1.81.0",
"nvd3": "^1.8.6",
"owl.carousel": "^2.3.4",
"pace": "git+https://github.com/HubSpot/pace.git#v0.7.1",
Expand All @@ -77,22 +77,22 @@
"rickshaw": "^1.7.1",
"select2": "4.0.13",
"select2-bootstrap-css": "^1.4.6",
"shufflejs": "^5.2.3",
"shufflejs": "^5.4.1",
"skycons": "https://github.com/darkskyapp/skycons.git#60d41374ea97c5da1f92622ddcecca6dd1d9beed",
"slick-carousel": "^1.8.1",
"summernote": "^0.8.18",
"summernote": "^0.8.20",
"switchery": "https://github.com/abpetkov/switchery.git",
"tempusdominus-bootstrap-4": "^5.1.2",
"tempusdominus-bootstrap-4": "^5.39.2",
"turndown": "^5.0.3",
"twitter-bootstrap-wizard": "https://github.com/VinceG/twitter-bootstrap-wizard#1.4.2",
"widgster": "^1.0.0"
},
"devDependencies": {
"del": "^5.1.0",
"gulp": "^4.0.2",
"gulp": "^5.0.0",
"gulp-hb": "^8.0.0",
"gulp-rename": "2.0.0",
"gulp-sass": "^4.0.2",
"gulp-sass": "^5.0.0",
"gulp-sourcemaps": "^2.6.5",
"handlebars-layouts": "^3.1.4",
"run-sequence": "^2.2.1"
Expand Down
2 changes: 1 addition & 1 deletion src/sass/_utils.scss
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@
.form-control:focus,
.form-control:focus + .input-group-append .input-group-text,
&.focus .input-group-text{
@extend .input-no-border:focus;
background-color: $gray-100;
}
}

Expand Down
Loading