braid-design-system 33.14.0 → 34.0.0-master-20251216041157
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/CHANGELOG.md +105 -0
- package/README.md +6 -6
- package/dist/index.cjs +0 -2
- package/dist/index.d.mts +6 -164
- package/dist/index.d.ts +6 -164
- package/dist/index.mjs +0 -2
- package/dist/lib/color/palette.cjs +1 -3
- package/dist/lib/color/palette.mjs +1 -3
- package/dist/lib/components/Alert/Alert.cjs +42 -63
- package/dist/lib/components/Alert/Alert.mjs +43 -64
- package/dist/lib/components/Box/BackgroundContext.mjs +1 -1
- package/dist/lib/components/Button/Button.cjs +5 -18
- package/dist/lib/components/Button/Button.mjs +5 -18
- package/dist/lib/components/Card/Card.cjs +3 -20
- package/dist/lib/components/Card/Card.mjs +3 -20
- package/dist/lib/components/Hidden/Hidden.cjs +1 -16
- package/dist/lib/components/Hidden/Hidden.mjs +1 -14
- package/dist/lib/components/MenuItem/useMenuItem.cjs +3 -7
- package/dist/lib/components/MenuItem/useMenuItem.css.cjs +1 -0
- package/dist/lib/components/MenuItem/useMenuItem.css.mjs +1 -0
- package/dist/lib/components/MenuItem/useMenuItem.mjs +3 -7
- package/dist/lib/components/MenuRenderer/MenuRenderer.cjs +1 -2
- package/dist/lib/components/MenuRenderer/MenuRenderer.mjs +1 -2
- package/dist/lib/components/Pagination/Pagination.cjs +45 -52
- package/dist/lib/components/Pagination/Pagination.css.cjs +1 -2
- package/dist/lib/components/Pagination/Pagination.css.mjs +2 -3
- package/dist/lib/components/Pagination/Pagination.mjs +46 -53
- package/dist/lib/components/Toggle/Toggle.cjs +5 -22
- package/dist/lib/components/Toggle/Toggle.css.cjs +0 -4
- package/dist/lib/components/Toggle/Toggle.css.mjs +0 -4
- package/dist/lib/components/Toggle/Toggle.mjs +6 -21
- package/dist/lib/css/atoms/atomicProperties.cjs +1 -3
- package/dist/lib/css/atoms/atomicProperties.mjs +1 -3
- package/dist/lib/css/atoms/atoms.cjs +0 -36
- package/dist/lib/css/atoms/atoms.mjs +0 -34
- package/dist/lib/playroom/snippets/Card.cjs +0 -3
- package/dist/lib/playroom/snippets/Card.mjs +0 -3
- package/dist/lib/themes/baseTokens/nvl.cjs +0 -2
- package/dist/lib/themes/baseTokens/nvl.mjs +0 -2
- package/dist/lib/themes/docs/tokens.cjs +0 -2
- package/dist/lib/themes/docs/tokens.mjs +0 -2
- package/dist/lib/themes/index.cjs +0 -2
- package/dist/lib/themes/index.mjs +0 -2
- package/dist/lib/themes/makeRuntimeTokens.cjs +0 -8
- package/dist/lib/themes/makeRuntimeTokens.mjs +0 -8
- package/dist/lib/themes/makeVanillaTheme.cjs +2 -7
- package/dist/lib/themes/makeVanillaTheme.mjs +2 -7
- package/dist/lib/themes/wireframe/tokens.cjs +0 -2
- package/dist/lib/themes/wireframe/tokens.mjs +0 -2
- package/dist/playroom/components.cjs +0 -2
- package/dist/playroom/components.d.mts +1 -1
- package/dist/playroom/components.d.ts +1 -1
- package/dist/playroom/components.mjs +0 -2
- package/dist/themes/docs.d.mts +1 -1
- package/dist/themes/docs.d.ts +1 -1
- package/dist/themes/seekBusiness.d.mts +1 -1
- package/dist/themes/seekBusiness.d.ts +1 -1
- package/dist/themes/seekJobs.d.mts +1 -1
- package/dist/themes/seekJobs.d.ts +1 -1
- package/dist/themes/wireframe.d.mts +1 -1
- package/dist/themes/wireframe.d.ts +1 -1
- package/package.json +5 -14
- package/dist/lib/components/icons/IconList/IconList.cjs +0 -25
- package/dist/lib/components/icons/IconList/IconList.mjs +0 -24
- package/dist/lib/components/icons/IconList/IconListSvg.cjs +0 -24
- package/dist/lib/components/icons/IconList/IconListSvg.mjs +0 -25
- package/dist/lib/themes/apac/apacTheme.css.cjs +0 -8
- package/dist/lib/themes/apac/apacTheme.css.mjs +0 -9
- package/dist/lib/themes/apac/index.cjs +0 -2
- package/dist/lib/themes/apac/index.mjs +0 -1
- package/dist/lib/themes/apac/tokens.cjs +0 -272
- package/dist/lib/themes/apac/tokens.mjs +0 -271
- package/dist/themes/apac.cjs +0 -3
- package/dist/themes/apac.d.mts +0 -1
- package/dist/themes/apac.d.ts +0 -1
- package/dist/themes/apac.mjs +0 -4
- package/themes/apac/index.d.ts +0 -2
- package/themes/apac/package.json +0 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,110 @@
|
|
|
1
1
|
# braid-design-system
|
|
2
2
|
|
|
3
|
+
## 34.0.0-master-20251216041157
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- **Hidden:** Remove `screen` prop ([#1947](https://github.com/seek-oss/braid-design-system/pull/1947))
|
|
8
|
+
|
|
9
|
+
Remove the deprecated `screen` prop from the `Hidden` component.
|
|
10
|
+
For content designed to improve the screen reader experience, please use use the `HiddenVisually` component instead.
|
|
11
|
+
Alternatively, for content designed to be hidden unconditionally, remove the `screen` prop.
|
|
12
|
+
|
|
13
|
+
**MIGRATION GUIDE:**
|
|
14
|
+
|
|
15
|
+
```diff
|
|
16
|
+
- <Hidden screen>
|
|
17
|
+
+ <Hidden>
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
- **Box, atoms:** Remove deprecated `rating` variable. ([#1947](https://github.com/seek-oss/braid-design-system/pull/1947))
|
|
21
|
+
|
|
22
|
+
Consumers should use the `brandAccent` or `neutral` variables instead.
|
|
23
|
+
|
|
24
|
+
**MIGRATION GUIDE:**
|
|
25
|
+
|
|
26
|
+
```diff
|
|
27
|
+
# styles.css.ts
|
|
28
|
+
import { vars } from 'braid-design-system/css';
|
|
29
|
+
|
|
30
|
+
export const myStyle = style({
|
|
31
|
+
- color: vars.foregroundColor.rating,
|
|
32
|
+
+ color: vars.foregroundColor.brandAccent,
|
|
33
|
+
});
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
- **Card:** Remove `rounded` prop ([#1947](https://github.com/seek-oss/braid-design-system/pull/1947))
|
|
37
|
+
|
|
38
|
+
The `rounded` prop only affected deleted themes such as `apac` and has no effect on supported themes.
|
|
39
|
+
|
|
40
|
+
**MIGRATION GUIDE:**
|
|
41
|
+
|
|
42
|
+
```diff
|
|
43
|
+
- <Card rounded>...</Card>
|
|
44
|
+
+ <Card>...</Card>
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
- **Box, atoms**: Remove deprecated `outline` value `none`, and `boxShadow` value `outlineFocus`. ([#1947](https://github.com/seek-oss/braid-design-system/pull/1947))
|
|
48
|
+
|
|
49
|
+
Braid leverages the `outline` property directly, managing focus rings of interactive elements as part of its scoped CSS reset.
|
|
50
|
+
|
|
51
|
+
**MIGRATION GUIDE:**
|
|
52
|
+
|
|
53
|
+
For styling the focus ring via `Box`:
|
|
54
|
+
1. Remove usage of `outline="none"` and `boxShadow="outlineFocus"`
|
|
55
|
+
2. Refer to [`focus outlines`] for guidance on leveraging Braid's focus outline styles.
|
|
56
|
+
|
|
57
|
+
```diff
|
|
58
|
+
- <Box outline="none" className={styles.customFocusStyles} />
|
|
59
|
+
+ <Box />
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
For styling the focus outline of an element based on the focus of another element, see [`outlineStyle`].
|
|
63
|
+
|
|
64
|
+
[`focus outlines`]: https://seek-oss.github.io/braid-design-system/components/Box#focus-outlines
|
|
65
|
+
[`outlineStyle`]: https://seek-oss.github.io/braid-design-system/css/outlineStyle
|
|
66
|
+
|
|
67
|
+
- **apac:** Remove in favour of `seekJobs` theme ([#1947](https://github.com/seek-oss/braid-design-system/pull/1947))
|
|
68
|
+
|
|
69
|
+
The previously deprecated `apac` theme has been removed.
|
|
70
|
+
Consumers should migrate to the `seekJobs` theme.
|
|
71
|
+
|
|
72
|
+
**MIGRATION GUIDE:**
|
|
73
|
+
|
|
74
|
+
```diff
|
|
75
|
+
# App.tsx
|
|
76
|
+
- import apac from 'braid-design-system/themes/apac';
|
|
77
|
+
+ import seekJobs from 'braid-design-system/themes/seekJobs';
|
|
78
|
+
|
|
79
|
+
- <BraidProvider theme={apac} ...>
|
|
80
|
+
+ <BraidProvider theme={seekJobs} ...>
|
|
81
|
+
```
|
|
82
|
+
|
|
83
|
+
- **IconList:** Remove deprecated component, in favour of more specific list types: `IconBulletList` and `IconNumberedList`. ([#1947](https://github.com/seek-oss/braid-design-system/pull/1947))
|
|
84
|
+
|
|
85
|
+
**MIGRATION GUIDE:**
|
|
86
|
+
|
|
87
|
+
```diff
|
|
88
|
+
-<IconList />
|
|
89
|
+
+<IconBulletList />
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
- **Toggle:** Remove `bleedY` prop ([#1947](https://github.com/seek-oss/braid-design-system/pull/1947))
|
|
93
|
+
|
|
94
|
+
Remove the deprecated `bleedY` prop from the `Toggle` component.
|
|
95
|
+
Consumers should remove use of the `bleedY` prop, and if previously setting `bleedY` to false, should update their layout accordingly.
|
|
96
|
+
|
|
97
|
+
**MIGRATION GUIDE:**
|
|
98
|
+
|
|
99
|
+
```diff
|
|
100
|
+
- <Toggle bleedY />
|
|
101
|
+
+ <Toggle />
|
|
102
|
+
```
|
|
103
|
+
|
|
104
|
+
### Patch Changes
|
|
105
|
+
|
|
106
|
+
- Update `is-mobile` dependency ([#1945](https://github.com/seek-oss/braid-design-system/pull/1945))
|
|
107
|
+
|
|
3
108
|
## 33.14.0
|
|
4
109
|
|
|
5
110
|
### Minor Changes
|
package/README.md
CHANGED
|
@@ -30,7 +30,7 @@ For example:
|
|
|
30
30
|
|
|
31
31
|
```js
|
|
32
32
|
import 'braid-design-system/reset'; // <-- Must be first
|
|
33
|
-
import
|
|
33
|
+
import seekJobsTheme from 'braid-design-system/themes/seekJobs';
|
|
34
34
|
import { BraidProvider, Text } from 'braid-design-system';
|
|
35
35
|
// ...etc.
|
|
36
36
|
```
|
|
@@ -39,11 +39,11 @@ Finally, render the `BraidProvider` component, providing the imported theme via
|
|
|
39
39
|
|
|
40
40
|
```js
|
|
41
41
|
import 'braid-design-system/reset';
|
|
42
|
-
import
|
|
42
|
+
import seekJobsTheme from 'braid-design-system/themes/seekJobs';
|
|
43
43
|
import { BraidProvider, Text } from 'braid-design-system';
|
|
44
44
|
|
|
45
45
|
export default () => (
|
|
46
|
-
<BraidProvider theme={
|
|
46
|
+
<BraidProvider theme={seekJobsTheme}>
|
|
47
47
|
<Text>Hello World!</Text>
|
|
48
48
|
</BraidProvider>
|
|
49
49
|
);
|
|
@@ -52,7 +52,7 @@ export default () => (
|
|
|
52
52
|
If you're rendering within the context of another application, you may want to opt out of the provided body styles, which set the background color and reset margin and padding:
|
|
53
53
|
|
|
54
54
|
```js
|
|
55
|
-
<BraidProvider theme={
|
|
55
|
+
<BraidProvider theme={seekJobsTheme} styleBody={false}>
|
|
56
56
|
<Text>Hello World!</Text>
|
|
57
57
|
</BraidProvider>
|
|
58
58
|
```
|
|
@@ -115,9 +115,9 @@ At SEEK this is done via [sku] as part of the build process.
|
|
|
115
115
|
|
|
116
116
|
To ensure correct usage of its components, Braid performs some precondition and invariant checking at runtime using the [assert] library.
|
|
117
117
|
|
|
118
|
-
To prevent these checks from being included in production builds and
|
|
118
|
+
To prevent these checks from being included in production builds and disrupting the end user experience, it is recommended that `assert` calls are stripped at build time using the [unassert] library.
|
|
119
119
|
|
|
120
|
-
At SEEK this is done
|
|
120
|
+
At SEEK this is done by [sku] as part of the build process via [Babel] with the [babel-plugin-unassert] plugin.
|
|
121
121
|
|
|
122
122
|
[assert]: https://www.npmjs.com/package/assert
|
|
123
123
|
[unassert]: https://www.npmjs.com/package/unassert
|
package/dist/index.cjs
CHANGED
|
@@ -133,7 +133,6 @@ const lib_components_icons_IconLanguage_IconLanguage_cjs = require("./lib/compon
|
|
|
133
133
|
const lib_components_icons_IconLicence_IconLicence_cjs = require("./lib/components/icons/IconLicence/IconLicence.cjs");
|
|
134
134
|
const lib_components_icons_IconLink_IconLink_cjs = require("./lib/components/icons/IconLink/IconLink.cjs");
|
|
135
135
|
const lib_components_icons_IconLinkBroken_IconLinkBroken_cjs = require("./lib/components/icons/IconLinkBroken/IconLinkBroken.cjs");
|
|
136
|
-
const lib_components_icons_IconList_IconList_cjs = require("./lib/components/icons/IconList/IconList.cjs");
|
|
137
136
|
const lib_components_icons_IconLocation_IconLocation_cjs = require("./lib/components/icons/IconLocation/IconLocation.cjs");
|
|
138
137
|
const lib_components_icons_IconMail_IconMail_cjs = require("./lib/components/icons/IconMail/IconMail.cjs");
|
|
139
138
|
const lib_components_icons_IconMessage_IconMessage_cjs = require("./lib/components/icons/IconMessage/IconMessage.cjs");
|
|
@@ -331,7 +330,6 @@ exports.IconLanguage = lib_components_icons_IconLanguage_IconLanguage_cjs.IconLa
|
|
|
331
330
|
exports.IconLicence = lib_components_icons_IconLicence_IconLicence_cjs.IconLicence;
|
|
332
331
|
exports.IconLink = lib_components_icons_IconLink_IconLink_cjs.IconLink;
|
|
333
332
|
exports.IconLinkBroken = lib_components_icons_IconLinkBroken_IconLinkBroken_cjs.IconLinkBroken;
|
|
334
|
-
exports.IconList = lib_components_icons_IconList_IconList_cjs.IconList;
|
|
335
333
|
exports.IconLocation = lib_components_icons_IconLocation_IconLocation_cjs.IconLocation;
|
|
336
334
|
exports.IconMail = lib_components_icons_IconMail_IconMail_cjs.IconMail;
|
|
337
335
|
exports.IconMessage = lib_components_icons_IconMessage_IconMessage_cjs.IconMessage;
|
package/dist/index.d.mts
CHANGED
|
@@ -31,14 +31,6 @@ type FontWeight = 'regular' | 'medium' | 'strong';
|
|
|
31
31
|
interface BraidTokens {
|
|
32
32
|
name: string;
|
|
33
33
|
displayName: string;
|
|
34
|
-
/**
|
|
35
|
-
* The boundary for making updated design decisions without disturbing
|
|
36
|
-
* existing consumers. Updated decisions can be assessed as part of
|
|
37
|
-
* migrating between themes.
|
|
38
|
-
*
|
|
39
|
-
* This token will be removed when the `apac` theme is retired.
|
|
40
|
-
*/
|
|
41
|
-
legacy: boolean;
|
|
42
34
|
typography: {
|
|
43
35
|
fontFamily: string;
|
|
44
36
|
webFont: string | null;
|
|
@@ -151,8 +143,6 @@ interface BraidTokens {
|
|
|
151
143
|
positive: string;
|
|
152
144
|
promoteLight: string;
|
|
153
145
|
promote: string;
|
|
154
|
-
/** @deprecated Recommend using `brandAccent` or `neutral` instead. */
|
|
155
|
-
rating: string;
|
|
156
146
|
secondary: string;
|
|
157
147
|
secondaryInverted: string;
|
|
158
148
|
};
|
|
@@ -204,7 +194,6 @@ declare const makeBraidTheme: (tokens: BraidTokens) => {
|
|
|
204
194
|
vanillaTheme: string;
|
|
205
195
|
name: string;
|
|
206
196
|
displayName: string;
|
|
207
|
-
legacy: boolean;
|
|
208
197
|
background: {
|
|
209
198
|
lightMode: string;
|
|
210
199
|
darkMode: string;
|
|
@@ -250,7 +239,6 @@ declare const makeBraidTheme: (tokens: BraidTokens) => {
|
|
|
250
239
|
positive: string;
|
|
251
240
|
promoteLight: string;
|
|
252
241
|
promote: string;
|
|
253
|
-
rating: string;
|
|
254
242
|
secondary: string;
|
|
255
243
|
secondaryInverted: string;
|
|
256
244
|
};
|
|
@@ -366,7 +354,6 @@ declare const useColor: () => {
|
|
|
366
354
|
positive: string;
|
|
367
355
|
promoteLight: string;
|
|
368
356
|
promote: string;
|
|
369
|
-
rating: string;
|
|
370
357
|
secondary: string;
|
|
371
358
|
secondaryInverted: string;
|
|
372
359
|
};
|
|
@@ -899,13 +886,6 @@ declare const colorAtomicProperties: {
|
|
|
899
886
|
darkMode: string;
|
|
900
887
|
};
|
|
901
888
|
};
|
|
902
|
-
outlineFocus: {
|
|
903
|
-
defaultClass: string;
|
|
904
|
-
conditions: {
|
|
905
|
-
lightMode: string;
|
|
906
|
-
darkMode: string;
|
|
907
|
-
};
|
|
908
|
-
};
|
|
909
889
|
};
|
|
910
890
|
};
|
|
911
891
|
};
|
|
@@ -2194,7 +2174,7 @@ declare const responsiveAtomicProperties: {
|
|
|
2194
2174
|
declare const sprinkles: ((props: {
|
|
2195
2175
|
readonly overflow?: "hidden" | "scroll" | "visible" | "auto" | undefined;
|
|
2196
2176
|
readonly userSelect?: "none" | undefined;
|
|
2197
|
-
readonly outline?: "
|
|
2177
|
+
readonly outline?: "focus" | undefined;
|
|
2198
2178
|
readonly opacity?: 0 | undefined;
|
|
2199
2179
|
readonly zIndex?: 0 | 2 | 1 | "dropdownBackdrop" | "dropdown" | "sticky" | "modalBackdrop" | "modal" | "notification" | undefined;
|
|
2200
2180
|
readonly cursor?: "default" | "pointer" | undefined;
|
|
@@ -2369,9 +2349,9 @@ declare const sprinkles: ((props: {
|
|
|
2369
2349
|
lightMode?: "brandAccent" | "caution" | "cautionLight" | "critical" | "criticalLight" | "formAccent" | "info" | "infoLight" | "neutral" | "neutralLight" | "positive" | "positiveLight" | "promote" | "promoteLight" | "body" | "bodyDark" | "brand" | "brandAccentActive" | "brandAccentHover" | "brandAccentSoft" | "brandAccentSoftActive" | "brandAccentSoftHover" | "criticalActive" | "criticalHover" | "criticalSoft" | "criticalSoftActive" | "criticalSoftHover" | "formAccentActive" | "formAccentHover" | "formAccentSoft" | "formAccentSoftActive" | "formAccentSoftHover" | "neutralActive" | "neutralHover" | "neutralSoft" | "neutralSoftActive" | "neutralSoftHover" | "surface" | "surfaceDark" | undefined;
|
|
2370
2350
|
darkMode?: "brandAccent" | "caution" | "cautionLight" | "critical" | "criticalLight" | "formAccent" | "info" | "infoLight" | "neutral" | "neutralLight" | "positive" | "positiveLight" | "promote" | "promoteLight" | "body" | "bodyDark" | "brand" | "brandAccentActive" | "brandAccentHover" | "brandAccentSoft" | "brandAccentSoftActive" | "brandAccentSoftHover" | "criticalActive" | "criticalHover" | "criticalSoft" | "criticalSoftActive" | "criticalSoftHover" | "formAccentActive" | "formAccentHover" | "formAccentSoft" | "formAccentSoftActive" | "formAccentSoftHover" | "neutralActive" | "neutralHover" | "neutralSoft" | "neutralSoftActive" | "neutralSoftHover" | "surface" | "surfaceDark" | undefined;
|
|
2371
2351
|
} | undefined;
|
|
2372
|
-
readonly boxShadow?: "small" | "medium" | "large" | "borderBrandAccent" | "borderBrandAccentLight" | "borderBrandAccentLarge" | "borderBrandAccentLightLarge" | "borderCaution" | "borderCautionLight" | "borderCritical" | "borderCriticalLarge" | "borderCriticalLight" | "borderCriticalLightLarge" | "borderField" | "borderFormAccent" | "borderFormAccentLarge" | "borderFormAccentLight" | "borderFormAccentLightLarge" | "borderInfo" | "borderInfoLight" | "borderNeutral" | "borderNeutralLarge" | "borderNeutralInverted" | "borderNeutralInvertedLarge" | "borderNeutralLight" | "borderPositive" | "borderPositiveLight" | "borderPromote" | "borderPromoteLight" |
|
|
2373
|
-
lightMode?: "small" | "medium" | "large" | "borderBrandAccent" | "borderBrandAccentLight" | "borderBrandAccentLarge" | "borderBrandAccentLightLarge" | "borderCaution" | "borderCautionLight" | "borderCritical" | "borderCriticalLarge" | "borderCriticalLight" | "borderCriticalLightLarge" | "borderField" | "borderFormAccent" | "borderFormAccentLarge" | "borderFormAccentLight" | "borderFormAccentLightLarge" | "borderInfo" | "borderInfoLight" | "borderNeutral" | "borderNeutralLarge" | "borderNeutralInverted" | "borderNeutralInvertedLarge" | "borderNeutralLight" | "borderPositive" | "borderPositiveLight" | "borderPromote" | "borderPromoteLight" |
|
|
2374
|
-
darkMode?: "small" | "medium" | "large" | "borderBrandAccent" | "borderBrandAccentLight" | "borderBrandAccentLarge" | "borderBrandAccentLightLarge" | "borderCaution" | "borderCautionLight" | "borderCritical" | "borderCriticalLarge" | "borderCriticalLight" | "borderCriticalLightLarge" | "borderField" | "borderFormAccent" | "borderFormAccentLarge" | "borderFormAccentLight" | "borderFormAccentLightLarge" | "borderInfo" | "borderInfoLight" | "borderNeutral" | "borderNeutralLarge" | "borderNeutralInverted" | "borderNeutralInvertedLarge" | "borderNeutralLight" | "borderPositive" | "borderPositiveLight" | "borderPromote" | "borderPromoteLight" |
|
|
2352
|
+
readonly boxShadow?: "small" | "medium" | "large" | "borderBrandAccent" | "borderBrandAccentLight" | "borderBrandAccentLarge" | "borderBrandAccentLightLarge" | "borderCaution" | "borderCautionLight" | "borderCritical" | "borderCriticalLarge" | "borderCriticalLight" | "borderCriticalLightLarge" | "borderField" | "borderFormAccent" | "borderFormAccentLarge" | "borderFormAccentLight" | "borderFormAccentLightLarge" | "borderInfo" | "borderInfoLight" | "borderNeutral" | "borderNeutralLarge" | "borderNeutralInverted" | "borderNeutralInvertedLarge" | "borderNeutralLight" | "borderPositive" | "borderPositiveLight" | "borderPromote" | "borderPromoteLight" | {
|
|
2353
|
+
lightMode?: "small" | "medium" | "large" | "borderBrandAccent" | "borderBrandAccentLight" | "borderBrandAccentLarge" | "borderBrandAccentLightLarge" | "borderCaution" | "borderCautionLight" | "borderCritical" | "borderCriticalLarge" | "borderCriticalLight" | "borderCriticalLightLarge" | "borderField" | "borderFormAccent" | "borderFormAccentLarge" | "borderFormAccentLight" | "borderFormAccentLightLarge" | "borderInfo" | "borderInfoLight" | "borderNeutral" | "borderNeutralLarge" | "borderNeutralInverted" | "borderNeutralInvertedLarge" | "borderNeutralLight" | "borderPositive" | "borderPositiveLight" | "borderPromote" | "borderPromoteLight" | undefined;
|
|
2354
|
+
darkMode?: "small" | "medium" | "large" | "borderBrandAccent" | "borderBrandAccentLight" | "borderBrandAccentLarge" | "borderBrandAccentLightLarge" | "borderCaution" | "borderCautionLight" | "borderCritical" | "borderCriticalLarge" | "borderCriticalLight" | "borderCriticalLightLarge" | "borderField" | "borderFormAccent" | "borderFormAccentLarge" | "borderFormAccentLight" | "borderFormAccentLightLarge" | "borderInfo" | "borderInfoLight" | "borderNeutral" | "borderNeutralLarge" | "borderNeutralInverted" | "borderNeutralInvertedLarge" | "borderNeutralLight" | "borderPositive" | "borderPositiveLight" | "borderPromote" | "borderPromoteLight" | undefined;
|
|
2375
2355
|
} | undefined;
|
|
2376
2356
|
}) => string) & {
|
|
2377
2357
|
properties: Set<"background" | "borderRadius" | "transition" | "transform" | "alignItems" | "bottom" | "boxShadow" | "cursor" | "display" | "flexDirection" | "flexGrow" | "flexShrink" | "flexWrap" | "height" | "justifyContent" | "left" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "maxWidth" | "minWidth" | "opacity" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "pointerEvents" | "position" | "right" | "textAlign" | "top" | "userSelect" | "width" | "zIndex" | "gap" | "inset" | "margin" | "outline" | "overflow" | "padding" | "paddingY" | "paddingX" | "marginY" | "marginX">;
|
|
@@ -2462,7 +2442,6 @@ declare const vars$1: {
|
|
|
2462
2442
|
positive: `var(--${string})`;
|
|
2463
2443
|
promoteLight: `var(--${string})`;
|
|
2464
2444
|
promote: `var(--${string})`;
|
|
2465
|
-
rating: `var(--${string})`;
|
|
2466
2445
|
secondary: `var(--${string})`;
|
|
2467
2446
|
secondaryInverted: `var(--${string})`;
|
|
2468
2447
|
};
|
|
@@ -2734,7 +2713,6 @@ declare const boxShadow: {
|
|
|
2734
2713
|
borderPositiveLight: string;
|
|
2735
2714
|
borderPromote: string;
|
|
2736
2715
|
borderPromoteLight: string;
|
|
2737
|
-
outlineFocus: string;
|
|
2738
2716
|
small: `var(--${string})`;
|
|
2739
2717
|
medium: `var(--${string})`;
|
|
2740
2718
|
large: `var(--${string})`;
|
|
@@ -3136,21 +3114,13 @@ interface ButtonLinkProps extends ButtonStyleProps, Omit<LinkComponentProps, 'cl
|
|
|
3136
3114
|
declare const ButtonLink$1: react.ForwardRefExoticComponent<ButtonLinkProps & react.RefAttributes<HTMLAnchorElement>>;
|
|
3137
3115
|
|
|
3138
3116
|
declare const validCardComponents: readonly ["div", "article", "aside", "details", "main", "section"];
|
|
3139
|
-
interface SimpleCardRounding {
|
|
3140
|
-
rounded?: boolean;
|
|
3141
|
-
roundedAbove?: never;
|
|
3142
|
-
}
|
|
3143
|
-
interface ResponsiveCardRounding {
|
|
3144
|
-
rounded?: never;
|
|
3145
|
-
roundedAbove?: ResponsiveRangeProps['above'];
|
|
3146
|
-
}
|
|
3147
3117
|
type CardProps = {
|
|
3148
3118
|
children: ReactNode;
|
|
3149
3119
|
tone?: 'promote' | 'formAccent';
|
|
3150
3120
|
component?: (typeof validCardComponents)[number];
|
|
3151
3121
|
height?: Extract<BoxProps['height'], 'full'> | 'content';
|
|
3152
3122
|
data?: DataAttributeMap;
|
|
3153
|
-
}
|
|
3123
|
+
};
|
|
3154
3124
|
declare const Card$1: FC<CardProps>;
|
|
3155
3125
|
|
|
3156
3126
|
declare const sizes$1: {
|
|
@@ -3347,13 +3317,6 @@ declare const Heading$1: FC<HeadingProps>;
|
|
|
3347
3317
|
interface HiddenProps extends ResponsiveRangeProps {
|
|
3348
3318
|
children: ReactNode;
|
|
3349
3319
|
component?: BoxProps['component'];
|
|
3350
|
-
/**
|
|
3351
|
-
* @deprecated The "screen" prop is deprecated and will be removed in a future release.
|
|
3352
|
-
*
|
|
3353
|
-
* For content designed to improve the screen reader experience, please use use the `HiddenVisually` component instead.
|
|
3354
|
-
* Alternatively, for content designed to be hidden unconditionally, remove the `screen` prop.
|
|
3355
|
-
* */
|
|
3356
|
-
screen?: boolean;
|
|
3357
3320
|
print?: boolean;
|
|
3358
3321
|
inline?: boolean;
|
|
3359
3322
|
data?: DataAttributeMap;
|
|
@@ -3960,8 +3923,6 @@ interface ToggleProps {
|
|
|
3960
3923
|
align?: 'left' | 'right' | 'justify';
|
|
3961
3924
|
togglePosition?: 'leading' | 'trailing';
|
|
3962
3925
|
size?: Size;
|
|
3963
|
-
/** @deprecated `bleedY` is enabled by default, and configuration will be removed in a future version */
|
|
3964
|
-
bleedY?: boolean;
|
|
3965
3926
|
data?: DataAttributeMap;
|
|
3966
3927
|
}
|
|
3967
3928
|
declare const Toggle$1: react.ForwardRefExoticComponent<ToggleProps & react.RefAttributes<HTMLInputElement>>;
|
|
@@ -4166,10 +4127,6 @@ declare const IconLink: FC<IconLinkProps>;
|
|
|
4166
4127
|
type IconLinkBrokenProps = IconContainerProps;
|
|
4167
4128
|
declare const IconLinkBroken: FC<IconLinkBrokenProps>;
|
|
4168
4129
|
|
|
4169
|
-
type IconListProps = IconContainerProps;
|
|
4170
|
-
/** @deprecated Use `IconBulletList` instead */
|
|
4171
|
-
declare const IconList: FC<IconListProps>;
|
|
4172
|
-
|
|
4173
4130
|
type IconLocationProps = IconContainerProps;
|
|
4174
4131
|
declare const IconLocation: FC<IconLocationProps>;
|
|
4175
4132
|
|
|
@@ -4482,7 +4439,6 @@ declare const vars: {
|
|
|
4482
4439
|
positive: `var(--${string})`;
|
|
4483
4440
|
promoteLight: `var(--${string})`;
|
|
4484
4441
|
promote: `var(--${string})`;
|
|
4485
|
-
rating: `var(--${string})`;
|
|
4486
4442
|
secondary: `var(--${string})`;
|
|
4487
4443
|
secondaryInverted: `var(--${string})`;
|
|
4488
4444
|
};
|
|
@@ -4530,115 +4486,10 @@ declare const vars: {
|
|
|
4530
4486
|
};
|
|
4531
4487
|
declare function atoms(props: Omit<Atoms, 'background'>): string;
|
|
4532
4488
|
|
|
4533
|
-
/**
|
|
4534
|
-
* @deprecated the `apac` theme is deprecated and will be removed in a future release.
|
|
4535
|
-
*
|
|
4536
|
-
* Use the `seekJobs` theme instead.
|
|
4537
|
-
*/
|
|
4538
|
-
declare const _default$6: {
|
|
4539
|
-
vanillaTheme: string;
|
|
4540
|
-
name: string;
|
|
4541
|
-
displayName: string;
|
|
4542
|
-
legacy: boolean;
|
|
4543
|
-
background: {
|
|
4544
|
-
lightMode: string;
|
|
4545
|
-
darkMode: string;
|
|
4546
|
-
};
|
|
4547
|
-
webFonts: {
|
|
4548
|
-
linkTag: string;
|
|
4549
|
-
href: string;
|
|
4550
|
-
}[];
|
|
4551
|
-
space: {
|
|
4552
|
-
grid: number;
|
|
4553
|
-
space: {
|
|
4554
|
-
gutter: number;
|
|
4555
|
-
xxsmall: number;
|
|
4556
|
-
xsmall: number;
|
|
4557
|
-
small: number;
|
|
4558
|
-
medium: number;
|
|
4559
|
-
large: number;
|
|
4560
|
-
xlarge: number;
|
|
4561
|
-
xxlarge: number;
|
|
4562
|
-
xxxlarge: number;
|
|
4563
|
-
};
|
|
4564
|
-
};
|
|
4565
|
-
color: {
|
|
4566
|
-
foreground: {
|
|
4567
|
-
brandAccentLight: string;
|
|
4568
|
-
brandAccent: string;
|
|
4569
|
-
cautionLight: string;
|
|
4570
|
-
caution: string;
|
|
4571
|
-
criticalLight: string;
|
|
4572
|
-
critical: string;
|
|
4573
|
-
formAccentLight: string;
|
|
4574
|
-
formAccent: string;
|
|
4575
|
-
infoLight: string;
|
|
4576
|
-
info: string;
|
|
4577
|
-
linkLight: string;
|
|
4578
|
-
link: string;
|
|
4579
|
-
linkHover: string;
|
|
4580
|
-
linkVisited: string;
|
|
4581
|
-
linkLightVisited: string;
|
|
4582
|
-
neutral: string;
|
|
4583
|
-
neutralInverted: string;
|
|
4584
|
-
positiveLight: string;
|
|
4585
|
-
positive: string;
|
|
4586
|
-
promoteLight: string;
|
|
4587
|
-
promote: string;
|
|
4588
|
-
rating: string;
|
|
4589
|
-
secondary: string;
|
|
4590
|
-
secondaryInverted: string;
|
|
4591
|
-
};
|
|
4592
|
-
background: {
|
|
4593
|
-
body: string;
|
|
4594
|
-
bodyDark: string;
|
|
4595
|
-
brand: string;
|
|
4596
|
-
brandAccent: string;
|
|
4597
|
-
brandAccentActive: string;
|
|
4598
|
-
brandAccentHover: string;
|
|
4599
|
-
brandAccentSoft: string;
|
|
4600
|
-
brandAccentSoftActive: string;
|
|
4601
|
-
brandAccentSoftHover: string;
|
|
4602
|
-
caution: string;
|
|
4603
|
-
cautionLight: string;
|
|
4604
|
-
critical: string;
|
|
4605
|
-
criticalActive: string;
|
|
4606
|
-
criticalHover: string;
|
|
4607
|
-
criticalLight: string;
|
|
4608
|
-
criticalSoft: string;
|
|
4609
|
-
criticalSoftActive: string;
|
|
4610
|
-
criticalSoftHover: string;
|
|
4611
|
-
formAccent: string;
|
|
4612
|
-
formAccentActive: string;
|
|
4613
|
-
formAccentHover: string;
|
|
4614
|
-
formAccentSoft: string;
|
|
4615
|
-
formAccentSoftActive: string;
|
|
4616
|
-
formAccentSoftHover: string;
|
|
4617
|
-
info: string;
|
|
4618
|
-
infoLight: string;
|
|
4619
|
-
neutral: string;
|
|
4620
|
-
neutralActive: string;
|
|
4621
|
-
neutralHover: string;
|
|
4622
|
-
neutralLight: string;
|
|
4623
|
-
neutralSoft: string;
|
|
4624
|
-
neutralSoftActive: string;
|
|
4625
|
-
neutralSoftHover: string;
|
|
4626
|
-
positive: string;
|
|
4627
|
-
positiveLight: string;
|
|
4628
|
-
promote: string;
|
|
4629
|
-
promoteLight: string;
|
|
4630
|
-
surface: string;
|
|
4631
|
-
surfaceDark: string;
|
|
4632
|
-
};
|
|
4633
|
-
};
|
|
4634
|
-
backgroundLightness: Record<"body" | "bodyDark" | "brand" | "brandAccent" | "brandAccentActive" | "brandAccentHover" | "brandAccentSoft" | "brandAccentSoftActive" | "brandAccentSoftHover" | "caution" | "cautionLight" | "critical" | "criticalActive" | "criticalHover" | "criticalLight" | "criticalSoft" | "criticalSoftActive" | "criticalSoftHover" | "formAccent" | "formAccentActive" | "formAccentHover" | "formAccentSoft" | "formAccentSoftActive" | "formAccentSoftHover" | "info" | "infoLight" | "neutral" | "neutralActive" | "neutralHover" | "neutralLight" | "neutralSoft" | "neutralSoftActive" | "neutralSoftHover" | "positive" | "positiveLight" | "promote" | "promoteLight" | "surface" | "surfaceDark", "light" | "dark">;
|
|
4635
|
-
};
|
|
4636
|
-
|
|
4637
4489
|
declare const _default$5: {
|
|
4638
4490
|
vanillaTheme: string;
|
|
4639
4491
|
name: string;
|
|
4640
4492
|
displayName: string;
|
|
4641
|
-
legacy: boolean;
|
|
4642
4493
|
background: {
|
|
4643
4494
|
lightMode: string;
|
|
4644
4495
|
darkMode: string;
|
|
@@ -4684,7 +4535,6 @@ declare const _default$5: {
|
|
|
4684
4535
|
positive: string;
|
|
4685
4536
|
promoteLight: string;
|
|
4686
4537
|
promote: string;
|
|
4687
|
-
rating: string;
|
|
4688
4538
|
secondary: string;
|
|
4689
4539
|
secondaryInverted: string;
|
|
4690
4540
|
};
|
|
@@ -4737,7 +4587,6 @@ declare const _default$4: {
|
|
|
4737
4587
|
vanillaTheme: string;
|
|
4738
4588
|
name: string;
|
|
4739
4589
|
displayName: string;
|
|
4740
|
-
legacy: boolean;
|
|
4741
4590
|
background: {
|
|
4742
4591
|
lightMode: string;
|
|
4743
4592
|
darkMode: string;
|
|
@@ -4783,7 +4632,6 @@ declare const _default$4: {
|
|
|
4783
4632
|
positive: string;
|
|
4784
4633
|
promoteLight: string;
|
|
4785
4634
|
promote: string;
|
|
4786
|
-
rating: string;
|
|
4787
4635
|
secondary: string;
|
|
4788
4636
|
secondaryInverted: string;
|
|
4789
4637
|
};
|
|
@@ -4836,7 +4684,6 @@ declare const _default$3: {
|
|
|
4836
4684
|
vanillaTheme: string;
|
|
4837
4685
|
name: string;
|
|
4838
4686
|
displayName: string;
|
|
4839
|
-
legacy: boolean;
|
|
4840
4687
|
background: {
|
|
4841
4688
|
lightMode: string;
|
|
4842
4689
|
darkMode: string;
|
|
@@ -4882,7 +4729,6 @@ declare const _default$3: {
|
|
|
4882
4729
|
positive: string;
|
|
4883
4730
|
promoteLight: string;
|
|
4884
4731
|
promote: string;
|
|
4885
|
-
rating: string;
|
|
4886
4732
|
secondary: string;
|
|
4887
4733
|
secondaryInverted: string;
|
|
4888
4734
|
};
|
|
@@ -4935,7 +4781,6 @@ declare const _default$2: {
|
|
|
4935
4781
|
vanillaTheme: string;
|
|
4936
4782
|
name: string;
|
|
4937
4783
|
displayName: string;
|
|
4938
|
-
legacy: boolean;
|
|
4939
4784
|
background: {
|
|
4940
4785
|
lightMode: string;
|
|
4941
4786
|
darkMode: string;
|
|
@@ -4981,7 +4826,6 @@ declare const _default$2: {
|
|
|
4981
4826
|
positive: string;
|
|
4982
4827
|
promoteLight: string;
|
|
4983
4828
|
promote: string;
|
|
4984
|
-
rating: string;
|
|
4985
4829
|
secondary: string;
|
|
4986
4830
|
secondaryInverted: string;
|
|
4987
4831
|
};
|
|
@@ -5032,7 +4876,6 @@ declare const _default$2: {
|
|
|
5032
4876
|
|
|
5033
4877
|
declare namespace themes {
|
|
5034
4878
|
export {
|
|
5035
|
-
_default$6 as apac,
|
|
5036
4879
|
_default$2 as docs,
|
|
5037
4880
|
_default$4 as seekBusiness,
|
|
5038
4881
|
_default$5 as seekJobs,
|
|
@@ -5276,7 +5119,6 @@ declare function useScope(): {
|
|
|
5276
5119
|
positive: `var(--${string})`;
|
|
5277
5120
|
promoteLight: `var(--${string})`;
|
|
5278
5121
|
promote: `var(--${string})`;
|
|
5279
|
-
rating: `var(--${string})`;
|
|
5280
5122
|
secondary: `var(--${string})`;
|
|
5281
5123
|
secondaryInverted: `var(--${string})`;
|
|
5282
5124
|
};
|
|
@@ -5340,5 +5182,5 @@ declare const _default: {
|
|
|
5340
5182
|
code: string;
|
|
5341
5183
|
}[];
|
|
5342
5184
|
|
|
5343
|
-
export { Accordion$1 as Accordion, Accordion as Accordion$1, AccordionItem$1 as AccordionItem, AccordionItem as AccordionItem$1, Actions, Alert$1 as Alert, Alert as Alert$1, Autosuggest$1 as Autosuggest, Autosuggest as Autosuggest$1, Badge$1 as Badge, Badge as Badge$1, Bleed$1 as Bleed, Bleed as Bleed$1, PublicBox as Box, Box as Box$1, BoxRenderer, BraidPortal$1 as BraidPortal, BraidPortal as BraidPortal$1, BraidProvider$1 as BraidProvider, BraidProvider as BraidProvider$1, BraidTestProvider, Button$1 as Button, Button as Button$1, ButtonIcon$1 as ButtonIcon, ButtonIcon as ButtonIcon$1, ButtonLink$1 as ButtonLink, ButtonLink as ButtonLink$1, Card$1 as Card, Card as Card$1, Checkbox$1 as Checkbox, Checkbox as Checkbox$1, CheckboxStandalone$1 as CheckboxStandalone, CheckboxStandalone as CheckboxStandalone$1, Column, Columns$1 as Columns, Columns as Columns$1, ContentBlock, Dialog$1 as Dialog, Dialog as Dialog$1, Disclosure$1 as Disclosure, Disclosure as Disclosure$1, Divider, Drawer$1 as Drawer, Drawer as Drawer$1, Dropdown$1 as Dropdown, Dropdown as Dropdown$1, FieldLabel$1 as FieldLabel, FieldLabel as FieldLabel$1, FieldMessage$1 as FieldMessage, FieldMessage as FieldMessage$1, Heading$1 as Heading, Heading as Heading$1, Hidden, HiddenVisually, IconAI, IconAdd, IconArrow, IconAttachment, IconBluetooth, IconBold, IconBookmark, IconBulletList, IconCareer, IconCategory, IconCaution, IconChecklist, IconChevron, IconClear, IconCompany, IconCompose, IconCopy, IconCoverLetter, IconCreditCard, IconCritical, IconDate, IconDelete, IconDesktop, IconDisallow, IconDocument, IconDocumentBroken, IconDownload, IconEdit, IconEducation, IconEnlarge, IconExperience, IconFilter, IconFlag, IconGift, IconGlobe, IconGrid, IconHash, IconHeart, IconHelp, IconHistory, IconHome, IconImage, IconInfo, IconInvoice, IconItalic, IconLanguage, IconLicence, IconLink, IconLinkBroken,
|
|
5185
|
+
export { Accordion$1 as Accordion, Accordion as Accordion$1, AccordionItem$1 as AccordionItem, AccordionItem as AccordionItem$1, Actions, Alert$1 as Alert, Alert as Alert$1, Autosuggest$1 as Autosuggest, Autosuggest as Autosuggest$1, Badge$1 as Badge, Badge as Badge$1, Bleed$1 as Bleed, Bleed as Bleed$1, PublicBox as Box, Box as Box$1, BoxRenderer, BraidPortal$1 as BraidPortal, BraidPortal as BraidPortal$1, BraidProvider$1 as BraidProvider, BraidProvider as BraidProvider$1, BraidTestProvider, Button$1 as Button, Button as Button$1, ButtonIcon$1 as ButtonIcon, ButtonIcon as ButtonIcon$1, ButtonLink$1 as ButtonLink, ButtonLink as ButtonLink$1, Card$1 as Card, Card as Card$1, Checkbox$1 as Checkbox, Checkbox as Checkbox$1, CheckboxStandalone$1 as CheckboxStandalone, CheckboxStandalone as CheckboxStandalone$1, Column, Columns$1 as Columns, Columns as Columns$1, ContentBlock, Dialog$1 as Dialog, Dialog as Dialog$1, Disclosure$1 as Disclosure, Disclosure as Disclosure$1, Divider, Drawer$1 as Drawer, Drawer as Drawer$1, Dropdown$1 as Dropdown, Dropdown as Dropdown$1, FieldLabel$1 as FieldLabel, FieldLabel as FieldLabel$1, FieldMessage$1 as FieldMessage, FieldMessage as FieldMessage$1, Heading$1 as Heading, Heading as Heading$1, Hidden, HiddenVisually, IconAI, IconAdd, IconArrow, IconAttachment, IconBluetooth, IconBold, IconBookmark, IconBulletList, IconCareer, IconCategory, IconCaution, IconChecklist, IconChevron, IconClear, IconCompany, IconCompose, IconCopy, IconCoverLetter, IconCreditCard, IconCritical, IconDate, IconDelete, IconDesktop, IconDisallow, IconDocument, IconDocumentBroken, IconDownload, IconEdit, IconEducation, IconEnlarge, IconExperience, IconFilter, IconFlag, IconGift, IconGlobe, IconGrid, IconHash, IconHeart, IconHelp, IconHistory, IconHome, IconImage, IconInfo, IconInvoice, IconItalic, IconLanguage, IconLicence, IconLink, IconLinkBroken, IconLocation, IconMail, IconMessage, IconMicrophone, IconMinus, IconMobile, IconMoney, IconNewWindow, IconNote, IconNotification, IconNumberedList, IconOverflow, IconPeople, IconPersonAdd, IconPersonVerified, IconPhone, IconPlatformAndroid, IconPlatformApple, IconPositive, IconPrint, IconProfile, IconPromote, IconQR, IconRecommended, IconRedo, IconRefresh, IconRenderer, IconResume, IconRocket, IconSearch, IconSecurity, IconSend, IconSent, IconSentiment, IconSettings, IconShare, IconSkills, IconSocialFacebook, IconSocialGitHub, IconSocialInstagram, IconSocialLinkedIn, IconSocialMedium, IconSocialTiktok, IconSocialX, IconSocialYouTube, IconSort, IconStar, IconStatistics, IconSubCategory, IconTag, IconThumb, IconTick, IconTime, IconTip, IconTitle, IconUndo, IconUpload, IconVideo, IconVisibility, IconWorkExperience, IconZoomIn, IconZoomOut, Inline$1 as Inline, Inline as Inline$1, Link$1 as Link, Link as Link$1, List$1 as List, List as List$1, Loader, MenuItem$1 as MenuItem, MenuItem as MenuItem$1, MenuItemCheckbox$1 as MenuItemCheckbox, MenuItemCheckbox as MenuItemCheckbox$1, MenuItemDivider, MenuItemLink$1 as MenuItemLink, MenuItemLink as MenuItemLink$1, MenuRenderer, MonthPicker$1 as MonthPicker, MonthPicker as MonthPicker$1, Notice$1 as Notice, Notice as Notice$1, OverflowMenu, Page, PageBlock, Pagination$1 as Pagination, Pagination as Pagination$1, PasswordField$1 as PasswordField, PasswordField as PasswordField$1, Placeholder, RadioGroup$1 as RadioGroup, RadioGroup as RadioGroup$1, RadioItem, Rating$1 as Rating, Rating as Rating$1, Secondary, Spread$1 as Spread, Spread as Spread$1, Stack$1 as Stack, Stack as Stack$1, Step$1 as Step, Stepper, Strong, Tab$1 as Tab, Tab as Tab$1, TabPanel, TabPanels, Table, TableBody, TableCell, TableFooter, TableHeader, TableHeaderCell, TableRow, Tabs$1 as Tabs, Tabs as Tabs$1, TabsProvider, Tag$1 as Tag, Tag as Tag$1, Text, TextDropdown$1 as TextDropdown, TextDropdown as TextDropdown$1, TextField$1 as TextField, TextField as TextField$1, TextLink, TextLinkButton, Textarea$1 as Textarea, Textarea as Textarea$1, ThemeNameConsumer, Tiles$1 as Tiles, Tiles as Tiles$1, ToastProvider, Toggle$1 as Toggle, Toggle as Toggle$1, TooltipRenderer, _default$1 as _default, _default as _default$1, _default$2, _default$4 as _default$3, _default$5 as _default$4, _default$3 as _default$5, atoms, breakpoints, colorModeStyle, filterSuggestions, globalHeadingStyle, globalTextStyle, makeLinkComponent$1 as makeLinkComponent, makeLinkComponent as makeLinkComponent$1, outlineStyle, responsiveStyle, useColor, useResponsiveValue, useScope, useSpace, useThemeName, useToast, vars };
|
|
5344
5186
|
export type { Breakpoint, LinkComponent };
|