@adaptabletools/adaptable 18.0.0-canary.32 → 18.0.0-canary.33
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/AdaptableOptions/QuickSearchOptions.d.ts +1 -1
- package/src/Api/GridApi.d.ts +1 -1
- package/src/Api/Implementation/NoteApiImpl.d.ts +1 -1
- package/src/Api/Implementation/NoteApiImpl.js +2 -2
- package/src/Api/Internal/FormatColumnInternalApi.js +1 -1
- package/src/Api/NoteApi.d.ts +1 -1
- package/src/PredefinedConfig/Common/AdaptableIcon.d.ts +1 -1
- package/src/PredefinedConfig/Common/RowScope.d.ts +2 -2
- package/src/PredefinedConfig/FormatColumnState.d.ts +1 -1
- package/src/PredefinedConfig/LayoutState.d.ts +1 -1
- package/src/Redux/ActionsReducers/NoteRedux.d.ts +1 -1
- package/src/Redux/ActionsReducers/NoteRedux.js +3 -3
- package/src/Strategy/ExportModule.js +19 -2
- package/src/Strategy/NoteModule.js +3 -3
- package/src/Strategy/StyledColumnModule.js +1 -1
- package/src/Strategy/Utilities/FormatColumn/getFormatColumnSettingsViewItems.js +1 -1
- package/src/Utilities/Services/CellPopupService.js +4 -4
- package/src/View/Components/Popups/GridCellPopup/GridCellPopup.js +3 -6
- package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +1 -1
- package/src/View/FormatColumn/Wizard/FormatColumnSettingsWizardSection.js +5 -5
- package/src/View/Layout/Wizard/sections/RowGroupingSection.js +1 -1
- package/src/View/StyledColumn/Wizard/StyledColumnBadgeSection.js +5 -7
- package/src/View/StyledColumn/Wizard/StyledColumnWizardSettingsSection.js +5 -5
- package/src/agGrid/ActionColumnRenderer.js +2 -2
- package/src/agGrid/AgGridColumnAdapter.js +2 -2
- package/src/agGrid/AgGridMenuAdapter.js +5 -5
- package/src/agGrid/BadgeRenderer.js +1 -1
- package/src/agGrid/PercentBarRenderer.js +1 -1
- package/src/components/Accordion.d.ts +7 -0
- package/src/components/Accordion.js +36 -0
- package/src/components/icons/collapse-all.d.ts +3 -0
- package/src/components/icons/collapse-all.js +4 -0
- package/src/components/icons/csv.d.ts +3 -0
- package/src/components/icons/csv.js +4 -0
- package/src/components/icons/data-object.d.ts +3 -0
- package/src/components/icons/data-object.js +4 -0
- package/src/components/icons/excel.d.ts +3 -0
- package/src/components/icons/excel.js +5 -0
- package/src/components/icons/expand-all.d.ts +3 -0
- package/src/components/icons/expand-all.js +4 -0
- package/src/components/icons/index.js +10 -0
- package/src/env.js +2 -2
- package/src/metamodel/adaptable.metamodel.js +1 -1
- package/tsconfig.esm.tsbuildinfo +1 -1
|
@@ -36,6 +36,8 @@ import SortAsc from './sort-asc';
|
|
|
36
36
|
import SortDesc from './sort-desc';
|
|
37
37
|
import Calendar from './calendar';
|
|
38
38
|
import Delete from './delete';
|
|
39
|
+
import CSV from './csv';
|
|
40
|
+
import Excel from './excel';
|
|
39
41
|
import CheckCircle from './check-circle';
|
|
40
42
|
import Refresh from './refresh';
|
|
41
43
|
import Save from './save';
|
|
@@ -52,6 +54,7 @@ import CellValidation from './cell-validation';
|
|
|
52
54
|
import ColumnFilter from './column-filter';
|
|
53
55
|
import SystemStatus from './system-status';
|
|
54
56
|
import DataSet from './data-set';
|
|
57
|
+
import DataObject from './data-object';
|
|
55
58
|
import FlashingCell from './flashing-cell';
|
|
56
59
|
import edit from './edit';
|
|
57
60
|
import Equation from './equation';
|
|
@@ -162,6 +165,8 @@ import SelectAll from './select-all';
|
|
|
162
165
|
import SelectOff from './select-off';
|
|
163
166
|
import SelectFwd from './select-fwd';
|
|
164
167
|
import Copy from './copy';
|
|
168
|
+
import ExpandAll from './expand-all';
|
|
169
|
+
import CollapseAll from './collapse-all';
|
|
165
170
|
import { IconComponent } from '../Icon';
|
|
166
171
|
import { AdaptableLogger } from '../../agGrid/AdaptableLogger';
|
|
167
172
|
export const allIcons = {
|
|
@@ -183,6 +188,8 @@ export const allIcons = {
|
|
|
183
188
|
news: News,
|
|
184
189
|
brush: Brush,
|
|
185
190
|
'data-set': DataSet,
|
|
191
|
+
'excel': Excel,
|
|
192
|
+
json: DataObject,
|
|
186
193
|
export: Export,
|
|
187
194
|
broadcast: Campaign,
|
|
188
195
|
theme: Theme,
|
|
@@ -202,6 +209,7 @@ export const allIcons = {
|
|
|
202
209
|
'percent-tag': PercentBar,
|
|
203
210
|
'spark-line': Sparkline,
|
|
204
211
|
resume: Resume,
|
|
212
|
+
csv: CSV,
|
|
205
213
|
'pie-chart': PieChart,
|
|
206
214
|
'add-circle': PlusMinus,
|
|
207
215
|
reminder: Reminder,
|
|
@@ -327,6 +335,8 @@ export const allIcons = {
|
|
|
327
335
|
note: Note,
|
|
328
336
|
comments: Comments,
|
|
329
337
|
rows: Rows,
|
|
338
|
+
'expand-all': ExpandAll,
|
|
339
|
+
'collapse-all': CollapseAll,
|
|
330
340
|
};
|
|
331
341
|
Object.keys(allIcons).forEach((name) => {
|
|
332
342
|
const ReactCmp = allIcons[name];
|
package/src/env.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
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" || '',
|
|
3
|
-
PUBLISH_TIMESTAMP:
|
|
4
|
-
VERSION: "18.0.0-canary.
|
|
3
|
+
PUBLISH_TIMESTAMP: 1712842406643 || Date.now(),
|
|
4
|
+
VERSION: "18.0.0-canary.33" || '--current-version--',
|
|
5
5
|
};
|