@leav/ui 0.3.6-7be4667 → 0.3.6-89067e7
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/_gqlTypes/index.d.ts +37 -0
- package/dist/_gqlTypes/index.js +1047 -1038
- package/dist/_gqlTypes/index.js.map +1 -1
- package/dist/components/Explorer/DataView.js +1 -1
- package/dist/components/Explorer/DataView.js.map +1 -1
- package/dist/components/Explorer/Explorer.d.ts +6 -4
- package/dist/components/Explorer/Explorer.js +11 -5
- package/dist/components/Explorer/Explorer.js.map +1 -1
- package/dist/components/Explorer/ExplorerTitle.d.ts +7 -0
- package/dist/components/Explorer/ExplorerTitle.js +28 -0
- package/dist/components/Explorer/ExplorerTitle.js.map +1 -0
- package/dist/components/Explorer/_types.d.ts +5 -0
- package/dist/components/Explorer/{useCreateMainAction.d.ts → useCreateAction.d.ts} +3 -3
- package/dist/components/Explorer/{useCreateMainAction.js → useCreateAction.js} +11 -7
- package/dist/components/Explorer/useCreateAction.js.map +1 -0
- package/dist/components/Explorer/useEditAction.js +1 -1
- package/dist/components/Explorer/useEditAction.js.map +1 -1
- package/dist/components/Explorer/usePrimaryActions.d.ts +19 -0
- package/dist/components/Explorer/usePrimaryActions.js +28 -0
- package/dist/components/Explorer/usePrimaryActions.js.map +1 -0
- package/package.json +1 -1
- package/dist/components/Explorer/useCreateMainAction.js.map +0 -1
|
@@ -6008,6 +6008,17 @@ export type ExplorerQuery = {
|
|
|
6008
6008
|
}>;
|
|
6009
6009
|
};
|
|
6010
6010
|
};
|
|
6011
|
+
export type ExplorerLibraryDataQueryVariables = Exact<{
|
|
6012
|
+
libraryId: Scalars['ID'];
|
|
6013
|
+
}>;
|
|
6014
|
+
export type ExplorerLibraryDataQuery = {
|
|
6015
|
+
libraries?: {
|
|
6016
|
+
list: Array<{
|
|
6017
|
+
id: string;
|
|
6018
|
+
label?: any | null;
|
|
6019
|
+
}>;
|
|
6020
|
+
} | null;
|
|
6021
|
+
};
|
|
6011
6022
|
export declare const RecordIdentityFragmentDoc: Apollo.DocumentNode;
|
|
6012
6023
|
export declare const DetailsApplicationFragmentDoc: Apollo.DocumentNode;
|
|
6013
6024
|
export declare const AttributeDetailsFragmentDoc: Apollo.DocumentNode;
|
|
@@ -7469,3 +7480,29 @@ export declare function useExplorerLazyQuery(baseOptions?: Apollo.LazyQueryHookO
|
|
|
7469
7480
|
export type ExplorerQueryHookResult = ReturnType<typeof useExplorerQuery>;
|
|
7470
7481
|
export type ExplorerLazyQueryHookResult = ReturnType<typeof useExplorerLazyQuery>;
|
|
7471
7482
|
export type ExplorerQueryResult = Apollo.QueryResult<ExplorerQuery, ExplorerQueryVariables>;
|
|
7483
|
+
export declare const ExplorerLibraryDataDocument: Apollo.DocumentNode;
|
|
7484
|
+
/**
|
|
7485
|
+
* __useExplorerLibraryDataQuery__
|
|
7486
|
+
*
|
|
7487
|
+
* To run a query within a React component, call `useExplorerLibraryDataQuery` and pass it any options that fit your needs.
|
|
7488
|
+
* When your component renders, `useExplorerLibraryDataQuery` returns an object from Apollo Client that contains loading, error, and data properties
|
|
7489
|
+
* you can use to render your UI.
|
|
7490
|
+
*
|
|
7491
|
+
* @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
|
|
7492
|
+
*
|
|
7493
|
+
* @example
|
|
7494
|
+
* const { data, loading, error } = useExplorerLibraryDataQuery({
|
|
7495
|
+
* variables: {
|
|
7496
|
+
* libraryId: // value for 'libraryId'
|
|
7497
|
+
* },
|
|
7498
|
+
* });
|
|
7499
|
+
*/
|
|
7500
|
+
export declare function useExplorerLibraryDataQuery(baseOptions: Apollo.QueryHookOptions<ExplorerLibraryDataQuery, ExplorerLibraryDataQueryVariables>): Apollo.QueryResult<ExplorerLibraryDataQuery, Exact<{
|
|
7501
|
+
libraryId: Scalars["ID"];
|
|
7502
|
+
}>>;
|
|
7503
|
+
export declare function useExplorerLibraryDataLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<ExplorerLibraryDataQuery, ExplorerLibraryDataQueryVariables>): Apollo.LazyQueryResultTuple<ExplorerLibraryDataQuery, Exact<{
|
|
7504
|
+
libraryId: Scalars["ID"];
|
|
7505
|
+
}>>;
|
|
7506
|
+
export type ExplorerLibraryDataQueryHookResult = ReturnType<typeof useExplorerLibraryDataQuery>;
|
|
7507
|
+
export type ExplorerLibraryDataLazyQueryHookResult = ReturnType<typeof useExplorerLibraryDataLazyQuery>;
|
|
7508
|
+
export type ExplorerLibraryDataQueryResult = Apollo.QueryResult<ExplorerLibraryDataQuery, ExplorerLibraryDataQueryVariables>;
|