@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.
Files changed (60) hide show
  1. package/dist/components/ActionList.js +145 -89
  2. package/dist/components/ActionMenu.js +15 -15
  3. package/dist/components/Autocomplete.js +20 -18
  4. package/dist/components/Avatar.js +11 -13
  5. package/dist/components/BaseStyles.js +47 -28
  6. package/dist/components/Box.js +10 -18
  7. package/dist/components/Breadcrumbs.js +32 -22
  8. package/dist/components/Button.js +105 -41
  9. package/dist/components/Checkbox.js +12 -14
  10. package/dist/components/CheckboxGroup.js +36 -34
  11. package/dist/components/CircleBadge.js +10 -10
  12. package/dist/components/CounterLabel.js +11 -13
  13. package/dist/components/DataTable.js +27 -19
  14. package/dist/components/Dialog.js +79 -53
  15. package/dist/components/Flash.js +9 -9
  16. package/dist/components/FormControl.js +15 -15
  17. package/dist/components/Header.js +44 -36
  18. package/dist/components/Heading.js +9 -9
  19. package/dist/components/IconButton.js +36 -23
  20. package/dist/components/Label.js +22 -17
  21. package/dist/components/Link.js +22 -17
  22. package/dist/components/LinkButton.js +9 -9
  23. package/dist/components/NavList.js +65 -46
  24. package/dist/components/Overlay.js +9 -9
  25. package/dist/components/PageHeader.js +100 -62
  26. package/dist/components/RadioGroup.js +36 -34
  27. package/dist/components/RelativeTime.js +11 -11
  28. package/dist/components/SegmentedControl.js +25 -27
  29. package/dist/components/Select.js +20 -15
  30. package/dist/components/Spinner.js +9 -9
  31. package/dist/components/StateLabel.js +11 -13
  32. package/dist/components/SubNav.js +21 -23
  33. package/dist/components/Text.js +22 -17
  34. package/dist/components/TextInput.js +32 -25
  35. package/dist/components/Textarea.js +22 -17
  36. package/dist/components/ThemeProvider.js +185 -132
  37. package/dist/components/Timeline.js +38 -40
  38. package/dist/components/ToggleSwitch.js +11 -13
  39. package/dist/components/Token.js +22 -17
  40. package/dist/components/Tooltip.js +12 -14
  41. package/dist/components/Truncate.js +9 -9
  42. package/dist/components/UnderlineNav.js +39 -27
  43. package/dist/components/UnderlinePanels.js +23 -18
  44. package/dist/components/deprecated/ActionList.js +39 -34
  45. package/dist/components/deprecated/DialogV1.js +38 -28
  46. package/dist/components/deprecated/Octicon.js +35 -28
  47. package/dist/components/deprecated/TabNav.js +38 -24
  48. package/dist/components/deprecated/Tooltip.js +28 -20
  49. package/dist/deprecated.d.ts +5 -75
  50. package/dist/deprecated.d.ts.map +1 -1
  51. package/dist/deprecated.js +5 -7
  52. package/dist/experimental.d.ts +5 -120
  53. package/dist/experimental.d.ts.map +1 -1
  54. package/dist/experimental.js +5 -7
  55. package/dist/index.d.ts +47 -582
  56. package/dist/index.d.ts.map +1 -1
  57. package/dist/index.js +46 -48
  58. package/dist/sx.js +6 -7
  59. package/dist/theme-get.js +8 -8
  60. package/package.json +4 -7
@@ -1,107 +1,163 @@
1
- import { sx } from "../sx.js";
2
- import styled from "styled-components";
3
- import { ActionList } from "@primer/react";
4
- import React from "react";
5
- import { jsx } from "react/jsx-runtime";
1
+ import React from 'react';
2
+ import styled from 'styled-components';
3
+ import { ActionList as ActionList$1 } from '@primer/react';
4
+ import sx from '../sx.js';
5
+ import { jsx } from 'react/jsx-runtime';
6
6
 
7
- //#region src/components/ActionList.tsx
8
- const StyledActionList = styled(ActionList).withConfig({ shouldForwardProp: (prop) => prop !== "sx" }).withConfig({
9
- displayName: "ActionList__StyledActionList",
10
- componentId: "sc-hw2362-0"
7
+ const StyledActionList = styled(ActionList$1).withConfig({
8
+ shouldForwardProp: prop => prop !== 'sx'
9
+ }).withConfig({
10
+ displayName: "ActionList__StyledActionList",
11
+ componentId: "sc-hw2362-0"
11
12
  })(["", ""], sx);
12
- const ActionListImpl = /* @__PURE__ */ React.forwardRef(function ActionListImpl$1({ as, ...rest }, ref) {
13
- return /* @__PURE__ */ jsx(StyledActionList, {
14
- ref,
15
- ...rest,
16
- ...as ? { forwardedAs: as } : {}
17
- });
13
+ const ActionListImpl = /*#__PURE__*/React.forwardRef(function ActionListImpl({
14
+ as,
15
+ ...rest
16
+ }, ref) {
17
+ return /*#__PURE__*/jsx(StyledActionList, {
18
+ ref: ref,
19
+ ...rest,
20
+ ...(as ? {
21
+ forwardedAs: as
22
+ } : {})
23
+ });
18
24
  });
19
- const StyledActionListLinkItem = styled(ActionList.LinkItem).withConfig({ shouldForwardProp: (prop) => prop !== "sx" }).withConfig({
20
- displayName: "ActionList__StyledActionListLinkItem",
21
- componentId: "sc-hw2362-1"
25
+ const StyledActionListLinkItem = styled(ActionList$1.LinkItem).withConfig({
26
+ shouldForwardProp: prop => prop !== 'sx'
27
+ }).withConfig({
28
+ displayName: "ActionList__StyledActionListLinkItem",
29
+ componentId: "sc-hw2362-1"
22
30
  })(["", ""], sx);
23
- const ActionListLinkItem = /* @__PURE__ */ React.forwardRef(({ children, as, ...props }, ref) => /* @__PURE__ */ jsx(StyledActionListLinkItem, {
24
- ref,
25
- ...props,
26
- ...as ? { forwardedAs: as } : {},
27
- children
31
+ const ActionListLinkItem = /*#__PURE__*/React.forwardRef(({
32
+ children,
33
+ as,
34
+ ...props
35
+ }, ref) => /*#__PURE__*/jsx(StyledActionListLinkItem, {
36
+ ref: ref,
37
+ ...props,
38
+ ...(as ? {
39
+ forwardedAs: as
40
+ } : {}),
41
+ children: children
28
42
  }));
29
- ActionListLinkItem.displayName = "ActionList.LinkItem";
30
- const StyledActionListTrailingAction = styled(ActionList.TrailingAction).withConfig({ shouldForwardProp: (prop) => prop !== "sx" }).withConfig({
31
- displayName: "ActionList__StyledActionListTrailingAction",
32
- componentId: "sc-hw2362-2"
43
+ ActionListLinkItem.displayName = 'ActionList.LinkItem';
44
+ const StyledActionListTrailingAction = styled(ActionList$1.TrailingAction).withConfig({
45
+ shouldForwardProp: prop => prop !== 'sx'
46
+ }).withConfig({
47
+ displayName: "ActionList__StyledActionListTrailingAction",
48
+ componentId: "sc-hw2362-2"
33
49
  })(["", ""], sx);
34
- const ActionListTrailingAction = /* @__PURE__ */ React.forwardRef((props, ref) => {
35
- const { as, ...rest } = props;
36
- return /* @__PURE__ */ jsx(StyledActionListTrailingAction, {
37
- ...rest,
38
- ...as ? { forwardedAs: as } : {},
39
- ref
40
- });
50
+ const ActionListTrailingAction = /*#__PURE__*/React.forwardRef((props, ref) => {
51
+ const {
52
+ as,
53
+ ...rest
54
+ } = props;
55
+ return /*#__PURE__*/jsx(StyledActionListTrailingAction, {
56
+ ...rest,
57
+ ...(as ? {
58
+ forwardedAs: as
59
+ } : {}),
60
+ ref: ref
61
+ });
41
62
  });
42
- const StyledActionListItem = styled(ActionList.Item).withConfig({ shouldForwardProp: (prop) => prop !== "sx" }).withConfig({
43
- displayName: "ActionList__StyledActionListItem",
44
- componentId: "sc-hw2362-3"
63
+ const StyledActionListItem = styled(ActionList$1.Item).withConfig({
64
+ shouldForwardProp: prop => prop !== 'sx'
65
+ }).withConfig({
66
+ displayName: "ActionList__StyledActionListItem",
67
+ componentId: "sc-hw2362-3"
45
68
  })(["", ""], sx);
46
- const ActionListItem = /* @__PURE__ */ React.forwardRef(({ children, as, ...props }, ref) => /* @__PURE__ */ jsx(StyledActionListItem, {
47
- ref,
48
- ...props,
49
- ...as ? { forwardedAs: as } : {},
50
- children
69
+ const ActionListItem = /*#__PURE__*/React.forwardRef(({
70
+ children,
71
+ as,
72
+ ...props
73
+ }, ref) => /*#__PURE__*/jsx(StyledActionListItem, {
74
+ ref: ref,
75
+ ...props,
76
+ ...(as ? {
77
+ forwardedAs: as
78
+ } : {}),
79
+ children: children
51
80
  }));
52
- const StyledActionListGroup = styled(ActionList.Group).withConfig({ shouldForwardProp: (prop) => prop !== "sx" }).withConfig({
53
- displayName: "ActionList__StyledActionListGroup",
54
- componentId: "sc-hw2362-4"
81
+ const StyledActionListGroup = styled(ActionList$1.Group).withConfig({
82
+ shouldForwardProp: prop => prop !== 'sx'
83
+ }).withConfig({
84
+ displayName: "ActionList__StyledActionListGroup",
85
+ componentId: "sc-hw2362-4"
55
86
  })(["", ""], sx);
56
- const ActionListGroup = ({ children, as, ...props }) => /* @__PURE__ */ jsx(StyledActionListGroup, {
57
- ...props,
58
- ...as ? { forwardedAs: as } : {},
59
- children
87
+ const ActionListGroup = ({
88
+ children,
89
+ as,
90
+ ...props
91
+ }) => /*#__PURE__*/jsx(StyledActionListGroup, {
92
+ ...props,
93
+ ...(as ? {
94
+ forwardedAs: as
95
+ } : {}),
96
+ children: children
60
97
  });
61
- ActionListGroup.displayName = "ActionList.Group";
62
- const ActionListDivider = styled(ActionList.Divider).withConfig({ shouldForwardProp: (prop) => prop !== "sx" }).withConfig({
63
- displayName: "ActionList__ActionListDivider",
64
- componentId: "sc-hw2362-5"
98
+ ActionListGroup.displayName = 'ActionList.Group';
99
+ const ActionListDivider = styled(ActionList$1.Divider).withConfig({
100
+ shouldForwardProp: prop => prop !== 'sx'
101
+ }).withConfig({
102
+ displayName: "ActionList__ActionListDivider",
103
+ componentId: "sc-hw2362-5"
65
104
  })(["", ""], sx);
66
- const StyledActionListLeadingVisual = styled(ActionList.LeadingVisual).withConfig({ shouldForwardProp: (prop) => prop !== "sx" }).withConfig({
67
- displayName: "ActionList__StyledActionListLeadingVisual",
68
- componentId: "sc-hw2362-6"
105
+ const StyledActionListLeadingVisual = styled(ActionList$1.LeadingVisual).withConfig({
106
+ shouldForwardProp: prop => prop !== 'sx'
107
+ }).withConfig({
108
+ displayName: "ActionList__StyledActionListLeadingVisual",
109
+ componentId: "sc-hw2362-6"
69
110
  })(["", ""], sx);
70
- const ActionListLeadingVisual = ({ children, as, ...props }) => /* @__PURE__ */ jsx(StyledActionListLeadingVisual, {
71
- ...props,
72
- ...as ? { forwardedAs: as } : {},
73
- children
111
+ const ActionListLeadingVisual = ({
112
+ children,
113
+ as,
114
+ ...props
115
+ }) => /*#__PURE__*/jsx(StyledActionListLeadingVisual, {
116
+ ...props,
117
+ ...(as ? {
118
+ forwardedAs: as
119
+ } : {}),
120
+ children: children
74
121
  });
75
- ActionListLeadingVisual.displayName = "ActionList.LeadingVisual";
76
- const StyledActionListTrailingVisual = styled(ActionList.TrailingVisual).withConfig({ shouldForwardProp: (prop) => prop !== "sx" }).withConfig({
77
- displayName: "ActionList__StyledActionListTrailingVisual",
78
- componentId: "sc-hw2362-7"
122
+ ActionListLeadingVisual.displayName = 'ActionList.LeadingVisual';
123
+ const StyledActionListTrailingVisual = styled(ActionList$1.TrailingVisual).withConfig({
124
+ shouldForwardProp: prop => prop !== 'sx'
125
+ }).withConfig({
126
+ displayName: "ActionList__StyledActionListTrailingVisual",
127
+ componentId: "sc-hw2362-7"
79
128
  })(["", ""], sx);
80
- const ActionListTrailingVisual = ({ children, as, ...props }) => /* @__PURE__ */ jsx(StyledActionListTrailingVisual, {
81
- ...props,
82
- ...as ? { forwardedAs: as } : {},
83
- children
129
+ const ActionListTrailingVisual = ({
130
+ children,
131
+ as,
132
+ ...props
133
+ }) => /*#__PURE__*/jsx(StyledActionListTrailingVisual, {
134
+ ...props,
135
+ ...(as ? {
136
+ forwardedAs: as
137
+ } : {}),
138
+ children: children
84
139
  });
85
- ActionListTrailingVisual.displayName = "ActionList.TrailingVisual";
86
- const ActionList$1 = Object.assign(ActionListImpl, {
87
- Item: ActionListItem,
88
- LinkItem: ActionListLinkItem,
89
- Group: ActionListGroup,
90
- GroupHeading: ActionList.GroupHeading,
91
- Divider: ActionListDivider,
92
- Description: ActionList.Description,
93
- LeadingVisual: ActionListLeadingVisual,
94
- TrailingVisual: ActionListTrailingVisual,
95
- Heading: ActionList.Heading,
96
- TrailingAction: ActionListTrailingAction
140
+ ActionListTrailingVisual.displayName = 'ActionList.TrailingVisual';
141
+ const ActionList = Object.assign(ActionListImpl, {
142
+ Item: ActionListItem,
143
+ LinkItem: ActionListLinkItem,
144
+ Group: ActionListGroup,
145
+ GroupHeading: ActionList$1.GroupHeading,
146
+ Divider: ActionListDivider,
147
+ Description: ActionList$1.Description,
148
+ LeadingVisual: ActionListLeadingVisual,
149
+ TrailingVisual: ActionListTrailingVisual,
150
+ Heading: ActionList$1.Heading,
151
+ TrailingAction: ActionListTrailingAction
97
152
  });
98
- ActionListItem.__SLOT__ = ActionList.Item.__SLOT__;
99
- ActionListLinkItem.__SLOT__ = ActionList.LinkItem.__SLOT__;
100
- ActionListGroup.__SLOT__ = ActionList.Group.__SLOT__;
101
- ActionListDivider.__SLOT__ = ActionList.Divider.__SLOT__;
102
- ActionListLeadingVisual.__SLOT__ = ActionList.LeadingVisual.__SLOT__;
103
- ActionListTrailingVisual.__SLOT__ = ActionList.TrailingVisual.__SLOT__;
104
- ActionListTrailingAction.__SLOT__ = ActionList.TrailingAction.__SLOT__;
105
153
 
106
- //#endregion
107
- export { ActionList$1 as ActionList };
154
+ // Assign slot markers after component definitions
155
+ ActionListItem.__SLOT__ = ActionList$1.Item.__SLOT__;
156
+ ActionListLinkItem.__SLOT__ = ActionList$1.LinkItem.__SLOT__;
157
+ ActionListGroup.__SLOT__ = ActionList$1.Group.__SLOT__;
158
+ ActionListDivider.__SLOT__ = ActionList$1.Divider.__SLOT__;
159
+ ActionListLeadingVisual.__SLOT__ = ActionList$1.LeadingVisual.__SLOT__;
160
+ ActionListTrailingVisual.__SLOT__ = ActionList$1.TrailingVisual.__SLOT__;
161
+ ActionListTrailingAction.__SLOT__ = ActionList$1.TrailingAction.__SLOT__;
162
+
163
+ export { ActionList };
@@ -1,19 +1,19 @@
1
- import { sx } from "../sx.js";
2
- import styled from "styled-components";
3
- import { ActionMenu } from "@primer/react";
1
+ import { ActionMenu as ActionMenu$1 } from '@primer/react';
2
+ import sx from '../sx.js';
3
+ import styled from 'styled-components';
4
4
 
5
- //#region src/components/ActionMenu.tsx
6
- const ActionMenuOverlay = styled(ActionMenu.Overlay).withConfig({ shouldForwardProp: (prop) => prop !== "sx" }).withConfig({
7
- displayName: "ActionMenu__ActionMenuOverlay",
8
- componentId: "sc-w5s60e-0"
5
+ const ActionMenuOverlay = styled(ActionMenu$1.Overlay).withConfig({
6
+ shouldForwardProp: prop => prop !== 'sx'
7
+ }).withConfig({
8
+ displayName: "ActionMenu__ActionMenuOverlay",
9
+ componentId: "sc-w5s60e-0"
9
10
  })(["", ""], sx);
10
- const ActionMenu$1 = Object.assign(ActionMenu, {
11
- Button: ActionMenu.Button,
12
- Anchor: ActionMenu.Anchor,
13
- Overlay: ActionMenuOverlay,
14
- Divider: ActionMenu.Divider
11
+ const ActionMenu = Object.assign(ActionMenu$1, {
12
+ Button: ActionMenu$1.Button,
13
+ Anchor: ActionMenu$1.Anchor,
14
+ Overlay: ActionMenuOverlay,
15
+ Divider: ActionMenu$1.Divider
15
16
  });
16
- ActionMenuOverlay.__SLOT__ = ActionMenu.Overlay.__SLOT__;
17
+ ActionMenuOverlay.__SLOT__ = ActionMenu$1.Overlay.__SLOT__;
17
18
 
18
- //#endregion
19
- export { ActionMenu$1 as ActionMenu };
19
+ export { ActionMenu };
@@ -1,23 +1,25 @@
1
- import { sx } from "../sx.js";
2
- import styled from "styled-components";
3
- import { Autocomplete } from "@primer/react";
1
+ import { Autocomplete as Autocomplete$1 } from '@primer/react';
2
+ import sx from '../sx.js';
3
+ import styled from 'styled-components';
4
4
 
5
- //#region src/components/Autocomplete.tsx
6
- const AutocompleteOverlay = styled(Autocomplete.Overlay).withConfig({ shouldForwardProp: (prop) => prop !== "sx" }).withConfig({
7
- displayName: "Autocomplete__AutocompleteOverlay",
8
- componentId: "sc-j8ax2e-0"
5
+ const AutocompleteOverlay = styled(Autocomplete$1.Overlay).withConfig({
6
+ shouldForwardProp: prop => prop !== 'sx'
7
+ }).withConfig({
8
+ displayName: "Autocomplete__AutocompleteOverlay",
9
+ componentId: "sc-j8ax2e-0"
9
10
  })(["", ""], sx);
10
- const AutocompleteInput = styled(Autocomplete.Input).withConfig({ shouldForwardProp: (prop) => prop !== "sx" }).withConfig({
11
- displayName: "Autocomplete__AutocompleteInput",
12
- componentId: "sc-j8ax2e-1"
11
+ const AutocompleteInput = styled(Autocomplete$1.Input).withConfig({
12
+ shouldForwardProp: prop => prop !== 'sx'
13
+ }).withConfig({
14
+ displayName: "Autocomplete__AutocompleteInput",
15
+ componentId: "sc-j8ax2e-1"
13
16
  })(["", ""], sx);
14
- const Autocomplete$1 = Object.assign(Autocomplete, {
15
- Context: Autocomplete.Context,
16
- Input: AutocompleteInput,
17
- Menu: Autocomplete.Menu,
18
- Overlay: AutocompleteOverlay
17
+ const Autocomplete = Object.assign(Autocomplete$1, {
18
+ Context: Autocomplete$1.Context,
19
+ Input: AutocompleteInput,
20
+ Menu: Autocomplete$1.Menu,
21
+ Overlay: AutocompleteOverlay
19
22
  });
20
- AutocompleteOverlay.__SLOT__ = Autocomplete.Overlay.__SLOT__;
23
+ AutocompleteOverlay.__SLOT__ = Autocomplete$1.Overlay.__SLOT__;
21
24
 
22
- //#endregion
23
- export { Autocomplete$1 as Autocomplete };
25
+ export { Autocomplete };
@@ -1,16 +1,14 @@
1
- import { Box } from "./Box.js";
2
- import { Avatar } from "@primer/react";
3
- import { forwardRef } from "react";
4
- import { jsx } from "react/jsx-runtime";
1
+ import { Avatar as Avatar$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
- //#region src/components/Avatar.tsx
7
- const Avatar$1 = /* @__PURE__ */ forwardRef(function Avatar$2(props, ref) {
8
- return /* @__PURE__ */ jsx(Box, {
9
- as: Avatar,
10
- ref,
11
- ...props
12
- });
6
+ const Avatar = /*#__PURE__*/forwardRef(function Avatar(props, ref) {
7
+ return /*#__PURE__*/jsx(Box, {
8
+ as: Avatar$1,
9
+ ref: ref,
10
+ ...props
11
+ });
13
12
  });
14
13
 
15
- //#endregion
16
- export { Avatar$1 as Avatar };
14
+ export { Avatar };
@@ -1,32 +1,51 @@
1
- import { useTheme } from "./ThemeProvider.js";
2
- import { createGlobalStyle } from "styled-components";
3
- import { jsx, jsxs } from "react/jsx-runtime";
4
- import { clsx } from "clsx";
5
- import "focus-visible";
1
+ import { clsx } from 'clsx';
2
+ import { useTheme } from './ThemeProvider.js';
3
+ import 'focus-visible';
4
+ import { createGlobalStyle } from 'styled-components';
5
+ import { jsxs, jsx } from 'react/jsx-runtime';
6
6
 
7
- //#region src/components/BaseStyles.tsx
8
7
  const GlobalStyle = createGlobalStyle(["*{box-sizing:border-box;}body{margin:0;}table{border-collapse:collapse;}[data-color-mode='light'] input{color-scheme:light;}[data-color-mode='dark'] input{color-scheme:dark;}@media (prefers-color-scheme:light){[data-color-mode='auto'][data-light-theme*='light']{color-scheme:light;}}@media (prefers-color-scheme:dark){[data-color-mode='auto'][data-dark-theme*='dark']{color-scheme:dark;}}[role='button']:focus:not(:focus-visible):not(:global(.focus-visible)),[role='tabpanel'][tabindex='0']:focus:not(:focus-visible):not(:global(.focus-visible)),button:focus:not(:focus-visible):not(:global(.focus-visible)),summary:focus:not(:focus-visible):not(:global(.focus-visible)),a:focus:not(:focus-visible):not(:global(.focus-visible)){outline:none;box-shadow:none;}[tabindex='0']:focus:not(:focus-visible):not(:global(.focus-visible)),details-dialog:focus:not(:focus-visible):not(:global(.focus-visible)){outline:none;}.BaseStyles{font-family:var(--BaseStyles-fontFamily,var(--fontStack-system));line-height:var(--BaseStyles-lineHeight,1.5);color:var(--BaseStyles-fgColor,var(--fgColor-default));&:has([data-color-mode='light']){input &{color-scheme:light;}}&:has([data-color-mode='dark']){input &{color-scheme:dark;}}:where(a:not([class*='prc-']):not([class*='PRC-']):not([class*='Primer_Brand__'])){color:var(--fgColor-accent,var(--color-accent-fg));text-decoration:none;&:hover{text-decoration:underline;}}}"]);
9
- function BaseStyles({ children, color, fontFamily, lineHeight, className, as: Component = "div", style, ...rest }) {
10
- const { colorMode, colorScheme, dayScheme, nightScheme } = useTheme();
11
- const baseStyles = {
12
- ["--BaseStyles-fgColor"]: color,
13
- ["--BaseStyles-fontFamily"]: fontFamily,
14
- ["--BaseStyles-lineHeight"]: lineHeight
15
- };
16
- return /* @__PURE__ */ jsxs(Component, {
17
- className: clsx("BaseStyles", className),
18
- "data-portal-root": true,
19
- "data-color-mode": colorMode === "auto" ? "auto" : colorScheme?.includes("dark") ? "dark" : "light",
20
- "data-light-theme": dayScheme,
21
- "data-dark-theme": nightScheme,
22
- style: {
23
- ...baseStyles,
24
- ...style
25
- },
26
- ...rest,
27
- children: [/* @__PURE__ */ jsx(GlobalStyle, { colorScheme: colorScheme?.includes("dark") ? "dark" : "light" }), children]
28
- });
8
+ function BaseStyles({
9
+ children,
10
+ color,
11
+ fontFamily,
12
+ lineHeight,
13
+ className,
14
+ as: Component = 'div',
15
+ style,
16
+ ...rest
17
+ }) {
18
+ const {
19
+ colorMode,
20
+ colorScheme,
21
+ dayScheme,
22
+ nightScheme
23
+ } = useTheme();
24
+ const baseStyles = {
25
+ ['--BaseStyles-fgColor']: color,
26
+ ['--BaseStyles-fontFamily']: fontFamily,
27
+ ['--BaseStyles-lineHeight']: lineHeight
28
+ };
29
+ return /*#__PURE__*/jsxs(Component, {
30
+ className: clsx('BaseStyles', className),
31
+ "data-portal-root": true
32
+ /**
33
+ * We need to map valid primer/react color modes onto valid color modes for primer/primitives
34
+ * valid color modes for primer/primitives: auto | light | dark
35
+ * valid color modes for primer/primer: auto | day | night | light | dark
36
+ */,
37
+ "data-color-mode": colorMode === 'auto' ? 'auto' : colorScheme?.includes('dark') ? 'dark' : 'light',
38
+ "data-light-theme": dayScheme,
39
+ "data-dark-theme": nightScheme,
40
+ style: {
41
+ ...baseStyles,
42
+ ...style
43
+ },
44
+ ...rest,
45
+ children: [/*#__PURE__*/jsx(GlobalStyle, {
46
+ colorScheme: colorScheme?.includes('dark') ? 'dark' : 'light'
47
+ }), children]
48
+ });
29
49
  }
30
50
 
31
- //#endregion
32
- export { BaseStyles };
51
+ export { BaseStyles };
@@ -1,23 +1,15 @@
1
- import { sx } from "../sx.js";
2
- import styled from "styled-components";
3
- import { background, border, color, flexbox, grid, layout, position, shadow, space, typography } from "styled-system";
1
+ import styled from 'styled-components';
2
+ import { space, color, typography, layout, flexbox, grid, background, border, position, shadow } from 'styled-system';
3
+ import sx from '../sx.js';
4
4
 
5
- //#region src/components/Box.tsx
6
5
  /**
7
- * @deprecated The Box component is deprecated. Replace with a `div` or
8
- * appropriate HTML element instead, with CSS modules for styling.
9
- * @see https://github.com/primer/react/blob/main/contributor-docs/migration-from-box.md
10
- */
6
+ * @deprecated The Box component is deprecated. Replace with a `div` or
7
+ * appropriate HTML element instead, with CSS modules for styling.
8
+ * @see https://github.com/primer/react/blob/main/contributor-docs/migration-from-box.md
9
+ */
11
10
  const Box = styled.div.withConfig({
12
- displayName: "Box",
13
- componentId: "sc-62in7e-0"
11
+ displayName: "Box",
12
+ componentId: "sc-62in7e-0"
14
13
  })(space, color, typography, layout, flexbox, grid, background, border, position, shadow, sx);
15
- /**
16
- * @deprecated The Box component is deprecated. Replace with a `div` or
17
- * appropriate HTML element instead, with CSS modules for styling.
18
- * @see https://github.com/primer/react/blob/main/contributor-docs/migration-from-box.md
19
- */
20
- var Box_default = Box;
21
14
 
22
- //#endregion
23
- export { Box, Box_default as default };
15
+ export { Box, Box as default };
@@ -1,28 +1,38 @@
1
- import { sx } from "../sx.js";
2
- import styled from "styled-components";
3
- import { Breadcrumbs } from "@primer/react";
4
- import { jsx } from "react/jsx-runtime";
1
+ import { Breadcrumbs as Breadcrumbs$1 } from '@primer/react';
2
+ import sx from '../sx.js';
3
+ import styled from 'styled-components';
4
+ import { jsx } from 'react/jsx-runtime';
5
5
 
6
- //#region src/components/Breadcrumbs.tsx
7
- const BreadcrumbsImpl = styled(Breadcrumbs).withConfig({ shouldForwardProp: (prop) => prop !== "sx" }).withConfig({
8
- displayName: "Breadcrumbs__BreadcrumbsImpl",
9
- componentId: "sc-1qj8pw-0"
6
+ const BreadcrumbsImpl = styled(Breadcrumbs$1).withConfig({
7
+ shouldForwardProp: prop => prop !== 'sx'
8
+ }).withConfig({
9
+ displayName: "Breadcrumbs__BreadcrumbsImpl",
10
+ componentId: "sc-1qj8pw-0"
10
11
  })(["", ""], sx);
11
- const StyledBreadcrumbsItem = styled(Breadcrumbs.Item).withConfig({ shouldForwardProp: (prop) => prop !== "sx" }).withConfig({
12
- displayName: "Breadcrumbs__StyledBreadcrumbsItem",
13
- componentId: "sc-1qj8pw-1"
12
+ const StyledBreadcrumbsItem = styled(Breadcrumbs$1.Item).withConfig({
13
+ shouldForwardProp: prop => prop !== 'sx'
14
+ }).withConfig({
15
+ displayName: "Breadcrumbs__StyledBreadcrumbsItem",
16
+ componentId: "sc-1qj8pw-1"
14
17
  })(["", ""], sx);
15
- function BreadcrumbsItem({ as, ...props }) {
16
- return /* @__PURE__ */ jsx(StyledBreadcrumbsItem, {
17
- ...props,
18
- ...as ? { forwardedAs: as } : {}
19
- });
18
+ function BreadcrumbsItem({
19
+ as,
20
+ ...props
21
+ }) {
22
+ return /*#__PURE__*/jsx(StyledBreadcrumbsItem, {
23
+ ...props,
24
+ ...(as ? {
25
+ forwardedAs: as
26
+ } : {})
27
+ });
20
28
  }
21
- const Breadcrumbs$1 = Object.assign(BreadcrumbsImpl, { Item: BreadcrumbsItem });
29
+ const Breadcrumbs = Object.assign(BreadcrumbsImpl, {
30
+ Item: BreadcrumbsItem
31
+ });
32
+
22
33
  /**
23
- * @deprecated Use the `Breadcrumbs` component instead (i.e. `<Breadcrumb>` → `<Breadcrumbs>`)
24
- */
25
- const Breadcrumb = Breadcrumbs$1;
34
+ * @deprecated Use the `Breadcrumbs` component instead (i.e. `<Breadcrumb>` → `<Breadcrumbs>`)
35
+ */
36
+ const Breadcrumb = Breadcrumbs;
26
37
 
27
- //#endregion
28
- export { Breadcrumb, Breadcrumbs$1 as Breadcrumbs };
38
+ export { Breadcrumb, Breadcrumbs };