forlogic-core 2.1.4 → 2.2.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.
Files changed (248) hide show
  1. package/.note/memory/features/import/attachment-idempotency-registry.md +8 -8
  2. package/.note/memory/features/import/attachment-strategy.md +30 -30
  3. package/.note/memory/patterns/admin-i18n-policy.md +20 -20
  4. package/.note/memory/patterns/alias-url-resolution.md +69 -69
  5. package/.note/memory/patterns/doc-sync-rule.md +35 -35
  6. package/.note/memory/patterns/documentation-standard.md +17 -17
  7. package/.note/memory/patterns/dynamic-supabase-config.md +4 -4
  8. package/.note/memory/patterns/environment-detection-logic.md +35 -35
  9. package/.note/memory/patterns/i18n-architecture.md +3 -3
  10. package/README.md +120 -68
  11. package/dist/action-plans/components/ActionPlanAttachmentsTab.d.ts +3 -0
  12. package/dist/action-plans/components/ActionPlanCommentsTab.d.ts +3 -0
  13. package/dist/action-plans/components/ActionPlanCostTab.d.ts +5 -0
  14. package/dist/action-plans/components/ActionPlanGeneralTab.d.ts +3 -0
  15. package/dist/action-plans/components/ActionPlanHistoryTab.d.ts +3 -0
  16. package/dist/action-plans/components/ActionPlanPredecessorsTab.d.ts +5 -0
  17. package/dist/action-plans/components/ActionPlanProgressDialog.d.ts +3 -0
  18. package/dist/action-plans/components/ActionPlanProgressTab.d.ts +5 -0
  19. package/dist/action-plans/components/ActionPlanStatusBadge.d.ts +9 -2
  20. package/dist/action-plans/constants.d.ts +24 -0
  21. package/dist/action-plans/hooks/useActionPlan.d.ts +5 -0
  22. package/dist/action-plans/hooks/useActionPlanProgress.d.ts +5 -0
  23. package/dist/action-plans/types.d.ts +60 -0
  24. package/dist/action-plans/utils/formatTime.d.ts +9 -0
  25. package/dist/audit-trail/components/AuditTrailDetails.d.ts +10 -0
  26. package/dist/audit-trail/components/AuditTrailFilter.d.ts +10 -0
  27. package/dist/audit-trail/components/AuditTrailPage.d.ts +10 -0
  28. package/dist/audit-trail/types.d.ts +58 -0
  29. package/dist/audit-trail/utils.d.ts +18 -2
  30. package/dist/auth/components/EditProfileDialog.d.ts +1 -0
  31. package/dist/auth/components/ProtectedRoute.d.ts +5 -0
  32. package/dist/auth/contexts/AuthContext.d.ts +5 -0
  33. package/dist/auth/pages/CallbackPage.d.ts +5 -0
  34. package/dist/auth/services/AuthService.d.ts +5 -0
  35. package/dist/auth/services/TokenManager.d.ts +5 -0
  36. package/dist/auth/services/TokenService.d.ts +10 -0
  37. package/dist/auth/utils/ErrorInterceptor.d.ts +5 -0
  38. package/dist/components/dashboards/dashboard-form.d.ts +15 -0
  39. package/dist/components/dashboards/dashboard-general-view.d.ts +15 -0
  40. package/dist/components/dashboards/dashboard-grid.d.ts +25 -0
  41. package/dist/components/dashboards/dashboard-list.d.ts +10 -0
  42. package/dist/components/dashboards/dashboard-panel-renderer.d.ts +10 -0
  43. package/dist/components/dashboards/dashboard-view.d.ts +10 -0
  44. package/dist/components/dashboards/helpers.d.ts +44 -5
  45. package/dist/components/dashboards/panels/burndown-panel.d.ts +15 -0
  46. package/dist/components/dashboards/panels/cartesian-panel.d.ts +20 -0
  47. package/dist/components/dashboards/panels/list-panel.d.ts +15 -0
  48. package/dist/components/dashboards/panels/matrix-risk-panel.d.ts +25 -0
  49. package/dist/components/dashboards/panels/numeric-panel.d.ts +10 -0
  50. package/dist/components/dashboards/panels/panel-error.d.ts +10 -0
  51. package/dist/components/dashboards/panels/panel-header.d.ts +10 -0
  52. package/dist/components/dashboards/panels/panel-loader.d.ts +10 -0
  53. package/dist/components/dashboards/panels/panel-no-data.d.ts +10 -0
  54. package/dist/components/dashboards/panels/panel-unavailable.d.ts +10 -0
  55. package/dist/components/dashboards/panels/pareto-panel.d.ts +10 -0
  56. package/dist/components/dashboards/panels/performance-panel.d.ts +15 -0
  57. package/dist/components/dashboards/panels/pie-panel.d.ts +10 -0
  58. package/dist/components/dashboards/panels/text-panel.d.ts +10 -0
  59. package/dist/components/dashboards/types.d.ts +230 -0
  60. package/dist/components/modules/AccessDeniedDialog.d.ts +3 -1
  61. package/dist/components/modules/ModuleAccessGuard.d.ts +3 -1
  62. package/dist/components/modules/ModulesContent.d.ts +3 -1
  63. package/dist/components/modules/ModulesDialog.d.ts +1 -1
  64. package/dist/components/modules/ModulesFooterCards.d.ts +3 -1
  65. package/dist/components/modules/types.d.ts +2 -0
  66. package/dist/components/ui/accordion.d.ts +35 -0
  67. package/dist/components/ui/action-button.d.ts +5 -0
  68. package/dist/components/ui/alert-dialog.d.ts +82 -0
  69. package/dist/components/ui/alert.d.ts +32 -0
  70. package/dist/components/ui/avatar.d.ts +30 -0
  71. package/dist/components/ui/badge.d.ts +32 -0
  72. package/dist/components/ui/breadcrumb.d.ts +54 -0
  73. package/dist/components/ui/button-group.d.ts +15 -0
  74. package/dist/components/ui/button.d.ts +55 -0
  75. package/dist/components/ui/calendar.d.ts +16 -0
  76. package/dist/components/ui/card.d.ts +49 -0
  77. package/dist/components/ui/chart.d.ts +35 -0
  78. package/dist/components/ui/checkbox.d.ts +11 -0
  79. package/dist/components/ui/collapsible.d.ts +15 -0
  80. package/dist/components/ui/color-picker.d.ts +5 -0
  81. package/dist/components/ui/combo-tree.d.ts +23 -0
  82. package/dist/components/ui/combobox.d.ts +28 -0
  83. package/dist/components/ui/command.d.ts +66 -0
  84. package/dist/components/ui/context-menu.d.ts +95 -0
  85. package/dist/components/ui/date-picker.d.ts +10 -0
  86. package/dist/components/ui/dialog-wizard.d.ts +22 -4
  87. package/dist/components/ui/dialog.d.ts +181 -0
  88. package/dist/components/ui/drawer.d.ts +72 -0
  89. package/dist/components/ui/dropdown-menu.d.ts +153 -0
  90. package/dist/components/ui/electronic-signature-dialog.d.ts +10 -0
  91. package/dist/components/ui/export-dialog.d.ts +20 -0
  92. package/dist/components/ui/form.d.ts +96 -0
  93. package/dist/components/ui/hover-card.d.ts +15 -0
  94. package/dist/components/ui/icon-picker.d.ts +5 -0
  95. package/dist/components/ui/iframe-dialog.d.ts +10 -0
  96. package/dist/components/ui/input-group.d.ts +16 -0
  97. package/dist/components/ui/input.d.ts +5 -0
  98. package/dist/components/ui/menubar.d.ts +80 -0
  99. package/dist/components/ui/multiselect-permissions.d.ts +25 -0
  100. package/dist/components/ui/navigation-menu.d.ts +45 -0
  101. package/dist/components/ui/onboarding-dialog.d.ts +15 -0
  102. package/dist/components/ui/online-editor-dialog.d.ts +10 -0
  103. package/dist/components/ui/pagination.d.ts +53 -0
  104. package/dist/components/ui/popover.d.ts +8 -0
  105. package/dist/components/ui/radio-group.d.ts +3 -0
  106. package/dist/components/ui/report-request-list.d.ts +20 -0
  107. package/dist/components/ui/resizable.d.ts +15 -0
  108. package/dist/components/ui/rich-text-editor.d.ts +13 -0
  109. package/dist/components/ui/scroll-area.d.ts +3 -0
  110. package/dist/components/ui/select.d.ts +71 -0
  111. package/dist/components/ui/separator.d.ts +13 -0
  112. package/dist/components/ui/sheet.d.ts +76 -0
  113. package/dist/components/ui/sidebar.d.ts +203 -0
  114. package/dist/components/ui/skeleton-variants.d.ts +25 -0
  115. package/dist/components/ui/skeleton.d.ts +12 -0
  116. package/dist/components/ui/slider.d.ts +5 -0
  117. package/dist/components/ui/sonner.d.ts +5 -0
  118. package/dist/components/ui/spinner.d.ts +5 -0
  119. package/dist/components/ui/split-button.d.ts +6 -0
  120. package/dist/components/ui/stack.d.ts +5 -0
  121. package/dist/components/ui/status-badge.d.ts +52 -0
  122. package/dist/components/ui/step-selector.d.ts +5 -0
  123. package/dist/components/ui/stimulsoft-viewer.d.ts +8 -0
  124. package/dist/components/ui/switch.d.ts +21 -0
  125. package/dist/components/ui/tab-page-layout.d.ts +33 -0
  126. package/dist/components/ui/table-resize-handle.d.ts +10 -3
  127. package/dist/components/ui/table.d.ts +102 -0
  128. package/dist/components/ui/tabs.d.ts +59 -0
  129. package/dist/components/ui/terms-of-use-dialog.d.ts +50 -4
  130. package/dist/components/ui/textarea.d.ts +27 -0
  131. package/dist/components/ui/timepicker.d.ts +23 -0
  132. package/dist/components/ui/toggle-group.d.ts +25 -0
  133. package/dist/components/ui/toggle.d.ts +21 -0
  134. package/dist/components/ui/tooltip.d.ts +48 -0
  135. package/dist/components/ui/truncated-cell.d.ts +13 -0
  136. package/dist/components/ui/typography.d.ts +119 -0
  137. package/dist/components/ui/updates-notification.d.ts +33 -0
  138. package/dist/components/ui/users-groups-selector.d.ts +43 -0
  139. package/dist/components/ui/viewer-dialog.d.ts +107 -0
  140. package/dist/crud/components/ActionMenuItems.d.ts +5 -0
  141. package/dist/crud/components/BaseForm.d.ts +46 -0
  142. package/dist/crud/components/ColumnSettingsPopover.d.ts +10 -0
  143. package/dist/crud/components/CrudActionBar.d.ts +20 -0
  144. package/dist/crud/components/CrudGrid.d.ts +10 -0
  145. package/dist/crud/components/CrudPagination.d.ts +5 -0
  146. package/dist/crud/components/CrudTable.d.ts +5 -0
  147. package/dist/crud/components/TableRowActions.d.ts +5 -0
  148. package/dist/crud/createCrudPage.d.ts +41 -8
  149. package/dist/crud/generateCrudConfig.d.ts +13 -8
  150. package/dist/crud/hooks/useBaseForm.d.ts +39 -0
  151. package/dist/crud/hooks/useColumnManager.d.ts +25 -0
  152. package/dist/crud/hooks/useCrud.d.ts +35 -0
  153. package/dist/crud/primitives/ActionMenu.d.ts +41 -0
  154. package/dist/crud/primitives/FilterBar.d.ts +45 -0
  155. package/dist/crud/primitives/Pagination.d.ts +5 -0
  156. package/dist/crud/primitives/Table.d.ts +6 -1
  157. package/dist/crud/primitives/TreeTable.d.ts +5 -0
  158. package/dist/crud/primitives/types.d.ts +63 -0
  159. package/dist/crud/utils/routingHelpers.d.ts +11 -0
  160. package/dist/custom-form-fields/components/CustomFormFields.d.ts +3 -0
  161. package/dist/custom-form-fields/fields/FormDateField.d.ts +3 -0
  162. package/dist/custom-form-fields/fields/FormMultiSelectionField.d.ts +3 -0
  163. package/dist/custom-form-fields/fields/FormNumericField.d.ts +3 -0
  164. package/dist/custom-form-fields/fields/FormQuestionsField.d.ts +3 -0
  165. package/dist/custom-form-fields/fields/FormSingleSelectionField.d.ts +3 -0
  166. package/dist/custom-form-fields/fields/FormTextField.d.ts +3 -0
  167. package/dist/custom-form-fields/fields/FormTimeField.d.ts +3 -0
  168. package/dist/custom-form-fields/fields/FormUrlField.d.ts +3 -0
  169. package/dist/custom-form-fields/fields/ReadOnlyTextField.d.ts +3 -0
  170. package/dist/custom-form-fields/types.d.ts +84 -21
  171. package/dist/exports/crud.d.ts +5 -0
  172. package/dist/exports/integrations.d.ts +1 -0
  173. package/dist/exports/ui.d.ts +1 -0
  174. package/dist/file-upload/components/SingleFileUpload.d.ts +59 -0
  175. package/dist/file-upload/types.d.ts +15 -0
  176. package/dist/file-upload/utils/formatBytes.d.ts +5 -0
  177. package/dist/file-upload/utils/getFileExtension.d.ts +5 -0
  178. package/dist/hooks/useColumnResize.d.ts +24 -0
  179. package/dist/hooks/useRowResize.d.ts +18 -0
  180. package/dist/hooks/useSidebarResize.d.ts +18 -0
  181. package/dist/hooks/useUpdatesNotification.d.ts +16 -0
  182. package/dist/index.css +1 -1
  183. package/dist/index.css.map +1 -1
  184. package/dist/index.esm.js +1 -1
  185. package/dist/index.js +1 -1
  186. package/dist/integrations/clarity/clarityTracking.d.ts +31 -0
  187. package/dist/integrations/clarity/index.d.ts +3 -0
  188. package/dist/integrations/clarity/types.d.ts +46 -0
  189. package/dist/integrations/clarity/useClarity.d.ts +34 -0
  190. package/dist/integrations/index.d.ts +5 -0
  191. package/dist/providers/CoreProviders.d.ts +16 -1
  192. package/dist/qualiex/components/QualiexUserField.d.ts +8 -0
  193. package/dist/qualiex/hooks/useQualiexUsers.d.ts +16 -26
  194. package/dist/qualiex/services/qualiexApi.d.ts +38 -2
  195. package/dist/qualiex/utils/QualiexErrorInterceptor.d.ts +5 -0
  196. package/dist/supabase/SupabaseSingleton.d.ts +34 -0
  197. package/dist/types.d.ts +51 -2
  198. package/dist/utils/color.d.ts +26 -0
  199. package/dist/utils/index.d.ts +1 -0
  200. package/dist/vite/index.esm.js +4 -1
  201. package/dist/vite/index.js +4 -1
  202. package/docs/PUBLISH.md +168 -0
  203. package/docs/STORAGE_BUCKETS.md +384 -0
  204. package/docs/WORKSPACE_KNOWLEDGE.md +120 -119
  205. package/docs/design-system/README.md +1 -1
  206. package/docs/design-system/buttons-actions.md +130 -130
  207. package/docs/design-system/charts-dashboards.md +340 -301
  208. package/docs/design-system/crud.md +174 -114
  209. package/docs/design-system/data-display.md +108 -103
  210. package/docs/design-system/dialogs.md +212 -212
  211. package/docs/design-system/domain.md +317 -317
  212. package/docs/design-system/examples.md +275 -275
  213. package/docs/design-system/foundation.md +1 -1
  214. package/docs/design-system/inputs.md +131 -131
  215. package/docs/design-system/layout.md +202 -154
  216. package/docs/design-system/navigation.md +271 -325
  217. package/docs/design-system/notifications-feedback.md +34 -34
  218. package/docs/design-system/patterns/README.md +53 -53
  219. package/docs/design-system/patterns/action-button.md +22 -22
  220. package/docs/design-system/patterns/alertdialog-deletion.md +46 -46
  221. package/docs/design-system/patterns/baseform-custom-fields.md +59 -59
  222. package/docs/design-system/patterns/baseform-usage.md +42 -42
  223. package/docs/design-system/patterns/body-content-scroll.md +56 -56
  224. package/docs/design-system/patterns/combo-tree.md +23 -23
  225. package/docs/design-system/patterns/components-registry.md +17 -17
  226. package/docs/design-system/patterns/core-providers.md +41 -39
  227. package/docs/design-system/patterns/crud-bulk-actions.md +12 -12
  228. package/docs/design-system/patterns/crud-config-props.md +16 -16
  229. package/docs/design-system/patterns/crud-defaults.md +17 -17
  230. package/docs/design-system/patterns/crud-toolbar.md +28 -28
  231. package/docs/design-system/patterns/delete-confirmation.md +40 -40
  232. package/docs/design-system/patterns/dialog-body-scroll.md +26 -26
  233. package/docs/design-system/patterns/dialog-structure.md +32 -32
  234. package/docs/design-system/patterns/dialog-variants.md +41 -41
  235. package/docs/design-system/patterns/feature-flags.md +24 -20
  236. package/docs/design-system/patterns/header-metadata.md +57 -57
  237. package/docs/design-system/patterns/i18n-setup.md +117 -117
  238. package/docs/design-system/patterns/pagination.md +27 -27
  239. package/docs/design-system/patterns/single-scroll.md +39 -39
  240. package/docs/design-system/patterns/vite-tailwind-setup.md +48 -48
  241. package/docs/design-system/platform.md +18 -18
  242. package/docs/design-system/selectors.md +240 -236
  243. package/docs/design-system/tables-grids.md +95 -38
  244. package/package.json +150 -144
  245. package/dist/README.md +0 -1079
  246. package/dist/bin/bootstrap.js +0 -40
  247. package/dist/bin/pull-docs.js +0 -186
  248. package/dist/docs/KNOWLEDGE.md +0 -109
@@ -1,3 +1,8 @@
1
+ /**
2
+ * Enum `AggregationType` exportado pela lib.
3
+ * @example
4
+ * const v = AggregationType;
5
+ */
1
6
  export declare enum AggregationType {
2
7
  Count = "valuecount",
3
8
  Sum = "sum",
@@ -6,19 +11,39 @@ export declare enum AggregationType {
6
11
  Max = "max",
7
12
  Min = "min"
8
13
  }
14
+ /**
15
+ * Enum `AnalysisFunctionality` exportado pela lib.
16
+ * @example
17
+ * const v = AnalysisFunctionality;
18
+ */
9
19
  export declare enum AnalysisFunctionality {
10
20
  ViewAllAnalysis = "nes3j6wn"
11
21
  }
22
+ /**
23
+ * Enum `DashboardFunctionality` exportado pela lib.
24
+ * @example
25
+ * const v = DashboardFunctionality;
26
+ */
12
27
  export declare enum DashboardFunctionality {
13
28
  RegisterDashboards = "EeKs7CYA",
14
29
  RemoveDashboards = "3GKZYOQ9",
15
30
  ViewAllDashboards = "wYBdQNvZ",
16
31
  EditDashboards = "bMFcbwv4"
17
32
  }
33
+ /**
34
+ * Enum `DashboardListType` exportado pela lib.
35
+ * @example
36
+ * const v = DashboardListType;
37
+ */
18
38
  export declare enum DashboardListType {
19
39
  Default = 1,
20
40
  Compact = 2
21
41
  }
42
+ /**
43
+ * Enum `DashboardPageTime` exportado pela lib.
44
+ * @example
45
+ * const v = DashboardPageTime;
46
+ */
22
47
  export declare enum DashboardPageTime {
23
48
  FiveSeconds = 1,
24
49
  TenSeconds = 2,
@@ -29,19 +54,39 @@ export declare enum DashboardPageTime {
29
54
  FiveMinutes = 7,
30
55
  TenMinutes = 8
31
56
  }
57
+ /**
58
+ * Enum `DashboardPanelDimension` exportado pela lib.
59
+ * @example
60
+ * const v = DashboardPanelDimension;
61
+ */
32
62
  export declare enum DashboardPanelDimension {
33
63
  Day = 1,
34
64
  Month = 2,
35
65
  Year = 3
36
66
  }
67
+ /**
68
+ * Enum `DashboardPanelOrderByType` exportado pela lib.
69
+ * @example
70
+ * const v = DashboardPanelOrderByType;
71
+ */
37
72
  export declare enum DashboardPanelOrderByType {
38
73
  Ascending = 1,
39
74
  Descending = 2
40
75
  }
76
+ /**
77
+ * Enum `DashboardPanelOrderBy` exportado pela lib.
78
+ * @example
79
+ * const v = DashboardPanelOrderBy;
80
+ */
41
81
  export declare enum DashboardPanelOrderBy {
42
82
  Label = 1,
43
83
  Value = 2
44
84
  }
85
+ /**
86
+ * Enum `DashboardPanelPeriod` exportado pela lib.
87
+ * @example
88
+ * const v = DashboardPanelPeriod;
89
+ */
45
90
  export declare enum DashboardPanelPeriod {
46
91
  LastSevenDays = 1,
47
92
  LastWeek = 2,
@@ -55,6 +100,11 @@ export declare enum DashboardPanelPeriod {
55
100
  CurrentWeek = 10,
56
101
  CurrentYear = 11
57
102
  }
103
+ /**
104
+ * Enum `DashboardPanelType` exportado pela lib.
105
+ * @example
106
+ * const v = DashboardPanelType;
107
+ */
58
108
  export declare enum DashboardPanelType {
59
109
  Text = 1,
60
110
  Area = 2,
@@ -71,6 +121,11 @@ export declare enum DashboardPanelType {
71
121
  PerformanceColumns = 13,
72
122
  EvolutionLine = 14
73
123
  }
124
+ /**
125
+ * Enum `DashboardUpdateTime` exportado pela lib.
126
+ * @example
127
+ * const v = DashboardUpdateTime;
128
+ */
74
129
  export declare enum DashboardUpdateTime {
75
130
  NotUpdate = 1,
76
131
  FiveMinutes = 2,
@@ -79,28 +134,58 @@ export declare enum DashboardUpdateTime {
79
134
  ThirtyMinutes = 5,
80
135
  OneHour = 6
81
136
  }
137
+ /**
138
+ * Enum `DashboardViewType` exportado pela lib.
139
+ * @example
140
+ * const v = DashboardViewType;
141
+ */
82
142
  export declare enum DashboardViewType {
83
143
  NormalPage = 1,
84
144
  Carousel = 2
85
145
  }
146
+ /**
147
+ * Enum `DashboardFormTab` exportado pela lib.
148
+ * @example
149
+ * const v = DashboardFormTab;
150
+ */
86
151
  export declare enum DashboardFormTab {
87
152
  General = 0,
88
153
  Share = 1
89
154
  }
155
+ /**
156
+ * Enum `DashboardShareType` exportado pela lib.
157
+ * @example
158
+ * const v = DashboardShareType;
159
+ */
90
160
  export declare enum DashboardShareType {
91
161
  NotShared = 1,
92
162
  SharedWithAllCollaborators = 2,
93
163
  SharedWithUsersGroupsPlacesCollaborators = 3
94
164
  }
165
+ /**
166
+ * Enum `DashboardLanguage` exportado pela lib.
167
+ * @example
168
+ * const v = DashboardLanguage;
169
+ */
95
170
  export declare enum DashboardLanguage {
96
171
  PtBr = "pt-br",
97
172
  EnUs = "en",
98
173
  EsEs = "es"
99
174
  }
175
+ /**
176
+ * Enum `MatrixViewType` exportado pela lib.
177
+ * @example
178
+ * const v = MatrixViewType;
179
+ */
100
180
  export declare enum MatrixViewType {
101
181
  Quantity = 0,
102
182
  AllRisksList = 1
103
183
  }
184
+ /**
185
+ * Enum `PanelItemsPerPanel` exportado pela lib.
186
+ * @example
187
+ * const v = PanelItemsPerPanel;
188
+ */
104
189
  export declare enum PanelItemsPerPanel {
105
190
  Five = 5,
106
191
  Ten = 10,
@@ -109,6 +194,11 @@ export declare enum PanelItemsPerPanel {
109
194
  All = 0,
110
195
  Custom = -1
111
196
  }
197
+ /**
198
+ * Enum `PanelSortType` exportado pela lib.
199
+ * @example
200
+ * const v = PanelSortType;
201
+ */
112
202
  export declare enum PanelSortType {
113
203
  AlphabeticalAsc = 1,
114
204
  AlphabeticalDesc = 2,
@@ -117,6 +207,11 @@ export declare enum PanelSortType {
117
207
  DateAsc = 5,
118
208
  DateDesc = 6
119
209
  }
210
+ /**
211
+ * Enum `PanelState` exportado pela lib.
212
+ * @example
213
+ * const v = PanelState;
214
+ */
120
215
  export declare enum PanelState {
121
216
  Loading = 0,
122
217
  Loaded = 1,
@@ -124,11 +219,21 @@ export declare enum PanelState {
124
219
  NoData = 4,
125
220
  Unavailable = 5
126
221
  }
222
+ /**
223
+ * Enum `VisualizationType` exportado pela lib.
224
+ * @example
225
+ * const v = VisualizationType;
226
+ */
127
227
  export declare enum VisualizationType {
128
228
  Quantity = 1,
129
229
  Percentage = 2,
130
230
  QuantityPercentage = 3
131
231
  }
232
+ /**
233
+ * Enum `PlanType` exportado pela lib.
234
+ * @example
235
+ * const v = PlanType;
236
+ */
132
237
  export declare enum PlanType {
133
238
  Program = 1,
134
239
  Project = 2,
@@ -136,6 +241,11 @@ export declare enum PlanType {
136
241
  PerformanceProject = 4,
137
242
  PerformanceAction = 5
138
243
  }
244
+ /**
245
+ * Enum `QueriesContextType` exportado pela lib.
246
+ * @example
247
+ * const v = QueriesContextType;
248
+ */
139
249
  export declare enum QueriesContextType {
140
250
  OccurrenceActionPlans = "xebGnSSq",
141
251
  OccurrenceGeneral = "UFws4AvH",
@@ -170,20 +280,40 @@ export declare enum QueriesContextType {
170
280
  FmeaGeneral = "aPwf4uPr",
171
281
  FmeaActionPlans = "vQ8PMrVX"
172
282
  }
283
+ /**
284
+ * Enum `QueriesShareType` exportado pela lib.
285
+ * @example
286
+ * const v = QueriesShareType;
287
+ */
173
288
  export declare enum QueriesShareType {
174
289
  NotShared = 1,
175
290
  SharedWithAllCollaborators = 2,
176
291
  SharedWithUsersGroupsPlacesCollaborators = 3
177
292
  }
293
+ /**
294
+ * Enum `QuickFilterDashboard` exportado pela lib.
295
+ * @example
296
+ * const v = QuickFilterDashboard;
297
+ */
178
298
  export declare enum QuickFilterDashboard {
179
299
  All = 1,
180
300
  OnlyMine = 2,
181
301
  Favorites = 3
182
302
  }
303
+ /**
304
+ * Enum `RiskCriticality` exportado pela lib.
305
+ * @example
306
+ * const v = RiskCriticality;
307
+ */
183
308
  export declare enum RiskCriticality {
184
309
  Current = 1,
185
310
  Inherent = 2
186
311
  }
312
+ /**
313
+ * Enum `PaletteType` exportado pela lib.
314
+ * @example
315
+ * const v = PaletteType;
316
+ */
187
317
  export declare enum PaletteType {
188
318
  Default = 1,
189
319
  Pastel = 2,
@@ -206,6 +336,11 @@ export declare enum PaletteType {
206
336
  Pink = 19,
207
337
  Red = 20
208
338
  }
339
+ /**
340
+ * Tipo `PanelResult` exportado pela lib.
341
+ * @example
342
+ * const value: PanelResult = {} as PanelResult;
343
+ */
209
344
  export interface PanelResult {
210
345
  key: unknown;
211
346
  keyAsString?: string;
@@ -224,6 +359,11 @@ export interface PanelResult {
224
359
  riskName?: string;
225
360
  analysisDate?: unknown;
226
361
  }
362
+ /**
363
+ * Tipo `Dashboard` exportado pela lib.
364
+ * @example
365
+ * const value: Dashboard = {} as Dashboard;
366
+ */
227
367
  export interface Dashboard {
228
368
  id: string;
229
369
  code: string;
@@ -253,6 +393,11 @@ export interface Dashboard {
253
393
  collaborators?: string[];
254
394
  isFavoriteText?: string;
255
395
  }
396
+ /**
397
+ * Tipo `DashboardPanel` exportado pela lib.
398
+ * @example
399
+ * const value: DashboardPanel = {} as DashboardPanel;
400
+ */
256
401
  export interface DashboardPanel {
257
402
  id: string;
258
403
  title: string;
@@ -313,6 +458,11 @@ export interface DashboardPanel {
313
458
  isNew?: boolean;
314
459
  hasRemovedColumn?: boolean;
315
460
  }
461
+ /**
462
+ * Tipo `DashboardPage` exportado pela lib.
463
+ * @example
464
+ * const value: DashboardPage = {} as DashboardPage;
465
+ */
316
466
  export interface DashboardPage {
317
467
  id: string;
318
468
  position: number;
@@ -321,10 +471,20 @@ export interface DashboardPage {
321
471
  iconCss?: boolean;
322
472
  iconDuplicate?: boolean;
323
473
  }
474
+ /**
475
+ * Tipo `DashboardLimit` exportado pela lib.
476
+ * @example
477
+ * const value: DashboardLimit = {} as DashboardLimit;
478
+ */
324
479
  export interface DashboardLimit {
325
480
  maxDashboards: number;
326
481
  countDashboards: number;
327
482
  }
483
+ /**
484
+ * Tipo `GeneralViewDashboard` exportado pela lib.
485
+ * @example
486
+ * const value: GeneralViewDashboard = {} as GeneralViewDashboard;
487
+ */
328
488
  export interface GeneralViewDashboard {
329
489
  id: string;
330
490
  dashboardId: string;
@@ -335,6 +495,11 @@ export interface GeneralViewDashboard {
335
495
  idViewType: number;
336
496
  softwareId: number;
337
497
  }
498
+ /**
499
+ * Tipo `DefaultDashboardId` exportado pela lib.
500
+ * @example
501
+ * const value: DefaultDashboardId = {} as DefaultDashboardId;
502
+ */
338
503
  export interface DefaultDashboardId {
339
504
  id: string;
340
505
  titlePtBr?: string;
@@ -342,6 +507,11 @@ export interface DefaultDashboardId {
342
507
  titleEsEs?: string;
343
508
  currentTitle?: string;
344
509
  }
510
+ /**
511
+ * Tipo `SharedDashboard` exportado pela lib.
512
+ * @example
513
+ * const value: SharedDashboard = {} as SharedDashboard;
514
+ */
345
515
  export interface SharedDashboard {
346
516
  id: string;
347
517
  code: string;
@@ -351,6 +521,11 @@ export interface SharedDashboard {
351
521
  currentTitle?: string;
352
522
  isActive: boolean;
353
523
  }
524
+ /**
525
+ * Tipo `SelectedColumn` exportado pela lib.
526
+ * @example
527
+ * const value: SelectedColumn = {} as SelectedColumn;
528
+ */
354
529
  export interface SelectedColumn {
355
530
  columnName: string;
356
531
  columnType: string;
@@ -363,6 +538,11 @@ export interface SelectedColumn {
363
538
  header?: string;
364
539
  width?: string;
365
540
  }
541
+ /**
542
+ * Tipo `Column` exportado pela lib.
543
+ * @example
544
+ * const value: Column = {} as Column;
545
+ */
366
546
  export interface Column {
367
547
  field?: string;
368
548
  label?: string;
@@ -384,14 +564,29 @@ export interface Column {
384
564
  index?: number;
385
565
  checked?: boolean;
386
566
  }
567
+ /**
568
+ * Tipo `ColumnOption` exportado pela lib.
569
+ * @example
570
+ * const value: ColumnOption = {} as ColumnOption;
571
+ */
387
572
  export interface ColumnOption {
388
573
  value?: number;
389
574
  text?: string;
390
575
  }
576
+ /**
577
+ * Tipo `ColumnTextOption` exportado pela lib.
578
+ * @example
579
+ * const value: ColumnTextOption = {} as ColumnTextOption;
580
+ */
391
581
  export interface ColumnTextOption {
392
582
  value?: string;
393
583
  text?: string;
394
584
  }
585
+ /**
586
+ * Tipo `QueryItem` exportado pela lib.
587
+ * @example
588
+ * const value: QueryItem = {} as QueryItem;
589
+ */
395
590
  export interface QueryItem {
396
591
  id: string;
397
592
  idResponsible: string;
@@ -423,6 +618,11 @@ export interface QueryItem {
423
618
  isFavoriteText?: string;
424
619
  title?: string;
425
620
  }
621
+ /**
622
+ * Tipo `PlaceAnalysis` exportado pela lib.
623
+ * @example
624
+ * const value: PlaceAnalysis = {} as PlaceAnalysis;
625
+ */
426
626
  export interface PlaceAnalysis {
427
627
  id: string;
428
628
  name: string;
@@ -431,30 +631,60 @@ export interface PlaceAnalysis {
431
631
  children?: PlaceAnalysis[];
432
632
  iconCss?: string;
433
633
  }
634
+ /**
635
+ * Tipo `ShareDashboardGroupsData` exportado pela lib.
636
+ * @example
637
+ * const value: ShareDashboardGroupsData = {} as ShareDashboardGroupsData;
638
+ */
434
639
  export interface ShareDashboardGroupsData {
435
640
  id: string;
436
641
  dashboardId: string;
437
642
  usersGroupId: string;
438
643
  }
644
+ /**
645
+ * Tipo `ShareDashboardPlacesData` exportado pela lib.
646
+ * @example
647
+ * const value: ShareDashboardPlacesData = {} as ShareDashboardPlacesData;
648
+ */
439
649
  export interface ShareDashboardPlacesData {
440
650
  id: string;
441
651
  dashboardId: string;
442
652
  placeId: string;
443
653
  }
654
+ /**
655
+ * Tipo `ShareDashboardUsersData` exportado pela lib.
656
+ * @example
657
+ * const value: ShareDashboardUsersData = {} as ShareDashboardUsersData;
658
+ */
444
659
  export interface ShareDashboardUsersData {
445
660
  id: string;
446
661
  dashboardId: string;
447
662
  userId: string;
448
663
  }
664
+ /**
665
+ * Tipo `Palette` exportado pela lib.
666
+ * @example
667
+ * const value: Palette = {} as Palette;
668
+ */
449
669
  export interface Palette {
450
670
  id: PaletteType;
451
671
  hexColors: string[];
452
672
  name: string;
453
673
  }
674
+ /**
675
+ * Tipo `RiskAnalysisParameter` exportado pela lib.
676
+ * @example
677
+ * const value: RiskAnalysisParameter = {} as RiskAnalysisParameter;
678
+ */
454
679
  export interface RiskAnalysisParameter {
455
680
  position: number;
456
681
  name: string;
457
682
  }
683
+ /**
684
+ * Tipo `PanelConfig` exportado pela lib.
685
+ * @example
686
+ * const value: PanelConfig = {} as PanelConfig;
687
+ */
458
688
  export interface PanelConfig {
459
689
  id: string;
460
690
  title: string;
@@ -37,5 +37,7 @@ export interface AccessDeniedDialogProps {
37
37
  size?: "sm" | "md" | "lg";
38
38
  /** Conteúdo customizado que substitui o ModulesContent (grid de módulos). Header e footer são mantidos. */
39
39
  children?: ReactNode;
40
+ /** Identificador do módulo de origem. Usado em analytics. */
41
+ sourceModule?: string;
40
42
  }
41
- export declare function AccessDeniedDialog({ open, onOpenChange, onModuleClick, contractedModules, onModuleInterest, userName, unitName, units, currentAlias, onUnitChange, onLogout, educaUrl, saberGestaoUrl, wikiUrl, blocking, size, children, }: AccessDeniedDialogProps): import("react/jsx-runtime").JSX.Element;
43
+ export declare function AccessDeniedDialog({ open, onOpenChange, onModuleClick, contractedModules, onModuleInterest, userName, unitName, units, currentAlias, onUnitChange, onLogout, educaUrl, saberGestaoUrl, wikiUrl, blocking, size, children, sourceModule, }: AccessDeniedDialogProps): import("react/jsx-runtime").JSX.Element;
@@ -36,5 +36,7 @@ export interface ModuleAccessGuardProps {
36
36
  * ```
37
37
  */
38
38
  accessDeniedRoutes?: Record<string, ReactNode>;
39
+ /** Identificador do módulo de origem. Usado em analytics. */
40
+ sourceModule?: string;
39
41
  }
40
- export declare function ModuleAccessGuard({ children, contractedModules, onModuleClick, onModuleInterest, educaUrl, saberGestaoUrl, wikiUrl, bypassPaths, accessDeniedRoutes, }: ModuleAccessGuardProps): import("react/jsx-runtime").JSX.Element;
42
+ export declare function ModuleAccessGuard({ children, contractedModules, onModuleClick, onModuleInterest, educaUrl, saberGestaoUrl, wikiUrl, bypassPaths, accessDeniedRoutes, sourceModule, }: ModuleAccessGuardProps): import("react/jsx-runtime").JSX.Element;
@@ -15,5 +15,7 @@ export interface ModulesContentProps {
15
15
  wikiUrl?: string;
16
16
  /** Alias ativo para resolver placeholders {alias} nas URLs */
17
17
  alias?: string;
18
+ /** Identificador do módulo de origem (de onde o menu foi aberto). Usado em analytics. */
19
+ sourceModule?: string;
18
20
  }
19
- export declare function ModulesContent({ onModuleClick, contractedModules, onModuleInterest, nonContractedUrl, educaUrl, saberGestaoUrl, wikiUrl, alias, }: ModulesContentProps): import("react/jsx-runtime").JSX.Element;
21
+ export declare function ModulesContent({ onModuleClick, contractedModules, onModuleInterest, nonContractedUrl, educaUrl, saberGestaoUrl, wikiUrl, alias, sourceModule, }: ModulesContentProps): import("react/jsx-runtime").JSX.Element;
@@ -1,3 +1,3 @@
1
1
  import { ModulesDialogProps } from "./types";
2
- export declare function ModulesDialog({ open, onOpenChange, onModuleClick, contractedModules, onModuleInterest, educaUrl, saberGestaoUrl, wikiUrl, }: ModulesDialogProps): import("react/jsx-runtime").JSX.Element;
2
+ export declare function ModulesDialog({ open, onOpenChange, onModuleClick, contractedModules, onModuleInterest, educaUrl, saberGestaoUrl, wikiUrl, sourceModule, }: ModulesDialogProps): import("react/jsx-runtime").JSX.Element;
3
3
  export default ModulesDialog;
@@ -4,5 +4,7 @@ export interface ModulesFooterCardsProps {
4
4
  wikiUrl?: string;
5
5
  /** Alias ativo para resolver placeholders {alias} nas URLs */
6
6
  alias?: string;
7
+ /** Identificador do módulo de origem. Usado em analytics. */
8
+ sourceModule?: string;
7
9
  }
8
- export declare function ModulesFooterCards({ educaUrl, saberGestaoUrl, wikiUrl, alias, }: ModulesFooterCardsProps): import("react/jsx-runtime").JSX.Element;
10
+ export declare function ModulesFooterCards({ educaUrl, saberGestaoUrl, wikiUrl, alias, sourceModule, }: ModulesFooterCardsProps): import("react/jsx-runtime").JSX.Element;
@@ -36,4 +36,6 @@ export interface ModulesDialogProps {
36
36
  wikiUrl?: string;
37
37
  /** @deprecated Não mais utilizado no novo layout */
38
38
  allModulesUrl?: string;
39
+ /** Identificador do módulo de origem (de onde o menu foi aberto). Usado em analytics. */
40
+ sourceModule?: string;
39
41
  }
@@ -1,7 +1,42 @@
1
+ /**
2
+ * @module Accordion
3
+ * Acordeão expansível. Composição: `Accordion` (raiz, com `type="single"` ou `"multiple"`)
4
+ * + `AccordionItem` (um por seção, requer `value`) + `AccordionTrigger` + `AccordionContent`.
5
+ *
6
+ * @example
7
+ * ```tsx
8
+ * <Accordion type="single" collapsible>
9
+ * <AccordionItem value="item-1">
10
+ * <AccordionTrigger>Termos</AccordionTrigger>
11
+ * <AccordionContent>Conteúdo expansível...</AccordionContent>
12
+ * </AccordionItem>
13
+ * </Accordion>
14
+ * ```
15
+ */
1
16
  import * as React from "react";
2
17
  import * as AccordionPrimitive from "@radix-ui/react-accordion";
18
+ /**
19
+ * Componente `Accordion` da lib.
20
+ * @example
21
+ * <Accordion />
22
+ */
3
23
  declare const Accordion: React.ForwardRefExoticComponent<(AccordionPrimitive.AccordionSingleProps | AccordionPrimitive.AccordionMultipleProps) & React.RefAttributes<HTMLDivElement>>;
24
+ /**
25
+ * Componente `AccordionItem` da lib.
26
+ * @example
27
+ * <AccordionItem />
28
+ */
4
29
  declare const AccordionItem: React.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
30
+ /**
31
+ * Componente `AccordionTrigger` da lib.
32
+ * @example
33
+ * <AccordionTrigger />
34
+ */
5
35
  declare const AccordionTrigger: React.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionTriggerProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
36
+ /**
37
+ * Componente `AccordionContent` da lib.
38
+ * @example
39
+ * <AccordionContent />
40
+ */
6
41
  declare const AccordionContent: React.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
7
42
  export { Accordion, AccordionItem, AccordionTrigger, AccordionContent };
@@ -1,5 +1,10 @@
1
1
  import React from 'react';
2
2
  import { type ButtonProps } from './button';
3
+ /**
4
+ * Props do `ActionButton`. Aceita variantes de botão e qualquer atributo HTML de `<button>`.
5
+ * @example
6
+ * const props: ActionButtonProps = { variant: 'action-secondary', onClick: openMenu };
7
+ */
3
8
  interface ActionButtonProps extends Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, 'children'> {
4
9
  children?: React.ReactNode;
5
10
  variant?: ButtonProps['variant'];
@@ -1,20 +1,102 @@
1
+ /**
2
+ * @module AlertDialog
3
+ * Diálogo modal **não-dismissable** para confirmação de ações destrutivas/irreversíveis
4
+ * (excluir, descartar). Difere de `Dialog`: não pode ser fechado clicando fora ou ESC sem
5
+ * uma escolha explícita (`AlertDialogAction` ou `AlertDialogCancel`).
6
+ *
7
+ * Para diálogos de formulário, edição ou exibição livre de conteúdo, use `Dialog`.
8
+ *
9
+ * @example
10
+ * ```tsx
11
+ * <AlertDialog>
12
+ * <AlertDialogTrigger asChild><Button variant="danger">Excluir</Button></AlertDialogTrigger>
13
+ * <AlertDialogContent>
14
+ * <AlertDialogHeader>
15
+ * <AlertDialogTitle>Confirmar exclusão</AlertDialogTitle>
16
+ * <AlertDialogDescription>Esta ação não pode ser desfeita.</AlertDialogDescription>
17
+ * </AlertDialogHeader>
18
+ * <AlertDialogFooter>
19
+ * <AlertDialogCancel>Cancelar</AlertDialogCancel>
20
+ * <AlertDialogAction onClick={onDelete}>Excluir</AlertDialogAction>
21
+ * </AlertDialogFooter>
22
+ * </AlertDialogContent>
23
+ * </AlertDialog>
24
+ * ```
25
+ *
26
+ * @see `docs/design-system/dialogs.md`
27
+ */
1
28
  import * as React from "react";
2
29
  import * as AlertDialogPrimitive from "@radix-ui/react-alert-dialog";
30
+ /**
31
+ * Raiz do AlertDialog. Controla estado open/onOpenChange.
32
+ * @example
33
+ * <AlertDialog open={open} onOpenChange={setOpen}>...</AlertDialog>
34
+ */
3
35
  declare const AlertDialog: React.FC<AlertDialogPrimitive.AlertDialogProps>;
36
+ /**
37
+ * Elemento que dispara a abertura do AlertDialog. Use `asChild` para customizar.
38
+ * @example
39
+ * <AlertDialogTrigger asChild><Button variant="danger">Excluir</Button></AlertDialogTrigger>
40
+ */
4
41
  declare const AlertDialogTrigger: React.ForwardRefExoticComponent<AlertDialogPrimitive.AlertDialogTriggerProps & React.RefAttributes<HTMLButtonElement>>;
42
+ /**
43
+ * Portal que renderiza o conteúdo fora da árvore DOM atual.
44
+ * @example
45
+ * <AlertDialogPortal><AlertDialogOverlay /><AlertDialogContent>...</AlertDialogContent></AlertDialogPortal>
46
+ */
5
47
  declare const AlertDialogPortal: React.FC<AlertDialogPrimitive.AlertDialogPortalProps>;
48
+ /**
49
+ * Overlay escuro renderizado atrás do conteúdo. Usado internamente por `AlertDialogContent`.
50
+ * @example
51
+ * <AlertDialogPortal><AlertDialogOverlay /></AlertDialogPortal>
52
+ */
6
53
  declare const AlertDialogOverlay: React.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogOverlayProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
54
+ /**
55
+ * Container do conteúdo modal centralizado. Inclui automaticamente Portal e Overlay.
56
+ * @example
57
+ * <AlertDialogContent><AlertDialogHeader>...</AlertDialogHeader></AlertDialogContent>
58
+ */
7
59
  declare const AlertDialogContent: React.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
60
+ /**
61
+ * Cabeçalho do AlertDialog. Agrupa `AlertDialogTitle` e `AlertDialogDescription`.
62
+ * @example
63
+ * <AlertDialogHeader><AlertDialogTitle>Confirmar</AlertDialogTitle></AlertDialogHeader>
64
+ */
8
65
  declare const AlertDialogHeader: {
9
66
  ({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
10
67
  displayName: string;
11
68
  };
69
+ /**
70
+ * Rodapé do AlertDialog. Alinha botões de ação à direita em desktop.
71
+ * @example
72
+ * <AlertDialogFooter><AlertDialogCancel>Cancelar</AlertDialogCancel><AlertDialogAction>OK</AlertDialogAction></AlertDialogFooter>
73
+ */
12
74
  declare const AlertDialogFooter: {
13
75
  ({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
14
76
  displayName: string;
15
77
  };
78
+ /**
79
+ * Título do AlertDialog (text-lg, font-semibold).
80
+ * @example
81
+ * <AlertDialogTitle>Confirmar exclusão</AlertDialogTitle>
82
+ */
16
83
  declare const AlertDialogTitle: React.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogTitleProps & React.RefAttributes<HTMLHeadingElement>, "ref"> & React.RefAttributes<HTMLHeadingElement>>;
84
+ /**
85
+ * Descrição/contexto da ação (text-sm, muted).
86
+ * @example
87
+ * <AlertDialogDescription>Esta ação não pode ser desfeita.</AlertDialogDescription>
88
+ */
17
89
  declare const AlertDialogDescription: React.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogDescriptionProps & React.RefAttributes<HTMLParagraphElement>, "ref"> & React.RefAttributes<HTMLParagraphElement>>;
90
+ /**
91
+ * Botão de ação confirmatória. Estiliza com `buttonVariants()` padrão.
92
+ * @example
93
+ * <AlertDialogAction onClick={onDelete}>Excluir</AlertDialogAction>
94
+ */
18
95
  declare const AlertDialogAction: React.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogActionProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
96
+ /**
97
+ * Botão de cancelamento (variante outline). Fecha o dialog sem confirmar.
98
+ * @example
99
+ * <AlertDialogCancel>Cancelar</AlertDialogCancel>
100
+ */
19
101
  declare const AlertDialogCancel: React.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogCancelProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
20
102
  export { AlertDialog, AlertDialogPortal, AlertDialogOverlay, AlertDialogTrigger, AlertDialogContent, AlertDialogHeader, AlertDialogFooter, AlertDialogTitle, AlertDialogDescription, AlertDialogAction, AlertDialogCancel, };