@bwp-web/components 1.0.2 → 1.0.3
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/README.md +14 -10
- package/package.json +4 -2
package/README.md
CHANGED
|
@@ -10,8 +10,8 @@ npm install @bwp-web/components
|
|
|
10
10
|
|
|
11
11
|
### Peer Dependencies
|
|
12
12
|
|
|
13
|
-
- `@bwp-web/styles` >= 1.0.
|
|
14
|
-
- `@bwp-web/assets` >= 1.0.
|
|
13
|
+
- `@bwp-web/styles` >= 1.0.3
|
|
14
|
+
- `@bwp-web/assets` >= 1.0.1
|
|
15
15
|
- `@mui/material` >= 7.0.0
|
|
16
16
|
- `react` >= 18.0.0
|
|
17
17
|
- `react-dom` >= 18.0.0
|
|
@@ -44,6 +44,9 @@ For `BiampTable` only:
|
|
|
44
44
|
| `BiampBannerIcon` | Leading icon slot for `BiampBanner` |
|
|
45
45
|
| `BiampBannerContent` | Center message slot for `BiampBanner` |
|
|
46
46
|
| `BiampBannerActions` | Trailing actions slot for `BiampBanner` |
|
|
47
|
+
| `BiampGlobalSearch` | Searchable autocomplete with icons, subtitles, chips, and keyboard hints |
|
|
48
|
+
| `SegmentedButtonGroup` | Horizontal container for grouping segmented toggle buttons |
|
|
49
|
+
| `SegmentedButton` | Individual toggle button for use inside `SegmentedButtonGroup` |
|
|
47
50
|
| `BiampTable` | Composable data table with sorting, selection, pagination, and more |
|
|
48
51
|
|
|
49
52
|
## Usage
|
|
@@ -223,11 +226,12 @@ Requires `@tanstack/react-table` >= 8.0.0 as a peer dependency.
|
|
|
223
226
|
|
|
224
227
|
Detailed per-component docs are available in the repository's [`/docs`](../../docs) folder (GitHub links):
|
|
225
228
|
|
|
226
|
-
| Document
|
|
227
|
-
|
|
|
228
|
-
| [biamp-layout.md](../../docs/biamp-layout.md)
|
|
229
|
-
| [biamp-wrapper.md](../../docs/biamp-wrapper.md)
|
|
230
|
-
| [biamp-sidebar.md](../../docs/biamp-sidebar.md)
|
|
231
|
-
| [biamp-header.md](../../docs/biamp-header.md)
|
|
232
|
-
| [biamp-banner.md](../../docs/biamp-banner.md)
|
|
233
|
-
| [biamp-
|
|
229
|
+
| Document | Contents |
|
|
230
|
+
| ----------------------------------------------------------- | ----------------------------------------------------------------------------------- |
|
|
231
|
+
| [biamp-layout.md](../../docs/biamp-layout.md) | `BiampLayout` — props, examples, design details |
|
|
232
|
+
| [biamp-wrapper.md](../../docs/biamp-wrapper.md) | `BiampWrapper` — props, examples, design details |
|
|
233
|
+
| [biamp-sidebar.md](../../docs/biamp-sidebar.md) | `BiampSidebar`, `BiampSidebarIconList`, `BiampSidebarIcon`, `BiampSidebarComponent` |
|
|
234
|
+
| [biamp-header.md](../../docs/biamp-header.md) | `BiampHeader` family + app-launcher components |
|
|
235
|
+
| [biamp-banner.md](../../docs/biamp-banner.md) | `BiampBanner` family — props, examples, design details |
|
|
236
|
+
| [biamp-global-search.md](../../docs/biamp-global-search.md) | `BiampGlobalSearch` — options, filtering, async loading, navigation |
|
|
237
|
+
| [biamp-table.md](../../docs/biamp-table.md) | `BiampTable` — columns, sorting, selection, pagination, filters, export |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bwp-web/components",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "Shared Biamp Workplace React components",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"prepublishOnly": "npm run build"
|
|
33
33
|
},
|
|
34
34
|
"peerDependencies": {
|
|
35
|
-
"@bwp-web/styles": ">=1.0.
|
|
35
|
+
"@bwp-web/styles": ">=1.0.3",
|
|
36
36
|
"@bwp-web/assets": ">=1.0.1",
|
|
37
37
|
"@mui/material": ">=7.0.0",
|
|
38
38
|
"@tanstack/react-table": ">=8.0.0",
|
|
@@ -42,6 +42,7 @@
|
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@bwp-web/assets": "*",
|
|
44
44
|
"@bwp-web/eslint-config": "*",
|
|
45
|
+
"@mui/icons-material": "^7.3.7",
|
|
45
46
|
"@bwp-web/styles": "*",
|
|
46
47
|
"@mui/material": "^7.3.7",
|
|
47
48
|
"@tanstack/react-table": "^8.21.3",
|
|
@@ -49,6 +50,7 @@
|
|
|
49
50
|
"eslint": "^9.39.2",
|
|
50
51
|
"prettier": "^3.8.1",
|
|
51
52
|
"tsup": "^8.5.1",
|
|
53
|
+
"@storybook/react-vite": "^10.3.1",
|
|
52
54
|
"typescript": "^5.9.2"
|
|
53
55
|
},
|
|
54
56
|
"license": "MIT",
|