@gataca/design-system 0.3.94 → 0.3.95
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/components/native/Headings/HeadingContainer/HeadingContainer_styles.native.d.ts +6 -0
- package/dist/components/native/Headings/HeadingContainer/HeadingContainer_types.native.d.ts +2 -0
- package/dist/components/web/Headings/HeadingContainer/HeadingContainer_styles.web.d.ts +1 -0
- package/dist/components/web/Headings/HeadingContainer/HeadingContainer_types.web.d.ts +2 -0
- package/dist/index.native.js +1 -1
- package/dist/index.native.js.map +1 -1
- package/dist/index.web.js +1 -1
- package/dist/index.web.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { ChipColor } from '../../Chips/Chip/Chip.types.native';
|
|
2
|
+
import { ParentComponentTooltipProps } from '../../Tooltips/Tooltip/tooltip_types.native';
|
|
2
3
|
export type HeadingContainerSize = 'xmall' | 'small' | 'medium';
|
|
3
4
|
export type HeadingContainerContextTextColor = 'grey' | 'black' | 'purple' | 'white';
|
|
4
5
|
export type HeadingContainerAlign = 'left' | 'center';
|
|
@@ -13,6 +14,7 @@ export interface HeadingContainerProps {
|
|
|
13
14
|
align?: HeadingContainerAlign;
|
|
14
15
|
sectionName?: string;
|
|
15
16
|
titleText?: string;
|
|
17
|
+
titleTooltip?: ParentComponentTooltipProps;
|
|
16
18
|
contentText?: string;
|
|
17
19
|
chip?: ChipProps;
|
|
18
20
|
containerStyle?: any;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { ChipColor } from '../../Chips/Chip/Chip.types.web';
|
|
2
|
+
import { ParentComponentTooltipProps } from '../../Tooltips/Tooltip/tooltip_types.web';
|
|
2
3
|
export type HeadingContainerSize = 'xmall' | 'small' | 'medium';
|
|
3
4
|
export type HeadingContainercontentTextColor = 'grey' | 'black' | 'purple' | 'white';
|
|
4
5
|
export type HeadingContainerAlign = 'left' | 'center';
|
|
@@ -13,6 +14,7 @@ export interface HeadingContainerProps {
|
|
|
13
14
|
contentTextColor: HeadingContainercontentTextColor;
|
|
14
15
|
align?: HeadingContainerAlign;
|
|
15
16
|
titleText?: string;
|
|
17
|
+
titleTooltip?: ParentComponentTooltipProps;
|
|
16
18
|
contentText?: string;
|
|
17
19
|
sectionName?: string;
|
|
18
20
|
chip?: ChipProps;
|