@nocobase/client 1.2.11-alpha → 1.2.13-alpha

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.
@@ -132,6 +132,12 @@ export declare const useAssociationNames: (dataSource?: string) => {
132
132
  };
133
133
  };
134
134
  export declare function appendQueryStringToUrl(url: string, queryString: string): string;
135
+ export declare const useParseURLAndParams: () => {
136
+ parseURLAndParams: (url: string, params: {
137
+ name: string;
138
+ value: any;
139
+ }[]) => Promise<string>;
140
+ };
135
141
  export declare function useLinkActionProps(): {
136
142
  type: string;
137
143
  onClick(): Promise<void>;
package/es/index.d.ts CHANGED
@@ -55,6 +55,7 @@ export * from './user';
55
55
  export * from './variables';
56
56
  export { withDynamicSchemaProps } from './hoc/withDynamicSchemaProps';
57
57
  export { SchemaSettingsActionLinkItem } from './modules/actions/link/customizeLinkActionSettings';
58
+ export { useURLAndParamsSchema } from './modules/actions/link/useURLAndParamsSchema';
58
59
  export * from './modules/blocks/BlockSchemaToolbar';
59
60
  export * from './modules/blocks/data-blocks/form';
60
61
  export * from './modules/blocks/data-blocks/table';