@adaptabletools/adaptable-cjs 22.1.1 → 23.0.0-canary.1

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 (1033) hide show
  1. package/devtools.d.ts +70 -0
  2. package/icons/bullet-chart.svg +1 -0
  3. package/icons/horizontal-lines.svg +1 -1
  4. package/icons/icon-style.svg +1 -0
  5. package/icons/percent-tag.svg +1 -1
  6. package/icons/range-bar.svg +1 -0
  7. package/icons/star.svg +1 -0
  8. package/index.css +2267 -333
  9. package/package.json +10 -5
  10. package/src/AdaptableInterfaces/IAdaptable.d.ts +5 -2
  11. package/src/AdaptableOptions/ActionColumnOptions.d.ts +27 -1
  12. package/src/AdaptableOptions/ChartingOptions.d.ts +7 -0
  13. package/src/AdaptableOptions/ColumnMenuOptions.d.ts +30 -0
  14. package/src/AdaptableOptions/ContextMenuOptions.d.ts +30 -0
  15. package/src/AdaptableOptions/DashboardOptions.d.ts +56 -2
  16. package/src/AdaptableOptions/DefaultAdaptableOptions.js +13 -6
  17. package/src/AdaptableOptions/EditOptions.d.ts +34 -4
  18. package/src/AdaptableOptions/NotificationsOptions.d.ts +1 -1
  19. package/src/AdaptableOptions/RowFormOptions.d.ts +46 -2
  20. package/src/AdaptableOptions/UserInterfaceOptions.d.ts +3 -3
  21. package/src/AdaptableState/AdaptableState.d.ts +0 -2
  22. package/src/AdaptableState/AlertState.d.ts +65 -24
  23. package/src/AdaptableState/CalculatedColumnState.d.ts +1 -1
  24. package/src/AdaptableState/ChartingState.d.ts +2 -2
  25. package/src/AdaptableState/Common/AdaptableButton.d.ts +5 -0
  26. package/src/AdaptableState/Common/AdaptableColumn.d.ts +5 -0
  27. package/src/AdaptableState/Common/AdaptableForm.d.ts +304 -16
  28. package/src/AdaptableState/Common/AdaptableForm.js +218 -2
  29. package/src/AdaptableState/Common/AdaptableIcon.d.ts +1 -1
  30. package/src/AdaptableState/Common/AdaptablePredicate.js +22 -2
  31. package/src/AdaptableState/Common/AdaptableStyle.d.ts +48 -18
  32. package/src/AdaptableState/Common/AggregationColumns.d.ts +6 -1
  33. package/src/AdaptableState/Common/AggregationColumns.js +2 -4
  34. package/src/AdaptableState/Common/Enums.d.ts +1 -4
  35. package/src/AdaptableState/Common/Enums.js +0 -3
  36. package/src/AdaptableState/Common/ExtendedLayout.d.ts +3 -3
  37. package/src/AdaptableState/Common/Menu.d.ts +1 -1
  38. package/src/AdaptableState/Common/Menu.js +11 -0
  39. package/src/AdaptableState/Common/Schedule.d.ts +7 -29
  40. package/src/AdaptableState/Common/Types.d.ts +4 -4
  41. package/src/AdaptableState/Common/Types.js +0 -2
  42. package/src/AdaptableState/DashboardState.d.ts +0 -5
  43. package/src/AdaptableState/ExportState.d.ts +19 -6
  44. package/src/AdaptableState/IPushPullState.d.ts +0 -14
  45. package/src/AdaptableState/InitialState.d.ts +2 -6
  46. package/src/AdaptableState/LayoutState.d.ts +17 -0
  47. package/src/AdaptableState/OpenFinState.d.ts +0 -14
  48. package/src/AdaptableState/PlusMinusState.d.ts +8 -0
  49. package/src/AdaptableState/StyledColumnState.d.ts +742 -18
  50. package/src/Aggregation/ParameterizedAggregationRegistry.d.ts +35 -0
  51. package/src/Aggregation/ParameterizedAggregationRegistry.js +74 -0
  52. package/src/Aggregation/definitions/weightedAverageAggregationDefinition.d.ts +3 -0
  53. package/src/Aggregation/definitions/weightedAverageAggregationDefinition.js +58 -0
  54. package/src/Aggregation/parameterizedAggregationColumnMenu.d.ts +8 -0
  55. package/src/Aggregation/parameterizedAggregationColumnMenu.js +143 -0
  56. package/src/Aggregation/parameterizedAggregationHeader.d.ts +13 -0
  57. package/src/Aggregation/parameterizedAggregationHeader.js +65 -0
  58. package/src/Aggregation/parameterizedAggregationHelpers.d.ts +23 -0
  59. package/src/Aggregation/parameterizedAggregationHelpers.js +121 -0
  60. package/src/Aggregation/parameterizedAggregationWizardHelpers.d.ts +9 -0
  61. package/src/Aggregation/parameterizedAggregationWizardHelpers.js +74 -0
  62. package/src/Aggregation/validateParameterizedAggregations.d.ts +4 -0
  63. package/src/Aggregation/validateParameterizedAggregations.js +25 -0
  64. package/src/Api/AdaptableApi.d.ts +0 -5
  65. package/src/Api/AlertApi.d.ts +7 -3
  66. package/src/Api/ChartingApi.d.ts +1 -1
  67. package/src/Api/ColumnFilterApi.d.ts +4 -0
  68. package/src/Api/ColumnMenuApi.d.ts +1 -1
  69. package/src/Api/ColumnScopeApi.d.ts +6 -2
  70. package/src/Api/DashboardApi.d.ts +13 -0
  71. package/src/Api/EventApi.d.ts +7 -8
  72. package/src/Api/Events/ReportScheduleRan.d.ts +11 -0
  73. package/src/Api/ExportApi.d.ts +42 -1
  74. package/src/Api/GridApi.d.ts +2 -2
  75. package/src/Api/GridFilterApi.d.ts +10 -3
  76. package/src/Api/IPushPullApi.d.ts +1 -5
  77. package/src/Api/Implementation/AdaptableApiImpl.d.ts +0 -2
  78. package/src/Api/Implementation/AdaptableApiImpl.js +0 -4
  79. package/src/Api/Implementation/AlertApiImpl.d.ts +7 -6
  80. package/src/Api/Implementation/AlertApiImpl.js +26 -6
  81. package/src/Api/Implementation/ApiBase.d.ts +1 -2
  82. package/src/Api/Implementation/ApiBase.js +0 -3
  83. package/src/Api/Implementation/ChartingApiImpl.d.ts +1 -1
  84. package/src/Api/Implementation/ChartingApiImpl.js +24 -2
  85. package/src/Api/Implementation/ColumnFilterApiImpl.d.ts +1 -0
  86. package/src/Api/Implementation/ColumnFilterApiImpl.js +3 -0
  87. package/src/Api/Implementation/ColumnScopeApiImpl.js +19 -25
  88. package/src/Api/Implementation/DashboardApiImpl.d.ts +1 -0
  89. package/src/Api/Implementation/DashboardApiImpl.js +5 -2
  90. package/src/Api/Implementation/ExportApiImpl.d.ts +12 -1
  91. package/src/Api/Implementation/ExportApiImpl.js +37 -0
  92. package/src/Api/Implementation/GridFilterApiImpl.d.ts +1 -1
  93. package/src/Api/Implementation/GridFilterApiImpl.js +6 -0
  94. package/src/Api/Implementation/LayoutApiImpl.d.ts +2 -0
  95. package/src/Api/Implementation/LayoutApiImpl.js +31 -36
  96. package/src/Api/Implementation/LayoutHelpers.js +7 -13
  97. package/src/Api/Implementation/QuickSearchApiImpl.d.ts +5 -3
  98. package/src/Api/Implementation/QuickSearchApiImpl.js +10 -3
  99. package/src/Api/Implementation/SmartEditApiImpl.js +1 -1
  100. package/src/Api/Implementation/StateApiImpl.d.ts +5 -3
  101. package/src/Api/Implementation/StateApiImpl.js +21 -18
  102. package/src/Api/Implementation/StyledColumnApiImpl.d.ts +3 -0
  103. package/src/Api/Implementation/StyledColumnApiImpl.js +15 -0
  104. package/src/Api/Implementation/UserInterfaceApiImpl.js +11 -12
  105. package/src/Api/Internal/ActionColumnInternalApi.js +7 -1
  106. package/src/Api/Internal/AdaptableInternalApi.d.ts +1 -0
  107. package/src/Api/Internal/AdaptableInternalApi.js +3 -0
  108. package/src/Api/Internal/AlertInternalApi.d.ts +4 -4
  109. package/src/Api/Internal/AlertInternalApi.js +28 -10
  110. package/src/Api/Internal/ChartingInternalApi.js +8 -3
  111. package/src/Api/Internal/DashboardInternalApi.d.ts +27 -0
  112. package/src/Api/Internal/DashboardInternalApi.js +41 -0
  113. package/src/Api/Internal/EventInternalApi.d.ts +2 -3
  114. package/src/Api/Internal/EventInternalApi.js +4 -4
  115. package/src/Api/Internal/FormatColumnInternalApi.d.ts +6 -0
  116. package/src/Api/Internal/FormatColumnInternalApi.js +6 -0
  117. package/src/Api/Internal/GridInternalApi.js +3 -2
  118. package/src/Api/Internal/LayoutInternalApi.js +4 -1
  119. package/src/Api/Internal/RowFormInternalApi.js +23 -1
  120. package/src/Api/Internal/StateInternalApi.d.ts +10 -0
  121. package/src/Api/Internal/StateInternalApi.js +88 -0
  122. package/src/Api/Internal/StyledColumnInternalApi.d.ts +2 -0
  123. package/src/Api/Internal/StyledColumnInternalApi.js +104 -30
  124. package/src/Api/LayoutApi.d.ts +8 -1
  125. package/src/Api/OpenFinApi.d.ts +1 -5
  126. package/src/Api/PlusMinusApi.d.ts +3 -1
  127. package/src/Api/QuickSearchApi.d.ts +18 -7
  128. package/src/Api/StateApi.d.ts +4 -15
  129. package/src/Api/StyledColumnApi.d.ts +16 -0
  130. package/src/Redux/ActionsReducers/DashboardRedux.d.ts +0 -8
  131. package/src/Redux/ActionsReducers/DashboardRedux.js +1 -15
  132. package/src/Redux/ActionsReducers/ExportRedux.d.ts +40 -1
  133. package/src/Redux/ActionsReducers/ExportRedux.js +107 -3
  134. package/src/Redux/ActionsReducers/InternalRedux.d.ts +0 -5
  135. package/src/Redux/ActionsReducers/InternalRedux.js +12 -11
  136. package/src/Redux/ActionsReducers/QuickSearchRedux.d.ts +27 -2
  137. package/src/Redux/ActionsReducers/QuickSearchRedux.js +40 -4
  138. package/src/Redux/Store/AdaptableStore.js +58 -59
  139. package/src/Strategy/AlertModule.d.ts +4 -1
  140. package/src/Strategy/AlertModule.js +42 -5
  141. package/src/Strategy/CalculatedColumnModule.d.ts +1 -1
  142. package/src/Strategy/CellSummaryModule.d.ts +1 -1
  143. package/src/Strategy/ChartingModule.d.ts +2 -1
  144. package/src/Strategy/ChartingModule.js +24 -1
  145. package/src/Strategy/ColumnFilterModule.d.ts +1 -1
  146. package/src/Strategy/ColumnInfoModule.d.ts +1 -1
  147. package/src/Strategy/ExportModule.d.ts +5 -1
  148. package/src/Strategy/ExportModule.js +62 -7
  149. package/src/Strategy/FlashingCellModule.d.ts +1 -1
  150. package/src/Strategy/FormatColumnModule.d.ts +1 -1
  151. package/src/Strategy/FreeTextColumnModule.d.ts +1 -1
  152. package/src/Strategy/GridInfoModule.d.ts +1 -1
  153. package/src/Strategy/Interface/IAlertModule.d.ts +5 -0
  154. package/src/Strategy/Interface/IExportModule.d.ts +4 -0
  155. package/src/Strategy/Interface/IModule.d.ts +16 -1
  156. package/src/Strategy/LayoutModule.d.ts +1 -1
  157. package/src/Strategy/LayoutModule.js +11 -26
  158. package/src/Strategy/PlusMinusModule.d.ts +6 -1
  159. package/src/Strategy/PlusMinusModule.js +79 -27
  160. package/src/Strategy/QuickSearchModule.js +0 -12
  161. package/src/Strategy/SettingsPanelModule.d.ts +1 -1
  162. package/src/Strategy/ShortcutModule.js +5 -5
  163. package/src/Strategy/StyledColumnModule.d.ts +1 -1
  164. package/src/Strategy/StyledColumnModule.js +198 -23
  165. package/src/Strategy/SystemStatusModule.d.ts +1 -1
  166. package/src/Strategy/Utilities/Alert/getAlertPreviewViewItems.js +3 -4
  167. package/src/Strategy/Utilities/Export/formatScheduledReportSummary.d.ts +2 -0
  168. package/src/Strategy/Utilities/Export/formatScheduledReportSummary.js +10 -0
  169. package/src/Strategy/Utilities/Export/getExportRowsViewItems.js +3 -4
  170. package/src/Strategy/Utilities/Export/getReportSchedulesViewItems.d.ts +2 -0
  171. package/src/Strategy/Utilities/Export/getReportSchedulesViewItems.js +8 -0
  172. package/src/Utilities/Constants/DocumentationLinkConstants.d.ts +1 -1
  173. package/src/Utilities/Constants/DocumentationLinkConstants.js +1 -1
  174. package/src/Utilities/Constants/ModuleConstants.d.ts +0 -3
  175. package/src/Utilities/Constants/ModuleConstants.js +1 -4
  176. package/src/Utilities/Constants/ReduxConstants.d.ts +3 -1
  177. package/src/Utilities/Constants/ReduxConstants.js +6 -4
  178. package/src/Utilities/Defaults/DefaultSettingsPanel.js +0 -1
  179. package/src/Utilities/Extensions/NumberExtensions.js +1 -1
  180. package/src/Utilities/Helpers/ActionColumnWidthHelper.d.ts +6 -0
  181. package/src/Utilities/Helpers/ActionColumnWidthHelper.js +59 -0
  182. package/src/Utilities/Helpers/IconStylePresets.d.ts +6 -0
  183. package/src/Utilities/Helpers/IconStylePresets.js +136 -0
  184. package/src/Utilities/Helpers/QuickSearchStyleHelper.d.ts +12 -0
  185. package/src/Utilities/Helpers/QuickSearchStyleHelper.js +84 -0
  186. package/src/Utilities/Helpers/ScheduleHelper.d.ts +22 -0
  187. package/src/Utilities/Helpers/ScheduleHelper.js +246 -0
  188. package/src/Utilities/Helpers/ScheduleJobManager.d.ts +11 -0
  189. package/src/Utilities/Helpers/ScheduleJobManager.js +28 -0
  190. package/src/Utilities/Helpers/ScheduleJobRunner.d.ts +8 -0
  191. package/src/Utilities/Helpers/ScheduleJobRunner.js +30 -0
  192. package/src/Utilities/Helpers/ScheduledAlertHelper.d.ts +8 -0
  193. package/src/Utilities/Helpers/ScheduledAlertHelper.js +60 -0
  194. package/src/Utilities/Helpers/ScheduledJobsMiddlewareHelper.d.ts +3 -0
  195. package/src/Utilities/Helpers/ScheduledJobsMiddlewareHelper.js +14 -0
  196. package/src/Utilities/Helpers/ScheduledReportHelper.d.ts +16 -0
  197. package/src/Utilities/Helpers/ScheduledReportHelper.js +59 -0
  198. package/src/Utilities/Helpers/StyleHelper.d.ts +35 -0
  199. package/src/Utilities/Helpers/StyleHelper.js +90 -1
  200. package/src/Utilities/Helpers/StyledColumnGradientHelper.d.ts +30 -0
  201. package/src/Utilities/Helpers/StyledColumnGradientHelper.js +47 -0
  202. package/src/Utilities/Helpers/alertFormHelper.d.ts +2 -0
  203. package/src/Utilities/Helpers/alertFormHelper.js +14 -0
  204. package/src/Utilities/Helpers/chartingHelper.d.ts +14 -0
  205. package/src/Utilities/Helpers/chartingHelper.js +125 -0
  206. package/src/Utilities/Helpers/iconStyledColumnColumnSupport.d.ts +5 -0
  207. package/src/Utilities/Helpers/iconStyledColumnColumnSupport.js +18 -0
  208. package/src/Utilities/Helpers/plusMinusTriggerKeys.d.ts +41 -0
  209. package/src/Utilities/Helpers/plusMinusTriggerKeys.js +100 -0
  210. package/src/Utilities/Helpers/styledColumnRowKindSupport.d.ts +25 -0
  211. package/src/Utilities/Helpers/styledColumnRowKindSupport.js +70 -0
  212. package/src/Utilities/ObjectFactory.d.ts +7 -28
  213. package/src/Utilities/ObjectFactory.js +18 -110
  214. package/src/Utilities/Services/AlertService.js +3 -0
  215. package/src/Utilities/Services/ModuleService.js +0 -2
  216. package/src/Utilities/Services/QueryLanguageService.js +1 -1
  217. package/src/Utilities/Services/ValidationService.js +9 -3
  218. package/src/Utilities/createAgStatusPanelComponent.js +3 -2
  219. package/src/Utilities/getExpressionViewItems.js +2 -4
  220. package/src/Utilities/getObjectTagsViewItems.js +2 -1
  221. package/src/View/AdaptableComputedCSSVarsContext.js +4 -5
  222. package/src/View/AdaptablePopover/index.js +10 -19
  223. package/src/View/AdaptableView.js +8 -18
  224. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/AdaptableOptionsForm.js +15 -25
  225. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ColumnsList.js +32 -43
  226. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/Components/FormBox.js +2 -3
  227. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationWizard.js +7 -6
  228. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationWizardColumnsStep.js +2 -2
  229. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/EntitlementsForm.js +11 -18
  230. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/GridOptionsForm.js +22 -32
  231. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/UIOptions/UIOptionsSidebarForm.js +6 -12
  232. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/UIOptions/UIOptionsStatusbarForm.js +7 -19
  233. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/UIOptions/UiOptionsForm.js +2 -11
  234. package/src/View/AdaptableWizardView/Wizard.js +3 -6
  235. package/src/View/AdaptableWizardView/index.js +2 -3
  236. package/src/View/Alert/ActiveAlertsPanel.js +2 -2
  237. package/src/View/Alert/ActiveAlertsPanelItemLabel.js +3 -5
  238. package/src/View/Alert/AlertEmptyView.js +2 -3
  239. package/src/View/Alert/AlertStatusSubPanel.js +3 -2
  240. package/src/View/Alert/AlertViewPanel.js +4 -8
  241. package/src/View/Alert/Utilities/getAlertType.d.ts +2 -1
  242. package/src/View/Alert/Utilities/getAlertType.js +10 -2
  243. package/src/View/Alert/Utilities/getDefaultAlertDefinition.d.ts +17 -3
  244. package/src/View/Alert/Utilities/getDefaultAlertDefinition.js +8 -0
  245. package/src/View/Alert/Utilities/mapAlertDefinition.d.ts +1 -1
  246. package/src/View/Alert/Utilities/mapAlertDefinition.js +4 -0
  247. package/src/View/Alert/Wizard/AlertBehaviourWizardSection.js +67 -97
  248. package/src/View/Alert/Wizard/AlertButtonsEditor.js +112 -159
  249. package/src/View/Alert/Wizard/AlertMessageWizardSection.d.ts +1 -1
  250. package/src/View/Alert/Wizard/AlertMessageWizardSection.js +23 -36
  251. package/src/View/Alert/Wizard/AlertNotificationWizardSection.js +94 -61
  252. package/src/View/Alert/Wizard/AlertRulesWizardSection.js +24 -38
  253. package/src/View/Alert/Wizard/AlertScheduledWizardSection.d.ts +9 -0
  254. package/src/View/Alert/Wizard/AlertScheduledWizardSection.js +38 -0
  255. package/src/View/Alert/Wizard/AlertScopeWizardSection.js +9 -6
  256. package/src/View/Alert/Wizard/AlertTypeWizardSection.js +3 -24
  257. package/src/View/Alert/Wizard/AlertWizard.js +36 -31
  258. package/src/View/Alert/Wizard/BaseAlertScopeWizardSection.d.ts +1 -3
  259. package/src/View/Alert/Wizard/BaseAlertScopeWizardSection.js +13 -17
  260. package/src/View/Alert/Wizard/isValidAlertMessage.d.ts +3 -0
  261. package/src/View/Alert/Wizard/isValidAlertMessage.js +19 -0
  262. package/src/View/Alert/Wizard/isValidAlertRules.js +4 -0
  263. package/src/View/BulkUpdate/BulkUpdatePopup.js +11 -25
  264. package/src/View/BulkUpdate/BulkUpdateViewPanel.js +9 -14
  265. package/src/View/CalculatedColumn/Wizard/CalculatedColumnDefinitionWizardSection.js +9 -30
  266. package/src/View/CalculatedColumn/Wizard/CalculatedColumnExpressionWizardSection.js +14 -20
  267. package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.js +8 -18
  268. package/src/View/CalculatedColumn/Wizard/CalculatedColumnTypeSection.js +2 -10
  269. package/src/View/CalculatedColumn/Wizard/CalculatedColumnWizard.js +9 -17
  270. package/src/View/CellSummary/CellSummaryDetails.js +2 -3
  271. package/src/View/CellSummary/CellSummaryPopover.js +2 -3
  272. package/src/View/CellSummary/CellSummaryPopup.js +2 -2
  273. package/src/View/CellSummary/CellSummaryStatusBarSubPanelPopover.js +4 -6
  274. package/src/View/CellSummary/CellSummaryStatusPanel.js +2 -1
  275. package/src/View/CellSummary/CellSummaryViewPanel.js +8 -12
  276. package/src/View/Charting/ChartingStatusBarPopover.js +2 -8
  277. package/src/View/Charting/ChartingViewPanel.js +3 -18
  278. package/src/View/Charting/ChartingWizard/AgChargingWizard/AgChargingWizard.js +5 -7
  279. package/src/View/Charting/ChartingWizard/AgChargingWizard/PreviewChartSection.js +2 -1
  280. package/src/View/Charting/ChartingWizard/AgChargingWizard/SettingsSection.js +4 -18
  281. package/src/View/Charting/ChartingWizard/ChartingWizard.js +3 -4
  282. package/src/View/Charting/ChartingWizard/ExternalChartingWizard/ExternalChartingWizard.js +5 -6
  283. package/src/View/Charting/ChartingWizard/ExternalChartingWizard/SettingsSection.js +5 -14
  284. package/src/View/Charting/DeleteChartButton.js +2 -2
  285. package/src/View/Charting/EditChartButton.js +2 -2
  286. package/src/View/Charting/ShowChartButton.js +9 -10
  287. package/src/View/Charting/useChartingElements.js +8 -7
  288. package/src/View/ColumnInfo/ColumnInfo.js +11 -26
  289. package/src/View/ColumnInfo/ColumnInfoPopup.js +2 -5
  290. package/src/View/Comments/CommentsEditor.js +44 -61
  291. package/src/View/Comments/CommentsPopup.js +12 -30
  292. package/src/View/Components/AdaptableButton/AdaptableButtonComponent.d.ts +4 -0
  293. package/src/View/Components/AdaptableButton/AdaptableButtonComponent.js +18 -0
  294. package/src/View/Components/AdaptableButton/AdaptableButtonView.d.ts +58 -0
  295. package/src/View/Components/AdaptableButton/AdaptableButtonView.js +52 -0
  296. package/src/View/Components/AdaptableButton/index.d.ts +3 -3
  297. package/src/View/Components/AdaptableButton/index.js +6 -16
  298. package/src/View/Components/AdaptableDateInput/index.js +2 -1
  299. package/src/View/Components/AdaptableIconComponent/index.js +2 -3
  300. package/src/View/Components/AdaptableIconSelector/index.js +2 -3
  301. package/src/View/Components/AdaptableInput/AdaptableDateInlineInput.js +6 -2
  302. package/src/View/Components/AdaptableInput/index.js +3 -2
  303. package/src/View/Components/AdaptableObjectCollection/index.js +5 -8
  304. package/src/View/Components/AdaptableObjectList/AdaptableObjectCompactList.js +9 -21
  305. package/src/View/Components/AdaptableObjectList/AdaptableObjectList.d.ts +1 -0
  306. package/src/View/Components/AdaptableObjectList/AdaptableObjectList.js +26 -44
  307. package/src/View/Components/AdaptableObjectRow/index.js +3 -2
  308. package/src/View/Components/Badge/index.d.ts +17 -3
  309. package/src/View/Components/Badge/index.js +67 -10
  310. package/src/View/Components/Buttons/ButtonApply.js +2 -1
  311. package/src/View/Components/Buttons/ButtonBase/index.js +10 -20
  312. package/src/View/Components/Buttons/ButtonClear.js +2 -1
  313. package/src/View/Components/Buttons/ButtonClone.js +2 -2
  314. package/src/View/Components/Buttons/ButtonClose.js +2 -1
  315. package/src/View/Components/Buttons/ButtonConfigure.js +2 -1
  316. package/src/View/Components/Buttons/ButtonDelete.js +2 -2
  317. package/src/View/Components/Buttons/ButtonEdit.js +2 -2
  318. package/src/View/Components/Buttons/ButtonExpand.js +3 -1
  319. package/src/View/Components/Buttons/ButtonExport.js +2 -1
  320. package/src/View/Components/Buttons/ButtonInfo.js +2 -2
  321. package/src/View/Components/Buttons/ButtonInvalid.js +2 -1
  322. package/src/View/Components/Buttons/ButtonLogin.js +2 -1
  323. package/src/View/Components/Buttons/ButtonLogout.js +2 -1
  324. package/src/View/Components/Buttons/ButtonMaximise.js +2 -1
  325. package/src/View/Components/Buttons/ButtonMinimise.js +2 -1
  326. package/src/View/Components/Buttons/ButtonNew.js +2 -2
  327. package/src/View/Components/Buttons/ButtonNewPage.js +2 -1
  328. package/src/View/Components/Buttons/ButtonOpen.js +2 -1
  329. package/src/View/Components/Buttons/ButtonPause.js +2 -2
  330. package/src/View/Components/Buttons/ButtonPlay.js +2 -2
  331. package/src/View/Components/Buttons/ButtonSave.js +2 -1
  332. package/src/View/Components/Buttons/ButtonSchedule.js +2 -2
  333. package/src/View/Components/Buttons/ButtonShare.js +5 -6
  334. package/src/View/Components/Buttons/ButtonStop.js +2 -1
  335. package/src/View/Components/Buttons/ButtonUnsuspend.js +2 -1
  336. package/src/View/Components/Buttons/EntityListActionButtons.js +2 -6
  337. package/src/View/Components/Buttons/SuspendToggleButton/SuspendToggleButton.js +2 -1
  338. package/src/View/Components/CellPopup/index.js +2 -1
  339. package/src/View/Components/ColumnFilter/AdaptableColumnFilter.d.ts +6 -1
  340. package/src/View/Components/ColumnFilter/AdaptableColumnFilter.js +18 -4
  341. package/src/View/Components/ColumnFilter/AdaptableFloatingFilter.js +2 -1
  342. package/src/View/Components/ColumnFilter/ColumnFilter.d.ts +2 -1
  343. package/src/View/Components/ColumnFilter/ColumnFilter.js +58 -66
  344. package/src/View/Components/ColumnFilter/ColumnFilterWindow.js +16 -17
  345. package/src/View/Components/ColumnFilter/FloatingFilter.js +28 -31
  346. package/src/View/Components/ColumnFilter/LayoutColumnFilter.js +2 -3
  347. package/src/View/Components/ColumnFilter/columnFilterLocation.d.ts +2 -0
  348. package/src/View/Components/ColumnFilter/columnFilterLocation.js +5 -0
  349. package/src/View/Components/ColumnFilter/components/ColumnFilterInput.js +9 -10
  350. package/src/View/Components/ColumnFilter/components/ColumnFilterInputList.js +22 -24
  351. package/src/View/Components/ColumnFilter/components/ColumnFilterMenu.js +9 -11
  352. package/src/View/Components/ColumnFilter/components/FloatingFilterInputList.js +32 -24
  353. package/src/View/Components/ColumnFilter/components/FloatingFilterValues.js +7 -47
  354. package/src/View/Components/ColumnGroupTag/index.js +2 -5
  355. package/src/View/Components/ColumnSelector/index.js +3 -6
  356. package/src/View/Components/EntityRowItem.js +2 -3
  357. package/src/View/Components/EntityRulesEditor/EntityRulePredicatesEditor/EntityRulePredicateEditor.js +5 -12
  358. package/src/View/Components/EntityRulesEditor/EntityRulePredicatesEditor/EntityRulePredicatesEditor.js +9 -25
  359. package/src/View/Components/EntityRulesEditor/index.js +17 -38
  360. package/src/View/Components/ExternalRenderer.js +2 -2
  361. package/src/View/Components/FilterForm/ListBoxFilterForm.d.ts +3 -2
  362. package/src/View/Components/FilterForm/ListBoxFilterForm.js +81 -26
  363. package/src/View/Components/Forms/AdaptableFormControlTextClear.js +23 -25
  364. package/src/View/Components/ModuleProfile.js +4 -7
  365. package/src/View/Components/ModuleSummary/ModuleDetail.js +6 -5
  366. package/src/View/Components/ModuleSummary/ModuleHeader.js +4 -4
  367. package/src/View/Components/ModuleSummary/SummaryRowItem.js +2 -2
  368. package/src/View/Components/ModuleValueSelector/index.js +2 -2
  369. package/src/View/Components/NewScopeComponent.js +15 -46
  370. package/src/View/Components/Panels/PanelDashboard/index.js +2 -1
  371. package/src/View/Components/Panels/PanelToolPanel/index.js +3 -6
  372. package/src/View/Components/Panels/PanelWithButton.js +3 -11
  373. package/src/View/Components/Panels/PanelWithImage.js +5 -13
  374. package/src/View/Components/Panels/PanelWithRow.js +5 -5
  375. package/src/View/Components/Popups/AdaptableLoadingScreen.js +2 -4
  376. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopup.js +7 -12
  377. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupBody.js +2 -3
  378. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupDialog.js +7 -7
  379. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupModuleView.js +19 -18
  380. package/src/View/Components/Popups/AdaptablePopup/CustomSettingsPanelView.js +2 -3
  381. package/src/View/Components/Popups/AdaptablePopup/Navigation.js +15 -19
  382. package/src/View/Components/Popups/AdaptablePopup/PopupPanel.js +3 -12
  383. package/src/View/Components/Popups/AdaptablePopup/TopBar.js +6 -8
  384. package/src/View/Components/Popups/AdaptablePopupAlert.js +20 -26
  385. package/src/View/Components/Popups/AdaptablePopupConfirmation.js +7 -19
  386. package/src/View/Components/Popups/AdaptablePopupPrompt.js +4 -15
  387. package/src/View/Components/Popups/AdaptablePopupTeamSharing.js +2 -27
  388. package/src/View/Components/Popups/AdaptableToaster.js +2 -2
  389. package/src/View/Components/Popups/FormPopups/FormPopups.js +6 -7
  390. package/src/View/Components/Popups/GridCellPopup/GridCellPopup.js +15 -17
  391. package/src/View/Components/Popups/WindowPopups/WindowPopups.js +42 -42
  392. package/src/View/Components/Popups/WindowPopups/windowFactory.js +0 -2
  393. package/src/View/Components/PredicateEditor/PredicateEditor.js +15 -24
  394. package/src/View/Components/PreviewResultsPanel.js +4 -9
  395. package/src/View/Components/RangesComponent.d.ts +31 -5
  396. package/src/View/Components/RangesComponent.js +136 -82
  397. package/src/View/Components/ReorderDraggable/index.js +10 -18
  398. package/src/View/Components/Selectors/BulkUpdateValueSelector.js +13 -17
  399. package/src/View/Components/Selectors/ColumnSelector.d.ts +1 -2
  400. package/src/View/Components/Selectors/ColumnSelector.js +21 -7
  401. package/src/View/Components/Selectors/FieldSelector.d.ts +0 -2
  402. package/src/View/Components/Selectors/FieldSelector.js +5 -5
  403. package/src/View/Components/Selectors/PermittedValuesSelector.d.ts +0 -2
  404. package/src/View/Components/Selectors/PermittedValuesSelector.js +31 -2
  405. package/src/View/Components/SharedProps/EditableConfigEntityState.js +0 -1
  406. package/src/View/Components/SharedProps/ModuleViewPopupProps.d.ts +1 -1
  407. package/src/View/Components/StyleComponent.d.ts +0 -2
  408. package/src/View/Components/StyleComponent.js +27 -131
  409. package/src/View/Components/StyleVisualItem.js +4 -4
  410. package/src/View/Components/TagValueSelector/index.js +3 -4
  411. package/src/View/Components/ToolPanel/AdaptableToolPanel.js +18 -40
  412. package/src/View/Components/ToolPanel/CustomToolPanelContent.js +11 -27
  413. package/src/View/Components/ToolPanel/ToolPanelPopup.js +2 -12
  414. package/src/View/Components/ToolPanel/ToolPanelWrapper.js +16 -17
  415. package/src/View/Components/ValueSelector/index.js +87 -100
  416. package/src/View/Components/WizardSummaryPage.js +2 -4
  417. package/src/View/CustomSort/Wizard/CustomSortColumnWizardSection.js +9 -29
  418. package/src/View/CustomSort/Wizard/CustomSortValuesWizardSection.js +8 -11
  419. package/src/View/CustomSort/Wizard/CustomSortWizard.js +6 -10
  420. package/src/View/Dashboard/CustomDashboardButton.d.ts +1 -2
  421. package/src/View/Dashboard/CustomDashboardButton.js +4 -22
  422. package/src/View/Dashboard/CustomToolbar.js +83 -32
  423. package/src/View/Dashboard/Dashboard.d.ts +0 -1
  424. package/src/View/Dashboard/Dashboard.js +11 -23
  425. package/src/View/Dashboard/DashboardPopup.js +2 -23
  426. package/src/View/Dashboard/DashboardToolbarFactory.js +6 -5
  427. package/src/View/Dashboard/DashboardViewPanel.js +2 -7
  428. package/src/View/Dashboard/ModuleToolbarWrapper.js +3 -3
  429. package/src/View/Dashboard/PinnedDashboard.js +5 -8
  430. package/src/View/Dashboard/PinnedToolbarsSelector.js +2 -1
  431. package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +2 -2
  432. package/src/View/DataChangeHistory/DataChangeHistoryPopup.js +7 -32
  433. package/src/View/DataChangeHistory/DataChangeHistoryStatusBarContent.js +2 -3
  434. package/src/View/DataChangeHistory/DataChangeHistoryViewPanel.js +4 -18
  435. package/src/View/DataImport/DataImportPopup.js +8 -12
  436. package/src/View/DataImport/DataImportWizard/DataImportWizard.js +6 -10
  437. package/src/View/DataImport/DataImportWizard/sections/ColumnsSection.js +18 -26
  438. package/src/View/DataImport/DataImportWizard/sections/DataPreview.js +8 -11
  439. package/src/View/DataImport/DataImportWizard/sections/UploadSection/UploadFileSection.js +2 -2
  440. package/src/View/DataImport/DataImportWizard/sections/UploadSection/UploadSection.js +2 -11
  441. package/src/View/DataImport/DataImportWizard/sections/UploadSection/UploadTextSection.js +2 -4
  442. package/src/View/DataImport/DataImportWizard/sections/ValidationSection.js +4 -14
  443. package/src/View/DataSet/DataSetSelector.js +2 -1
  444. package/src/View/DataSet/DataSetStatusPanelPopover.js +2 -1
  445. package/src/View/DataSet/DataSetViewPanel.js +3 -3
  446. package/src/View/Export/ExportDestinationPicker.js +4 -5
  447. package/src/View/Export/ExportSchedulesTab.d.ts +2 -0
  448. package/src/View/Export/ExportSchedulesTab.js +59 -0
  449. package/src/View/Export/ExportStatusBar.js +2 -7
  450. package/src/View/Export/ExportViewPanel.js +27 -29
  451. package/src/View/Export/ReportFormatSelector.d.ts +0 -1
  452. package/src/View/Export/ReportFormatSelector.js +4 -6
  453. package/src/View/Export/ReportListItem.js +2 -5
  454. package/src/View/Export/ReportNameSelector.js +3 -5
  455. package/src/View/Export/Wizard/ExportPopupWizardRouter.d.ts +4 -0
  456. package/src/View/Export/Wizard/ExportPopupWizardRouter.js +23 -0
  457. package/src/View/Export/Wizard/NewReportWizard.js +7 -10
  458. package/src/View/Export/Wizard/ReportColumnsWizardSection.js +27 -51
  459. package/src/View/Export/Wizard/ReportNameWizardSection.js +8 -18
  460. package/src/View/Export/Wizard/ReportRowsWizardSection.js +11 -38
  461. package/src/View/Export/Wizard/ScheduledReportSettings.d.ts +13 -0
  462. package/src/View/Export/Wizard/ScheduledReportSettings.js +41 -0
  463. package/src/View/Export/Wizard/ScheduledReportSettingsSummary.d.ts +7 -0
  464. package/src/View/Export/Wizard/ScheduledReportSettingsSummary.js +32 -0
  465. package/src/View/Export/Wizard/ScheduledReportWizard.d.ts +10 -0
  466. package/src/View/Export/Wizard/ScheduledReportWizard.js +85 -0
  467. package/src/View/Export/Wizard/isReportScheduledSettingsValid.d.ts +3 -0
  468. package/src/View/Export/Wizard/isReportScheduledSettingsValid.js +23 -0
  469. package/src/View/Filter/ActiveFiltersPanel.js +2 -2
  470. package/src/View/Filter/FilterStatusBarSubPanelPopover.js +2 -3
  471. package/src/View/Filter/FilterViewPanel.js +5 -9
  472. package/src/View/FlashingCell/FlashingCellStyle.js +2 -12
  473. package/src/View/FlashingCell/Wizard/FlashingCellRulesWizardSection.js +8 -29
  474. package/src/View/FlashingCell/Wizard/FlashingCellScopeWizardSection.js +3 -3
  475. package/src/View/FlashingCell/Wizard/FlashingCellSettingsWizardSection.js +9 -41
  476. package/src/View/FlashingCell/Wizard/FlashingCellStyleWizardSection.js +5 -31
  477. package/src/View/FlashingCell/Wizard/FlashingCellWizard.js +9 -13
  478. package/src/View/FormatColumn/MoveFormatColumn.js +3 -4
  479. package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +61 -203
  480. package/src/View/FormatColumn/Wizard/FormatColumnRuleWizardSection.js +6 -15
  481. package/src/View/FormatColumn/Wizard/FormatColumnScopeWizardSection.js +98 -0
  482. package/src/View/FormatColumn/Wizard/FormatColumnSettingsWizardSection.js +39 -49
  483. package/src/View/FormatColumn/Wizard/FormatColumnStyleWizardSection.js +3 -3
  484. package/src/View/FormatColumn/Wizard/FormatColumnWizard.js +13 -27
  485. package/src/View/FreeTextColumn/Wizard/FreeTextColumnSettingsWizardSection.js +21 -54
  486. package/src/View/FreeTextColumn/Wizard/FreeTextColumnWizard.js +5 -8
  487. package/src/View/GridFilter/GridFilterExpressionEditor.js +14 -21
  488. package/src/View/GridFilter/GridFilterPopup.js +2 -3
  489. package/src/View/GridFilter/GridFilterPopupUI/index.js +2 -18
  490. package/src/View/GridFilter/GridFilterStatusbar.js +2 -3
  491. package/src/View/GridFilter/GridFilterViewPanel.js +16 -26
  492. package/src/View/GridFilter/GridFilterWindowPopup.js +2 -3
  493. package/src/View/GridFilter/NamedQuerySelector.js +13 -21
  494. package/src/View/GridInfo/GridInfoPopup/AdaptableObjectsSummary.js +11 -13
  495. package/src/View/GridInfo/GridInfoPopup/GridInfoPopup.js +7 -23
  496. package/src/View/KeyHint.js +3 -4
  497. package/src/View/Layout/EditCurrentLayoutButton.js +2 -1
  498. package/src/View/Layout/LayoutCloneButton.js +2 -1
  499. package/src/View/Layout/LayoutRadioSelector.js +2 -1
  500. package/src/View/Layout/LayoutStatusBarSubPanelPopover.js +5 -7
  501. package/src/View/Layout/LayoutViewPanel.js +41 -32
  502. package/src/View/Layout/PivotDetailsPopoup.js +2 -2
  503. package/src/View/Layout/TransposedPopup.js +2 -8
  504. package/src/View/Layout/Wizard/LayoutWizard.js +47 -60
  505. package/src/View/Layout/Wizard/getGridFilterPreview.js +2 -4
  506. package/src/View/Layout/Wizard/sections/AggregationsSection.d.ts +3 -2
  507. package/src/View/Layout/Wizard/sections/AggregationsSection.js +29 -151
  508. package/src/View/Layout/Wizard/sections/ColumnsSection.js +131 -187
  509. package/src/View/Layout/Wizard/sections/FilterSection.js +32 -37
  510. package/src/View/Layout/Wizard/sections/GridFilterSection.js +4 -3
  511. package/src/View/Layout/Wizard/sections/ParameterizedAggFuncPicker.d.ts +12 -0
  512. package/src/View/Layout/Wizard/sections/ParameterizedAggFuncPicker.js +48 -0
  513. package/src/View/Layout/Wizard/sections/PivotAggregationsSection.d.ts +2 -1
  514. package/src/View/Layout/Wizard/sections/PivotAggregationsSection.js +76 -197
  515. package/src/View/Layout/Wizard/sections/PivotColumnsSection.js +8 -12
  516. package/src/View/Layout/Wizard/sections/PivotRowGroupingSection.js +5 -13
  517. package/src/View/Layout/Wizard/sections/RowGroupingSection.js +21 -44
  518. package/src/View/Layout/Wizard/sections/RowSelectionSection.js +5 -72
  519. package/src/View/Layout/Wizard/sections/RowSummarySection.js +106 -140
  520. package/src/View/Layout/Wizard/sections/SettingsSection.js +3 -26
  521. package/src/View/Layout/Wizard/sections/SortSection.js +4 -9
  522. package/src/View/License/LicenseWatermark.js +1 -1
  523. package/src/View/NamedQuery/EditCurrentQueryButton.js +2 -1
  524. package/src/View/NamedQuery/Wizard/NamedQueryExpressionWizardSection.js +3 -6
  525. package/src/View/NamedQuery/Wizard/NamedQuerySettingsWizardSection.js +3 -11
  526. package/src/View/NamedQuery/Wizard/NamedQueryWizard.js +6 -8
  527. package/src/View/Note/NoteEditor.js +9 -10
  528. package/src/View/Note/NotePopup.js +4 -5
  529. package/src/View/PlusMinus/MovePlusMinus.js +3 -4
  530. package/src/View/PlusMinus/Wizard/PlusMinusRuleWizardSection.js +6 -16
  531. package/src/View/PlusMinus/Wizard/PlusMinusScopeWizardSection.js +2 -1
  532. package/src/View/PlusMinus/Wizard/PlusMinusSettingsWizardSection.js +77 -30
  533. package/src/View/PlusMinus/Wizard/PlusMinusWizard.js +7 -9
  534. package/src/View/QuickSearch/FloatingQuickSearch/FloatingQuickSearch.js +3 -6
  535. package/src/View/QuickSearch/QuickSearchInput.js +2 -3
  536. package/src/View/QuickSearch/QuickSearchPopup.d.ts +6 -2
  537. package/src/View/QuickSearch/QuickSearchPopup.js +17 -27
  538. package/src/View/QuickSearch/QuickSearchStatusBarContent.js +2 -3
  539. package/src/View/QuickSearch/QuickSearchViewPanel.js +2 -3
  540. package/src/View/Schedule/Wizard/ScheduleScheduleSummary.js +2 -5
  541. package/src/View/Schedule/Wizard/ScheduleScheduleWizard.d.ts +8 -7
  542. package/src/View/Schedule/Wizard/ScheduleScheduleWizard.js +138 -105
  543. package/src/View/Shortcut/Wizard/ShortcutScopeWizardSection.js +2 -1
  544. package/src/View/Shortcut/Wizard/ShortcutSettingsWizard.js +4 -38
  545. package/src/View/Shortcut/Wizard/ShortcutWizard.js +8 -18
  546. package/src/View/SmartEdit/SmartEditPopup.js +11 -17
  547. package/src/View/SmartEdit/SmartEditViewPanel.js +12 -17
  548. package/src/View/SpecialColumnSettingsWizardStep.js +6 -29
  549. package/src/View/StateManagement/StateManagementPopup.js +2 -18
  550. package/src/View/StateManagement/StateManagementViewPanel.js +3 -8
  551. package/src/View/StateManagement/components/ClearButton.js +2 -2
  552. package/src/View/StateManagement/components/ExportDropdown.js +2 -2
  553. package/src/View/StateManagement/components/LoadButton.js +13 -16
  554. package/src/View/StatusBar/AdaptableStatusBar.js +24 -22
  555. package/src/View/StatusBar/StatusBarPanel.js +3 -5
  556. package/src/View/StatusBar/StatusBarPopup.js +7 -6
  557. package/src/View/StyledColumn/Wizard/BadgePillStyleEditor.d.ts +26 -0
  558. package/src/View/StyledColumn/Wizard/BadgePillStyleEditor.js +70 -0
  559. package/src/View/StyledColumn/Wizard/StyledColumnBadgeSection.d.ts +5 -0
  560. package/src/View/StyledColumn/Wizard/StyledColumnBadgeSection.js +153 -94
  561. package/src/View/StyledColumn/Wizard/StyledColumnSliceStyleEditors.d.ts +49 -0
  562. package/src/View/StyledColumn/Wizard/StyledColumnSliceStyleEditors.js +146 -0
  563. package/src/View/StyledColumn/Wizard/StyledColumnSparklineSettingsSection.d.ts +12 -0
  564. package/src/View/StyledColumn/Wizard/StyledColumnSparklineSettingsSection.js +110 -173
  565. package/src/View/StyledColumn/Wizard/StyledColumnWizard.js +189 -55
  566. package/src/View/StyledColumn/Wizard/StyledColumnWizardBulletSection.d.ts +14 -0
  567. package/src/View/StyledColumn/Wizard/StyledColumnWizardBulletSection.js +309 -0
  568. package/src/View/StyledColumn/Wizard/StyledColumnWizardGradientSection.d.ts +10 -0
  569. package/src/View/StyledColumn/Wizard/StyledColumnWizardGradientSection.js +96 -0
  570. package/src/View/StyledColumn/Wizard/StyledColumnWizardIconSection.d.ts +20 -0
  571. package/src/View/StyledColumn/Wizard/StyledColumnWizardIconSection.js +291 -0
  572. package/src/View/StyledColumn/Wizard/StyledColumnWizardRangeBarSection.d.ts +26 -0
  573. package/src/View/StyledColumn/Wizard/StyledColumnWizardRangeBarSection.js +319 -0
  574. package/src/View/StyledColumn/Wizard/StyledColumnWizardRatingSection.d.ts +8 -0
  575. package/src/View/StyledColumn/Wizard/StyledColumnWizardRatingSection.js +218 -0
  576. package/src/View/StyledColumn/Wizard/StyledColumnWizardScopeSection.d.ts +12 -0
  577. package/src/View/StyledColumn/Wizard/StyledColumnWizardScopeSection.js +246 -0
  578. package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/GradientSummaryPreview.d.ts +22 -0
  579. package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/GradientSummaryPreview.js +78 -0
  580. package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/PercentBarColumnComparisonPreview.js +6 -15
  581. package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/PercentBarRangesPreview.js +2 -10
  582. package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/PercentBarStylePreview.js +2 -6
  583. package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/StyledColumnBadgePreview.d.ts +5 -0
  584. package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/StyledColumnBadgePreview.js +25 -13
  585. package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/StyledColumnBadgeSettings.js +20 -20
  586. package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/StyledColumnChartListPreviews.d.ts +16 -0
  587. package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/StyledColumnChartListPreviews.js +66 -0
  588. package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/StyledColumnWizardRangesSection.d.ts +12 -0
  589. package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/StyledColumnWizardRangesSection.js +159 -0
  590. package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/StyledColumnWizardStyleSection.d.ts +10 -1
  591. package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/StyledColumnWizardStyleSection.js +143 -284
  592. package/src/View/StyledColumn/Wizard/StyledColumnWizardTypeSection.d.ts +13 -0
  593. package/src/View/StyledColumn/Wizard/StyledColumnWizardTypeSection.js +104 -29
  594. package/src/View/SystemStatus/SystemStatusEntityRow.js +4 -8
  595. package/src/View/SystemStatus/SystemStatusPopup.js +4 -4
  596. package/src/View/SystemStatus/SystemStatusStatusBarContent.js +2 -3
  597. package/src/View/SystemStatus/SystemStatusViewPanel.js +2 -2
  598. package/src/View/TeamSharing/SharedEntityDependencies.js +7 -11
  599. package/src/View/TeamSharing/SharedEntityObjectView.js +9 -21
  600. package/src/View/TeamSharing/TeamSharingApplyButton.js +2 -1
  601. package/src/View/Theme/ThemePopup.js +2 -27
  602. package/src/View/Theme/ThemeSelector.d.ts +1 -2
  603. package/src/View/Theme/ThemeSelector.js +3 -3
  604. package/src/View/Theme/ThemeStatusbar.d.ts +1 -1
  605. package/src/View/Theme/ThemeStatusbar.js +3 -5
  606. package/src/View/Theme/ThemeViewPanel.js +3 -4
  607. package/src/View/Theme/VariantSelector.js +2 -4
  608. package/src/View/UIHelper.d.ts +15 -25
  609. package/src/View/UIHelper.js +46 -119
  610. package/src/View/Wizard/ObjectTagsWizardSection.js +3 -7
  611. package/src/View/Wizard/OnePageAdaptableWizard.d.ts +13 -0
  612. package/src/View/Wizard/OnePageAdaptableWizard.js +21 -28
  613. package/src/View/Wizard/OnePageWizards.js +54 -70
  614. package/src/View/Wizard/TypeRadio.d.ts +2 -0
  615. package/src/View/Wizard/TypeRadio.js +6 -5
  616. package/src/View/renderWithAdaptableContext.js +3 -4
  617. package/src/agGrid/AdaptableAgGrid.d.ts +5 -2
  618. package/src/agGrid/AdaptableAgGrid.js +79 -39
  619. package/src/agGrid/AdaptableFrameworkComponent.d.ts +25 -3
  620. package/src/agGrid/AdaptableLogger.d.ts +1 -0
  621. package/src/agGrid/AdaptableLogger.js +10 -1
  622. package/src/agGrid/AgGridAdapter.d.ts +1 -0
  623. package/src/agGrid/AgGridAdapter.js +16 -4
  624. package/src/agGrid/AgGridColumnAdapter.d.ts +26 -0
  625. package/src/agGrid/AgGridColumnAdapter.js +332 -99
  626. package/src/agGrid/AgGridFilterAdapter.js +3 -1
  627. package/src/agGrid/AgGridMenuAdapter.d.ts +2 -0
  628. package/src/agGrid/AgGridMenuAdapter.js +120 -6
  629. package/src/agGrid/cellRenderers/ActionColumnRenderer.d.ts +1 -0
  630. package/src/agGrid/cellRenderers/ActionColumnRenderer.js +87 -88
  631. package/src/agGrid/cellRenderers/BadgeRenderer.d.ts +2 -2
  632. package/src/agGrid/cellRenderers/BadgeRenderer.js +44 -28
  633. package/src/agGrid/cellRenderers/BulletChartRenderer.d.ts +4 -0
  634. package/src/agGrid/cellRenderers/BulletChartRenderer.js +396 -0
  635. package/src/agGrid/cellRenderers/IconRenderer.d.ts +23 -0
  636. package/src/agGrid/cellRenderers/IconRenderer.js +281 -0
  637. package/src/agGrid/cellRenderers/PercentBarRenderer.js +234 -65
  638. package/src/agGrid/cellRenderers/RangeBarRenderer.d.ts +4 -0
  639. package/src/agGrid/cellRenderers/RangeBarRenderer.js +357 -0
  640. package/src/agGrid/cellRenderers/RatingRenderer.d.ts +4 -0
  641. package/src/agGrid/cellRenderers/RatingRenderer.js +162 -0
  642. package/src/agGrid/cellRenderers/shouldRenderStyledColumnOnRow.d.ts +30 -0
  643. package/src/agGrid/cellRenderers/shouldRenderStyledColumnOnRow.js +58 -0
  644. package/src/agGrid/editors/AdaptableDateEditor/InternalAdaptableDateEditor.js +3 -4
  645. package/src/agGrid/editors/AdaptableDateEditor/index.js +4 -5
  646. package/src/agGrid/editors/AdaptableNumberEditor/InternalAdaptableNumberEditor.js +17 -19
  647. package/src/agGrid/editors/AdaptableNumberEditor/index.js +4 -5
  648. package/src/agGrid/editors/AdaptablePercentageEditor/InternalAdaptablePercentageEditor.js +21 -24
  649. package/src/agGrid/editors/AdaptablePercentageEditor/index.js +4 -4
  650. package/src/components/Accordion.js +7 -8
  651. package/src/components/AdaptableFormComponent/AdaptableFormComponent.js +363 -85
  652. package/src/components/Card/index.js +8 -8
  653. package/src/components/CheckBox/index.d.ts +3 -1
  654. package/src/components/CheckBox/index.js +12 -15
  655. package/src/components/CodeBlock/index.js +2 -2
  656. package/src/components/ColorPicker/ColorPicker.js +14 -19
  657. package/src/components/Combobox/VirtualizedList.d.ts +12 -0
  658. package/src/components/Combobox/VirtualizedList.js +66 -0
  659. package/src/components/Combobox/comboboxUtils.d.ts +82 -0
  660. package/src/components/Combobox/comboboxUtils.js +32 -0
  661. package/src/components/Combobox/index.d.ts +38 -0
  662. package/src/components/Combobox/index.js +534 -0
  663. package/src/components/Dashboard/Dashboard.d.ts +0 -3
  664. package/src/components/Dashboard/Dashboard.js +15 -42
  665. package/src/components/Dashboard/DashboardManager.js +2 -1
  666. package/src/components/Dashboard/DashboardToolbar.js +2 -7
  667. package/src/components/Datepicker/index.js +242 -105
  668. package/src/components/Dialog/index.js +7 -9
  669. package/src/components/DragAndDropContext/ModuleManager.js +2 -8
  670. package/src/components/DragAndDropContext/TabList.js +27 -41
  671. package/src/components/DragAndDropContext/UnusedPanel.js +8 -13
  672. package/src/components/Drawer/index.js +2 -1
  673. package/src/components/Dropdown/Arrows.js +3 -6
  674. package/src/components/Dropdown/index.js +15 -20
  675. package/src/components/DropdownButton/index.js +21 -29
  676. package/src/components/DropdownButton/renderItem.js +5 -6
  677. package/src/components/EmptyContent/index.js +3 -4
  678. package/src/components/ErrorBox/index.js +2 -2
  679. package/src/components/ExpressionEditor/BaseEditorInput.js +49 -90
  680. package/src/components/ExpressionEditor/DataTableEditor.js +19 -23
  681. package/src/components/ExpressionEditor/EditorButton.js +2 -2
  682. package/src/components/ExpressionEditor/EditorInput.js +2 -3
  683. package/src/components/ExpressionEditor/EditorInputWithWhereClause.js +8 -15
  684. package/src/components/ExpressionEditor/ExpressionFunctionDocumentation.js +2 -15
  685. package/src/components/ExpressionEditor/ExpressionPreview.js +6 -5
  686. package/src/components/ExpressionEditor/NamedQueryEditor.js +4 -10
  687. package/src/components/ExpressionEditor/QueryBuilder/QueryBuilder.js +9 -22
  688. package/src/components/ExpressionEditor/QueryBuilder/QueryBuilderInputs.js +35 -53
  689. package/src/components/ExpressionEditor/QueryBuilder/QueryPredicateBuilder.js +112 -133
  690. package/src/components/ExpressionEditor/index.js +49 -95
  691. package/src/components/FieldWrap/index.js +3 -2
  692. package/src/components/FileDroppable/index.js +17 -28
  693. package/src/components/Flex.js +3 -2
  694. package/src/components/FlexWithFooter.js +2 -6
  695. package/src/components/FormLayout/index.js +7 -7
  696. package/src/components/HelpBlock/index.js +2 -2
  697. package/src/components/Icon/index.js +4 -4
  698. package/src/components/IconSelector/IconSelector.js +12 -23
  699. package/src/components/InfiniteTable/index.js +2 -2
  700. package/src/components/Input/NumberInput.js +2 -1
  701. package/src/components/Input/index.d.ts +1 -0
  702. package/src/components/Input/index.js +6 -4
  703. package/src/components/InputGroup/InputGroup.js +2 -3
  704. package/src/components/Loader/Loader.js +3 -6
  705. package/src/components/Logo/index.js +2 -10
  706. package/src/components/Modal/Backdrop.js +2 -1
  707. package/src/components/Modal/index.js +2 -5
  708. package/src/components/NewDropdownButton/index.d.ts +26 -0
  709. package/src/components/NewDropdownButton/index.js +28 -0
  710. package/src/components/NewSelect/index.d.ts +64 -0
  711. package/src/components/NewSelect/index.js +76 -0
  712. package/src/components/NewTooltip/index.d.ts +8 -0
  713. package/src/components/NewTooltip/index.js +11 -0
  714. package/src/components/NotifyResize/index.js +2 -1
  715. package/src/components/OverlayTrigger/Overlay.js +2 -1
  716. package/src/components/OverlayTrigger/index.js +11 -13
  717. package/src/components/Panel/index.js +10 -11
  718. package/src/components/PopupWithFooter.js +3 -3
  719. package/src/components/ProgressIndicator/ProgressIndicator.js +14 -19
  720. package/src/components/Radio/index.js +4 -9
  721. package/src/components/ResizeObserver/index.js +2 -3
  722. package/src/components/Select/CSSNumericVariableWatch.js +3 -3
  723. package/src/components/SelectList.js +2 -2
  724. package/src/components/SelectableList/index.js +3 -2
  725. package/src/components/SimpleButton/index.d.ts +1 -1
  726. package/src/components/SimpleButton/index.js +14 -18
  727. package/src/components/SizedContainer/index.js +6 -8
  728. package/src/components/StylePreview.js +2 -2
  729. package/src/components/Table/index.js +2 -2
  730. package/src/components/Tabs/index.js +5 -10
  731. package/src/components/Tag/Tag.js +4 -3
  732. package/src/components/Textarea/index.js +2 -1
  733. package/src/components/Toggle/Toggle.js +3 -4
  734. package/src/components/Toggle/ToggleGroup.js +3 -3
  735. package/src/components/ToggleButton/index.js +14 -17
  736. package/src/components/Tooltip/index.js +2 -2
  737. package/src/components/Tree/TreeDropdown/index.d.ts +44 -26
  738. package/src/components/Tree/TreeDropdown/index.js +504 -265
  739. package/src/components/Tree/treeUtils.d.ts +10 -0
  740. package/src/components/Tree/treeUtils.js +29 -0
  741. package/src/components/WarningBox/index.js +2 -2
  742. package/src/components/WindowModal/WindowModal.js +4 -4
  743. package/src/components/WizardPanel/index.js +2 -2
  744. package/src/components/icons/DefaultIcon.js +2 -2
  745. package/src/components/icons/add-row.js +2 -3
  746. package/src/components/icons/alert.js +2 -3
  747. package/src/components/icons/align-center.js +2 -3
  748. package/src/components/icons/align-justify.js +2 -3
  749. package/src/components/icons/align-left.js +2 -3
  750. package/src/components/icons/align-right.js +2 -3
  751. package/src/components/icons/analysis.js +2 -4
  752. package/src/components/icons/application.js +2 -3
  753. package/src/components/icons/arrow-down-long.js +2 -3
  754. package/src/components/icons/arrow-down.js +2 -3
  755. package/src/components/icons/arrow-expand.js +2 -3
  756. package/src/components/icons/arrow-left.js +2 -4
  757. package/src/components/icons/arrow-right.js +2 -3
  758. package/src/components/icons/arrow-up-long.js +2 -3
  759. package/src/components/icons/arrow-up.js +2 -3
  760. package/src/components/icons/attach-file.js +2 -4
  761. package/src/components/icons/badge.js +2 -3
  762. package/src/components/icons/blanks.js +2 -3
  763. package/src/components/icons/bold.js +2 -3
  764. package/src/components/icons/boolean-list.js +2 -3
  765. package/src/components/icons/brush.js +2 -3
  766. package/src/components/icons/build.js +2 -4
  767. package/src/components/icons/bulk-update.js +2 -3
  768. package/src/components/icons/bullet-chart.d.ts +3 -0
  769. package/src/components/icons/bullet-chart.js +10 -0
  770. package/src/components/icons/calculated-column.js +2 -4
  771. package/src/components/icons/calendar.js +2 -3
  772. package/src/components/icons/call.js +2 -3
  773. package/src/components/icons/campaign.js +2 -3
  774. package/src/components/icons/case-lower.js +2 -3
  775. package/src/components/icons/case-sentence.js +2 -4
  776. package/src/components/icons/case-upper.js +2 -3
  777. package/src/components/icons/cell-summary.js +2 -3
  778. package/src/components/icons/cell-validation.js +2 -3
  779. package/src/components/icons/chart.js +2 -3
  780. package/src/components/icons/chat.js +2 -4
  781. package/src/components/icons/check-box-outline.js +2 -3
  782. package/src/components/icons/check-box.js +2 -3
  783. package/src/components/icons/check-circle.js +2 -3
  784. package/src/components/icons/check.js +2 -3
  785. package/src/components/icons/clone.js +2 -3
  786. package/src/components/icons/close.js +2 -3
  787. package/src/components/icons/cloud-upload.js +2 -3
  788. package/src/components/icons/collapse-all.js +2 -3
  789. package/src/components/icons/collapse.js +2 -3
  790. package/src/components/icons/column-add.js +2 -6
  791. package/src/components/icons/column-chooser.js +2 -3
  792. package/src/components/icons/column-filter.js +2 -3
  793. package/src/components/icons/column-info.js +2 -3
  794. package/src/components/icons/column-outline.js +2 -3
  795. package/src/components/icons/comment.js +2 -3
  796. package/src/components/icons/comments.js +2 -3
  797. package/src/components/icons/contact.js +2 -4
  798. package/src/components/icons/contains.js +2 -3
  799. package/src/components/icons/copy.js +2 -3
  800. package/src/components/icons/csv.js +2 -3
  801. package/src/components/icons/custom-sort.js +2 -3
  802. package/src/components/icons/dashboard.js +2 -3
  803. package/src/components/icons/data-object.js +2 -3
  804. package/src/components/icons/data-set.js +2 -3
  805. package/src/components/icons/date-range.js +2 -4
  806. package/src/components/icons/delete.js +2 -3
  807. package/src/components/icons/division.js +2 -3
  808. package/src/components/icons/dock.js +2 -3
  809. package/src/components/icons/dollar.js +2 -3
  810. package/src/components/icons/drag.js +2 -3
  811. package/src/components/icons/edit.js +2 -3
  812. package/src/components/icons/ends-with.js +2 -3
  813. package/src/components/icons/equal.js +2 -3
  814. package/src/components/icons/equation.js +2 -3
  815. package/src/components/icons/error.js +2 -3
  816. package/src/components/icons/excel.js +2 -4
  817. package/src/components/icons/expand-all.js +2 -3
  818. package/src/components/icons/expand.js +2 -3
  819. package/src/components/icons/exponent.js +2 -3
  820. package/src/components/icons/export.js +2 -3
  821. package/src/components/icons/fast-backward.js +2 -3
  822. package/src/components/icons/fast-forward.js +2 -3
  823. package/src/components/icons/fdc3.js +2 -5
  824. package/src/components/icons/filter-off.js +2 -3
  825. package/src/components/icons/filter.js +2 -3
  826. package/src/components/icons/flashing-cell.js +2 -3
  827. package/src/components/icons/folder-open.js +2 -3
  828. package/src/components/icons/folder-shared.js +2 -3
  829. package/src/components/icons/folder.js +2 -3
  830. package/src/components/icons/format-column.js +2 -3
  831. package/src/components/icons/freetext-column.js +2 -7
  832. package/src/components/icons/function.js +2 -3
  833. package/src/components/icons/gradient-column.js +2 -3
  834. package/src/components/icons/gradient.js +2 -3
  835. package/src/components/icons/greater-than-or-equal.js +2 -3
  836. package/src/components/icons/greater-than.js +2 -3
  837. package/src/components/icons/grid-filter.js +2 -3
  838. package/src/components/icons/grid-info.js +2 -3
  839. package/src/components/icons/hide-column.js +2 -4
  840. package/src/components/icons/history.js +2 -3
  841. package/src/components/icons/home.js +2 -3
  842. package/src/components/icons/icon-style.d.ts +3 -0
  843. package/src/components/icons/icon-style.js +10 -0
  844. package/src/components/icons/import-export.js +2 -3
  845. package/src/components/icons/import.js +2 -3
  846. package/src/components/icons/index.d.ts +1 -1
  847. package/src/components/icons/index.js +201 -6
  848. package/src/components/icons/info.js +2 -3
  849. package/src/components/icons/inspector.js +2 -4
  850. package/src/components/icons/instrument.js +2 -4
  851. package/src/components/icons/interactions.js +2 -4
  852. package/src/components/icons/invalid.js +2 -4
  853. package/src/components/icons/ipushpull.js +2 -4
  854. package/src/components/icons/italic.js +2 -3
  855. package/src/components/icons/justify.js +2 -3
  856. package/src/components/icons/layout.js +2 -3
  857. package/src/components/icons/less-than-or-equal.js +2 -3
  858. package/src/components/icons/less-than.js +2 -3
  859. package/src/components/icons/list.js +2 -3
  860. package/src/components/icons/login.js +2 -3
  861. package/src/components/icons/logout copy.js +2 -4
  862. package/src/components/icons/logout.js +2 -4
  863. package/src/components/icons/mail.js +2 -3
  864. package/src/components/icons/menu.js +2 -3
  865. package/src/components/icons/minus.js +2 -3
  866. package/src/components/icons/money.js +2 -4
  867. package/src/components/icons/multiplication.js +2 -3
  868. package/src/components/icons/newpage.js +2 -4
  869. package/src/components/icons/news.js +2 -4
  870. package/src/components/icons/non-blanks.js +2 -3
  871. package/src/components/icons/not-contains.js +2 -3
  872. package/src/components/icons/not-equal.js +2 -3
  873. package/src/components/icons/note.js +2 -3
  874. package/src/components/icons/open-in-new.js +2 -3
  875. package/src/components/icons/order.js +2 -3
  876. package/src/components/icons/organisation.js +2 -4
  877. package/src/components/icons/overline.js +2 -3
  878. package/src/components/icons/pause.js +2 -3
  879. package/src/components/icons/percent-bar.js +2 -8
  880. package/src/components/icons/percent.js +2 -3
  881. package/src/components/icons/person.js +2 -3
  882. package/src/components/icons/pie-chart.js +2 -3
  883. package/src/components/icons/play.js +2 -4
  884. package/src/components/icons/plus-minus.js +2 -3
  885. package/src/components/icons/plus.js +2 -3
  886. package/src/components/icons/query.js +2 -3
  887. package/src/components/icons/quick-search.js +2 -3
  888. package/src/components/icons/quote.js +2 -4
  889. package/src/components/icons/range-bar.d.ts +3 -0
  890. package/src/components/icons/range-bar.js +11 -0
  891. package/src/components/icons/refresh.js +2 -3
  892. package/src/components/icons/regex.js +2 -3
  893. package/src/components/icons/reminder.js +2 -3
  894. package/src/components/icons/resume.js +2 -3
  895. package/src/components/icons/rows.js +2 -3
  896. package/src/components/icons/save.js +2 -3
  897. package/src/components/icons/schedule.js +2 -6
  898. package/src/components/icons/science.js +2 -3
  899. package/src/components/icons/select-all.js +2 -3
  900. package/src/components/icons/select-fwd.js +2 -3
  901. package/src/components/icons/select-off.js +2 -3
  902. package/src/components/icons/settings.js +2 -3
  903. package/src/components/icons/shortcut.js +2 -3
  904. package/src/components/icons/show-column.js +2 -4
  905. package/src/components/icons/smart-edit.js +2 -3
  906. package/src/components/icons/sort-asc.js +2 -6
  907. package/src/components/icons/sort-desc.js +2 -6
  908. package/src/components/icons/spark-line.js +2 -3
  909. package/src/components/icons/star.d.ts +3 -0
  910. package/src/components/icons/star.js +7 -0
  911. package/src/components/icons/starts-with.js +2 -3
  912. package/src/components/icons/state-management.js +2 -3
  913. package/src/components/icons/statusbar.js +2 -4
  914. package/src/components/icons/stop.js +2 -3
  915. package/src/components/icons/strikethrough.js +2 -3
  916. package/src/components/icons/styled-grid.js +2 -4
  917. package/src/components/icons/sync.js +2 -3
  918. package/src/components/icons/system-status.js +2 -3
  919. package/src/components/icons/tab-unselected.js +2 -3
  920. package/src/components/icons/table-arrow-right.js +2 -3
  921. package/src/components/icons/team-share.js +2 -3
  922. package/src/components/icons/theme.js +2 -4
  923. package/src/components/icons/tool-panel.js +2 -3
  924. package/src/components/icons/track-changes.js +2 -4
  925. package/src/components/icons/triangle-down.js +2 -3
  926. package/src/components/icons/triangle-up.js +2 -3
  927. package/src/components/icons/unchecked.js +2 -3
  928. package/src/components/icons/underline.js +2 -3
  929. package/src/components/icons/undo.js +2 -3
  930. package/src/components/icons/updated-row.js +2 -3
  931. package/src/components/icons/upload.js +2 -4
  932. package/src/components/icons/user-filter.js +2 -3
  933. package/src/components/icons/visibility-off.js +2 -3
  934. package/src/components/icons/visibility.js +2 -4
  935. package/src/components/icons/warning.js +2 -3
  936. package/src/components/twUtils.d.ts +3 -0
  937. package/src/components/twUtils.js +10 -4
  938. package/src/components/ui/button.d.ts +8 -0
  939. package/src/components/ui/button.js +38 -0
  940. package/src/components/ui/calendar.d.ts +7 -0
  941. package/src/components/ui/calendar.js +107 -0
  942. package/src/components/ui/combobox.d.ts +48 -0
  943. package/src/components/ui/combobox.js +123 -0
  944. package/src/components/ui/dropdown-menu.d.ts +29 -0
  945. package/src/components/ui/dropdown-menu.js +66 -0
  946. package/src/components/ui/input-group.d.ts +18 -0
  947. package/src/components/ui/input-group.js +64 -0
  948. package/src/components/ui/input.d.ts +3 -0
  949. package/src/components/ui/input.js +9 -0
  950. package/src/components/ui/popover.d.ts +9 -0
  951. package/src/components/ui/popover.js +29 -0
  952. package/src/components/ui/select.d.ts +26 -0
  953. package/src/components/ui/select.js +50 -0
  954. package/src/components/ui/textarea.d.ts +3 -0
  955. package/src/components/ui/textarea.js +8 -0
  956. package/src/components/ui/tooltip.d.ts +6 -0
  957. package/src/components/ui/tooltip.js +21 -0
  958. package/src/env.js +2 -2
  959. package/src/layout-manager/src/index.d.ts +2 -2
  960. package/src/layout-manager/src/index.js +11 -4
  961. package/src/lib/utils.d.ts +3 -0
  962. package/src/lib/utils.js +10 -0
  963. package/src/metamodel/adaptable.metamodel.d.ts +393 -59
  964. package/src/metamodel/adaptable.metamodel.js +1 -1
  965. package/src/migration/AdaptableUpgradeHelper.js +3 -1
  966. package/src/migration/VersionUpgrade22.js +11 -21
  967. package/src/migration/VersionUpgrade23.d.ts +85 -0
  968. package/src/migration/VersionUpgrade23.js +241 -0
  969. package/src/setupDevTools.d.ts +3 -0
  970. package/src/setupDevTools.js +415 -0
  971. package/src/types.d.ts +14 -13
  972. package/src/types.js +6 -1
  973. package/themes/dark.css +34 -6
  974. package/tsconfig.cjs.tsbuildinfo +1 -1
  975. package/fonts/glyphicons-halflings-regular.eot +0 -0
  976. package/fonts/glyphicons-halflings-regular.svg +0 -288
  977. package/fonts/glyphicons-halflings-regular.ttf +0 -0
  978. package/fonts/glyphicons-halflings-regular.woff +0 -0
  979. package/fonts/glyphicons-halflings-regular.woff2 +0 -0
  980. package/src/AdaptableState/ScheduleState.d.ts +0 -52
  981. package/src/Api/Events/ScheduleTriggered.d.ts +0 -11
  982. package/src/Api/Implementation/ScheduleApiImpl.d.ts +0 -51
  983. package/src/Api/Implementation/ScheduleApiImpl.js +0 -204
  984. package/src/Api/Internal/ScheduleInternalApi.d.ts +0 -1
  985. package/src/Api/ScheduleApi.d.ts +0 -224
  986. package/src/Redux/ActionsReducers/ScheduleRedux.d.ts +0 -191
  987. package/src/Redux/ActionsReducers/ScheduleRedux.js +0 -426
  988. package/src/Strategy/Interface/IScheduleModule.d.ts +0 -4
  989. package/src/Strategy/Interface/IScheduleModule.js +0 -2
  990. package/src/Strategy/ScheduleModule.d.ts +0 -21
  991. package/src/Strategy/ScheduleModule.js +0 -274
  992. package/src/View/FormatColumn/Wizard/FormatColumnColumnScopeWizardSection.js +0 -52
  993. package/src/View/FormatColumn/Wizard/FormatColumnRowScopeWizardSection.d.ts +0 -8
  994. package/src/View/FormatColumn/Wizard/FormatColumnRowScopeWizardSection.js +0 -86
  995. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsIPushPull.d.ts +0 -11
  996. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsIPushPull.js +0 -78
  997. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsOpenFin.d.ts +0 -9
  998. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsOpenFin.js +0 -41
  999. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsReminder.d.ts +0 -8
  1000. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsReminder.js +0 -80
  1001. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsReport.d.ts +0 -12
  1002. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsReport.js +0 -70
  1003. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsSummary.d.ts +0 -7
  1004. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsSummary.js +0 -92
  1005. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsWizard.d.ts +0 -7
  1006. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsWizard.js +0 -35
  1007. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/index.d.ts +0 -3
  1008. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/index.js +0 -9
  1009. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/isSettingsValid.d.ts +0 -3
  1010. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/isSettingsValid.js +0 -58
  1011. package/src/View/Schedule/Wizard/ScheduleWizard.d.ts +0 -6
  1012. package/src/View/Schedule/Wizard/ScheduleWizard.js +0 -114
  1013. package/src/View/StyledColumn/Wizard/StyledColumnBadgeRowsSection.d.ts +0 -8
  1014. package/src/View/StyledColumn/Wizard/StyledColumnBadgeRowsSection.js +0 -107
  1015. package/src/View/StyledColumn/Wizard/StyledColumnWizardColumnSection.d.ts +0 -9
  1016. package/src/View/StyledColumn/Wizard/StyledColumnWizardColumnSection.js +0 -96
  1017. package/src/View/Theme/ThemeEditor.d.ts +0 -8
  1018. package/src/View/Theme/ThemeEditor.js +0 -165
  1019. package/src/View/Theme/ThemeEditorWindow.d.ts +0 -2
  1020. package/src/View/Theme/ThemeEditorWindow.js +0 -15
  1021. package/src/View/Theme/ThemeField.d.ts +0 -11
  1022. package/src/View/Theme/ThemeField.js +0 -39
  1023. package/src/components/Select/Select.d.ts +0 -53
  1024. package/src/components/Select/Select.js +0 -770
  1025. package/src/components/Select/index.d.ts +0 -1
  1026. package/src/components/Select/index.js +0 -4
  1027. package/src/components/Tree/TreeList/index.d.ts +0 -25
  1028. package/src/components/Tree/TreeList/index.js +0 -35
  1029. /package/{src/AdaptableState/ScheduleState.js → devtools.js} +0 -0
  1030. /package/src/Api/Events/{ScheduleTriggered.js → ReportScheduleRan.js} +0 -0
  1031. /package/src/{Api/Internal/ScheduleInternalApi.js → Strategy/Interface/IAlertModule.js} +0 -0
  1032. /package/src/{Api/ScheduleApi.js → Strategy/Interface/IExportModule.js} +0 -0
  1033. /package/src/View/FormatColumn/Wizard/{FormatColumnColumnScopeWizardSection.d.ts → FormatColumnScopeWizardSection.d.ts} +0 -0
@@ -0,0 +1,48 @@
1
+ import * as React from 'react';
2
+ import { Combobox as ComboboxPrimitive } from '@base-ui/react';
3
+ declare const useFilteredItems: typeof ComboboxPrimitive.useFilteredItems;
4
+ export { useFilteredItems, ComboboxPrimitive };
5
+ declare const Combobox: typeof ComboboxPrimitive.Root;
6
+ declare const RESIZABLE_VIRTUALIZED_LIST_CLASS = "twa:group-data-resizable/combobox-content:max-h-none twa:group-data-resizable/combobox-content:flex-1 twa:group-data-resizable/combobox-content:min-h-0 twa:group-data-resizable/combobox-content:flex twa:group-data-resizable/combobox-content:flex-col";
7
+ declare const RESIZABLE_VIRTUALIZED_SCROLL_CLASS = "twa:group-data-resizable/combobox-content:h-auto twa:group-data-resizable/combobox-content:max-h-none twa:group-data-resizable/combobox-content:flex-1 twa:group-data-resizable/combobox-content:min-h-0";
8
+ declare function ComboboxValue({ ...props }: ComboboxPrimitive.Value.Props): React.JSX.Element;
9
+ declare function ComboboxTrigger({ className, children, ...props }: ComboboxPrimitive.Trigger.Props): React.JSX.Element;
10
+ export declare function ComboboxClear({ className, ...props }: ComboboxPrimitive.Clear.Props): React.JSX.Element;
11
+ declare function ComboboxInput({ className, children, disabled, isLoading, showTrigger, showClear, groupRef, ...props }: ComboboxPrimitive.Input.Props & {
12
+ isLoading?: boolean;
13
+ showTrigger?: boolean;
14
+ showClear?: boolean;
15
+ /** Ref to the visible `InputGroup` wrapper. Use as the popup anchor so the popup
16
+ * lines up with the perceived combobox box (input + buttons), not just the bare input. */
17
+ groupRef?: React.Ref<HTMLDivElement>;
18
+ }): React.JSX.Element;
19
+ declare function ComboboxContent({ className, side, sideOffset, align, alignOffset, anchor, resizable, contentRef, style, ...props }: ComboboxPrimitive.Popup.Props & Pick<ComboboxPrimitive.Positioner.Props, 'side' | 'align' | 'sideOffset' | 'alignOffset' | 'anchor'> & {
20
+ resizable?: boolean;
21
+ contentRef?: (el: HTMLDivElement | null) => void;
22
+ maxLabelLength?: number;
23
+ }): React.JSX.Element;
24
+ declare function ComboboxList({ className, ...props }: ComboboxPrimitive.List.Props): React.JSX.Element;
25
+ declare function ComboboxItem({ className, children, renderCheckboxIndicator, ...props }: ComboboxPrimitive.Item.Props & {
26
+ renderCheckboxIndicator?: boolean | null | ComboboxPrimitive.ItemIndicator.Props['render'];
27
+ }): React.JSX.Element;
28
+ declare function ComboboxGroup({ className, ...props }: ComboboxPrimitive.Group.Props): React.JSX.Element;
29
+ declare function ComboboxLabel({ className, ...props }: ComboboxPrimitive.GroupLabel.Props): React.JSX.Element;
30
+ declare function ComboboxCollection({ ...props }: ComboboxPrimitive.Collection.Props): React.JSX.Element;
31
+ declare function ComboboxEmpty({ className, ...props }: ComboboxPrimitive.Empty.Props): React.JSX.Element;
32
+ declare function ComboboxSeparator({ className, ...props }: ComboboxPrimitive.Separator.Props): React.JSX.Element;
33
+ declare function ComboboxChips({ className, ...props }: React.ComponentPropsWithRef<typeof ComboboxPrimitive.Chips> & ComboboxPrimitive.Chips.Props): React.JSX.Element;
34
+ declare function ComboboxChip({ className, children, showRemove, onRemove, ...props }: ComboboxPrimitive.Chip.Props & {
35
+ showRemove?: boolean;
36
+ /**
37
+ * Optional override for the remove action. When provided, a plain button
38
+ * is rendered in place of `ComboboxPrimitive.ChipRemove` so the caller can
39
+ * control exactly which value is removed. This is required when the chips
40
+ * rendered don't map 1:1 (or don't share order) with the combobox's own
41
+ * `selectedValue` array — the primitive's `ChipRemove` otherwise removes by
42
+ * the chip's composite list index and would target the wrong value.
43
+ */
44
+ onRemove?: (event: React.MouseEvent<HTMLButtonElement>) => void;
45
+ }): React.JSX.Element;
46
+ declare function ComboboxChipsInput({ className, ...props }: ComboboxPrimitive.Input.Props): React.JSX.Element;
47
+ declare function useComboboxAnchor(): React.RefObject<HTMLDivElement>;
48
+ export { Combobox, ComboboxInput, ComboboxContent, ComboboxList, ComboboxItem, ComboboxGroup, ComboboxLabel, ComboboxCollection, ComboboxEmpty, ComboboxSeparator, ComboboxChips, ComboboxChip, ComboboxChipsInput, ComboboxTrigger, ComboboxValue, useComboboxAnchor, RESIZABLE_VIRTUALIZED_LIST_CLASS, RESIZABLE_VIRTUALIZED_SCROLL_CLASS, };
@@ -0,0 +1,123 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.RESIZABLE_VIRTUALIZED_SCROLL_CLASS = exports.RESIZABLE_VIRTUALIZED_LIST_CLASS = exports.Combobox = exports.ComboboxPrimitive = exports.useFilteredItems = void 0;
4
+ exports.ComboboxClear = ComboboxClear;
5
+ exports.ComboboxInput = ComboboxInput;
6
+ exports.ComboboxContent = ComboboxContent;
7
+ exports.ComboboxList = ComboboxList;
8
+ exports.ComboboxItem = ComboboxItem;
9
+ exports.ComboboxGroup = ComboboxGroup;
10
+ exports.ComboboxLabel = ComboboxLabel;
11
+ exports.ComboboxCollection = ComboboxCollection;
12
+ exports.ComboboxEmpty = ComboboxEmpty;
13
+ exports.ComboboxSeparator = ComboboxSeparator;
14
+ exports.ComboboxChips = ComboboxChips;
15
+ exports.ComboboxChip = ComboboxChip;
16
+ exports.ComboboxChipsInput = ComboboxChipsInput;
17
+ exports.ComboboxTrigger = ComboboxTrigger;
18
+ exports.ComboboxValue = ComboboxValue;
19
+ exports.useComboboxAnchor = useComboboxAnchor;
20
+ const tslib_1 = require("tslib");
21
+ const jsx_runtime_1 = require("react/jsx-runtime");
22
+ const React = tslib_1.__importStar(require("react"));
23
+ const react_1 = require("@base-ui/react");
24
+ Object.defineProperty(exports, "ComboboxPrimitive", { enumerable: true, get: function () { return react_1.Combobox; } });
25
+ const utils_1 = require("../../lib/utils");
26
+ const button_1 = require("./button");
27
+ const input_group_1 = require("./input-group");
28
+ const lucide_react_1 = require("lucide-react");
29
+ const CheckBox_1 = require("../CheckBox");
30
+ const useFilteredItems = react_1.Combobox.useFilteredItems;
31
+ exports.useFilteredItems = useFilteredItems;
32
+ const Combobox = react_1.Combobox.Root;
33
+ exports.Combobox = Combobox;
34
+ const RESIZABLE_LIST_CLASS = 'twa:group-data-resizable/combobox-content:max-h-none twa:group-data-resizable/combobox-content:flex-1 twa:group-data-resizable/combobox-content:min-h-0';
35
+ const RESIZABLE_VIRTUALIZED_LIST_CLASS = `${RESIZABLE_LIST_CLASS} twa:group-data-resizable/combobox-content:flex twa:group-data-resizable/combobox-content:flex-col`;
36
+ exports.RESIZABLE_VIRTUALIZED_LIST_CLASS = RESIZABLE_VIRTUALIZED_LIST_CLASS;
37
+ const RESIZABLE_VIRTUALIZED_SCROLL_CLASS = 'twa:group-data-resizable/combobox-content:h-auto twa:group-data-resizable/combobox-content:max-h-none twa:group-data-resizable/combobox-content:flex-1 twa:group-data-resizable/combobox-content:min-h-0';
38
+ exports.RESIZABLE_VIRTUALIZED_SCROLL_CLASS = RESIZABLE_VIRTUALIZED_SCROLL_CLASS;
39
+ function ComboboxValue({ ...props }) {
40
+ return (0, jsx_runtime_1.jsx)(react_1.Combobox.Value, { "data-slot": "combobox-value", ...props });
41
+ }
42
+ function ComboboxTrigger({ className, children, ...props }) {
43
+ return ((0, jsx_runtime_1.jsxs)(react_1.Combobox.Trigger, { "data-slot": "combobox-trigger", className: (0, utils_1.cn)('twa:[&_svg:not([class*=size-])]:size-4', className), ...props, children: [children, (0, jsx_runtime_1.jsx)(lucide_react_1.ChevronDownIcon, { className: "twa:pointer-events-none twa:size-4 twa:text-muted-foreground" })] }));
44
+ }
45
+ function ComboboxClear({ className, ...props }) {
46
+ return ((0, jsx_runtime_1.jsx)(react_1.Combobox.Clear, { "data-slot": "combobox-clear", render: (0, jsx_runtime_1.jsx)(input_group_1.InputGroupButton, { variant: "ghost", size: "icon-xs", className: "twa:min-h-auto!" }), className: (0, utils_1.cn)(className), ...props, children: (0, jsx_runtime_1.jsx)(lucide_react_1.XIcon, { className: "twa:pointer-events-none", strokeWidth: 1 }) }));
47
+ }
48
+ function ComboboxInput({ className, children, disabled = false, isLoading = false, showTrigger = true, showClear = false, groupRef, ...props }) {
49
+ const { 'aria-label': ariaLabel, ...rest } = props;
50
+ return ((0, jsx_runtime_1.jsxs)(input_group_1.InputGroup, { ref: groupRef, className: (0, utils_1.cn)('twa:w-auto', className), "aria-label": ariaLabel, children: [(0, jsx_runtime_1.jsx)(react_1.Combobox.Input, { render: (0, jsx_runtime_1.jsx)(input_group_1.InputGroupInput, { disabled: disabled }), ...rest }), (0, jsx_runtime_1.jsxs)(input_group_1.InputGroupAddon, { align: "inline-end", children: [isLoading && ((0, jsx_runtime_1.jsx)(lucide_react_1.Loader2Icon, { className: "twa:size-4 twa:text-muted-foreground twa:animate-spin" })), showTrigger && ((0, jsx_runtime_1.jsx)(input_group_1.InputGroupButton, { size: "icon-xs", variant: "ghost", render: (0, jsx_runtime_1.jsx)(ComboboxTrigger, {}), "data-slot": "input-group-button", className: "twa:group-has-data-[slot=combobox-clear]/input-group:hidden twa:data-pressed:bg-transparent twa:min-h-auto!", disabled: disabled })), showClear && (0, jsx_runtime_1.jsx)(ComboboxClear, { disabled: disabled })] }), children] }));
51
+ }
52
+ function ComboboxContent({ className, side = 'bottom', sideOffset = 6, align = 'start', alignOffset = 0, anchor, resizable = false, contentRef, style, ...props }) {
53
+ const sizeRef = React.useRef(null);
54
+ const popupElRef = React.useRef(null);
55
+ const popupRef = React.useCallback((el) => {
56
+ if (!el && popupElRef.current && resizable) {
57
+ const prev = popupElRef.current;
58
+ const w = prev.style.width;
59
+ const h = prev.style.height;
60
+ if (w && h) {
61
+ sizeRef.current = { width: w, height: h };
62
+ }
63
+ }
64
+ popupElRef.current = el;
65
+ contentRef?.(el);
66
+ if (el && resizable && sizeRef.current) {
67
+ el.style.width = sizeRef.current.width;
68
+ el.style.height = sizeRef.current.height;
69
+ }
70
+ }, [resizable, contentRef]);
71
+ const resizableStyle = resizable
72
+ ? { resize: 'both' }
73
+ : undefined;
74
+ return ((0, jsx_runtime_1.jsx)(react_1.Combobox.Portal, { children: (0, jsx_runtime_1.jsx)(react_1.Combobox.Positioner, { side: side, sideOffset: sideOffset, align: align, alignOffset: alignOffset, anchor: anchor, className: `twa:isolate ${utils_1.POPUP_Z_INDEX}`, children: (0, jsx_runtime_1.jsx)(react_1.Combobox.Popup, { ref: popupRef, "data-slot": "combobox-content", "data-chips": !!anchor, "data-resizable": resizable || undefined, style: { ...resizableStyle, ...style }, className: (0, utils_1.cn)('twa:group/combobox-content twa:relative twa:origin-(--transform-origin) twa:overflow-hidden twa:rounded-input twa:bg-popover twa:text-popover-foreground twa:shadow-md twa:ring-1 twa:ring-foreground/10 twa:duration-100 twa:data-[side=bottom]:slide-in-from-top-2 twa:data-[side=inline-end]:slide-in-from-left-2 twa:data-[side=inline-start]:slide-in-from-right-2 twa:data-[side=left]:slide-in-from-right-2 twa:data-[side=right]:slide-in-from-left-2 twa:data-[side=top]:slide-in-from-bottom-2 twa:*:data-[slot=input-group]:m-1 twa:*:data-[slot=input-group]:mb-0 twa:*:data-[slot=input-group]:h-8 twa:*:data-[slot=input-group]:border-input/30 twa:*:data-[slot=input-group]:bg-input/30 twa:*:data-[slot=input-group]:shadow-none twa:data-open:animate-in twa:data-open:fade-in-0 twa:data-open:zoom-in-95 twa:data-closed:animate-out twa:data-closed:fade-out-0 twa:data-closed:zoom-out-95', 'twa:max-h-[min(var(--available-height),80vh)]', 'twa:max-w-[min(var(--available-width),80vw)]', 'twa:min-w-[min(calc(var(--anchor-width)+--spacing(7)),var(--available-width),80vw)]', resizable ? 'twa:flex twa:flex-col twa:min-h-24' : 'twa:w-(--anchor-width)', className), ...props }) }) }));
75
+ }
76
+ function ComboboxList({ className, ...props }) {
77
+ return ((0, jsx_runtime_1.jsx)(react_1.Combobox.List, { "data-slot": "combobox-list", className: (0, utils_1.cn)('twa:no-scrollbar twa:max-h-[min(calc(--spacing(72)---spacing(9)),calc(var(--available-height)---spacing(9)))] twa:scroll-py-1 twa:overflow-y-auto twa:overscroll-contain twa:p-1 twa:data-empty:p-0', RESIZABLE_LIST_CLASS, className), ...props }));
78
+ }
79
+ const checkboxIndicatorRender = (props, state) => {
80
+ const clsForSquare = state.selected ? 'twa:ring-1 twa:ring-accent-foreground' : '';
81
+ return ((0, jsx_runtime_1.jsx)(CheckBox_1.CheckBox, { checked: state.selected, tabIndex: -1, checkSquareClassName: clsForSquare, className: "twa:p-0 twa:m-0 twa:cursor-pointer" }));
82
+ };
83
+ function ComboboxItem({ className, children, renderCheckboxIndicator, ...props }) {
84
+ return ((0, jsx_runtime_1.jsxs)(react_1.Combobox.Item, { className: (0, utils_1.cn)('twa:relative twa:flex twa:w-full twa:cursor-default twa:items-center twa:gap-2 twa:rounded-input twa:py-1.5 twa:pl-2 twa:text-sm twa:outline-hidden twa:select-none twa:data-highlighted:bg-accent twa:data-highlighted:text-accent-foreground twa:not-data-[variant=destructive]:data-highlighted:**:text-accent-foreground twa:data-disabled:pointer-events-none twa:data-disabled:opacity-50 twa:[&_svg]:pointer-events-none twa:[&_svg]:shrink-0 twa:[&_svg:not([class*=size-])]:size-4', 'twa:cursor-pointer', renderCheckboxIndicator ? 'twa:pr-2' : 'twa:pr-8', className), ...props, "data-slot": "combobox-item", children: [renderCheckboxIndicator ? ((0, jsx_runtime_1.jsx)(react_1.Combobox.ItemIndicator, { keepMounted: true, render: renderCheckboxIndicator === true ? checkboxIndicatorRender : renderCheckboxIndicator })) : null, children, !renderCheckboxIndicator && ((0, jsx_runtime_1.jsx)(react_1.Combobox.ItemIndicator, { render: (0, jsx_runtime_1.jsx)("span", { className: "twa:pointer-events-none twa:absolute twa:right-2 twa:flex twa:size-4 twa:items-center twa:justify-center" }), children: (0, jsx_runtime_1.jsx)(lucide_react_1.CheckIcon, { className: "twa:pointer-events-none" }) }))] }));
85
+ }
86
+ function ComboboxGroup({ className, ...props }) {
87
+ return ((0, jsx_runtime_1.jsx)(react_1.Combobox.Group, { "data-slot": "combobox-group", className: (0, utils_1.cn)(className), ...props }));
88
+ }
89
+ function ComboboxLabel({ className, ...props }) {
90
+ return ((0, jsx_runtime_1.jsx)(react_1.Combobox.GroupLabel, { "data-slot": "combobox-label", className: (0, utils_1.cn)('twa:px-2 twa:py-1.5 twa:text-xs twa:text-muted-foreground', className), ...props }));
91
+ }
92
+ function ComboboxCollection({ ...props }) {
93
+ return (0, jsx_runtime_1.jsx)(react_1.Combobox.Collection, { "data-slot": "combobox-collection", ...props });
94
+ }
95
+ function ComboboxEmpty({ className, ...props }) {
96
+ return ((0, jsx_runtime_1.jsx)(react_1.Combobox.Empty, { "data-slot": "combobox-empty", className: (0, utils_1.cn)('twa:hidden twa:w-full twa:justify-center twa:py-2 twa:text-center twa:text-sm twa:text-muted-foreground twa:group-data-empty/combobox-content:flex', className), ...props }));
97
+ }
98
+ function ComboboxSeparator({ className, ...props }) {
99
+ return ((0, jsx_runtime_1.jsx)(react_1.Combobox.Separator, { "data-slot": "combobox-separator", className: (0, utils_1.cn)('twa:-mx-1 twa:my-1 twa:h-px twa:bg-border', className), ...props }));
100
+ }
101
+ function ComboboxChips({ className, ...props }) {
102
+ return ((0, jsx_runtime_1.jsx)(react_1.Combobox.Chips, { "data-slot": "combobox-chips", className: (0, utils_1.cn)('twa:focus-within:outline-none', 'twa:flex twa:flex-wrap twa:items-center twa:gap-1.5 twa:rounded-input twa:border twa:border-input twa:bg-input-background twa:bg-clip-padding twa:text-sm twa:shadow-xs twa:transition-[color,box-shadow] twa:focus-within:border-ring twa:focus-within:ring-3 twa:focus-within:ring-ring/50 twa:has-aria-invalid:border-destructive twa:has-aria-invalid:ring-3 twa:has-aria-invalid:ring-destructive/20 twa:has-data-[slot=combobox-chip]:px-1.5 twa:dark:bg-input/30 twa:dark:has-aria-invalid:border-destructive/50 twa:dark:has-aria-invalid:ring-destructive/40', 'twa:py-1', 'twa:px-2.5', 'twa:min-h-input', 'twa:[&>input]:max-h-[calc(var(--ab-input-height)-1.5*var(--ab-base-space))]!', className), ...props }));
103
+ }
104
+ function ComboboxChip({ className, children, showRemove = true, onRemove, ...props }) {
105
+ return ((0, jsx_runtime_1.jsxs)(react_1.Combobox.Chip, { "data-slot": "combobox-chip", className: (0, utils_1.cn)('twa:flex twa:h-[calc(--spacing(5.5))] twa:w-fit twa:items-center twa:justify-center twa:gap-1 twa:rounded-input twa:bg-muted twa:px-1.5 twa:text-xs twa:font-medium twa:whitespace-nowrap twa:text-input-foreground twa:has-disabled:pointer-events-none twa:has-disabled:cursor-not-allowed twa:has-disabled:opacity-50 twa:has-data-[slot=combobox-chip-remove]:pr-0', className), ...props, children: [children, showRemove &&
106
+ (onRemove ? ((0, jsx_runtime_1.jsx)(button_1.Button, { type: "button", variant: "ghost", size: "icon-xs", tabIndex: -1, "data-slot": "combobox-chip-remove", className: "twa:-ml-1 twa:opacity-50 twa:hover:opacity-100", onMouseDown: (e) => {
107
+ // Don't let base-ui's Chip onMouseDown steal focus back to the
108
+ // input before the click fires.
109
+ e.preventDefault();
110
+ // and also stop the propagation, so the mousedown wont
111
+ // trigger the combobox to open
112
+ e.stopPropagation();
113
+ }, onClick: (e) => {
114
+ e.stopPropagation();
115
+ onRemove(e);
116
+ }, children: (0, jsx_runtime_1.jsx)(lucide_react_1.XIcon, { className: "twa:pointer-events-none" }) })) : ((0, jsx_runtime_1.jsx)(react_1.Combobox.ChipRemove, { render: (0, jsx_runtime_1.jsx)(button_1.Button, { variant: "ghost", size: "icon-xs" }), className: "twa:-ml-1 twa:opacity-50 twa:hover:opacity-100", "data-slot": "combobox-chip-remove", children: (0, jsx_runtime_1.jsx)(lucide_react_1.XIcon, { className: "twa:pointer-events-none" }) })))] }));
117
+ }
118
+ function ComboboxChipsInput({ className, ...props }) {
119
+ return ((0, jsx_runtime_1.jsx)(react_1.Combobox.Input, { "data-slot": "combobox-chip-input", className: (0, utils_1.cn)('twa:placeholder:text-muted-foreground twa:min-w-16 twa:flex-1 twa:px-2.5 twa:outline-none twa:border-none twa:bg-transparent twa:min-h-auto!', className), ...props }));
120
+ }
121
+ function useComboboxAnchor() {
122
+ return React.useRef(null);
123
+ }
@@ -0,0 +1,29 @@
1
+ import * as React from 'react';
2
+ import { Menu as MenuPrimitive } from '@base-ui/react/menu';
3
+ declare function DropdownMenu({ ...props }: MenuPrimitive.Root.Props): React.JSX.Element;
4
+ declare function DropdownMenuPortal({ ...props }: MenuPrimitive.Portal.Props): React.JSX.Element;
5
+ declare function DropdownMenuTrigger({ ...props }: MenuPrimitive.Trigger.Props): React.JSX.Element;
6
+ declare function DropdownMenuContent({ align, alignOffset, side, sideOffset, className, ...props }: MenuPrimitive.Popup.Props & Pick<MenuPrimitive.Positioner.Props, 'align' | 'alignOffset' | 'side' | 'sideOffset'>): React.JSX.Element;
7
+ declare function DropdownMenuGroup({ ...props }: MenuPrimitive.Group.Props): React.JSX.Element;
8
+ declare function DropdownMenuLabel({ className, inset, ...props }: MenuPrimitive.GroupLabel.Props & {
9
+ inset?: boolean;
10
+ }): React.JSX.Element;
11
+ declare function DropdownMenuItem({ className, inset, variant, ...props }: MenuPrimitive.Item.Props & {
12
+ inset?: boolean;
13
+ variant?: 'default' | 'destructive';
14
+ }): React.JSX.Element;
15
+ declare function DropdownMenuSub({ ...props }: MenuPrimitive.SubmenuRoot.Props): React.JSX.Element;
16
+ declare function DropdownMenuSubTrigger({ className, inset, children, ...props }: MenuPrimitive.SubmenuTrigger.Props & {
17
+ inset?: boolean;
18
+ }): React.JSX.Element;
19
+ declare function DropdownMenuSubContent({ align, alignOffset, side, sideOffset, className, ...props }: React.ComponentProps<typeof DropdownMenuContent>): React.JSX.Element;
20
+ declare function DropdownMenuCheckboxItem({ className, children, checked, inset, ...props }: MenuPrimitive.CheckboxItem.Props & {
21
+ inset?: boolean;
22
+ }): React.JSX.Element;
23
+ declare function DropdownMenuRadioGroup({ ...props }: MenuPrimitive.RadioGroup.Props): React.JSX.Element;
24
+ declare function DropdownMenuRadioItem({ className, children, inset, ...props }: MenuPrimitive.RadioItem.Props & {
25
+ inset?: boolean;
26
+ }): React.JSX.Element;
27
+ declare function DropdownMenuSeparator({ className, ...props }: MenuPrimitive.Separator.Props): React.JSX.Element;
28
+ declare function DropdownMenuShortcut({ className, ...props }: React.ComponentProps<'span'>): React.JSX.Element;
29
+ export { DropdownMenu, DropdownMenuPortal, DropdownMenuTrigger, DropdownMenuContent, DropdownMenuGroup, DropdownMenuLabel, DropdownMenuItem, DropdownMenuCheckboxItem, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubTrigger, DropdownMenuSubContent, };
@@ -0,0 +1,66 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.DropdownMenu = DropdownMenu;
4
+ exports.DropdownMenuPortal = DropdownMenuPortal;
5
+ exports.DropdownMenuTrigger = DropdownMenuTrigger;
6
+ exports.DropdownMenuContent = DropdownMenuContent;
7
+ exports.DropdownMenuGroup = DropdownMenuGroup;
8
+ exports.DropdownMenuLabel = DropdownMenuLabel;
9
+ exports.DropdownMenuItem = DropdownMenuItem;
10
+ exports.DropdownMenuCheckboxItem = DropdownMenuCheckboxItem;
11
+ exports.DropdownMenuRadioGroup = DropdownMenuRadioGroup;
12
+ exports.DropdownMenuRadioItem = DropdownMenuRadioItem;
13
+ exports.DropdownMenuSeparator = DropdownMenuSeparator;
14
+ exports.DropdownMenuShortcut = DropdownMenuShortcut;
15
+ exports.DropdownMenuSub = DropdownMenuSub;
16
+ exports.DropdownMenuSubTrigger = DropdownMenuSubTrigger;
17
+ exports.DropdownMenuSubContent = DropdownMenuSubContent;
18
+ const jsx_runtime_1 = require("react/jsx-runtime");
19
+ const menu_1 = require("@base-ui/react/menu");
20
+ const utils_1 = require("../../lib/utils");
21
+ const lucide_react_1 = require("lucide-react");
22
+ function DropdownMenu({ ...props }) {
23
+ return (0, jsx_runtime_1.jsx)(menu_1.Menu.Root, { "data-slot": "dropdown-menu", ...props });
24
+ }
25
+ function DropdownMenuPortal({ ...props }) {
26
+ return (0, jsx_runtime_1.jsx)(menu_1.Menu.Portal, { "data-slot": "dropdown-menu-portal", ...props });
27
+ }
28
+ function DropdownMenuTrigger({ ...props }) {
29
+ return (0, jsx_runtime_1.jsx)(menu_1.Menu.Trigger, { "data-slot": "dropdown-menu-trigger", ...props });
30
+ }
31
+ function DropdownMenuContent({ align = 'start', alignOffset = 0, side = 'bottom', sideOffset = 4, className, ...props }) {
32
+ return ((0, jsx_runtime_1.jsx)(menu_1.Menu.Portal, { children: (0, jsx_runtime_1.jsx)(menu_1.Menu.Positioner, { className: `twa:isolate ${utils_1.POPUP_Z_INDEX} twa:outline-none`, align: align, alignOffset: alignOffset, side: side, sideOffset: sideOffset, children: (0, jsx_runtime_1.jsx)(menu_1.Menu.Popup, { "data-slot": "dropdown-menu-content", className: (0, utils_1.cn)('twa:z-50 twa:max-h-(--available-height) twa:w-(--anchor-width) twa:min-w-32 twa:origin-(--transform-origin) twa:overflow-x-hidden twa:overflow-y-auto twa:rounded-md twa:bg-popover twa:p-1 twa:text-popover-foreground twa:shadow-md twa:ring-1 twa:ring-foreground/10 twa:duration-100 twa:outline-none twa:data-[side=bottom]:slide-in-from-top-2 twa:data-[side=inline-end]:slide-in-from-left-2 twa:data-[side=inline-start]:slide-in-from-right-2 twa:data-[side=left]:slide-in-from-right-2 twa:data-[side=right]:slide-in-from-left-2 twa:data-[side=top]:slide-in-from-bottom-2 twa:data-open:animate-in twa:data-open:fade-in-0 twa:data-open:zoom-in-95 twa:data-closed:animate-out twa:data-closed:overflow-hidden twa:data-closed:fade-out-0 twa:data-closed:zoom-out-95', className), ...props }) }) }));
33
+ }
34
+ function DropdownMenuGroup({ ...props }) {
35
+ return (0, jsx_runtime_1.jsx)(menu_1.Menu.Group, { "data-slot": "dropdown-menu-group", ...props });
36
+ }
37
+ function DropdownMenuLabel({ className, inset, ...props }) {
38
+ return ((0, jsx_runtime_1.jsx)(menu_1.Menu.GroupLabel, { "data-slot": "dropdown-menu-label", "data-inset": inset, className: (0, utils_1.cn)('twa:px-2 twa:py-1.5 twa:text-xs twa:font-medium twa:text-muted-foreground twa:data-inset:pl-8', className), ...props }));
39
+ }
40
+ function DropdownMenuItem({ className, inset, variant = 'default', ...props }) {
41
+ return ((0, jsx_runtime_1.jsx)(menu_1.Menu.Item, { "data-slot": "dropdown-menu-item", "data-inset": inset, "data-variant": variant, className: (0, utils_1.cn)('twa:group/dropdown-menu-item twa:relative twa:flex twa:cursor-default twa:items-center twa:gap-2 twa:rounded-sm twa:px-2 twa:py-1.5 twa:text-sm twa:outline-hidden twa:select-none twa:focus:bg-accent twa:focus:text-accent-foreground twa:not-data-[variant=destructive]:focus:**:text-accent-foreground twa:data-inset:pl-8 twa:data-[variant=destructive]:text-destructive twa:data-[variant=destructive]:focus:bg-destructive/10 twa:data-[variant=destructive]:focus:text-destructive twa:dark:data-[variant=destructive]:focus:bg-destructive/20 twa:data-disabled:pointer-events-none twa:data-disabled:opacity-50 twa:[&_svg]:pointer-events-none twa:[&_svg]:shrink-0 twa:[&_svg:not([class*=size-])]:size-4 twa:data-[variant=destructive]:*:[svg]:text-destructive', className), ...props }));
42
+ }
43
+ function DropdownMenuSub({ ...props }) {
44
+ return (0, jsx_runtime_1.jsx)(menu_1.Menu.SubmenuRoot, { "data-slot": "dropdown-menu-sub", ...props });
45
+ }
46
+ function DropdownMenuSubTrigger({ className, inset, children, ...props }) {
47
+ return ((0, jsx_runtime_1.jsxs)(menu_1.Menu.SubmenuTrigger, { "data-slot": "dropdown-menu-sub-trigger", "data-inset": inset, className: (0, utils_1.cn)('twa:flex twa:cursor-default twa:items-center twa:gap-2 twa:rounded-sm twa:px-2 twa:py-1.5 twa:text-sm twa:outline-hidden twa:select-none twa:focus:bg-accent twa:focus:text-accent-foreground twa:not-data-[variant=destructive]:focus:**:text-accent-foreground twa:data-inset:pl-8 twa:data-popup-open:bg-accent twa:data-popup-open:text-accent-foreground twa:data-open:bg-accent twa:data-open:text-accent-foreground twa:[&_svg]:pointer-events-none twa:[&_svg]:shrink-0 twa:[&_svg:not([class*=size-])]:size-4', className), ...props, children: [children, (0, jsx_runtime_1.jsx)(lucide_react_1.ChevronRightIcon, { className: "twa: twa:ml-auto" })] }));
48
+ }
49
+ function DropdownMenuSubContent({ align = 'start', alignOffset = -3, side = 'right', sideOffset = 0, className, ...props }) {
50
+ return ((0, jsx_runtime_1.jsx)(DropdownMenuContent, { "data-slot": "dropdown-menu-sub-content", className: (0, utils_1.cn)('twa:w-auto twa:min-w-[96px] twa:rounded-md twa:bg-popover twa:p-1 twa:text-popover-foreground twa:shadow-lg twa:ring-1 twa:ring-foreground/10 twa:duration-100 twa:data-[side=bottom]:slide-in-from-top-2 twa:data-[side=left]:slide-in-from-right-2 twa:data-[side=right]:slide-in-from-left-2 twa:data-[side=top]:slide-in-from-bottom-2 twa:data-open:animate-in twa:data-open:fade-in-0 twa:data-open:zoom-in-95 twa:data-closed:animate-out twa:data-closed:fade-out-0 twa:data-closed:zoom-out-95', className), align: align, alignOffset: alignOffset, side: side, sideOffset: sideOffset, ...props }));
51
+ }
52
+ function DropdownMenuCheckboxItem({ className, children, checked, inset, ...props }) {
53
+ return ((0, jsx_runtime_1.jsxs)(menu_1.Menu.CheckboxItem, { "data-slot": "dropdown-menu-checkbox-item", "data-inset": inset, className: (0, utils_1.cn)('twa:relative twa:flex twa:cursor-default twa:items-center twa:gap-2 twa:rounded-sm twa:py-1.5 twa:pr-8 twa:pl-2 twa:text-sm twa:outline-hidden twa:select-none twa:focus:bg-accent twa:focus:text-accent-foreground twa:focus:**:text-accent-foreground twa:data-inset:pl-8 twa:data-disabled:pointer-events-none twa:data-disabled:opacity-50 twa:[&_svg]:pointer-events-none twa:[&_svg]:shrink-0 twa:[&_svg:not([class*=size-])]:size-4', className), checked: checked, ...props, children: [(0, jsx_runtime_1.jsx)("span", { className: "twa:pointer-events-none twa:absolute twa:right-2 twa:flex twa:items-center twa:justify-center", "data-slot": "dropdown-menu-checkbox-item-indicator", children: (0, jsx_runtime_1.jsx)(menu_1.Menu.CheckboxItemIndicator, { children: (0, jsx_runtime_1.jsx)(lucide_react_1.CheckIcon, {}) }) }), children] }));
54
+ }
55
+ function DropdownMenuRadioGroup({ ...props }) {
56
+ return (0, jsx_runtime_1.jsx)(menu_1.Menu.RadioGroup, { "data-slot": "dropdown-menu-radio-group", ...props });
57
+ }
58
+ function DropdownMenuRadioItem({ className, children, inset, ...props }) {
59
+ return ((0, jsx_runtime_1.jsxs)(menu_1.Menu.RadioItem, { "data-slot": "dropdown-menu-radio-item", "data-inset": inset, className: (0, utils_1.cn)('twa:relative twa:flex twa:cursor-default twa:items-center twa:gap-2 twa:rounded-sm twa:py-1.5 twa:pr-8 twa:pl-2 twa:text-sm twa:outline-hidden twa:select-none twa:focus:bg-accent twa:focus:text-accent-foreground twa:focus:**:text-accent-foreground twa:data-inset:pl-8 twa:data-disabled:pointer-events-none twa:data-disabled:opacity-50 twa:[&_svg]:pointer-events-none twa:[&_svg]:shrink-0 twa:[&_svg:not([class*=size-])]:size-4', className), ...props, children: [(0, jsx_runtime_1.jsx)("span", { className: "twa:pointer-events-none twa:absolute twa:right-2 twa:flex twa:items-center twa:justify-center", "data-slot": "dropdown-menu-radio-item-indicator", children: (0, jsx_runtime_1.jsx)(menu_1.Menu.RadioItemIndicator, { children: (0, jsx_runtime_1.jsx)(lucide_react_1.CheckIcon, {}) }) }), children] }));
60
+ }
61
+ function DropdownMenuSeparator({ className, ...props }) {
62
+ return ((0, jsx_runtime_1.jsx)(menu_1.Menu.Separator, { "data-slot": "dropdown-menu-separator", className: (0, utils_1.cn)('twa:-mx-1 twa:my-1 twa:h-px twa:bg-border', className), ...props }));
63
+ }
64
+ function DropdownMenuShortcut({ className, ...props }) {
65
+ return ((0, jsx_runtime_1.jsx)("span", { "data-slot": "dropdown-menu-shortcut", className: (0, utils_1.cn)('twa:ml-auto twa:text-xs twa:tracking-widest twa:text-muted-foreground twa:group-focus/dropdown-menu-item:text-accent-foreground', className), ...props }));
66
+ }
@@ -0,0 +1,18 @@
1
+ import * as React from 'react';
2
+ import { type VariantProps } from 'class-variance-authority';
3
+ import { Button } from "./button";
4
+ declare function InputGroup({ className, ...props }: React.ComponentProps<'div'>): React.JSX.Element;
5
+ declare const inputGroupAddonVariants: (props?: {
6
+ align?: "inline-end" | "inline-start" | "block-end" | "block-start";
7
+ } & import("class-variance-authority/dist/types").ClassProp) => string;
8
+ declare function InputGroupAddon({ className, align, ...props }: React.ComponentProps<'div'> & VariantProps<typeof inputGroupAddonVariants>): React.JSX.Element;
9
+ declare const inputGroupButtonVariants: (props?: {
10
+ size?: "xs" | "sm" | "icon-xs" | "icon-sm";
11
+ } & import("class-variance-authority/dist/types").ClassProp) => string;
12
+ declare function InputGroupButton({ className, type, variant, size, ...props }: Omit<React.ComponentProps<typeof Button>, 'size' | 'type'> & VariantProps<typeof inputGroupButtonVariants> & {
13
+ type?: 'button' | 'submit' | 'reset';
14
+ }): React.JSX.Element;
15
+ declare function InputGroupText({ className, ...props }: React.ComponentProps<'span'>): React.JSX.Element;
16
+ declare function InputGroupInput({ className, ...props }: React.ComponentProps<'input'>): React.JSX.Element;
17
+ declare function InputGroupTextarea({ className, ...props }: React.ComponentProps<'textarea'>): React.JSX.Element;
18
+ export { InputGroup, InputGroupAddon, InputGroupButton, InputGroupText, InputGroupInput, InputGroupTextarea, };
@@ -0,0 +1,64 @@
1
+ 'use client';
2
+ "use strict";
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.InputGroup = InputGroup;
5
+ exports.InputGroupAddon = InputGroupAddon;
6
+ exports.InputGroupButton = InputGroupButton;
7
+ exports.InputGroupText = InputGroupText;
8
+ exports.InputGroupInput = InputGroupInput;
9
+ exports.InputGroupTextarea = InputGroupTextarea;
10
+ const jsx_runtime_1 = require("react/jsx-runtime");
11
+ const class_variance_authority_1 = require("class-variance-authority");
12
+ const utils_1 = require("../../lib/utils");
13
+ const button_1 = require("./button");
14
+ const input_1 = require("./input");
15
+ const textarea_1 = require("./textarea");
16
+ function InputGroup({ className, ...props }) {
17
+ return ((0, jsx_runtime_1.jsx)("div", { "data-slot": "input-group", role: "group", className: (0, utils_1.cn)('twa:group/input-group twa:relative twa:flex twa:h-input twa:w-full twa:min-w-0 twa:items-center twa:rounded-input twa:border twa:border-input twa:shadow-xs twa:transition-[color,box-shadow] twa:outline-none twa:in-data-[slot=combobox-content]:focus-within:border-inherit twa:in-data-[slot=combobox-content]:focus-within:ring-0 twa:has-[[data-slot=input-group-control]:focus-visible]:border-ring twa:has-[[data-slot=input-group-control]:focus-visible]:ring-3 twa:has-[[data-slot=input-group-control]:focus-visible]:ring-ring/50 twa:has-[[data-slot][aria-invalid=true]]:border-destructive twa:has-[[data-slot][aria-invalid=true]]:ring-3 twa:has-[[data-slot][aria-invalid=true]]:ring-destructive/20 twa:has-[>[data-align=block-end]]:h-auto twa:has-[>[data-align=block-end]]:flex-col twa:has-[>[data-align=block-start]]:h-auto twa:has-[>[data-align=block-start]]:flex-col twa:has-[>textarea]:h-auto twa:dark:bg-input/30 twa:dark:has-[[data-slot][aria-invalid=true]]:ring-destructive/40 twa:has-[>[data-align=block-end]]:[&>input]:pt-3 twa:has-[>[data-align=block-start]]:[&>input]:pb-3 twa:has-[>[data-align=inline-end]]:[&>input]:pr-1.5 twa:has-[>[data-align=inline-start]]:[&>input]:pl-1.5', className), ...props }));
18
+ }
19
+ const inputGroupAddonVariants = (0, class_variance_authority_1.cva)('twa:flex twa:h-auto twa:cursor-text twa:items-center twa:justify-center twa:gap-2 twa:py-1.5 twa:text-sm twa:font-medium twa:text-muted-foreground twa:select-none twa:group-data-[disabled=true]/input-group:opacity-50 twa:[&>kbd]:rounded-[calc(var(--ab-border-radius))] twa:[&>svg:not([class*=size-])]:size-4', {
20
+ variants: {
21
+ align: {
22
+ 'inline-start': 'twa:order-first twa:pl-2 twa:has-[>button]:-ml-1 twa:has-[>kbd]:ml-[-0.15rem]',
23
+ 'inline-end': 'twa:order-last twa:pr-2 twa:has-[>button]:-mr-1 twa:has-[>kbd]:mr-[-0.15rem]',
24
+ 'block-start': 'twa:order-first twa:w-full twa:justify-start twa:px-2.5 twa:pt-2 twa:group-has-[>input]/input-group:pt-2 twa:[.border-b]:pb-2',
25
+ 'block-end': 'twa:order-last twa:w-full twa:justify-start twa:px-2.5 twa:pb-2 twa:group-has-[>input]/input-group:pb-2 twa:[.border-t]:pt-2',
26
+ },
27
+ },
28
+ defaultVariants: {
29
+ align: 'inline-start',
30
+ },
31
+ });
32
+ function InputGroupAddon({ className, align = 'inline-start', ...props }) {
33
+ return ((0, jsx_runtime_1.jsx)("div", { role: "group", "data-slot": "input-group-addon", "data-align": align, className: (0, utils_1.cn)(inputGroupAddonVariants({ align }), className), onClick: (e) => {
34
+ if (e.target.closest('button')) {
35
+ return;
36
+ }
37
+ e.currentTarget.parentElement?.querySelector('input')?.focus();
38
+ }, ...props }));
39
+ }
40
+ const inputGroupButtonVariants = (0, class_variance_authority_1.cva)('twa:flex twa:items-center twa:gap-2 twa:text-sm twa:shadow-none', {
41
+ variants: {
42
+ size: {
43
+ xs: 'twa:h-6 twa:gap-1 twa:rounded twa:px-1.5 twa:[&>svg:not([class*=size-])]:size-3.5',
44
+ sm: 'twa:',
45
+ 'icon-xs': 'twa:size-6 twa:rounded twa:p-0 twa:has-[>svg]:p-0',
46
+ 'icon-sm': 'twa:size-8 twa:p-0 twa:has-[>svg]:p-0',
47
+ },
48
+ },
49
+ defaultVariants: {
50
+ size: 'xs',
51
+ },
52
+ });
53
+ function InputGroupButton({ className, type = 'button', variant = 'ghost', size = 'xs', ...props }) {
54
+ return ((0, jsx_runtime_1.jsx)(button_1.Button, { type: type, "data-size": size, variant: variant, className: (0, utils_1.cn)(inputGroupButtonVariants({ size }), className), ...props }));
55
+ }
56
+ function InputGroupText({ className, ...props }) {
57
+ return ((0, jsx_runtime_1.jsx)("span", { className: (0, utils_1.cn)('twa:flex twa:items-center twa:gap-2 twa:text-sm twa:text-muted-foreground twa:[&_svg]:pointer-events-none twa:[&_svg:not([class*=size-])]:size-4', className), ...props }));
58
+ }
59
+ function InputGroupInput({ className, ...props }) {
60
+ return ((0, jsx_runtime_1.jsx)(input_1.Input, { "data-slot": "input-group-control", className: (0, utils_1.cn)('twa:flex-1 twa:rounded-none twa:border-0 twa:bg-transparent twa:shadow-none twa:ring-0 twa:focus-visible:ring-0 twa:aria-invalid:ring-0 twa:dark:bg-transparent', className), ...props }));
61
+ }
62
+ function InputGroupTextarea({ className, ...props }) {
63
+ return ((0, jsx_runtime_1.jsx)(textarea_1.Textarea, { "data-slot": "input-group-control", className: (0, utils_1.cn)('twa:flex-1 twa:resize-none twa:rounded-none twa:border-0 twa:bg-transparent twa:py-2 twa:shadow-none twa:ring-0 twa:focus-visible:ring-0 twa:aria-invalid:ring-0 twa:dark:bg-transparent', className), ...props }));
64
+ }
@@ -0,0 +1,3 @@
1
+ import * as React from "react";
2
+ declare function Input({ className, type, ...props }: React.ComponentProps<"input">): React.JSX.Element;
3
+ export { Input };
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.Input = Input;
4
+ const jsx_runtime_1 = require("react/jsx-runtime");
5
+ const input_1 = require("@base-ui/react/input");
6
+ const utils_1 = require("../../lib/utils");
7
+ function Input({ className, type, ...props }) {
8
+ return ((0, jsx_runtime_1.jsx)(input_1.Input, { type: type, "data-slot": "input", className: (0, utils_1.cn)("twa:h-9 twa:w-full twa:min-w-0 twa:rounded-md twa:border twa:border-input twa:bg-transparent twa:px-2.5 twa:py-1 twa:text-base twa:shadow-xs twa:transition-[color,box-shadow] twa:outline-none twa:file:inline-flex twa:file:h-7 twa:file:border-0 twa:file:bg-transparent twa:file:text-sm twa:file:font-medium twa:file:text-foreground twa:placeholder:text-muted-foreground twa:focus-visible:border-ring twa:focus-visible:ring-3 twa:focus-visible:ring-ring/50 twa:disabled:pointer-events-none twa:disabled:cursor-not-allowed twa:disabled:opacity-50 twa:aria-invalid:border-destructive twa:aria-invalid:ring-3 twa:aria-invalid:ring-destructive/20 twa:md:text-sm twa:dark:bg-input/30 twa:dark:aria-invalid:border-destructive/50 twa:dark:aria-invalid:ring-destructive/40", className), ...props }));
9
+ }
@@ -0,0 +1,9 @@
1
+ import * as React from "react";
2
+ import { Popover as PopoverPrimitive } from "@base-ui/react/popover";
3
+ declare function Popover({ ...props }: PopoverPrimitive.Root.Props): React.JSX.Element;
4
+ declare function PopoverTrigger({ ...props }: PopoverPrimitive.Trigger.Props): React.JSX.Element;
5
+ declare function PopoverContent({ className, align, alignOffset, side, sideOffset, ...props }: PopoverPrimitive.Popup.Props & Pick<PopoverPrimitive.Positioner.Props, "align" | "alignOffset" | "side" | "sideOffset">): React.JSX.Element;
6
+ declare function PopoverHeader({ className, ...props }: React.ComponentProps<"div">): React.JSX.Element;
7
+ declare function PopoverTitle({ className, ...props }: PopoverPrimitive.Title.Props): React.JSX.Element;
8
+ declare function PopoverDescription({ className, ...props }: PopoverPrimitive.Description.Props): React.JSX.Element;
9
+ export { Popover, PopoverContent, PopoverDescription, PopoverHeader, PopoverTitle, PopoverTrigger, };
@@ -0,0 +1,29 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.Popover = Popover;
4
+ exports.PopoverContent = PopoverContent;
5
+ exports.PopoverDescription = PopoverDescription;
6
+ exports.PopoverHeader = PopoverHeader;
7
+ exports.PopoverTitle = PopoverTitle;
8
+ exports.PopoverTrigger = PopoverTrigger;
9
+ const jsx_runtime_1 = require("react/jsx-runtime");
10
+ const popover_1 = require("@base-ui/react/popover");
11
+ const utils_1 = require("../../lib/utils");
12
+ function Popover({ ...props }) {
13
+ return (0, jsx_runtime_1.jsx)(popover_1.Popover.Root, { "data-slot": "popover", ...props });
14
+ }
15
+ function PopoverTrigger({ ...props }) {
16
+ return (0, jsx_runtime_1.jsx)(popover_1.Popover.Trigger, { "data-slot": "popover-trigger", ...props });
17
+ }
18
+ function PopoverContent({ className, align = "center", alignOffset = 0, side = "bottom", sideOffset = 4, ...props }) {
19
+ return ((0, jsx_runtime_1.jsx)(popover_1.Popover.Portal, { children: (0, jsx_runtime_1.jsx)(popover_1.Popover.Positioner, { align: align, alignOffset: alignOffset, side: side, sideOffset: sideOffset, className: `twa:isolate ${utils_1.POPUP_Z_INDEX}`, children: (0, jsx_runtime_1.jsx)(popover_1.Popover.Popup, { "data-slot": "popover-content", className: (0, utils_1.cn)("twa:flex twa:w-72 twa:origin-(--transform-origin) twa:flex-col twa:gap-4 twa:rounded-md twa:bg-popover twa:p-4 twa:text-sm twa:text-popover-foreground twa:shadow-md twa:ring-1 twa:ring-foreground/10 twa:outline-hidden twa:duration-100 twa:data-[side=bottom]:slide-in-from-top-2 twa:data-[side=inline-end]:slide-in-from-left-2 twa:data-[side=inline-start]:slide-in-from-right-2 twa:data-[side=left]:slide-in-from-right-2 twa:data-[side=right]:slide-in-from-left-2 twa:data-[side=top]:slide-in-from-bottom-2 twa:data-open:animate-in twa:data-open:fade-in-0 twa:data-open:zoom-in-95 twa:data-closed:animate-out twa:data-closed:fade-out-0 twa:data-closed:zoom-out-95", className), ...props }) }) }));
20
+ }
21
+ function PopoverHeader({ className, ...props }) {
22
+ return ((0, jsx_runtime_1.jsx)("div", { "data-slot": "popover-header", className: (0, utils_1.cn)("twa:flex twa:flex-col twa:gap-1 twa:text-sm", className), ...props }));
23
+ }
24
+ function PopoverTitle({ className, ...props }) {
25
+ return ((0, jsx_runtime_1.jsx)(popover_1.Popover.Title, { "data-slot": "popover-title", className: (0, utils_1.cn)("twa: twa:font-medium", className), ...props }));
26
+ }
27
+ function PopoverDescription({ className, ...props }) {
28
+ return ((0, jsx_runtime_1.jsx)(popover_1.Popover.Description, { "data-slot": "popover-description", className: (0, utils_1.cn)("twa:text-muted-foreground", className), ...props }));
29
+ }
@@ -0,0 +1,26 @@
1
+ import * as React from 'react';
2
+ import { Select as SelectPrimitive } from '@base-ui/react/select';
3
+ declare const Select: typeof SelectPrimitive.Root;
4
+ declare function SelectGroup({ className, ...props }: SelectPrimitive.Group.Props): React.JSX.Element;
5
+ declare function SelectValue({ className, ...props }: SelectPrimitive.Value.Props): React.JSX.Element;
6
+ declare function SelectTrigger({ className, size, children, ...props }: SelectPrimitive.Trigger.Props & {
7
+ size?: 'sm' | 'default';
8
+ 'data-name'?: string;
9
+ }): React.JSX.Element;
10
+ declare function SelectContent({ className, children, side, sideOffset, align, alignOffset, alignItemWithTrigger, container, stopMouseDownPropagation, ...props }: SelectPrimitive.Popup.Props & Pick<SelectPrimitive.Positioner.Props, 'align' | 'alignOffset' | 'side' | 'sideOffset' | 'alignItemWithTrigger'> & {
11
+ /** Portal mount node (e.g. popover body) so nested floating UI stays “inside” the parent surface. */
12
+ container?: React.ComponentProps<typeof SelectPrimitive.Portal>['container'];
13
+ /**
14
+ * When `true`, stops the native `mousedown` from bubbling beyond the popup.
15
+ * Use this when the trigger lives inside an outside-click-detecting overlay
16
+ * (e.g. ag-grid's column menu) that would otherwise close itself on
17
+ * mousedowns happening inside the portaled popup.
18
+ */
19
+ stopMouseDownPropagation?: boolean;
20
+ }): React.JSX.Element;
21
+ declare function SelectLabel({ className, ...props }: SelectPrimitive.GroupLabel.Props): React.JSX.Element;
22
+ declare function SelectItem({ className, children, ...props }: SelectPrimitive.Item.Props): React.JSX.Element;
23
+ declare function SelectSeparator({ className, ...props }: SelectPrimitive.Separator.Props): React.JSX.Element;
24
+ declare function SelectScrollUpButton({ className, ...props }: React.ComponentProps<typeof SelectPrimitive.ScrollUpArrow>): React.JSX.Element;
25
+ declare function SelectScrollDownButton({ className, ...props }: React.ComponentProps<typeof SelectPrimitive.ScrollDownArrow>): React.JSX.Element;
26
+ export { Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, };
@@ -0,0 +1,50 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.Select = void 0;
4
+ exports.SelectContent = SelectContent;
5
+ exports.SelectGroup = SelectGroup;
6
+ exports.SelectItem = SelectItem;
7
+ exports.SelectLabel = SelectLabel;
8
+ exports.SelectScrollDownButton = SelectScrollDownButton;
9
+ exports.SelectScrollUpButton = SelectScrollUpButton;
10
+ exports.SelectSeparator = SelectSeparator;
11
+ exports.SelectTrigger = SelectTrigger;
12
+ exports.SelectValue = SelectValue;
13
+ const jsx_runtime_1 = require("react/jsx-runtime");
14
+ const select_1 = require("@base-ui/react/select");
15
+ const utils_1 = require("../../lib/utils");
16
+ const lucide_react_1 = require("lucide-react");
17
+ const Select = select_1.Select.Root;
18
+ exports.Select = Select;
19
+ function SelectGroup({ className, ...props }) {
20
+ return ((0, jsx_runtime_1.jsx)(select_1.Select.Group, { "data-slot": "select-group", className: (0, utils_1.cn)('twa:scroll-my-1 twa:p-1', className), ...props }));
21
+ }
22
+ function SelectValue({ className, ...props }) {
23
+ return ((0, jsx_runtime_1.jsx)(select_1.Select.Value, { "data-slot": "select-value", className: (0, utils_1.cn)('twa:text-input-foreground twa:flex twa:flex-1 twa:text-left', className), ...props }));
24
+ }
25
+ function SelectTrigger({ className, size = 'default', children, ...props }) {
26
+ return ((0, jsx_runtime_1.jsxs)(select_1.Select.Trigger, { "data-slot": "select-trigger", "data-size": size, className: (0, utils_1.cn)('twa:flex twa:w-fit twa:items-center twa:justify-between twa:gap-1.5 twa:rounded-input twa:border twa:border-input twa:py-1.5 twa:pr-2 twa:pl-2.5 twa:text-sm twa:whitespace-nowrap twa:shadow-xs twa:transition-[color,box-shadow] twa:outline-none twa:focus-visible:border-ring twa:focus-visible:ring-3 twa:focus-visible:ring-ring/50 twa:disabled:cursor-not-allowed twa:disabled:opacity-50 twa:aria-invalid:border-destructive twa:aria-invalid:ring-3 twa:aria-invalid:ring-destructive/20 twa:data-placeholder:text-muted-foreground twa:data-[size=default]:min-h-input twa:data-[size=sm]:h-7 twa:data-[size=sm]:min-h-auto twa:*:data-[slot=select-value]:line-clamp-1 twa:*:data-[slot=select-value]:flex twa:*:data-[slot=select-value]:items-center twa:*:data-[slot=select-value]:gap-1.5 twa:bg-input-background twa:hover:bg-input-background/80 twa:dark:aria-invalid:border-destructive/50 twa:dark:aria-invalid:ring-destructive/40 twa:[&_svg]:pointer-events-none twa:[&_svg]:shrink-0 twa:[&_svg:not([class*=size-])]:size-4', className), ...props, "data-name": props['data-name'], children: [children, (0, jsx_runtime_1.jsx)(select_1.Select.Icon, { render: (0, jsx_runtime_1.jsx)(lucide_react_1.ChevronDownIcon, { className: "twa:pointer-events-none twa:size-4 twa:text-muted-foreground" }) })] }));
27
+ }
28
+ function SelectContent({ className, children, side = 'bottom', sideOffset = 4, align = 'center', alignOffset = 0, alignItemWithTrigger = true, container, stopMouseDownPropagation = false, ...props }) {
29
+ const onMouseDown = stopMouseDownPropagation
30
+ ? (e) => {
31
+ e.nativeEvent?.stopPropagation?.();
32
+ }
33
+ : undefined;
34
+ return ((0, jsx_runtime_1.jsx)(select_1.Select.Portal, { container: container, children: (0, jsx_runtime_1.jsx)(select_1.Select.Positioner, { side: side, sideOffset: sideOffset, align: align, alignOffset: alignOffset, alignItemWithTrigger: alignItemWithTrigger, className: `twa:isolate ${utils_1.POPUP_Z_INDEX}`, children: (0, jsx_runtime_1.jsxs)(select_1.Select.Popup, { "data-slot": "select-content", "data-align-trigger": alignItemWithTrigger, onMouseDown: onMouseDown, className: (0, utils_1.cn)('twa:relative twa:isolate twa:z-50 twa:max-h-(--available-height) twa:min-w-36 twa:origin-(--transform-origin) twa:overflow-x-hidden twa:overflow-y-auto twa:rounded-input twa:bg-popover twa:text-popover-foreground twa:shadow-md twa:ring-1 twa:ring-foreground/10 twa:duration-100 twa:data-[align-trigger=true]:animate-none twa:data-[side=bottom]:slide-in-from-top-2 twa:data-[side=inline-end]:slide-in-from-left-2 twa:data-[side=inline-start]:slide-in-from-right-2 twa:data-[side=left]:slide-in-from-right-2 twa:data-[side=right]:slide-in-from-left-2 twa:data-[side=top]:slide-in-from-bottom-2 twa:data-open:animate-in twa:data-open:fade-in-0 twa:data-open:zoom-in-95 twa:data-closed:animate-out twa:data-closed:fade-out-0 twa:data-closed:zoom-out-95', 'twa:w-(--anchor-width)', 'twa:max-w-[min(var(--available-width),80vw)]', className), ...props, children: [(0, jsx_runtime_1.jsx)(SelectScrollUpButton, {}), (0, jsx_runtime_1.jsx)(select_1.Select.List, { children: children }), (0, jsx_runtime_1.jsx)(SelectScrollDownButton, {})] }) }) }));
35
+ }
36
+ function SelectLabel({ className, ...props }) {
37
+ return ((0, jsx_runtime_1.jsx)(select_1.Select.GroupLabel, { "data-slot": "select-label", className: (0, utils_1.cn)('twa:px-2 twa:py-1.5 twa:text-xs twa:text-muted-foreground', className), ...props }));
38
+ }
39
+ function SelectItem({ className, children, ...props }) {
40
+ return ((0, jsx_runtime_1.jsxs)(select_1.Select.Item, { className: (0, utils_1.cn)('twa:relative twa:flex twa:w-full twa:cursor-default twa:items-center twa:gap-2 twa:rounded-input twa:py-1.5 twa:pr-8 twa:pl-2 twa:text-sm twa:outline-hidden twa:select-none twa:focus:bg-accent twa:focus:text-accent-foreground twa:not-data-[variant=destructive]:focus:**:text-accent-foreground twa:data-disabled:pointer-events-none twa:data-disabled:opacity-50 twa:[&_svg]:pointer-events-none twa:[&_svg]:shrink-0 twa:[&_svg:not([class*=size-])]:size-4 twa:*:[span]:last:flex twa:*:[span]:last:items-center twa:*:[span]:last:gap-2', className), ...props, "data-slot": "select-item", children: [(0, jsx_runtime_1.jsx)(select_1.Select.ItemText, { className: "twa:block twa:min-w-0 twa:flex-1 twa:truncate", children: children }), (0, jsx_runtime_1.jsx)(select_1.Select.ItemIndicator, { render: (0, jsx_runtime_1.jsx)("span", { className: "twa:pointer-events-none twa:absolute twa:right-2 twa:flex twa:size-4 twa:items-center twa:justify-center" }), children: (0, jsx_runtime_1.jsx)(lucide_react_1.CheckIcon, { className: "twa:pointer-events-none" }) })] }));
41
+ }
42
+ function SelectSeparator({ className, ...props }) {
43
+ return ((0, jsx_runtime_1.jsx)(select_1.Select.Separator, { "data-slot": "select-separator", className: (0, utils_1.cn)('twa:pointer-events-none twa:-mx-1 twa:my-1 twa:h-px twa:bg-border', className), ...props }));
44
+ }
45
+ function SelectScrollUpButton({ className, ...props }) {
46
+ return ((0, jsx_runtime_1.jsx)(select_1.Select.ScrollUpArrow, { "data-slot": "select-scroll-up-button", className: (0, utils_1.cn)('twa:top-0 twa:z-10 twa:flex twa:w-full twa:cursor-default twa:items-center twa:justify-center twa:bg-popover twa:py-1 twa:[&_svg:not([class*=size-])]:size-4', className), ...props, children: (0, jsx_runtime_1.jsx)(lucide_react_1.ChevronUpIcon, {}) }));
47
+ }
48
+ function SelectScrollDownButton({ className, ...props }) {
49
+ return ((0, jsx_runtime_1.jsx)(select_1.Select.ScrollDownArrow, { "data-slot": "select-scroll-down-button", className: (0, utils_1.cn)('twa:bottom-0 twa:z-10 twa:flex twa:w-full twa:cursor-default twa:items-center twa:justify-center twa:bg-popover twa:py-1 twa:[&_svg:not([class*=size-])]:size-4', className), ...props, children: (0, jsx_runtime_1.jsx)(lucide_react_1.ChevronDownIcon, {}) }));
50
+ }
@@ -0,0 +1,3 @@
1
+ import * as React from "react";
2
+ declare function Textarea({ className, ...props }: React.ComponentProps<"textarea">): React.JSX.Element;
3
+ export { Textarea };
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.Textarea = Textarea;
4
+ const jsx_runtime_1 = require("react/jsx-runtime");
5
+ const utils_1 = require("../../lib/utils");
6
+ function Textarea({ className, ...props }) {
7
+ return ((0, jsx_runtime_1.jsx)("textarea", { "data-slot": "textarea", className: (0, utils_1.cn)("twa:flex twa:field-sizing-content twa:min-h-16 twa:w-full twa:rounded-md twa:border twa:border-input twa:bg-transparent twa:px-2.5 twa:py-2 twa:text-base twa:shadow-xs twa:transition-[color,box-shadow] twa:outline-none twa:placeholder:text-muted-foreground twa:focus-visible:border-ring twa:focus-visible:ring-3 twa:focus-visible:ring-ring/50 twa:disabled:cursor-not-allowed twa:disabled:opacity-50 twa:aria-invalid:border-destructive twa:aria-invalid:ring-3 twa:aria-invalid:ring-destructive/20 twa:md:text-sm twa:dark:bg-input/30 twa:dark:aria-invalid:border-destructive/50 twa:dark:aria-invalid:ring-destructive/40", className), ...props }));
8
+ }
@@ -0,0 +1,6 @@
1
+ import { Tooltip as TooltipPrimitive } from "@base-ui/react/tooltip";
2
+ declare function TooltipProvider({ delay, ...props }: TooltipPrimitive.Provider.Props): import("react").JSX.Element;
3
+ declare function Tooltip({ ...props }: TooltipPrimitive.Root.Props): import("react").JSX.Element;
4
+ declare function TooltipTrigger({ ...props }: TooltipPrimitive.Trigger.Props): import("react").JSX.Element;
5
+ declare function TooltipContent({ className, side, sideOffset, align, alignOffset, children, ...props }: TooltipPrimitive.Popup.Props & Pick<TooltipPrimitive.Positioner.Props, "align" | "alignOffset" | "side" | "sideOffset">): import("react").JSX.Element;
6
+ export { Tooltip, TooltipTrigger, TooltipContent, TooltipProvider };
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.Tooltip = Tooltip;
4
+ exports.TooltipTrigger = TooltipTrigger;
5
+ exports.TooltipContent = TooltipContent;
6
+ exports.TooltipProvider = TooltipProvider;
7
+ const jsx_runtime_1 = require("react/jsx-runtime");
8
+ const tooltip_1 = require("@base-ui/react/tooltip");
9
+ const utils_1 = require("../../lib/utils");
10
+ function TooltipProvider({ delay = 0, ...props }) {
11
+ return ((0, jsx_runtime_1.jsx)(tooltip_1.Tooltip.Provider, { "data-slot": "tooltip-provider", delay: delay, ...props }));
12
+ }
13
+ function Tooltip({ ...props }) {
14
+ return (0, jsx_runtime_1.jsx)(tooltip_1.Tooltip.Root, { "data-slot": "tooltip", ...props });
15
+ }
16
+ function TooltipTrigger({ ...props }) {
17
+ return (0, jsx_runtime_1.jsx)(tooltip_1.Tooltip.Trigger, { "data-slot": "tooltip-trigger", ...props });
18
+ }
19
+ function TooltipContent({ className, side = "top", sideOffset = 4, align = "center", alignOffset = 0, children, ...props }) {
20
+ return ((0, jsx_runtime_1.jsx)(tooltip_1.Tooltip.Portal, { children: (0, jsx_runtime_1.jsx)(tooltip_1.Tooltip.Positioner, { align: align, alignOffset: alignOffset, side: side, sideOffset: sideOffset, className: `twa:isolate ${utils_1.POPUP_Z_INDEX}`, children: (0, jsx_runtime_1.jsxs)(tooltip_1.Tooltip.Popup, { "data-slot": "tooltip-content", className: (0, utils_1.cn)("twa:z-50 twa:inline-flex twa:w-fit twa:max-w-xs twa:origin-(--transform-origin) twa:items-center twa:gap-1.5 twa:rounded-md twa:bg-foreground twa:px-3 twa:py-1.5 twa:text-xs twa:text-background twa:has-data-[slot=kbd]:pr-1.5 twa:data-[side=bottom]:slide-in-from-top-2 twa:data-[side=inline-end]:slide-in-from-left-2 twa:data-[side=inline-start]:slide-in-from-right-2 twa:data-[side=left]:slide-in-from-right-2 twa:data-[side=right]:slide-in-from-left-2 twa:data-[side=top]:slide-in-from-bottom-2 twa:**:data-[slot=kbd]:relative twa:**:data-[slot=kbd]:isolate twa:**:data-[slot=kbd]:z-50 twa:**:data-[slot=kbd]:rounded-sm twa:data-[state=delayed-open]:animate-in twa:data-[state=delayed-open]:fade-in-0 twa:data-[state=delayed-open]:zoom-in-95 twa:data-open:animate-in twa:data-open:fade-in-0 twa:data-open:zoom-in-95 twa:data-closed:animate-out twa:data-closed:fade-out-0 twa:data-closed:zoom-out-95", className), ...props, children: [children, (0, jsx_runtime_1.jsx)(tooltip_1.Tooltip.Arrow, { className: "twa:z-50 twa:size-2.5 twa:translate-y-[calc(-50%-2px)] twa:rotate-45 twa:rounded-[2px] twa:bg-foreground twa:fill-foreground twa:data-[side=bottom]:top-1 twa:data-[side=inline-end]:top-1/2! twa:data-[side=inline-end]:-left-1 twa:data-[side=inline-end]:-translate-y-1/2 twa:data-[side=inline-start]:top-1/2! twa:data-[side=inline-start]:-right-1 twa:data-[side=inline-start]:-translate-y-1/2 twa:data-[side=left]:top-1/2! twa:data-[side=left]:-right-1 twa:data-[side=left]:-translate-y-1/2 twa:data-[side=right]:top-1/2! twa:data-[side=right]:-left-1 twa:data-[side=right]:-translate-y-1/2 twa:data-[side=top]:-bottom-2.5" })] }) }) }));
21
+ }
package/src/env.js CHANGED
@@ -2,6 +2,6 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.default = {
4
4
  NEXT_PUBLIC_INFINITE_TABLE_LICENSE_KEY: "StartDate=2021-06-29|EndDate=2030-01-01|Owner=Adaptable|Type=distribution|TS=1624971462479|C=137829811,1004007071,2756196225,1839832928,3994409405,636616862" || '',
5
- PUBLISH_TIMESTAMP: 1779175912194 || Date.now(),
6
- VERSION: "22.1.1" || '--current-version--',
5
+ PUBLISH_TIMESTAMP: 1780401819925 || Date.now(),
6
+ VERSION: "23.0.0-canary.1" || '--current-version--',
7
7
  };
@@ -1,4 +1,4 @@
1
- import { ColumnState, GridApi, GridOptions, GridState } from 'ag-grid-enterprise';
1
+ import { ColDef, ColumnState, GridApi, GridOptions, GridState } from 'ag-grid-enterprise';
2
2
  import { PivotLayoutModel, TableLayoutModel } from './LayoutManagerModel';
3
3
  import { LMEmitter } from './LMEmitter';
4
4
  import { LayoutRowSelection } from '../../AdaptableState/LayoutState';
@@ -89,7 +89,7 @@ export declare class LayoutManager<DATA_TYPE = any> extends LMEmitter {
89
89
  private computeAggregations;
90
90
  private computeRowGrouping;
91
91
  private computeColumnSorts;
92
- private getDefaultColumnWidthForCol;
92
+ getDefaultColumnWidthForCol(colId: string, colDef?: ColDef): number;
93
93
  private computeColumnSizing;
94
94
  private computeColumnOrderAndVisibility;
95
95
  autoSizeColumns(columnIds?: string[]): false | string[];