@bwp-web/components 1.1.2 → 1.2.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.
package/README.md CHANGED
@@ -22,34 +22,36 @@ For `BiampTable` only:
22
22
 
23
23
  ## Components
24
24
 
25
- | Component | Description |
26
- | ----------------------- | -------------------------------------------------------------------------------- |
27
- | `BiampLayout` | Full-page layout shell with optional header and sidebar slots |
28
- | `BiampWrapper` | Full-page content wrapper with padding, rounded corners, and scrollable overflow |
29
- | `BiampSidebar` | Fixed-width vertical sidebar with Biamp logo |
30
- | `BiampSidebarIconList` | Vertical list with 4px gaps for sidebar items |
31
- | `BiampSidebarIcon` | Selectable 48×48px icon button for sidebar navigation |
32
- | `BiampSidebarComponent` | 48×48px rounded box for arbitrary sidebar content |
33
- | `BiampHeader` | Horizontal header container with padding |
34
- | `BiampHeaderTitle` | Title section with icon, optional title, and optional subtitle |
35
- | `BiampHeaderSearch` | Search input with leading search icon |
36
- | `BiampHeaderActions` | Flex container for grouping action buttons and profile |
37
- | `BiampHeaderButtonList` | Horizontal list with 4px gaps for header buttons |
38
- | `BiampHeaderButton` | Selectable 40×40px icon button for header actions |
39
- | `BiampHeaderProfile` | Profile button with image or custom children (e.g. `UserInitialsIcon`) |
40
- | `BiampAppPopover` | Styled popover for the app-launcher dialog |
41
- | `BiampAppDialog` | Rounded dialog container for app-launcher grid |
42
- | `BiampAppDialogItem` | Clickable app tile with children content and label |
43
- | `BiampBanner` | Full-width animated notification banner |
44
- | `BiampBannerIcon` | Leading icon slot for `BiampBanner` |
45
- | `BiampBannerContent` | Center message slot for `BiampBanner` |
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` |
50
- | `BiampTable` | Composable data table with sorting, selection, pagination, and more |
51
- | `UserInitialsIcon` | Avatar-style icon showing a user's initials with a deterministic color |
52
- | `DynamicSvgIcon` | Renders a remotely-fetched SVG with a skeleton loader and required fallback |
25
+ | Component | Description |
26
+ | ---------------------------- | ------------------------------------------------------------------------------------ |
27
+ | `BiampLayout` | Full-page layout shell with optional header and sidebar slots |
28
+ | `BiampWrapper` | Full-page content wrapper with padding, rounded corners, and scrollable overflow |
29
+ | `BiampSidebar` | Fixed-width vertical sidebar with Biamp logo |
30
+ | `BiampSidebarIconList` | Vertical list with 4px gaps for sidebar items |
31
+ | `BiampSidebarIcon` | Selectable 48×48px icon button for sidebar navigation |
32
+ | `BiampSidebarComponent` | 48×48px rounded box for arbitrary sidebar content |
33
+ | `BiampHeader` | Horizontal header container with padding |
34
+ | `BiampHeaderTitle` | Title section with icon, optional title, and optional subtitle |
35
+ | `BiampHeaderSearch` | Search input with leading search icon |
36
+ | `BiampHeaderActions` | Flex container for grouping action buttons and profile |
37
+ | `BiampHeaderButtonList` | Horizontal list with 4px gaps for header buttons |
38
+ | `BiampHeaderButton` | Selectable 40×40px icon button for header actions |
39
+ | `BiampHeaderProfile` | Profile button with image or custom children (e.g. `UserInitialsIcon`) |
40
+ | `BiampAppPopover` | Styled popover for the app-launcher content |
41
+ | `BiampBuildAppContent` | 2-column grid container for "Configure & Build" app tiles |
42
+ | `BiampBuildAppContentItem` | App tile with image, name, description, and optional action button |
43
+ | `BiampEndUserAppContent` | Vertical list container for end-user app items |
44
+ | `BiampEndUserAppContentItem` | Row-style app item with image, name, description, and external link; supports `href` |
45
+ | `BiampBanner` | Full-width animated notification banner |
46
+ | `BiampBannerIcon` | Leading icon slot for `BiampBanner` |
47
+ | `BiampBannerContent` | Center message slot for `BiampBanner` |
48
+ | `BiampBannerActions` | Trailing actions slot for `BiampBanner` |
49
+ | `BiampGlobalSearch` | Searchable autocomplete with icons, subtitles, chips, and keyboard hints |
50
+ | `SegmentedButtonGroup` | Horizontal container for grouping segmented toggle buttons |
51
+ | `SegmentedButton` | Individual toggle button for use inside `SegmentedButtonGroup` |
52
+ | `BiampTable` | Composable data table with sorting, selection, pagination, and more |
53
+ | `UserInitialsIcon` | Avatar-style icon showing a user's initials with a deterministic color |
54
+ | `DynamicSvgIcon` | Renders a remotely-fetched SVG with a skeleton loader and required fallback |
53
55
 
54
56
  ## Usage
55
57
 
@@ -30,15 +30,29 @@ type BiampAppPopoverProps = PopoverProps & {
30
30
  children: React.ReactNode;
31
31
  };
32
32
  export declare function BiampAppPopover({ children, open, sx, ...props }: BiampAppPopoverProps): import("react/jsx-runtime").JSX.Element;
33
- type BiampAppDialogProps = BoxProps & {
33
+ type BiampBuildAppContentProps = BoxProps & {
34
34
  children: React.ReactNode;
35
35
  };
36
- export declare function BiampAppDialog({ children, sx, ...props }: BiampAppDialogProps): import("react/jsx-runtime").JSX.Element;
37
- type BiampAppDialogItemProps = BoxProps & {
36
+ export declare function BiampBuildAppContent({ children, sx, ...props }: BiampBuildAppContentProps): import("react/jsx-runtime").JSX.Element;
37
+ type BiampBuildAppContentItemProps = StackProps & {
38
+ image: ReactNode;
39
+ name: string;
40
+ description: string;
41
+ button?: ReactNode;
42
+ };
43
+ export declare function BiampBuildAppContentItem({ image, name, description, button, sx, ...props }: BiampBuildAppContentItemProps): import("react/jsx-runtime").JSX.Element;
44
+ type BiampEndUserAppContentProps = StackProps & {
38
45
  children: React.ReactNode;
46
+ };
47
+ export declare function BiampEndUserAppContent({ children, sx, ...props }: BiampEndUserAppContentProps): import("react/jsx-runtime").JSX.Element;
48
+ type BiampEndUserAppContentItemProps = StackProps & {
49
+ image: ReactNode;
39
50
  name: string;
51
+ description: string;
52
+ href?: string;
53
+ target?: string;
40
54
  };
41
- export declare function BiampAppDialogItem({ children, name, sx, ...props }: BiampAppDialogItemProps): import("react/jsx-runtime").JSX.Element;
55
+ export declare function BiampEndUserAppContentItem({ image, name, description, href, target, sx, ...props }: BiampEndUserAppContentItemProps): import("react/jsx-runtime").JSX.Element;
42
56
  type BiampHeaderProfileProps = ListItemButtonProps & {
43
57
  image?: string;
44
58
  children?: ReactNode;
@@ -1 +1 @@
1
- {"version":3,"file":"BiampHeader.d.ts","sourceRoot":"","sources":["../../src/BiampHeader/BiampHeader.tsx"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"BiampHeader.d.ts","sourceRoot":"","sources":["../../src/BiampHeader/BiampHeader.tsx"],"names":[],"mappings":"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"}
@@ -1,2 +1,2 @@
1
- export { BiampHeader, BiampHeaderTitle, BiampHeaderSearch, BiampHeaderActions, BiampHeaderButtonList, BiampHeaderButton, BiampHeaderProfile, BiampAppDialog, BiampAppDialogItem, BiampAppPopover, } from './BiampHeader';
1
+ export { BiampHeader, BiampHeaderTitle, BiampHeaderSearch, BiampHeaderActions, BiampHeaderButtonList, BiampHeaderButton, BiampHeaderProfile, BiampAppPopover, BiampBuildAppContent, BiampBuildAppContentItem, BiampEndUserAppContent, BiampEndUserAppContentItem, } from './BiampHeader';
2
2
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/BiampHeader/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,WAAW,EACX,gBAAgB,EAChB,iBAAiB,EACjB,kBAAkB,EAClB,qBAAqB,EACrB,iBAAiB,EACjB,kBAAkB,EAClB,cAAc,EACd,kBAAkB,EAClB,eAAe,GAChB,MAAM,eAAe,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/BiampHeader/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,WAAW,EACX,gBAAgB,EAChB,iBAAiB,EACjB,kBAAkB,EAClB,qBAAqB,EACrB,iBAAiB,EACjB,kBAAkB,EAClB,eAAe,EACf,oBAAoB,EACpB,wBAAwB,EACxB,sBAAsB,EACtB,0BAA0B,GAC3B,MAAM,eAAe,CAAC"}
package/dist/index.cjs CHANGED
@@ -401,13 +401,15 @@ var require_randomColor = __commonJS({
401
401
  var index_exports = {};
402
402
  __export(index_exports, {
403
403
  BIAMP_TABLE_DEBOUNCE_DELAY: () => BIAMP_TABLE_DEBOUNCE_DELAY,
404
- BiampAppDialog: () => BiampAppDialog,
405
- BiampAppDialogItem: () => BiampAppDialogItem,
406
404
  BiampAppPopover: () => BiampAppPopover,
407
405
  BiampBanner: () => BiampBanner,
408
406
  BiampBannerActions: () => BiampBannerActions,
409
407
  BiampBannerContent: () => BiampBannerContent,
410
408
  BiampBannerIcon: () => BiampBannerIcon,
409
+ BiampBuildAppContent: () => BiampBuildAppContent,
410
+ BiampBuildAppContentItem: () => BiampBuildAppContentItem,
411
+ BiampEndUserAppContent: () => BiampEndUserAppContent,
412
+ BiampEndUserAppContentItem: () => BiampEndUserAppContentItem,
411
413
  BiampGlobalSearch: () => BiampGlobalSearch,
412
414
  BiampHeader: () => BiampHeader,
413
415
  BiampHeaderActions: () => BiampHeaderActions,
@@ -716,6 +718,7 @@ function BiampHeaderButton({
716
718
  }
717
719
  );
718
720
  }
721
+ var POPOVER_MAX_WIDTH = 530;
719
722
  function BiampAppPopover({
720
723
  children,
721
724
  open,
@@ -726,9 +729,9 @@ function BiampAppPopover({
726
729
  import_material3.Popover,
727
730
  {
728
731
  open,
729
- anchorOrigin: { vertical: "bottom", horizontal: "left" },
732
+ anchorOrigin: { vertical: "bottom", horizontal: "right" },
733
+ transformOrigin: { vertical: -8, horizontal: POPOVER_MAX_WIDTH - 4 },
730
734
  sx: { ...sx },
731
- transformOrigin: { vertical: -4, horizontal: 150 },
732
735
  slotProps: {
733
736
  paper: {
734
737
  sx: {
@@ -737,7 +740,13 @@ function BiampAppPopover({
737
740
  outlineWidth: "0.6px",
738
741
  outlineStyle: "solid",
739
742
  outlineColor: ({ palette }) => palette.divider,
740
- boxShadow: ({ palette }) => `0px 4px 24px 0px ${(0, import_material3.alpha)(palette.common.black, 0.15)};`
743
+ boxShadow: ({ palette }) => `0px 4px 24px 0px ${(0, import_material3.alpha)(palette.common.black, 0.15)};`,
744
+ maxWidth: POPOVER_MAX_WIDTH,
745
+ width: "100%",
746
+ p: 2,
747
+ display: "flex",
748
+ flexDirection: "column",
749
+ gap: 2
741
750
  }
742
751
  }
743
752
  },
@@ -746,7 +755,7 @@ function BiampAppPopover({
746
755
  }
747
756
  );
748
757
  }
749
- function BiampAppDialog({
758
+ function BiampBuildAppContent({
750
759
  children,
751
760
  sx,
752
761
  ...props
@@ -755,13 +764,9 @@ function BiampAppDialog({
755
764
  import_material3.Box,
756
765
  {
757
766
  sx: {
758
- p: 2,
759
- display: "inline-flex",
760
- flexWrap: "wrap",
767
+ display: "grid",
768
+ gridTemplateColumns: "1fr 1fr",
761
769
  gap: 1.5,
762
- maxWidth: "284px",
763
- borderRadius: "16px",
764
- backgroundColor: ({ palette }) => palette.mode === "dark" ? palette.grey[800] : palette.common.white,
765
770
  ...sx
766
771
  },
767
772
  ...props,
@@ -769,64 +774,92 @@ function BiampAppDialog({
769
774
  }
770
775
  );
771
776
  }
772
- function BiampAppDialogItem({
777
+ function BiampBuildAppContentItem({
778
+ image,
779
+ name,
780
+ description,
781
+ button,
782
+ sx,
783
+ ...props
784
+ }) {
785
+ return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(
786
+ import_material3.Stack,
787
+ {
788
+ direction: "column",
789
+ position: "relative",
790
+ sx: {
791
+ p: 1.5,
792
+ borderRadius: 1.5,
793
+ outlineWidth: "1px",
794
+ outlineStyle: "solid",
795
+ outlineColor: ({ palette }) => palette.divider,
796
+ ...sx
797
+ },
798
+ ...props,
799
+ children: [
800
+ /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_material3.Box, { sx: { width: 54, height: 54 }, mb: 0.5, children: image }),
801
+ /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_material3.Typography, { variant: "caption", fontWeight: 600, mb: 0.5, children: name }),
802
+ /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_material3.Typography, { variant: "caption", color: "text.secondary", children: description }),
803
+ button && /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_material3.Box, { position: "absolute", top: "12px", right: "12px", children: button })
804
+ ]
805
+ }
806
+ );
807
+ }
808
+ function BiampEndUserAppContent({
773
809
  children,
810
+ sx,
811
+ ...props
812
+ }) {
813
+ return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
814
+ import_material3.Stack,
815
+ {
816
+ direction: "column",
817
+ sx: {
818
+ gap: 1.5,
819
+ ...sx
820
+ },
821
+ ...props,
822
+ children
823
+ }
824
+ );
825
+ }
826
+ function BiampEndUserAppContentItem({
827
+ image,
774
828
  name,
829
+ description,
830
+ href,
831
+ target,
775
832
  sx,
776
833
  ...props
777
834
  }) {
778
835
  return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(
779
- import_material3.Box,
836
+ import_material3.Stack,
780
837
  {
838
+ component: href ? "a" : "div",
839
+ href,
840
+ target,
841
+ direction: "row",
842
+ alignItems: "center",
781
843
  sx: {
782
- width: "76px",
783
- height: "89px",
784
- display: "flex",
785
- flexDirection: "column",
786
- alignItems: "center",
787
- cursor: "pointer",
788
- justifyContent: "center",
789
- gap: "4px",
790
- borderRadius: "12px",
791
- border: "0.6px solid transparent",
792
- transition: "background-color 0.2s ease, border-color 0.2s ease",
793
- ":hover": {
794
- backgroundColor: ({ palette }) => (0, import_material3.alpha)(palette.info.main, 0.1),
795
- borderColor: ({ palette }) => palette.info.main
796
- },
844
+ gap: 1.5,
845
+ p: 1.5,
846
+ borderRadius: 1.5,
847
+ outlineWidth: "1px",
848
+ outlineStyle: "solid",
849
+ outlineColor: ({ palette }) => palette.divider,
850
+ textDecoration: "none",
851
+ color: "inherit",
852
+ cursor: href ? "pointer" : void 0,
797
853
  ...sx
798
854
  },
799
855
  ...props,
800
856
  children: [
801
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
802
- import_material3.Box,
803
- {
804
- sx: {
805
- mt: "8px",
806
- width: "54px",
807
- height: "54px",
808
- display: "flex",
809
- alignItems: "center",
810
- justifyContent: "center"
811
- },
812
- children
813
- }
814
- ),
815
- /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
816
- import_material3.Typography,
817
- {
818
- variant: "caption",
819
- fontWeight: 600,
820
- sx: {
821
- textAlign: "center",
822
- overflow: "hidden",
823
- textOverflow: "ellipsis",
824
- whiteSpace: "nowrap",
825
- maxWidth: "100%"
826
- },
827
- children: name
828
- }
829
- )
857
+ /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_material3.Box, { sx: { width: 32, height: 32 }, children: image }),
858
+ /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(import_material3.Stack, { direction: "column", children: [
859
+ /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_material3.Typography, { variant: "caption", fontWeight: 600, children: name }),
860
+ /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_material3.Typography, { variant: "caption", color: "text.secondary", children: description })
861
+ ] }),
862
+ /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_assets2.ExternalLinkIcon, { sx: { width: 16, height: 16, ml: "auto" } })
830
863
  ]
831
864
  }
832
865
  );
@@ -2915,13 +2948,15 @@ function DynamicSvgIcon({
2915
2948
  // Annotate the CommonJS export names for ESM import in node:
2916
2949
  0 && (module.exports = {
2917
2950
  BIAMP_TABLE_DEBOUNCE_DELAY,
2918
- BiampAppDialog,
2919
- BiampAppDialogItem,
2920
2951
  BiampAppPopover,
2921
2952
  BiampBanner,
2922
2953
  BiampBannerActions,
2923
2954
  BiampBannerContent,
2924
2955
  BiampBannerIcon,
2956
+ BiampBuildAppContent,
2957
+ BiampBuildAppContentItem,
2958
+ BiampEndUserAppContent,
2959
+ BiampEndUserAppContentItem,
2925
2960
  BiampGlobalSearch,
2926
2961
  BiampHeader,
2927
2962
  BiampHeaderActions,