@adaptabletools/adaptable 23.0.0-canary.7 → 23.0.0-canary.8
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/index.css +75 -9
- package/package.json +1 -1
- package/src/AdaptableState/StyledColumnState.d.ts +8 -850
- package/src/AdaptableState/StyledColumnState.js +1 -9
- package/src/AdaptableState/StyledColumns/BadgeStyle.d.ts +143 -0
- package/src/AdaptableState/StyledColumns/BadgeStyle.js +9 -0
- package/src/AdaptableState/StyledColumns/BulletChartStyle.d.ts +147 -0
- package/src/AdaptableState/StyledColumns/BulletChartStyle.js +1 -0
- package/src/AdaptableState/StyledColumns/Common/BarChartCellText.d.ts +60 -0
- package/src/AdaptableState/StyledColumns/Common/BarChartCellText.js +6 -0
- package/src/AdaptableState/StyledColumns/Common/BarChartMarker.d.ts +24 -0
- package/src/AdaptableState/StyledColumns/Common/BarChartMarker.js +5 -0
- package/src/AdaptableState/StyledColumns/Common/CellTextOptions.d.ts +13 -0
- package/src/AdaptableState/StyledColumns/Common/CellTextOptions.js +6 -0
- package/src/AdaptableState/StyledColumns/Common/NumericStyledColumn.d.ts +79 -0
- package/src/AdaptableState/StyledColumns/Common/NumericStyledColumn.js +9 -0
- package/src/AdaptableState/StyledColumns/GradientStyle.d.ts +48 -0
- package/src/AdaptableState/StyledColumns/GradientStyle.js +1 -0
- package/src/AdaptableState/StyledColumns/IconStyle.d.ts +158 -0
- package/src/AdaptableState/StyledColumns/IconStyle.js +1 -0
- package/src/AdaptableState/StyledColumns/PercentBarStyle.d.ts +32 -0
- package/src/AdaptableState/StyledColumns/PercentBarStyle.js +1 -0
- package/src/AdaptableState/StyledColumns/RangeBarStyle.d.ts +155 -0
- package/src/AdaptableState/StyledColumns/RangeBarStyle.js +1 -0
- package/src/AdaptableState/StyledColumns/RatingStyle.d.ts +111 -0
- package/src/AdaptableState/StyledColumns/RatingStyle.js +1 -0
- package/src/AdaptableState/StyledColumns/SparklineStyle.d.ts +21 -0
- package/src/AdaptableState/StyledColumns/SparklineStyle.js +1 -0
- package/src/Api/ColumnScopeApi.d.ts +1 -1
- package/src/Api/Implementation/ColumnScopeApiImpl.d.ts +1 -1
- package/src/Api/Internal/StyledColumnInternalApi.d.ts +3 -1
- package/src/Utilities/Helpers/IconStylePresets.d.ts +1 -1
- package/src/Utilities/Helpers/StyledColumnGradientHelper.d.ts +3 -1
- package/src/Utilities/Helpers/barChartCellText.d.ts +63 -0
- package/src/Utilities/Helpers/barChartCellText.js +316 -0
- package/src/Utilities/Helpers/percentBarPreviewHelper.d.ts +2 -1
- package/src/Utilities/Helpers/percentBarPreviewHelper.js +3 -8
- package/src/View/Alert/Wizard/AlertButtonsEditor.js +159 -126
- package/src/View/Alert/Wizard/AlertNotificationWizardSection.js +1 -1
- package/src/View/Alert/Wizard/AlertWizard.js +9 -1
- package/src/View/Components/AdaptableObjectList/AdaptableObjectCompactList.js +3 -2
- package/src/View/Components/AdaptableObjectList/AdaptableObjectList.js +3 -2
- package/src/View/Components/AdaptableObjectList/objectListActionButtonStyles.d.ts +2 -0
- package/src/View/Components/AdaptableObjectList/objectListActionButtonStyles.js +2 -0
- package/src/View/Components/Buttons/EntityListActionButtons.js +1 -1
- package/src/View/Components/Buttons/SuspendToggleButton/SuspendToggleButton.d.ts +1 -0
- package/src/View/Components/Buttons/SuspendToggleButton/SuspendToggleButton.js +8 -8
- package/src/View/Components/ColumnFilter/ColumnFilter.js +14 -1
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupModuleView.js +1 -1
- package/src/View/Components/RangesComponent.d.ts +2 -1
- package/src/View/Export/ExportSchedulesTab.js +3 -4
- package/src/View/Filter/FilterViewPanel.js +1 -1
- package/src/View/Layout/Wizard/sections/RowSummarySection.js +129 -103
- package/src/View/StyledColumn/Wizard/BadgePillStyleEditor.d.ts +1 -1
- package/src/View/StyledColumn/Wizard/StyledColumnBadgeSection.js +36 -30
- package/src/View/StyledColumn/Wizard/StyledColumnSliceStyleEditors.d.ts +1 -3
- package/src/View/StyledColumn/Wizard/StyledColumnWizardBulletSection.js +73 -58
- package/src/View/StyledColumn/Wizard/StyledColumnWizardIconSection.js +38 -11
- package/src/View/StyledColumn/Wizard/StyledColumnWizardRangeBarSection.js +86 -44
- package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/BarChartCellTextLayoutEditor.d.ts +9 -0
- package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/BarChartCellTextLayoutEditor.js +35 -0
- package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/BarChartCellTextPreview.d.ts +23 -0
- package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/BarChartCellTextPreview.js +57 -0
- package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/BulletRangesSummaryPreview.d.ts +1 -1
- package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/GradientSummaryPreview.d.ts +2 -1
- package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/RangeBarRangesSummaryPreview.d.ts +1 -1
- package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/StyledColumnBadgePreview.js +3 -2
- package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/StyledColumnBulletPreview.d.ts +2 -1
- package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/StyledColumnBulletPreview.js +13 -17
- package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/StyledColumnChartListPreviews.d.ts +2 -1
- package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/StyledColumnChartListPreviews.js +5 -5
- package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/StyledColumnIconPreview.js +2 -2
- package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/StyledColumnPercentBarPreview.js +14 -7
- package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/StyledColumnRangeBarPreview.js +11 -17
- package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/StyledColumnRatingPreview.d.ts +2 -1
- package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/StyledColumnWizardStyleSection.js +18 -54
- package/src/agGrid/AgGridColumnAdapter.js +2 -1
- package/src/agGrid/cellRenderers/BadgeRenderer.js +7 -5
- package/src/agGrid/cellRenderers/BulletChartRenderer.js +43 -42
- package/src/agGrid/cellRenderers/IconRenderer.d.ts +2 -1
- package/src/agGrid/cellRenderers/IconRenderer.js +13 -11
- package/src/agGrid/cellRenderers/PercentBarRenderer.js +24 -96
- package/src/agGrid/cellRenderers/RangeBarRenderer.js +49 -46
- package/src/env.js +2 -2
- package/src/metamodel/adaptable.metamodel.d.ts +80 -14
- package/src/metamodel/adaptable.metamodel.js +1 -1
- package/src/migration/VersionUpgrade23.d.ts +27 -31
- package/src/migration/VersionUpgrade23.js +110 -29
- package/src/types.d.ts +12 -1
- package/tsconfig.esm.tsbuildinfo +1 -1
|
@@ -1121,6 +1121,20 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1121
1121
|
BadgeDensity: {
|
|
1122
1122
|
k: string;
|
|
1123
1123
|
};
|
|
1124
|
+
BadgeIconProperties: {
|
|
1125
|
+
k: string;
|
|
1126
|
+
p: ({
|
|
1127
|
+
n: string;
|
|
1128
|
+
k: string;
|
|
1129
|
+
o: boolean;
|
|
1130
|
+
r?: undefined;
|
|
1131
|
+
} | {
|
|
1132
|
+
n: string;
|
|
1133
|
+
k: string;
|
|
1134
|
+
r: string;
|
|
1135
|
+
o?: undefined;
|
|
1136
|
+
})[];
|
|
1137
|
+
};
|
|
1124
1138
|
BadgeOverflowMode: {
|
|
1125
1139
|
k: string;
|
|
1126
1140
|
};
|
|
@@ -1146,21 +1160,24 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1146
1160
|
};
|
|
1147
1161
|
BadgeStyleDefinition: {
|
|
1148
1162
|
k: string;
|
|
1149
|
-
p:
|
|
1163
|
+
p: {
|
|
1150
1164
|
n: string;
|
|
1151
1165
|
k: string;
|
|
1152
1166
|
o: boolean;
|
|
1153
1167
|
r: string;
|
|
1154
|
-
}
|
|
1155
|
-
n: string;
|
|
1156
|
-
k: string;
|
|
1157
|
-
o: boolean;
|
|
1158
|
-
r?: undefined;
|
|
1159
|
-
})[];
|
|
1168
|
+
}[];
|
|
1160
1169
|
};
|
|
1161
1170
|
BadgeStylePredicate: {
|
|
1162
1171
|
k: string;
|
|
1163
1172
|
};
|
|
1173
|
+
BarChartMarker: {
|
|
1174
|
+
k: string;
|
|
1175
|
+
p: {
|
|
1176
|
+
n: string;
|
|
1177
|
+
k: string;
|
|
1178
|
+
o: boolean;
|
|
1179
|
+
}[];
|
|
1180
|
+
};
|
|
1164
1181
|
BaseColumnHeaderContext: {
|
|
1165
1182
|
k: string;
|
|
1166
1183
|
p: ({
|
|
@@ -1246,6 +1263,14 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1246
1263
|
k: string;
|
|
1247
1264
|
}[];
|
|
1248
1265
|
};
|
|
1266
|
+
BulletChartBarProperties: {
|
|
1267
|
+
k: string;
|
|
1268
|
+
p: {
|
|
1269
|
+
n: string;
|
|
1270
|
+
k: string;
|
|
1271
|
+
o: boolean;
|
|
1272
|
+
}[];
|
|
1273
|
+
};
|
|
1249
1274
|
BulletChartStyle: {
|
|
1250
1275
|
k: string;
|
|
1251
1276
|
p: ({
|
|
@@ -1282,13 +1307,19 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1282
1307
|
r?: undefined;
|
|
1283
1308
|
})[];
|
|
1284
1309
|
};
|
|
1285
|
-
|
|
1310
|
+
BulletChartTargetProperties: {
|
|
1286
1311
|
k: string;
|
|
1287
|
-
p: {
|
|
1312
|
+
p: ({
|
|
1288
1313
|
n: string;
|
|
1289
1314
|
k: string;
|
|
1290
1315
|
o: boolean;
|
|
1291
|
-
|
|
1316
|
+
r: string;
|
|
1317
|
+
} | {
|
|
1318
|
+
n: string;
|
|
1319
|
+
k: string;
|
|
1320
|
+
o: boolean;
|
|
1321
|
+
r?: undefined;
|
|
1322
|
+
})[];
|
|
1292
1323
|
};
|
|
1293
1324
|
ButtonStyle: {
|
|
1294
1325
|
k: string;
|
|
@@ -3370,9 +3401,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3370
3401
|
IconStyleBuiltInPreset: {
|
|
3371
3402
|
k: string;
|
|
3372
3403
|
};
|
|
3373
|
-
IconStyleFallback: {
|
|
3374
|
-
k: string;
|
|
3375
|
-
};
|
|
3376
3404
|
IconStyleMapping: {
|
|
3377
3405
|
k: string;
|
|
3378
3406
|
p: ({
|
|
@@ -4153,7 +4181,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4153
4181
|
RangeBarBound: {
|
|
4154
4182
|
k: string;
|
|
4155
4183
|
};
|
|
4156
|
-
|
|
4184
|
+
RangeBarOutOfRangeProperties: {
|
|
4157
4185
|
k: string;
|
|
4158
4186
|
p: {
|
|
4159
4187
|
n: string;
|
|
@@ -4161,6 +4189,20 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4161
4189
|
o: boolean;
|
|
4162
4190
|
}[];
|
|
4163
4191
|
};
|
|
4192
|
+
RangeBarReferenceProperties: {
|
|
4193
|
+
k: string;
|
|
4194
|
+
p: ({
|
|
4195
|
+
n: string;
|
|
4196
|
+
k: string;
|
|
4197
|
+
o: boolean;
|
|
4198
|
+
r: string;
|
|
4199
|
+
} | {
|
|
4200
|
+
n: string;
|
|
4201
|
+
k: string;
|
|
4202
|
+
r: string;
|
|
4203
|
+
o?: undefined;
|
|
4204
|
+
})[];
|
|
4205
|
+
};
|
|
4164
4206
|
RangeBarStyle: {
|
|
4165
4207
|
k: string;
|
|
4166
4208
|
p: ({
|
|
@@ -4180,6 +4222,14 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4180
4222
|
o?: undefined;
|
|
4181
4223
|
})[];
|
|
4182
4224
|
};
|
|
4225
|
+
RangeBarTrackProperties: {
|
|
4226
|
+
k: string;
|
|
4227
|
+
p: {
|
|
4228
|
+
n: string;
|
|
4229
|
+
k: string;
|
|
4230
|
+
o: boolean;
|
|
4231
|
+
}[];
|
|
4232
|
+
};
|
|
4183
4233
|
RangeValueType: {
|
|
4184
4234
|
k: string;
|
|
4185
4235
|
};
|
|
@@ -4593,6 +4643,22 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4593
4643
|
k: string;
|
|
4594
4644
|
}[];
|
|
4595
4645
|
};
|
|
4646
|
+
SettingsPanelNavigation: {
|
|
4647
|
+
k: string;
|
|
4648
|
+
};
|
|
4649
|
+
SettingsPanelNavigationConfigurer: {
|
|
4650
|
+
k: string;
|
|
4651
|
+
};
|
|
4652
|
+
SettingsPanelNavigationContext: {
|
|
4653
|
+
k: string;
|
|
4654
|
+
};
|
|
4655
|
+
SettingsPanelNavigationGroup: {
|
|
4656
|
+
k: string;
|
|
4657
|
+
p: {
|
|
4658
|
+
n: string;
|
|
4659
|
+
k: string;
|
|
4660
|
+
}[];
|
|
4661
|
+
};
|
|
4596
4662
|
SettingsPanelOptions: {
|
|
4597
4663
|
k: string;
|
|
4598
4664
|
p: ({
|