Socket
Socket
Sign inDemoInstall

@react-md/theme

Package Overview
Dependencies
Maintainers
1
Versions
56
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@react-md/theme - npm Package Compare versions

Comparing version 2.3.1 to 2.4.0

19

CHANGELOG.md

@@ -6,2 +6,21 @@ # Change Log

# [2.4.0](https://github.com/mlaursen/react-md/compare/v2.2.0...v2.4.0) (2020-10-17)
### Bug Fixes
- **table:** table border color uses hex values to fix chrome colSpan rendering
issue ([#982](https://github.com/mlaursen/react-md/issues/982))
([2138284](https://github.com/mlaursen/react-md/commit/213828454b15cee8d257ee82182e5869127f7661))
### Features
- **theme:** Better Contrast Colors by Default and dev-utils refactor
([#955](https://github.com/mlaursen/react-md/issues/955))
([519b128](https://github.com/mlaursen/react-md/commit/519b128522de944d55ff96a1e1125447665ed586))
# Change Log
All notable changes to this project will be documented in this file. See
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [2.3.1](https://github.com/mlaursen/react-md/compare/v2.2.0...v2.3.1) (2020-09-15)

@@ -8,0 +27,0 @@

56

dist/scssVariables.d.ts

@@ -0,3 +1,8 @@

/**
* This file was generated from @react-md/dev-utils and should not be updated
* manually.
*/
declare const _default: {
"rmd-theme-default-contrast-ratio": number;
"rmd-theme-better-contrast-colors": boolean;
"rmd-red-50": string;

@@ -582,27 +587,27 @@ "rmd-red-100": string;

"rmd-theme-dark-elevation-colors": {
0: string;
1: string;
2: string;
3: string;
4: string;
5: string;
6: string;
7: string;
8: string;
9: string;
10: string;
11: string;
12: string;
13: string;
14: string;
15: string;
16: string;
17: string;
18: string;
19: string;
20: string;
21: string;
22: string;
23: string;
24: string;
"0": string;
"1": string;
"2": string;
"3": string;
"4": string;
"5": string;
"6": string;
"7": string;
"8": string;
"9": string;
"10": string;
"11": string;
"12": string;
"13": string;
"14": string;
"15": string;
"16": string;
"17": string;
"18": string;
"19": string;
"20": string;
"21": string;
"22": string;
"23": string;
"24": string;
};

@@ -644,3 +649,2 @@ "rmd-theme-values": {

};
/** this is an auto-generated file from @react-md/dev-utils */
export default _default;
"use strict";
/**
* This file was generated from @react-md/dev-utils and should not be updated
* manually.
*/
Object.defineProperty(exports, "__esModule", { value: true });
/** this is an auto-generated file from @react-md/dev-utils */
exports.default = {
"rmd-theme-default-contrast-ratio": 3,
"rmd-theme-better-contrast-colors": true,
"rmd-red-50": "#ffebee",

@@ -559,11 +563,11 @@ "rmd-red-100": "#ffcdd2",

"rmd-theme-primary": "#9c27b0",
"rmd-theme-on-primary": "#000",
"rmd-theme-on-primary": "#fff",
"rmd-theme-secondary": "#f50057",
"rmd-theme-on-secondary": "#000",
"rmd-theme-warning": "#ff6e40",
"rmd-theme-on-warning": "#fff",
"rmd-theme-on-warning": "#000",
"rmd-theme-error": "#f44336",
"rmd-theme-on-error": "#000",
"rmd-theme-success": "#00c853",
"rmd-theme-on-success": "#fff",
"rmd-theme-on-success": "#000",
"rmd-theme-light-background": "#fafafa",

@@ -617,27 +621,27 @@ "rmd-theme-light-surface": "#fff",

"rmd-theme-dark-elevation-colors": {
0: "#303030",
1: "#1f1f1f",
2: "#242424",
3: "#262626",
4: "#282828",
5: "#282828",
6: "#2c2c2c",
7: "#2c2c2c",
8: "#2f2f2f",
9: "#2f2f2f",
10: "#2f2f2f",
11: "#2f2f2f",
12: "#333",
13: "#333",
14: "#333",
15: "#333",
16: "#353535",
17: "#353535",
18: "#353535",
19: "#353535",
20: "#353535",
21: "#353535",
22: "#353535",
23: "#353535",
24: "#383838",
"0": "#303030",
"1": "#1f1f1f",
"2": "#242424",
"3": "#262626",
"4": "#282828",
"5": "#282828",
"6": "#2c2c2c",
"7": "#2c2c2c",
"8": "#2f2f2f",
"9": "#2f2f2f",
"10": "#2f2f2f",
"11": "#2f2f2f",
"12": "#333",
"13": "#333",
"14": "#333",
"15": "#333",
"16": "#353535",
"17": "#353535",
"18": "#353535",
"19": "#353535",
"20": "#353535",
"21": "#353535",
"22": "#353535",
"23": "#353535",
"24": "#383838",
},

@@ -647,3 +651,3 @@ "rmd-theme-values": {

primary: "#9c27b0",
"on-primary": "#000",
"on-primary": "#fff",
secondary: "#f50057",

@@ -654,7 +658,7 @@ "on-secondary": "#000",

warning: "#ff6e40",
"on-warning": "#fff",
"on-warning": "#000",
error: "#f44336",
"on-error": "#000",
success: "#00c853",
"on-success": "#fff",
"on-success": "#000",
"text-primary-on-background": "#212121",

@@ -661,0 +665,0 @@ "text-secondary-on-background": "#757575",

{
"name": "@react-md/theme",
"version": "2.3.1",
"version": "2.4.0",
"description": "The base package for including a theme for react-md. This is required by most other packages.",
"scripts": {
"build": "dev-utils build",
"clean": "dev-utils clean"
},
"main": "./dist/scssVariables.js",

@@ -39,3 +35,3 @@ "module": "./dist/scssVariables.js",

"dependencies": {
"@react-md/utils": "^2.3.1"
"@react-md/utils": "^2.4.0"
},

@@ -55,3 +51,3 @@ "devDependencies": {

},
"gitHead": "91880f64501b1a0637569be9aeea621db8898e86"
"gitHead": "96fb088b5ae725ce21993aeda131de40119837e0"
}

@@ -1,4 +0,9 @@

/** this is an auto-generated file from @react-md/dev-utils */
/**
* This file was generated from @react-md/dev-utils and should not be updated
* manually.
*/
export default {
"rmd-theme-default-contrast-ratio": 3,
"rmd-theme-better-contrast-colors": true,
"rmd-red-50": "#ffebee",

@@ -557,11 +562,11 @@ "rmd-red-100": "#ffcdd2",

"rmd-theme-primary": "#9c27b0",
"rmd-theme-on-primary": "#000",
"rmd-theme-on-primary": "#fff",
"rmd-theme-secondary": "#f50057",
"rmd-theme-on-secondary": "#000",
"rmd-theme-warning": "#ff6e40",
"rmd-theme-on-warning": "#fff",
"rmd-theme-on-warning": "#000",
"rmd-theme-error": "#f44336",
"rmd-theme-on-error": "#000",
"rmd-theme-success": "#00c853",
"rmd-theme-on-success": "#fff",
"rmd-theme-on-success": "#000",
"rmd-theme-light-background": "#fafafa",

@@ -615,27 +620,27 @@ "rmd-theme-light-surface": "#fff",

"rmd-theme-dark-elevation-colors": {
0: "#303030",
1: "#1f1f1f",
2: "#242424",
3: "#262626",
4: "#282828",
5: "#282828",
6: "#2c2c2c",
7: "#2c2c2c",
8: "#2f2f2f",
9: "#2f2f2f",
10: "#2f2f2f",
11: "#2f2f2f",
12: "#333",
13: "#333",
14: "#333",
15: "#333",
16: "#353535",
17: "#353535",
18: "#353535",
19: "#353535",
20: "#353535",
21: "#353535",
22: "#353535",
23: "#353535",
24: "#383838",
"0": "#303030",
"1": "#1f1f1f",
"2": "#242424",
"3": "#262626",
"4": "#282828",
"5": "#282828",
"6": "#2c2c2c",
"7": "#2c2c2c",
"8": "#2f2f2f",
"9": "#2f2f2f",
"10": "#2f2f2f",
"11": "#2f2f2f",
"12": "#333",
"13": "#333",
"14": "#333",
"15": "#333",
"16": "#353535",
"17": "#353535",
"18": "#353535",
"19": "#353535",
"20": "#353535",
"21": "#353535",
"22": "#353535",
"23": "#353535",
"24": "#383838",
},

@@ -645,3 +650,3 @@ "rmd-theme-values": {

primary: "#9c27b0",
"on-primary": "#000",
"on-primary": "#fff",
secondary: "#f50057",

@@ -652,7 +657,7 @@ "on-secondary": "#000",

warning: "#ff6e40",
"on-warning": "#fff",
"on-warning": "#000",
error: "#f44336",
"on-error": "#000",
success: "#00c853",
"on-success": "#fff",
"on-success": "#000",
"text-primary-on-background": "#212121",

@@ -659,0 +664,0 @@ "text-secondary-on-background": "#757575",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc