@mindly/ui-components 5.59.4 → 5.61.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.
@@ -0,0 +1,9 @@
1
+ import { FC } from 'react';
2
+ type ErrorCardFeatureProps = {
3
+ title?: string;
4
+ description?: string;
5
+ errorTitle?: string;
6
+ stackTrace?: string;
7
+ };
8
+ declare const ErrorCardFeature: FC<ErrorCardFeatureProps>;
9
+ export default ErrorCardFeature;
@@ -0,0 +1,6 @@
1
+ import type { Meta, StoryObj } from '@storybook/react';
2
+ import ErrorCardFeature from './ErrorCardFeature';
3
+ declare const meta: Meta<typeof ErrorCardFeature>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof ErrorCardFeature>;
6
+ export declare const Default: Story;
@@ -0,0 +1 @@
1
+ export { default as ErrorCardFeature } from './ErrorCardFeature';
@@ -19,3 +19,4 @@ export * from './GoogleCalendarModalFeature';
19
19
  export * from './ReviewCardFeature';
20
20
  export * from './AppNotSupporedFeature';
21
21
  export * from './ScreenInputUpdateFeature';
22
+ export * from './ErrorCardFeature';
@@ -1,9 +1,11 @@
1
- import React from 'react';
1
+ import React, { CSSProperties } from 'react';
2
2
  type AppFooterProps = {
3
3
  children?: React.ReactNode;
4
4
  transparent?: boolean;
5
5
  bottomSaveArea?: boolean;
6
6
  borderTop?: boolean;
7
+ style?: CSSProperties;
8
+ toolbarStyle?: CSSProperties;
7
9
  };
8
10
  declare const _default: React.NamedExoticComponent<AppFooterProps>;
9
11
  export default _default;
@@ -1,8 +1,10 @@
1
- import { FC } from 'react';
1
+ import { CSSProperties, FC } from 'react';
2
2
  type AppHeaderProps = {
3
3
  fullwidth?: boolean;
4
4
  className?: string;
5
+ style?: CSSProperties;
5
6
  toolbarClassName?: string;
7
+ toolbarStyle?: CSSProperties;
6
8
  };
7
9
  declare const AppHeader_v2: FC<AppHeaderProps>;
8
10
  export default AppHeader_v2;