@itcase/ui 1.2.21 → 1.2.22
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/{Button-D1PnF1C-.js → Button-CDc_-QmL.js} +1 -1
- package/dist/{Button--5mnRJi2.js → Button-CxJYh-_G.js} +1 -1
- package/dist/{Icon-D-zjcPll.js → Icon-DTwrijaa.js} +1 -1
- package/dist/{Icon-DD_Vyrw0.js → Icon-DfVed6hR.js} +1 -1
- package/dist/{Label-BA_CnRBq.js → Label-B7HJUf4x.js} +1 -1
- package/dist/{Label-CpSzGRtr.js → Label-BT_PpHjb.js} +1 -1
- package/dist/{Tooltip-DkTKx9n-.js → Tooltip-BygRHezt.js} +3 -6
- package/dist/{Tooltip-DJufHBiQ.js → Tooltip-CK7SVawj.js} +3 -6
- package/dist/cjs/components/Accordion.js +2 -2
- package/dist/cjs/components/Avatar.js +2 -2
- package/dist/cjs/components/Breadcrumbs.js +2 -2
- package/dist/cjs/components/Button.js +3 -3
- package/dist/cjs/components/Cell.js +13 -9
- package/dist/cjs/components/Choice.js +11 -3
- package/dist/cjs/components/ContextMenu.js +2 -2
- package/dist/cjs/components/CookiesWarning.js +3 -3
- package/dist/cjs/components/DatePicker.js +4 -4
- package/dist/cjs/components/Grid.js +5 -1
- package/dist/cjs/components/Icon.js +2 -2
- package/dist/cjs/components/InputPassword.js +2 -2
- package/dist/cjs/components/Label.js +2 -2
- package/dist/cjs/components/LanguageSelector.js +2 -2
- package/dist/cjs/components/Pagination.js +2 -2
- package/dist/cjs/components/Response.js +3 -3
- package/dist/cjs/components/Search.js +2 -2
- package/dist/cjs/components/Select.js +2 -2
- package/dist/cjs/components/SiteMenu.js +2 -2
- package/dist/cjs/components/Tooltip.js +1 -1
- package/dist/components/Accordion.js +2 -2
- package/dist/components/Avatar.js +2 -2
- package/dist/components/Breadcrumbs.js +2 -2
- package/dist/components/Button.js +3 -3
- package/dist/components/Cell.js +13 -9
- package/dist/components/Choice.js +11 -3
- package/dist/components/ContextMenu.js +2 -2
- package/dist/components/CookiesWarning.js +3 -3
- package/dist/components/DatePicker.js +4 -4
- package/dist/components/Grid.js +5 -1
- package/dist/components/Icon.js +2 -2
- package/dist/components/InputPassword.js +2 -2
- package/dist/components/Label.js +2 -2
- package/dist/components/LanguageSelector.js +2 -2
- package/dist/components/Pagination.js +2 -2
- package/dist/components/Response.js +3 -3
- package/dist/components/Search.js +2 -2
- package/dist/components/Select.js +2 -2
- package/dist/components/SiteMenu.js +2 -2
- package/dist/components/Tooltip.js +1 -1
- package/dist/css/components/Accordion/Accordion.css +3 -0
- package/dist/css/components/Cell/Cell.css +23 -0
- package/dist/css/components/Drawer/Drawer.css +2 -2
- package/dist/css/components/Icon/Icon.css +4 -3
- package/dist/css/components/Tooltip/Tooltip.css +21 -0
- package/dist/types/components/Cell/Cell.interface.d.ts +8 -6
- package/dist/types/components/Icon/Icon.interface.d.ts +22 -21
- package/dist/types/components/Label/Label.interface.d.ts +1 -1
- package/dist/types/components/Tooltip/Tooltip.interface.d.ts +4 -3
- package/package.json +1 -1
|
@@ -46,7 +46,7 @@ export interface ILabelProps extends ILabelThemeColor, iStyleAttributes {
|
|
|
46
46
|
tooltipAlignment?: alignmentPropsType;
|
|
47
47
|
tooltipAppearance?: appearanceKeysType;
|
|
48
48
|
tooltipArrowPosition?: string;
|
|
49
|
-
tooltipContent?:
|
|
49
|
+
tooltipContent?: ReactNode;
|
|
50
50
|
tooltipRef?: string;
|
|
51
51
|
tooltipText?: string;
|
|
52
52
|
tooltipTitle?: string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { CSSProperties, ReactNode } from 'react';
|
|
2
2
|
import { iStyleAttributes } from '../../hooks/styleAttributes.interface';
|
|
3
|
-
import {
|
|
3
|
+
import { alignmentPropsType, borderTypePropsType, elevationPropsType, tAlignDirectionProps, tAlignProps, tBorderColorProps, tBorderWidthProps, tFillProps, titleSizePropsType, tShapeProps, tSizeProps, tTextColorProps, tTextSizeProps, tTextWeightProps } from '../../types';
|
|
4
4
|
import { tAppearanceKeysDefault } from '../../types/componentProps/appearanceKeys';
|
|
5
5
|
export interface ITooltipThemeColor {
|
|
6
6
|
align?: tAlignProps;
|
|
@@ -17,8 +17,9 @@ export interface ITooltipThemeColor {
|
|
|
17
17
|
textSize?: tTextSizeProps;
|
|
18
18
|
titleSize?: titleSizePropsType;
|
|
19
19
|
titleTextColor?: tTextColorProps;
|
|
20
|
+
titleTextWeight?: tTextWeightProps;
|
|
20
21
|
}
|
|
21
|
-
type appearanceKeysType =
|
|
22
|
+
type appearanceKeysType = {} & tAppearanceKeysDefault;
|
|
22
23
|
export type tooltipAppearanceType = {
|
|
23
24
|
[key in appearanceKeysType]?: ITooltipThemeColor;
|
|
24
25
|
};
|
|
@@ -34,11 +35,11 @@ export interface ITooltipProps extends ITooltipThemeColor, iStyleAttributes {
|
|
|
34
35
|
children?: ReactNode;
|
|
35
36
|
className?: string;
|
|
36
37
|
initialIsVisible?: any;
|
|
37
|
-
set?: string;
|
|
38
38
|
style?: CSSProperties;
|
|
39
39
|
text?: string;
|
|
40
40
|
title?: string;
|
|
41
41
|
type?: string;
|
|
42
42
|
width?: string;
|
|
43
|
+
set?: string;
|
|
43
44
|
}
|
|
44
45
|
export {};
|