Socket
Socket
Sign inDemoInstall

@hig/themes

Package Overview
Dependencies
Maintainers
5
Versions
238
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@hig/themes - npm Package Compare versions

Comparing version 0.1.0-alpha.f38da73f to 0.1.0-alpha.f44b1528

src/themes/HIGDarkBlueTheme.js

37

build/index.es.js

@@ -5,9 +5,14 @@ import PropTypes from 'prop-types';

var HIGLightTheme = {
themeId: 'hig-light',
themeClass: 'hig--light-theme'
themeId: "hig-light",
themeClass: "hig--light-theme"
};
var HIGDarkBlueTheme = {
themeId: "hig-dark-blue",
themeClass: "hig--dark-blue-theme"
};
var MatrixTheme = {
themeId: 'matrix',
themeClass: 'hig--matrix-theme'
themeId: "matrix",
themeClass: "hig--matrix-theme"
};

@@ -42,3 +47,3 @@

_createClass(Provider, [{
key: 'getChildContext',
key: "getChildContext",
value: function getChildContext() {

@@ -48,3 +53,3 @@ return _extends({}, this.props.value);

}, {
key: 'render',
key: "render",
value: function render() {

@@ -87,3 +92,3 @@ return this.props.children;

_createClass$1(Consumer, [{
key: 'render',
key: "render",
value: function render() {

@@ -104,11 +109,11 @@ var theme = this.context.themeId && this.context.themeClass ? this.context : HIGLightTheme;

Consumer.__docgenInfo = {
'description': '',
'displayName': 'Consumer',
'props': {
'children': {
'type': {
'name': 'func'
"description": "",
"displayName": "Consumer",
"props": {
"children": {
"type": {
"name": "func"
},
'required': false,
'description': 'A theme provided to the consumer within'
"required": false,
"description": "A theme provided to the consumer within"
}

@@ -120,2 +125,2 @@ }

export { HIGLightTheme, MatrixTheme, index as ThemeContext };
export { HIGLightTheme, HIGDarkBlueTheme, MatrixTheme, index as ThemeContext };

@@ -11,9 +11,14 @@ 'use strict';

var HIGLightTheme = {
themeId: 'hig-light',
themeClass: 'hig--light-theme'
themeId: "hig-light",
themeClass: "hig--light-theme"
};
var HIGDarkBlueTheme = {
themeId: "hig-dark-blue",
themeClass: "hig--dark-blue-theme"
};
var MatrixTheme = {
themeId: 'matrix',
themeClass: 'hig--matrix-theme'
themeId: "matrix",
themeClass: "hig--matrix-theme"
};

@@ -48,3 +53,3 @@

_createClass(Provider, [{
key: 'getChildContext',
key: "getChildContext",
value: function getChildContext() {

@@ -54,3 +59,3 @@ return _extends({}, this.props.value);

}, {
key: 'render',
key: "render",
value: function render() {

@@ -93,3 +98,3 @@ return this.props.children;

_createClass$1(Consumer, [{
key: 'render',
key: "render",
value: function render() {

@@ -110,11 +115,11 @@ var theme = this.context.themeId && this.context.themeClass ? this.context : HIGLightTheme;

Consumer.__docgenInfo = {
'description': '',
'displayName': 'Consumer',
'props': {
'children': {
'type': {
'name': 'func'
"description": "",
"displayName": "Consumer",
"props": {
"children": {
"type": {
"name": "func"
},
'required': false,
'description': 'A theme provided to the consumer within'
"required": false,
"description": "A theme provided to the consumer within"
}

@@ -127,3 +132,4 @@ }

exports.HIGLightTheme = HIGLightTheme;
exports.HIGDarkBlueTheme = HIGDarkBlueTheme;
exports.MatrixTheme = MatrixTheme;
exports.ThemeContext = index;
{
"name": "@hig/themes",
"version": "0.1.0-alpha.f38da73f",
"version": "0.1.0-alpha.f44b1528",
"description": "HIG theme definitions and supporting components",

@@ -8,7 +8,12 @@ "author": "Autodesk Inc.",

"homepage": "https://hig.autodesk.com",
"publishConfig": {
"access": "public"
},
"main": "build/index.js",
"module": "build/index.es.js",
"devDependencies": {
"@hig/scripts": "0.2.0-alpha.f38da73f",
"@hig/styles": "0.1.0-alpha.f38da73f"
"@hig/babel-preset": "0.2.0-alpha.f44b1528",
"@hig/banner": "0.2.0-alpha.f44b1528",
"@hig/scripts": "0.2.0-alpha.f44b1528",
"@hig/styles": "0.1.0-alpha.f44b1528"
},

@@ -20,4 +25,8 @@ "peerDependencies": {

"scripts": {
"build": "hig-scripts-build"
"build": "hig-scripts-build",
"lint": "eslint src --ext .js,.jsx"
},
"eslintConfig": {
"extends": "@hig"
}
}
import React from "react";
import { storiesOf } from "@storybook/react";
import { action } from "@storybook/addon-actions";
import { text, select, boolean } from "@storybook/addon-knobs/react";
import { select } from "@storybook/addon-knobs/react";
import { withInfo } from "@storybook/addon-info";
import { makeSelectOptions } from "@hig/storybook/utils";
import Banner, { AVAILABLE_TYPES as BANNER_TYPES } from "@hig/banner";
import readme from '../../README.md';
import readme from "../../README.md";
import ThemeContext from "../ThemeContext";
import HIGLightTheme from "../themes/HIGLightTheme";
import HIGDarkBlueTheme from "../themes/HIGDarkBlueTheme";
import MatrixTheme from "../themes/MatrixTheme";

@@ -17,29 +16,36 @@

"hig-light": "HIG Light",
"matrix": "BIM360 Matrix"
}
"hig-dark-blue": "HIG Dark Blue",
matrix: "BIM360 Matrix"
};
const themes = {
"hig-light": HIGLightTheme,
"matrix": MatrixTheme
}
"hig-dark-blue": HIGDarkBlueTheme,
matrix: MatrixTheme
};
const themeContextStories = storiesOf("ThemeContext", module);
themeContextStories.add("themable", withInfo({
propTables: [ThemeContext.Provider, ThemeContext.Consumer],
propTablesExclude: [Banner],
text: <div dangerouslySetInnerHTML={{__html: readme}}></div>,
})(() => {
const theme = select('Theme', themeOptions, 'hig-light');
return (
<ThemeContext.Provider value={themes[theme]}>
<div>
{BANNER_TYPES.map((type) => (
<div style={{ marginBottom: "20px" }}>
<Banner type={type}>{`This ${type} message presented in ${themeOptions[theme]} theme`}</Banner>
</div>
))}
</div>
</ThemeContext.Provider>
);
}));
themeContextStories.add(
"themable",
withInfo({
propTables: [ThemeContext.Provider, ThemeContext.Consumer],
propTablesExclude: [Banner],
text: <div dangerouslySetInnerHTML={{ __html: readme }} />
})(() => {
const theme = select("Theme", themeOptions, "hig-light");
return (
<ThemeContext.Provider value={themes[theme]}>
<div>
{BANNER_TYPES.map(type => (
<div style={{ marginBottom: "20px" }}>
<Banner type={type}>{`This ${type} message presented in ${
themeOptions[theme]
} theme`}</Banner>
</div>
))}
</div>
</ThemeContext.Provider>
);
})
);

@@ -1,3 +0,4 @@

export { default as HIGLightTheme } from './themes/HIGLightTheme';
export { default as MatrixTheme } from './themes/MatrixTheme';
export { default as ThemeContext } from './ThemeContext';
export { default as HIGLightTheme } from "./themes/HIGLightTheme";
export { default as HIGDarkBlueTheme } from "./themes/HIGDarkBlueTheme";
export { default as MatrixTheme } from "./themes/MatrixTheme";
export { default as ThemeContext } from "./ThemeContext";

@@ -9,3 +9,3 @@ import * as index from "./index";

Consumer: expect.any(Function),
Provider: expect.any(Function),
Provider: expect.any(Function)
})

@@ -18,2 +18,6 @@ },

{
name: "HIGDarkBlueTheme",
value: expect.any(Object)
},
{
name: "MatrixTheme",

@@ -20,0 +24,0 @@ value: expect.any(Object)

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

import React, { Component } from 'react';
import PropTypes from 'prop-types';
import themeContextShape from './shape';
import { Component } from "react";
import PropTypes from "prop-types";
import themeContextShape from "./shape";
import HIGLightTheme from "../themes/HIGLightTheme";

@@ -10,3 +10,3 @@

children: PropTypes.func
}
};

@@ -16,5 +16,8 @@ static contextTypes = themeContextShape;

render() {
const theme = (this.context.themeId && this.context.themeClass) ? this.context : HIGLightTheme;
const theme =
this.context.themeId && this.context.themeClass
? this.context
: HIGLightTheme;
return this.props.children(theme);
}
}

@@ -9,3 +9,3 @@ import * as index from "./index";

Consumer: expect.any(Function),
Provider: expect.any(Function),
Provider: expect.any(Function)
})

@@ -20,3 +20,3 @@ },

value: expect.any(Function)
},
}
].forEach(({ name, value }) => {

@@ -23,0 +23,0 @@ it(`exports ${name}`, () => {

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

import React, { Component } from 'react';
import PropTypes from 'prop-types';
import themeContextShape from './shape';
import { Component } from "react";
import PropTypes from "prop-types";
import themeContextShape from "./shape";
import HIGLightTheme from "../themes/HIGLightTheme";

@@ -12,3 +12,3 @@

children: PropTypes.node.isRequired
}
};

@@ -19,3 +19,3 @@ static childContextTypes = themeContextShape;

value: HIGLightTheme
}
};

@@ -22,0 +22,0 @@ getChildContext() {

@@ -1,2 +0,2 @@

import PropTypes from 'prop-types';
import PropTypes from "prop-types";

@@ -3,0 +3,0 @@ export default {

const HIGLightTheme = {
themeId: 'hig-light',
themeClass: 'hig--light-theme'
themeId: "hig-light",
themeClass: "hig--light-theme"
};
export default HIGLightTheme;
export default HIGLightTheme;
export { default as HIGLightTheme } from "./HIGLightTheme";
export { default as HIGDarkBlueTheme } from "./HIGDarkBlueTheme";
export { default as MatrixTheme } from "./MatrixTheme";

@@ -10,2 +10,6 @@ import * as index from "./index";

{
name: "HIGDarkBlueTheme",
value: expect.any(Object)
},
{
name: "MatrixTheme",

@@ -12,0 +16,0 @@ value: expect.any(Object)

const MatrixTheme = {
themeId: 'matrix',
themeClass: 'hig--matrix-theme'
themeId: "matrix",
themeClass: "hig--matrix-theme"
};
export default MatrixTheme;
export default MatrixTheme;

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

import { HIGLightTheme, MatrixTheme } from "./index";
import { HIGLightTheme, HIGDarkBlueTheme, MatrixTheme } from "./index";
[HIGLightTheme, MatrixTheme].forEach(theme => {
[HIGLightTheme, HIGDarkBlueTheme, MatrixTheme].forEach(theme => {
describe(`${theme}`, () => {

@@ -5,0 +5,0 @@ it("has a themeId", () => {

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