@boostdev/design-system-components 1.2.3 → 1.2.5
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/AGENTS.md +19 -11
- package/README.md +36 -1
- package/dist/client.cjs +50 -50
- package/dist/client.css +470 -470
- package/dist/client.js +50 -50
- package/dist/index.cjs +50 -50
- package/dist/index.css +470 -470
- package/dist/index.js +50 -50
- package/dist/native/index.cjs +3692 -352
- package/dist/native/index.d.cts +359 -3
- package/dist/native/index.d.ts +359 -3
- package/dist/native/index.js +3811 -364
- package/dist/utils.cjs +30 -0
- package/dist/utils.d.cts +8 -0
- package/dist/utils.d.ts +8 -0
- package/dist/utils.js +5 -0
- package/package.json +10 -4
- package/src/client.ts +6 -0
- package/src/components/interaction/Button/Button.native.stories.tsx +10 -12
- package/src/components/interaction/Button/Button.native.tsx +3 -3
- package/src/components/interaction/Dialog/Dialog.native.mdx +61 -0
- package/src/components/interaction/Dialog/Dialog.native.spec.tsx +73 -0
- package/src/components/interaction/Dialog/Dialog.native.stories.tsx +53 -0
- package/src/components/interaction/Dialog/Dialog.native.tsx +128 -0
- package/src/components/interaction/Drawer/Drawer.native.mdx +58 -0
- package/src/components/interaction/Drawer/Drawer.native.spec.tsx +81 -0
- package/src/components/interaction/Drawer/Drawer.native.stories.tsx +33 -0
- package/src/components/interaction/Drawer/Drawer.native.tsx +175 -0
- package/src/components/interaction/DropdownMenu/DropdownMenu.native.mdx +74 -0
- package/src/components/interaction/DropdownMenu/DropdownMenu.native.spec.tsx +78 -0
- package/src/components/interaction/DropdownMenu/DropdownMenu.native.stories.tsx +51 -0
- package/src/components/interaction/DropdownMenu/DropdownMenu.native.tsx +254 -0
- package/src/components/interaction/Popover/Popover.native.mdx +61 -0
- package/src/components/interaction/Popover/Popover.native.spec.tsx +73 -0
- package/src/components/interaction/Popover/Popover.native.stories.tsx +44 -0
- package/src/components/interaction/Popover/Popover.native.tsx +87 -0
- package/src/components/interaction/Rating/Rating.native.mdx +55 -0
- package/src/components/interaction/Rating/Rating.native.spec.tsx +38 -0
- package/src/components/interaction/Rating/Rating.native.stories.tsx +37 -0
- package/src/components/interaction/Rating/Rating.native.tsx +50 -0
- package/src/components/interaction/Toast/Toast.native.mdx +81 -0
- package/src/components/interaction/Toast/Toast.native.spec.tsx +80 -0
- package/src/components/interaction/Toast/Toast.native.stories.tsx +47 -0
- package/src/components/interaction/Toast/Toast.native.tsx +202 -0
- package/src/components/interaction/form/Checkbox/Checkbox.native.stories.tsx +2 -4
- package/src/components/interaction/form/Checkbox/Checkbox.native.tsx +1 -1
- package/src/components/interaction/form/CheckboxGroup/CheckboxGroup.native.mdx +78 -0
- package/src/components/interaction/form/CheckboxGroup/CheckboxGroup.native.spec.tsx +57 -0
- package/src/components/interaction/form/CheckboxGroup/CheckboxGroup.native.stories.tsx +96 -0
- package/src/components/interaction/form/CheckboxGroup/CheckboxGroup.native.tsx +61 -0
- package/src/components/interaction/form/Combobox/Combobox.native.mdx +86 -0
- package/src/components/interaction/form/Combobox/Combobox.native.spec.tsx +60 -0
- package/src/components/interaction/form/Combobox/Combobox.native.stories.tsx +99 -0
- package/src/components/interaction/form/Combobox/Combobox.native.tsx +211 -0
- package/src/components/interaction/form/FileInput/FileInput.native.mdx +86 -0
- package/src/components/interaction/form/FileInput/FileInput.native.spec.tsx +73 -0
- package/src/components/interaction/form/FileInput/FileInput.native.stories.tsx +69 -0
- package/src/components/interaction/form/FileInput/FileInput.native.tsx +129 -0
- package/src/components/interaction/form/FormInput/FormInput.native.mdx +81 -0
- package/src/components/interaction/form/FormInput/FormInput.native.spec.tsx +51 -0
- package/src/components/interaction/form/FormInput/FormInput.native.stories.tsx +54 -0
- package/src/components/interaction/form/FormInput/FormInput.native.tsx +122 -0
- package/src/components/interaction/form/NumberInput/NumberInput.native.mdx +87 -0
- package/src/components/interaction/form/NumberInput/NumberInput.native.spec.tsx +63 -0
- package/src/components/interaction/form/NumberInput/NumberInput.native.stories.tsx +63 -0
- package/src/components/interaction/form/NumberInput/NumberInput.native.tsx +198 -0
- package/src/components/interaction/form/Radio/Radio.native.spec.tsx +79 -0
- package/src/components/interaction/form/Radio/Radio.native.stories.tsx +12 -14
- package/src/components/interaction/form/Radio/Radio.native.tsx +1 -1
- package/src/components/interaction/form/RadioGroup/RadioGroup.native.mdx +79 -0
- package/src/components/interaction/form/RadioGroup/RadioGroup.native.spec.tsx +66 -0
- package/src/components/interaction/form/RadioGroup/RadioGroup.native.stories.tsx +96 -0
- package/src/components/interaction/form/RadioGroup/RadioGroup.native.tsx +61 -0
- package/src/components/interaction/form/SegmentedControl/SegmentedControl.native.mdx +78 -0
- package/src/components/interaction/form/SegmentedControl/SegmentedControl.native.spec.tsx +82 -0
- package/src/components/interaction/form/SegmentedControl/SegmentedControl.native.stories.tsx +99 -0
- package/src/components/interaction/form/SegmentedControl/SegmentedControl.native.tsx +121 -0
- package/src/components/interaction/form/Select/Select.native.mdx +85 -0
- package/src/components/interaction/form/Select/Select.native.spec.tsx +64 -0
- package/src/components/interaction/form/Select/Select.native.stories.tsx +75 -0
- package/src/components/interaction/form/Select/Select.native.tsx +252 -0
- package/src/components/interaction/form/Slider/Slider.native.mdx +83 -0
- package/src/components/interaction/form/Slider/Slider.native.spec.tsx +51 -0
- package/src/components/interaction/form/Slider/Slider.native.stories.tsx +58 -0
- package/src/components/interaction/form/Slider/Slider.native.tsx +188 -0
- package/src/components/interaction/form/Switch/Switch.native.stories.tsx +2 -4
- package/src/components/interaction/form/Textarea/Textarea.native.mdx +76 -0
- package/src/components/interaction/form/Textarea/Textarea.native.spec.tsx +50 -0
- package/src/components/interaction/form/Textarea/Textarea.native.stories.tsx +50 -0
- package/src/components/interaction/form/Textarea/Textarea.native.tsx +108 -0
- package/src/components/interaction/form/atoms/Label.native.spec.tsx +39 -0
- package/src/components/interaction/form/atoms/Label.native.stories.tsx +1 -1
- package/src/components/interaction/form/atoms/Message.native.stories.tsx +1 -1
- package/src/components/layout/ButtonGroup/ButtonGroup.native.spec.tsx +83 -0
- package/src/components/layout/ButtonGroup/ButtonGroup.native.stories.tsx +13 -19
- package/src/components/layout/Card/Card.native.spec.tsx +102 -0
- package/src/components/layout/Card/Card.native.stories.tsx +9 -11
- package/src/components/layout/Card/Card.native.tsx +1 -1
- package/src/components/layout/IconWrapper/IconWrapper.native.stories.tsx +7 -11
- package/src/components/layout/SectionHeader/SectionHeader.native.spec.tsx +51 -0
- package/src/components/layout/SectionHeader/SectionHeader.native.stories.tsx +6 -8
- package/src/components/ui/Accordion/Accordion.native.mdx +65 -0
- package/src/components/ui/Accordion/Accordion.native.spec.tsx +69 -0
- package/src/components/ui/Accordion/Accordion.native.stories.tsx +52 -0
- package/src/components/ui/Accordion/Accordion.native.tsx +141 -0
- package/src/components/ui/Alert/Alert.native.spec.tsx +76 -0
- package/src/components/ui/Alert/Alert.native.stories.tsx +8 -10
- package/src/components/ui/Alert/Alert.native.tsx +7 -7
- package/src/components/ui/Avatar/Avatar.native.stories.tsx +6 -8
- package/src/components/ui/Avatar/Avatar.native.tsx +2 -2
- package/src/components/ui/Badge/Badge.native.spec.tsx +45 -0
- package/src/components/ui/Badge/Badge.native.stories.tsx +6 -8
- package/src/components/ui/Badge/Badge.native.tsx +2 -2
- package/src/components/ui/Breadcrumb/Breadcrumb.native.mdx +52 -0
- package/src/components/ui/Breadcrumb/Breadcrumb.native.spec.tsx +49 -0
- package/src/components/ui/Breadcrumb/Breadcrumb.native.stories.tsx +46 -0
- package/src/components/ui/Breadcrumb/Breadcrumb.native.tsx +83 -0
- package/src/components/ui/Calendar/Calendar.native.mdx +58 -0
- package/src/components/ui/Calendar/Calendar.native.spec.tsx +92 -0
- package/src/components/ui/Calendar/Calendar.native.stories.tsx +45 -0
- package/src/components/ui/Calendar/Calendar.native.tsx +294 -0
- package/src/components/ui/Carousel/Carousel.native.mdx +55 -0
- package/src/components/ui/Carousel/Carousel.native.spec.tsx +55 -0
- package/src/components/ui/Carousel/Carousel.native.stories.tsx +59 -0
- package/src/components/ui/Carousel/Carousel.native.tsx +184 -0
- package/src/components/ui/Collapsible/Collapsible.native.mdx +53 -0
- package/src/components/ui/Collapsible/Collapsible.native.spec.tsx +68 -0
- package/src/components/ui/Collapsible/Collapsible.native.stories.tsx +48 -0
- package/src/components/ui/Collapsible/Collapsible.native.tsx +139 -0
- package/src/components/ui/DescriptionList/DescriptionList.native.mdx +50 -0
- package/src/components/ui/DescriptionList/DescriptionList.native.spec.tsx +37 -0
- package/src/components/ui/DescriptionList/DescriptionList.native.stories.tsx +48 -0
- package/src/components/ui/DescriptionList/DescriptionList.native.tsx +54 -0
- package/src/components/ui/Link/Link.native.mdx +53 -0
- package/src/components/ui/Link/Link.native.spec.tsx +35 -0
- package/src/components/ui/Link/Link.native.stories.tsx +46 -0
- package/src/components/ui/Link/Link.native.tsx +48 -0
- package/src/components/ui/Loading/Loading.native.stories.tsx +6 -8
- package/src/components/ui/NotificationBanner/NotificationBanner.native.spec.tsx +85 -0
- package/src/components/ui/NotificationBanner/NotificationBanner.native.stories.tsx +8 -10
- package/src/components/ui/NotificationBanner/NotificationBanner.native.tsx +7 -7
- package/src/components/ui/Pagination/Pagination.native.mdx +62 -0
- package/src/components/ui/Pagination/Pagination.native.spec.tsx +86 -0
- package/src/components/ui/Pagination/Pagination.native.stories.tsx +47 -0
- package/src/components/ui/Pagination/Pagination.native.tsx +157 -0
- package/src/components/ui/Progress/Progress.native.spec.tsx +56 -0
- package/src/components/ui/Progress/Progress.native.stories.tsx +1 -1
- package/src/components/ui/Progress/Progress.native.tsx +2 -2
- package/src/components/ui/ProgressCircle/ProgressCircle.native.mdx +63 -0
- package/src/components/ui/ProgressCircle/ProgressCircle.native.spec.tsx +39 -0
- package/src/components/ui/ProgressCircle/ProgressCircle.native.stories.tsx +36 -0
- package/src/components/ui/ProgressCircle/ProgressCircle.native.tsx +176 -0
- package/src/components/ui/Separator/Separator.native.spec.tsx +39 -0
- package/src/components/ui/Separator/Separator.native.stories.tsx +10 -14
- package/src/components/ui/Skeleton/Skeleton.native.spec.tsx +39 -0
- package/src/components/ui/Skeleton/Skeleton.native.stories.tsx +6 -8
- package/src/components/ui/Skeleton/Skeleton.native.tsx +2 -1
- package/src/components/ui/Table/Table.native.mdx +72 -0
- package/src/components/ui/Table/Table.native.spec.tsx +83 -0
- package/src/components/ui/Table/Table.native.stories.tsx +55 -0
- package/src/components/ui/Table/Table.native.tsx +196 -0
- package/src/components/ui/Tabs/Tabs.native.mdx +65 -0
- package/src/components/ui/Tabs/Tabs.native.spec.tsx +65 -0
- package/src/components/ui/Tabs/Tabs.native.stories.tsx +57 -0
- package/src/components/ui/Tabs/Tabs.native.tsx +133 -0
- package/src/components/ui/Tooltip/Tooltip.native.mdx +47 -0
- package/src/components/ui/Tooltip/Tooltip.native.spec.tsx +37 -0
- package/src/components/ui/Tooltip/Tooltip.native.stories.tsx +38 -0
- package/src/components/ui/Tooltip/Tooltip.native.tsx +57 -0
- package/src/components/ui/Typography/Typography.native.spec.tsx +49 -0
- package/src/components/ui/Typography/Typography.native.stories.tsx +8 -10
- package/src/native/ThemeContext.tsx +3 -3
- package/src/native.ts +37 -0
- package/src/stories/ReactNative.mdx +48 -13
- package/src/utils.ts +6 -0
- package/src/web-components/interaction/BdsAccordion.stories.tsx +1 -1
- package/src/web-components/interaction/BdsCollapsible.stories.tsx +1 -1
- package/src/web-components/interaction/BdsSkipLink.stories.tsx +1 -1
- package/src/web-components/interaction/BdsTabs.stories.tsx +1 -1
- package/src/web-components/interaction/BdsTooltip.stories.tsx +1 -1
- package/src/web-components/interaction/form/BdsCheckbox.stories.tsx +1 -1
- package/src/web-components/interaction/form/BdsCheckboxGroup.stories.tsx +1 -1
- package/src/web-components/interaction/form/BdsCombobox.stories.tsx +1 -1
- package/src/web-components/interaction/form/BdsFileInput.stories.tsx +1 -1
- package/src/web-components/interaction/form/BdsFormInput.stories.tsx +1 -1
- package/src/web-components/interaction/form/BdsNumberInput.stories.tsx +1 -1
- package/src/web-components/interaction/form/BdsRadio.stories.tsx +1 -1
- package/src/web-components/interaction/form/BdsRadioGroup.stories.tsx +1 -1
- package/src/web-components/interaction/form/BdsSegmentedControl.stories.tsx +1 -1
- package/src/web-components/interaction/form/BdsSelect.stories.tsx +1 -1
- package/src/web-components/interaction/form/BdsSlider.stories.tsx +1 -1
- package/src/web-components/interaction/form/BdsSwitch.stories.tsx +1 -1
- package/src/web-components/interaction/form/BdsTextarea.stories.tsx +1 -1
- package/src/web-components/ui/BdsButtonGroup.stories.tsx +1 -1
- package/src/web-components/ui/BdsCard.stories.tsx +1 -1
- package/src/web-components/ui/BdsIconWrapper.stories.tsx +1 -1
- package/src/web-components/ui/BdsRating.stories.tsx +1 -1
- package/src/web-components/ui/BdsSectionHeader.stories.tsx +1 -1
package/AGENTS.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
# @boostdev/components - Agent Guide
|
|
1
|
+
# @boostdev/design-system-components - Agent Guide
|
|
2
2
|
|
|
3
3
|
## What this package provides
|
|
4
4
|
|
|
5
5
|
A component library with three targets:
|
|
6
6
|
- **React (web)** — CSS Modules, design tokens from `@boostdev/design-system-foundation`, full component suite
|
|
7
|
-
- **Web Components** (experimental) — Lit-based custom elements, framework-agnostic, entry point `@boostdev/components/web-components`
|
|
7
|
+
- **Web Components** (experimental) — Lit-based custom elements, framework-agnostic, entry point `@boostdev/design-system-components/web-components`
|
|
8
8
|
- **React Native** (alpha) — React Native primitives, JS token layer, Metro-resolved via `"react-native"` export condition
|
|
9
9
|
|
|
10
10
|
## Prerequisites
|
|
@@ -17,10 +17,10 @@ All component styles live inside `@layer component`.
|
|
|
17
17
|
|
|
18
18
|
**Web Components:** import the bundle to register all custom elements:
|
|
19
19
|
```js
|
|
20
|
-
import '@boostdev/components/web-components';
|
|
20
|
+
import '@boostdev/design-system-components/web-components';
|
|
21
21
|
```
|
|
22
22
|
|
|
23
|
-
**React Native:** wrap the app in `ThemeProvider` from `@boostdev/components/native/ThemeContext`. Metro resolves the native bundle automatically via the `"react-native"` export condition — no extra config needed.
|
|
23
|
+
**React Native:** wrap the app in `ThemeProvider` from `@boostdev/design-system-components/native/ThemeContext`. Metro resolves the native bundle automatically via the `"react-native"` export condition — no extra config needed.
|
|
24
24
|
|
|
25
25
|
## Component categories
|
|
26
26
|
|
|
@@ -61,10 +61,12 @@ Also: never define story component functions inside a `render: () => { function
|
|
|
61
61
|
|
|
62
62
|
### React Native (alpha) — `src/components/**/*.native.tsx`
|
|
63
63
|
Native implementations co-located with their web counterparts. Metro resolves them automatically.
|
|
64
|
-
- **ui
|
|
65
|
-
- **layout
|
|
66
|
-
- **interaction
|
|
67
|
-
- **interaction/form
|
|
64
|
+
- **ui/** (22): Accordion, Alert, Avatar, Badge, Breadcrumb, Calendar, Carousel, Collapsible, DescriptionList, Link, Loading, NotificationBanner, Pagination, Progress, ProgressCircle, Separator, Skeleton, Table, Tabs, Tooltip, Typography
|
|
65
|
+
- **layout/** (4): ButtonGroup, Card, IconWrapper, SectionHeader
|
|
66
|
+
- **interaction/** (7): Button, Dialog, Drawer, DropdownMenu, Popover, Rating, Toast (ToastProvider + useToast)
|
|
67
|
+
- **interaction/form/** (13): Checkbox, CheckboxGroup, Combobox, FileInput, FormInput, NumberInput, Radio, RadioGroup, SegmentedControl, Select, Slider, Switch, Textarea + atoms (Label, Message)
|
|
68
|
+
|
|
69
|
+
**Not ported** (deferred): Command (cmdk dependency), SkipLink (browser-only pattern)
|
|
68
70
|
|
|
69
71
|
Storybook stories: `src/components/**/*.native.stories.tsx` (title `'React Native/{UI|Interaction|Form|Layout}/{Name}'`, tags `['!stable', 'alpha']`). All stories wrap in `<ThemeProvider>` decorator.
|
|
70
72
|
|
|
@@ -190,15 +192,21 @@ Error focus rings substitute `--bds-color_error` for `--bds-color_interactive`.
|
|
|
190
192
|
|
|
191
193
|
```ts
|
|
192
194
|
// Named exports — plain React / Vite
|
|
193
|
-
import { Button, Badge, Typography } from '@boostdev/components';
|
|
195
|
+
import { Button, Badge, Typography } from '@boostdev/design-system-components';
|
|
194
196
|
|
|
195
197
|
// Named exports — Next.js / RSC (adds 'use client' to the bundle)
|
|
196
|
-
import { Button, Badge, Typography } from '@boostdev/components/client';
|
|
198
|
+
import { Button, Badge, Typography } from '@boostdev/design-system-components/client';
|
|
199
|
+
|
|
200
|
+
// Utilities — server-safe (no CSS, no 'use client'), works in Server Components, layouts, middleware
|
|
201
|
+
import { cn } from '@boostdev/design-system-components/utils';
|
|
202
|
+
import type { WithClassName } from '@boostdev/design-system-components/utils';
|
|
197
203
|
|
|
198
204
|
// CSS (import once, at the app root)
|
|
199
|
-
import '@boostdev/components/css';
|
|
205
|
+
import '@boostdev/design-system-components/css';
|
|
200
206
|
```
|
|
201
207
|
|
|
208
|
+
> **`cn()` in Server Components**: Do NOT import `cn` from the root entry (`@boostdev/design-system-components`) in Next.js Server Components — the root entry includes a CSS side-effect that makes it client-only. Use `@boostdev/design-system-components/utils` instead.
|
|
209
|
+
|
|
202
210
|
## Accessibility requirements (WCAG 2.1 AA)
|
|
203
211
|
|
|
204
212
|
Every component must meet WCAG 2.1 Level AA:
|
package/README.md
CHANGED
|
@@ -52,6 +52,9 @@ import { Button, Card } from '@boostdev/components';
|
|
|
52
52
|
|
|
53
53
|
// Next.js / RSC — use the /client subpath
|
|
54
54
|
import { Button, Card } from '@boostdev/components/client';
|
|
55
|
+
|
|
56
|
+
// Server-safe utilities (cn, WithClassName) — works in Server Components, layouts, middleware
|
|
57
|
+
import { cn } from '@boostdev/components/utils';
|
|
55
58
|
```
|
|
56
59
|
|
|
57
60
|
---
|
|
@@ -416,6 +419,10 @@ Renders a circular container sized to its own `font-size`. Override the backgrou
|
|
|
416
419
|
Composes class name strings, filtering out falsy values:
|
|
417
420
|
|
|
418
421
|
```ts
|
|
422
|
+
// Server-safe — works in Server Components, layouts, middleware
|
|
423
|
+
import { cn } from '@boostdev/components/utils';
|
|
424
|
+
|
|
425
|
+
// Also available from root or /client (but these are client-only in Next.js)
|
|
419
426
|
import { cn } from '@boostdev/components';
|
|
420
427
|
|
|
421
428
|
cn('card', isActive && 'card--active', [extraClass])
|
|
@@ -532,7 +539,7 @@ pnpm build # compile to dist/
|
|
|
532
539
|
pnpm typecheck # TypeScript check (library code only)
|
|
533
540
|
pnpm lint # ESLint
|
|
534
541
|
pnpm lint:css # Stylelint
|
|
535
|
-
pnpm test # Vitest —
|
|
542
|
+
pnpm test # Vitest — 1122 tests
|
|
536
543
|
pnpm mcp:start # Start the MCP server locally (http://localhost:3001/api/mcp)
|
|
537
544
|
pnpm storybook # Storybook dev server on port 6006
|
|
538
545
|
```
|
|
@@ -575,6 +582,34 @@ pnpm mcp:start # listens on http://localhost:3001/api/mcp
|
|
|
575
582
|
|
|
576
583
|
---
|
|
577
584
|
|
|
585
|
+
## React Native
|
|
586
|
+
|
|
587
|
+
47 components are available for React Native — near-complete parity with the web library. Metro auto-resolves the native entry via the `"react-native"` export condition.
|
|
588
|
+
|
|
589
|
+
```tsx
|
|
590
|
+
import { Button, FormInput, Dialog, Tabs } from '@boostdev/components';
|
|
591
|
+
```
|
|
592
|
+
|
|
593
|
+
Wrap your app in `ThemeProvider`:
|
|
594
|
+
|
|
595
|
+
```tsx
|
|
596
|
+
import { ThemeProvider } from '@boostdev/components/native/ThemeContext';
|
|
597
|
+
|
|
598
|
+
export default function App() {
|
|
599
|
+
return (
|
|
600
|
+
<ThemeProvider>
|
|
601
|
+
<YourApp />
|
|
602
|
+
</ThemeProvider>
|
|
603
|
+
);
|
|
604
|
+
}
|
|
605
|
+
```
|
|
606
|
+
|
|
607
|
+
Components use `onPress` instead of `onClick`, `accessibilityLabel` instead of `aria-label`, and `StyleProp<ViewStyle>` instead of `className`. See the Storybook "React Native" section for full documentation.
|
|
608
|
+
|
|
609
|
+
**Deferred**: `Command` (cmdk dependency) and `SkipLink` (browser-only pattern).
|
|
610
|
+
|
|
611
|
+
---
|
|
612
|
+
|
|
578
613
|
## Publishing a new version
|
|
579
614
|
|
|
580
615
|
```bash
|
package/dist/client.cjs
CHANGED
|
@@ -87,7 +87,7 @@ module.exports = __toCommonJS(client_exports);
|
|
|
87
87
|
var import_react = require("react");
|
|
88
88
|
|
|
89
89
|
// src/components/ui/Accordion/Accordion.module.css
|
|
90
|
-
var Accordion_default = {"accordion":"
|
|
90
|
+
var Accordion_default = {"accordion":"bds125Accordion-accordion","item":"bds125Accordion-item","heading":"bds125Accordion-heading","trigger":"bds125Accordion-trigger","triggerLabel":"bds125Accordion-triggerLabel","chevron":"bds125Accordion-chevron","--open":"bds125Accordion---open","panel":"bds125Accordion-panel","panelContent":"bds125Accordion-panelContent"};
|
|
91
91
|
|
|
92
92
|
// src/components/ui/Accordion/Accordion.tsx
|
|
93
93
|
var import_design_system_foundation = require("@boostdev/design-system-foundation");
|
|
@@ -156,7 +156,7 @@ function Accordion({
|
|
|
156
156
|
}
|
|
157
157
|
|
|
158
158
|
// src/components/ui/Alert/Alert.module.css
|
|
159
|
-
var Alert_default = {"alert":"
|
|
159
|
+
var Alert_default = {"alert":"bds125Alert-alert","--variant_info":"bds125Alert---variant_info","--variant_success":"bds125Alert---variant_success","--variant_warning":"bds125Alert---variant_warning","--variant_error":"bds125Alert---variant_error","icon":"bds125Alert-icon","content":"bds125Alert-content","title":"bds125Alert-title","dismiss":"bds125Alert-dismiss"};
|
|
160
160
|
|
|
161
161
|
// src/components/ui/Alert/Alert.tsx
|
|
162
162
|
var import_design_system_foundation2 = require("@boostdev/design-system-foundation");
|
|
@@ -201,7 +201,7 @@ function Alert({
|
|
|
201
201
|
}
|
|
202
202
|
|
|
203
203
|
// src/components/ui/Avatar/Avatar.module.css
|
|
204
|
-
var Avatar_default = {"avatar":"
|
|
204
|
+
var Avatar_default = {"avatar":"bds125Avatar-avatar","--fallback":"bds125Avatar---fallback","--size_small":"bds125Avatar---size_small","--size_medium":"bds125Avatar---size_medium","--size_large":"bds125Avatar---size_large","image":"bds125Avatar-image","initials":"bds125Avatar-initials"};
|
|
205
205
|
|
|
206
206
|
// src/components/ui/Avatar/Avatar.tsx
|
|
207
207
|
var import_design_system_foundation3 = require("@boostdev/design-system-foundation");
|
|
@@ -228,7 +228,7 @@ function Avatar({ src, alt, name, size = "medium", className, ...rest }) {
|
|
|
228
228
|
}
|
|
229
229
|
|
|
230
230
|
// src/components/ui/Badge/Badge.module.css
|
|
231
|
-
var Badge_default = {"badge":"
|
|
231
|
+
var Badge_default = {"badge":"bds125Badge-badge","--variant_primary":"bds125Badge---variant_primary","--variant_secondary":"bds125Badge---variant_secondary","--variant_success":"bds125Badge---variant_success","--variant_error":"bds125Badge---variant_error","--variant_warning":"bds125Badge---variant_warning"};
|
|
232
232
|
|
|
233
233
|
// src/components/ui/Badge/Badge.tsx
|
|
234
234
|
var import_design_system_foundation4 = require("@boostdev/design-system-foundation");
|
|
@@ -238,7 +238,7 @@ function Badge({ children, variant = "primary", className, ...rest }) {
|
|
|
238
238
|
}
|
|
239
239
|
|
|
240
240
|
// src/components/ui/Breadcrumb/Breadcrumb.module.css
|
|
241
|
-
var Breadcrumb_default = {"breadcrumb":"
|
|
241
|
+
var Breadcrumb_default = {"breadcrumb":"bds125Breadcrumb-breadcrumb","list":"bds125Breadcrumb-list","item":"bds125Breadcrumb-item","link":"bds125Breadcrumb-link","separator":"bds125Breadcrumb-separator","current":"bds125Breadcrumb-current"};
|
|
242
242
|
|
|
243
243
|
// src/components/ui/Breadcrumb/Breadcrumb.tsx
|
|
244
244
|
var import_design_system_foundation5 = require("@boostdev/design-system-foundation");
|
|
@@ -254,7 +254,7 @@ function Breadcrumb({ items, className, ...rest }) {
|
|
|
254
254
|
}
|
|
255
255
|
|
|
256
256
|
// src/components/ui/Collapsible/Collapsible.module.css
|
|
257
|
-
var Collapsible_default = {"collapsible":"
|
|
257
|
+
var Collapsible_default = {"collapsible":"bds125Collapsible-collapsible","summary":"bds125Collapsible-summary","summaryContent":"bds125Collapsible-summaryContent","icon":"bds125Collapsible-icon","content":"bds125Collapsible-content"};
|
|
258
258
|
|
|
259
259
|
// src/components/ui/Collapsible/Collapsible.tsx
|
|
260
260
|
var import_design_system_foundation6 = require("@boostdev/design-system-foundation");
|
|
@@ -295,7 +295,7 @@ function Collapsible({
|
|
|
295
295
|
var import_react2 = require("react");
|
|
296
296
|
|
|
297
297
|
// src/components/ui/Calendar/Calendar.module.css
|
|
298
|
-
var Calendar_default = {"calendar":"
|
|
298
|
+
var Calendar_default = {"calendar":"bds125Calendar-calendar","header":"bds125Calendar-header","monthYear":"bds125Calendar-monthYear","navBtn":"bds125Calendar-navBtn","grid":"bds125Calendar-grid","weekday":"bds125Calendar-weekday","empty":"bds125Calendar-empty","day":"bds125Calendar-day","disabled":"bds125Calendar-disabled","selected":"bds125Calendar-selected","today":"bds125Calendar-today"};
|
|
299
299
|
|
|
300
300
|
// src/components/ui/Calendar/Calendar.tsx
|
|
301
301
|
var import_design_system_foundation7 = require("@boostdev/design-system-foundation");
|
|
@@ -470,7 +470,7 @@ function Calendar({ value, defaultValue, min, max, onChange, className, ...rest
|
|
|
470
470
|
var import_react3 = require("react");
|
|
471
471
|
|
|
472
472
|
// src/components/ui/Carousel/Carousel.module.css
|
|
473
|
-
var Carousel_default = {"carousel":"
|
|
473
|
+
var Carousel_default = {"carousel":"bds125Carousel-carousel","track":"bds125Carousel-track","slide":"bds125Carousel-slide","navBtn":"bds125Carousel-navBtn"};
|
|
474
474
|
|
|
475
475
|
// src/components/ui/Carousel/Carousel.tsx
|
|
476
476
|
var import_design_system_foundation8 = require("@boostdev/design-system-foundation");
|
|
@@ -523,7 +523,7 @@ function Carousel({ items, label, className, ...rest }) {
|
|
|
523
523
|
}
|
|
524
524
|
|
|
525
525
|
// src/components/ui/DescriptionList/DescriptionList.module.css
|
|
526
|
-
var DescriptionList_default = {"list":"
|
|
526
|
+
var DescriptionList_default = {"list":"bds125DescriptionList-list","group":"bds125DescriptionList-group","term":"bds125DescriptionList-term","details":"bds125DescriptionList-details","--layout_inline":"bds125DescriptionList---layout_inline"};
|
|
527
527
|
|
|
528
528
|
// src/components/ui/DescriptionList/DescriptionList.tsx
|
|
529
529
|
var import_design_system_foundation9 = require("@boostdev/design-system-foundation");
|
|
@@ -536,7 +536,7 @@ function DescriptionList({ items, layout = "stacked", className, ...rest }) {
|
|
|
536
536
|
}
|
|
537
537
|
|
|
538
538
|
// src/components/ui/Link/Link.module.css
|
|
539
|
-
var Link_default = {"link":"
|
|
539
|
+
var Link_default = {"link":"bds125Link-link","--variant_default":"bds125Link---variant_default","--variant_subtle":"bds125Link---variant_subtle","--variant_standalone":"bds125Link---variant_standalone","externalLabel":"bds125Link-externalLabel"};
|
|
540
540
|
|
|
541
541
|
// src/components/ui/Link/Link.tsx
|
|
542
542
|
var import_design_system_foundation10 = require("@boostdev/design-system-foundation");
|
|
@@ -567,7 +567,7 @@ function Link({
|
|
|
567
567
|
}
|
|
568
568
|
|
|
569
569
|
// src/components/ui/Loading/Loading.module.css
|
|
570
|
-
var Loading_default = {"loading":"
|
|
570
|
+
var Loading_default = {"loading":"bds125Loading-loading","spinner":"bds125Loading-spinner","--size_small":"bds125Loading---size_small","--size_large":"bds125Loading---size_large"};
|
|
571
571
|
|
|
572
572
|
// src/components/ui/Loading/Loading.tsx
|
|
573
573
|
var import_design_system_foundation11 = require("@boostdev/design-system-foundation");
|
|
@@ -577,7 +577,7 @@ function Loading({ size = "medium", className, ...rest }) {
|
|
|
577
577
|
}
|
|
578
578
|
|
|
579
579
|
// src/components/ui/NotificationBanner/NotificationBanner.module.css
|
|
580
|
-
var NotificationBanner_default = {"banner":"
|
|
580
|
+
var NotificationBanner_default = {"banner":"bds125NotificationBanner-banner","--variant_info":"bds125NotificationBanner---variant_info","--variant_success":"bds125NotificationBanner---variant_success","--variant_warning":"bds125NotificationBanner---variant_warning","--variant_error":"bds125NotificationBanner---variant_error","content":"bds125NotificationBanner-content","action":"bds125NotificationBanner-action","dismiss":"bds125NotificationBanner-dismiss"};
|
|
581
581
|
|
|
582
582
|
// src/components/ui/NotificationBanner/NotificationBanner.tsx
|
|
583
583
|
var import_design_system_foundation12 = require("@boostdev/design-system-foundation");
|
|
@@ -618,7 +618,7 @@ function NotificationBanner({
|
|
|
618
618
|
}
|
|
619
619
|
|
|
620
620
|
// src/components/ui/Pagination/Pagination.module.css
|
|
621
|
-
var Pagination_default = {"pagination":"
|
|
621
|
+
var Pagination_default = {"pagination":"bds125Pagination-pagination","list":"bds125Pagination-list","button":"bds125Pagination-button","--active":"bds125Pagination---active","--nav":"bds125Pagination---nav","ellipsis":"bds125Pagination-ellipsis"};
|
|
622
622
|
|
|
623
623
|
// src/components/ui/Pagination/Pagination.tsx
|
|
624
624
|
var import_design_system_foundation13 = require("@boostdev/design-system-foundation");
|
|
@@ -683,7 +683,7 @@ function Pagination({
|
|
|
683
683
|
}
|
|
684
684
|
|
|
685
685
|
// src/components/ui/Progress/Progress.module.css
|
|
686
|
-
var Progress_default = {"container":"
|
|
686
|
+
var Progress_default = {"container":"bds125Progress-container","labelRow":"bds125Progress-labelRow","value":"bds125Progress-value","track":"bds125Progress-track","--size_small":"bds125Progress---size_small","--size_medium":"bds125Progress---size_medium","--size_large":"bds125Progress---size_large","fill":"bds125Progress-fill"};
|
|
687
687
|
|
|
688
688
|
// src/components/ui/Progress/Progress.tsx
|
|
689
689
|
var import_design_system_foundation14 = require("@boostdev/design-system-foundation");
|
|
@@ -722,7 +722,7 @@ function Progress({
|
|
|
722
722
|
}
|
|
723
723
|
|
|
724
724
|
// src/components/ui/ProgressCircle/ProgressCircle.module.css
|
|
725
|
-
var ProgressCircle_default = {"wrapper":"
|
|
725
|
+
var ProgressCircle_default = {"wrapper":"bds125ProgressCircle-wrapper","svg":"bds125ProgressCircle-svg","track":"bds125ProgressCircle-track","fill":"bds125ProgressCircle-fill","value":"bds125ProgressCircle-value","--size_small":"bds125ProgressCircle---size_small","--size_medium":"bds125ProgressCircle---size_medium","--size_large":"bds125ProgressCircle---size_large"};
|
|
726
726
|
|
|
727
727
|
// src/components/ui/ProgressCircle/ProgressCircle.tsx
|
|
728
728
|
var import_design_system_foundation15 = require("@boostdev/design-system-foundation");
|
|
@@ -803,7 +803,7 @@ function ProgressCircle({
|
|
|
803
803
|
}
|
|
804
804
|
|
|
805
805
|
// src/components/ui/Separator/Separator.module.css
|
|
806
|
-
var Separator_default = {"separator":"
|
|
806
|
+
var Separator_default = {"separator":"bds125Separator-separator","--horizontal":"bds125Separator---horizontal","--vertical":"bds125Separator---vertical"};
|
|
807
807
|
|
|
808
808
|
// src/components/ui/Separator/Separator.tsx
|
|
809
809
|
var import_design_system_foundation16 = require("@boostdev/design-system-foundation");
|
|
@@ -827,7 +827,7 @@ function Separator({ orientation = "horizontal", className, ...rest }) {
|
|
|
827
827
|
var import_design_system_foundation17 = require("@boostdev/design-system-foundation");
|
|
828
828
|
|
|
829
829
|
// src/components/ui/Skeleton/Skeleton.module.css
|
|
830
|
-
var Skeleton_default = {"skeleton":"
|
|
830
|
+
var Skeleton_default = {"skeleton":"bds125Skeleton-skeleton"};
|
|
831
831
|
|
|
832
832
|
// src/components/ui/Skeleton/Skeleton.tsx
|
|
833
833
|
var import_jsx_runtime17 = require("react/jsx-runtime");
|
|
@@ -836,7 +836,7 @@ function Skeleton({ className, ...rest }) {
|
|
|
836
836
|
}
|
|
837
837
|
|
|
838
838
|
// src/components/ui/SkipLink/SkipLink.module.css
|
|
839
|
-
var SkipLink_default = {"skipLink":"
|
|
839
|
+
var SkipLink_default = {"skipLink":"bds125SkipLink-skipLink"};
|
|
840
840
|
|
|
841
841
|
// src/components/ui/SkipLink/SkipLink.tsx
|
|
842
842
|
var import_design_system_foundation18 = require("@boostdev/design-system-foundation");
|
|
@@ -846,7 +846,7 @@ function SkipLink({ href = "#main", children = "Skip to main content", className
|
|
|
846
846
|
}
|
|
847
847
|
|
|
848
848
|
// src/components/ui/Table/Table.module.css
|
|
849
|
-
var Table_default = {"wrapper":"
|
|
849
|
+
var Table_default = {"wrapper":"bds125Table-wrapper","table":"bds125Table-table","caption":"bds125Table-caption","thead":"bds125Table-thead","th":"bds125Table-th","--sortable":"bds125Table---sortable","sortButton":"bds125Table-sortButton","sortIcon":"bds125Table-sortIcon","--sort-active":"bds125Table---sort-active","--sort-desc":"bds125Table---sort-desc","tbody":"bds125Table-tbody","tr":"bds125Table-tr","td":"bds125Table-td"};
|
|
850
850
|
|
|
851
851
|
// src/components/ui/Table/Table.tsx
|
|
852
852
|
var import_design_system_foundation19 = require("@boostdev/design-system-foundation");
|
|
@@ -916,7 +916,7 @@ function Table({
|
|
|
916
916
|
var import_react4 = require("react");
|
|
917
917
|
|
|
918
918
|
// src/components/ui/Tabs/Tabs.module.css
|
|
919
|
-
var Tabs_default = {"tabs":"
|
|
919
|
+
var Tabs_default = {"tabs":"bds125Tabs-tabs","tabList":"bds125Tabs-tabList","tab":"bds125Tabs-tab","--active":"bds125Tabs---active","panel":"bds125Tabs-panel"};
|
|
920
920
|
|
|
921
921
|
// src/components/ui/Tabs/Tabs.tsx
|
|
922
922
|
var import_design_system_foundation20 = require("@boostdev/design-system-foundation");
|
|
@@ -996,7 +996,7 @@ function Tabs({ tabs, defaultTab, className, ...rest }) {
|
|
|
996
996
|
var import_react5 = require("react");
|
|
997
997
|
|
|
998
998
|
// src/components/ui/Tooltip/Tooltip.module.css
|
|
999
|
-
var Tooltip_default = {"wrapper":"
|
|
999
|
+
var Tooltip_default = {"wrapper":"bds125Tooltip-wrapper","tooltip":"bds125Tooltip-tooltip","--placement_top":"bds125Tooltip---placement_top","--placement_bottom":"bds125Tooltip---placement_bottom","--placement_left":"bds125Tooltip---placement_left","--placement_right":"bds125Tooltip---placement_right"};
|
|
1000
1000
|
|
|
1001
1001
|
// src/components/ui/Tooltip/Tooltip.tsx
|
|
1002
1002
|
var import_design_system_foundation21 = require("@boostdev/design-system-foundation");
|
|
@@ -1040,7 +1040,7 @@ function Tooltip({
|
|
|
1040
1040
|
}
|
|
1041
1041
|
|
|
1042
1042
|
// src/components/ui/Typography/Typography.module.css
|
|
1043
|
-
var Typography_default = {"typography":"
|
|
1043
|
+
var Typography_default = {"typography":"bds125Typography-typography","--h1":"bds125Typography---h1","--h2":"bds125Typography---h2","--h3":"bds125Typography---h3","--body":"bds125Typography---body","--body_s":"bds125Typography---body_s"};
|
|
1044
1044
|
|
|
1045
1045
|
// src/components/ui/Typography/Typography.tsx
|
|
1046
1046
|
var import_design_system_foundation22 = require("@boostdev/design-system-foundation");
|
|
@@ -1058,7 +1058,7 @@ function Typography({ variant = "body", component, children, className, ...rest
|
|
|
1058
1058
|
}
|
|
1059
1059
|
|
|
1060
1060
|
// src/components/interaction/Button/Button.module.css
|
|
1061
|
-
var Button_default = {"button":"
|
|
1061
|
+
var Button_default = {"button":"bds125Button-button","--default":"bds125Button---default","--outline":"bds125Button---outline","--ghost":"bds125Button---ghost","--size_small":"bds125Button---size_small","--size_medium":"bds125Button---size_medium","--size_large":"bds125Button---size_large","--hasPulse":"bds125Button---hasPulse","iconStart":"bds125Button-iconStart","iconEnd":"bds125Button-iconEnd"};
|
|
1062
1062
|
|
|
1063
1063
|
// src/components/interaction/Button/Button.tsx
|
|
1064
1064
|
var import_design_system_foundation23 = require("@boostdev/design-system-foundation");
|
|
@@ -1173,7 +1173,7 @@ function installInvokerCommandsPolyfill() {
|
|
|
1173
1173
|
}
|
|
1174
1174
|
|
|
1175
1175
|
// src/components/interaction/Command/Command.module.css
|
|
1176
|
-
var Command_default = {"dialog":"
|
|
1176
|
+
var Command_default = {"dialog":"bds125Command-dialog","palette":"bds125Command-palette","searchRow":"bds125Command-searchRow","searchIcon":"bds125Command-searchIcon","search":"bds125Command-search","escHint":"bds125Command-escHint","list":"bds125Command-list","groupList":"bds125Command-groupList","group":"bds125Command-group","item":"bds125Command-item","itemActive":"bds125Command-itemActive","itemLabel":"bds125Command-itemLabel","itemDesc":"bds125Command-itemDesc","shortcut":"bds125Command-shortcut","empty":"bds125Command-empty"};
|
|
1177
1177
|
|
|
1178
1178
|
// src/components/interaction/Command/Command.tsx
|
|
1179
1179
|
var import_design_system_foundation24 = require("@boostdev/design-system-foundation");
|
|
@@ -1350,7 +1350,7 @@ function Command({
|
|
|
1350
1350
|
var import_react7 = require("react");
|
|
1351
1351
|
|
|
1352
1352
|
// src/components/interaction/Dialog/Dialog.module.css
|
|
1353
|
-
var Dialog_default = {"dialog":"
|
|
1353
|
+
var Dialog_default = {"dialog":"bds125Dialog-dialog","dialogContent":"bds125Dialog-dialogContent","closeButton":"bds125Dialog-closeButton"};
|
|
1354
1354
|
|
|
1355
1355
|
// src/components/interaction/Dialog/Dialog.tsx
|
|
1356
1356
|
var import_design_system_foundation25 = require("@boostdev/design-system-foundation");
|
|
@@ -1456,7 +1456,7 @@ function Dialog({ children, id: idProp, isOpen = false, className, onOpen, onClo
|
|
|
1456
1456
|
var import_react8 = require("react");
|
|
1457
1457
|
|
|
1458
1458
|
// src/components/interaction/Drawer/Drawer.module.css
|
|
1459
|
-
var Drawer_default = {"drawer":"
|
|
1459
|
+
var Drawer_default = {"drawer":"bds125Drawer-drawer","--side_left":"bds125Drawer---side_left","header":"bds125Drawer-header","closeButton":"bds125Drawer-closeButton","body":"bds125Drawer-body"};
|
|
1460
1460
|
|
|
1461
1461
|
// src/components/interaction/Drawer/Drawer.tsx
|
|
1462
1462
|
var import_design_system_foundation26 = require("@boostdev/design-system-foundation");
|
|
@@ -1557,7 +1557,7 @@ function Drawer({
|
|
|
1557
1557
|
var import_react9 = require("react");
|
|
1558
1558
|
|
|
1559
1559
|
// src/components/interaction/DropdownMenu/DropdownMenu.module.css
|
|
1560
|
-
var DropdownMenu_default = {"wrapper":"
|
|
1560
|
+
var DropdownMenu_default = {"wrapper":"bds125DropdownMenu-wrapper","menu":"bds125DropdownMenu-menu","--placement_bottom-start":"bds125DropdownMenu---placement_bottom-start","--placement_bottom-end":"bds125DropdownMenu---placement_bottom-end","separator":"bds125DropdownMenu-separator","item":"bds125DropdownMenu-item","icon":"bds125DropdownMenu-icon"};
|
|
1561
1561
|
|
|
1562
1562
|
// src/components/interaction/DropdownMenu/DropdownMenu.tsx
|
|
1563
1563
|
var import_design_system_foundation27 = require("@boostdev/design-system-foundation");
|
|
@@ -1671,7 +1671,7 @@ function DropdownMenu({
|
|
|
1671
1671
|
var import_react10 = require("react");
|
|
1672
1672
|
|
|
1673
1673
|
// src/components/interaction/Popover/Popover.module.css
|
|
1674
|
-
var Popover_default = {"wrapper":"
|
|
1674
|
+
var Popover_default = {"wrapper":"bds125Popover-wrapper","panel":"bds125Popover-panel","g":"bds125Popover-g"};
|
|
1675
1675
|
|
|
1676
1676
|
// src/components/interaction/Popover/Popover.tsx
|
|
1677
1677
|
var import_design_system_foundation28 = require("@boostdev/design-system-foundation");
|
|
@@ -1756,7 +1756,7 @@ function Popover({
|
|
|
1756
1756
|
}
|
|
1757
1757
|
|
|
1758
1758
|
// src/components/interaction/Rating/Rating.module.css
|
|
1759
|
-
var Rating_default = {"rating":"
|
|
1759
|
+
var Rating_default = {"rating":"bds125Rating-rating","star":"bds125Rating-star","--filled":"bds125Rating---filled"};
|
|
1760
1760
|
|
|
1761
1761
|
// src/components/interaction/Rating/Rating.tsx
|
|
1762
1762
|
var import_design_system_foundation29 = require("@boostdev/design-system-foundation");
|
|
@@ -1788,7 +1788,7 @@ function Rating({ value, max = 5, className, ...rest }) {
|
|
|
1788
1788
|
var import_react11 = require("react");
|
|
1789
1789
|
|
|
1790
1790
|
// src/components/interaction/Toast/Toast.module.css
|
|
1791
|
-
var Toast_default = {"toastContainer":"
|
|
1791
|
+
var Toast_default = {"toastContainer":"bds125Toast-toastContainer","toast":"bds125Toast-toast","--variant_success":"bds125Toast---variant_success","--variant_warning":"bds125Toast---variant_warning","--variant_info":"bds125Toast---variant_info","--variant_error":"bds125Toast---variant_error","message":"bds125Toast-message","closeButton":"bds125Toast-closeButton"};
|
|
1792
1792
|
|
|
1793
1793
|
// src/components/interaction/Toast/Toast.tsx
|
|
1794
1794
|
var import_design_system_foundation30 = require("@boostdev/design-system-foundation");
|
|
@@ -1861,10 +1861,10 @@ function useToast() {
|
|
|
1861
1861
|
var import_react12 = require("react");
|
|
1862
1862
|
|
|
1863
1863
|
// src/components/interaction/form/Checkbox/Checkbox.module.css
|
|
1864
|
-
var Checkbox_default = {"checkboxGroup":"
|
|
1864
|
+
var Checkbox_default = {"checkboxGroup":"bds125Checkbox-checkboxGroup","inputWrapper":"bds125Checkbox-inputWrapper","checkbox":"bds125Checkbox-checkbox","checkboxError":"bds125Checkbox-checkboxError"};
|
|
1865
1865
|
|
|
1866
1866
|
// src/components/interaction/form/atoms/Message.module.css
|
|
1867
|
-
var Message_default = {"error":"
|
|
1867
|
+
var Message_default = {"error":"bds125Message-error","hint":"bds125Message-hint"};
|
|
1868
1868
|
|
|
1869
1869
|
// src/components/interaction/form/atoms/Message.tsx
|
|
1870
1870
|
var import_design_system_foundation31 = require("@boostdev/design-system-foundation");
|
|
@@ -1875,7 +1875,7 @@ var Message = ({ message, type, inputId, className }) => {
|
|
|
1875
1875
|
};
|
|
1876
1876
|
|
|
1877
1877
|
// src/components/interaction/form/atoms/Label.module.css
|
|
1878
|
-
var Label_default = {"label":"
|
|
1878
|
+
var Label_default = {"label":"bds125Label-label"};
|
|
1879
1879
|
|
|
1880
1880
|
// src/components/interaction/form/atoms/Label.tsx
|
|
1881
1881
|
var import_design_system_foundation32 = require("@boostdev/design-system-foundation");
|
|
@@ -1888,7 +1888,7 @@ var Label = ({ label, id, className }) => {
|
|
|
1888
1888
|
var import_design_system_foundation34 = require("@boostdev/design-system-foundation");
|
|
1889
1889
|
|
|
1890
1890
|
// src/components/interaction/form/atoms/InputContainer.module.css
|
|
1891
|
-
var InputContainer_default = {"container":"
|
|
1891
|
+
var InputContainer_default = {"container":"bds125InputContainer-container"};
|
|
1892
1892
|
|
|
1893
1893
|
// src/components/interaction/form/atoms/InputContainer.tsx
|
|
1894
1894
|
var import_design_system_foundation33 = require("@boostdev/design-system-foundation");
|
|
@@ -1929,7 +1929,7 @@ function Checkbox({ label, name, error, hint, className, ...props }) {
|
|
|
1929
1929
|
var import_react13 = require("react");
|
|
1930
1930
|
|
|
1931
1931
|
// src/components/interaction/form/CheckboxGroup/CheckboxGroup.module.css
|
|
1932
|
-
var CheckboxGroup_default = {"group":"
|
|
1932
|
+
var CheckboxGroup_default = {"group":"bds125CheckboxGroup-group","legend":"bds125CheckboxGroup-legend","required":"bds125CheckboxGroup-required","items":"bds125CheckboxGroup-items"};
|
|
1933
1933
|
|
|
1934
1934
|
// src/components/interaction/form/CheckboxGroup/CheckboxGroup.tsx
|
|
1935
1935
|
var import_design_system_foundation35 = require("@boostdev/design-system-foundation");
|
|
@@ -1971,7 +1971,7 @@ function CheckboxGroup({
|
|
|
1971
1971
|
var import_react14 = require("react");
|
|
1972
1972
|
|
|
1973
1973
|
// src/components/interaction/form/Combobox/Combobox.module.css
|
|
1974
|
-
var Combobox_default = {"formGroup":"
|
|
1974
|
+
var Combobox_default = {"formGroup":"bds125Combobox-formGroup","inputWrapper":"bds125Combobox-inputWrapper","input":"bds125Combobox-input","inputError":"bds125Combobox-inputError","chevron":"bds125Combobox-chevron","listbox":"bds125Combobox-listbox","option":"bds125Combobox-option","--highlighted":"bds125Combobox---highlighted","--selected":"bds125Combobox---selected","--disabled":"bds125Combobox---disabled"};
|
|
1975
1975
|
|
|
1976
1976
|
// src/components/interaction/form/Combobox/Combobox.tsx
|
|
1977
1977
|
var import_design_system_foundation36 = require("@boostdev/design-system-foundation");
|
|
@@ -2122,7 +2122,7 @@ function Combobox({
|
|
|
2122
2122
|
var import_react15 = require("react");
|
|
2123
2123
|
|
|
2124
2124
|
// src/components/interaction/form/FileInput/FileInput.module.css
|
|
2125
|
-
var FileInput_default = {"formGroup":"
|
|
2125
|
+
var FileInput_default = {"formGroup":"bds125FileInput-formGroup","fieldLabel":"bds125FileInput-fieldLabel","dropZone":"bds125FileInput-dropZone","isDragging":"bds125FileInput-isDragging","hasError":"bds125FileInput-hasError","isDisabled":"bds125FileInput-isDisabled","icon":"bds125FileInput-icon","prompt":"bds125FileInput-prompt","acceptHint":"bds125FileInput-acceptHint","hiddenInput":"bds125FileInput-hiddenInput"};
|
|
2126
2126
|
|
|
2127
2127
|
// src/components/interaction/form/FileInput/FileInput.tsx
|
|
2128
2128
|
var import_design_system_foundation37 = require("@boostdev/design-system-foundation");
|
|
@@ -2223,7 +2223,7 @@ function FileInput({
|
|
|
2223
2223
|
var import_react16 = require("react");
|
|
2224
2224
|
|
|
2225
2225
|
// src/components/interaction/form/FormInput/FormInput.module.css
|
|
2226
|
-
var FormInput_default = {"formGroup":"
|
|
2226
|
+
var FormInput_default = {"formGroup":"bds125FormInput-formGroup","input":"bds125FormInput-input","inputError":"bds125FormInput-inputError"};
|
|
2227
2227
|
|
|
2228
2228
|
// src/components/interaction/form/FormInput/FormInput.tsx
|
|
2229
2229
|
var import_design_system_foundation38 = require("@boostdev/design-system-foundation");
|
|
@@ -2267,7 +2267,7 @@ function FormInput({
|
|
|
2267
2267
|
var import_react17 = require("react");
|
|
2268
2268
|
|
|
2269
2269
|
// src/components/interaction/form/NumberInput/NumberInput.module.css
|
|
2270
|
-
var NumberInput_default = {"formGroup":"
|
|
2270
|
+
var NumberInput_default = {"formGroup":"bds125NumberInput-formGroup","inputRow":"bds125NumberInput-inputRow","input":"bds125NumberInput-input","inputError":"bds125NumberInput-inputError","stepper":"bds125NumberInput-stepper"};
|
|
2271
2271
|
|
|
2272
2272
|
// src/components/interaction/form/NumberInput/NumberInput.tsx
|
|
2273
2273
|
var import_design_system_foundation39 = require("@boostdev/design-system-foundation");
|
|
@@ -2372,7 +2372,7 @@ function NumberInput({
|
|
|
2372
2372
|
var import_react18 = require("react");
|
|
2373
2373
|
|
|
2374
2374
|
// src/components/interaction/form/Radio/Radio.module.css
|
|
2375
|
-
var Radio_default = {"radioGroup":"
|
|
2375
|
+
var Radio_default = {"radioGroup":"bds125Radio-radioGroup","inputWrapper":"bds125Radio-inputWrapper","textWrapper":"bds125Radio-textWrapper","description":"bds125Radio-description","radio":"bds125Radio-radio","radioError":"bds125Radio-radioError"};
|
|
2376
2376
|
|
|
2377
2377
|
// src/components/interaction/form/Radio/Radio.tsx
|
|
2378
2378
|
var import_design_system_foundation40 = require("@boostdev/design-system-foundation");
|
|
@@ -2410,7 +2410,7 @@ function Radio({ label, name, description, error, hint, className, ...props }) {
|
|
|
2410
2410
|
var import_react19 = require("react");
|
|
2411
2411
|
|
|
2412
2412
|
// src/components/interaction/form/RadioGroup/RadioGroup.module.css
|
|
2413
|
-
var RadioGroup_default = {"group":"
|
|
2413
|
+
var RadioGroup_default = {"group":"bds125RadioGroup-group","legend":"bds125RadioGroup-legend","required":"bds125RadioGroup-required","items":"bds125RadioGroup-items"};
|
|
2414
2414
|
|
|
2415
2415
|
// src/components/interaction/form/RadioGroup/RadioGroup.tsx
|
|
2416
2416
|
var import_design_system_foundation41 = require("@boostdev/design-system-foundation");
|
|
@@ -2452,7 +2452,7 @@ function RadioGroup({
|
|
|
2452
2452
|
var import_react20 = require("react");
|
|
2453
2453
|
|
|
2454
2454
|
// src/components/interaction/form/SegmentedControl/SegmentedControl.module.css
|
|
2455
|
-
var SegmentedControl_default = {"control":"
|
|
2455
|
+
var SegmentedControl_default = {"control":"bds125SegmentedControl-control","thumb":"bds125SegmentedControl-thumb","indicator":"bds125SegmentedControl-indicator","item":"bds125SegmentedControl-item","--active":"bds125SegmentedControl---active","--disabled":"bds125SegmentedControl---disabled","--size_small":"bds125SegmentedControl---size_small","--size_large":"bds125SegmentedControl---size_large","--variant_outline":"bds125SegmentedControl---variant_outline"};
|
|
2456
2456
|
|
|
2457
2457
|
// src/components/interaction/form/SegmentedControl/SegmentedControl.tsx
|
|
2458
2458
|
var import_design_system_foundation42 = require("@boostdev/design-system-foundation");
|
|
@@ -2508,7 +2508,7 @@ function SegmentedControl({
|
|
|
2508
2508
|
var import_react21 = require("react");
|
|
2509
2509
|
|
|
2510
2510
|
// src/components/interaction/form/Select/Select.module.css
|
|
2511
|
-
var Select_default = {"formGroup":"
|
|
2511
|
+
var Select_default = {"formGroup":"bds125Select-formGroup","selectWrapper":"bds125Select-selectWrapper","select":"bds125Select-select","selectError":"bds125Select-selectError","chevron":"bds125Select-chevron"};
|
|
2512
2512
|
|
|
2513
2513
|
// src/components/interaction/form/Select/Select.tsx
|
|
2514
2514
|
var import_design_system_foundation43 = require("@boostdev/design-system-foundation");
|
|
@@ -2559,7 +2559,7 @@ function Select({
|
|
|
2559
2559
|
var import_react22 = require("react");
|
|
2560
2560
|
|
|
2561
2561
|
// src/components/interaction/form/Slider/Slider.module.css
|
|
2562
|
-
var Slider_default = {"formGroup":"
|
|
2562
|
+
var Slider_default = {"formGroup":"bds125Slider-formGroup","labelRow":"bds125Slider-labelRow","value":"bds125Slider-value","slider":"bds125Slider-slider","sliderError":"bds125Slider-sliderError"};
|
|
2563
2563
|
|
|
2564
2564
|
// src/components/interaction/form/Slider/Slider.tsx
|
|
2565
2565
|
var import_design_system_foundation44 = require("@boostdev/design-system-foundation");
|
|
@@ -2621,7 +2621,7 @@ function Slider({
|
|
|
2621
2621
|
var import_react23 = require("react");
|
|
2622
2622
|
|
|
2623
2623
|
// src/components/interaction/form/Switch/Switch.module.css
|
|
2624
|
-
var Switch_default = {"switchGroup":"
|
|
2624
|
+
var Switch_default = {"switchGroup":"bds125Switch-switchGroup","--size_small":"bds125Switch---size_small","--size_medium":"bds125Switch---size_medium","--size_large":"bds125Switch---size_large","inputWrapper":"bds125Switch-inputWrapper","trackWrapper":"bds125Switch-trackWrapper","switch":"bds125Switch-switch","track":"bds125Switch-track","thumb":"bds125Switch-thumb","switchError":"bds125Switch-switchError"};
|
|
2625
2625
|
|
|
2626
2626
|
// src/components/interaction/form/Switch/Switch.tsx
|
|
2627
2627
|
var import_design_system_foundation45 = require("@boostdev/design-system-foundation");
|
|
@@ -2669,7 +2669,7 @@ function Switch({
|
|
|
2669
2669
|
var import_react24 = require("react");
|
|
2670
2670
|
|
|
2671
2671
|
// src/components/interaction/form/Textarea/Textarea.module.css
|
|
2672
|
-
var Textarea_default = {"formGroup":"
|
|
2672
|
+
var Textarea_default = {"formGroup":"bds125Textarea-formGroup","textarea":"bds125Textarea-textarea","textareaError":"bds125Textarea-textareaError"};
|
|
2673
2673
|
|
|
2674
2674
|
// src/components/interaction/form/Textarea/Textarea.tsx
|
|
2675
2675
|
var import_design_system_foundation46 = require("@boostdev/design-system-foundation");
|
|
@@ -2708,7 +2708,7 @@ function Textarea({
|
|
|
2708
2708
|
}
|
|
2709
2709
|
|
|
2710
2710
|
// src/components/layout/ButtonGroup/ButtonGroup.module.css
|
|
2711
|
-
var ButtonGroup_default = {"buttonGroup":"
|
|
2711
|
+
var ButtonGroup_default = {"buttonGroup":"bds125ButtonGroup-buttonGroup","container":"bds125ButtonGroup-container","--variant_card":"bds125ButtonGroup---variant_card","--variant_flow":"bds125ButtonGroup---variant_flow","--variant_modal":"bds125ButtonGroup---variant_modal","--variant_content":"bds125ButtonGroup---variant_content","--variant_grid":"bds125ButtonGroup---variant_grid"};
|
|
2712
2712
|
|
|
2713
2713
|
// src/components/layout/ButtonGroup/ButtonGroup.tsx
|
|
2714
2714
|
var import_design_system_foundation47 = require("@boostdev/design-system-foundation");
|
|
@@ -2726,7 +2726,7 @@ function ButtonGroup({ children, className, variant, ...rest }) {
|
|
|
2726
2726
|
}
|
|
2727
2727
|
|
|
2728
2728
|
// src/components/layout/Card/Card.module.css
|
|
2729
|
-
var Card_default = {"card":"
|
|
2729
|
+
var Card_default = {"card":"bds125Card-card","--default":"bds125Card---default","--elevated":"bds125Card---elevated","--outlined":"bds125Card---outlined","--clickable":"bds125Card---clickable","--padding-none":"bds125Card---padding-none","--padding-small":"bds125Card---padding-small","--padding-medium":"bds125Card---padding-medium","--padding-large":"bds125Card---padding-large","--text-start":"bds125Card---text-start","--text-center":"bds125Card---text-center","--text-end":"bds125Card---text-end"};
|
|
2730
2730
|
|
|
2731
2731
|
// src/components/layout/Card/Card.tsx
|
|
2732
2732
|
var import_design_system_foundation48 = require("@boostdev/design-system-foundation");
|
|
@@ -2762,7 +2762,7 @@ function Card({
|
|
|
2762
2762
|
}
|
|
2763
2763
|
|
|
2764
2764
|
// src/components/layout/SectionHeader/SectionHeader.module.css
|
|
2765
|
-
var SectionHeader_default = {"sectionHeader":"
|
|
2765
|
+
var SectionHeader_default = {"sectionHeader":"bds125SectionHeader-sectionHeader","title":"bds125SectionHeader-title","subtitle":"bds125SectionHeader-subtitle","--start":"bds125SectionHeader---start","--center":"bds125SectionHeader---center","--end":"bds125SectionHeader---end","--small":"bds125SectionHeader---small","--medium":"bds125SectionHeader---medium","--large":"bds125SectionHeader---large"};
|
|
2766
2766
|
|
|
2767
2767
|
// src/components/layout/SectionHeader/SectionHeader.tsx
|
|
2768
2768
|
var import_design_system_foundation49 = require("@boostdev/design-system-foundation");
|
|
@@ -2784,7 +2784,7 @@ function SectionHeader({
|
|
|
2784
2784
|
}
|
|
2785
2785
|
|
|
2786
2786
|
// src/components/layout/IconWrapper/IconWrapper.module.css
|
|
2787
|
-
var IconWrapper_default = {"wrapper":"
|
|
2787
|
+
var IconWrapper_default = {"wrapper":"bds125IconWrapper-wrapper"};
|
|
2788
2788
|
|
|
2789
2789
|
// src/components/layout/IconWrapper/IconWrapper.tsx
|
|
2790
2790
|
var import_design_system_foundation50 = require("@boostdev/design-system-foundation");
|