@zealicsolutions/web-ui 0.3.264 → 0.3.266
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/cjs/index.js +5 -5
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/src/atoms/RichTextViewer/RichTextViewer.d.ts +1 -1
- package/dist/cjs/src/helpers/styles.d.ts +1 -1
- package/dist/esm/index.js +5 -5
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/src/atoms/RichTextViewer/RichTextViewer.d.ts +1 -1
- package/dist/esm/src/helpers/styles.d.ts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +2 -2
@@ -21,4 +21,4 @@ export declare type RichTextEditorProps = Partial<{
|
|
21
21
|
moleculeId: string;
|
22
22
|
isTrigger: boolean;
|
23
23
|
}>;
|
24
|
-
export declare const RichTextViewer: ({ value, color, textStyles,
|
24
|
+
export declare const RichTextViewer: ({ value, font, color, textStyles, numberOfLines, extraTextProps, renderElementWrapperComponent, renderElementWrapperProps, htmlElementId, moleculeId, isTrigger, }: RichTextEditorProps) => JSX.Element;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { CSSProperties } from 'styled-components';
|
2
2
|
export declare const getSizeStyle: (size: number) => Pick<CSSProperties, 'maxWidth' | 'maxHeight' | 'minWidth' | 'minHeight'>;
|
3
3
|
export declare const changeColorTint: (color: string, percent: number) => string;
|
4
|
-
export declare const getTintColor: (color: string) => string;
|
4
|
+
export declare const getTintColor: (color: string, percent?: number) => string;
|
5
5
|
export declare const getShadeColor: (color: string, percent?: number) => string;
|
package/dist/index.d.ts
CHANGED
@@ -1014,7 +1014,7 @@ declare type RichTextEditorProps = Partial<{
|
|
1014
1014
|
moleculeId: string;
|
1015
1015
|
isTrigger: boolean;
|
1016
1016
|
}>;
|
1017
|
-
declare const RichTextViewer: ({ value, color, textStyles,
|
1017
|
+
declare const RichTextViewer: ({ value, font, color, textStyles, numberOfLines, extraTextProps, renderElementWrapperComponent, renderElementWrapperProps, htmlElementId, moleculeId, isTrigger, }: RichTextEditorProps) => JSX.Element;
|
1018
1018
|
|
1019
1019
|
declare type RadioButtonInternalConfigProps = Partial<{
|
1020
1020
|
selectedRadioOptionBackgroundColor: ThemeColors$1 | string;
|
package/package.json
CHANGED