coer-elements 0.0.31 → 0.0.33
Sign up to get free protection for your applications and to get access to all the features.
- package/components/lib/coer-button/coer-button.component.d.ts +1 -1
- package/components/lib/coer-numberbox/coer-numberbox.component.d.ts +1 -1
- package/components/lib/coer-textarea/coer-textarea.component.d.ts +1 -1
- package/components/lib/coer-textbox/coer-textbox.component.d.ts +1 -1
- package/esm2022/components/lib/coer-sidenav/coer-sidenav.component.mjs +2 -2
- package/esm2022/components/lib/coer-sidenav/coer-tree-accordion/coer-tree-accordion.component.mjs +3 -2
- package/esm2022/tools/lib/service.class.mjs +288 -128
- package/fesm2022/coer-elements-components.mjs +2 -2
- package/fesm2022/coer-elements-components.mjs.map +1 -1
- package/fesm2022/coer-elements-tools.mjs +287 -127
- package/fesm2022/coer-elements-tools.mjs.map +1 -1
- package/package.json +1 -1
- package/styles/coer-elements.css +1 -3
- package/styles/containers.scss +2 -2
- package/tools/lib/service.class.d.ts +5 -5
@@ -25,15 +25,15 @@ export declare class Service {
|
|
25
25
|
/** */
|
26
26
|
private ReleaseSubscription;
|
27
27
|
/** HTTP GET */
|
28
|
-
protected HTTP_GET<T>(request: IHttpRequest<T
|
28
|
+
protected HTTP_GET<T>(request: IHttpRequest<T>, cancelPrevious?: boolean): Promise<IHttpResponse<T>>;
|
29
29
|
/** HTTP POST */
|
30
|
-
protected HTTP_POST<T>(request: IHttpRequest<T
|
30
|
+
protected HTTP_POST<T>(request: IHttpRequest<T>, cancelPrevious?: boolean): Promise<IHttpResponse<T>>;
|
31
31
|
/** HTTP PUT */
|
32
|
-
protected HTTP_PUT<T>(request: IHttpRequest<T
|
32
|
+
protected HTTP_PUT<T>(request: IHttpRequest<T>, cancelPrevious?: boolean): Promise<IHttpResponse<void>>;
|
33
33
|
/** HTTP PATCH */
|
34
|
-
protected HTTP_PATCH<T>(request: IHttpRequest<T
|
34
|
+
protected HTTP_PATCH<T>(request: IHttpRequest<T>, cancelPrevious?: boolean): Promise<IHttpResponse<void>>;
|
35
35
|
/** HTTP DELETE */
|
36
|
-
protected HTTP_DELETE<T>(request: IHttpRequest<T
|
36
|
+
protected HTTP_DELETE<T>(request: IHttpRequest<T>, cancelPrevious?: boolean): Promise<IHttpResponse<void>>;
|
37
37
|
/** */
|
38
38
|
private AlertError;
|
39
39
|
}
|