@nulogy/components 10.2.12 → 10.2.13
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/main.js +16 -11
- package/dist/main.module.js +16 -11
- package/dist/src/Divider/Divider.d.ts +2 -3
- package/dist/src/Divider/Divider.story.d.ts +4 -2
- package/package.json +1 -1
package/dist/main.js
CHANGED
|
@@ -41794,17 +41794,22 @@
|
|
|
41794
41794
|
}, props)));
|
|
41795
41795
|
});
|
|
41796
41796
|
|
|
41797
|
-
var Divider$1 =
|
|
41798
|
-
|
|
41799
|
-
|
|
41800
|
-
|
|
41801
|
-
|
|
41802
|
-
|
|
41803
|
-
|
|
41804
|
-
|
|
41805
|
-
|
|
41806
|
-
|
|
41807
|
-
|
|
41797
|
+
var Divider$1 = styled__default["default"].div.withConfig({
|
|
41798
|
+
displayName: "Divider",
|
|
41799
|
+
componentId: "sc-1r789ib-0"
|
|
41800
|
+
})(function (_ref) {
|
|
41801
|
+
var theme = _ref.theme,
|
|
41802
|
+
color = _ref.color;
|
|
41803
|
+
return {
|
|
41804
|
+
display: "flex",
|
|
41805
|
+
marginTop: theme.space.x2,
|
|
41806
|
+
marginBottom: theme.space.x2,
|
|
41807
|
+
marginLeft: "0",
|
|
41808
|
+
marginRight: "0",
|
|
41809
|
+
borderBottom: "1px solid",
|
|
41810
|
+
borderColor: color ? color : theme.colors.lightGrey
|
|
41811
|
+
};
|
|
41812
|
+
}, addStyledProps);
|
|
41808
41813
|
|
|
41809
41814
|
var ApplicationFrame = function ApplicationFrame(_a) {
|
|
41810
41815
|
var navBar = _a.navBar,
|
package/dist/main.module.js
CHANGED
|
@@ -41777,17 +41777,22 @@ var DateRange = /*#__PURE__*/forwardRef(function (_a, ref) {
|
|
|
41777
41777
|
}, props)));
|
|
41778
41778
|
});
|
|
41779
41779
|
|
|
41780
|
-
var Divider$1 =
|
|
41781
|
-
|
|
41782
|
-
|
|
41783
|
-
|
|
41784
|
-
|
|
41785
|
-
|
|
41786
|
-
|
|
41787
|
-
|
|
41788
|
-
|
|
41789
|
-
|
|
41790
|
-
|
|
41780
|
+
var Divider$1 = styled.div.withConfig({
|
|
41781
|
+
displayName: "Divider",
|
|
41782
|
+
componentId: "sc-1r789ib-0"
|
|
41783
|
+
})(function (_ref) {
|
|
41784
|
+
var theme = _ref.theme,
|
|
41785
|
+
color = _ref.color;
|
|
41786
|
+
return {
|
|
41787
|
+
display: "flex",
|
|
41788
|
+
marginTop: theme.space.x2,
|
|
41789
|
+
marginBottom: theme.space.x2,
|
|
41790
|
+
marginLeft: "0",
|
|
41791
|
+
marginRight: "0",
|
|
41792
|
+
borderBottom: "1px solid",
|
|
41793
|
+
borderColor: color ? color : theme.colors.lightGrey
|
|
41794
|
+
};
|
|
41795
|
+
}, addStyledProps);
|
|
41791
41796
|
|
|
41792
41797
|
var ApplicationFrame = function ApplicationFrame(_a) {
|
|
41793
41798
|
var navBar = _a.navBar,
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
3
|
-
declare const Divider: ({ borderColor, ...props }: BoxProps) => React.JSX.Element;
|
|
1
|
+
import { StyledProps } from "../StyledProps";
|
|
2
|
+
declare const Divider: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, StyledProps, never>;
|
|
4
3
|
export default Divider;
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
declare const _default: {
|
|
3
3
|
title: string;
|
|
4
|
-
component: (
|
|
4
|
+
component: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, import("..").StyledProps, never>;
|
|
5
5
|
};
|
|
6
6
|
export default _default;
|
|
7
|
-
export declare const
|
|
7
|
+
export declare const Default: () => React.JSX.Element;
|
|
8
|
+
export declare const WithCustomColourAndSpacing: () => React.JSX.Element;
|
|
9
|
+
export declare const WithCustomProperties: () => React.JSX.Element;
|