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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
<a name="2.3.3"></a>
## [2.3.3](https://github.com/NativeScript/theme/compare/v2.3.2...v2.3.3) (2020-03-17)

### Fixes

* Fix wrong ActionBar colors, introduced with node-sass fix
* Fix missing bootstrap bg-primary accented background-color

<a name="2.3.2"></a>
## [2.3.2](https://github.com/NativeScript/theme/compare/v2.2.1...v2.3.2) (2020-02-20)

Expand Down
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nativescript/theme",
"version": "2.3.2",
"version": "2.3.3",
"description": "Telerik NativeScript Core Theme",
"author": "Telerik <support@telerik.com>",
"homepage": "https://www.nativescript.org",
Expand All @@ -14,24 +14,24 @@
"nativescript": {
"id": "org.nativescript.theme",
"tns-ios": {
"version": "6.4.0"
"version": "6.4.2"
},
"tns-android": {
"version": "6.4.1"
}
},
"dependencies": {
"@nativescript/core": "~6.4.1",
"@nativescript/core": "~6.5.0",
"@nativescript/theme": "./src",
"bootstrap": "4.3.1",
"nativescript-picker": "~2.1.2",
"nativescript-datetimepicker": "~1.2.2",
"nativescript-themes": "2.0.1",
"nativescript-ui-autocomplete": "~6.0.0",
"nativescript-ui-autocomplete": "~6.0.1",
"nativescript-ui-sidedrawer": "~8.0.0",
"nativescript-ui-dataform": "~6.0.0",
"nativescript-ui-listview": "~8.0.1",
"tns-core-modules": "~6.4.1"
"tns-core-modules": "~6.5.0"
},
"devDependencies": {
"@babel/core": "7.7.7",
Expand All @@ -42,14 +42,14 @@
"eslint": "6.4.0",
"glob": "7.1.4",
"lazy": "1.0.11",
"nativescript-dev-webpack": "1.4.1",
"resolve-url-loader": "3.1.0",
"sass": "1.25.0",
"nativescript-dev-webpack": "1.5.1",
"resolve-url-loader": "3.1.1",
"sass": "1.26.3",
"sass-lint": "1.13.1",
"sass-loader": "8.0.2",
"speed-measure-webpack-plugin": "1.3.1",
"webpack": "4.40.2",
"webpack-bundle-analyzer": "3.5.0",
"webpack-bundle-analyzer": "3.6.1",
"webpack-cli": "3.3.9",
"webpack-sources": "1.4.3"
},
Expand Down
2 changes: 1 addition & 1 deletion src/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nativescript/theme",
"version": "2.3.2",
"version": "2.3.3",
"description": "Telerik NativeScript Core Theme",
"author": "Telerik <support@telerik.com>",
"main": "index",
Expand Down
2 changes: 1 addition & 1 deletion src/scss/_bootstrap.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
}

.bg-primary {
@include colorize($color: accent);
@include colorize($background-color: accent);
color: $white;
}

Expand Down
5 changes: 5 additions & 0 deletions src/scss/mixins/_utilities.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@
// Functions

@function const($const) {
// Workarounds for node-sass color bug
@if $const == white { $const: "white"; }
@if $const == black { $const: "black"; }
@if $const == transparent { $const: "transparent"; }

@return map-get($constants, $const);
}

Expand Down