forlogic-core 1.20.0 → 2.0.0
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/.note/memory/patterns/alias-url-resolution.md +5 -2
- package/.note/memory/patterns/single-scroll-pattern.md +30 -12
- package/dist/action-plans/components/ActionPlanAttachmentsTab.d.ts +18 -0
- package/dist/action-plans/components/ActionPlanCommentsTab.d.ts +18 -0
- package/dist/action-plans/components/ActionPlanCostTab.d.ts +10 -0
- package/dist/action-plans/components/ActionPlanGeneralTab.d.ts +18 -0
- package/dist/action-plans/components/ActionPlanHistoryTab.d.ts +13 -0
- package/dist/action-plans/components/ActionPlanPage.d.ts +25 -0
- package/dist/action-plans/components/ActionPlanPredecessorsTab.d.ts +10 -0
- package/dist/action-plans/components/ActionPlanProgressDialog.d.ts +13 -0
- package/dist/action-plans/components/ActionPlanProgressTab.d.ts +5 -0
- package/dist/action-plans/components/ActionPlanStatusBadge.d.ts +11 -0
- package/dist/action-plans/constants.d.ts +42 -0
- package/dist/action-plans/hooks/useActionPlan.d.ts +14 -0
- package/dist/action-plans/hooks/useActionPlanProgress.d.ts +15 -0
- package/dist/action-plans/index.d.ts +15 -0
- package/dist/action-plans/types.d.ts +353 -0
- package/dist/action-plans/utils/formatTime.d.ts +15 -0
- package/dist/approval-flow/components/ApprovalSidenav.d.ts +16 -0
- package/dist/approval-flow/components/ApproveDialog.d.ts +13 -0
- package/dist/approval-flow/components/SelectApproverDialog.d.ts +11 -0
- package/dist/approval-flow/index.d.ts +4 -0
- package/dist/approval-flow/types.d.ts +76 -0
- package/dist/assets/index.d.ts +1 -0
- package/dist/audit-trail/components/AuditTrailDetails.d.ts +17 -0
- package/dist/audit-trail/components/AuditTrailFilter.d.ts +19 -0
- package/dist/audit-trail/components/AuditTrailPage.d.ts +30 -0
- package/dist/audit-trail/index.d.ts +9 -0
- package/dist/audit-trail/types.d.ts +151 -0
- package/dist/audit-trail/utils.d.ts +38 -0
- package/dist/components/dashboards/dashboard-form.d.ts +50 -0
- package/dist/components/dashboards/dashboard-general-view.d.ts +109 -0
- package/dist/components/dashboards/dashboard-grid.d.ts +41 -0
- package/dist/components/dashboards/dashboard-list.d.ts +31 -0
- package/dist/components/dashboards/dashboard-panel-renderer.d.ts +21 -0
- package/dist/components/dashboards/dashboard-view.d.ts +38 -0
- package/dist/components/dashboards/helpers.d.ts +47 -0
- package/dist/components/dashboards/index.d.ts +9 -0
- package/dist/components/dashboards/panels/burndown-panel.d.ts +26 -0
- package/dist/components/dashboards/panels/cartesian-panel.d.ts +46 -0
- package/dist/components/dashboards/panels/index.d.ts +14 -0
- package/dist/components/dashboards/panels/list-panel.d.ts +30 -0
- package/dist/components/dashboards/panels/matrix-risk-panel.d.ts +49 -0
- package/dist/components/dashboards/panels/numeric-panel.d.ts +22 -0
- package/dist/components/dashboards/panels/panel-error.d.ts +8 -0
- package/dist/components/dashboards/panels/panel-header.d.ts +17 -0
- package/dist/components/dashboards/panels/panel-loader.d.ts +7 -0
- package/dist/components/dashboards/panels/panel-no-data.d.ts +6 -0
- package/dist/components/dashboards/panels/panel-unavailable.d.ts +6 -0
- package/dist/components/dashboards/panels/pareto-panel.d.ts +20 -0
- package/dist/components/dashboards/panels/performance-panel.d.ts +24 -0
- package/dist/components/dashboards/panels/pie-panel.d.ts +19 -0
- package/dist/components/dashboards/panels/text-panel.d.ts +18 -0
- package/dist/components/dashboards/types.d.ts +525 -0
- package/dist/components/ui/electronic-signature-dialog.d.ts +21 -0
- package/dist/components/ui/export-dialog.d.ts +28 -0
- package/dist/components/ui/iframe-dialog.d.ts +14 -0
- package/dist/components/ui/multiselect-permissions.d.ts +59 -0
- package/dist/components/ui/online-editor-dialog.d.ts +18 -0
- package/dist/components/ui/report-request-list.d.ts +44 -0
- package/dist/components/ui/stimulsoft-viewer.d.ts +20 -0
- package/dist/components/ui/terms-of-use-dialog.d.ts +56 -0
- package/dist/components/ui/timepicker.d.ts +11 -0
- package/dist/components/ui/users-groups-selector.d.ts +44 -0
- package/dist/components/ui/viewer-dialog.d.ts +77 -0
- package/dist/custom-form-fields/components/CustomFormFields.d.ts +8 -0
- package/dist/custom-form-fields/fields/FormDateField.d.ts +6 -0
- package/dist/custom-form-fields/fields/FormMultiSelectionField.d.ts +6 -0
- package/dist/custom-form-fields/fields/FormNumericField.d.ts +6 -0
- package/dist/custom-form-fields/fields/FormQuestionsField.d.ts +6 -0
- package/dist/custom-form-fields/fields/FormSingleSelectionField.d.ts +6 -0
- package/dist/custom-form-fields/fields/FormTextField.d.ts +6 -0
- package/dist/custom-form-fields/fields/FormTimeField.d.ts +6 -0
- package/dist/custom-form-fields/fields/FormUrlField.d.ts +6 -0
- package/dist/custom-form-fields/fields/ReadOnlyTextField.d.ts +6 -0
- package/dist/custom-form-fields/index.d.ts +13 -0
- package/dist/custom-form-fields/types.d.ts +143 -0
- package/dist/exports/action-plans.d.ts +16 -0
- package/dist/exports/audit-trail.d.ts +1 -0
- package/dist/exports/custom-form-fields.d.ts +1 -0
- package/dist/exports/file-upload.d.ts +1 -0
- package/dist/exports/ui.d.ts +12 -0
- package/dist/file-upload/components/SingleFileUpload.d.ts +43 -0
- package/dist/file-upload/index.d.ts +6 -0
- package/dist/file-upload/types.d.ts +11 -0
- package/dist/file-upload/utils/formatBytes.d.ts +1 -0
- package/dist/file-upload/utils/getFileExtension.d.ts +1 -0
- package/dist/hooks/useSidebarResize.d.ts +1 -1
- package/dist/index.css +1 -1
- package/dist/index.css.map +1 -1
- package/dist/index.d.ts +6 -0
- package/dist/index.esm.js +1 -1
- package/dist/index.js +1 -1
- package/dist/team-selector/components/TeamSelector.d.ts +24 -0
- package/dist/team-selector/index.d.ts +2 -0
- package/dist/team-selector/types.d.ts +10 -0
- package/docs/ICON_MIGRATION_GUIDE.md +177 -0
- package/package.json +1 -1
- package/dist/assets/AccordionDoc-BVPUJk8G.js +0 -31
- package/dist/assets/ActionButtonDoc-DLJ_K9ib.js +0 -47
- package/dist/assets/AlertDoc-CY1ybZeG.js +0 -37
- package/dist/assets/AppHeaderDoc-Crkw4dA9.js +0 -67
- package/dist/assets/AppSidebarDoc-ET-4j6wV.js +0 -204
- package/dist/assets/AuthDoc-B4v4Nci5.js +0 -192
- package/dist/assets/AvatarDoc-BLdMoyJd.js +0 -11
- package/dist/assets/BadgeDoc-CSNM1b6b.js +0 -36
- package/dist/assets/BaseFormDoc-DXiYuN6-.js +0 -169
- package/dist/assets/BodyContentDoc-Bp6YmUWX.js +0 -83
- package/dist/assets/BreadcrumbDoc-D7tqqTvo.js +0 -75
- package/dist/assets/ButtonDoc-C4JwIvU3.js +0 -41
- package/dist/assets/ButtonGroupDoc-QFfjC7Pm.js +0 -7
- package/dist/assets/CalendarDoc-COlEKqmv.js +0 -81
- package/dist/assets/CardDoc-BVhMoC2w.js +0 -49
- package/dist/assets/ChartDoc-BJ14EjI2.js +0 -111
- package/dist/assets/CheckboxDoc-Bcqpln9_.js +0 -55
- package/dist/assets/ColorPickerDoc-CcfmSwyC.js +0 -10
- package/dist/assets/ColorsFoundationDoc-uO6IiJbS.js +0 -13
- package/dist/assets/ComboTreeDoc-R4qE6XwB.js +0 -46
- package/dist/assets/ComboboxDoc-JIo_-gSN.js +0 -134
- package/dist/assets/ComponentDocTemplate-CRbRY-v5.js +0 -1
- package/dist/assets/ContextMenuDoc-C4-_0NLp.js +0 -182
- package/dist/assets/ContextsDoc-Cj9Aaoyo.js +0 -184
- package/dist/assets/CreateCrudPageDoc-D_SnMRJ2.js +0 -106
- package/dist/assets/CrudActionBarDoc-BYqtIabp.js +0 -112
- package/dist/assets/CrudGridDoc-DspxQrq5.js +0 -85
- package/dist/assets/CrudOverviewDoc-DLcOL_HZ.js +0 -14
- package/dist/assets/CrudPrimitivesDoc-BRS86nWg.js +0 -164
- package/dist/assets/CrudTableDoc-Daw8u2G_.js +0 -113
- package/dist/assets/DataListDoc-BrgVNhhR.js +0 -13
- package/dist/assets/DesignSystemHome-BFBNqq1J.js +0 -1
- package/dist/assets/DialogDoc-DCpRy4rg.js +0 -981
- package/dist/assets/DropdownMenuDoc-DT6LBa8Z.js +0 -175
- package/dist/assets/EmptyStateDoc-wydc09gG.js +0 -35
- package/dist/assets/EnvironmentsDoc-amIriwDD.js +0 -96
- package/dist/assets/ErrorBoundaryDoc-BEixy_Gl.js +0 -111
- package/dist/assets/FormDoc-DxoRt6p7.js +0 -81
- package/dist/assets/FoundationOverview-CxSbumIt.js +0 -1
- package/dist/assets/GridDoc-BpQqCMUE.js +0 -28
- package/dist/assets/HooksDoc-JNODhbaF.js +0 -665
- package/dist/assets/HoverCardDoc-CdqiYrIb.js +0 -31
- package/dist/assets/I18nDoc-B6LMXnE3.js +0 -232
- package/dist/assets/IconPickerDoc-BRdy58IC.js +0 -10
- package/dist/assets/IconsFoundationDoc-CrymfxTI.js +0 -33
- package/dist/assets/InputDoc-BK-SdpJ7.js +0 -211
- package/dist/assets/LabelDoc-DHvgzhaJ.js +0 -42
- package/dist/assets/LeadershipDoc-DRiB0spL.js +0 -416
- package/dist/assets/MediaDoc-B_vqnf72.js +0 -459
- package/dist/assets/MenubarDoc-Zvgczxe2.js +0 -165
- package/dist/assets/ModuleAccessDoc-Nuxb4S27.js +0 -153
- package/dist/assets/ModulesDialogDoc-iJWLkOZo.js +0 -46
- package/dist/assets/NavigationMenuDoc-CeWun1VF.js +0 -116
- package/dist/assets/OnboardingDialogDoc-xBL-rXeZ.js +0 -55
- package/dist/assets/PaginationDoc-CfvwxCMe.js +0 -98
- package/dist/assets/PaginationDoc-DqtRgXnF.js +0 -27
- package/dist/assets/PlacesDoc-nckioEzg.js +0 -226
- package/dist/assets/PopoverDoc-C3o2CZCT.js +0 -64
- package/dist/assets/ProgressDoc-BmWBNMPA.js +0 -29
- package/dist/assets/QualiexUserFieldDoc-CE1e4mx6.js +0 -149
- package/dist/assets/RadioGroupDoc-DMZH6NmR.js +0 -57
- package/dist/assets/RadiusDoc-BOZD3gPV.js +0 -7
- package/dist/assets/RequiredFieldsCounterDoc-CG-lmSSy.js +0 -58
- package/dist/assets/ResizableDoc-CqGkv6Cd.js +0 -104
- package/dist/assets/RichTextEditorDoc-m50ll-Od.js +0 -24
- package/dist/assets/ScrollAreaDoc-BzJ-APXo.js +0 -28
- package/dist/assets/SecurityDoc-B34gVeiV.js +0 -204
- package/dist/assets/SelectDoc-DXRv7QHK.js +0 -80
- package/dist/assets/SeparatorDoc-DcNh8k0P.js +0 -4
- package/dist/assets/ServicesDoc-8aXBd6yg.js +0 -308
- package/dist/assets/ShadowsDoc-Brl4hIDI.js +0 -9
- package/dist/assets/SignDoc-BdwerR-2.js +0 -66
- package/dist/assets/SkeletonDoc-BWgqgbDY.js +0 -54
- package/dist/assets/SliderDoc-E-NjbYVk.js +0 -41
- package/dist/assets/SpacingDoc-BzburM-r.js +0 -12
- package/dist/assets/SplitButtonDoc-BYUysmJp.js +0 -53
- package/dist/assets/StepSelectorDoc-PB1k4v7F.js +0 -41
- package/dist/assets/SwitchDoc-BLOG6kfj.js +0 -56
- package/dist/assets/TableDoc-Dwcs-lop.js +0 -128
- package/dist/assets/TabsDoc-Ovkh8ArV.js +0 -42
- package/dist/assets/TextareaDoc-DsBYxmbr.js +0 -46
- package/dist/assets/ToastDoc-BbZaFE_A.js +0 -157
- package/dist/assets/ToggleDoc-C28vbvhp.js +0 -51
- package/dist/assets/TooltipDoc-DL5cnLak.js +0 -58
- package/dist/assets/TruncatedCellDoc-BuDA8QcY.js +0 -12
- package/dist/assets/TypographyFoundationDoc-CPdH4PHa.js +0 -7
- package/dist/assets/UtilitiesDoc-CrQhyEfz.js +0 -145
- package/dist/assets/blocks-DO93nPjs.js +0 -1
- package/dist/assets/calendar-days-cMfwBSZx.js +0 -1
- package/dist/assets/circle-plus-D3NftMzS.js +0 -1
- package/dist/assets/circle-x-BVAVJ_oz.js +0 -1
- package/dist/assets/crown-B2MTZDnM.js +0 -1
- package/dist/assets/date-picker-zhJU-_kM.js +0 -1
- package/dist/assets/disabled-menu-item-C16xsaVs.js +0 -1
- package/dist/assets/drawer-oTqCOtsC.js +0 -3
- package/dist/assets/file-pen-line-CXv-Eye-.js +0 -1
- package/dist/assets/git-branch-V6-h6P9K.js +0 -1
- package/dist/assets/globe-CaUBIJU8.js +0 -1
- package/dist/assets/hash-B4MTXppl.js +0 -1
- package/dist/assets/hover-card-DEuucfxP.js +0 -1
- package/dist/assets/index-CE0k7Rdh.js +0 -312
- package/dist/assets/index-Cx3adT_u.css +0 -1
- package/dist/assets/life-buoy-BRndExxh.js +0 -1
- package/dist/assets/lucide-react-t7dCa4lv.js +0 -1
- package/dist/assets/monitor-Dg3HKTSE.js +0 -1
- package/dist/assets/package-3G45ARQh.js +0 -1
- package/dist/assets/pen-BYSSwjK4.js +0 -1
- package/dist/assets/pin-CMYagNhs.js +0 -1
- package/dist/assets/radio-group-BVun_Tmt.js +0 -1
- package/dist/assets/server-p0Sb0mKI.js +0 -1
- package/dist/assets/share-2-D-ZhCCq2.js +0 -1
- package/dist/assets/shield-x-Q7hAXWsG.js +0 -1
- package/dist/assets/step-selector-DHxgT2FL.js +0 -1
- package/dist/assets/text-align-start-6aYQqbX4.js +0 -1
- package/dist/assets/trash-DveAOiLF.js +0 -1
- package/dist/assets/useMockCrud-GY0KxHXr.js +0 -1
- package/dist/assets/user-check-CoGNBfIk.js +0 -1
- package/dist/assets/user-plus-Bad2xWIT.js +0 -1
- package/dist/index.html +0 -35
- package/dist/leadership/components/LeaderRow.d.ts +0 -9
|
@@ -0,0 +1,525 @@
|
|
|
1
|
+
export declare enum AggregationType {
|
|
2
|
+
Count = "valuecount",
|
|
3
|
+
Sum = "sum",
|
|
4
|
+
Average = "average",
|
|
5
|
+
DistinctCount = "valuecount_distict",
|
|
6
|
+
Max = "max",
|
|
7
|
+
Min = "min"
|
|
8
|
+
}
|
|
9
|
+
export declare enum AnalysisFunctionality {
|
|
10
|
+
ViewAllAnalysis = "nes3j6wn"
|
|
11
|
+
}
|
|
12
|
+
export declare enum DashboardFunctionality {
|
|
13
|
+
RegisterDashboards = "EeKs7CYA",
|
|
14
|
+
RemoveDashboards = "3GKZYOQ9",
|
|
15
|
+
ViewAllDashboards = "wYBdQNvZ",
|
|
16
|
+
EditDashboards = "bMFcbwv4"
|
|
17
|
+
}
|
|
18
|
+
export declare enum DashboardListType {
|
|
19
|
+
Default = 1,
|
|
20
|
+
Compact = 2
|
|
21
|
+
}
|
|
22
|
+
export declare enum DashboardPageTime {
|
|
23
|
+
FiveSeconds = 1,
|
|
24
|
+
TenSeconds = 2,
|
|
25
|
+
FifteenSeconds = 3,
|
|
26
|
+
ThirtySeconds = 4,
|
|
27
|
+
OneMinute = 5,
|
|
28
|
+
ThreeMinutes = 6,
|
|
29
|
+
FiveMinutes = 7,
|
|
30
|
+
TenMinutes = 8
|
|
31
|
+
}
|
|
32
|
+
export declare enum DashboardPanelDimension {
|
|
33
|
+
Day = 1,
|
|
34
|
+
Month = 2,
|
|
35
|
+
Year = 3
|
|
36
|
+
}
|
|
37
|
+
export declare enum DashboardPanelOrderByType {
|
|
38
|
+
Ascending = 1,
|
|
39
|
+
Descending = 2
|
|
40
|
+
}
|
|
41
|
+
export declare enum DashboardPanelOrderBy {
|
|
42
|
+
Label = 1,
|
|
43
|
+
Value = 2
|
|
44
|
+
}
|
|
45
|
+
export declare enum DashboardPanelPeriod {
|
|
46
|
+
LastSevenDays = 1,
|
|
47
|
+
LastWeek = 2,
|
|
48
|
+
LastMonth = 3,
|
|
49
|
+
PreviousQuarter = 4,
|
|
50
|
+
PreviousSemester = 5,
|
|
51
|
+
LastYear = 6,
|
|
52
|
+
SpecificPeriod = 7,
|
|
53
|
+
CurrentMonth = 8,
|
|
54
|
+
CurrentSemester = 9,
|
|
55
|
+
CurrentWeek = 10,
|
|
56
|
+
CurrentYear = 11
|
|
57
|
+
}
|
|
58
|
+
export declare enum DashboardPanelType {
|
|
59
|
+
Text = 1,
|
|
60
|
+
Area = 2,
|
|
61
|
+
Bar = 3,
|
|
62
|
+
Column = 4,
|
|
63
|
+
StackedColumn = 5,
|
|
64
|
+
Line = 6,
|
|
65
|
+
List = 7,
|
|
66
|
+
Numeric = 8,
|
|
67
|
+
Pareto = 9,
|
|
68
|
+
Pie = 10,
|
|
69
|
+
RiskMatrix = 11,
|
|
70
|
+
Burndown = 12,
|
|
71
|
+
PerformanceColumns = 13,
|
|
72
|
+
EvolutionLine = 14
|
|
73
|
+
}
|
|
74
|
+
export declare enum DashboardUpdateTime {
|
|
75
|
+
NotUpdate = 1,
|
|
76
|
+
FiveMinutes = 2,
|
|
77
|
+
TenMinutes = 3,
|
|
78
|
+
FifteenMinutes = 4,
|
|
79
|
+
ThirtyMinutes = 5,
|
|
80
|
+
OneHour = 6
|
|
81
|
+
}
|
|
82
|
+
export declare enum DashboardViewType {
|
|
83
|
+
NormalPage = 1,
|
|
84
|
+
Carousel = 2
|
|
85
|
+
}
|
|
86
|
+
export declare enum DashboardFormTab {
|
|
87
|
+
General = 0,
|
|
88
|
+
Share = 1
|
|
89
|
+
}
|
|
90
|
+
export declare enum DashboardShareType {
|
|
91
|
+
NotShared = 1,
|
|
92
|
+
SharedWithAllCollaborators = 2,
|
|
93
|
+
SharedWithUsersGroupsPlacesCollaborators = 3
|
|
94
|
+
}
|
|
95
|
+
export declare enum DashboardLanguage {
|
|
96
|
+
PtBr = "pt-br",
|
|
97
|
+
EnUs = "en",
|
|
98
|
+
EsEs = "es"
|
|
99
|
+
}
|
|
100
|
+
export declare enum MatrixViewType {
|
|
101
|
+
Quantity = 0,
|
|
102
|
+
AllRisksList = 1
|
|
103
|
+
}
|
|
104
|
+
export declare enum PanelItemsPerPanel {
|
|
105
|
+
Five = 5,
|
|
106
|
+
Ten = 10,
|
|
107
|
+
Fifteen = 15,
|
|
108
|
+
Twenty = 20,
|
|
109
|
+
All = 0,
|
|
110
|
+
Custom = -1
|
|
111
|
+
}
|
|
112
|
+
export declare enum PanelSortType {
|
|
113
|
+
AlphabeticalAsc = 1,
|
|
114
|
+
AlphabeticalDesc = 2,
|
|
115
|
+
CountAsc = 3,
|
|
116
|
+
CountDesc = 4,
|
|
117
|
+
DateAsc = 5,
|
|
118
|
+
DateDesc = 6
|
|
119
|
+
}
|
|
120
|
+
export declare enum PanelState {
|
|
121
|
+
Loading = 0,
|
|
122
|
+
Loaded = 1,
|
|
123
|
+
Error = 3,
|
|
124
|
+
NoData = 4,
|
|
125
|
+
Unavailable = 5
|
|
126
|
+
}
|
|
127
|
+
export declare enum VisualizationType {
|
|
128
|
+
Quantity = 1,
|
|
129
|
+
Percentage = 2,
|
|
130
|
+
QuantityPercentage = 3
|
|
131
|
+
}
|
|
132
|
+
export declare enum PlanType {
|
|
133
|
+
Program = 1,
|
|
134
|
+
Project = 2,
|
|
135
|
+
Action = 3,
|
|
136
|
+
PerformanceProject = 4,
|
|
137
|
+
PerformanceAction = 5
|
|
138
|
+
}
|
|
139
|
+
export declare enum QueriesContextType {
|
|
140
|
+
OccurrenceActionPlans = "xebGnSSq",
|
|
141
|
+
OccurrenceGeneral = "UFws4AvH",
|
|
142
|
+
PlansActionPlans = "Kux6CcVC",
|
|
143
|
+
PlansProgramProjects = "UWjrp6Dw",
|
|
144
|
+
PlansIdeas = "3g7vNm2w",
|
|
145
|
+
RisksGeneral = "PZ4b6FhP",
|
|
146
|
+
RisksActionPlans = "xZErDg57",
|
|
147
|
+
RisksAnalysis = "UxsioMbH",
|
|
148
|
+
RisksIncidences = "gNt5IJ2F",
|
|
149
|
+
MetrologyGeneral = "4MfEPbRY",
|
|
150
|
+
MetrologyActivities = "hdFM9XQW",
|
|
151
|
+
MetrologyServiceOrders = "cIrVPdMv",
|
|
152
|
+
DecisionsGeneral = "CopsnHDB",
|
|
153
|
+
DecisionsItems = "qLFAayjx",
|
|
154
|
+
DecisionsActionPlans = "RiQFpxdb",
|
|
155
|
+
FlowGeneral = "AFV98JoG",
|
|
156
|
+
AuditGeneral = "gON8LJPi",
|
|
157
|
+
AuditPlans = "SsCNVOvr",
|
|
158
|
+
AuditPlansItems = "OpPkCCFm",
|
|
159
|
+
AuditActionPlans = "P1oGePhh",
|
|
160
|
+
CommonGeneral = "VVfEzgMQ",
|
|
161
|
+
ActionPlans = "C6Z4MgGa",
|
|
162
|
+
SuppliersEvaluations = "fSCeS4mH",
|
|
163
|
+
SuppliersGeneral = "8qPThkrD",
|
|
164
|
+
SuppliersEvaluationsCriteria = "RiSIStdY",
|
|
165
|
+
SuppliersDocuments = "Riua4jMa",
|
|
166
|
+
SuppliersMaterialsServices = "UpEkatXH",
|
|
167
|
+
DocumentsGeneral = "FRhhEX2J",
|
|
168
|
+
DocumentsPhysicalCopies = "PZLtJ23h",
|
|
169
|
+
DocumentsObsolete = "XDjbga14",
|
|
170
|
+
FmeaGeneral = "aPwf4uPr",
|
|
171
|
+
FmeaActionPlans = "vQ8PMrVX"
|
|
172
|
+
}
|
|
173
|
+
export declare enum QueriesShareType {
|
|
174
|
+
NotShared = 1,
|
|
175
|
+
SharedWithAllCollaborators = 2,
|
|
176
|
+
SharedWithUsersGroupsPlacesCollaborators = 3
|
|
177
|
+
}
|
|
178
|
+
export declare enum QuickFilterDashboard {
|
|
179
|
+
All = 1,
|
|
180
|
+
OnlyMine = 2,
|
|
181
|
+
Favorites = 3
|
|
182
|
+
}
|
|
183
|
+
export declare enum RiskCriticality {
|
|
184
|
+
Current = 1,
|
|
185
|
+
Inherent = 2
|
|
186
|
+
}
|
|
187
|
+
export declare enum PaletteType {
|
|
188
|
+
Default = 1,
|
|
189
|
+
Pastel = 2,
|
|
190
|
+
Vibrant = 3,
|
|
191
|
+
Earth = 4,
|
|
192
|
+
Ocean = 5,
|
|
193
|
+
Floral = 6,
|
|
194
|
+
Night = 7,
|
|
195
|
+
Winter = 8,
|
|
196
|
+
Spring = 9,
|
|
197
|
+
Summer = 10,
|
|
198
|
+
Fall = 11,
|
|
199
|
+
Gray = 12,
|
|
200
|
+
Brown = 13,
|
|
201
|
+
Blue = 14,
|
|
202
|
+
Yellow = 15,
|
|
203
|
+
Green = 16,
|
|
204
|
+
Purple = 17,
|
|
205
|
+
Orange = 18,
|
|
206
|
+
Pink = 19,
|
|
207
|
+
Red = 20
|
|
208
|
+
}
|
|
209
|
+
export interface PanelResult {
|
|
210
|
+
key: unknown;
|
|
211
|
+
keyAsString?: string;
|
|
212
|
+
value?: number;
|
|
213
|
+
items?: PanelResult[];
|
|
214
|
+
visible?: boolean;
|
|
215
|
+
isConcatCustomField?: boolean;
|
|
216
|
+
/** Client-only fields */
|
|
217
|
+
originalKey?: string;
|
|
218
|
+
originalValue?: number;
|
|
219
|
+
totalColumn?: number;
|
|
220
|
+
text?: string;
|
|
221
|
+
isOthers?: boolean;
|
|
222
|
+
primaryGroup?: string;
|
|
223
|
+
keyDate?: unknown;
|
|
224
|
+
riskName?: string;
|
|
225
|
+
analysisDate?: unknown;
|
|
226
|
+
}
|
|
227
|
+
export interface Dashboard {
|
|
228
|
+
id: string;
|
|
229
|
+
code: string;
|
|
230
|
+
title: string;
|
|
231
|
+
titlePtBr: string;
|
|
232
|
+
titleEnUs: string;
|
|
233
|
+
titleEsEs: string;
|
|
234
|
+
responsibleId: string;
|
|
235
|
+
responsibleName: string;
|
|
236
|
+
creationDate: Date | string;
|
|
237
|
+
lastModified: Date | string;
|
|
238
|
+
isActive: boolean;
|
|
239
|
+
isStandard?: boolean;
|
|
240
|
+
isFavorite: boolean;
|
|
241
|
+
isGeneralViewUse: boolean;
|
|
242
|
+
isShared?: boolean;
|
|
243
|
+
hasSharedIcon?: boolean;
|
|
244
|
+
isSystemChart: boolean;
|
|
245
|
+
idShare?: DashboardShareType;
|
|
246
|
+
idUpdateTime?: DashboardUpdateTime;
|
|
247
|
+
idViewType?: DashboardViewType;
|
|
248
|
+
idPageTime?: DashboardPageTime | null;
|
|
249
|
+
pageNumber?: number | null;
|
|
250
|
+
/** Client-only */
|
|
251
|
+
groups?: string[];
|
|
252
|
+
places?: string[];
|
|
253
|
+
collaborators?: string[];
|
|
254
|
+
isFavoriteText?: string;
|
|
255
|
+
}
|
|
256
|
+
export interface DashboardPanel {
|
|
257
|
+
id: string;
|
|
258
|
+
title: string;
|
|
259
|
+
titlePtBr: string;
|
|
260
|
+
titleEnUs: string;
|
|
261
|
+
titleEsEs: string;
|
|
262
|
+
typeId: DashboardPanelType;
|
|
263
|
+
queryId: string;
|
|
264
|
+
queryContextId: string;
|
|
265
|
+
queryTitle: string;
|
|
266
|
+
querySelectedColumns: string;
|
|
267
|
+
field?: string;
|
|
268
|
+
fieldType?: string;
|
|
269
|
+
fieldAuxAxis?: string;
|
|
270
|
+
fieldAuxAxisType?: string;
|
|
271
|
+
sizeY: number;
|
|
272
|
+
sizeX: number;
|
|
273
|
+
col: number;
|
|
274
|
+
row: number;
|
|
275
|
+
aggregationType: AggregationType;
|
|
276
|
+
textTypeString: string;
|
|
277
|
+
referenceDate?: string;
|
|
278
|
+
period?: DashboardPanelPeriod;
|
|
279
|
+
initialDate?: Date | string;
|
|
280
|
+
finalDate?: Date | string;
|
|
281
|
+
dimension?: DashboardPanelDimension;
|
|
282
|
+
yAxis?: string;
|
|
283
|
+
yAxisType?: string;
|
|
284
|
+
orderBy?: DashboardPanelOrderBy;
|
|
285
|
+
orderByType?: DashboardPanelOrderByType;
|
|
286
|
+
fieldAnalysisRule?: string;
|
|
287
|
+
fieldCriticality?: number;
|
|
288
|
+
riskAnalysisRuleId?: string;
|
|
289
|
+
analysisCriteriaId?: string;
|
|
290
|
+
analysisCriteriaParameter?: string;
|
|
291
|
+
evolutionSecondaryGrouping?: string;
|
|
292
|
+
fieldPlansType?: number;
|
|
293
|
+
fieldPlansSelected?: string;
|
|
294
|
+
fieldPlansBurndown?: number;
|
|
295
|
+
fieldPlansBurndownGroup?: string;
|
|
296
|
+
secondaryGrouping?: string;
|
|
297
|
+
secondaryGroupingType?: string;
|
|
298
|
+
onlyLate?: boolean;
|
|
299
|
+
jsonRules?: string;
|
|
300
|
+
ignoreRules?: boolean;
|
|
301
|
+
page?: number;
|
|
302
|
+
visualizationType?: VisualizationType;
|
|
303
|
+
sortType?: PanelSortType;
|
|
304
|
+
itemsPerPanel?: PanelItemsPerPanel;
|
|
305
|
+
secondaryItemsPerPanel?: PanelItemsPerPanel;
|
|
306
|
+
matrixViewRule?: number;
|
|
307
|
+
listPanelColumns?: string;
|
|
308
|
+
listPanelListType?: DashboardListType;
|
|
309
|
+
paletteId: PaletteType;
|
|
310
|
+
hexColors: string[];
|
|
311
|
+
showNotInformedData?: boolean;
|
|
312
|
+
/** Client-only */
|
|
313
|
+
isNew?: boolean;
|
|
314
|
+
hasRemovedColumn?: boolean;
|
|
315
|
+
}
|
|
316
|
+
export interface DashboardPage {
|
|
317
|
+
id: string;
|
|
318
|
+
position: number;
|
|
319
|
+
name?: string;
|
|
320
|
+
/** Client-only */
|
|
321
|
+
iconCss?: boolean;
|
|
322
|
+
iconDuplicate?: boolean;
|
|
323
|
+
}
|
|
324
|
+
export interface DashboardLimit {
|
|
325
|
+
maxDashboards: number;
|
|
326
|
+
countDashboards: number;
|
|
327
|
+
}
|
|
328
|
+
export interface GeneralViewDashboard {
|
|
329
|
+
id: string;
|
|
330
|
+
dashboardId: string;
|
|
331
|
+
titlePtBr: string;
|
|
332
|
+
titleEnUs: string;
|
|
333
|
+
titleEsEs: string;
|
|
334
|
+
currentTitle?: string;
|
|
335
|
+
idViewType: number;
|
|
336
|
+
softwareId: number;
|
|
337
|
+
}
|
|
338
|
+
export interface DefaultDashboardId {
|
|
339
|
+
id: string;
|
|
340
|
+
titlePtBr?: string;
|
|
341
|
+
titleEnUs?: string;
|
|
342
|
+
titleEsEs?: string;
|
|
343
|
+
currentTitle?: string;
|
|
344
|
+
}
|
|
345
|
+
export interface SharedDashboard {
|
|
346
|
+
id: string;
|
|
347
|
+
code: string;
|
|
348
|
+
titlePtBr?: string;
|
|
349
|
+
titleEnUs?: string;
|
|
350
|
+
titleEsEs?: string;
|
|
351
|
+
currentTitle?: string;
|
|
352
|
+
isActive: boolean;
|
|
353
|
+
}
|
|
354
|
+
export interface SelectedColumn {
|
|
355
|
+
columnName: string;
|
|
356
|
+
columnType: string;
|
|
357
|
+
columnFormat: unknown;
|
|
358
|
+
columnLabel: string;
|
|
359
|
+
isCustomColumn: boolean;
|
|
360
|
+
showAllForms?: boolean;
|
|
361
|
+
/** Client-only */
|
|
362
|
+
visible?: boolean;
|
|
363
|
+
header?: string;
|
|
364
|
+
width?: string;
|
|
365
|
+
}
|
|
366
|
+
export interface Column {
|
|
367
|
+
field?: string;
|
|
368
|
+
label?: string;
|
|
369
|
+
type?: string;
|
|
370
|
+
defaultField?: boolean;
|
|
371
|
+
category?: string;
|
|
372
|
+
allowFilter?: boolean;
|
|
373
|
+
selected?: boolean;
|
|
374
|
+
operators?: unknown;
|
|
375
|
+
format?: string;
|
|
376
|
+
isCustom?: boolean;
|
|
377
|
+
step?: unknown;
|
|
378
|
+
columns?: Column[];
|
|
379
|
+
options?: ColumnOption[];
|
|
380
|
+
optionsText?: ColumnTextOption[];
|
|
381
|
+
isFieldActive?: boolean;
|
|
382
|
+
allowSorting?: boolean;
|
|
383
|
+
/** Client-only */
|
|
384
|
+
index?: number;
|
|
385
|
+
checked?: boolean;
|
|
386
|
+
}
|
|
387
|
+
export interface ColumnOption {
|
|
388
|
+
value?: number;
|
|
389
|
+
text?: string;
|
|
390
|
+
}
|
|
391
|
+
export interface ColumnTextOption {
|
|
392
|
+
value?: string;
|
|
393
|
+
text?: string;
|
|
394
|
+
}
|
|
395
|
+
export interface QueryItem {
|
|
396
|
+
id: string;
|
|
397
|
+
idResponsible: string;
|
|
398
|
+
nameResponsible: string;
|
|
399
|
+
code: string;
|
|
400
|
+
titlePtBr: string;
|
|
401
|
+
titleEnUs: string;
|
|
402
|
+
titleEsEs: string;
|
|
403
|
+
creationDate: Date | string;
|
|
404
|
+
lastModified: Date | string;
|
|
405
|
+
idSoftware: number;
|
|
406
|
+
idContext: string;
|
|
407
|
+
nameContext: string;
|
|
408
|
+
isActive: boolean;
|
|
409
|
+
isShared: boolean;
|
|
410
|
+
hasSharedIcon: boolean;
|
|
411
|
+
isFavorite: boolean;
|
|
412
|
+
hasFavoriteIcon: boolean;
|
|
413
|
+
softwareName: string;
|
|
414
|
+
isActiveText: string;
|
|
415
|
+
creationDateText: string;
|
|
416
|
+
lastModifiedText: string;
|
|
417
|
+
idShare: QueriesShareType;
|
|
418
|
+
jsonSettings: unknown;
|
|
419
|
+
/** Client-only */
|
|
420
|
+
groups?: string[];
|
|
421
|
+
places?: string[];
|
|
422
|
+
collaborators?: string[];
|
|
423
|
+
isFavoriteText?: string;
|
|
424
|
+
title?: string;
|
|
425
|
+
}
|
|
426
|
+
export interface PlaceAnalysis {
|
|
427
|
+
id: string;
|
|
428
|
+
name: string;
|
|
429
|
+
parentId: string;
|
|
430
|
+
/** Client-only */
|
|
431
|
+
children?: PlaceAnalysis[];
|
|
432
|
+
iconCss?: string;
|
|
433
|
+
}
|
|
434
|
+
export interface ShareDashboardGroupsData {
|
|
435
|
+
id: string;
|
|
436
|
+
dashboardId: string;
|
|
437
|
+
usersGroupId: string;
|
|
438
|
+
}
|
|
439
|
+
export interface ShareDashboardPlacesData {
|
|
440
|
+
id: string;
|
|
441
|
+
dashboardId: string;
|
|
442
|
+
placeId: string;
|
|
443
|
+
}
|
|
444
|
+
export interface ShareDashboardUsersData {
|
|
445
|
+
id: string;
|
|
446
|
+
dashboardId: string;
|
|
447
|
+
userId: string;
|
|
448
|
+
}
|
|
449
|
+
export interface Palette {
|
|
450
|
+
id: PaletteType;
|
|
451
|
+
hexColors: string[];
|
|
452
|
+
name: string;
|
|
453
|
+
}
|
|
454
|
+
export interface RiskAnalysisParameter {
|
|
455
|
+
position: number;
|
|
456
|
+
name: string;
|
|
457
|
+
}
|
|
458
|
+
export interface PanelConfig {
|
|
459
|
+
id: string;
|
|
460
|
+
title: string;
|
|
461
|
+
typeId: DashboardPanelType;
|
|
462
|
+
queryId: string;
|
|
463
|
+
queryContextId: string;
|
|
464
|
+
queryTitle: string;
|
|
465
|
+
querySelectedColumns: string;
|
|
466
|
+
field: string;
|
|
467
|
+
fieldType: string;
|
|
468
|
+
fieldAuxAxis?: string;
|
|
469
|
+
fieldAuxAxisType?: string;
|
|
470
|
+
fieldAnalysisRule?: string;
|
|
471
|
+
fieldCriticality?: number;
|
|
472
|
+
fieldPlansType?: number;
|
|
473
|
+
fieldPlansSelected?: string;
|
|
474
|
+
fieldPlansBurndown?: number;
|
|
475
|
+
fieldPlansBurndownGroup?: string;
|
|
476
|
+
interval?: string;
|
|
477
|
+
aggregationType?: AggregationType;
|
|
478
|
+
openQueryEnabled?: boolean;
|
|
479
|
+
noData?: boolean;
|
|
480
|
+
textTypeString?: string;
|
|
481
|
+
referenceDate?: string;
|
|
482
|
+
period?: DashboardPanelPeriod;
|
|
483
|
+
initialDate?: Date | string;
|
|
484
|
+
finalDate?: Date | string;
|
|
485
|
+
dimension?: DashboardPanelDimension;
|
|
486
|
+
yAxis?: string;
|
|
487
|
+
yAxisType?: string;
|
|
488
|
+
orderBy?: DashboardPanelOrderBy;
|
|
489
|
+
orderByType?: DashboardPanelOrderByType;
|
|
490
|
+
onlyMine?: boolean;
|
|
491
|
+
onlyLate?: boolean;
|
|
492
|
+
secondaryGrouping?: string;
|
|
493
|
+
secondaryGroupingType?: string;
|
|
494
|
+
jsonRules?: string;
|
|
495
|
+
ignoreRules?: boolean;
|
|
496
|
+
visualizationType?: VisualizationType;
|
|
497
|
+
sortType?: PanelSortType;
|
|
498
|
+
itemsPerPanel?: number;
|
|
499
|
+
secondaryItemsPerPanel?: number;
|
|
500
|
+
matrixViewRule?: MatrixViewType;
|
|
501
|
+
listPanelColumns?: string;
|
|
502
|
+
listPanelListType?: DashboardListType;
|
|
503
|
+
paletteId: PaletteType;
|
|
504
|
+
hexColors: string[];
|
|
505
|
+
showNotInformedData?: boolean;
|
|
506
|
+
fieldRiskAnalysisRule?: string;
|
|
507
|
+
analysisCriteriaId?: string;
|
|
508
|
+
analysisCriteriaParameter?: string;
|
|
509
|
+
evolutionSecondaryGrouping?: string;
|
|
510
|
+
onEdit?: (id: string) => void;
|
|
511
|
+
onRemove?: (id: string) => void;
|
|
512
|
+
onDuplicate?: (id: string) => void;
|
|
513
|
+
/** Client-only */
|
|
514
|
+
isNew?: boolean;
|
|
515
|
+
canUpdate?: boolean;
|
|
516
|
+
isConcatCustomField?: boolean;
|
|
517
|
+
hasRemovedColumn?: boolean;
|
|
518
|
+
isFromAnalysis?: boolean;
|
|
519
|
+
chartType?: number;
|
|
520
|
+
groupBy?: string;
|
|
521
|
+
panelSize?: {
|
|
522
|
+
x: number;
|
|
523
|
+
y: number;
|
|
524
|
+
};
|
|
525
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
export interface ElectronicSignatureDialogProps {
|
|
2
|
+
open: boolean;
|
|
3
|
+
onOpenChange: (open: boolean) => void;
|
|
4
|
+
/** Called with the entered code/password when user confirms */
|
|
5
|
+
onConfirm: (value: string) => Promise<boolean> | boolean;
|
|
6
|
+
/** Called to trigger code generation/resend (required for mode="code") */
|
|
7
|
+
onGenerateCode?: () => Promise<void> | void;
|
|
8
|
+
/** Dialog mode: 'code' for email verification, 'password' for password confirmation */
|
|
9
|
+
mode?: 'code' | 'password';
|
|
10
|
+
/** User email to display (only shown in code mode) */
|
|
11
|
+
email?: string;
|
|
12
|
+
/** Max input length */
|
|
13
|
+
maxLength?: number;
|
|
14
|
+
title?: string;
|
|
15
|
+
description?: string;
|
|
16
|
+
confirmLabel?: string;
|
|
17
|
+
cancelLabel?: string;
|
|
18
|
+
resendLabel?: string;
|
|
19
|
+
errorMessage?: string;
|
|
20
|
+
}
|
|
21
|
+
export declare function ElectronicSignatureDialog({ open, onOpenChange, onConfirm, onGenerateCode, mode, email, maxLength, title, description, confirmLabel, cancelLabel, resendLabel, errorMessage, }: ElectronicSignatureDialogProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
export declare enum ExportFormat {
|
|
3
|
+
CSV = "csv",
|
|
4
|
+
PDF = "pdf",
|
|
5
|
+
XLSX = "xlsx",
|
|
6
|
+
PNG = "png",
|
|
7
|
+
JPEG = "jpeg",
|
|
8
|
+
SVG = "svg"
|
|
9
|
+
}
|
|
10
|
+
export interface ExportDialogOption {
|
|
11
|
+
value: string;
|
|
12
|
+
label: string;
|
|
13
|
+
icon?: React.ReactNode;
|
|
14
|
+
}
|
|
15
|
+
export interface ExportDialogProps {
|
|
16
|
+
open: boolean;
|
|
17
|
+
onOpenChange: (open: boolean) => void;
|
|
18
|
+
onExport: (format: string) => void;
|
|
19
|
+
/** 'table' shows CSV/PDF/XLSX, 'chart' shows PNG/JPEG/SVG/PDF */
|
|
20
|
+
mode?: 'table' | 'chart';
|
|
21
|
+
/** Override default options */
|
|
22
|
+
options?: ExportDialogOption[];
|
|
23
|
+
title?: string;
|
|
24
|
+
description?: string;
|
|
25
|
+
cancelLabel?: string;
|
|
26
|
+
exportLabel?: string;
|
|
27
|
+
}
|
|
28
|
+
export declare function ExportDialog({ open, onOpenChange, onExport, mode, options, title, description, cancelLabel, exportLabel, }: ExportDialogProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export interface IframeDialogProps {
|
|
2
|
+
open: boolean;
|
|
3
|
+
onOpenChange: (open: boolean) => void;
|
|
4
|
+
/** URL to embed in the iframe */
|
|
5
|
+
url: string;
|
|
6
|
+
/** Optional title for the dialog header */
|
|
7
|
+
title?: string;
|
|
8
|
+
/** Custom className */
|
|
9
|
+
className?: string;
|
|
10
|
+
/** Min height for the iframe area */
|
|
11
|
+
minHeight?: string;
|
|
12
|
+
}
|
|
13
|
+
export declare function IframeDialog({ open, onOpenChange, url, title, className, minHeight, }: IframeDialogProps): import("react/jsx-runtime").JSX.Element;
|
|
14
|
+
export default IframeDialog;
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export interface PermissionItem {
|
|
3
|
+
id: string;
|
|
4
|
+
name: string;
|
|
5
|
+
/** Number of sub-items (e.g. users in group) */
|
|
6
|
+
count?: number;
|
|
7
|
+
/** Group/context key for categorization */
|
|
8
|
+
group?: string;
|
|
9
|
+
}
|
|
10
|
+
export interface PermissionCategory {
|
|
11
|
+
id: string;
|
|
12
|
+
name: string;
|
|
13
|
+
icon?: React.ReactNode;
|
|
14
|
+
}
|
|
15
|
+
export interface PermissionValues {
|
|
16
|
+
/** IDs explicitly allowed */
|
|
17
|
+
allowedIds: string[];
|
|
18
|
+
/** IDs inherited (readonly, shown but not removable) */
|
|
19
|
+
inheritedIds?: string[];
|
|
20
|
+
/** Group/context key */
|
|
21
|
+
context?: string;
|
|
22
|
+
}
|
|
23
|
+
export interface MultiselectPermissionsProps {
|
|
24
|
+
/** Available items to select from */
|
|
25
|
+
items: PermissionItem[];
|
|
26
|
+
/** Permission categories (e.g. "Visualizar", "Editar") */
|
|
27
|
+
categories: PermissionCategory[];
|
|
28
|
+
/** Current permission values per category: { [categoryId]: PermissionValues[] } */
|
|
29
|
+
value: Record<string, PermissionValues[]>;
|
|
30
|
+
/** Called when permissions change */
|
|
31
|
+
onChange: (value: Record<string, PermissionValues[]>) => void;
|
|
32
|
+
/** Read-only mode */
|
|
33
|
+
readonly?: boolean;
|
|
34
|
+
/** Loading state */
|
|
35
|
+
isLoading?: boolean;
|
|
36
|
+
/** Title label */
|
|
37
|
+
title?: string;
|
|
38
|
+
/** Label for the "Add" button */
|
|
39
|
+
addButtonLabel?: string;
|
|
40
|
+
/** Label for chips section */
|
|
41
|
+
chipsTitle?: string;
|
|
42
|
+
/** Placeholder when no chips selected */
|
|
43
|
+
chipsPlaceholder?: string;
|
|
44
|
+
/** Search placeholder */
|
|
45
|
+
searchPlaceholder?: string;
|
|
46
|
+
/** Multiselect placeholder */
|
|
47
|
+
selectPlaceholder?: string;
|
|
48
|
+
/** Template for item info (receives count) */
|
|
49
|
+
itemInfoTemplate?: (count: number) => string;
|
|
50
|
+
/** Disclaimer text for readonly mode */
|
|
51
|
+
disclaimer?: string;
|
|
52
|
+
/** Disclaimer link text */
|
|
53
|
+
disclaimerLink?: string;
|
|
54
|
+
/** Disclaimer link callback */
|
|
55
|
+
onDisclaimerClick?: () => void;
|
|
56
|
+
/** Additional className */
|
|
57
|
+
className?: string;
|
|
58
|
+
}
|
|
59
|
+
export declare function MultiselectPermissions({ items, categories, value, onChange, readonly, isLoading, title, addButtonLabel, chipsTitle, chipsPlaceholder, searchPlaceholder, selectPlaceholder, itemInfoTemplate, disclaimer, disclaimerLink, onDisclaimerClick, className, }: MultiselectPermissionsProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export interface OnlineEditorDialogProps {
|
|
2
|
+
open: boolean;
|
|
3
|
+
onOpenChange: (open: boolean) => void;
|
|
4
|
+
/** Google Drive file identifier */
|
|
5
|
+
identifier: string;
|
|
6
|
+
/** File name to display in the header */
|
|
7
|
+
fileName: string;
|
|
8
|
+
/** Editor mode: 'edit' opens the editor, 'preview' opens read-only view */
|
|
9
|
+
mode?: 'preview' | 'edit';
|
|
10
|
+
/** Google doc type */
|
|
11
|
+
type?: 'document' | 'spreadsheets';
|
|
12
|
+
/** Called when the dialog closes */
|
|
13
|
+
onClose?: () => void;
|
|
14
|
+
/** Custom className */
|
|
15
|
+
className?: string;
|
|
16
|
+
}
|
|
17
|
+
export declare function OnlineEditorDialog({ open, onOpenChange, identifier, fileName, mode, type, onClose, className, }: OnlineEditorDialogProps): import("react/jsx-runtime").JSX.Element;
|
|
18
|
+
export default OnlineEditorDialog;
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
export declare enum ReportRequestStatus {
|
|
2
|
+
WaitingProcessing = 1,
|
|
3
|
+
Processing = 2,
|
|
4
|
+
Completed = 3,
|
|
5
|
+
Error = 4,
|
|
6
|
+
Expired = 5
|
|
7
|
+
}
|
|
8
|
+
export interface ReportRequest {
|
|
9
|
+
id: string;
|
|
10
|
+
reportName: string;
|
|
11
|
+
requestDate: string | Date;
|
|
12
|
+
statusId: ReportRequestStatus;
|
|
13
|
+
expirationDate: string | Date;
|
|
14
|
+
lastUpdate: string | Date;
|
|
15
|
+
}
|
|
16
|
+
export interface ReportRequestListProps {
|
|
17
|
+
/** Report requests data */
|
|
18
|
+
requests: ReportRequest[];
|
|
19
|
+
/** Whether data is loading */
|
|
20
|
+
isLoading?: boolean;
|
|
21
|
+
/** Callback to get the iframe URL for a completed report */
|
|
22
|
+
onGetReportUrl: (requestId: string) => Promise<string | null>;
|
|
23
|
+
/** Date formatter (receives Date, returns string) */
|
|
24
|
+
formatDate?: (date: Date) => string;
|
|
25
|
+
/** Labels */
|
|
26
|
+
labels?: {
|
|
27
|
+
report?: string;
|
|
28
|
+
status?: string;
|
|
29
|
+
requestDate?: string;
|
|
30
|
+
lastUpdate?: string;
|
|
31
|
+
expirationDate?: string;
|
|
32
|
+
viewReport?: string;
|
|
33
|
+
searchPlaceholder?: string;
|
|
34
|
+
noResults?: string;
|
|
35
|
+
statusWaiting?: string;
|
|
36
|
+
statusProcessing?: string;
|
|
37
|
+
statusCompleted?: string;
|
|
38
|
+
statusError?: string;
|
|
39
|
+
statusExpired?: string;
|
|
40
|
+
};
|
|
41
|
+
/** Additional className */
|
|
42
|
+
className?: string;
|
|
43
|
+
}
|
|
44
|
+
export declare function ReportRequestList({ requests, isLoading, onGetReportUrl, formatDate, labels: customLabels, className, }: ReportRequestListProps): import("react/jsx-runtime").JSX.Element;
|