odaptos_design_system 2.0.49 → 2.0.51

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.
@@ -2,11 +2,12 @@ import React, { HTMLAttributes } from 'react';
2
2
  interface BoxProps extends HTMLAttributes<HTMLDivElement> {
3
3
  children: any;
4
4
  title?: string;
5
+ optionalText?: string;
5
6
  tooltipDescription?: string;
6
7
  className?: string;
7
8
  id?: string;
8
9
  required?: boolean;
9
10
  props?: any;
10
11
  }
11
- export declare const Box: ({ children, title, tooltipDescription, className, id, required, props, }: BoxProps) => React.JSX.Element;
12
+ export declare const Box: ({ children, title, optionalText, tooltipDescription, className, id, required, props, }: BoxProps) => React.JSX.Element;
12
13
  export {};
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ import { SvgIconProps } from '@mui/material';
3
+ interface CustomSvgProps {
4
+ size?: 'sm' | 'base' | 'lg' | 'xl';
5
+ }
6
+ export default function OtherTab({ stroke, strokeWidth, fill, size, ...rest }: SvgIconProps & CustomSvgProps): React.JSX.Element;
7
+ export {};
@@ -164,6 +164,7 @@ export { default as NbOfUsersIcon } from './Miscellaneous/NbOfUsersIcon';
164
164
  export { default as NeutralBackgroudIcon } from './Miscellaneous/NeutralBackgroudIcon';
165
165
  export { default as OfficeDrawerIcon } from './Miscellaneous/OfficeDrawerIcon';
166
166
  export { default as OneColumnIcon } from './Miscellaneous/OneColumnIcon';
167
+ export { default as OtherTab } from './Miscellaneous/OtherTab';
167
168
  export { default as RefreshIcon } from './Miscellaneous/RefreshIcon';
168
169
  export { default as ReportIcon } from './Miscellaneous/ReportIcon';
169
170
  export { default as SeatIcon } from './Miscellaneous/SeatIcon';