@primer/styled-react 0.0.0-20251205154953 → 0.0.0-20251205165836
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/ActionList.js +145 -89
- package/dist/components/ActionMenu.js +15 -15
- package/dist/components/Autocomplete.js +20 -18
- package/dist/components/Avatar.js +11 -13
- package/dist/components/BaseStyles.js +47 -28
- package/dist/components/Box.js +10 -18
- package/dist/components/Breadcrumbs.js +32 -22
- package/dist/components/Button.js +105 -41
- package/dist/components/Checkbox.js +12 -14
- package/dist/components/CheckboxGroup.js +36 -34
- package/dist/components/CircleBadge.js +10 -10
- package/dist/components/CounterLabel.js +11 -13
- package/dist/components/DataTable.js +27 -19
- package/dist/components/Dialog.js +79 -53
- package/dist/components/Flash.js +9 -9
- package/dist/components/FormControl.js +15 -15
- package/dist/components/Header.js +44 -36
- package/dist/components/Heading.js +9 -9
- package/dist/components/IconButton.js +36 -23
- package/dist/components/Label.js +22 -17
- package/dist/components/Link.js +22 -17
- package/dist/components/LinkButton.js +9 -9
- package/dist/components/NavList.js +65 -46
- package/dist/components/Overlay.js +9 -9
- package/dist/components/PageHeader.js +100 -62
- package/dist/components/RadioGroup.js +36 -34
- package/dist/components/RelativeTime.js +11 -11
- package/dist/components/SegmentedControl.js +25 -27
- package/dist/components/Select.js +20 -15
- package/dist/components/Spinner.js +9 -9
- package/dist/components/StateLabel.js +11 -13
- package/dist/components/SubNav.js +21 -23
- package/dist/components/Text.js +22 -17
- package/dist/components/TextInput.js +32 -25
- package/dist/components/Textarea.js +22 -17
- package/dist/components/ThemeProvider.js +185 -132
- package/dist/components/Timeline.js +38 -40
- package/dist/components/ToggleSwitch.js +11 -13
- package/dist/components/Token.js +22 -17
- package/dist/components/Tooltip.js +12 -14
- package/dist/components/Truncate.js +9 -9
- package/dist/components/UnderlineNav.js +39 -27
- package/dist/components/UnderlinePanels.js +23 -18
- package/dist/components/deprecated/ActionList.js +39 -34
- package/dist/components/deprecated/DialogV1.js +38 -28
- package/dist/components/deprecated/Octicon.js +35 -28
- package/dist/components/deprecated/TabNav.js +38 -24
- package/dist/components/deprecated/Tooltip.js +28 -20
- package/dist/deprecated.d.ts +5 -75
- package/dist/deprecated.d.ts.map +1 -1
- package/dist/deprecated.js +5 -7
- package/dist/experimental.d.ts +5 -120
- package/dist/experimental.d.ts.map +1 -1
- package/dist/experimental.js +5 -7
- package/dist/index.d.ts +47 -582
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +46 -48
- package/dist/sx.js +6 -7
- package/dist/theme-get.js +8 -8
- package/package.json +4 -7
|
@@ -1,44 +1,52 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import
|
|
4
|
-
import { jsx } from
|
|
1
|
+
import { Header as Header$1 } from '@primer/react';
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
import Box from './Box.js';
|
|
4
|
+
import { jsx } from 'react/jsx-runtime';
|
|
5
5
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
});
|
|
6
|
+
const StyledHeader = /*#__PURE__*/forwardRef(function Header(props, ref) {
|
|
7
|
+
return /*#__PURE__*/jsx(Box, {
|
|
8
|
+
as: Header$1,
|
|
9
|
+
ref: ref,
|
|
10
|
+
...props
|
|
11
|
+
});
|
|
13
12
|
});
|
|
14
|
-
const HeaderImpl =
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
13
|
+
const HeaderImpl = /*#__PURE__*/forwardRef(({
|
|
14
|
+
as,
|
|
15
|
+
...props
|
|
16
|
+
}, ref) => /*#__PURE__*/jsx(StyledHeader, {
|
|
17
|
+
...props,
|
|
18
|
+
...(as ? {
|
|
19
|
+
forwardedAs: as
|
|
20
|
+
} : {}),
|
|
21
|
+
ref: ref
|
|
18
22
|
}));
|
|
19
|
-
const HeaderItem =
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
23
|
+
const HeaderItem = /*#__PURE__*/forwardRef(function HeaderItem(props, ref) {
|
|
24
|
+
return /*#__PURE__*/jsx(Box, {
|
|
25
|
+
as: Header$1.Item,
|
|
26
|
+
ref: ref,
|
|
27
|
+
...props
|
|
28
|
+
});
|
|
25
29
|
});
|
|
26
|
-
const StyledHeaderLink =
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
30
|
+
const StyledHeaderLink = /*#__PURE__*/forwardRef(function HeaderLink(props, ref) {
|
|
31
|
+
return /*#__PURE__*/jsx(Box, {
|
|
32
|
+
as: Header$1.Link,
|
|
33
|
+
ref: ref,
|
|
34
|
+
...props
|
|
35
|
+
});
|
|
32
36
|
});
|
|
33
|
-
const HeaderLink =
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
+
const HeaderLink = /*#__PURE__*/forwardRef(({
|
|
38
|
+
as,
|
|
39
|
+
...props
|
|
40
|
+
}, ref) => /*#__PURE__*/jsx(StyledHeaderLink, {
|
|
41
|
+
...props,
|
|
42
|
+
...(as ? {
|
|
43
|
+
forwardedAs: as
|
|
44
|
+
} : {}),
|
|
45
|
+
ref: ref
|
|
37
46
|
}));
|
|
38
|
-
const Header
|
|
39
|
-
|
|
40
|
-
|
|
47
|
+
const Header = Object.assign(HeaderImpl, {
|
|
48
|
+
Item: HeaderItem,
|
|
49
|
+
Link: HeaderLink
|
|
41
50
|
});
|
|
42
51
|
|
|
43
|
-
|
|
44
|
-
export { Header$1 as Header };
|
|
52
|
+
export { Header };
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import
|
|
3
|
-
import
|
|
1
|
+
import { Heading as Heading$1 } from '@primer/react';
|
|
2
|
+
import sx from '../sx.js';
|
|
3
|
+
import styled from 'styled-components';
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
5
|
+
const Heading = styled(Heading$1).withConfig({
|
|
6
|
+
shouldForwardProp: prop => prop !== 'sx'
|
|
7
|
+
}).withConfig({
|
|
8
|
+
displayName: "Heading",
|
|
9
|
+
componentId: "sc-1vc165i-0"
|
|
9
10
|
})(["", ""], sx);
|
|
10
11
|
|
|
11
|
-
|
|
12
|
-
export { Heading$1 as Heading };
|
|
12
|
+
export { Heading };
|
|
@@ -1,27 +1,40 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { generateCustomSxProp } from
|
|
3
|
-
import
|
|
4
|
-
import
|
|
5
|
-
import
|
|
6
|
-
import { jsx } from
|
|
1
|
+
import { IconButton as IconButton$1 } from '@primer/react';
|
|
2
|
+
import { generateCustomSxProp } from './Button.js';
|
|
3
|
+
import { forwardRef } from 'react';
|
|
4
|
+
import styled from 'styled-components';
|
|
5
|
+
import sx from '../sx.js';
|
|
6
|
+
import { jsx } from 'react/jsx-runtime';
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
8
|
+
const StyledIconButton = styled(IconButton$1).withConfig({
|
|
9
|
+
shouldForwardProp: prop => prop !== 'sx'
|
|
10
|
+
}).withConfig({
|
|
11
|
+
displayName: "IconButton__StyledIconButton",
|
|
12
|
+
componentId: "sc-i53dt6-0"
|
|
12
13
|
})(["", ""], sx);
|
|
13
|
-
const IconButton
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
14
|
+
const IconButton = /*#__PURE__*/forwardRef(({
|
|
15
|
+
as,
|
|
16
|
+
sx,
|
|
17
|
+
...props
|
|
18
|
+
}, ref) => {
|
|
19
|
+
let sxStyles = sx;
|
|
20
|
+
// grap the button props that have associated data attributes in the styles
|
|
21
|
+
const {
|
|
22
|
+
size = 'medium'
|
|
23
|
+
} = props;
|
|
24
|
+
if (sx !== null && sx !== undefined && Object.keys(sx).length > 0) {
|
|
25
|
+
sxStyles = generateCustomSxProp({
|
|
26
|
+
size
|
|
27
|
+
}, sx);
|
|
28
|
+
}
|
|
29
|
+
return /*#__PURE__*/jsx(StyledIconButton, {
|
|
30
|
+
sx: sxStyles,
|
|
31
|
+
...props,
|
|
32
|
+
...(as ? {
|
|
33
|
+
forwardedAs: as
|
|
34
|
+
} : {}),
|
|
35
|
+
ref: ref
|
|
36
|
+
});
|
|
23
37
|
});
|
|
24
|
-
IconButton
|
|
38
|
+
IconButton.__SLOT__ = IconButton$1.__SLOT__;
|
|
25
39
|
|
|
26
|
-
|
|
27
|
-
export { IconButton$1 as IconButton };
|
|
40
|
+
export { IconButton };
|
package/dist/components/Label.js
CHANGED
|
@@ -1,21 +1,26 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import
|
|
3
|
-
import {
|
|
4
|
-
import
|
|
5
|
-
import { jsx } from
|
|
1
|
+
import { Label as Label$1 } from '@primer/react';
|
|
2
|
+
import sx from '../sx.js';
|
|
3
|
+
import { forwardRef } from 'react';
|
|
4
|
+
import styled from 'styled-components';
|
|
5
|
+
import { jsx } from 'react/jsx-runtime';
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
7
|
+
const StyledLabel = styled(Label$1).withConfig({
|
|
8
|
+
shouldForwardProp: prop => prop !== 'sx'
|
|
9
|
+
}).withConfig({
|
|
10
|
+
displayName: "Label__StyledLabel",
|
|
11
|
+
componentId: "sc-1cpass9-0"
|
|
11
12
|
})(["", ""], sx);
|
|
12
|
-
const Label
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
13
|
+
const Label = /*#__PURE__*/forwardRef(({
|
|
14
|
+
as,
|
|
15
|
+
...props
|
|
16
|
+
}, ref) => {
|
|
17
|
+
return /*#__PURE__*/jsx(StyledLabel, {
|
|
18
|
+
...props,
|
|
19
|
+
...(as ? {
|
|
20
|
+
forwardedAs: as
|
|
21
|
+
} : {}),
|
|
22
|
+
ref: ref
|
|
23
|
+
});
|
|
18
24
|
});
|
|
19
25
|
|
|
20
|
-
|
|
21
|
-
export { Label$1 as Label };
|
|
26
|
+
export { Label };
|
package/dist/components/Link.js
CHANGED
|
@@ -1,21 +1,26 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import styled from
|
|
3
|
-
import
|
|
4
|
-
import { forwardRef } from
|
|
5
|
-
import { jsx } from
|
|
1
|
+
import { Link as Link$1 } from '@primer/react';
|
|
2
|
+
import styled from 'styled-components';
|
|
3
|
+
import sx from '../sx.js';
|
|
4
|
+
import { forwardRef } from 'react';
|
|
5
|
+
import { jsx } from 'react/jsx-runtime';
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
7
|
+
const StyledLink = styled(Link$1).withConfig({
|
|
8
|
+
shouldForwardProp: prop => prop !== 'sx'
|
|
9
|
+
}).withConfig({
|
|
10
|
+
displayName: "Link__StyledLink",
|
|
11
|
+
componentId: "sc-1syctfj-0"
|
|
11
12
|
})(["", ""], sx);
|
|
12
|
-
const Link
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
13
|
+
const Link = /*#__PURE__*/forwardRef(({
|
|
14
|
+
as,
|
|
15
|
+
...props
|
|
16
|
+
}, ref) => {
|
|
17
|
+
return /*#__PURE__*/jsx(StyledLink, {
|
|
18
|
+
...props,
|
|
19
|
+
...(as ? {
|
|
20
|
+
forwardedAs: as
|
|
21
|
+
} : {}),
|
|
22
|
+
ref: ref
|
|
23
|
+
});
|
|
18
24
|
});
|
|
19
25
|
|
|
20
|
-
|
|
21
|
-
export { Link$1 as Link };
|
|
26
|
+
export { Link };
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import styled from
|
|
3
|
-
import
|
|
1
|
+
import { LinkButton as LinkButton$1 } from '@primer/react';
|
|
2
|
+
import styled from 'styled-components';
|
|
3
|
+
import sx from '../sx.js';
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
5
|
+
const LinkButton = styled(LinkButton$1).withConfig({
|
|
6
|
+
shouldForwardProp: prop => prop !== 'sx'
|
|
7
|
+
}).withConfig({
|
|
8
|
+
displayName: "LinkButton",
|
|
9
|
+
componentId: "sc-1v6zkmg-0"
|
|
9
10
|
})(["", ""], sx);
|
|
10
11
|
|
|
11
|
-
|
|
12
|
-
export { LinkButton$1 as LinkButton };
|
|
12
|
+
export { LinkButton };
|
|
@@ -1,55 +1,74 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import
|
|
3
|
-
import
|
|
4
|
-
import
|
|
5
|
-
import { jsx } from
|
|
1
|
+
import { NavList as NavList$1 } from '@primer/react';
|
|
2
|
+
import { forwardRef } from 'react';
|
|
3
|
+
import styled from 'styled-components';
|
|
4
|
+
import sx from '../sx.js';
|
|
5
|
+
import { jsx } from 'react/jsx-runtime';
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
7
|
+
const StyledNavListImpl = styled(NavList$1).withConfig({
|
|
8
|
+
shouldForwardProp: prop => prop !== 'sx'
|
|
9
|
+
}).withConfig({
|
|
10
|
+
displayName: "NavList__StyledNavListImpl",
|
|
11
|
+
componentId: "sc-86jrwg-0"
|
|
11
12
|
})(["", ""], sx);
|
|
12
|
-
const NavListImpl =
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
13
|
+
const NavListImpl = /*#__PURE__*/forwardRef(function NavList({
|
|
14
|
+
as,
|
|
15
|
+
...props
|
|
16
|
+
}, ref) {
|
|
17
|
+
return /*#__PURE__*/jsx(StyledNavListImpl, {
|
|
18
|
+
ref: ref,
|
|
19
|
+
...(as ? {
|
|
20
|
+
forwardedAs: as
|
|
21
|
+
} : {}),
|
|
22
|
+
...props
|
|
23
|
+
});
|
|
18
24
|
});
|
|
19
|
-
const StyledNavListItem = styled(NavList.Item).withConfig({
|
|
20
|
-
|
|
21
|
-
|
|
25
|
+
const StyledNavListItem = styled(NavList$1.Item).withConfig({
|
|
26
|
+
shouldForwardProp: prop => prop !== 'sx'
|
|
27
|
+
}).withConfig({
|
|
28
|
+
displayName: "NavList__StyledNavListItem",
|
|
29
|
+
componentId: "sc-86jrwg-1"
|
|
22
30
|
})(["", ""], sx);
|
|
23
|
-
const NavListItem =
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
31
|
+
const NavListItem = /*#__PURE__*/forwardRef(({
|
|
32
|
+
as,
|
|
33
|
+
...props
|
|
34
|
+
}, ref) => {
|
|
35
|
+
return /*#__PURE__*/jsx(StyledNavListItem, {
|
|
36
|
+
...props,
|
|
37
|
+
...(as ? {
|
|
38
|
+
forwardedAs: as
|
|
39
|
+
} : {}),
|
|
40
|
+
ref: ref
|
|
41
|
+
});
|
|
29
42
|
});
|
|
30
|
-
const StyledNavListLeadingVisual = styled(NavList.LeadingVisual).withConfig({
|
|
31
|
-
|
|
32
|
-
|
|
43
|
+
const StyledNavListLeadingVisual = styled(NavList$1.LeadingVisual).withConfig({
|
|
44
|
+
shouldForwardProp: prop => prop !== 'sx'
|
|
45
|
+
}).withConfig({
|
|
46
|
+
displayName: "NavList__StyledNavListLeadingVisual",
|
|
47
|
+
componentId: "sc-86jrwg-2"
|
|
33
48
|
})(["", ""], sx);
|
|
34
|
-
const NavListLeadingVisual =
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
49
|
+
const NavListLeadingVisual = /*#__PURE__*/forwardRef(({
|
|
50
|
+
as,
|
|
51
|
+
...props
|
|
52
|
+
}, ref) => {
|
|
53
|
+
return /*#__PURE__*/jsx(StyledNavListLeadingVisual, {
|
|
54
|
+
...props,
|
|
55
|
+
...(as ? {
|
|
56
|
+
forwardedAs: as
|
|
57
|
+
} : {}),
|
|
58
|
+
ref: ref
|
|
59
|
+
});
|
|
40
60
|
});
|
|
41
|
-
NavListLeadingVisual.__SLOT__ = NavList.LeadingVisual.__SLOT__;
|
|
42
|
-
const NavList
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
61
|
+
NavListLeadingVisual.__SLOT__ = NavList$1.LeadingVisual.__SLOT__;
|
|
62
|
+
const NavList = Object.assign(NavListImpl, {
|
|
63
|
+
Item: NavListItem,
|
|
64
|
+
Group: NavList$1.Group,
|
|
65
|
+
GroupHeading: NavList$1.GroupHeading,
|
|
66
|
+
LeadingVisual: NavListLeadingVisual,
|
|
67
|
+
SubNav: NavList$1.SubNav,
|
|
68
|
+
Divider: NavList$1.Divider,
|
|
69
|
+
TrailingVisual: NavList$1.TrailingVisual,
|
|
70
|
+
TrailingAction: NavList$1.TrailingAction,
|
|
71
|
+
GroupExpand: NavList$1.GroupExpand
|
|
52
72
|
});
|
|
53
73
|
|
|
54
|
-
|
|
55
|
-
export { NavList$1 as NavList };
|
|
74
|
+
export { NavList };
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import styled from
|
|
3
|
-
import
|
|
1
|
+
import { Overlay as Overlay$1 } from '@primer/react';
|
|
2
|
+
import styled from 'styled-components';
|
|
3
|
+
import sx from '../sx.js';
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
5
|
+
const Overlay = styled(Overlay$1).withConfig({
|
|
6
|
+
shouldForwardProp: prop => prop !== 'sx'
|
|
7
|
+
}).withConfig({
|
|
8
|
+
displayName: "Overlay",
|
|
9
|
+
componentId: "sc-tjbd74-0"
|
|
9
10
|
})(["", ""], sx);
|
|
10
11
|
|
|
11
|
-
|
|
12
|
-
export { Overlay$1 as Overlay };
|
|
12
|
+
export { Overlay };
|
|
@@ -1,71 +1,109 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import
|
|
3
|
-
import
|
|
4
|
-
import
|
|
5
|
-
import React from
|
|
6
|
-
import { jsx } from
|
|
1
|
+
import { PageHeader as PageHeader$1 } from '@primer/react';
|
|
2
|
+
import styled from 'styled-components';
|
|
3
|
+
import sx from '../sx.js';
|
|
4
|
+
import Box from './Box.js';
|
|
5
|
+
import React from 'react';
|
|
6
|
+
import { jsx } from 'react/jsx-runtime';
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
8
|
+
const StyledPageHeader = styled(PageHeader$1).withConfig({
|
|
9
|
+
shouldForwardProp: prop => prop !== 'sx'
|
|
10
|
+
}).withConfig({
|
|
11
|
+
displayName: "PageHeader__StyledPageHeader",
|
|
12
|
+
componentId: "sc-1g9symn-0"
|
|
12
13
|
})(["", ""], sx);
|
|
13
|
-
const PageHeaderImpl =
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
14
|
+
const PageHeaderImpl = /*#__PURE__*/React.forwardRef(({
|
|
15
|
+
as,
|
|
16
|
+
...props
|
|
17
|
+
}, ref) => /*#__PURE__*/jsx(StyledPageHeader, {
|
|
18
|
+
...props,
|
|
19
|
+
...(as ? {
|
|
20
|
+
forwardedAs: as
|
|
21
|
+
} : {}),
|
|
22
|
+
ref: ref
|
|
17
23
|
}));
|
|
18
|
-
function PageHeaderActions({
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
24
|
+
function PageHeaderActions({
|
|
25
|
+
sx,
|
|
26
|
+
...rest
|
|
27
|
+
}) {
|
|
28
|
+
const style = {};
|
|
29
|
+
if (sx) {
|
|
30
|
+
// @ts-ignore sx has height attribute
|
|
31
|
+
const {
|
|
32
|
+
height
|
|
33
|
+
} = sx;
|
|
34
|
+
if (height) {
|
|
35
|
+
style['--custom-height'] = height;
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
// @ts-expect-error type mismatch between Box usage here and PrimerPageHeader.Actions
|
|
40
|
+
return /*#__PURE__*/jsx(Box, {
|
|
41
|
+
...rest,
|
|
42
|
+
as: PageHeader$1.Actions,
|
|
43
|
+
style: style,
|
|
44
|
+
sx: sx
|
|
45
|
+
});
|
|
30
46
|
}
|
|
31
|
-
function StyledPageHeaderTitle({
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
47
|
+
function StyledPageHeaderTitle({
|
|
48
|
+
sx,
|
|
49
|
+
...rest
|
|
50
|
+
}) {
|
|
51
|
+
const style = {};
|
|
52
|
+
if (sx) {
|
|
53
|
+
// @ts-ignore sx can have color attribute
|
|
54
|
+
const {
|
|
55
|
+
fontSize,
|
|
56
|
+
lineHeight,
|
|
57
|
+
fontWeight
|
|
58
|
+
} = sx;
|
|
59
|
+
if (fontSize) {
|
|
60
|
+
style['--custom-font-size'] = fontSize;
|
|
61
|
+
}
|
|
62
|
+
if (lineHeight) {
|
|
63
|
+
style['--custom-line-height'] = lineHeight;
|
|
64
|
+
}
|
|
65
|
+
if (fontWeight) {
|
|
66
|
+
style['--custom-font-weight'] = fontWeight;
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
// @ts-expect-error type mismatch between Box usage here and PrimerPageHeader.Title
|
|
71
|
+
return /*#__PURE__*/jsx(Box, {
|
|
72
|
+
...rest,
|
|
73
|
+
as: PageHeader$1.Title,
|
|
74
|
+
style: style,
|
|
75
|
+
sx: sx
|
|
76
|
+
});
|
|
45
77
|
}
|
|
46
|
-
const PageHeaderTitle = ({
|
|
47
|
-
|
|
48
|
-
|
|
78
|
+
const PageHeaderTitle = ({
|
|
79
|
+
as,
|
|
80
|
+
...props
|
|
81
|
+
}) => /*#__PURE__*/jsx(StyledPageHeaderTitle, {
|
|
82
|
+
...props,
|
|
83
|
+
...(as ? {
|
|
84
|
+
forwardedAs: as
|
|
85
|
+
} : {})
|
|
49
86
|
});
|
|
50
|
-
const PageHeaderTitleArea = styled(PageHeader.TitleArea).withConfig({
|
|
51
|
-
|
|
52
|
-
|
|
87
|
+
const PageHeaderTitleArea = styled(PageHeader$1.TitleArea).withConfig({
|
|
88
|
+
shouldForwardProp: prop => prop !== 'sx'
|
|
89
|
+
}).withConfig({
|
|
90
|
+
displayName: "PageHeader__PageHeaderTitleArea",
|
|
91
|
+
componentId: "sc-1g9symn-1"
|
|
53
92
|
})(["", ""], sx);
|
|
54
|
-
const PageHeader
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
93
|
+
const PageHeader = Object.assign(PageHeaderImpl, {
|
|
94
|
+
Actions: PageHeaderActions,
|
|
95
|
+
ContextArea: PageHeader$1.ContextArea,
|
|
96
|
+
ParentLink: PageHeader$1.ParentLink,
|
|
97
|
+
ContextBar: PageHeader$1.ContextBar,
|
|
98
|
+
TitleArea: PageHeaderTitleArea,
|
|
99
|
+
ContextAreaActions: PageHeader$1.ContextAreaActions,
|
|
100
|
+
LeadingAction: PageHeader$1.LeadingAction,
|
|
101
|
+
Breadcrumbs: PageHeader$1.Breadcrumbs,
|
|
102
|
+
LeadingVisual: PageHeader$1.LeadingVisual,
|
|
103
|
+
Title: PageHeaderTitle,
|
|
104
|
+
TrailingVisual: PageHeader$1.TrailingVisual,
|
|
105
|
+
Description: PageHeader$1.Description,
|
|
106
|
+
TrailingAction: PageHeader$1.TrailingAction
|
|
68
107
|
});
|
|
69
108
|
|
|
70
|
-
|
|
71
|
-
export { PageHeader$1 as PageHeader };
|
|
109
|
+
export { PageHeader };
|