@mindly/ui-components 5.36.1 → 5.38.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.
Files changed (30) hide show
  1. package/dist/cjs/index.js +2 -2
  2. package/dist/cjs/lib2/features/GoogleCalendarModalFeature/GoogleCalendarModalFeature.d.ts +13 -0
  3. package/dist/cjs/lib2/features/GoogleCalendarModalFeature/index.d.ts +1 -0
  4. package/dist/cjs/lib2/features/index.d.ts +1 -0
  5. package/dist/cjs/lib2/shared/assets/icons/IconAddModerator.d.ts +3 -0
  6. package/dist/cjs/lib2/shared/assets/icons/IconEcgHeart.d.ts +3 -0
  7. package/dist/cjs/lib2/shared/assets/icons/IconEventBusy.d.ts +3 -0
  8. package/dist/cjs/lib2/shared/assets/icons/IconHome.d.ts +3 -0
  9. package/dist/cjs/lib2/shared/assets/icons/IconPromocode.d.ts +3 -0
  10. package/dist/cjs/lib2/shared/assets/icons/IconQueryStats.d.ts +3 -0
  11. package/dist/cjs/lib2/shared/assets/icons/IconSchema.d.ts +3 -0
  12. package/dist/cjs/lib2/shared/assets/icons/index.d.ts +7 -0
  13. package/dist/cjs/lib2/shared/types/iconProps.d.ts +6 -0
  14. package/dist/cjs/lib2/shared/types/index.d.ts +1 -0
  15. package/dist/esm/index.js +6 -6
  16. package/dist/esm/lib2/features/GoogleCalendarModalFeature/GoogleCalendarModalFeature.d.ts +13 -0
  17. package/dist/esm/lib2/features/GoogleCalendarModalFeature/index.d.ts +1 -0
  18. package/dist/esm/lib2/features/index.d.ts +1 -0
  19. package/dist/esm/lib2/shared/assets/icons/IconAddModerator.d.ts +3 -0
  20. package/dist/esm/lib2/shared/assets/icons/IconEcgHeart.d.ts +3 -0
  21. package/dist/esm/lib2/shared/assets/icons/IconEventBusy.d.ts +3 -0
  22. package/dist/esm/lib2/shared/assets/icons/IconHome.d.ts +3 -0
  23. package/dist/esm/lib2/shared/assets/icons/IconPromocode.d.ts +3 -0
  24. package/dist/esm/lib2/shared/assets/icons/IconQueryStats.d.ts +3 -0
  25. package/dist/esm/lib2/shared/assets/icons/IconSchema.d.ts +3 -0
  26. package/dist/esm/lib2/shared/assets/icons/index.d.ts +7 -0
  27. package/dist/esm/lib2/shared/types/iconProps.d.ts +6 -0
  28. package/dist/esm/lib2/shared/types/index.d.ts +1 -0
  29. package/dist/index.d.ts +34 -2
  30. package/package.json +1 -1
@@ -0,0 +1,13 @@
1
+ import { WithTranslation } from 'react-i18next';
2
+ type GoogleCalendarModalFeatureProps = {
3
+ isOpen: boolean;
4
+ status: 'active' | 'inactive' | 'access_denied';
5
+ presentingElement?: HTMLElement | undefined;
6
+ onSync: () => Promise<void>;
7
+ onDidDismiss: () => void;
8
+ isLoading: boolean;
9
+ imageUrl: string;
10
+ t: WithTranslation['t'];
11
+ };
12
+ export declare function GoogleCalendarModalFeature({ status, isOpen, onSync, isLoading, presentingElement, imageUrl, onDidDismiss, t, }: GoogleCalendarModalFeatureProps): JSX.Element;
13
+ export {};
@@ -0,0 +1 @@
1
+ export { GoogleCalendarModalFeature } from './GoogleCalendarModalFeature';
@@ -11,3 +11,4 @@ export * from './MobilePickerFeature';
11
11
  export * from './CheckBoxSectionListFeature';
12
12
  export * from './CheckBoxListFeature';
13
13
  export * from './ShareModalFeature';
14
+ export * from './GoogleCalendarModalFeature';
@@ -0,0 +1,3 @@
1
+ import { FC } from 'react';
2
+ import { IconProps } from '../../types';
3
+ export declare const IconAddModerator: FC<IconProps>;
@@ -0,0 +1,3 @@
1
+ import { FC } from 'react';
2
+ import { IconProps } from '../../types';
3
+ export declare const IconEcgHeart: FC<IconProps>;
@@ -0,0 +1,3 @@
1
+ import { FC } from 'react';
2
+ import { IconProps } from '../../types';
3
+ export declare const IconEventBusy: FC<IconProps>;
@@ -0,0 +1,3 @@
1
+ import { FC } from 'react';
2
+ import { IconProps } from '../../types';
3
+ export declare const IconHome: FC<IconProps>;
@@ -0,0 +1,3 @@
1
+ import { FC } from 'react';
2
+ import { IconProps } from '../../types';
3
+ export declare const IconPromocode: FC<IconProps>;
@@ -0,0 +1,3 @@
1
+ import { FC } from 'react';
2
+ import { IconProps } from '../../types';
3
+ export declare const IconQueryStats: FC<IconProps>;
@@ -0,0 +1,3 @@
1
+ import { FC } from 'react';
2
+ import { IconProps } from '../../types';
3
+ export declare const IconSchema: FC<IconProps>;
@@ -60,3 +60,10 @@ export * from './IconArrowDown';
60
60
  export * from './IconRadioButtonChecked';
61
61
  export * from './IconShare';
62
62
  export * from './IconLink';
63
+ export * from './IconHome';
64
+ export * from './IconEcgHeart';
65
+ export * from './IconAddModerator';
66
+ export * from './IconQueryStats';
67
+ export * from './IconSchema';
68
+ export * from './IconPromocode';
69
+ export * from './IconEventBusy';
@@ -0,0 +1,6 @@
1
+ import { SVGAttributes } from 'react';
2
+ export interface IconProps extends SVGAttributes<SVGElement> {
3
+ size?: number | string;
4
+ color?: string;
5
+ className?: string;
6
+ }
@@ -1 +1,2 @@
1
1
  export * from './ratingCircleTypes';
2
+ export * from './iconProps';