@ethnolib/language-chooser-react-mui 0.0.8 → 0.0.10
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/FormFieldLabel.d.ts +5 -0
- package/LanguageChooser.d.ts +1 -0
- package/TextInput.d.ts +1 -0
- package/colors.d.ts +2 -0
- package/{Demo.d.ts → demos/DialogDemo.d.ts} +3 -2
- package/demos/DummyRightPanelComponent.d.ts +1 -0
- package/demos/PageDemo.d.ts +2 -0
- package/index.d.ts +3 -0
- package/index.js +192 -171
- package/index.mjs +9948 -12673
- package/package.json +2 -2
package/LanguageChooser.d.ts
CHANGED
@@ -5,4 +5,5 @@ export declare const LanguageChooser: React.FunctionComponent<{
|
|
5
5
|
searchResultModifier: (results: FuseResult<ILanguage>[], searchString: string) => ILanguage[];
|
6
6
|
initialState: IOrthography;
|
7
7
|
onClose: (languageSelection: IOrthography | undefined) => void;
|
8
|
+
rightPanelComponent?: React.ReactNode;
|
8
9
|
}>;
|
package/TextInput.d.ts
CHANGED
package/colors.d.ts
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
import { default as React } from 'react';
|
2
|
-
export declare const
|
2
|
+
export declare const DialogDemo: React.FunctionComponent<{
|
3
3
|
alreadyFilled?: boolean;
|
4
|
+
demoRightPanelComponent?: boolean;
|
4
5
|
dialogHeight?: string;
|
5
6
|
dialogWidth?: string;
|
6
7
|
}>;
|
7
|
-
export default
|
8
|
+
export default DialogDemo;
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const DummyRightPanelComponent: React.FunctionComponent<{}>;
|
package/index.d.ts
CHANGED
@@ -1 +1,4 @@
|
|
1
1
|
export * from './LanguageChooser';
|
2
|
+
export { defaultSearchResultModifier, createTag, } from '../../../common/find-language/index.ts';
|
3
|
+
export type { ILanguage, IScript, IRegion } from '../../../common/find-language/index.ts';
|
4
|
+
export type { IOrthography } from '@ethnolib/language-chooser-react-hook';
|