@liner-fe/prism 2.5.6 → 2.5.9
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 +3 -3
- package/lib/index.js.map +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -200,14 +200,14 @@ declare const Paragraph: react.ForwardRefExoticComponent<ParagraphProps & react.
|
|
|
200
200
|
|
|
201
201
|
interface ITitleProps extends ITypographyCommon {
|
|
202
202
|
type: ACCENT | NORMAL;
|
|
203
|
-
weight: BOLD
|
|
203
|
+
weight: BOLD;
|
|
204
204
|
size: 1 | 2 | 3 | 4 | 5;
|
|
205
205
|
}
|
|
206
206
|
declare const Title: react__default.ForwardRefExoticComponent<ITitleProps & react__default.RefAttributes<HTMLParagraphElement>>;
|
|
207
207
|
|
|
208
208
|
interface IDisplayProps extends ITypographyCommon {
|
|
209
209
|
size: 2 | 3;
|
|
210
|
-
type: 'accent'
|
|
210
|
+
type: 'accent';
|
|
211
211
|
weight: 'black';
|
|
212
212
|
}
|
|
213
213
|
declare const Display: react.ForwardRefExoticComponent<IDisplayProps & react.RefAttributes<HTMLParagraphElement>>;
|
|
@@ -320,7 +320,7 @@ interface TooltipTriggerProps {
|
|
|
320
320
|
*/
|
|
321
321
|
by: ReactNode;
|
|
322
322
|
}
|
|
323
|
-
interface TooltipContentProps extends
|
|
323
|
+
interface TooltipContentProps extends ComponentPropsWithoutRef<typeof Tooltip$1.Content> {
|
|
324
324
|
children?: ReactNode;
|
|
325
325
|
/**
|
|
326
326
|
* @param description
|