@primer/styled-react 0.0.0-20251006202420 → 0.0.0-20251006204533
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/PageHeader.d.ts.map +1 -1
- package/dist/components/PageLayout.d.ts +18 -0
- package/dist/components/PageLayout.d.ts.map +1 -0
- package/dist/components.json +1 -3
- package/dist/index.d.ts +5 -4
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +36 -169
- package/dist/sx.d.ts +0 -3
- package/dist/sx.d.ts.map +1 -1
- package/package.json +3 -3
- package/dist/components/Button.d.ts +0 -13
- package/dist/components/Button.d.ts.map +0 -1
- package/dist/components/IconButton.d.ts +0 -9
- package/dist/components/IconButton.d.ts.map +0 -1
- package/dist/components/TextInput.d.ts +0 -20
- package/dist/components/TextInput.d.ts.map +0 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PageHeader.d.ts","sourceRoot":"","sources":["../../src/components/PageHeader.tsx"],"names":[],"mappings":"AAAA,OAAO,EACL,UAAU,IAAI,gBAAgB,EAC9B,KAAK,eAAe,IAAI,qBAAqB,EAC7C,KAAK,oBAAoB,IAAI,0BAA0B,EACvD,KAAK,sBAAsB,IAAI,4BAA4B,EAC3D,KAAK,wBAAwB,IAAI,8BAA8B,EAChE,MAAM,eAAe,CAAA;AAEtB,OAAO,EAAK,KAAK,MAAM,
|
|
1
|
+
{"version":3,"file":"PageHeader.d.ts","sourceRoot":"","sources":["../../src/components/PageHeader.tsx"],"names":[],"mappings":"AAAA,OAAO,EACL,UAAU,IAAI,gBAAgB,EAC9B,KAAK,eAAe,IAAI,qBAAqB,EAC7C,KAAK,oBAAoB,IAAI,0BAA0B,EACvD,KAAK,sBAAsB,IAAI,4BAA4B,EAC3D,KAAK,wBAAwB,IAAI,8BAA8B,EAChE,MAAM,eAAe,CAAA;AAEtB,OAAO,EAAK,KAAK,MAAM,EAAC,MAAM,OAAO,CAAA;AACrC,OAAO,KAAK,EAAC,mBAAmB,EAAC,MAAM,gBAAgB,CAAA;AAEvD,OAAO,KAAK,EAAC,iBAAiB,EAAC,MAAM,OAAO,CAAA;AAC5C,OAAO,KAAK,MAAM,OAAO,CAAA;AAEzB,KAAK,eAAe,GAAG,qBAAqB,GAAG,MAAM,CAAA;AAcrD,KAAK,sBAAsB,GAAG,4BAA4B,GAAG,MAAM,CAAA;AAEnE,iBAAS,iBAAiB,CAAC,EAAC,EAAE,EAAE,GAAG,IAAI,EAAC,EAAE,sBAAsB,qBAY/D;AAED,KAAK,oBAAoB,GAAG,iBAAiB,CAAC,0BAA0B,CAAC,GAAG,MAAM,CAAA;AA4BlF,QAAA,MAAM,eAAe,GAAI,kBAAgB,oBAAoB,sBAE5D,CAAA;AAED,KAAK,wBAAwB,GAAG,iBAAiB,CAAC,8BAA8B,CAAC,GAAG,MAAM,CAAA;AAE1F,QAAA,MAAM,mBAAmB,EAAE,mBAAmB,CAAC,KAAK,EAAE,wBAAwB,CAM7E,CAAA;AAED,KAAK,uBAAuB,GAAG,mBAAmB,CAAC,KAAK,EAAE,eAAe,CAAC,GAAG;IAC3E,OAAO,EAAE,OAAO,iBAAiB,CAAA;IACjC,WAAW,EAAE,OAAO,gBAAgB,CAAC,WAAW,CAAA;IAChD,UAAU,EAAE,OAAO,gBAAgB,CAAC,UAAU,CAAA;IAC9C,UAAU,EAAE,OAAO,gBAAgB,CAAC,UAAU,CAAA;IAC9C,SAAS,EAAE,OAAO,mBAAmB,CAAA;IACrC,kBAAkB,EAAE,OAAO,gBAAgB,CAAC,kBAAkB,CAAA;IAC9D,aAAa,EAAE,OAAO,gBAAgB,CAAC,aAAa,CAAA;IACpD,WAAW,EAAE,OAAO,gBAAgB,CAAC,WAAW,CAAA;IAChD,aAAa,EAAE,OAAO,gBAAgB,CAAC,aAAa,CAAA;IACpD,KAAK,EAAE,OAAO,eAAe,CAAA;IAC7B,cAAc,EAAE,OAAO,gBAAgB,CAAC,cAAc,CAAA;IACtD,WAAW,EAAE,OAAO,gBAAgB,CAAC,WAAW,CAAA;IAChD,cAAc,EAAE,OAAO,gBAAgB,CAAC,cAAc,CAAA;CACvD,CAAA;AAED,QAAA,MAAM,UAAU,EAAE,uBAchB,CAAA;AAEF,OAAO,EAAC,UAAU,EAAC,CAAA;AACnB,YAAY,EAAC,eAAe,EAAE,sBAAsB,EAAE,oBAAoB,EAAC,CAAA"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import React, { type PropsWithChildren } from 'react';
|
|
2
|
+
import type { PageLayoutProps as PrimerPageLayoutProps, PageLayoutContentProps as PrimerPageLayoutContentProps, PageLayoutPaneProps as PrimerPageLayoutPaneProps } from '@primer/react';
|
|
3
|
+
import { type SxProp } from '../sx';
|
|
4
|
+
type PageLayoutProps = PropsWithChildren<PrimerPageLayoutProps> & SxProp;
|
|
5
|
+
declare const PageLayout: React.ForwardRefExoticComponent<PrimerPageLayoutProps & {
|
|
6
|
+
children?: React.ReactNode | undefined;
|
|
7
|
+
} & SxProp & React.RefAttributes<HTMLDivElement>> & {
|
|
8
|
+
Content: React.ForwardRefExoticComponent<PrimerPageLayoutContentProps & {
|
|
9
|
+
children?: React.ReactNode | undefined;
|
|
10
|
+
} & SxProp & React.RefAttributes<HTMLDivElement>>;
|
|
11
|
+
Header: React.FC<React.PropsWithChildren<import("@primer/react").PageLayoutHeaderProps>>;
|
|
12
|
+
Pane: React.ForwardRefExoticComponent<PrimerPageLayoutPaneProps & {
|
|
13
|
+
children?: React.ReactNode | undefined;
|
|
14
|
+
} & SxProp & React.RefAttributes<HTMLDivElement>>;
|
|
15
|
+
Footer: React.FC<React.PropsWithChildren<import("@primer/react").PageLayoutFooterProps>>;
|
|
16
|
+
};
|
|
17
|
+
export { PageLayout, type PageLayoutProps };
|
|
18
|
+
//# sourceMappingURL=PageLayout.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PageLayout.d.ts","sourceRoot":"","sources":["../../src/components/PageLayout.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAC,KAAK,iBAAiB,EAAC,MAAM,OAAO,CAAA;AAEnD,OAAO,KAAK,EACV,eAAe,IAAI,qBAAqB,EACxC,sBAAsB,IAAI,4BAA4B,EACtD,mBAAmB,IAAI,yBAAyB,EACjD,MAAM,eAAe,CAAA;AAEtB,OAAO,EAAK,KAAK,MAAM,EAAC,MAAM,OAAO,CAAA;AAMrC,KAAK,eAAe,GAAG,iBAAiB,CAAC,qBAAqB,CAAC,GAAG,MAAM,CAAA;AAmBxE,QAAA,MAAM,UAAU;;;;;;;;;;;CAKd,CAAA;AAEF,OAAO,EAAC,UAAU,EAAE,KAAK,eAAe,EAAC,CAAA"}
|
package/dist/components.json
CHANGED
|
@@ -64,7 +64,6 @@
|
|
|
64
64
|
"BoxProps",
|
|
65
65
|
"BreadcrumbsItemProps",
|
|
66
66
|
"BreadcrumbsProps",
|
|
67
|
-
"ButtonProps",
|
|
68
67
|
"CheckboxGroupProps",
|
|
69
68
|
"CheckboxProps",
|
|
70
69
|
"CounterLabelProps",
|
|
@@ -72,7 +71,6 @@
|
|
|
72
71
|
"DialogHeaderProps",
|
|
73
72
|
"DialogProps",
|
|
74
73
|
"HeaderProps",
|
|
75
|
-
"IconButtonProps",
|
|
76
74
|
"LabelProps",
|
|
77
75
|
"LinkButtonProps",
|
|
78
76
|
"LinkProps",
|
|
@@ -80,6 +78,7 @@
|
|
|
80
78
|
"PageHeaderActionsProps",
|
|
81
79
|
"PageHeaderProps",
|
|
82
80
|
"PageHeaderTitleProps",
|
|
81
|
+
"PageLayoutProps",
|
|
83
82
|
"RadioGroupProps",
|
|
84
83
|
"RelativeTimeProps",
|
|
85
84
|
"SegmentedControlButtonProps",
|
|
@@ -101,7 +100,6 @@
|
|
|
101
100
|
"TableTitleProps",
|
|
102
101
|
"TabNavLinkProps",
|
|
103
102
|
"TabNavProps",
|
|
104
|
-
"TextInputActionProps",
|
|
105
103
|
"TextInputProps",
|
|
106
104
|
"TextProps",
|
|
107
105
|
"TimelineBadgeProps",
|
package/dist/index.d.ts
CHANGED
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
export { Box, type BoxProps } from './components/Box';
|
|
2
|
+
export { Button } from '@primer/react';
|
|
2
3
|
export { Details } from '@primer/react';
|
|
3
4
|
export { FormControl } from '@primer/react';
|
|
5
|
+
export { IconButton } from '@primer/react';
|
|
4
6
|
export { ProgressBar } from '@primer/react';
|
|
5
|
-
export { PageLayout } from '@primer/react';
|
|
6
7
|
export { Select } from '@primer/react';
|
|
7
8
|
export { Textarea } from '@primer/react';
|
|
9
|
+
export { TextInput } from '@primer/react';
|
|
10
|
+
export { type TextInputProps } from '@primer/react';
|
|
8
11
|
export { ThemeProvider } from '@primer/react';
|
|
9
12
|
export { merge } from '@primer/react';
|
|
10
13
|
export { theme } from '@primer/react';
|
|
@@ -16,7 +19,6 @@ export { ActionMenu } from './components/ActionMenu';
|
|
|
16
19
|
export { Autocomplete, type AutocompleteOverlayProps } from './components/Autocomplete';
|
|
17
20
|
export { Avatar, type AvatarProps } from './components/Avatar';
|
|
18
21
|
export { Breadcrumbs, Breadcrumb, type BreadcrumbsProps, type BreadcrumbsItemProps } from './components/Breadcrumbs';
|
|
19
|
-
export { ButtonComponent as Button, type ButtonComponentProps as ButtonProps } from './components/Button';
|
|
20
22
|
export { Checkbox, type CheckboxProps } from './components/Checkbox';
|
|
21
23
|
export { CheckboxGroup, type CheckboxGroupProps } from './components/CheckboxGroup';
|
|
22
24
|
export { CircleBadge } from './components/CircleBadge';
|
|
@@ -25,12 +27,12 @@ export { Dialog, type DialogProps } from './components/Dialog';
|
|
|
25
27
|
export { Flash } from './components/Flash';
|
|
26
28
|
export { Header, type HeaderProps } from './components/Header';
|
|
27
29
|
export { Heading } from './components/Heading';
|
|
28
|
-
export { IconButton, type IconButtonProps } from './components/IconButton';
|
|
29
30
|
export { Label, type LabelProps } from './components/Label';
|
|
30
31
|
export { Link, type LinkProps } from './components/Link';
|
|
31
32
|
export { LinkButton, type LinkButtonProps } from './components/LinkButton';
|
|
32
33
|
export { NavList, type NavListProps } from './components/NavList';
|
|
33
34
|
export { Overlay } from './components/Overlay';
|
|
35
|
+
export { PageLayout, type PageLayoutProps } from './components/PageLayout';
|
|
34
36
|
export { PageHeader, type PageHeaderProps, type PageHeaderActionsProps, type PageHeaderTitleProps, } from './components/PageHeader';
|
|
35
37
|
export { RadioGroup, type RadioGroupProps } from './components/RadioGroup';
|
|
36
38
|
export { RelativeTime, type RelativeTimeProps } from './components/RelativeTime';
|
|
@@ -39,7 +41,6 @@ export { Spinner, type SpinnerProps } from './components/Spinner';
|
|
|
39
41
|
export { StateLabel, type StateLabelProps } from './components/StateLabel';
|
|
40
42
|
export { SubNav, type SubNavProps, type SubNavLinkProps } from './components/SubNav';
|
|
41
43
|
export { Text, type TextProps } from './components/Text';
|
|
42
|
-
export { TextInput, type TextInputProps, type TextInputActionProps } from './components/TextInput';
|
|
43
44
|
export { Timeline, type TimelineProps, type TimelineItemProps, type TimelineBadgeProps, type TimelineBodyProps, type TimelineBreakProps, } from './components/Timeline';
|
|
44
45
|
export { ToggleSwitch, type ToggleSwitchProps } from './components/ToggleSwitch';
|
|
45
46
|
export { Tooltip, type TooltipProps } from './components/Tooltip';
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAC,GAAG,EAAE,KAAK,QAAQ,EAAC,MAAM,kBAAkB,CAAA;AACnD,OAAO,EAAC,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.tsx"],"names":[],"mappings":"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"}
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { ActionList as ActionList$1, sx, ActionMenu as ActionMenu$1, Autocomplete as Autocomplete$1, Box, Avatar as Avatar$1, Breadcrumbs as Breadcrumbs$1,
|
|
2
|
-
export { Box, Details, FormControl,
|
|
1
|
+
import { ActionList as ActionList$1, sx, ActionMenu as ActionMenu$1, Autocomplete as Autocomplete$1, Box, Avatar as Avatar$1, Breadcrumbs as Breadcrumbs$1, Checkbox as Checkbox$1, CheckboxGroup as CheckboxGroup$1, CircleBadge as CircleBadge$1, CounterLabel as CounterLabel$1, Flash as Flash$1, Header as Header$1, Heading as Heading$1, Label as Label$1, Link as Link$1, LinkButton as LinkButton$1, NavList as NavList$1, Overlay as Overlay$1, PageLayout as PageLayout$1, RadioGroup as RadioGroup$1, RelativeTime as RelativeTime$1, SegmentedControl as SegmentedControl$1, Spinner as Spinner$1, StateLabel as StateLabel$1, SubNav as SubNav$1, Text as Text$1, Timeline as Timeline$1, ToggleSwitch as ToggleSwitch$1, useTheme, theme, Token as Token$1, Truncate as Truncate$1, UnderlineNav as UnderlineNav$1 } from '@primer/react';
|
|
2
|
+
export { Box, Button, Details, FormControl, IconButton, ProgressBar, Select, TextInput, Textarea, ThemeProvider, merge, sx, theme, themeGet, useColorSchemeVar, useTheme } from '@primer/react';
|
|
3
3
|
import React, { forwardRef } from 'react';
|
|
4
4
|
import styled from 'styled-components';
|
|
5
5
|
import { jsx } from 'react/jsx-runtime';
|
|
@@ -172,108 +172,6 @@ const Breadcrumbs = Object.assign(BreadcrumbsImpl, {
|
|
|
172
172
|
*/
|
|
173
173
|
const Breadcrumb = Breadcrumbs;
|
|
174
174
|
|
|
175
|
-
const StyledButtonComponent = /*#__PURE__*/forwardRef(({
|
|
176
|
-
sx,
|
|
177
|
-
...rest
|
|
178
|
-
}, ref) => {
|
|
179
|
-
const {
|
|
180
|
-
block,
|
|
181
|
-
size = 'medium',
|
|
182
|
-
leadingVisual,
|
|
183
|
-
trailingVisual,
|
|
184
|
-
trailingAction
|
|
185
|
-
} = rest;
|
|
186
|
-
let sxStyles = {};
|
|
187
|
-
const style = {};
|
|
188
|
-
if (sx !== null && Object.keys(sx || {}).length > 0) {
|
|
189
|
-
sxStyles = generateCustomSxProp({
|
|
190
|
-
block,
|
|
191
|
-
size,
|
|
192
|
-
leadingVisual,
|
|
193
|
-
trailingVisual,
|
|
194
|
-
trailingAction
|
|
195
|
-
}, sx);
|
|
196
|
-
const {
|
|
197
|
-
color
|
|
198
|
-
} = sx;
|
|
199
|
-
if (color) style['--button-color'] = color;
|
|
200
|
-
}
|
|
201
|
-
return /*#__PURE__*/jsx(Box, {
|
|
202
|
-
as: Button,
|
|
203
|
-
style: style,
|
|
204
|
-
sx: sxStyles,
|
|
205
|
-
ref: ref,
|
|
206
|
-
...rest
|
|
207
|
-
});
|
|
208
|
-
});
|
|
209
|
-
const ButtonComponent = /*#__PURE__*/forwardRef(({
|
|
210
|
-
as,
|
|
211
|
-
...props
|
|
212
|
-
}, ref) => /*#__PURE__*/jsx(StyledButtonComponent, {
|
|
213
|
-
ref: ref,
|
|
214
|
-
...props,
|
|
215
|
-
...(as ? {
|
|
216
|
-
forwardedAs: as
|
|
217
|
-
} : {})
|
|
218
|
-
}));
|
|
219
|
-
|
|
220
|
-
// This function is used to generate a custom cssSelector for the sxProp
|
|
221
|
-
|
|
222
|
-
// The usual sx prop can like this:
|
|
223
|
-
// sx={{
|
|
224
|
-
// [`@media (max-width: 768px)`]: {
|
|
225
|
-
// '& > ul': {
|
|
226
|
-
// backgroundColor: 'deeppink',
|
|
227
|
-
// },
|
|
228
|
-
// '&:hover': {
|
|
229
|
-
// backgroundColor: 'yellow',
|
|
230
|
-
// },
|
|
231
|
-
// },
|
|
232
|
-
// '&:hover': {
|
|
233
|
-
// backgroundColor: 'yellow',
|
|
234
|
-
// },
|
|
235
|
-
// '&': {
|
|
236
|
-
// width : 320px
|
|
237
|
-
// }
|
|
238
|
-
// }}
|
|
239
|
-
//*
|
|
240
|
-
/* What we want for Button styles is this:
|
|
241
|
-
sx={{
|
|
242
|
-
// [`@media (max-width: 768px)`]: {
|
|
243
|
-
// '&[data-attribute="something"] > ul': {
|
|
244
|
-
// backgroundColor: 'deeppink',
|
|
245
|
-
// },
|
|
246
|
-
// '&[data-attribute="something"]:hover': {
|
|
247
|
-
// backgroundColor: 'yellow',
|
|
248
|
-
// },
|
|
249
|
-
// },
|
|
250
|
-
// '&[data-attribute="something"]:hover': {
|
|
251
|
-
// backgroundColor: 'yellow',
|
|
252
|
-
// },
|
|
253
|
-
// '&[data-attribute="something"]': {
|
|
254
|
-
// width : 320px
|
|
255
|
-
// }
|
|
256
|
-
// }}
|
|
257
|
-
|
|
258
|
-
// We need to make sure we append the customCSSSelector to the original class selector. i.e & - > &[data-attribute="Icon"][data-size="small"]
|
|
259
|
-
*/
|
|
260
|
-
function generateCustomSxProp(props, providedSx) {
|
|
261
|
-
// Possible data attributes: data-size, data-block, data-no-visuals
|
|
262
|
-
const size = `[data-size="${props.size}"]`;
|
|
263
|
-
const block = props.block ? `[data-block="block"]` : '';
|
|
264
|
-
const noVisuals = props.leadingVisual || props.trailingVisual || props.trailingAction ? '' : '[data-no-visuals]';
|
|
265
|
-
|
|
266
|
-
// this is a custom selector. We need to make sure we add the data attributes to the base css class (& -> &[data-attributename="value"]])
|
|
267
|
-
const cssSelector = `&${size}${block}${noVisuals}`; // &[data-size="small"][data-block="block"][data-no-visuals]
|
|
268
|
-
|
|
269
|
-
const customSxProp = {};
|
|
270
|
-
if (!providedSx) return customSxProp;else {
|
|
271
|
-
customSxProp[cssSelector] = providedSx;
|
|
272
|
-
return customSxProp;
|
|
273
|
-
}
|
|
274
|
-
}
|
|
275
|
-
ButtonComponent.displayName = 'Button';
|
|
276
|
-
|
|
277
175
|
const Checkbox = /*#__PURE__*/forwardRef(function Checkbox(props, ref) {
|
|
278
176
|
return /*#__PURE__*/jsx(Box, {
|
|
279
177
|
as: Checkbox$1,
|
|
@@ -390,38 +288,6 @@ const Heading = styled(Heading$1).withConfig({
|
|
|
390
288
|
componentId: "sc-1vc165i-0"
|
|
391
289
|
})(["", ""], sx);
|
|
392
290
|
|
|
393
|
-
const StyledIconButton = /*#__PURE__*/forwardRef(({
|
|
394
|
-
sx,
|
|
395
|
-
...rest
|
|
396
|
-
}, ref) => {
|
|
397
|
-
let sxStyles = sx;
|
|
398
|
-
// grap the button props that have associated data attributes in the styles
|
|
399
|
-
const {
|
|
400
|
-
size = 'medium'
|
|
401
|
-
} = rest;
|
|
402
|
-
if (sx !== null && sx !== undefined && Object.keys(sx).length > 0) {
|
|
403
|
-
sxStyles = generateCustomSxProp({
|
|
404
|
-
size
|
|
405
|
-
}, sx);
|
|
406
|
-
}
|
|
407
|
-
return /*#__PURE__*/jsx(Box, {
|
|
408
|
-
sx: sxStyles,
|
|
409
|
-
as: IconButton$1,
|
|
410
|
-
ref: ref,
|
|
411
|
-
...rest
|
|
412
|
-
});
|
|
413
|
-
});
|
|
414
|
-
const IconButton = /*#__PURE__*/forwardRef(({
|
|
415
|
-
as,
|
|
416
|
-
...props
|
|
417
|
-
}, ref) => /*#__PURE__*/jsx(StyledIconButton, {
|
|
418
|
-
...props,
|
|
419
|
-
...(as ? {
|
|
420
|
-
forwardedAs: as
|
|
421
|
-
} : {}),
|
|
422
|
-
ref: ref
|
|
423
|
-
}));
|
|
424
|
-
|
|
425
291
|
const StyledLabel = /*#__PURE__*/forwardRef(function Label(props, ref) {
|
|
426
292
|
return /*#__PURE__*/jsx(Box, {
|
|
427
293
|
as: Label$1,
|
|
@@ -526,6 +392,39 @@ const Overlay = styled(Overlay$1).withConfig({
|
|
|
526
392
|
componentId: "sc-tjbd74-0"
|
|
527
393
|
})(["", ""], sx);
|
|
528
394
|
|
|
395
|
+
const Wrapper = styled.div.withConfig({
|
|
396
|
+
displayName: "PageLayout__Wrapper",
|
|
397
|
+
componentId: "sc-pjybtc-0"
|
|
398
|
+
})(["", ""], sx);
|
|
399
|
+
const PageLayoutImpl = /*#__PURE__*/React.forwardRef((props, ref) => {
|
|
400
|
+
// @ts-expect-error - PrimerPageLayout is not recognized as a valid component type
|
|
401
|
+
return /*#__PURE__*/jsx(Wrapper, {
|
|
402
|
+
as: PageLayout$1,
|
|
403
|
+
ref: ref,
|
|
404
|
+
...props
|
|
405
|
+
});
|
|
406
|
+
});
|
|
407
|
+
const PageLayoutContent = /*#__PURE__*/React.forwardRef((props, ref) => {
|
|
408
|
+
return /*#__PURE__*/jsx(Wrapper, {
|
|
409
|
+
as: PageLayout$1.Content,
|
|
410
|
+
ref: ref,
|
|
411
|
+
...props
|
|
412
|
+
});
|
|
413
|
+
});
|
|
414
|
+
const PageLayoutPane = /*#__PURE__*/React.forwardRef((props, ref) => {
|
|
415
|
+
return /*#__PURE__*/jsx(Wrapper, {
|
|
416
|
+
as: PageLayout$1.Pane,
|
|
417
|
+
ref: ref,
|
|
418
|
+
...props
|
|
419
|
+
});
|
|
420
|
+
});
|
|
421
|
+
const PageLayout = Object.assign(PageLayoutImpl, {
|
|
422
|
+
Content: PageLayoutContent,
|
|
423
|
+
Header: PageLayout$1.Header,
|
|
424
|
+
Pane: PageLayoutPane,
|
|
425
|
+
Footer: PageLayout$1.Footer
|
|
426
|
+
});
|
|
427
|
+
|
|
529
428
|
const RadioGroupImpl = props => {
|
|
530
429
|
return /*#__PURE__*/jsx(Box, {
|
|
531
430
|
as: RadioGroup$1,
|
|
@@ -643,38 +542,6 @@ const Text = /*#__PURE__*/forwardRef(({
|
|
|
643
542
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
644
543
|
});
|
|
645
544
|
|
|
646
|
-
const StyledTextInput = /*#__PURE__*/forwardRef((props, ref) => {
|
|
647
|
-
return /*#__PURE__*/jsx(Box, {
|
|
648
|
-
as: TextInput$1,
|
|
649
|
-
ref: ref,
|
|
650
|
-
...props
|
|
651
|
-
});
|
|
652
|
-
});
|
|
653
|
-
const TextInputImpl = /*#__PURE__*/forwardRef(({
|
|
654
|
-
as,
|
|
655
|
-
...props
|
|
656
|
-
}, ref) => {
|
|
657
|
-
return /*#__PURE__*/jsx(StyledTextInput, {
|
|
658
|
-
ref: ref,
|
|
659
|
-
...props,
|
|
660
|
-
...(as ? {
|
|
661
|
-
forwardedAs: as
|
|
662
|
-
} : {})
|
|
663
|
-
});
|
|
664
|
-
});
|
|
665
|
-
const TextInputAction = /*#__PURE__*/forwardRef((props, ref) => {
|
|
666
|
-
return /*#__PURE__*/jsx(Box, {
|
|
667
|
-
as: TextInput$1.Action,
|
|
668
|
-
ref: ref,
|
|
669
|
-
...props
|
|
670
|
-
});
|
|
671
|
-
});
|
|
672
|
-
const TextInput = Object.assign(TextInputImpl, {
|
|
673
|
-
Action: TextInputAction
|
|
674
|
-
});
|
|
675
|
-
TextInputAction.displayName = 'TextInputAction';
|
|
676
|
-
TextInputImpl.displayName = 'TextInput';
|
|
677
|
-
|
|
678
545
|
const TimelineImpl = /*#__PURE__*/forwardRef(function Timeline(props, ref) {
|
|
679
546
|
return /*#__PURE__*/jsx(Box, {
|
|
680
547
|
as: Timeline$1,
|
|
@@ -798,4 +665,4 @@ const UnderlineNav = Object.assign(UnderlineNavImpl, {
|
|
|
798
665
|
Item: UnderlineNavItem
|
|
799
666
|
});
|
|
800
667
|
|
|
801
|
-
export { ActionList, ActionMenu, Autocomplete, Avatar, Breadcrumb, Breadcrumbs,
|
|
668
|
+
export { ActionList, ActionMenu, Autocomplete, Avatar, Breadcrumb, Breadcrumbs, Checkbox, CheckboxGroup, CircleBadge, CounterLabel, Flash, Header, Heading, Label, Link, LinkButton, NavList, Overlay, PageLayout, RadioGroup, RelativeTime, SegmentedControl, Spinner, StateLabel, SubNav, Text, Timeline, ToggleSwitch, Token, Truncate, UnderlineNav };
|
package/dist/sx.d.ts
CHANGED
package/dist/sx.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sx.d.ts","sourceRoot":"","sources":["../src/sx.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,EAAE,EAAE,KAAK,MAAM,EAAC,MAAM,eAAe,CAAA
|
|
1
|
+
{"version":3,"file":"sx.d.ts","sourceRoot":"","sources":["../src/sx.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,EAAE,EAAE,KAAK,MAAM,EAAC,MAAM,eAAe,CAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@primer/styled-react",
|
|
3
|
-
"version": "0.0.0-
|
|
3
|
+
"version": "0.0.0-20251006204533",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@babel/preset-react": "^7.27.1",
|
|
32
32
|
"@babel/preset-typescript": "^7.27.1",
|
|
33
|
-
"@primer/react": "0.0.0-
|
|
33
|
+
"@primer/react": "0.0.0-20251006204533",
|
|
34
34
|
"@rollup/plugin-babel": "^6.0.4",
|
|
35
35
|
"@types/react": "18.3.11",
|
|
36
36
|
"@types/react-dom": "18.3.1",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"typescript": "^5.9.2"
|
|
47
47
|
},
|
|
48
48
|
"peerDependencies": {
|
|
49
|
-
"@primer/react": "0.0.0-
|
|
49
|
+
"@primer/react": "0.0.0-20251006204533",
|
|
50
50
|
"@types/react": "18.x || 19.x",
|
|
51
51
|
"@types/react-dom": "18.x || 19.x",
|
|
52
52
|
"@types/react-is": "18.x || 19.x",
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { type ButtonProps as PrimerButtonProps } from '@primer/react';
|
|
2
|
-
import type { SxProp } from '../sx';
|
|
3
|
-
import type { BetterSystemStyleObject } from '../styled-props';
|
|
4
|
-
import type { ForwardRefComponent } from '../polymorphic';
|
|
5
|
-
type ButtonComponentProps = PrimerButtonProps & SxProp & {
|
|
6
|
-
as?: React.ElementType;
|
|
7
|
-
};
|
|
8
|
-
declare const ButtonComponent: ForwardRefComponent<"button", ButtonComponentProps>;
|
|
9
|
-
export declare function generateCustomSxProp(props: Partial<Pick<PrimerButtonProps, 'size' | 'block' | 'leadingVisual' | 'trailingVisual' | 'trailingAction'>>, providedSx: BetterSystemStyleObject): {
|
|
10
|
-
[key: string]: BetterSystemStyleObject;
|
|
11
|
-
};
|
|
12
|
-
export { ButtonComponent, type ButtonComponentProps };
|
|
13
|
-
//# sourceMappingURL=Button.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Button.d.ts","sourceRoot":"","sources":["../../src/components/Button.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAyB,KAAK,WAAW,IAAI,iBAAiB,EAAC,MAAM,eAAe,CAAA;AAC3F,OAAO,KAAK,EAAC,MAAM,EAAsB,MAAM,OAAO,CAAA;AACtD,OAAO,KAAK,EAAC,uBAAuB,EAAC,MAAM,iBAAiB,CAAA;AAG5D,OAAO,KAAK,EAAC,mBAAmB,EAAC,MAAM,gBAAgB,CAAA;AAEvD,KAAK,oBAAoB,GAAG,iBAAiB,GAAG,MAAM,GAAG;IAAC,EAAE,CAAC,EAAE,KAAK,CAAC,WAAW,CAAA;CAAC,CAAA;AAoBjF,QAAA,MAAM,eAAe,EAEf,mBAAmB,CAAC,QAAQ,EAAE,oBAAoB,CAAC,CAAA;AA0CzD,wBAAgB,oBAAoB,CAClC,KAAK,EAAE,OAAO,CAAC,IAAI,CAAC,iBAAiB,EAAE,MAAM,GAAG,OAAO,GAAG,eAAe,GAAG,gBAAgB,GAAG,gBAAgB,CAAC,CAAC,EACjH,UAAU,EAAE,uBAAuB;;EAmBpC;AAID,OAAO,EAAC,eAAe,EAAE,KAAK,oBAAoB,EAAC,CAAA"}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { type IconButtonProps as PrimerIconButtonProps, type SxProp } from '@primer/react';
|
|
2
|
-
import { type ForwardRefComponent } from '../polymorphic';
|
|
3
|
-
type IconButtonProps = PrimerIconButtonProps & SxProp & {
|
|
4
|
-
as?: React.ElementType;
|
|
5
|
-
};
|
|
6
|
-
declare const IconButton: ForwardRefComponent<"a" | "button", IconButtonProps>;
|
|
7
|
-
export { IconButton };
|
|
8
|
-
export type { IconButtonProps };
|
|
9
|
-
//# sourceMappingURL=IconButton.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"IconButton.d.ts","sourceRoot":"","sources":["../../src/components/IconButton.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAiC,KAAK,eAAe,IAAI,qBAAqB,EAAE,KAAK,MAAM,EAAC,MAAM,eAAe,CAAA;AACxH,OAAO,EAAC,KAAK,mBAAmB,EAAC,MAAM,gBAAgB,CAAA;AAKvD,KAAK,eAAe,GAAG,qBAAqB,GAAG,MAAM,GAAG;IAAC,EAAE,CAAC,EAAE,KAAK,CAAC,WAAW,CAAA;CAAC,CAAA;AAahF,QAAA,MAAM,UAAU,EAEV,mBAAmB,CAAC,GAAG,GAAG,QAAQ,EAAE,eAAe,CAAC,CAAA;AAE1D,OAAO,EAAC,UAAU,EAAC,CAAA;AACnB,YAAY,EAAC,eAAe,EAAC,CAAA"}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { type TextInputProps as PrimerTextInputProps, type TextInputActionProps as PrimerTextInputActionProps } from '@primer/react';
|
|
2
|
-
import type { SxProp } from '../sx';
|
|
3
|
-
import type { ForwardRefExoticComponent, RefAttributes } from 'react';
|
|
4
|
-
export type TextInputProps = PrimerTextInputProps & SxProp & {
|
|
5
|
-
as?: React.ElementType;
|
|
6
|
-
};
|
|
7
|
-
export type TextInputActionProps = PrimerTextInputActionProps & SxProp;
|
|
8
|
-
declare const TextInputAction: ForwardRefExoticComponent<Omit<import("react").ButtonHTMLAttributes<HTMLButtonElement>, "size" | "aria-label" | "tooltipDirection"> & {
|
|
9
|
-
children?: React.ReactNode;
|
|
10
|
-
"aria-label"?: string;
|
|
11
|
-
tooltipDirection?: "n" | "ne" | "e" | "se" | "s" | "sw" | "w" | "nw";
|
|
12
|
-
icon?: React.FunctionComponent<React.PropsWithChildren<import("@primer/octicons-react").IconProps>>;
|
|
13
|
-
variant?: import("@primer/react").ButtonProps["variant"];
|
|
14
|
-
} & SxProp & RefAttributes<HTMLButtonElement>>;
|
|
15
|
-
type TextInputComposite = ForwardRefExoticComponent<TextInputProps & RefAttributes<HTMLInputElement>> & {
|
|
16
|
-
Action: typeof TextInputAction;
|
|
17
|
-
};
|
|
18
|
-
export declare const TextInput: TextInputComposite;
|
|
19
|
-
export {};
|
|
20
|
-
//# sourceMappingURL=TextInput.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"TextInput.d.ts","sourceRoot":"","sources":["../../src/components/TextInput.tsx"],"names":[],"mappings":"AAAA,OAAO,EAEL,KAAK,cAAc,IAAI,oBAAoB,EAC3C,KAAK,oBAAoB,IAAI,0BAA0B,EACxD,MAAM,eAAe,CAAA;AAGtB,OAAO,KAAK,EAAC,MAAM,EAAC,MAAM,OAAO,CAAA;AACjC,OAAO,KAAK,EAAC,yBAAyB,EAAE,aAAa,EAAC,MAAM,OAAO,CAAA;AAEnE,MAAM,MAAM,cAAc,GAAG,oBAAoB,GAAG,MAAM,GAAG;IAAC,EAAE,CAAC,EAAE,KAAK,CAAC,WAAW,CAAA;CAAC,CAAA;AACrF,MAAM,MAAM,oBAAoB,GAAG,0BAA0B,GAAG,MAAM,CAAA;AAUtE,QAAA,MAAM,eAAe;;;;;;8CAEnB,CAAA;AAEF,KAAK,kBAAkB,GAAG,yBAAyB,CAAC,cAAc,GAAG,aAAa,CAAC,gBAAgB,CAAC,CAAC,GAAG;IACtG,MAAM,EAAE,OAAO,eAAe,CAAA;CAC/B,CAAA;AAED,eAAO,MAAM,SAAS,EAAE,kBAEtB,CAAA"}
|