@adaptabletools/adaptable 21.2.2 → 21.2.3
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/Api/DataSetApi.d.ts +1 -1
- package/src/Redux/ActionsReducers/NoteRedux.js +1 -1
- package/src/Utilities/Constants/DocumentationLinkConstants.d.ts +2 -2
- package/src/Utilities/Constants/DocumentationLinkConstants.js +2 -2
- package/src/Utilities/Services/AnnotationsService.js +1 -1
- package/src/Utilities/Services/ModuleService.js +2 -2
- package/src/View/Components/AdaptableDateInput/index.js +1 -1
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsReminder.js +2 -2
- package/src/env.js +2 -2
- package/tsconfig.esm.tsbuildinfo +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adaptabletools/adaptable",
|
|
3
|
-
"version": "21.2.
|
|
3
|
+
"version": "21.2.3",
|
|
4
4
|
"description": "Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"web-components",
|
package/src/Api/DataSetApi.d.ts
CHANGED
|
@@ -14,7 +14,7 @@ export interface DataSetApi {
|
|
|
14
14
|
*/
|
|
15
15
|
getCurrentDataSet(): DataSet | undefined;
|
|
16
16
|
/**
|
|
17
|
-
*
|
|
17
|
+
* Retrieves Data Set from State with given name
|
|
18
18
|
* @param dataSetName name of Data Set to retrieve
|
|
19
19
|
* @returns data Set
|
|
20
20
|
*/
|
|
@@ -42,7 +42,7 @@ export const GetNoteSelector = (state, address) => {
|
|
|
42
42
|
// happy check
|
|
43
43
|
return true;
|
|
44
44
|
}
|
|
45
|
-
// Primary keys
|
|
45
|
+
// Primary keys retrieved from the grid dom are always strings, so we must also consider them strings
|
|
46
46
|
if ((typeof address.PrimaryKeyValue === 'number' && typeof note.PrimaryKeyValue === 'string') ||
|
|
47
47
|
(typeof address.PrimaryKeyValue === 'string' && typeof note.PrimaryKeyValue === 'number')) {
|
|
48
48
|
return (note.PrimaryKeyValue.toString() === address.PrimaryKeyValue.toString() &&
|
|
@@ -12,7 +12,7 @@ export declare const PredicateDocsLink = "https://www.adaptabletools.com/docs/ad
|
|
|
12
12
|
export declare const PrimaryKeyDocsLink = "https://www.adaptabletools.com/docs/getting-started-primary-key";
|
|
13
13
|
export declare const LicenseDocsLink = "https://www.adaptabletools.com/buy/buying-adaptable-licensing";
|
|
14
14
|
export declare const AdaptableOptionsDocsLink = "https://www.adaptabletools.com/docs/technical-reference-adaptable-options";
|
|
15
|
-
export declare const AgGridModulesDocsLink = "https://www.adaptabletools.com/docs/
|
|
15
|
+
export declare const AgGridModulesDocsLink = "https://www.adaptabletools.com/docs/getting-started-aggrid-modules";
|
|
16
16
|
export declare const AlertMessageDocsLink = "https://www.adaptabletools.com/docs/handbook-alerting-message";
|
|
17
17
|
export declare const FormatColumnPlaceholderDocsLink = "https://www.adaptabletools.com/docs/handbook-column-formatting-display-format-placeholder";
|
|
18
|
-
export declare const AgGridRequiredModulesDocsLink = "https://www.adaptabletools.com/docs/
|
|
18
|
+
export declare const AgGridRequiredModulesDocsLink = "https://www.adaptabletools.com/docs/getting-started-aggrid-modules#mandatory-modules";
|
|
@@ -13,7 +13,7 @@ export const PredicateDocsLink = `${HOST_URL_DOCS}/adaptable-predicate`;
|
|
|
13
13
|
export const PrimaryKeyDocsLink = `${HOST_URL_DOCS}/getting-started-primary-key`;
|
|
14
14
|
export const LicenseDocsLink = `${HOST_URL_ROOT}/buy/buying-adaptable-licensing`;
|
|
15
15
|
export const AdaptableOptionsDocsLink = `${HOST_URL_DOCS}/technical-reference-adaptable-options`;
|
|
16
|
-
export const AgGridModulesDocsLink = `${HOST_URL_DOCS}/
|
|
16
|
+
export const AgGridModulesDocsLink = `${HOST_URL_DOCS}/getting-started-aggrid-modules`;
|
|
17
17
|
export const AlertMessageDocsLink = `${HOST_URL_DOCS}/handbook-alerting-message`;
|
|
18
18
|
export const FormatColumnPlaceholderDocsLink = `${HOST_URL_DOCS}/handbook-column-formatting-display-format-placeholder`;
|
|
19
|
-
export const AgGridRequiredModulesDocsLink = `${HOST_URL_DOCS}/
|
|
19
|
+
export const AgGridRequiredModulesDocsLink = `${HOST_URL_DOCS}/getting-started-aggrid-modules#mandatory-modules`;
|
|
@@ -25,7 +25,7 @@ export class AnnotationsService {
|
|
|
25
25
|
if (a?.ColumnId === b?.ColumnId && a?.PrimaryKeyValue === b?.PrimaryKeyValue) {
|
|
26
26
|
return true;
|
|
27
27
|
}
|
|
28
|
-
// Primary keys
|
|
28
|
+
// Primary keys retrieved from the grid dom are always strings, so we must also consider them strings
|
|
29
29
|
if ((typeof a.PrimaryKeyValue === 'number' && typeof b.PrimaryKeyValue === 'string') ||
|
|
30
30
|
(typeof b.PrimaryKeyValue === 'string' && typeof a.PrimaryKeyValue === 'number')) {
|
|
31
31
|
return (a.PrimaryKeyValue.toString() === b.PrimaryKeyValue.toString() && a.ColumnId === b.ColumnId);
|
|
@@ -119,7 +119,7 @@ export class ModuleService {
|
|
|
119
119
|
case 'ColumnFilter':
|
|
120
120
|
return url + 'handbook-column-filter';
|
|
121
121
|
case 'ColumnInfo':
|
|
122
|
-
return url + 'dev-guide-
|
|
122
|
+
return url + 'dev-guide-columns-column-info';
|
|
123
123
|
case 'Comment':
|
|
124
124
|
return url + 'handbook-comments';
|
|
125
125
|
case 'CustomSort':
|
|
@@ -145,7 +145,7 @@ export class ModuleService {
|
|
|
145
145
|
case 'GridFilter':
|
|
146
146
|
return url + 'handbook-grid-filter';
|
|
147
147
|
case 'GridInfo':
|
|
148
|
-
return url + 'dev-guide-
|
|
148
|
+
return url + 'dev-guide-support-monitoring';
|
|
149
149
|
case 'Layout':
|
|
150
150
|
return url + 'handbook-layouts';
|
|
151
151
|
case 'NamedQuery':
|
|
@@ -8,7 +8,7 @@ const AdaptableDateInput = React.forwardRef((props, ref) => {
|
|
|
8
8
|
const { value: _, defaultValue: __, onChange, required, disabled, showClearButton, ...inputProps } = props;
|
|
9
9
|
const [value, setValue] = useProperty(props, 'value', undefined, {
|
|
10
10
|
onChange: (dateString) =>
|
|
11
|
-
// wrap date value in
|
|
11
|
+
// wrap date value in ChangeEvent in order to keep the external API unchanged
|
|
12
12
|
props.onChange?.({
|
|
13
13
|
target: {
|
|
14
14
|
// ALWAYS trigger onChange with the ISO format
|
|
@@ -20,13 +20,13 @@ export const ScheduleSettingsReminder = (props) => {
|
|
|
20
20
|
const handleHeaderChange = (event) => {
|
|
21
21
|
props.onChange({
|
|
22
22
|
...props.reminderSchedule,
|
|
23
|
-
Header: event.target
|
|
23
|
+
Header: event.target.value,
|
|
24
24
|
});
|
|
25
25
|
};
|
|
26
26
|
const handleMessageChange = (event) => {
|
|
27
27
|
props.onChange({
|
|
28
28
|
...props.reminderSchedule,
|
|
29
|
-
Message: event.target
|
|
29
|
+
Message: event.target.value,
|
|
30
30
|
});
|
|
31
31
|
};
|
|
32
32
|
const handleDisplayNotificationChange = (checked) => {
|
package/src/env.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
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" || '',
|
|
3
|
-
PUBLISH_TIMESTAMP:
|
|
4
|
-
VERSION: "21.2.
|
|
3
|
+
PUBLISH_TIMESTAMP: 1769701107222 || Date.now(),
|
|
4
|
+
VERSION: "21.2.3" || '--current-version--',
|
|
5
5
|
};
|