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.
- package/dist/Atoms/Box/Box.d.ts +2 -1
- package/dist/DesignTokens/Icons/Miscellaneous/OtherTab.d.ts +7 -0
- package/dist/DesignTokens/Icons/index.d.ts +1 -0
- package/dist/odaptos_design_system.cjs.development.js +567 -533
- package/dist/odaptos_design_system.cjs.development.js.map +1 -1
- package/dist/odaptos_design_system.cjs.production.min.js +1 -1
- package/dist/odaptos_design_system.cjs.production.min.js.map +1 -1
- package/dist/odaptos_design_system.esm.js +567 -534
- package/dist/odaptos_design_system.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/Atoms/Box/Box.tsx +4 -0
- package/src/DesignTokens/Icons/Miscellaneous/OtherTab.tsx +39 -0
- package/src/DesignTokens/Icons/index.ts +1 -0
- package/src/Molecules/Tabs/tabsUnderline.modules.scss +0 -2
package/dist/Atoms/Box/Box.d.ts
CHANGED
|
@@ -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';
|