ctc-component-library 0.1.2 → 0.1.3
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/index.es.js +4168 -4069
- package/dist/index.es.js.map +1 -1
- package/dist/src/components/atoms/Avatar/Avatar.d.ts +1 -2
- package/dist/src/components/atoms/Badge/types.d.ts +1 -1
- package/dist/src/components/atoms/tooltips/Tooltip/Tooltip.d.ts +1 -2
- package/dist/src/components/atoms/tooltips/TooltipWrapper/TooltipWrapper.d.ts +1 -2
- package/package.json +2 -2
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import { AvatarProps } from './types';
|
|
3
|
-
export declare const Avatar: ({ text, textColor, backgroundColor, customClassName, dataTestid }: AvatarProps) => JSX.Element;
|
|
2
|
+
export declare const Avatar: ({ text, textColor, backgroundColor, customClassName, dataTestid }: AvatarProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import { TooltipProps } from './types';
|
|
3
|
-
export declare const Tooltip: ({ children, prompText, customStyles, customClassName, backgroundColor, opacity, dataTestid }: TooltipProps) => JSX.Element;
|
|
2
|
+
export declare const Tooltip: ({ children, prompText, customStyles, customClassName, backgroundColor, opacity, dataTestid }: TooltipProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import { TooltipWrapperProps } from './types';
|
|
3
|
-
export declare const TooltipWrapper: ({ children, content, customStyles, customClassName, placement, color, backgroundColor, dataTestid }: TooltipWrapperProps) => JSX.Element;
|
|
2
|
+
export declare const TooltipWrapper: ({ children, content, customStyles, customClassName, placement, color, backgroundColor, dataTestid }: TooltipWrapperProps) => import("react/jsx-runtime").JSX.Element;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ctc-component-library",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.3",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.umd.js",
|
|
7
7
|
"module": "dist/index.es.js",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"access": "public"
|
|
22
22
|
},
|
|
23
23
|
"engines": {
|
|
24
|
-
"node": "18.19.1"
|
|
24
|
+
"node": ">=18.19.1"
|
|
25
25
|
},
|
|
26
26
|
"husky": {
|
|
27
27
|
"hooks": {
|