@data-c/ui 0.0.196 → 0.0.198
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 -0
- package/dist/index.js +5 -5
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -191,6 +191,8 @@ interface PageTitleProps {
|
|
|
191
191
|
onBack?: () => void;
|
|
192
192
|
onClose?: () => void;
|
|
193
193
|
onUpdate?: (value?: string) => void;
|
|
194
|
+
onSearch?: (query: string) => void;
|
|
195
|
+
storagePath?: string;
|
|
194
196
|
}
|
|
195
197
|
declare function PageTitle(props: PageTitleProps): react_jsx_runtime.JSX.Element;
|
|
196
198
|
|