@liner-fe/prism 2.5.7 → 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 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 | MEDIUM;
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' | 'normal';
210
+ type: 'accent';
211
211
  weight: 'black';
212
212
  }
213
213
  declare const Display: react.ForwardRefExoticComponent<IDisplayProps & react.RefAttributes<HTMLParagraphElement>>;