@codex-ts/core-lib 1.0.7 → 1.0.9
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/README.md +63 -0
- package/fesm2022/codex-ts-core-lib.mjs +94 -81
- package/fesm2022/codex-ts-core-lib.mjs.map +1 -1
- package/index.d.ts +5 -29
- package/lib/components/base-form.component.d.ts +1 -1
- package/lib/components/formly/types/numeric-input.type.d.ts +2 -2
- package/lib/components/formly/types/select.type.d.ts +1 -1
- package/lib/components/formly/types/textarea.type.d.ts +1 -1
- package/lib/services/http-utility.service.d.ts +1 -1
- package/package.json +7 -26
- package/public-api.d.ts +29 -0
package/index.d.ts
CHANGED
|
@@ -1,29 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
export * from './
|
|
6
|
-
export * from './lib/services/reference-data-provider.service';
|
|
7
|
-
export * from './lib/services/base-crud.service';
|
|
8
|
-
export * from './lib/services/http-utility.service';
|
|
9
|
-
export * from './lib/services/entity.service';
|
|
10
|
-
export * from './lib/enums/component-context.enum';
|
|
11
|
-
export * from './lib/enums/tabbed-form-type.enum';
|
|
12
|
-
export * from './lib/components/base-form.component';
|
|
13
|
-
export * from './lib/components/base-page.component';
|
|
14
|
-
export * from './lib/components/base-list-page.component';
|
|
15
|
-
export * from './lib/components/base-tabbed-form.component';
|
|
16
|
-
export * from './lib/constants/app.constants';
|
|
17
|
-
export * from './lib/constants/app.messages';
|
|
18
|
-
export * from './lib/models/pagination/page.interface';
|
|
19
|
-
export * from './lib/models/pagination/page-request.interface';
|
|
20
|
-
export * from './lib/pipes/indian-date.pipe';
|
|
21
|
-
export * from './lib/components/formly/core-formly.module';
|
|
22
|
-
export * from './lib/components/formly/form-field.wrapper';
|
|
23
|
-
export * from './lib/components/formly/types/text-input.type';
|
|
24
|
-
export * from './lib/components/formly/types/select.type';
|
|
25
|
-
export * from './lib/components/formly/types/radio.type';
|
|
26
|
-
export * from './lib/components/formly/types/numeric-input.type';
|
|
27
|
-
export * from './lib/components/formly/types/multiselect.type';
|
|
28
|
-
export * from './lib/components/formly/types/date.type';
|
|
29
|
-
export * from './lib/components/formly/types/checkbox.type';
|
|
1
|
+
/**
|
|
2
|
+
* Generated bundle index. Do not edit.
|
|
3
|
+
*/
|
|
4
|
+
/// <amd-module name="@codex-ts/core-lib" />
|
|
5
|
+
export * from './public-api';
|
|
@@ -19,7 +19,7 @@ export declare abstract class BaseFormComponent<T extends {
|
|
|
19
19
|
protected notificationService: NotificationService;
|
|
20
20
|
protected utilsService: UtilsService;
|
|
21
21
|
protected formlyConfigService: FormlyConfigService;
|
|
22
|
-
form: FormGroup<
|
|
22
|
+
form: FormGroup<any>;
|
|
23
23
|
fields: FormlyFieldConfig[];
|
|
24
24
|
isNew: boolean;
|
|
25
25
|
mode: PageMode;
|
|
@@ -3,8 +3,8 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
export declare class NumericInputType extends FieldType {
|
|
4
4
|
defaultOptions: {
|
|
5
5
|
props: {
|
|
6
|
-
min:
|
|
7
|
-
max:
|
|
6
|
+
min: undefined;
|
|
7
|
+
max: undefined;
|
|
8
8
|
minFractionDigits: number;
|
|
9
9
|
maxFractionDigits: number;
|
|
10
10
|
prefix: string;
|
|
@@ -16,7 +16,7 @@ export declare class HttpUtilityService {
|
|
|
16
16
|
private messageService?;
|
|
17
17
|
private loading;
|
|
18
18
|
loading$: Observable<boolean>;
|
|
19
|
-
constructor(http: HttpClient, messageService?: MessageService);
|
|
19
|
+
constructor(http: HttpClient, messageService?: MessageService | undefined);
|
|
20
20
|
/**
|
|
21
21
|
* Perform a GET request with enhanced options
|
|
22
22
|
* @param url The endpoint URL
|
package/package.json
CHANGED
|
@@ -1,32 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codex-ts/core-lib",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
"license": "ISC",
|
|
3
|
+
"version": "1.0.9",
|
|
4
|
+
"peerDependencies": {
|
|
5
|
+
"@angular/common": "^19.2.0",
|
|
6
|
+
"@angular/core": "^19.2.0"
|
|
7
|
+
},
|
|
9
8
|
"dependencies": {
|
|
10
9
|
"tslib": "^2.3.0"
|
|
11
10
|
},
|
|
12
|
-
"
|
|
13
|
-
"@angular/animations": "^19.1.5",
|
|
14
|
-
"@angular/cdk": "^19.1.5",
|
|
15
|
-
"@angular/common": "^19.1.5",
|
|
16
|
-
"@angular/compiler": "^19.1.5",
|
|
17
|
-
"@angular/core": "^19.1.5",
|
|
18
|
-
"@angular/forms": "^19.1.5",
|
|
19
|
-
"@angular/platform-browser": "^19.1.5",
|
|
20
|
-
"@angular/platform-browser-dynamic": "^19.1.5",
|
|
21
|
-
"@angular/router": "^19.1.5",
|
|
22
|
-
"@ngx-formly/core": "^6.3.12",
|
|
23
|
-
"@primeng/themes": "^19.0.6",
|
|
24
|
-
"primeflex": "^3.3.1",
|
|
25
|
-
"primeicons": "^7.0.0",
|
|
26
|
-
"primeng": "^19.0.6",
|
|
27
|
-
"rxjs": "~7.8.0",
|
|
28
|
-
"zone.js": "~0.15.0"
|
|
29
|
-
},
|
|
11
|
+
"sideEffects": false,
|
|
30
12
|
"module": "fesm2022/codex-ts-core-lib.mjs",
|
|
31
13
|
"typings": "index.d.ts",
|
|
32
14
|
"exports": {
|
|
@@ -37,6 +19,5 @@
|
|
|
37
19
|
"types": "./index.d.ts",
|
|
38
20
|
"default": "./fesm2022/codex-ts-core-lib.mjs"
|
|
39
21
|
}
|
|
40
|
-
}
|
|
41
|
-
"sideEffects": false
|
|
22
|
+
}
|
|
42
23
|
}
|
package/public-api.d.ts
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
export * from './lib/services/formly-config.service';
|
|
2
|
+
export * from './lib/services/utils.service';
|
|
3
|
+
export * from './lib/services/notification.service';
|
|
4
|
+
export * from './lib/services/enum-registry.service';
|
|
5
|
+
export * from './lib/services/entity-registry.service';
|
|
6
|
+
export * from './lib/services/reference-data-provider.service';
|
|
7
|
+
export * from './lib/services/base-crud.service';
|
|
8
|
+
export * from './lib/services/http-utility.service';
|
|
9
|
+
export * from './lib/services/entity.service';
|
|
10
|
+
export * from './lib/enums/component-context.enum';
|
|
11
|
+
export * from './lib/enums/tabbed-form-type.enum';
|
|
12
|
+
export * from './lib/components/base-form.component';
|
|
13
|
+
export * from './lib/components/base-page.component';
|
|
14
|
+
export * from './lib/components/base-list-page.component';
|
|
15
|
+
export * from './lib/components/base-tabbed-form.component';
|
|
16
|
+
export * from './lib/constants/app.constants';
|
|
17
|
+
export * from './lib/constants/app.messages';
|
|
18
|
+
export * from './lib/models/pagination/page.interface';
|
|
19
|
+
export * from './lib/models/pagination/page-request.interface';
|
|
20
|
+
export * from './lib/pipes/indian-date.pipe';
|
|
21
|
+
export * from './lib/components/formly/core-formly.module';
|
|
22
|
+
export * from './lib/components/formly/form-field.wrapper';
|
|
23
|
+
export * from './lib/components/formly/types/text-input.type';
|
|
24
|
+
export * from './lib/components/formly/types/select.type';
|
|
25
|
+
export * from './lib/components/formly/types/radio.type';
|
|
26
|
+
export * from './lib/components/formly/types/numeric-input.type';
|
|
27
|
+
export * from './lib/components/formly/types/multiselect.type';
|
|
28
|
+
export * from './lib/components/formly/types/date.type';
|
|
29
|
+
export * from './lib/components/formly/types/checkbox.type';
|