digital-rabbit-cl 2.1.2 → 2.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.
@@ -1,6 +1,6 @@
1
1
  import { default as React } from 'react';
2
2
  import { PopoverVariant, PopoverSide } from '../Popover/Popover';
3
- export interface NavItemProps {
3
+ export interface NavDropdownProps {
4
4
  /** Trigger label content */
5
5
  label: React.ReactNode;
6
6
  /** Dropdown/panel content */
@@ -13,6 +13,8 @@ export interface NavItemProps {
13
13
  panelWidth?: string;
14
14
  /** Text color for the trigger button. Defaults to theme font color. */
15
15
  color?: string;
16
+ /** Opacity applied on hover and when the dropdown is open. Defaults to 0.5. */
17
+ hoverOpacity?: number;
16
18
  /** Additional className for the trigger button */
17
19
  className?: string;
18
20
  /** Additional styles for the trigger button */
@@ -21,8 +23,8 @@ export interface NavItemProps {
21
23
  * Additional HTML attributes for the trigger button.
22
24
  * onClick and style are reserved and should not be passed here.
23
25
  */
24
- buttonProps?: Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, 'onClick' | 'style'>;
26
+ buttonProps?: Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, 'onClick' | 'style'> & Record<`data-${string}`, string | undefined>;
25
27
  }
26
- declare const NavItem: React.FC<NavItemProps>;
27
- export default NavItem;
28
- //# sourceMappingURL=NavItem.d.ts.map
28
+ declare const NavDropdown: React.FC<NavDropdownProps>;
29
+ export default NavDropdown;
30
+ //# sourceMappingURL=NavDropdown.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"NavDropdown.d.ts","sourceRoot":"","sources":["../../../src/components/NavDropdown/NavDropdown.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAmB,MAAM,OAAO,CAAC;AAExC,OAAO,KAAK,EAAE,cAAc,EAAE,WAAW,EAAE,MAAM,oBAAoB,CAAC;AAItE,MAAM,WAAW,gBAAgB;IAC/B,4BAA4B;IAC5B,KAAK,EAAE,KAAK,CAAC,SAAS,CAAC;IACvB,6BAA6B;IAC7B,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,yCAAyC;IACzC,eAAe,CAAC,EAAE,cAAc,CAAC;IACjC,0EAA0E;IAC1E,IAAI,CAAC,EAAE,WAAW,CAAC;IACnB,uDAAuD;IACvD,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,uEAAuE;IACvE,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,+EAA+E;IAC/E,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,kDAAkD;IAClD,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,+CAA+C;IAC/C,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;IAC5B;;;OAGG;IACH,WAAW,CAAC,EAAE,IAAI,CAAC,KAAK,CAAC,oBAAoB,CAAC,iBAAiB,CAAC,EAAE,SAAS,GAAG,OAAO,CAAC,GACpF,MAAM,CAAC,QAAQ,MAAM,EAAE,EAAE,MAAM,GAAG,SAAS,CAAC,CAAC;CAChD;AAED,QAAA,MAAM,WAAW,EAAE,KAAK,CAAC,EAAE,CAAC,gBAAgB,CAgE3C,CAAC;AAEF,eAAe,WAAW,CAAC"}
@@ -0,0 +1,3 @@
1
+ export { default } from './NavDropdown';
2
+ export * from './NavDropdown';
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/NavDropdown/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,eAAe,CAAC;AACxC,cAAc,eAAe,CAAC"}
@@ -0,0 +1,25 @@
1
+ import { default as React } from 'react';
2
+ import { ColorProps, HoverProps } from '../../types/component-props';
3
+ export interface NavLinkProps extends Pick<ColorProps, 'color'>, Pick<HoverProps, 'hoverOpacity'> {
4
+ /** Whether the link is currently active */
5
+ isActive?: boolean;
6
+ /** A single React element to clone (e.g. Next.js <Link>, <a>) */
7
+ children: React.ReactElement<{
8
+ style?: React.CSSProperties;
9
+ onMouseEnter?: React.MouseEventHandler;
10
+ onMouseLeave?: React.MouseEventHandler;
11
+ }>;
12
+ }
13
+ /**
14
+ * Wraps a single link element and applies consistent nav link styles
15
+ * (color, font-weight, text-decoration, hover/active opacity) via inline styles.
16
+ *
17
+ * Works anywhere — inside the nav DOM tree or inside portaled panels —
18
+ * because it uses inline styles rather than CSS selectors.
19
+ *
20
+ * Appearance is controlled by useNavLinkStyles, which is the single source
21
+ * of truth shared with NavDropdown.
22
+ */
23
+ declare const NavLink: React.FC<NavLinkProps>;
24
+ export default NavLink;
25
+ //# sourceMappingURL=NavLink.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"NavLink.d.ts","sourceRoot":"","sources":["../../../src/components/NavLink/NavLink.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,KAAK,EAAE,UAAU,EAAE,UAAU,EAAE,MAAM,6BAA6B,CAAC;AAE1E,MAAM,WAAW,YAAa,SAAQ,IAAI,CAAC,UAAU,EAAE,OAAO,CAAC,EAAE,IAAI,CAAC,UAAU,EAAE,cAAc,CAAC;IAC/F,2CAA2C;IAC3C,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,iEAAiE;IACjE,QAAQ,EAAE,KAAK,CAAC,YAAY,CAAC;QAC3B,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;QAC5B,YAAY,CAAC,EAAE,KAAK,CAAC,iBAAiB,CAAC;QACvC,YAAY,CAAC,EAAE,KAAK,CAAC,iBAAiB,CAAC;KACxC,CAAC,CAAC;CACJ;AAED;;;;;;;;;GASG;AACH,QAAA,MAAM,OAAO,EAAE,KAAK,CAAC,EAAE,CAAC,YAAY,CAkBnC,CAAC;AAEF,eAAe,OAAO,CAAC"}
@@ -0,0 +1,5 @@
1
+ export { default } from './NavLink';
2
+ export * from './NavLink';
3
+ export { useNavLinkStyles } from './useNavLinkStyles';
4
+ export type { UseNavLinkStylesParams, UseNavLinkStylesResult } from './useNavLinkStyles';
5
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/NavLink/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,cAAc,WAAW,CAAC;AAC1B,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AACtD,YAAY,EAAE,sBAAsB,EAAE,sBAAsB,EAAE,MAAM,oBAAoB,CAAC"}
@@ -0,0 +1,18 @@
1
+ import { default as React } from 'react';
2
+ import { ColorProps, HoverProps } from '../../types/component-props';
3
+ export interface UseNavLinkStylesParams extends Pick<ColorProps, 'color'>, Pick<HoverProps, 'hoverOpacity'> {
4
+ isActive?: boolean;
5
+ }
6
+ export interface UseNavLinkStylesResult {
7
+ style: React.CSSProperties;
8
+ onMouseEnter: () => void;
9
+ onMouseLeave: () => void;
10
+ }
11
+ /**
12
+ * Single source of truth for nav link appearance.
13
+ * Used by both NavLink and NavDropdown to ensure consistent styling.
14
+ *
15
+ * Controls: color, font-weight, text-decoration, hover/active opacity.
16
+ */
17
+ export declare function useNavLinkStyles({ isActive, hoverOpacity, color, }?: UseNavLinkStylesParams): UseNavLinkStylesResult;
18
+ //# sourceMappingURL=useNavLinkStyles.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useNavLinkStyles.d.ts","sourceRoot":"","sources":["../../../src/components/NavLink/useNavLinkStyles.ts"],"names":[],"mappings":"AAAA,OAAO,KAAmB,MAAM,OAAO,CAAC;AAExC,OAAO,KAAK,EAAE,UAAU,EAAE,UAAU,EAAE,MAAM,6BAA6B,CAAC;AAE1E,MAAM,WAAW,sBACf,SAAQ,IAAI,CAAC,UAAU,EAAE,OAAO,CAAC,EAC/B,IAAI,CAAC,UAAU,EAAE,cAAc,CAAC;IAClC,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AAED,MAAM,WAAW,sBAAsB;IACrC,KAAK,EAAE,KAAK,CAAC,aAAa,CAAC;IAC3B,YAAY,EAAE,MAAM,IAAI,CAAC;IACzB,YAAY,EAAE,MAAM,IAAI,CAAC;CAC1B;AAED;;;;;GAKG;AACH,wBAAgB,gBAAgB,CAAC,EAC/B,QAAgB,EAChB,YAAkB,EAClB,KAAK,GACN,GAAE,sBAA2B,GAAG,sBAAsB,CAgBtD"}
@@ -1,7 +1,7 @@
1
1
  import { default as React } from 'react';
2
2
  import { HamburgerProps } from '../Hamburger/Hamburger';
3
3
  import { ThemeBreakpoints } from '../../theme';
4
- import { ElementSpecificProps, ColorProps, ActiveProps, HoverProps, BaseComponentProps } from '../../types/component-props';
4
+ import { ElementSpecificProps, ColorProps, BaseComponentProps } from '../../types/component-props';
5
5
  export interface ResponsiveNavContextValue {
6
6
  /** Whether the nav is currently in mobile view */
7
7
  isMobile: boolean;
@@ -10,13 +10,13 @@ export interface ResponsiveNavContextValue {
10
10
  }
11
11
  /**
12
12
  * Context provided to all descendants of ResponsiveNav.
13
- * Useful for NavItem to detect mobile state and close the parent menu.
13
+ * Useful for NavDropdown to detect mobile state and close the parent menu.
14
14
  */
15
15
  export declare const ResponsiveNavContext: React.Context<ResponsiveNavContextValue>;
16
16
  /**
17
17
  * Props for mobile navigation appearance and behavior
18
18
  */
19
- export interface ResponsiveNavMobileProps extends Pick<ColorProps, 'color' | 'backgroundColor'>, Pick<ActiveProps, 'activeColor' | 'activeBackgroundColor'>, Pick<BaseComponentProps, 'style'> {
19
+ export interface ResponsiveNavMobileProps extends Pick<ColorProps, 'color' | 'backgroundColor'>, Pick<BaseComponentProps, 'style'> {
20
20
  /**
21
21
  * Optional separate content for mobile view
22
22
  * If not provided, falls back to root children prop
@@ -43,7 +43,7 @@ export interface ResponsiveNavMobileProps extends Pick<ColorProps, 'color' | 'ba
43
43
  /**
44
44
  * Props for desktop navigation appearance and behavior
45
45
  */
46
- export interface ResponsiveNavDesktopProps extends Pick<ColorProps, 'color' | 'backgroundColor'>, Pick<ActiveProps, 'activeColor' | 'activeBackgroundColor'>, Pick<HoverProps, 'hoverOpacity'>, Pick<BaseComponentProps, 'style'> {
46
+ export interface ResponsiveNavDesktopProps extends Pick<ColorProps, 'color' | 'backgroundColor'>, Pick<BaseComponentProps, 'style'> {
47
47
  /**
48
48
  * Optional separate content for desktop view
49
49
  * If not provided, falls back to root children prop
@@ -86,7 +86,7 @@ export interface ResponsiveNavProps {
86
86
  /**
87
87
  * When true, disables the hamburger/full-page mobile menu treatment.
88
88
  * The nav renders normally on all viewports and children can use
89
- * NavItem for individual dropdown menus instead.
89
+ * NavDropdown for individual dropdown menus instead.
90
90
  * Default: false
91
91
  */
92
92
  disableMobileTreatment?: boolean;
@@ -1 +1 @@
1
- {"version":3,"file":"ResponsiveNav.d.ts","sourceRoot":"","sources":["../../../src/components/ResponsiveNav/ResponsiveNav.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA0C,MAAM,OAAO,CAAC;AAI/D,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,wBAAwB,CAAC;AAC7D,OAAO,EAAY,gBAAgB,EAAE,MAAM,aAAa,CAAC;AAIzD,OAAO,KAAK,EACV,oBAAoB,EACpB,UAAU,EACV,WAAW,EACX,UAAU,EACV,kBAAkB,EACnB,MAAM,6BAA6B,CAAC;AAErC,MAAM,WAAW,yBAAyB;IACxC,kDAAkD;IAClD,QAAQ,EAAE,OAAO,CAAC;IAClB,wCAAwC;IACxC,OAAO,EAAE,CAAC,IAAI,EAAE,OAAO,KAAK,IAAI,CAAC;CAClC;AAED;;;GAGG;AACH,eAAO,MAAM,oBAAoB,0CAG/B,CAAC;AAEH;;GAEG;AACH,MAAM,WAAW,wBACf,SAAQ,IAAI,CAAC,UAAU,EAAE,OAAO,GAAG,iBAAiB,CAAC,EACnD,IAAI,CAAC,WAAW,EAAE,aAAa,GAAG,uBAAuB,CAAC,EAC1D,IAAI,CAAC,kBAAkB,EAAE,OAAO,CAAC;IACnC;;;OAGG;IACH,OAAO,CAAC,EAAE,KAAK,CAAC,SAAS,GAAG,CAAC,CAAC,OAAO,EAAE;QAAE,OAAO,EAAE,CAAC,IAAI,EAAE,OAAO,KAAK,IAAI,CAAA;KAAE,KAAK,KAAK,CAAC,SAAS,CAAC,CAAC;IAEjG;;;OAGG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;IAExB;;;OAGG;IACH,cAAc,CAAC,EAAE,OAAO,CACtB,IAAI,CAAC,cAAc,EAAE,SAAS,GAAG,SAAS,GAAG,MAAM,GAAG,SAAS,GAAG,cAAc,CAAC,CAClF,CAAC;IAEF;;;OAGG;IACH,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB;AAED;;GAEG;AACH,MAAM,WAAW,yBACf,SAAQ,IAAI,CAAC,UAAU,EAAE,OAAO,GAAG,iBAAiB,CAAC,EACnD,IAAI,CAAC,WAAW,EAAE,aAAa,GAAG,uBAAuB,CAAC,EAC1D,IAAI,CAAC,UAAU,EAAE,cAAc,CAAC,EAChC,IAAI,CAAC,kBAAkB,EAAE,OAAO,CAAC;IACnC;;;OAGG;IACH,OAAO,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;CAC3B;AAED,MAAM,WAAW,kBAAkB;IACjC;;OAEG;IACH,MAAM,CAAC,EAAE,wBAAwB,CAAC;IAElC;;OAEG;IACH,OAAO,CAAC,EAAE,yBAAyB,CAAC;IAEpC;;;OAGG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC,gBAAgB,CAAC,CAAC;IAExC;;;OAGG;IACH,QAAQ,EAAE,KAAK,CAAC,SAAS,GAAG,CAAC,CAAC,OAAO,EAAE;QAAE,OAAO,EAAE,CAAC,IAAI,EAAE,OAAO,KAAK,IAAI,CAAA;KAAE,KAAK,KAAK,CAAC,SAAS,CAAC,CAAC;IAEjG;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;IAE5B;;OAEG;IACH,QAAQ,CAAC,EAAE,IAAI,CAAC,oBAAoB,CAAC,WAAW,CAAC,EAAE,WAAW,GAAG,OAAO,CAAC,CAAC;IAE1E;;;;;OAKG;IACH,sBAAsB,CAAC,EAAE,OAAO,CAAC;CAClC;AAmHD,QAAA,MAAM,aAAa,EAAE,KAAK,CAAC,EAAE,CAAC,kBAAkB,CAoF/C,CAAC;AAEF,eAAe,aAAa,CAAC"}
1
+ {"version":3,"file":"ResponsiveNav.d.ts","sourceRoot":"","sources":["../../../src/components/ResponsiveNav/ResponsiveNav.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA0C,MAAM,OAAO,CAAC;AAI/D,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,wBAAwB,CAAC;AAC7D,OAAO,EAAY,gBAAgB,EAAE,MAAM,aAAa,CAAC;AAIzD,OAAO,KAAK,EACV,oBAAoB,EACpB,UAAU,EACV,kBAAkB,EACnB,MAAM,6BAA6B,CAAC;AAErC,MAAM,WAAW,yBAAyB;IACxC,kDAAkD;IAClD,QAAQ,EAAE,OAAO,CAAC;IAClB,wCAAwC;IACxC,OAAO,EAAE,CAAC,IAAI,EAAE,OAAO,KAAK,IAAI,CAAC;CAClC;AAED;;;GAGG;AACH,eAAO,MAAM,oBAAoB,0CAG/B,CAAC;AAEH;;GAEG;AACH,MAAM,WAAW,wBACf,SAAQ,IAAI,CAAC,UAAU,EAAE,OAAO,GAAG,iBAAiB,CAAC,EACnD,IAAI,CAAC,kBAAkB,EAAE,OAAO,CAAC;IACnC;;;OAGG;IACH,OAAO,CAAC,EAAE,KAAK,CAAC,SAAS,GAAG,CAAC,CAAC,OAAO,EAAE;QAAE,OAAO,EAAE,CAAC,IAAI,EAAE,OAAO,KAAK,IAAI,CAAA;KAAE,KAAK,KAAK,CAAC,SAAS,CAAC,CAAC;IAEjG;;;OAGG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;IAExB;;;OAGG;IACH,cAAc,CAAC,EAAE,OAAO,CACtB,IAAI,CAAC,cAAc,EAAE,SAAS,GAAG,SAAS,GAAG,MAAM,GAAG,SAAS,GAAG,cAAc,CAAC,CAClF,CAAC;IAEF;;;OAGG;IACH,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB;AAED;;GAEG;AACH,MAAM,WAAW,yBACf,SAAQ,IAAI,CAAC,UAAU,EAAE,OAAO,GAAG,iBAAiB,CAAC,EACnD,IAAI,CAAC,kBAAkB,EAAE,OAAO,CAAC;IACnC;;;OAGG;IACH,OAAO,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;CAC3B;AAED,MAAM,WAAW,kBAAkB;IACjC;;OAEG;IACH,MAAM,CAAC,EAAE,wBAAwB,CAAC;IAElC;;OAEG;IACH,OAAO,CAAC,EAAE,yBAAyB,CAAC;IAEpC;;;OAGG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC,gBAAgB,CAAC,CAAC;IAExC;;;OAGG;IACH,QAAQ,EAAE,KAAK,CAAC,SAAS,GAAG,CAAC,CAAC,OAAO,EAAE;QAAE,OAAO,EAAE,CAAC,IAAI,EAAE,OAAO,KAAK,IAAI,CAAA;KAAE,KAAK,KAAK,CAAC,SAAS,CAAC,CAAC;IAEjG;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,KAAK,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC;IAE5B;;OAEG;IACH,QAAQ,CAAC,EAAE,IAAI,CAAC,oBAAoB,CAAC,WAAW,CAAC,EAAE,WAAW,GAAG,OAAO,CAAC,CAAC;IAE1E;;;;;OAKG;IACH,sBAAsB,CAAC,EAAE,OAAO,CAAC;CAClC;AA8FD,QAAA,MAAM,aAAa,EAAE,KAAK,CAAC,EAAE,CAAC,kBAAkB,CAiF/C,CAAC;AAEF,eAAe,aAAa,CAAC"}
@@ -8,12 +8,11 @@ export interface UseResponsiveNavStylesParams {
8
8
  }
9
9
  export interface ResponsiveNavStyles {
10
10
  navStyles: React.CSSProperties;
11
- linkActiveStyles: React.CSSProperties;
12
- linkHoverStyles: React.CSSProperties;
13
11
  }
14
12
  /**
15
- * Custom hook for calculating ResponsiveNav styles
16
- * Shared logic that can be used by both web and native implementations
13
+ * Computes nav container styles (background, text color, font size) from
14
+ * mobile/desktop props and the current theme. Link appearance is handled
15
+ * separately by useNavLinkStyles.
17
16
  */
18
17
  export declare const useResponsiveNavStyles: ({ isMobile, isCompact, mobile, desktop, }: UseResponsiveNavStylesParams) => ResponsiveNavStyles;
19
18
  //# sourceMappingURL=useResponsiveNavStyles.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"useResponsiveNavStyles.d.ts","sourceRoot":"","sources":["../../../src/components/ResponsiveNav/useResponsiveNavStyles.ts"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAC;AAEvC,OAAO,KAAK,EAAE,wBAAwB,EAAE,yBAAyB,EAAE,MAAM,iBAAiB,CAAC;AAE3F,MAAM,WAAW,4BAA4B;IAC3C,QAAQ,EAAE,OAAO,CAAC;IAClB,SAAS,EAAE,OAAO,CAAC;IACnB,MAAM,CAAC,EAAE,wBAAwB,CAAC;IAClC,OAAO,CAAC,EAAE,yBAAyB,CAAC;CACrC;AAED,MAAM,WAAW,mBAAmB;IAClC,SAAS,EAAE,KAAK,CAAC,aAAa,CAAC;IAC/B,gBAAgB,EAAE,KAAK,CAAC,aAAa,CAAC;IACtC,eAAe,EAAE,KAAK,CAAC,aAAa,CAAC;CACtC;AAED;;;GAGG;AACH,eAAO,MAAM,sBAAsB,GAAI,2CAKpC,4BAA4B,KAAG,mBAsDjC,CAAC"}
1
+ {"version":3,"file":"useResponsiveNavStyles.d.ts","sourceRoot":"","sources":["../../../src/components/ResponsiveNav/useResponsiveNavStyles.ts"],"names":[],"mappings":"AAAA,OAAO,KAAkB,MAAM,OAAO,CAAC;AAEvC,OAAO,KAAK,EAAE,wBAAwB,EAAE,yBAAyB,EAAE,MAAM,iBAAiB,CAAC;AAE3F,MAAM,WAAW,4BAA4B;IAC3C,QAAQ,EAAE,OAAO,CAAC;IAClB,SAAS,EAAE,OAAO,CAAC;IACnB,MAAM,CAAC,EAAE,wBAAwB,CAAC;IAClC,OAAO,CAAC,EAAE,yBAAyB,CAAC;CACrC;AAED,MAAM,WAAW,mBAAmB;IAClC,SAAS,EAAE,KAAK,CAAC,aAAa,CAAC;CAChC;AAED;;;;GAIG;AACH,eAAO,MAAM,sBAAsB,GAAI,2CAKpC,4BAA4B,KAAG,mBAwBjC,CAAC"}