Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@indoqa/ui-explorer

Package Overview
Dependencies
Maintainers
4
Versions
42
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@indoqa/ui-explorer - npm Package Compare versions

Comparing version 1.4.0 to 1.4.1-alpha.0

dist/indoqa-ui-explorer.cjs.js.map

5

CHANGELOG.md

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

# v1.4.0 | TBA
# v1.5.0 | TBA
* improve menu styling by increasing the padding bottom of menu items and headers
# v1.4.0 | 2020-01-26
* add UI theme property 'bgContentHeading'

@@ -3,0 +6,0 @@ * add UI theme properties to style the scrollbars

27

dist/indoqa-ui-explorer.cjs.js

@@ -12,12 +12,12 @@ 'use strict';

/*! *****************************************************************************
Copyright (c) Microsoft Corporation. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
this file except in compliance with the License. You may obtain a copy of the
License at http://www.apache.org/licenses/LICENSE-2.0
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
MERCHANTABLITY OR NON-INFRINGEMENT.
See the Apache Version 2.0 License for specific language governing permissions
and limitations under the License.
Copyright (c) Microsoft Corporation.
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
PERFORMANCE OF THIS SOFTWARE.
***************************************************************************** */

@@ -27,3 +27,3 @@ var extendStatics = function(d, b) {

({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
return extendStatics(d, b);

@@ -307,3 +307,3 @@ };

margin: 0,
paddingBottom: uieTheme.spacing.space1,
paddingBottom: '0.4rem',
marginBottom: uieTheme.spacing.space0,

@@ -360,3 +360,3 @@ color: uieTheme.colors.textMenuHeading,

var style = {
paddingBottom: '0.15rem',
paddingBottom: '0.1rem',
marginLeft: 0,

@@ -791,1 +791,2 @@ paddingLeft: 0,

exports.uieLightTheme = uieLightTheme;
//# sourceMappingURL=indoqa-ui-explorer.cjs.js.map

@@ -8,12 +8,12 @@ import { Box, Flex, Grid, Row, Panel, withRenderer } from '@indoqa/style-system';

/*! *****************************************************************************
Copyright (c) Microsoft Corporation. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
this file except in compliance with the License. You may obtain a copy of the
License at http://www.apache.org/licenses/LICENSE-2.0
THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
MERCHANTABLITY OR NON-INFRINGEMENT.
See the Apache Version 2.0 License for specific language governing permissions
and limitations under the License.
Copyright (c) Microsoft Corporation.
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
PERFORMANCE OF THIS SOFTWARE.
***************************************************************************** */

@@ -23,3 +23,3 @@ var extendStatics = function(d, b) {

({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
return extendStatics(d, b);

@@ -303,3 +303,3 @@ };

margin: 0,
paddingBottom: uieTheme.spacing.space1,
paddingBottom: '0.4rem',
marginBottom: uieTheme.spacing.space0,

@@ -356,3 +356,3 @@ color: uieTheme.colors.textMenuHeading,

var style = {
paddingBottom: '0.15rem',
paddingBottom: '0.1rem',
marginLeft: 0,

@@ -784,1 +784,2 @@ paddingLeft: 0,

export { UIExplorer, uieColors, uieFontFamilies, uieLightTheme };
//# sourceMappingURL=indoqa-ui-explorer.es.js.map
import * as React from 'react';
export declare const testGridContext: (spacing: string | number, child: React.ReactNode) => {} | null | undefined;
import { Spacing } from './GridContext';
export declare const testGridContext: (spacing: Spacing, child: React.ReactNode) => {} | null | undefined;

@@ -7,3 +7,3 @@ import { IStyle } from 'fela';

export declare const THEME_NOT_AVAILABLE_ERR_MSG: string;
export declare const addUnitIfNeeded: (value: any, propertyUnit?: string | undefined) => string;
export declare const addUnitIfNeeded: (value: any | string, propertyUnit?: string | undefined) => string;
export declare function getPropsByBreakpoint(props: any, breakpoints: NamedBreakPoint[]): any[];

@@ -10,0 +10,0 @@ export declare type ResponsiveStyleFunction<T extends BaseTheme> = (props: any, theme: T, outsideMediaQuery: boolean) => IStyle;

{
"name": "@indoqa/ui-explorer",
"version": "1.4.0",
"version": "1.4.1-alpha.0",
"author": "Indoqa Software Design und Beratung GmbH (https://www.indoqa.com)",

@@ -39,11 +39,11 @@ "description": "A React component to showcase isolated React components and an Indoqa Style-System based theme",

"dependencies": {
"@indoqa/style-system": "^1.4.0",
"fela": "^11.0.2",
"react": "^16.12.0",
"react-fela": "^11.0.2",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"tslib": "^1.10.0"
"@indoqa/style-system": "^1.4.1-alpha.0",
"fela": "^11.4.0",
"react": "^17.0.1",
"react-fela": "^11.4.0",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"tslib": "^2.0.3"
},
"gitHead": "344129098c410c5160358824c5757a83d959197b"
"gitHead": "3c76f0e4f0c290eee0ca8890455d9c09bc56b2c9"
}
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