ptechcore_ui 1.0.71 → 1.0.72
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.cjs +4600 -4197
- package/dist/index.d.cts +32 -3
- package/dist/index.d.ts +32 -3
- package/dist/index.js +4498 -4098
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import React$1, { ReactNode } from 'react';
|
|
1
|
+
import React$1, { ChangeEvent, ReactNode } from 'react';
|
|
2
2
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
3
3
|
import { LucideIcon } from 'lucide-react';
|
|
4
4
|
import { TReaderDocument } from '@usewaypoint/email-builder';
|
|
@@ -60,6 +60,23 @@ type FileInputProps = {
|
|
|
60
60
|
onChange: (e: React$1.ChangeEvent<HTMLInputElement>) => void;
|
|
61
61
|
};
|
|
62
62
|
declare const FileInput: React$1.FC<FileInputProps>;
|
|
63
|
+
type AmountInputProps = {
|
|
64
|
+
label?: string;
|
|
65
|
+
name: string;
|
|
66
|
+
value: string | number;
|
|
67
|
+
onChange: (e: ChangeEvent<HTMLInputElement>) => void;
|
|
68
|
+
onBlur?: (e: React$1.FocusEvent<HTMLInputElement>) => void;
|
|
69
|
+
lang?: 'fr' | 'en';
|
|
70
|
+
required?: boolean;
|
|
71
|
+
disabled?: boolean;
|
|
72
|
+
readOnly?: boolean;
|
|
73
|
+
error?: string;
|
|
74
|
+
placeholder?: string;
|
|
75
|
+
min?: number;
|
|
76
|
+
max?: number;
|
|
77
|
+
className?: string;
|
|
78
|
+
};
|
|
79
|
+
declare const AmountInput: React$1.FC<AmountInputProps>;
|
|
63
80
|
|
|
64
81
|
interface MenuItem {
|
|
65
82
|
id: string;
|
|
@@ -996,6 +1013,7 @@ declare const ApprovalPreviewAnswer: React$1.FC<{
|
|
|
996
1013
|
caseData: ApprovalCase | null;
|
|
997
1014
|
}>;
|
|
998
1015
|
|
|
1016
|
+
declare const ADDRESS_IP_URL: string;
|
|
999
1017
|
declare const API_URL: string;
|
|
1000
1018
|
declare class FetchApi {
|
|
1001
1019
|
static post<T>(url: string, payload?: any, token?: string): Promise<T>;
|
|
@@ -2338,6 +2356,7 @@ interface PurchaseRequest {
|
|
|
2338
2356
|
evaluated_at?: string | null;
|
|
2339
2357
|
assigned_buyer?: User | number | null;
|
|
2340
2358
|
budget_approval_requested_at?: string | null;
|
|
2359
|
+
requested_by_user?: string;
|
|
2341
2360
|
items: PurchaseRequestItem[];
|
|
2342
2361
|
rfq?: number | null;
|
|
2343
2362
|
}
|
|
@@ -2349,6 +2368,16 @@ declare const FormPurchaseRequest: React$1.FC<{
|
|
|
2349
2368
|
refresh: () => void;
|
|
2350
2369
|
}>;
|
|
2351
2370
|
|
|
2371
|
+
interface PrintablePurchaseRequestProps {
|
|
2372
|
+
data: PurchaseRequest;
|
|
2373
|
+
organizationName?: string;
|
|
2374
|
+
organizationAddress?: string;
|
|
2375
|
+
organizationPhone?: string;
|
|
2376
|
+
organizationEmail?: string;
|
|
2377
|
+
organizationCity?: string;
|
|
2378
|
+
}
|
|
2379
|
+
declare const PrintablePurchaseRequest: React$1.FC<PrintablePurchaseRequestProps>;
|
|
2380
|
+
|
|
2352
2381
|
interface SelectedProductLine {
|
|
2353
2382
|
productId: number;
|
|
2354
2383
|
reference: string;
|
|
@@ -2582,7 +2611,7 @@ declare const PurchaseRequestServices: {
|
|
|
2582
2611
|
getPurchaseRequest: (id: number, token: string) => Promise<unknown>;
|
|
2583
2612
|
getPurchaseRequests: (token: string) => Promise<unknown>;
|
|
2584
2613
|
updatePurchaseRequest: (id: number, data: Partial<PurchaseRequest>, token: string) => Promise<unknown>;
|
|
2585
|
-
deletePurchaseRequest: (id: number
|
|
2614
|
+
deletePurchaseRequest: (id: number) => Promise<unknown>;
|
|
2586
2615
|
};
|
|
2587
2616
|
|
|
2588
2617
|
declare const WorkSpaceRoutes: React.FC<{
|
|
@@ -3621,4 +3650,4 @@ declare function VariablePanel({ categories }: VariablePanelProps): react_jsx_ru
|
|
|
3621
3650
|
|
|
3622
3651
|
declare const DEFAULT_VARIABLE_CATEGORIES: VariableCategory[];
|
|
3623
3652
|
|
|
3624
|
-
export { ACCOUNT_TYPE_LABELS, API_URL, type Account, type AccountListResponse, AccountServices, type AccountType, AccountingWorkspace, AssetsDashboard as ActifsPage, AddSLAEvaluationModal, AddSLAIndicatorModal, type AddSupplierPricePayload, Alert, AlertProvider, AlertsManagementModal, type Answer, type ApiResponse, ApprovalAnswerModal, ApprovalAnswerPage, ApprovalPreviewAnswer, type ApprovalProcessModel, ApprovalServices, ApprovalWorkflow, AttachmentUploader, type AttachmentUploaderProps, AuthServices, BALANCE_TYPE_LABELS, type BackendFile, type BackendFolder, Badge, type BalanceType, Breadcrumb, BudgetPage, type BulkEvaluationItem, BulkSLAEvaluationModal, CHOICES, CONTRACT_NOTE_TYPE_OPTIONS, CONTRACT_STATUS_OPTIONS, CONTRACT_TYPE_OPTIONS, CURRENCY_OPTIONS, CardBody, CardHeader, type CatalogueProduct, type CatalogueProductListItem, type CatalogueProductListResponse, CatalogueProductSelector, CatalogueProductServices, type CatalogueSupplierPrice, type CatalogueSupplierPriceListResponse, CatalogueSupplierPriceServices, TeamChat as ChatEquipePage, type Client, type ClientListResponse, ClientServices, type ConfirmOptions, ContextMenu, type ContextMenuAction, type ContextMenuPosition, type Contract$1 as Contract, ContractForm, type ContractListResponse, ContractModal, type ContractNote, type ContractNoteType, ContractReportsModal, ContractServices, type ContractStatus, type ContractType, ContractsPage, CountrySelector, type CreateBulkEvaluationPayload, type CreateCatalogueProductPayload, type CreateContractNotePayload, type CreateContractPayload, type CreatePriceScheduleItemPayload, type CreateSLAEvaluationPayload, type CreateSLAIndicatorPayload, CrmWorkspace, DEFAULT_VARIABLE_CATEGORIES, DURATION_UNIT_OPTIONS, DataTable, DateInput, DocumentFooter, DocumentHeader, type DocumentType, type DurationUnit, EmailTemplateEditor, type EmailTemplateEditorProps, EntityFileManager, type EntityFileManagerProps, type EntityType, FDrawer, type FMServiceType, type FMSite, FM_SERVICE_LABELS, FM_SLA_TEMPLATES, FORM_TYPE_CHOICES, FROM_MODULE_CHOICES, FacilityWorkspace, FetchApi, FileCard, FileGrid, FileInput, type FileItem, FileList, FileManager, type FileManagerContextValue, type FileManagerProps, FileManagerProvider, type FileManagerTexts, FolderTree, ForeignCurrencySelector, FormClient, FormPurchaseRequest, FormServices, type FormType, FormVendor, type FromModule, HRConnectPage, type HomologationConfig, HomologationConfigServices, type HomologationRejectionPayload, type HomologationRequestPayload, type HomologationStatus, HtmlExportPanel, INCOTERM_OPTIONS, type Incoterm, InfoBox, InputField, InvoiceTypeSelector, LegalFormSelector, MEASUREMENT_FREQUENCY_OPTIONS, type MeasurementFrequency, MeetingHubPage, type MenuItem, MinimalVendorForm, Modal, ModernCard, type ModuleConfig, type ModuleType, NumberInput, OptionServices, PRINT_GREEN, Pages, PaymentMethodSelector, type PendingTask, TeamCalendar as PlanningPage, type PriceScheduleItem, type PriceScheduleItemListResponse, PriceScheduleServices, PrimaryButton, PrintPreview, type PrintPreviewProps, PrintableDocument, type PrintableDocumentProps, ProcessServices, type ProcessWorkflowStep, type ProcurementWorkspaceStats, type ProductDocument, ProductDocumentServices, type ProductNote, ProductNoteServices, type ProductSpecification, type ProductStatus, type ProductType, type PurchaseRequest, type PurchaseRequestItem, PurchaseRequestServices, type PurchaseRequestStatus, PurchaseRequestsPage, PurchaseWorkspace, QUESTION_TYPE_CHOICES, type Question, QuestionServices, type QuestionType, RISK_LEVEL_OPTIONS, type RecentActivity, RewiseBasicCard, RewiseCard, RewiseLayout, type RiskLevel, RootFileManager, type SLACategory, type SLADashboard, type SLAEvaluation, SLAEvaluationForm, type SLAEvaluationListResponse, SLAEvaluationServices, type SLAEvaluationSession, type SLAEvaluationSessionListResponse, SLAEvaluationSessionServices, type SLAIndicator, SLAIndicatorForm, type SLAIndicatorListResponse, SLAIndicatorServices, SLAManagementModal, type SLAStatus, type SLATemplate, SLA_CATEGORY_OPTIONS, SYSCOHADA_CLASSES, SearchableSelect, type SearchableSelectOption, SecondaryButton, SelectAccount, SelectClient, SelectCostCenter, SelectCountry, SelectDas, SelectDepartment, SelectInput, SelectLeadNeed, SelectLegalForm, SelectUnit, SelectUser, SelectVendor, type SelectedProductLine, SessionProvider, SignatureSection, StatCard, type Status, StatusBadge, type StatusBadgeProps, type Form as SurveyForm, type Option as SurveyOption, type SurveyResponse, TEMPLATE_FNE_CHOICES, type TEditorConfiguration, TYPE_STEP_CHOICES, type Tab, Tabs, type TabsProps, TaskPilot, TaxSelector, type TemplateFNE, TemplateFNESelector, TemplatePreview, type TemplateVariable, TextInput, type Theme, type ThemeColors, type ThemeContextValue, ThemeProvider, type ThemeType, ToastContainer, ToastProvider, Toolbar, TotalsSection, type TypeStep, type Unit, UnitServices, type UpdateCatalogueProductPayload, type UpdateContractPayload, type UrgencyLevel, type UseFileManagerApiReturn, type User$1 as User, UserServices, type VariableCategory, VariablePanel, type Vendor, type VendorListResponse, VendorServices, ViewContractContent, type ViewMode, WorkSpace, WorkSpaceRoutes, WorkflowStepServices, WorkspaceServices, defaultTheme, exportToHtml, fileManagerApi, findFolderById, formatCurrency, formatDate, formatDateFR, formatDateTime, formatFileSize, getAllFolders, getAllSLATemplates, getDefaultSLATemplates, getFileExtension, getFileIcon, getFileIconColor, getMimeTypeFromExtension, getRecommendedPenaltyCap, getSLATemplatesForServices, getThemeCSSVariables, isImageFile, numberToWords, themes, useAlert, useFileManager, useFileManagerApi, usePermissions, useRootFileManagerApi, useSession, useTheme, useToast };
|
|
3653
|
+
export { ACCOUNT_TYPE_LABELS, ADDRESS_IP_URL, API_URL, type Account, type AccountListResponse, AccountServices, type AccountType, AccountingWorkspace, AssetsDashboard as ActifsPage, AddSLAEvaluationModal, AddSLAIndicatorModal, type AddSupplierPricePayload, Alert, AlertProvider, AlertsManagementModal, AmountInput, type Answer, type ApiResponse, ApprovalAnswerModal, ApprovalAnswerPage, ApprovalPreviewAnswer, type ApprovalProcessModel, ApprovalServices, ApprovalWorkflow, AttachmentUploader, type AttachmentUploaderProps, AuthServices, BALANCE_TYPE_LABELS, type BackendFile, type BackendFolder, Badge, type BalanceType, Breadcrumb, BudgetPage, type BulkEvaluationItem, BulkSLAEvaluationModal, CHOICES, CONTRACT_NOTE_TYPE_OPTIONS, CONTRACT_STATUS_OPTIONS, CONTRACT_TYPE_OPTIONS, CURRENCY_OPTIONS, CardBody, CardHeader, type CatalogueProduct, type CatalogueProductListItem, type CatalogueProductListResponse, CatalogueProductSelector, CatalogueProductServices, type CatalogueSupplierPrice, type CatalogueSupplierPriceListResponse, CatalogueSupplierPriceServices, TeamChat as ChatEquipePage, type Client, type ClientListResponse, ClientServices, type ConfirmOptions, ContextMenu, type ContextMenuAction, type ContextMenuPosition, type Contract$1 as Contract, ContractForm, type ContractListResponse, ContractModal, type ContractNote, type ContractNoteType, ContractReportsModal, ContractServices, type ContractStatus, type ContractType, ContractsPage, CountrySelector, type CreateBulkEvaluationPayload, type CreateCatalogueProductPayload, type CreateContractNotePayload, type CreateContractPayload, type CreatePriceScheduleItemPayload, type CreateSLAEvaluationPayload, type CreateSLAIndicatorPayload, CrmWorkspace, DEFAULT_VARIABLE_CATEGORIES, DURATION_UNIT_OPTIONS, DataTable, DateInput, DocumentFooter, DocumentHeader, type DocumentType, type DurationUnit, EmailTemplateEditor, type EmailTemplateEditorProps, EntityFileManager, type EntityFileManagerProps, type EntityType, FDrawer, type FMServiceType, type FMSite, FM_SERVICE_LABELS, FM_SLA_TEMPLATES, FORM_TYPE_CHOICES, FROM_MODULE_CHOICES, FacilityWorkspace, FetchApi, FileCard, FileGrid, FileInput, type FileItem, FileList, FileManager, type FileManagerContextValue, type FileManagerProps, FileManagerProvider, type FileManagerTexts, FolderTree, ForeignCurrencySelector, FormClient, FormPurchaseRequest, FormServices, type FormType, FormVendor, type FromModule, HRConnectPage, type HomologationConfig, HomologationConfigServices, type HomologationRejectionPayload, type HomologationRequestPayload, type HomologationStatus, HtmlExportPanel, INCOTERM_OPTIONS, type Incoterm, InfoBox, InputField, InvoiceTypeSelector, LegalFormSelector, MEASUREMENT_FREQUENCY_OPTIONS, type MeasurementFrequency, MeetingHubPage, type MenuItem, MinimalVendorForm, Modal, ModernCard, type ModuleConfig, type ModuleType, NumberInput, OptionServices, PRINT_GREEN, Pages, PaymentMethodSelector, type PendingTask, TeamCalendar as PlanningPage, type PriceScheduleItem, type PriceScheduleItemListResponse, PriceScheduleServices, PrimaryButton, PrintPreview, type PrintPreviewProps, PrintableDocument, type PrintableDocumentProps, PrintablePurchaseRequest, ProcessServices, type ProcessWorkflowStep, type ProcurementWorkspaceStats, type ProductDocument, ProductDocumentServices, type ProductNote, ProductNoteServices, type ProductSpecification, type ProductStatus, type ProductType, type PurchaseRequest, type PurchaseRequestItem, PurchaseRequestServices, type PurchaseRequestStatus, PurchaseRequestsPage, PurchaseWorkspace, QUESTION_TYPE_CHOICES, type Question, QuestionServices, type QuestionType, RISK_LEVEL_OPTIONS, type RecentActivity, RewiseBasicCard, RewiseCard, RewiseLayout, type RiskLevel, RootFileManager, type SLACategory, type SLADashboard, type SLAEvaluation, SLAEvaluationForm, type SLAEvaluationListResponse, SLAEvaluationServices, type SLAEvaluationSession, type SLAEvaluationSessionListResponse, SLAEvaluationSessionServices, type SLAIndicator, SLAIndicatorForm, type SLAIndicatorListResponse, SLAIndicatorServices, SLAManagementModal, type SLAStatus, type SLATemplate, SLA_CATEGORY_OPTIONS, SYSCOHADA_CLASSES, SearchableSelect, type SearchableSelectOption, SecondaryButton, SelectAccount, SelectClient, SelectCostCenter, SelectCountry, SelectDas, SelectDepartment, SelectInput, SelectLeadNeed, SelectLegalForm, SelectUnit, SelectUser, SelectVendor, type SelectedProductLine, SessionProvider, SignatureSection, StatCard, type Status, StatusBadge, type StatusBadgeProps, type Form as SurveyForm, type Option as SurveyOption, type SurveyResponse, TEMPLATE_FNE_CHOICES, type TEditorConfiguration, TYPE_STEP_CHOICES, type Tab, Tabs, type TabsProps, TaskPilot, TaxSelector, type TemplateFNE, TemplateFNESelector, TemplatePreview, type TemplateVariable, TextInput, type Theme, type ThemeColors, type ThemeContextValue, ThemeProvider, type ThemeType, ToastContainer, ToastProvider, Toolbar, TotalsSection, type TypeStep, type Unit, UnitServices, type UpdateCatalogueProductPayload, type UpdateContractPayload, type UrgencyLevel, type UseFileManagerApiReturn, type User$1 as User, UserServices, type VariableCategory, VariablePanel, type Vendor, type VendorListResponse, VendorServices, ViewContractContent, type ViewMode, WorkSpace, WorkSpaceRoutes, WorkflowStepServices, WorkspaceServices, defaultTheme, exportToHtml, fileManagerApi, findFolderById, formatCurrency, formatDate, formatDateFR, formatDateTime, formatFileSize, getAllFolders, getAllSLATemplates, getDefaultSLATemplates, getFileExtension, getFileIcon, getFileIconColor, getMimeTypeFromExtension, getRecommendedPenaltyCap, getSLATemplatesForServices, getThemeCSSVariables, isImageFile, numberToWords, themes, useAlert, useFileManager, useFileManagerApi, usePermissions, useRootFileManagerApi, useSession, useTheme, useToast };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import React$1, { ReactNode } from 'react';
|
|
1
|
+
import React$1, { ChangeEvent, ReactNode } from 'react';
|
|
2
2
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
3
3
|
import { LucideIcon } from 'lucide-react';
|
|
4
4
|
import { TReaderDocument } from '@usewaypoint/email-builder';
|
|
@@ -60,6 +60,23 @@ type FileInputProps = {
|
|
|
60
60
|
onChange: (e: React$1.ChangeEvent<HTMLInputElement>) => void;
|
|
61
61
|
};
|
|
62
62
|
declare const FileInput: React$1.FC<FileInputProps>;
|
|
63
|
+
type AmountInputProps = {
|
|
64
|
+
label?: string;
|
|
65
|
+
name: string;
|
|
66
|
+
value: string | number;
|
|
67
|
+
onChange: (e: ChangeEvent<HTMLInputElement>) => void;
|
|
68
|
+
onBlur?: (e: React$1.FocusEvent<HTMLInputElement>) => void;
|
|
69
|
+
lang?: 'fr' | 'en';
|
|
70
|
+
required?: boolean;
|
|
71
|
+
disabled?: boolean;
|
|
72
|
+
readOnly?: boolean;
|
|
73
|
+
error?: string;
|
|
74
|
+
placeholder?: string;
|
|
75
|
+
min?: number;
|
|
76
|
+
max?: number;
|
|
77
|
+
className?: string;
|
|
78
|
+
};
|
|
79
|
+
declare const AmountInput: React$1.FC<AmountInputProps>;
|
|
63
80
|
|
|
64
81
|
interface MenuItem {
|
|
65
82
|
id: string;
|
|
@@ -996,6 +1013,7 @@ declare const ApprovalPreviewAnswer: React$1.FC<{
|
|
|
996
1013
|
caseData: ApprovalCase | null;
|
|
997
1014
|
}>;
|
|
998
1015
|
|
|
1016
|
+
declare const ADDRESS_IP_URL: string;
|
|
999
1017
|
declare const API_URL: string;
|
|
1000
1018
|
declare class FetchApi {
|
|
1001
1019
|
static post<T>(url: string, payload?: any, token?: string): Promise<T>;
|
|
@@ -2338,6 +2356,7 @@ interface PurchaseRequest {
|
|
|
2338
2356
|
evaluated_at?: string | null;
|
|
2339
2357
|
assigned_buyer?: User | number | null;
|
|
2340
2358
|
budget_approval_requested_at?: string | null;
|
|
2359
|
+
requested_by_user?: string;
|
|
2341
2360
|
items: PurchaseRequestItem[];
|
|
2342
2361
|
rfq?: number | null;
|
|
2343
2362
|
}
|
|
@@ -2349,6 +2368,16 @@ declare const FormPurchaseRequest: React$1.FC<{
|
|
|
2349
2368
|
refresh: () => void;
|
|
2350
2369
|
}>;
|
|
2351
2370
|
|
|
2371
|
+
interface PrintablePurchaseRequestProps {
|
|
2372
|
+
data: PurchaseRequest;
|
|
2373
|
+
organizationName?: string;
|
|
2374
|
+
organizationAddress?: string;
|
|
2375
|
+
organizationPhone?: string;
|
|
2376
|
+
organizationEmail?: string;
|
|
2377
|
+
organizationCity?: string;
|
|
2378
|
+
}
|
|
2379
|
+
declare const PrintablePurchaseRequest: React$1.FC<PrintablePurchaseRequestProps>;
|
|
2380
|
+
|
|
2352
2381
|
interface SelectedProductLine {
|
|
2353
2382
|
productId: number;
|
|
2354
2383
|
reference: string;
|
|
@@ -2582,7 +2611,7 @@ declare const PurchaseRequestServices: {
|
|
|
2582
2611
|
getPurchaseRequest: (id: number, token: string) => Promise<unknown>;
|
|
2583
2612
|
getPurchaseRequests: (token: string) => Promise<unknown>;
|
|
2584
2613
|
updatePurchaseRequest: (id: number, data: Partial<PurchaseRequest>, token: string) => Promise<unknown>;
|
|
2585
|
-
deletePurchaseRequest: (id: number
|
|
2614
|
+
deletePurchaseRequest: (id: number) => Promise<unknown>;
|
|
2586
2615
|
};
|
|
2587
2616
|
|
|
2588
2617
|
declare const WorkSpaceRoutes: React.FC<{
|
|
@@ -3621,4 +3650,4 @@ declare function VariablePanel({ categories }: VariablePanelProps): react_jsx_ru
|
|
|
3621
3650
|
|
|
3622
3651
|
declare const DEFAULT_VARIABLE_CATEGORIES: VariableCategory[];
|
|
3623
3652
|
|
|
3624
|
-
export { ACCOUNT_TYPE_LABELS, API_URL, type Account, type AccountListResponse, AccountServices, type AccountType, AccountingWorkspace, AssetsDashboard as ActifsPage, AddSLAEvaluationModal, AddSLAIndicatorModal, type AddSupplierPricePayload, Alert, AlertProvider, AlertsManagementModal, type Answer, type ApiResponse, ApprovalAnswerModal, ApprovalAnswerPage, ApprovalPreviewAnswer, type ApprovalProcessModel, ApprovalServices, ApprovalWorkflow, AttachmentUploader, type AttachmentUploaderProps, AuthServices, BALANCE_TYPE_LABELS, type BackendFile, type BackendFolder, Badge, type BalanceType, Breadcrumb, BudgetPage, type BulkEvaluationItem, BulkSLAEvaluationModal, CHOICES, CONTRACT_NOTE_TYPE_OPTIONS, CONTRACT_STATUS_OPTIONS, CONTRACT_TYPE_OPTIONS, CURRENCY_OPTIONS, CardBody, CardHeader, type CatalogueProduct, type CatalogueProductListItem, type CatalogueProductListResponse, CatalogueProductSelector, CatalogueProductServices, type CatalogueSupplierPrice, type CatalogueSupplierPriceListResponse, CatalogueSupplierPriceServices, TeamChat as ChatEquipePage, type Client, type ClientListResponse, ClientServices, type ConfirmOptions, ContextMenu, type ContextMenuAction, type ContextMenuPosition, type Contract$1 as Contract, ContractForm, type ContractListResponse, ContractModal, type ContractNote, type ContractNoteType, ContractReportsModal, ContractServices, type ContractStatus, type ContractType, ContractsPage, CountrySelector, type CreateBulkEvaluationPayload, type CreateCatalogueProductPayload, type CreateContractNotePayload, type CreateContractPayload, type CreatePriceScheduleItemPayload, type CreateSLAEvaluationPayload, type CreateSLAIndicatorPayload, CrmWorkspace, DEFAULT_VARIABLE_CATEGORIES, DURATION_UNIT_OPTIONS, DataTable, DateInput, DocumentFooter, DocumentHeader, type DocumentType, type DurationUnit, EmailTemplateEditor, type EmailTemplateEditorProps, EntityFileManager, type EntityFileManagerProps, type EntityType, FDrawer, type FMServiceType, type FMSite, FM_SERVICE_LABELS, FM_SLA_TEMPLATES, FORM_TYPE_CHOICES, FROM_MODULE_CHOICES, FacilityWorkspace, FetchApi, FileCard, FileGrid, FileInput, type FileItem, FileList, FileManager, type FileManagerContextValue, type FileManagerProps, FileManagerProvider, type FileManagerTexts, FolderTree, ForeignCurrencySelector, FormClient, FormPurchaseRequest, FormServices, type FormType, FormVendor, type FromModule, HRConnectPage, type HomologationConfig, HomologationConfigServices, type HomologationRejectionPayload, type HomologationRequestPayload, type HomologationStatus, HtmlExportPanel, INCOTERM_OPTIONS, type Incoterm, InfoBox, InputField, InvoiceTypeSelector, LegalFormSelector, MEASUREMENT_FREQUENCY_OPTIONS, type MeasurementFrequency, MeetingHubPage, type MenuItem, MinimalVendorForm, Modal, ModernCard, type ModuleConfig, type ModuleType, NumberInput, OptionServices, PRINT_GREEN, Pages, PaymentMethodSelector, type PendingTask, TeamCalendar as PlanningPage, type PriceScheduleItem, type PriceScheduleItemListResponse, PriceScheduleServices, PrimaryButton, PrintPreview, type PrintPreviewProps, PrintableDocument, type PrintableDocumentProps, ProcessServices, type ProcessWorkflowStep, type ProcurementWorkspaceStats, type ProductDocument, ProductDocumentServices, type ProductNote, ProductNoteServices, type ProductSpecification, type ProductStatus, type ProductType, type PurchaseRequest, type PurchaseRequestItem, PurchaseRequestServices, type PurchaseRequestStatus, PurchaseRequestsPage, PurchaseWorkspace, QUESTION_TYPE_CHOICES, type Question, QuestionServices, type QuestionType, RISK_LEVEL_OPTIONS, type RecentActivity, RewiseBasicCard, RewiseCard, RewiseLayout, type RiskLevel, RootFileManager, type SLACategory, type SLADashboard, type SLAEvaluation, SLAEvaluationForm, type SLAEvaluationListResponse, SLAEvaluationServices, type SLAEvaluationSession, type SLAEvaluationSessionListResponse, SLAEvaluationSessionServices, type SLAIndicator, SLAIndicatorForm, type SLAIndicatorListResponse, SLAIndicatorServices, SLAManagementModal, type SLAStatus, type SLATemplate, SLA_CATEGORY_OPTIONS, SYSCOHADA_CLASSES, SearchableSelect, type SearchableSelectOption, SecondaryButton, SelectAccount, SelectClient, SelectCostCenter, SelectCountry, SelectDas, SelectDepartment, SelectInput, SelectLeadNeed, SelectLegalForm, SelectUnit, SelectUser, SelectVendor, type SelectedProductLine, SessionProvider, SignatureSection, StatCard, type Status, StatusBadge, type StatusBadgeProps, type Form as SurveyForm, type Option as SurveyOption, type SurveyResponse, TEMPLATE_FNE_CHOICES, type TEditorConfiguration, TYPE_STEP_CHOICES, type Tab, Tabs, type TabsProps, TaskPilot, TaxSelector, type TemplateFNE, TemplateFNESelector, TemplatePreview, type TemplateVariable, TextInput, type Theme, type ThemeColors, type ThemeContextValue, ThemeProvider, type ThemeType, ToastContainer, ToastProvider, Toolbar, TotalsSection, type TypeStep, type Unit, UnitServices, type UpdateCatalogueProductPayload, type UpdateContractPayload, type UrgencyLevel, type UseFileManagerApiReturn, type User$1 as User, UserServices, type VariableCategory, VariablePanel, type Vendor, type VendorListResponse, VendorServices, ViewContractContent, type ViewMode, WorkSpace, WorkSpaceRoutes, WorkflowStepServices, WorkspaceServices, defaultTheme, exportToHtml, fileManagerApi, findFolderById, formatCurrency, formatDate, formatDateFR, formatDateTime, formatFileSize, getAllFolders, getAllSLATemplates, getDefaultSLATemplates, getFileExtension, getFileIcon, getFileIconColor, getMimeTypeFromExtension, getRecommendedPenaltyCap, getSLATemplatesForServices, getThemeCSSVariables, isImageFile, numberToWords, themes, useAlert, useFileManager, useFileManagerApi, usePermissions, useRootFileManagerApi, useSession, useTheme, useToast };
|
|
3653
|
+
export { ACCOUNT_TYPE_LABELS, ADDRESS_IP_URL, API_URL, type Account, type AccountListResponse, AccountServices, type AccountType, AccountingWorkspace, AssetsDashboard as ActifsPage, AddSLAEvaluationModal, AddSLAIndicatorModal, type AddSupplierPricePayload, Alert, AlertProvider, AlertsManagementModal, AmountInput, type Answer, type ApiResponse, ApprovalAnswerModal, ApprovalAnswerPage, ApprovalPreviewAnswer, type ApprovalProcessModel, ApprovalServices, ApprovalWorkflow, AttachmentUploader, type AttachmentUploaderProps, AuthServices, BALANCE_TYPE_LABELS, type BackendFile, type BackendFolder, Badge, type BalanceType, Breadcrumb, BudgetPage, type BulkEvaluationItem, BulkSLAEvaluationModal, CHOICES, CONTRACT_NOTE_TYPE_OPTIONS, CONTRACT_STATUS_OPTIONS, CONTRACT_TYPE_OPTIONS, CURRENCY_OPTIONS, CardBody, CardHeader, type CatalogueProduct, type CatalogueProductListItem, type CatalogueProductListResponse, CatalogueProductSelector, CatalogueProductServices, type CatalogueSupplierPrice, type CatalogueSupplierPriceListResponse, CatalogueSupplierPriceServices, TeamChat as ChatEquipePage, type Client, type ClientListResponse, ClientServices, type ConfirmOptions, ContextMenu, type ContextMenuAction, type ContextMenuPosition, type Contract$1 as Contract, ContractForm, type ContractListResponse, ContractModal, type ContractNote, type ContractNoteType, ContractReportsModal, ContractServices, type ContractStatus, type ContractType, ContractsPage, CountrySelector, type CreateBulkEvaluationPayload, type CreateCatalogueProductPayload, type CreateContractNotePayload, type CreateContractPayload, type CreatePriceScheduleItemPayload, type CreateSLAEvaluationPayload, type CreateSLAIndicatorPayload, CrmWorkspace, DEFAULT_VARIABLE_CATEGORIES, DURATION_UNIT_OPTIONS, DataTable, DateInput, DocumentFooter, DocumentHeader, type DocumentType, type DurationUnit, EmailTemplateEditor, type EmailTemplateEditorProps, EntityFileManager, type EntityFileManagerProps, type EntityType, FDrawer, type FMServiceType, type FMSite, FM_SERVICE_LABELS, FM_SLA_TEMPLATES, FORM_TYPE_CHOICES, FROM_MODULE_CHOICES, FacilityWorkspace, FetchApi, FileCard, FileGrid, FileInput, type FileItem, FileList, FileManager, type FileManagerContextValue, type FileManagerProps, FileManagerProvider, type FileManagerTexts, FolderTree, ForeignCurrencySelector, FormClient, FormPurchaseRequest, FormServices, type FormType, FormVendor, type FromModule, HRConnectPage, type HomologationConfig, HomologationConfigServices, type HomologationRejectionPayload, type HomologationRequestPayload, type HomologationStatus, HtmlExportPanel, INCOTERM_OPTIONS, type Incoterm, InfoBox, InputField, InvoiceTypeSelector, LegalFormSelector, MEASUREMENT_FREQUENCY_OPTIONS, type MeasurementFrequency, MeetingHubPage, type MenuItem, MinimalVendorForm, Modal, ModernCard, type ModuleConfig, type ModuleType, NumberInput, OptionServices, PRINT_GREEN, Pages, PaymentMethodSelector, type PendingTask, TeamCalendar as PlanningPage, type PriceScheduleItem, type PriceScheduleItemListResponse, PriceScheduleServices, PrimaryButton, PrintPreview, type PrintPreviewProps, PrintableDocument, type PrintableDocumentProps, PrintablePurchaseRequest, ProcessServices, type ProcessWorkflowStep, type ProcurementWorkspaceStats, type ProductDocument, ProductDocumentServices, type ProductNote, ProductNoteServices, type ProductSpecification, type ProductStatus, type ProductType, type PurchaseRequest, type PurchaseRequestItem, PurchaseRequestServices, type PurchaseRequestStatus, PurchaseRequestsPage, PurchaseWorkspace, QUESTION_TYPE_CHOICES, type Question, QuestionServices, type QuestionType, RISK_LEVEL_OPTIONS, type RecentActivity, RewiseBasicCard, RewiseCard, RewiseLayout, type RiskLevel, RootFileManager, type SLACategory, type SLADashboard, type SLAEvaluation, SLAEvaluationForm, type SLAEvaluationListResponse, SLAEvaluationServices, type SLAEvaluationSession, type SLAEvaluationSessionListResponse, SLAEvaluationSessionServices, type SLAIndicator, SLAIndicatorForm, type SLAIndicatorListResponse, SLAIndicatorServices, SLAManagementModal, type SLAStatus, type SLATemplate, SLA_CATEGORY_OPTIONS, SYSCOHADA_CLASSES, SearchableSelect, type SearchableSelectOption, SecondaryButton, SelectAccount, SelectClient, SelectCostCenter, SelectCountry, SelectDas, SelectDepartment, SelectInput, SelectLeadNeed, SelectLegalForm, SelectUnit, SelectUser, SelectVendor, type SelectedProductLine, SessionProvider, SignatureSection, StatCard, type Status, StatusBadge, type StatusBadgeProps, type Form as SurveyForm, type Option as SurveyOption, type SurveyResponse, TEMPLATE_FNE_CHOICES, type TEditorConfiguration, TYPE_STEP_CHOICES, type Tab, Tabs, type TabsProps, TaskPilot, TaxSelector, type TemplateFNE, TemplateFNESelector, TemplatePreview, type TemplateVariable, TextInput, type Theme, type ThemeColors, type ThemeContextValue, ThemeProvider, type ThemeType, ToastContainer, ToastProvider, Toolbar, TotalsSection, type TypeStep, type Unit, UnitServices, type UpdateCatalogueProductPayload, type UpdateContractPayload, type UrgencyLevel, type UseFileManagerApiReturn, type User$1 as User, UserServices, type VariableCategory, VariablePanel, type Vendor, type VendorListResponse, VendorServices, ViewContractContent, type ViewMode, WorkSpace, WorkSpaceRoutes, WorkflowStepServices, WorkspaceServices, defaultTheme, exportToHtml, fileManagerApi, findFolderById, formatCurrency, formatDate, formatDateFR, formatDateTime, formatFileSize, getAllFolders, getAllSLATemplates, getDefaultSLATemplates, getFileExtension, getFileIcon, getFileIconColor, getMimeTypeFromExtension, getRecommendedPenaltyCap, getSLATemplatesForServices, getThemeCSSVariables, isImageFile, numberToWords, themes, useAlert, useFileManager, useFileManagerApi, usePermissions, useRootFileManagerApi, useSession, useTheme, useToast };
|