@lax-wp/design-system 0.8.35 → 0.8.37

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.
@@ -26,5 +26,5 @@ export interface IButtonProps {
26
26
  }
27
27
  export type IButtonStatus = 'secondary-neutral' | 'primary' | 'secondary' | 'error' | 'warning' | 'success' | 'error-secondary' | 'cancel' | 'no-background' | 'publish' | 'default';
28
28
  export type IButtonAppearance = 'filled' | 'outline' | 'ghost' | 'dashed';
29
- declare const Button: React.FC<IButtonProps>;
29
+ declare const Button: React.ForwardRefExoticComponent<IButtonProps & React.RefAttributes<HTMLButtonElement>>;
30
30
  export default Button;
package/dist/index.d.ts CHANGED
@@ -232,6 +232,10 @@ export { NoAvailableContent as ComparisonNoAvailableContent } from "./components
232
232
  export type { ComparisonProps, TComparisonContext, ComparisonProviderProps, ILayoutItem, ExitIconProps, LayoutOneIconProps, LayoutTwoIconProps, LayoutThreeIconProps, } from "./components/data-display/comparison";
233
233
  export { FormulaInput, convertToPills, convertFromPills, getCursorPosition, setCursorPosition, getTextBeforeCursor, getCursorCoordinates, insertTextAtCursor, } from "./components/forms/formula-input";
234
234
  export type { FormulaInputProps } from "./components/forms/formula-input";
235
+ export { RichMarkdownInput } from "./components/forms/md-input/RichMarkdownInput";
236
+ export type { RichMarkdownInputProps } from "./components/forms/md-input/RichMarkdownInput";
237
+ export { MarkdownPreview } from "./components/forms/md-input/MarkdownPreview";
238
+ export type { MarkdownPreviewProps } from "./components/forms/md-input/MarkdownPreview";
235
239
  export { ShortcutKbd } from "./components/shortcut-kbd";
236
240
  export type { ShortcutKbdProps, ShortcutKbdVariant } from "./components/shortcut-kbd";
237
241
  export { ImageSlider } from "./components/sliders/ImageSlider";