@livetiles/reach-plugin-types 0.5.0-preview.967 → 0.5.0-preview.968
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/lib/index.d.ts +14 -0
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -6525,6 +6525,19 @@ declare module "libs/reach/ui/common/src/reach-2/tabs/TabGroup" {
|
|
|
6525
6525
|
export const TabGroup: FC<ITabGroupProps>;
|
|
6526
6526
|
export default TabGroup;
|
|
6527
6527
|
}
|
|
6528
|
+
declare module "libs/reach/ui/common/src/reach-2/tags/Tag" {
|
|
6529
|
+
import React from 'react';
|
|
6530
|
+
interface TagProps {
|
|
6531
|
+
className?: string;
|
|
6532
|
+
error?: boolean;
|
|
6533
|
+
icon?: React.ReactNode;
|
|
6534
|
+
label: string;
|
|
6535
|
+
onClick?: () => void;
|
|
6536
|
+
onClose?: () => void;
|
|
6537
|
+
}
|
|
6538
|
+
const Tag: React.FC<TagProps>;
|
|
6539
|
+
export default Tag;
|
|
6540
|
+
}
|
|
6528
6541
|
declare module "libs/reach/ui/common/src/reach-2/utils" {
|
|
6529
6542
|
export function getNormalizedPercentageBasedOnDeviceHeight(heightToConvert: number, safeArea?: number, fullyExpandThreshold?: number): number;
|
|
6530
6543
|
export function useNormalizedBreakpointValuesBasedOnDeviceHeight(heightToConvert: number, safeArea?: number, fullyExpandThreshold?: number): {
|
|
@@ -6548,6 +6561,7 @@ declare module "libs/reach/ui/common/src/reach-2/index" {
|
|
|
6548
6561
|
export * from "libs/reach/ui/common/src/reach-2/surfaces/index";
|
|
6549
6562
|
export { default as Card } from "libs/reach/ui/common/src/reach-2/surfaces/Card";
|
|
6550
6563
|
export { default as TabGroup } from "libs/reach/ui/common/src/reach-2/tabs/TabGroup";
|
|
6564
|
+
export { default as Tag } from "libs/reach/ui/common/src/reach-2/tags/Tag";
|
|
6551
6565
|
export { default as Typography } from "libs/reach/ui/common/src/reach-2/typography/Typography";
|
|
6552
6566
|
export type { ITypographyProps } from "libs/reach/ui/common/src/reach-2/typography/Typography";
|
|
6553
6567
|
export * from "libs/reach/ui/common/src/reach-2/utils";
|