@quandis/qbo4.ui 4.0.1-CI-20241022-235233 → 4.0.1-CI-20241023-170316
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/package.json +1 -1
- package/src/qbo/Program.d.ts +1 -0
- package/src/qbo/Program.js +1 -0
- package/src/qbo/Program.ts +1 -0
- package/src/qbo/RestApiService.js +1 -1
- package/src/qbo/RestApiService.ts +1 -1
- package/wwwroot/js/esm/qbo4.ui.js +11 -3
- package/wwwroot/js/esm/qbo4.ui.min.js +24 -24
- package/wwwroot/js/esm/qbo4.ui.min.js.map +1 -1
- package/wwwroot/js/qbo4.ui.js +7 -2
- package/wwwroot/js/qbo4.ui.min.js +24 -24
- package/wwwroot/js/qbo4.ui.min.js.map +1 -1
package/package.json
CHANGED
package/src/qbo/Program.d.ts
CHANGED
|
@@ -36,6 +36,7 @@ export * from './qbo-selectable.js';
|
|
|
36
36
|
export * from './qbo-table.js';
|
|
37
37
|
export * from './qbo-user-preferences.js';
|
|
38
38
|
export * from './qbo-validate.js';
|
|
39
|
+
export * from './styles.js';
|
|
39
40
|
export declare function matches(source: any, match: any, wildCard?: string, ignoreCase?: boolean): boolean;
|
|
40
41
|
export declare function elementData(element: HTMLElement): Record<string, string>;
|
|
41
42
|
export declare function elementDate(date: string): string;
|
package/src/qbo/Program.js
CHANGED
|
@@ -25,6 +25,7 @@ export * from './qbo-selectable.js';
|
|
|
25
25
|
export * from './qbo-table.js';
|
|
26
26
|
export * from './qbo-user-preferences.js';
|
|
27
27
|
export * from './qbo-validate.js';
|
|
28
|
+
export * from './styles.js';
|
|
28
29
|
export function matches(source, match, wildCard = "*", ignoreCase = true) {
|
|
29
30
|
match = match.replace(/([.+^${}()|[\]\\])/g, '\\$1');
|
|
30
31
|
match = match.replace(new RegExp('\\' + wildCard, 'g'), ".*");
|
package/src/qbo/Program.ts
CHANGED
|
@@ -42,6 +42,7 @@ export * from './qbo-selectable.js';
|
|
|
42
42
|
export * from './qbo-table.js';
|
|
43
43
|
export * from './qbo-user-preferences.js';
|
|
44
44
|
export * from './qbo-validate.js';
|
|
45
|
+
export * from './styles.js';
|
|
45
46
|
|
|
46
47
|
export function matches(source, match, wildCard = "*", ignoreCase = true) {
|
|
47
48
|
match = match.replace(/([.+^${}()|[\]\\])/g, '\\$1');
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { services } from "./Services.js";
|
|
2
2
|
import { substitute } from "./qbo-json.js";
|
|
3
3
|
export class RestApiService {
|
|
4
|
-
constructor(apiEndpoint, headers = {
|
|
4
|
+
constructor(apiEndpoint, headers = {}, method = null) {
|
|
5
5
|
this.relativePath = '';
|
|
6
6
|
this.apiEndpoint = apiEndpoint;
|
|
7
7
|
this.headers = headers;
|
|
@@ -9,7 +9,7 @@ export class RestApiService implements IApiService {
|
|
|
9
9
|
private method: string | null;
|
|
10
10
|
public relativePath: string = '';
|
|
11
11
|
|
|
12
|
-
constructor(apiEndpoint: string, headers: HeadersInit = {
|
|
12
|
+
constructor(apiEndpoint: string, headers: HeadersInit = { }, method: string | null = null) {
|
|
13
13
|
this.apiEndpoint = apiEndpoint;
|
|
14
14
|
this.headers = headers;
|
|
15
15
|
this.method = method;
|