@20minutes/hela 2.25.0 → 2.26.1

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.
@@ -0,0 +1 @@
1
+ export declare const listenerOfBottomSheet: () => void;
@@ -3,7 +3,7 @@ import { BoxProps } from '../Layout';
3
3
  export interface ModalProps extends BoxProps {
4
4
  dialogId: string;
5
5
  children: React.ReactNode;
6
- variant?: 'center' | 'left' | 'right';
6
+ variant?: 'bottom' | 'center' | 'left' | 'right';
7
7
  contentClassName?: string;
8
8
  enableA11yDialog?: boolean;
9
9
  }
@@ -0,0 +1,7 @@
1
+ import { default as React } from 'react';
2
+ import { ModalProps } from '../..';
3
+ export interface BottomSheetProps extends Omit<ModalProps, 'variant'> {
4
+ closeLabel?: string;
5
+ anchorSelector?: string;
6
+ }
7
+ export declare const BottomSheet: React.FC<BottomSheetProps>;
@@ -0,0 +1 @@
1
+ export * from './BottomSheet';
@@ -0,0 +1,13 @@
1
+ import { default as React } from 'react';
2
+ import { ColorType, ThemeColorType } from '../../../types';
3
+ interface SocialBarActionsSheetProps {
4
+ dialogId: string;
5
+ withReport: boolean;
6
+ className?: string;
7
+ shareCount: number;
8
+ countColor?: ColorType;
9
+ themeColor?: ThemeColorType;
10
+ contentLegacyId?: string;
11
+ }
12
+ export declare const SocialBarActionsSheet: React.FC<SocialBarActionsSheetProps>;
13
+ export {};
@@ -1,2 +1,3 @@
1
1
  export * from './SocialBar';
2
- export * from './SocialBarActionsModal';
2
+ export * from './SocialBarActionsSheet';
3
+ export { SocialBarActionsSheet as SocialBarActionsModal } from './SocialBarActionsSheet';
@@ -3,6 +3,7 @@ export * from './Article';
3
3
  export * from './Astro';
4
4
  export * from './AvatarGroup';
5
5
  export * from './BlockedFeatureGate';
6
+ export * from './BottomSheet';
6
7
  export * from './Breadcrumb';
7
8
  export * from './BulletedList';
8
9
  export * from './Calendar';