@inceptionbg/main 2.0.152 → 2.0.154
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/dist/index.d.ts +21 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/types/global.d.ts +664 -664
- package/package.json +48 -48
package/dist/index.d.ts
CHANGED
|
@@ -1383,6 +1383,16 @@ declare const UserOrgProvider: ({ children }: IProps) => react_jsx_runtime.JSX.E
|
|
|
1383
1383
|
declare const useUserAndOrg: () => IUserOrgContext;
|
|
1384
1384
|
declare const useModules: () => IModuleIdsObj;
|
|
1385
1385
|
|
|
1386
|
+
interface IBusinessYearContext {
|
|
1387
|
+
businessYear: string;
|
|
1388
|
+
setBusinessYear: Dispatch<SetStateAction<string>>;
|
|
1389
|
+
}
|
|
1390
|
+
declare const BusinessYearProvider: ({ children }: {
|
|
1391
|
+
children: ReactNode;
|
|
1392
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
1393
|
+
declare const useBusinessYearContext: () => IBusinessYearContext;
|
|
1394
|
+
declare const setBusinessYearContext: (year: string) => void;
|
|
1395
|
+
|
|
1386
1396
|
interface Props$a {
|
|
1387
1397
|
routes: IRoute[];
|
|
1388
1398
|
sidebarItems: ISidebarItem[][];
|
|
@@ -1675,6 +1685,9 @@ declare const i18nMainLatin: {
|
|
|
1675
1685
|
Month10: string;
|
|
1676
1686
|
Month11: string;
|
|
1677
1687
|
Month12: string;
|
|
1688
|
+
BusinessYearChooser: string;
|
|
1689
|
+
Successfully: string;
|
|
1690
|
+
Year: string;
|
|
1678
1691
|
HomePage: string;
|
|
1679
1692
|
};
|
|
1680
1693
|
declare const i18nMainCyrilic: {
|
|
@@ -1881,10 +1894,17 @@ declare const i18nMainCyrilic: {
|
|
|
1881
1894
|
Month10: string;
|
|
1882
1895
|
Month11: string;
|
|
1883
1896
|
Month12: string;
|
|
1897
|
+
BusinessYearChooser: string;
|
|
1898
|
+
Successfully: string;
|
|
1899
|
+
Year: string;
|
|
1884
1900
|
HomePage: string;
|
|
1885
1901
|
};
|
|
1886
1902
|
|
|
1887
1903
|
declare const SubSystems: readonly ["ADMIN", "EARCHIVE", "EDELIVERY", "EDMS", "EFORMS", "EINVOICE", "EPROCUREMENT", "ERDS", "EREGISTER", "ERP", "ERP_SMALL_INVENTORY", "ERP_WMS", "ERP_MAT_ACC", "FINANCES", "CONTRACTS", "ESIGN", "EVALIDATION", "IDM", "REGISTRATION", "QC_REGISTRATION", "ERP_CASH_REGISTER", "ERP_RIF", "SETTINGS", "JISUSZ_BACKOFFICE"];
|
|
1888
1904
|
type ISubsystem = (typeof SubSystems)[number];
|
|
1889
1905
|
|
|
1890
|
-
|
|
1906
|
+
declare const BusinessYearChooser: FC;
|
|
1907
|
+
|
|
1908
|
+
declare const BusinessYearPage: FC;
|
|
1909
|
+
|
|
1910
|
+
export { AppWrapper, ApprovalStatus, AxiosTokenHandler, BusinessYearChooser, BusinessYearPage, BusinessYearProvider, Constraints, DeleteItemDialog, DeleteItemsDialog, DocumentApprovalFetchOption, DocumentFetchOption, DocumentFileFetchOptions, DocumentIndicies, DocumentSendFetchOption, DocumentStatuses, ErrorContext, Header, IApproval, IApprovalSearch, IApprovalStep, IApprovalStepSearch, IBankAccount, IBankAccountSearch, ICondition, IConditionIndexData, IConstraint, IContactPerson, ICountry, IDocument, IDocumentAny, IDocumentApproval, IDocumentApprovalStep, IDocumentApprovalVote, IDocumentFile, IDocumentFileParams, IDocumentIndex, IDocumentSearch, IDocumentSend, IDocumentSendSearch, IDocumentType, IEnv, IFile, IFileSignData, IFileType, IFileUpload, IInvoice, IInvoiceItem, ILatestApprovalProcess, IModule, IModuleId, IMunicipality, INote, INoteSearch, IOrganization, IOrganizationFetchOption, IOrganizationSearch, IOrganizationSettings, IPartner, IPartnerGroup, IPartnerType, IPartnersSearch, IPhaseGroup, IPhaseGroupSearch, IPlace, IRole, IRolePrivilege, IRoute, IServiceApi, ISidebarItem, ISubsystem, IToken, IUploadDocumentType, IUseMutationData, IUser, IUserSettings, IVoteSearch, IndexDataSearch, LoginPage, MainPageWrapper, ModuleIds, NoAccessInfo, NoMatchPage, OrganizationStatus, OrganizationStatuses, PartnerGroupType, ReactQueryProvider, RolePrivilegeGroup, RolesWithPrivileges, Router, SelectOrgPage, Sidebar, SubSystems, UserFetchOption, UserOrgContext, UserOrgProvider, decodeToken, envVars, getUser, i18nMainCyrilic, i18nMainLatin, login, logout, modules, setBusinessYearContext, useBusinessYearContext, useModules, useUserAndOrg };
|