@royaloperahouse/harmonic 0.11.0-f → 0.11.0-g
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/components/atoms/SectionSplitter/SectionSplitter.d.ts +1 -1
- package/dist/harmonic.cjs.development.js +6 -3
- package/dist/harmonic.cjs.development.js.map +1 -1
- package/dist/harmonic.cjs.production.min.js +1 -1
- package/dist/harmonic.cjs.production.min.js.map +1 -1
- package/dist/harmonic.esm.js +6 -3
- package/dist/harmonic.esm.js.map +1 -1
- package/dist/types/types.d.ts +3 -3
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { ISectionSplitterProps } from '../../../types/types';
|
|
3
|
-
declare const SectionSplitter: ({ fullWidth }: ISectionSplitterProps) => React.JSX.Element;
|
|
3
|
+
declare const SectionSplitter: ({ fullWidth, className }: ISectionSplitterProps) => React.JSX.Element;
|
|
4
4
|
export default SectionSplitter;
|
|
@@ -3539,12 +3539,15 @@ var SecondaryLogo = function SecondaryLogo(_ref) {
|
|
|
3539
3539
|
|
|
3540
3540
|
var _templateObject$h, _templateObject2$a;
|
|
3541
3541
|
var SectionSplitterContainer = /*#__PURE__*/styled__default(Grid)(_templateObject$h || (_templateObject$h = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n height: 4px;\n"])));
|
|
3542
|
-
var Splitter = /*#__PURE__*/styled__default.div(_templateObject2$a || (_templateObject2$a = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n width: 100%;\n height: 4px;\n background: var(--base-
|
|
3542
|
+
var Splitter = /*#__PURE__*/styled__default.div(_templateObject2$a || (_templateObject2$a = /*#__PURE__*/_taggedTemplateLiteralLoose(["\n width: 100%;\n height: 4px;\n background: var(--color-base-light-grey);\n"])));
|
|
3543
3543
|
|
|
3544
3544
|
var SectionSplitter = function SectionSplitter(_ref) {
|
|
3545
3545
|
var _ref$fullWidth = _ref.fullWidth,
|
|
3546
|
-
fullWidth = _ref$fullWidth === void 0 ? true : _ref$fullWidth
|
|
3547
|
-
|
|
3546
|
+
fullWidth = _ref$fullWidth === void 0 ? true : _ref$fullWidth,
|
|
3547
|
+
className = _ref.className;
|
|
3548
|
+
return /*#__PURE__*/React__default.createElement(SectionSplitterContainer, {
|
|
3549
|
+
className: className
|
|
3550
|
+
}, fullWidth ? (/*#__PURE__*/React__default.createElement(GridItem, {
|
|
3548
3551
|
columnStartDesktop: 1,
|
|
3549
3552
|
columnSpanDesktop: 16,
|
|
3550
3553
|
columnStartDevice: 1,
|