@tsi-developpement/tsi-shared-ui 1.9.8 → 1.9.10
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/end-points/endpoints.mjs +2 -2
- package/esm2022/lib/models/entity-info/entity-info.mjs +1 -1
- package/esm2022/lib/tsi-components/create-or-edit-entity-informations/create-or-edit-entity-informations.component.mjs +3 -3
- package/esm2022/lib/tsi-components/input-components/tsi-search-combo/tsi-search-combo.component.mjs +11 -1
- package/esm2022/lib/tsi-components/tsi-action-erp-create-or-edit/tsi-action-erp-create-or-edit.component.mjs +52 -32
- package/esm2022/lib/tsi-components/tsi-action-erp-list/tsi-action-erp-list.component.mjs +5 -5
- package/esm2022/lib/tsi-components/tsi-generic-crud/tsi-generic-crud.component.mjs +2 -2
- package/fesm2022/tsi-developpement-tsi-shared-ui.mjs +81 -52
- package/fesm2022/tsi-developpement-tsi-shared-ui.mjs.map +1 -1
- package/lib/end-points/endpoints.d.ts +1 -1
- package/lib/models/entity-info/entity-info.d.ts +1 -0
- package/lib/providers/shared-ui-tsi.provider.d.ts +1 -1
- package/lib/tsi-components/manage-reporting/add-report-popup/add-report-popup.component.d.ts +1 -1
- package/lib/tsi-components/tsi-action-erp-create-or-edit/tsi-action-erp-create-or-edit.component.d.ts +5 -1
- package/lib/tsi-components/tsi-upload-fiche/tsi-upload-fiche.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -208,7 +208,7 @@ export declare const AdministrationEndpoints: {
|
|
|
208
208
|
changePasswordInvalid: () => string;
|
|
209
209
|
getEntityInformations: (businessClassName: string) => string;
|
|
210
210
|
getEntityInformationsAndRelations: (businessClass: string) => string;
|
|
211
|
-
GetAllEntitiesInformations: () => string;
|
|
211
|
+
GetAllEntitiesInformations: (onlyFrequent?: boolean) => string;
|
|
212
212
|
GetAllEntitiesInformationsMinimal: () => string;
|
|
213
213
|
getEntityInfoElementSource: () => string;
|
|
214
214
|
createOrUpdateEntityInformations: () => string;
|
|
@@ -19,6 +19,7 @@ export declare class EntityInfo {
|
|
|
19
19
|
cardDescriptionColumn: string | undefined;
|
|
20
20
|
calendarStartDateColumn: string | undefined;
|
|
21
21
|
calendarEndDateColumn: string | undefined;
|
|
22
|
+
frequent: string | undefined;
|
|
22
23
|
}
|
|
23
24
|
export declare class EntityRelation {
|
|
24
25
|
entityFrom: string | undefined;
|
|
@@ -2,7 +2,7 @@ import { DynamicDialogConfig, DynamicDialogRef } from "primeng/dynamicdialog";
|
|
|
2
2
|
import { TabView } from "primeng/tabview";
|
|
3
3
|
import { JwtHelperService } from "@auth0/angular-jwt";
|
|
4
4
|
import { ConfirmationService, MessageService } from "primeng/api";
|
|
5
|
-
export declare const SharedUiTsiProviders: (typeof
|
|
5
|
+
export declare const SharedUiTsiProviders: (typeof DynamicDialogRef | typeof DynamicDialogConfig | typeof TabView | typeof JwtHelperService | typeof MessageService | typeof ConfirmationService | {
|
|
6
6
|
provide: import("@angular/core").InjectionToken<unknown>;
|
|
7
7
|
useValue: import("@angular/core").InjectionToken<unknown>;
|
|
8
8
|
})[];
|
package/lib/tsi-components/manage-reporting/add-report-popup/add-report-popup.component.d.ts
CHANGED
|
@@ -100,7 +100,7 @@ export declare class AddReportPopupComponent extends TsiFormComponentBaseCompone
|
|
|
100
100
|
changePasswordInvalid: () => string;
|
|
101
101
|
getEntityInformations: (businessClassName: string) => string;
|
|
102
102
|
getEntityInformationsAndRelations: (businessClass: string) => string;
|
|
103
|
-
GetAllEntitiesInformations: () => string;
|
|
103
|
+
GetAllEntitiesInformations: (onlyFrequent?: boolean) => string;
|
|
104
104
|
GetAllEntitiesInformationsMinimal: () => string;
|
|
105
105
|
getEntityInfoElementSource: () => string;
|
|
106
106
|
createOrUpdateEntityInformations: () => string;
|
|
@@ -89,7 +89,7 @@ export declare class TsiActionErpCreateOrEditComponent extends TsiFormComponentB
|
|
|
89
89
|
changePasswordInvalid: () => string;
|
|
90
90
|
getEntityInformations: (businessClassName: string) => string;
|
|
91
91
|
getEntityInformationsAndRelations: (businessClass: string) => string;
|
|
92
|
-
GetAllEntitiesInformations: () => string;
|
|
92
|
+
GetAllEntitiesInformations: (onlyFrequent?: boolean) => string;
|
|
93
93
|
GetAllEntitiesInformationsMinimal: () => string;
|
|
94
94
|
getEntityInfoElementSource: () => string;
|
|
95
95
|
createOrUpdateEntityInformations: () => string;
|
|
@@ -149,9 +149,13 @@ export declare class TsiActionErpCreateOrEditComponent extends TsiFormComponentB
|
|
|
149
149
|
};
|
|
150
150
|
businessClassNames: typeof BusinessClassNames;
|
|
151
151
|
actionPrecedenteCode: number | undefined;
|
|
152
|
+
entityListUrl: string;
|
|
152
153
|
constructor(_actionservice: ActionErpService, _natureActionservice: NatureActionService, _errorResponseManagerService: ErrorResponseManagerService, _notificationService: TsiNotificationService, _confirmationService: TsiConfirmationService, entityConfigurationService: EntityConfigurationService, _dialogService: DialogService, _identityManagerService: IdentityManagerService, _localize: LocalizePipe, config: DynamicDialogConfig, ref?: DynamicDialogRef<any> | undefined);
|
|
153
154
|
ngOnInit(): void;
|
|
154
155
|
actiondetailcolom: Array<GridColumn>;
|
|
156
|
+
toggleFrequent(): void;
|
|
157
|
+
onlyFrequent: boolean;
|
|
158
|
+
refreshEntityList(): void;
|
|
155
159
|
participantColumns: Array<GridColumn>;
|
|
156
160
|
getOccurenceListUrl(row: any): string;
|
|
157
161
|
getOccurenceUrl(row: any): string;
|
|
@@ -96,7 +96,7 @@ export declare class TsiUploadFicheComponent extends TsiFormComponentBaseCompone
|
|
|
96
96
|
changePasswordInvalid: () => string;
|
|
97
97
|
getEntityInformations: (businessClassName: string) => string;
|
|
98
98
|
getEntityInformationsAndRelations: (businessClass: string) => string;
|
|
99
|
-
GetAllEntitiesInformations: () => string;
|
|
99
|
+
GetAllEntitiesInformations: (onlyFrequent?: boolean) => string;
|
|
100
100
|
GetAllEntitiesInformationsMinimal: () => string;
|
|
101
101
|
getEntityInfoElementSource: () => string;
|
|
102
102
|
createOrUpdateEntityInformations: () => string;
|