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

@chakra-ui/theme

Package Overview
Dependencies
Maintainers
4
Versions
655
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@chakra-ui/theme - npm Package Compare versions

Comparing version 1.2.0 to 1.2.1

dist/cjs/components/table.js

10

CHANGELOG.md
# Change Log
## 1.2.1
### Patch Changes
- [`72bbd0db`](https://github.com/chakra-ui/chakra-ui/commit/72bbd0dbb913ba38ee2b9191d12bf73713ae4398)
[#2708](https://github.com/chakra-ui/chakra-ui/pull/2708) Thanks
[@TimKolberger](https://github.com/TimKolberger)! - Resolved an issue where
`DrawerCloseButton` was not receiving its base styles when it was passed other
styles through the `__css` property, breaking the button's positioning.
## 1.2.0

@@ -4,0 +14,0 @@

@@ -66,2 +66,7 @@ "use strict";

};
var baseStyleCloseButton = {
position: "absolute",
top: 2,
right: 3
};
var baseStyleBody = {

@@ -84,2 +89,3 @@ px: 6,

header: baseStyleHeader,
closeButton: baseStyleCloseButton,
body: baseStyleBody,

@@ -86,0 +92,0 @@ footer: baseStyleFooter

3

dist/cjs/components/index.js

@@ -74,2 +74,4 @@ "use strict";

var _table = _interopRequireDefault(require("./table"));
var _tabs = _interopRequireDefault(require("./tabs"));

@@ -122,2 +124,3 @@

Switch: _switch["default"],
Table: _table["default"],
Tabs: _tabs["default"],

@@ -124,0 +127,0 @@ Tag: _tag["default"],

@@ -59,2 +59,7 @@ function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }

};
var baseStyleCloseButton = {
position: "absolute",
top: 2,
right: 3
};
var baseStyleBody = {

@@ -76,2 +81,3 @@ px: 6,

header: baseStyleHeader,
closeButton: baseStyleCloseButton,
body: baseStyleBody,

@@ -78,0 +84,0 @@ footer: baseStyleFooter

@@ -35,2 +35,3 @@ import Accordion from "./accordion";

import Switch from "./switch";
import Table from "./table";
import Tabs from "./tabs";

@@ -76,2 +77,3 @@ import Tag from "./tag";

Switch,
Table,
Tabs,

@@ -78,0 +80,0 @@ Tag,

16

dist/esm/components/menu.js

@@ -55,11 +55,9 @@ import { mode } from "@chakra-ui/theme-tools";

var baseStyle = props => {
return {
list: baseStyleList(props),
item: baseStyleItem(props),
groupTitle: baseStyleGroupTitle,
command: baseStyleCommand,
divider: baseStyleDivider
};
};
var baseStyle = props => ({
list: baseStyleList(props),
item: baseStyleItem(props),
groupTitle: baseStyleGroupTitle,
command: baseStyleCommand,
divider: baseStyleDivider
});

@@ -66,0 +64,0 @@ export default {

@@ -30,9 +30,7 @@ var _Input$baseStyle;

var baseStyle = props => {
return {
field: baseStyleField,
stepperGroup: baseStyleStepperGroup,
stepper: baseStyleStepper(props)
};
};
var baseStyle = props => ({
field: baseStyleField,
stepperGroup: baseStyleStepperGroup,
stepper: baseStyleStepper(props)
});

@@ -39,0 +37,0 @@ function getSize(size) {

@@ -45,12 +45,10 @@ import { mode } from "@chakra-ui/theme-tools";

var baseStyle = props => {
return {
popper: baseStylePopper,
content: baseStyleContent(props),
header: baseStyleHeader,
body: baseStyleBody,
footer: baseStyleFooter,
arrow: baseStyleArrow(props)
};
};
var baseStyle = props => ({
popper: baseStylePopper,
content: baseStyleContent(props),
header: baseStyleHeader,
body: baseStyleBody,
footer: baseStyleFooter,
arrow: baseStyleArrow(props)
});

@@ -57,0 +55,0 @@ export default {

@@ -43,9 +43,7 @@ function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }

var baseStyle = props => {
return {
label: baseStyleLabel,
filledTrack: baseStyleFilledTrack(props),
track: baseStyleTrack(props)
};
};
var baseStyle = props => ({
label: baseStyleLabel,
filledTrack: baseStyleFilledTrack(props),
track: baseStyleTrack(props)
});

@@ -52,0 +50,0 @@ var sizes = {

@@ -26,8 +26,6 @@ function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }

var baseStyle = props => {
return {
label: Checkbox.baseStyle(props).label,
control: baseStyleControl(props)
};
};
var baseStyle = props => ({
label: Checkbox.baseStyle(props).label,
control: baseStyleControl(props)
});

@@ -34,0 +32,0 @@ var sizes = {

import { keyframes } from "@chakra-ui/system";
import { getColor, mode } from "@chakra-ui/theme-tools";
var fade = (startColor, endColor) => {
return keyframes({
from: {
borderColor: startColor,
background: startColor
},
to: {
borderColor: endColor,
background: endColor
}
});
};
var fade = (startColor, endColor) => keyframes({
from: {
borderColor: startColor,
background: startColor
},
to: {
borderColor: endColor,
background: endColor
}
});

@@ -17,0 +15,0 @@ var baseStyle = props => {

import { mode } from "@chakra-ui/theme-tools";
var baseStyle = props => {
return {
borderRadius: "md",
fontWeight: "semibold",
_focus: {
boxShadow: "outline",
padding: "1rem",
position: "fixed",
top: "1.5rem",
left: "1.5rem",
bg: mode("white", "gray.700")(props)
}
};
};
var baseStyle = props => ({
borderRadius: "md",
fontWeight: "semibold",
_focus: {
boxShadow: "outline",
padding: "1rem",
position: "fixed",
top: "1.5rem",
left: "1.5rem",
bg: mode("white", "gray.700")(props)
}
});

@@ -18,0 +16,0 @@ export default {

@@ -47,10 +47,8 @@ import { getColor, mode } from "@chakra-ui/theme-tools";

var baseStyle = props => {
return {
root: baseStyleRoot(props),
tab: baseStyleTab(props),
tablist: baseStyleTablist(props),
tabpanel: baseStyleTabpanel
};
};
var baseStyle = props => ({
root: baseStyleRoot(props),
tab: baseStyleTab(props),
tablist: baseStyleTablist(props),
tabpanel: baseStyleTabpanel
});

@@ -57,0 +55,0 @@ var sizes = {

@@ -20,2 +20,7 @@ declare const _default: {

};
closeButton: {
position: string;
top: number;
right: number;
};
body: {

@@ -22,0 +27,0 @@ px: number;

{
"name": "@chakra-ui/theme",
"version": "1.2.0",
"version": "1.2.1",
"description": "The default theme for chakra components",

@@ -59,4 +59,4 @@ "keywords": [

"devDependencies": {
"@chakra-ui/system": "1.0.1"
"@chakra-ui/system": "1.0.2"
}
}

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

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

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