fis-component 0.1.12 → 0.1.13
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/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/src/components/Text/index.d.ts +1 -0
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/src/components/Text/index.d.ts +1 -0
- package/dist/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -4,6 +4,7 @@ export interface FISTextPropsI extends React.HTMLAttributes<HTMLElement> {
|
|
|
4
4
|
variant?: keyof ThemeType;
|
|
5
5
|
tag?: keyof JSX.IntrinsicElements;
|
|
6
6
|
color?: keyof ThemeType;
|
|
7
|
+
as?: keyof JSX.IntrinsicElements;
|
|
7
8
|
}
|
|
8
9
|
declare const FISText: React.ForwardRefExoticComponent<FISTextPropsI & React.RefAttributes<any>>;
|
|
9
10
|
export default FISText;
|
package/dist/index.d.ts
CHANGED
|
@@ -4383,6 +4383,7 @@ interface FISTextPropsI extends React__default.HTMLAttributes<HTMLElement> {
|
|
|
4383
4383
|
variant?: keyof ThemeType$2;
|
|
4384
4384
|
tag?: keyof JSX.IntrinsicElements;
|
|
4385
4385
|
color?: keyof ThemeType$2;
|
|
4386
|
+
as?: keyof JSX.IntrinsicElements;
|
|
4386
4387
|
}
|
|
4387
4388
|
declare const FISText: React__default.ForwardRefExoticComponent<FISTextPropsI & React__default.RefAttributes<any>>;
|
|
4388
4389
|
|