@solcre-org/core-ui 2.15.26 → 2.15.28
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/fesm2022/solcre-org-core-ui.mjs +199 -136
- package/fesm2022/solcre-org-core-ui.mjs.map +1 -1
- package/index.d.ts +16 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -3829,7 +3829,19 @@ declare enum PermissionsResources {
|
|
|
3829
3829
|
MY_COMPANY_CONTRACTUAL_INFORMATION = "my_company_contractual_info",
|
|
3830
3830
|
MY_COMPANY_TELEWORK = "my_company_remote_work",
|
|
3831
3831
|
FILE_TEMPLATES = "file_templates",
|
|
3832
|
-
CONFIGURATION = "configuration"
|
|
3832
|
+
CONFIGURATION = "configuration",
|
|
3833
|
+
COMPANIES_CHANGE_STATUS = "companies_change_status",
|
|
3834
|
+
EMPLOYEES_BULK_UPLOAD = "employees_bulk_upload",
|
|
3835
|
+
EMPLOYEES_EXPORT = "employees_export",
|
|
3836
|
+
RESERVATIONS_EXPORT = "reservations_export",
|
|
3837
|
+
SERVICES_EXPORT = "services_export",
|
|
3838
|
+
ACCESS_CARD_ASSIGN = "access_card_assign",
|
|
3839
|
+
ACCESS_CARD_REJECT_REQUEST = "access_card_reject_request",
|
|
3840
|
+
ACCESS_CARD_MARK_DELIVERED = "access_card_mark_delivered",
|
|
3841
|
+
ACCESS_CARD_REQUEST_REASSIGNMENT = "access_card_request_reassignment",
|
|
3842
|
+
ACCESS_CARD_MARK_RETURNED = "access_card_mark_returned",
|
|
3843
|
+
SERVICE_BUDGET_APPROVE = "service_budget_approve",
|
|
3844
|
+
SERVICE_BUDGET_REJECT = "service_budget_reject"
|
|
3833
3845
|
}
|
|
3834
3846
|
|
|
3835
3847
|
declare enum SidebarState {
|
|
@@ -5532,6 +5544,9 @@ declare class TranslationMergeService {
|
|
|
5532
5544
|
}
|
|
5533
5545
|
|
|
5534
5546
|
declare class DateUtility {
|
|
5547
|
+
private static hasTz;
|
|
5548
|
+
private static pad2;
|
|
5549
|
+
private static formatByPattern;
|
|
5535
5550
|
static fromUTCtoUruguay(date: string | Date, outputFormat?: string): string;
|
|
5536
5551
|
static fromUTCtoUruguayWithInputFormat(date: string | Date, inputFormat?: string, outputFormat?: string): string;
|
|
5537
5552
|
static fromUTCtoUruguayDate(date: string | Date): Date | null;
|