forstok-ui-lib 8.6.1 → 8.6.2
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/index.d.ts +2 -1
- package/dist/index.js +21 -21
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +22 -22
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/components/emoji/index.tsx +34 -17
- package/src/components/textarea/ref.tsx +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -815,9 +815,10 @@ declare function ReactPortalComponent({ children, wrapperId }: {
|
|
|
815
815
|
wrapperId?: string;
|
|
816
816
|
}): react_jsx_runtime.JSX.Element;
|
|
817
817
|
|
|
818
|
-
declare const EmojiComponent: ({ $mode, evChange }: {
|
|
818
|
+
declare const EmojiComponent: ({ $mode, evChange, $emojiStyles, }: {
|
|
819
819
|
$mode?: "textarea";
|
|
820
820
|
evChange: (emoji: string) => void;
|
|
821
|
+
$emojiStyles?: CSSProperties;
|
|
821
822
|
}) => react_jsx_runtime.JSX.Element;
|
|
822
823
|
|
|
823
824
|
type TableMode = 'widersmall' | 'custom';
|