@npm_leadtech/legal-lib-components 2.3.1 → 2.4.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.
@@ -2394,6 +2394,27 @@
2394
2394
  .top-bar-wrapper .top-bar-content svg {
2395
2395
  vertical-align: middle; }
2396
2396
 
2397
+ .bottom-overlay-menu {
2398
+ display: flex;
2399
+ justify-content: space-between;
2400
+ align-items: center;
2401
+ width: 100%;
2402
+ padding: 1.5rem;
2403
+ background-color: #FFFFFF;
2404
+ box-shadow: 0 2px 6px 0 #02374A;
2405
+ color: black; }
2406
+ .bottom-overlay-menu .e-button {
2407
+ width: 100%; }
2408
+ .bottom-overlay-menu .e-searchselect {
2409
+ width: 100%;
2410
+ margin-bottom: 1rem; }
2411
+ .bottom-overlay-menu .e-text {
2412
+ width: 100%; }
2413
+ .bottom-overlay-menu .desktop-radio-icons {
2414
+ display: none; }
2415
+ .bottom-overlay-menu ul li {
2416
+ margin-bottom: 0; }
2417
+
2397
2418
  .article {
2398
2419
  display: flex;
2399
2420
  flex-flow: row wrap;
@@ -0,0 +1,5 @@
1
+ import { type FC } from 'react';
2
+ import './BottomOverlayMenu.scss';
3
+ import { type BottomOverlayMenuProps } from './BottomOverlayMenuProps.types';
4
+ declare const BottomOverlayMenu: FC<BottomOverlayMenuProps>;
5
+ export default BottomOverlayMenu;
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ export interface BottomOverlayMenuProps {
3
+ children: React.ReactNode;
4
+ }
@@ -0,0 +1,6 @@
1
+ import type { Meta, StoryObj } from '@storybook/react';
2
+ import BottomOverlayMenu from '../BottomOverlayMenu';
3
+ declare const meta: Meta<typeof BottomOverlayMenu>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof BottomOverlayMenu>;
6
+ export declare const Default: Story;
@@ -0,0 +1,2 @@
1
+ export { default as BottomOverlayMenu } from './BottomOverlayMenu';
2
+ export { type BottomOverlayMenuProps } from './BottomOverlayMenuProps.types';
@@ -30,3 +30,4 @@ export * from './TextArea';
30
30
  export * from './Toggle';
31
31
  export * from './Tooltip';
32
32
  export * from './TopBar';
33
+ export * from './BottomOverlayMenu';