@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.
- package/es/block-provider/hooks/index.d.ts +6 -0
- package/es/index.d.ts +1 -0
- package/es/index.mjs +3958 -3874
- package/es/modules/actions/link/useURLAndParamsSchema.d.ts +88 -0
- package/es/schema-component/antd/grid/Grid.style.d.ts +1 -0
- package/es/schema-initializer/utils.d.ts +3 -2
- package/es/schema-settings/VariableInput/hooks/index.d.ts +3 -2
- package/es/schema-settings/VariableInput/hooks/useAPITokenVariable.d.ts +21 -0
- package/es/schema-settings/VariableInput/hooks/useBaseVariable.d.ts +3 -3
- package/lib/index.js +205 -193
- package/package.json +5 -5
|
@@ -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';
|