@bug-on/m3-expressive 1.0.0 → 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (49) hide show
  1. package/CHANGELOG.md +29 -2
  2. package/README.md +20 -18
  3. package/dist/assets/material-symbols-self-hosted.css +27 -26
  4. package/dist/buttons.d.mts +1 -1
  5. package/dist/buttons.d.ts +1 -1
  6. package/dist/buttons.js.map +1 -1
  7. package/dist/buttons.mjs.map +1 -1
  8. package/dist/core.d.mts +44 -44
  9. package/dist/core.d.ts +44 -44
  10. package/dist/core.js.map +1 -1
  11. package/dist/core.mjs.map +1 -1
  12. package/dist/feedback.d.mts +54 -54
  13. package/dist/feedback.d.ts +54 -54
  14. package/dist/feedback.js.map +1 -1
  15. package/dist/feedback.mjs.map +1 -1
  16. package/dist/index.css +3 -0
  17. package/dist/index.d.mts +2 -2
  18. package/dist/index.d.ts +2 -2
  19. package/dist/index.js +8 -8
  20. package/dist/index.js.map +1 -1
  21. package/dist/index.mjs +8 -8
  22. package/dist/index.mjs.map +1 -1
  23. package/dist/layout.d.mts +40 -40
  24. package/dist/layout.d.ts +40 -40
  25. package/dist/layout.js +5 -5
  26. package/dist/layout.js.map +1 -1
  27. package/dist/layout.mjs +5 -5
  28. package/dist/layout.mjs.map +1 -1
  29. package/dist/material-symbols-self-hosted.css +27 -26
  30. package/dist/navigation.js.map +1 -1
  31. package/dist/navigation.mjs.map +1 -1
  32. package/dist/overlays.d.mts +2 -2
  33. package/dist/overlays.d.ts +2 -2
  34. package/dist/overlays.js +2 -2
  35. package/dist/overlays.js.map +1 -1
  36. package/dist/overlays.mjs +2 -2
  37. package/dist/overlays.mjs.map +1 -1
  38. package/dist/pickers.d.mts +241 -243
  39. package/dist/pickers.d.ts +241 -243
  40. package/dist/pickers.js +1 -1
  41. package/dist/pickers.js.map +1 -1
  42. package/dist/pickers.mjs +1 -1
  43. package/dist/pickers.mjs.map +1 -1
  44. package/dist/{side-sheet-modal-BY6VCC8p.d.mts → side-sheet-modal-64FGhDxL.d.mts} +20 -21
  45. package/dist/{side-sheet-modal-CglP6KYA.d.ts → side-sheet-modal-Bd5Qqvp9.d.ts} +20 -21
  46. package/dist/{split-button-trailing-uncheckable-MXj_kyNt.d.mts → split-button-trailing-uncheckable-BRPuTqi1.d.mts} +140 -151
  47. package/dist/{split-button-trailing-uncheckable-C5CLCIKP.d.ts → split-button-trailing-uncheckable-CjOFCoyW.d.ts} +140 -151
  48. package/dist/typography.css +5 -0
  49. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -1,16 +1,29 @@
1
1
  # @bug-on/m3-expressive
2
2
 
3
+ ## 1.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 72c3aec: Standardize the language, rewrite the instruction manual, and address known minor issues.
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [72c3aec]
12
+ - @bug-on/m3-tailwind@1.1.0
13
+ - @bug-on/m3-tokens@1.1.0
14
+
3
15
  ## 1.0.0
4
16
 
5
17
  ### 🎉 Initial Release
6
18
 
7
- First stable release of **@bug-on/m3-expressive** — Material Design 3 Expressive React component library by Bug Ổn.
19
+ First stable release of **@bug-on/m3-expressive** — Material Design 3 Expressive React component library by Bug On.
8
20
 
9
- > **Note:** This package was previously published as `@bug-on/md3-react`. All functionality has been carried over with a fresh version reset.
21
+ > **Note:** This package was previously published as `@bug-on/m3-expressive`. All functionality has been carried over with a fresh version reset.
10
22
 
11
23
  #### Components
12
24
 
13
25
  **Buttons**
26
+
14
27
  - `Button` — Filled, Outlined, Tonal, Elevated, Text variants
15
28
  - `IconButton` — Standard, Filled, Tonal, Outlined variants with toggle support
16
29
  - `FAB` — Floating Action Button (Small, Medium, Large)
@@ -20,6 +33,7 @@ First stable release of **@bug-on/m3-expressive** — Material Design 3 Expressi
20
33
  - `ButtonGroup` — Grouped buttons with shared styling
21
34
 
22
35
  **Forms & Inputs**
36
+
23
37
  - `TextField` — Filled and Outlined variants with leading/trailing icons
24
38
  - `Checkbox` — Standard and TriState checkbox
25
39
  - `RadioButton` — Radio button with MD3 styling
@@ -27,12 +41,14 @@ First stable release of **@bug-on/m3-expressive** — Material Design 3 Expressi
27
41
  - `Slider` / `RangeSlider` — Single and range slider with discrete/continuous modes
28
42
 
29
43
  **Navigation**
44
+
30
45
  - `NavigationBar` — Bottom navigation bar with animated icons
31
46
  - `NavigationRail` — Side navigation rail
32
47
  - `Tabs` / `Tab` / `TabsList` / `TabsContent` — Primary and Secondary tab variants
33
48
  - `Drawer` — Navigation drawer (standard, modal)
34
49
 
35
50
  **Feedback**
51
+
36
52
  - `Dialog` — Alert and full-screen dialog
37
53
  - `Snackbar` / `SnackbarProvider` / `useSnackbar` — Toast notifications
38
54
  - `ProgressIndicator` — Linear and Circular (determinate, indeterminate, wavy)
@@ -40,6 +56,7 @@ First stable release of **@bug-on/m3-expressive** — Material Design 3 Expressi
40
56
  - `Tooltip` — Plain and Rich tooltip with caret
41
57
 
42
58
  **Layout & Surfaces**
59
+
43
60
  - `Card` — Elevated, Filled, Outlined variants
44
61
  - `Divider` — Full-width and inset dividers
45
62
  - `List` / `ListItem` / `ListDivider` — Lists with leading/trailing elements
@@ -47,12 +64,14 @@ First stable release of **@bug-on/m3-expressive** — Material Design 3 Expressi
47
64
  - `SideSheet` / `BottomSheet` — Sheet overlays
48
65
 
49
66
  **App Bars & Toolbars**
67
+
50
68
  - `SmallAppBar` / `MediumFlexibleAppBar` / `LargeFlexibleAppBar` — Top app bars
51
69
  - `BottomAppBar` — Bottom app bar with FAB integration
52
70
  - `SearchAppBar` / `SearchView` — Expandable search
53
71
  - `Toolbar` / `FloatingToolbar` / `DockedToolbar` — Contextual toolbars
54
72
 
55
73
  **Data & Display**
74
+
56
75
  - `Badge` / `BadgedBox` — Notification badges
57
76
  - `Chip` — Assist, Filter, Input, Suggestion variants
58
77
  - `Icon` — Material Symbols integration with fill/weight/grade/size control
@@ -60,44 +79,52 @@ First stable release of **@bug-on/m3-expressive** — Material Design 3 Expressi
60
79
  - `CodeBlock` — Code display with syntax highlighting
61
80
 
62
81
  **Date & Time Pickers**
82
+
63
83
  - `DatePicker` / `DatePickerDialog` / `DatePickerInput` — Date selection
64
84
  - `DateRangePicker` — Date range selection
65
85
  - `TimePicker` / `TimePickerDialog` / `TimeInput` — Time selection
66
86
 
67
87
  **Shapes & Media**
88
+
68
89
  - `ShapeMedia` / `ShapeMediaServer` — MD3 Expressive shape containers
69
90
  - `ShapeSvg` / `ShapeIcon` — SVG-based shapes
70
91
  - `useShapeMorph` — Shape morphing animation hook
71
92
  - MD3 shape catalog with all expressive corner variants
72
93
 
73
94
  **Search**
95
+
74
96
  - `Search` / `SearchBar` — Inline search
75
97
  - `SearchViewDocked` / `SearchViewFullscreen` — Expanded search views
76
98
 
77
99
  **Menu**
100
+
78
101
  - `Menu` / `MenuItem` / `MenuDivider` / `MenuGroup` — Dropdown menus
79
102
  - `SubMenu` — Nested submenus
80
103
  - `ContextMenu` — Right-click context menu
81
104
  - `VerticalMenu` — Vertical navigation menu
82
105
 
83
106
  **Theme & Providers**
107
+
84
108
  - `MD3ThemeProvider` — Dynamic color theming (Material You)
85
109
  - `useTheme` / `useThemeMode` — Theme hooks
86
110
  - `MaterialSymbolsPreconnect` — Font preconnect helper
87
111
 
88
112
  **Utilities**
113
+
89
114
  - `Ripple` — Touch ripple effect
90
115
  - `StateLayer` — Hover/focus/press state layer
91
116
  - `TouchTarget` — Accessible touch target sizing
92
117
  - `useAppBarScroll` — Scroll-aware app bar behavior
93
118
 
94
119
  #### CSS Exports
120
+
95
121
  - `@bug-on/m3-expressive/index.css` — MD3 tokens + Tailwind `@theme` + resets
96
122
  - `@bug-on/m3-expressive/typography.css` — Google Sans Flex font-face
97
123
  - `@bug-on/m3-expressive/material-symbols-cdn.css` — Material Symbols via CDN
98
124
  - `@bug-on/m3-expressive/material-symbols-self-hosted.css` — Self-hosted icons
99
125
 
100
126
  #### Sub-path Exports
127
+
101
128
  - `@bug-on/m3-expressive/core` — Theme providers and hooks only
102
129
  - `@bug-on/m3-expressive/buttons` — Button components only
103
130
  - `@bug-on/m3-expressive/forms` — Form components only
package/README.md CHANGED
@@ -2,31 +2,31 @@
2
2
 
3
3
  > ⚠️ **Work in progress** — Material Design 3 Expressive React Component Library.
4
4
 
5
- Thư viện UI component hiệu năng cao cho React được thiết kế theo ngôn ngữ thiết kế [Material Design 3 Expressive](https://m3.material.io/). Mang đến hiệu ứng mượt mà, khả năng hỗ trợ tiếp cận (a11y) mạnh mẽ tương thích hoàn hảo với SSR / Next.js App Router.
5
+ High-performance React component library designed following the [Material Design 3 Expressive](https://m3.material.io/) design system. Featuring smooth motion, robust accessibility (a11y) support, and seamless compatibility with SSR and Next.js App Router.
6
6
 
7
7
  ---
8
8
 
9
- ## 📖 Tài liệu hướng dẫn & Demo
10
- Để xem hướng dẫn chi tiết về API của từng Component, các thuộc tính chỉnh sửa cũng như xem demo tương tác trực quan nhất, vui lòng truy cập:
11
- 👉 **[Tài liệu & Demo chính thức (GitHub Repository)](https://github.com/nguyentruongton/bug-on-md3-expressive)**
9
+ ## 📖 Documentation & Demos
10
+ For component API guides, customization options, and interactive component previews, please visit:
11
+ 👉 **[Official Documentation & Demos (GitHub Repository)](https://github.com/nguyentruongton/bug-on-md3-expressive)**
12
12
 
13
13
  ---
14
14
 
15
- ## 📦 Cài đặt
15
+ ## 📦 Installation
16
16
 
17
- Cài đặt gói React component cùng với các package cốt lõi đi kèm trong hệ sinh thái:
17
+ Install the React component package alongside core ecosystem packages:
18
18
 
19
19
  ```bash
20
20
  npm install @bug-on/m3-expressive @bug-on/m3-tailwind @bug-on/m3-tokens
21
- # hoặc
21
+ # or
22
22
  pnpm add @bug-on/m3-expressive @bug-on/m3-tailwind @bug-on/m3-tokens
23
23
  ```
24
24
 
25
- ### Peer Dependencies thiết yếu
26
- Đảm bảo bạn đã cài đặt đầy đủ các peer dependencies sau trong dự án:
25
+ ### Essential Peer Dependencies
26
+ Ensure the following peer dependencies are installed in your project:
27
27
  ```bash
28
28
  npm install react react-dom
29
- # Yêu cầu cài đặt thêm thư viện motion cho các component có hiệu ứng động (Fab, Tabs, Dialog...):
29
+ # Required for animated components (Fab, Tabs, Dialog, etc.):
30
30
  npm install motion
31
31
  ```
32
32
 
@@ -55,11 +55,11 @@ This system is designed around the CSS-first architecture of **Tailwind CSS v4**
55
55
 
56
56
  > **Zero Config:** Once `@bug-on/m3-expressive/index.css` is imported, basic MD3 utility classes (`bg-m3-primary`, `text-m3-on-surface`, `rounded-m3-xl`, etc.) work immediately. For the full set of utilities like depth shadows (`elevation-3`), icon axis control (`icon-fill-1`), or physics-based transitions (`transition-m3-fast-spatial`), import `@bug-on/m3-tailwind` as well. Do NOT use JS plugins in Tailwind v4.
57
57
 
58
- ### Cấu hình Icons (Material Symbols)
59
- Thư viện tích hợp sẵn component `<Icon />` sử dụng font `Material Symbols Outlined`. Bạn cần import stylesheet của icon tại root của ứng dụng ( dụ `layout.tsx` hoặc `main.tsx`):
58
+ ### Icons Configuration (Material Symbols)
59
+ The library includes a built-in `<Icon />` component using the `Material Symbols Outlined` font. Import the icon stylesheet at your application root (e.g., `layout.tsx` or `main.tsx`):
60
60
 
61
61
  ```tsx
62
- // app/layout.tsx hoặc src/main.tsx
62
+ // app/layout.tsx or src/main.tsx
63
63
  import '@bug-on/m3-expressive/material-symbols-cdn.css';
64
64
  import { MaterialSymbolsPreconnect } from '@bug-on/m3-expressive';
65
65
 
@@ -67,7 +67,7 @@ export default function RootLayout({ children }) {
67
67
  return (
68
68
  <html>
69
69
  <head>
70
- {/* Hỗ trợ tải trước font giúp hiển thị icon cực nhanh */}
70
+ {/* Preconnect helper to accelerate font loading */}
71
71
  <MaterialSymbolsPreconnect />
72
72
  </head>
73
73
  <body>{children}</body>
@@ -75,7 +75,8 @@ export default function RootLayout({ children }) {
75
75
  );
76
76
  }
77
77
  ```
78
- Nếu cần hỗ trợ offline hoặc không gửi request font tới CDN, cài package font opt-in:
78
+
79
+ For offline support or self-hosted font deployments:
79
80
 
80
81
  ```bash
81
82
  pnpm add @bug-on/m3-fonts
@@ -86,11 +87,11 @@ pnpm add @bug-on/m3-fonts
86
87
  @import "@bug-on/m3-fonts/typography.css";
87
88
  ```
88
89
 
89
- `@bug-on/m3-expressive/material-symbols-self-hosted.css` vẫn hoạt động để tương thích ngược, nhưng đã deprecated sẽ bị xoá major version tiếp theo.
90
+ `@bug-on/m3-expressive/material-symbols-self-hosted.css` remains active for backward compatibility, but is deprecated and will be removed in the next major version.
90
91
 
91
92
  ---
92
93
 
93
- ## 🚀 Sử dụng cơ bản
94
+ ## 🚀 Basic Usage
94
95
 
95
96
  ```tsx
96
97
  import { Button, Icon } from '@bug-on/m3-expressive';
@@ -106,5 +107,6 @@ export default function Page() {
106
107
  }
107
108
  ```
108
109
 
109
- ## ⚖️ Giấy phép
110
+ ## ⚖️ License
110
111
  MIT
112
+
@@ -4,56 +4,57 @@
4
4
  * SETUP STEPS:
5
5
  *
6
6
  * Step 1 — Download font files
7
- * Truy cập: https://github.com/google/material-design-icons/tree/master/variablefont
7
+ * Visit: https://github.com/google/material-design-icons/tree/master/variablefont
8
8
  * Download file: MaterialSymbolsOutlined[FILL,GRAD,opsz,wght].woff2
9
- * ( Rounded / Sharp nếu cần)
9
+ * (and Rounded / Sharp if needed)
10
10
  *
11
11
  * Step 2 — Place font files in your app
12
- * Recommended location: public/fonts/ hoặc src/assets/fonts/
12
+ * Recommended location: public/fonts/ or src/assets/fonts/
13
13
  * Example: public/fonts/MaterialSymbolsOutlined.woff2
14
14
  *
15
- * Step 3 — Copy điều chỉnh @font-face block bên dưới
16
- * Thay đổi src url() để trỏ đúng đường dẫn trong project của bạn
15
+ * Step 3 — Copy and adjust @font-face block below
16
+ * Change src url() to point to the correct path in your project
17
17
  *
18
- * @deprecated New integrations should install `@bug-on/m3-fonts` and import
19
- * `@bug-on/m3-fonts/material-symbols.css`. This legacy export remains only
18
+ * @deprecated New integrations should install `@bug-on/md3-fonts` and import
19
+ * `@bug-on/md3-fonts/material-symbols.css`. This legacy export remains only
20
20
  * for backwards compatibility and will be removed in the next major version.
21
21
  *
22
- * Step 4 — Import file này:
22
+ * Step 4 — Import this file:
23
23
  * import '@bug-on/m3-expressive/material-symbols-self-hosted.css'
24
24
  *
25
25
  * PERFORMANCE NOTES:
26
- * - Self-hosting tốt hơn CDN khi bạn dùng CDN + HTTP/2 cho static assets
27
- * - Nếu không CDN, Google Fonts CDN thể nhanh hơn do cache sharing
28
- * - Dùng font-display: block cho icon fonts (xem do file CDN)
29
- * - WOFF2 format duy nhất cần thiết (100% modern browser support, Brotli compression)
30
- * - Không cần WOFF fallback nữa
26
+ * - Self-hosting is better than CDN when using HTTP/2 CDN for static assets
27
+ * - Without a CDN, Google Fonts CDN may be faster due to cache sharing
28
+ * - Use font-display: block for icon fonts (see reasons in CDN file)
29
+ * - WOFF2 is the only format needed (100% modern browser support, Brotli compression)
30
+ * - WOFF fallback is no longer required
31
31
  *
32
- * SUBSETTING (QUAN TRỌNG để giảm file size):
33
- * Full variable font ~295 KB. Sau khi subset còn ~1-2 KB cho vài chục icons.
34
- * Dùng tool: https://everythingfonts.com/subsetter
35
- * Hoặc dùng Google Fonts text parameter để subset trên CDN:
32
+
33
+ * SUBSETTING (IMPORTANT for reducing file size):
34
+ * Full variable font ~295 KB. After subsetting ~1-2 KB for a few dozen icons.
35
+ * Use tool: https://everythingfonts.com/subsetter
36
+ * Or use Google Fonts text parameter to subset on CDN:
36
37
  * ?family=Material+Symbols+Outlined&text=home%20search%20settings
37
38
  *
38
39
  * GDPR NOTE:
39
- * Self-hosting loại bỏ việc gửi user IP đến Google servers,
40
- * giải quyết GDPR compliance requirement.
40
+ * Self-hosting eliminates sending user IP addresses to Google servers,
41
+ * resolving GDPR compliance requirements.
41
42
  */
42
43
 
43
44
  @font-face {
44
45
  font-family: "Material Symbols Outlined";
45
46
  font-style: normal;
46
- /* Khai báo full axis range để browser biết đây là variable font */
47
+ /* Declare full axis range so browser recognizes variable font */
47
48
  font-weight: 100 700;
48
- /* font-display: block bắt buộc cho icon fonts:
49
- * - Tránh render text thô "arrow_forward" thay icon
50
- * - Max 3s block, sau đó icon xuất hiện
51
- * Tham khảo: https://web.dev/articles/font-best-practices#icon_fonts */
49
+ /* font-display: block is required for icon fonts:
50
+ * - Prevents rendering raw text "arrow_forward" instead of icon
51
+ * - Max 3s block, then icon appears
52
+ * Reference: https://web.dev/articles/font-best-practices#icon_fonts */
52
53
  font-display: block;
53
54
  src: url("/fonts/MaterialSymbolsOutlined[FILL,GRAD,opsz,wght].woff2")
54
55
  format("woff2");
55
- /* unicode-range: chỉ load font khi page chứa tự trong range này.
56
- * Material Symbols dùng PUA (Private Use Area) cho ligatures. */
56
+ /* unicode-range: loads font only when page contains characters in range.
57
+ * Material Symbols uses PUA (Private Use Area) for ligatures. */
57
58
  }
58
59
 
59
60
  /*
@@ -1,4 +1,4 @@
1
- export { B as BUTTON_COLOR_TOKENS, a as BUTTON_SIZE_TOKENS, b as BaseButtonProps, c as Button, d as ButtonGroup, e as ButtonGroupOrientation, f as ButtonGroupProps, g as ButtonGroupVariant, h as ButtonProps, E as ElevatedSplitButtonLeading, i as ElevatedSplitButtonTrailing, j as ElevatedSplitButtonTrailingUncheckable, k as ExtendedFAB, l as ExtendedFABProps, F as FAB, m as FABMenu, n as FABMenuItem, o as FABMenuItemData, p as FABMenuItemProps, q as FABMenuProps, r as FABPosition, s as FABPositionProps, t as FABProps, u as FilledSplitButtonLeading, v as FilledSplitButtonTrailing, w as FilledSplitButtonTrailingUncheckable, O as OutlinedSplitButtonLeading, x as OutlinedSplitButtonTrailing, y as OutlinedSplitButtonTrailingUncheckable, S as SplitButtonLayout, z as SplitButtonLayoutProps, A as SplitButtonLeading, C as SplitButtonLeadingProps, D as SplitButtonSize, Q as SplitButtonSizeTokens, G as SplitButtonTrailing, H as SplitButtonTrailingProps, I as SplitButtonTrailingUncheckable, J as SplitButtonTrailingUncheckableProps, K as SplitButtonVariant, T as ToggleFAB, L as ToggleFABProps, M as TonalSplitButtonLeading, N as TonalSplitButtonTrailing, P as TonalSplitButtonTrailingUncheckable } from './split-button-trailing-uncheckable-MXj_kyNt.mjs';
1
+ export { B as BUTTON_COLOR_TOKENS, a as BUTTON_SIZE_TOKENS, b as BaseButtonProps, c as Button, d as ButtonGroup, e as ButtonGroupOrientation, f as ButtonGroupProps, g as ButtonGroupVariant, h as ButtonProps, E as ElevatedSplitButtonLeading, i as ElevatedSplitButtonTrailing, j as ElevatedSplitButtonTrailingUncheckable, k as ExtendedFAB, l as ExtendedFABProps, F as FAB, m as FABMenu, n as FABMenuItem, o as FABMenuItemData, p as FABMenuItemProps, q as FABMenuProps, r as FABPosition, s as FABPositionProps, t as FABProps, u as FilledSplitButtonLeading, v as FilledSplitButtonTrailing, w as FilledSplitButtonTrailingUncheckable, O as OutlinedSplitButtonLeading, x as OutlinedSplitButtonTrailing, y as OutlinedSplitButtonTrailingUncheckable, S as SplitButtonLayout, z as SplitButtonLayoutProps, A as SplitButtonLeading, C as SplitButtonLeadingProps, D as SplitButtonSize, Q as SplitButtonSizeTokens, G as SplitButtonTrailing, H as SplitButtonTrailingProps, I as SplitButtonTrailingUncheckable, J as SplitButtonTrailingUncheckableProps, K as SplitButtonVariant, T as ToggleFAB, L as ToggleFABProps, M as TonalSplitButtonLeading, N as TonalSplitButtonTrailing, P as TonalSplitButtonTrailingUncheckable } from './split-button-trailing-uncheckable-BRPuTqi1.mjs';
2
2
  import { b as MD3Size } from './md3-DFhj-NZj.mjs';
3
3
  export { B as BaseIconButtonProps, I as IconButton, a as IconButtonProps } from './icon-button-D-gs0gfj.mjs';
4
4
  import { Transition } from 'motion/react';
package/dist/buttons.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- export { B as BUTTON_COLOR_TOKENS, a as BUTTON_SIZE_TOKENS, b as BaseButtonProps, c as Button, d as ButtonGroup, e as ButtonGroupOrientation, f as ButtonGroupProps, g as ButtonGroupVariant, h as ButtonProps, E as ElevatedSplitButtonLeading, i as ElevatedSplitButtonTrailing, j as ElevatedSplitButtonTrailingUncheckable, k as ExtendedFAB, l as ExtendedFABProps, F as FAB, m as FABMenu, n as FABMenuItem, o as FABMenuItemData, p as FABMenuItemProps, q as FABMenuProps, r as FABPosition, s as FABPositionProps, t as FABProps, u as FilledSplitButtonLeading, v as FilledSplitButtonTrailing, w as FilledSplitButtonTrailingUncheckable, O as OutlinedSplitButtonLeading, x as OutlinedSplitButtonTrailing, y as OutlinedSplitButtonTrailingUncheckable, S as SplitButtonLayout, z as SplitButtonLayoutProps, A as SplitButtonLeading, C as SplitButtonLeadingProps, D as SplitButtonSize, Q as SplitButtonSizeTokens, G as SplitButtonTrailing, H as SplitButtonTrailingProps, I as SplitButtonTrailingUncheckable, J as SplitButtonTrailingUncheckableProps, K as SplitButtonVariant, T as ToggleFAB, L as ToggleFABProps, M as TonalSplitButtonLeading, N as TonalSplitButtonTrailing, P as TonalSplitButtonTrailingUncheckable } from './split-button-trailing-uncheckable-C5CLCIKP.js';
1
+ export { B as BUTTON_COLOR_TOKENS, a as BUTTON_SIZE_TOKENS, b as BaseButtonProps, c as Button, d as ButtonGroup, e as ButtonGroupOrientation, f as ButtonGroupProps, g as ButtonGroupVariant, h as ButtonProps, E as ElevatedSplitButtonLeading, i as ElevatedSplitButtonTrailing, j as ElevatedSplitButtonTrailingUncheckable, k as ExtendedFAB, l as ExtendedFABProps, F as FAB, m as FABMenu, n as FABMenuItem, o as FABMenuItemData, p as FABMenuItemProps, q as FABMenuProps, r as FABPosition, s as FABPositionProps, t as FABProps, u as FilledSplitButtonLeading, v as FilledSplitButtonTrailing, w as FilledSplitButtonTrailingUncheckable, O as OutlinedSplitButtonLeading, x as OutlinedSplitButtonTrailing, y as OutlinedSplitButtonTrailingUncheckable, S as SplitButtonLayout, z as SplitButtonLayoutProps, A as SplitButtonLeading, C as SplitButtonLeadingProps, D as SplitButtonSize, Q as SplitButtonSizeTokens, G as SplitButtonTrailing, H as SplitButtonTrailingProps, I as SplitButtonTrailingUncheckable, J as SplitButtonTrailingUncheckableProps, K as SplitButtonVariant, T as ToggleFAB, L as ToggleFABProps, M as TonalSplitButtonLeading, N as TonalSplitButtonTrailing, P as TonalSplitButtonTrailingUncheckable } from './split-button-trailing-uncheckable-CjOFCoyW.js';
2
2
  import { b as MD3Size } from './md3-DFhj-NZj.js';
3
3
  export { B as BaseIconButtonProps, I as IconButton, a as IconButtonProps } from './icon-button-D-gs0gfj.js';
4
4
  import { Transition } from 'motion/react';