fis-component 0.0.19 → 0.0.20
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 +2738 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/src/index.d.ts +1 -1
- package/dist/esm/index.js +2738 -2
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/src/index.d.ts +1 -1
- package/dist/index.d.ts +8 -2
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export { default as FISThemeProvider } from "./components/Provider";
|
|
2
2
|
export type { ThemeType } from "./styles/design-system";
|
|
3
3
|
export { default as FISButton } from "./components/Button";
|
|
4
4
|
export { default as FISLinkButton } from "./components/LinkButton";
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
|
-
export { ThemeProvider } from 'styled-components';
|
|
2
1
|
import * as React from 'react';
|
|
3
2
|
import React__default, { ComponentPropsWithoutRef, ReactNode, Ref, JSX } from 'react';
|
|
3
|
+
import { DefaultTheme } from 'styled-components';
|
|
4
|
+
|
|
5
|
+
interface ThemeProviderProps {
|
|
6
|
+
theme?: DefaultTheme;
|
|
7
|
+
children: React__default.ReactNode;
|
|
8
|
+
}
|
|
9
|
+
declare const FISThemeProvider: React__default.FC<ThemeProviderProps>;
|
|
4
10
|
|
|
5
11
|
declare const _default: {
|
|
6
12
|
readonly "com/breadcrumbs/module/horizontal-gap": "4px";
|
|
@@ -2926,4 +2932,4 @@ interface InputTextProps extends Omit<InputFieldProps, "onChange" | "onEnter" |
|
|
|
2926
2932
|
}
|
|
2927
2933
|
declare const FISInputText: React__default.ForwardRefExoticComponent<InputTextProps & React__default.RefAttributes<HTMLInputElement>>;
|
|
2928
2934
|
|
|
2929
|
-
export { FISButton, FISCheckbox, FISGroupButton, FISIconButton, FISInputField, FISInputLabel, FISInputText, FISLinkButton, FISRadio, type ThemeType };
|
|
2935
|
+
export { FISButton, FISCheckbox, FISGroupButton, FISIconButton, FISInputField, FISInputLabel, FISInputText, FISLinkButton, FISRadio, FISThemeProvider, type ThemeType };
|