@paygreen/pgui 2.14.7 → 2.14.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/index.js +3 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +3 -3
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
package/dist/cjs/index.js
CHANGED
|
@@ -206,7 +206,7 @@ var ActionsButton = react.forwardRef(function (_a, ref) {
|
|
|
206
206
|
ActionsButton.displayName = 'ActionsButton';
|
|
207
207
|
|
|
208
208
|
var Card = function (props) {
|
|
209
|
-
var bgColor = react.useColorModeValue('white', '
|
|
209
|
+
var bgColor = react.useColorModeValue('white', 'whiteAlpha.50');
|
|
210
210
|
var borderColor = react.useColorModeValue('gray.100', 'gray.700');
|
|
211
211
|
return (React__default["default"].createElement(react.Card, __assign$2({ p: 6, backgroundColor: bgColor, borderWidth: "1px", borderStyle: "solid", borderColor: borderColor, h: "fit-content", w: "full" }, props)));
|
|
212
212
|
};
|
|
@@ -381,7 +381,7 @@ var DataListFooter = function (_a) {
|
|
|
381
381
|
var rest = __rest$2(_a, []);
|
|
382
382
|
return (React__default["default"].createElement(react.Box, { mt: "auto" },
|
|
383
383
|
React__default["default"].createElement(react.Flex, __assign$2({ fontSize: "sm", mt: "-1px", borderTop: "1px solid", p: "2", align: "center", bg: "white", borderTopColor: "gray.100", color: "gray.600", _dark: {
|
|
384
|
-
bg: '
|
|
384
|
+
bg: 'whiteAlpha.50',
|
|
385
385
|
color: 'gray.300',
|
|
386
386
|
borderTopColor: 'gray.900'
|
|
387
387
|
} }, rest))));
|
|
@@ -394,7 +394,7 @@ var DataList = function (_a) {
|
|
|
394
394
|
columns: columns,
|
|
395
395
|
isHover: isHover
|
|
396
396
|
} },
|
|
397
|
-
React__default["default"].createElement(react.Accordion, __assign$2({ border: "2px solid", borderBottom: "none", borderColor: react.useColorModeValue('gray.100', 'gray.700'), borderRadius: "md", display: "flex", flexDirection: "column", position: "relative", boxShadow: "md", overflow: "hidden", allowMultiple: !allowToggle ? allowMultiple : false, allowToggle: allowToggle, bg: react.useColorModeValue('white', '
|
|
397
|
+
React__default["default"].createElement(react.Accordion, __assign$2({ border: "2px solid", borderBottom: "none", borderColor: react.useColorModeValue('gray.100', 'gray.700'), borderRadius: "md", display: "flex", flexDirection: "column", position: "relative", boxShadow: "md", overflow: "hidden", allowMultiple: !allowToggle ? allowMultiple : false, allowToggle: allowToggle, bg: react.useColorModeValue('white', 'whiteAlpha.50') }, rest))));
|
|
398
398
|
};
|
|
399
399
|
|
|
400
400
|
var FormGroup = function (_a) {
|