@ecodev/natural 60.0.0 → 60.0.2
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/esm2022/lib/classes/apollo-utils.mjs +1 -1
- package/esm2022/lib/modules/dropdown-components/public-api.mjs +1 -1
- package/esm2022/lib/modules/search/input/input.component.mjs +4 -1
- package/esm2022/public-api.mjs +2 -2
- package/fesm2022/ecodev-natural.mjs +3 -0
- package/fesm2022/ecodev-natural.mjs.map +1 -1
- package/lib/classes/apollo-utils.d.ts +1 -2
- package/lib/modules/dropdown-components/public-api.d.ts +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +1 -1
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { ApolloLink, DocumentNode } from '@apollo/client/core';
|
|
2
2
|
import { HttpBatchLink, HttpLink, Options } from 'apollo-angular/http';
|
|
3
|
-
import { ExtractFiles } from 'apollo-angular/http/types';
|
|
4
3
|
/**
|
|
5
4
|
* Detect if the given variables have a file to be uploaded or not, and
|
|
6
5
|
* also convert date to be serialized with their timezone.
|
|
@@ -10,7 +9,7 @@ export declare function hasFilesAndProcessDate(variables: unknown): boolean;
|
|
|
10
9
|
* Whether the given GraphQL document contains at least one mutation
|
|
11
10
|
*/
|
|
12
11
|
export declare function isMutation(query: DocumentNode): boolean;
|
|
13
|
-
export declare const naturalExtractFiles:
|
|
12
|
+
export declare const naturalExtractFiles: NonNullable<Options['extractFiles']>;
|
|
14
13
|
/**
|
|
15
14
|
* Create an Apollo link that supports batched queries and file uploads.
|
|
16
15
|
*
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { TypeSelectConfiguration, TypeSelectComponent } from './type-select/type-select.component';
|
|
1
|
+
export { TypeSelectConfiguration, TypeSelectItem, TypeSelectComponent } from './type-select/type-select.component';
|
|
2
2
|
export { TypeSelectNaturalConfiguration, TypeNaturalSelectComponent, } from './type-natural-select/type-natural-select.component';
|
|
3
3
|
export { TypeNumberConfiguration, TypeNumberComponent } from './type-number/type-number.component';
|
|
4
4
|
export { TypeHierarchicSelectorConfiguration, TypeHierarchicSelectorComponent, } from './type-hierarchic-selector/type-hierarchic-selector.component';
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -14,7 +14,7 @@ export * from './lib/services/abstract-model.service';
|
|
|
14
14
|
export { NaturalDebounceService } from './lib/services/debounce.service';
|
|
15
15
|
export * from './lib/services/enum.service';
|
|
16
16
|
export * from './lib/services/link-mutation.service';
|
|
17
|
-
export { NaturalPersistenceService, NATURAL_PERSISTENCE_VALIDATOR } from './lib/services/persistence.service';
|
|
17
|
+
export { NaturalPersistenceService, NATURAL_PERSISTENCE_VALIDATOR, PersistenceValidator, } from './lib/services/persistence.service';
|
|
18
18
|
export * from './lib/services/swiss-parsing-date-adapter.service';
|
|
19
19
|
export { ExtractResolve, ExtractTall, ExtractTallOne, ExtractTcreate, ExtractTdelete, ExtractTone, ExtractTupdate, ExtractVall, ExtractVcreate, ExtractVdelete, ExtractVone, ExtractVupdate, Literal, NameOrFullName, ResolvedData, } from './lib/types/types';
|
|
20
20
|
export * from './lib/modules/alert/public-api';
|