@adaptabletools/adaptable 12.1.0-canary.1 → 12.1.1-canary.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundle.cjs.js +107 -107
- package/package.json +1 -1
- package/publishTimestamp.d.ts +1 -1
- package/publishTimestamp.js +1 -1
- package/src/AdaptableOptions/SearchOptions.d.ts +1 -1
- package/src/Api/ConfigApi.d.ts +1 -2
- package/src/Api/EventApi.d.ts +45 -8
- package/src/Api/Events/AdaptableSearchState.d.ts +22 -0
- package/src/Api/Events/AdaptableSearchState.js +2 -0
- package/src/Api/Events/FilterApplied.d.ts +11 -0
- package/src/Api/Events/FilterApplied.js +2 -0
- package/src/Api/Events/GridSorted.d.ts +25 -0
- package/src/Api/Events/GridSorted.js +2 -0
- package/src/Api/Events/QueryRun.d.ts +14 -0
- package/src/Api/Events/QueryRun.js +2 -0
- package/src/Api/Events/SearchChanged.d.ts +3 -47
- package/src/Api/FilterApi.d.ts +4 -0
- package/src/Api/GridApi.d.ts +5 -0
- package/src/Api/Implementation/ConfigApiImpl.d.ts +1 -2
- package/src/Api/Implementation/FilterApiImpl.d.ts +1 -0
- package/src/Api/Implementation/FilterApiImpl.js +9 -0
- package/src/Api/Implementation/GridApiImpl.d.ts +1 -0
- package/src/Api/Implementation/GridApiImpl.js +11 -0
- package/src/Api/Implementation/QueryApiImpl.d.ts +1 -0
- package/src/Api/Implementation/QueryApiImpl.js +14 -0
- package/src/Api/QueryApi.d.ts +4 -0
- package/src/Redux/Store/AdaptableStore.js +7 -2
- package/src/Utilities/ObjectFactory.d.ts +1 -1
- package/src/Utilities/ObjectFactory.js +11 -11
- package/src/View/AdaptableView.js +2 -2
- package/src/View/Components/Popups/AdaptableToaster.js +7 -7
- package/src/View/Query/QueryViewPanel.d.ts +1 -1
- package/src/View/Query/QueryViewPanel.js +2 -2
- package/src/View/QuickSearch/QuickSearchPopup.js +1 -1
- package/src/bundle-dependencies/bundles/react-toastify/components/CloseButton.d.ts +9 -0
- package/src/bundle-dependencies/bundles/react-toastify/components/Icons.d.ts +24 -0
- package/src/bundle-dependencies/bundles/react-toastify/components/ProgressBar.d.ts +59 -0
- package/src/bundle-dependencies/bundles/react-toastify/components/Toast.d.ts +3 -0
- package/src/bundle-dependencies/bundles/react-toastify/components/ToastContainer.d.ts +3 -0
- package/src/bundle-dependencies/bundles/react-toastify/components/Transitions.d.ts +6 -0
- package/src/bundle-dependencies/bundles/react-toastify/components/index.d.ts +6 -0
- package/src/bundle-dependencies/bundles/react-toastify/core/eventManager.d.ts +39 -0
- package/src/bundle-dependencies/bundles/react-toastify/core/index.d.ts +2 -0
- package/src/bundle-dependencies/bundles/react-toastify/core/toast.d.ts +41 -0
- package/src/bundle-dependencies/bundles/react-toastify/hooks/index.d.ts +2 -0
- package/src/bundle-dependencies/bundles/react-toastify/hooks/useToast.d.ts +10 -0
- package/src/bundle-dependencies/bundles/react-toastify/hooks/useToastContainer.d.ts +23 -0
- package/src/bundle-dependencies/bundles/react-toastify/index.d.ts +5 -0
- package/src/bundle-dependencies/bundles/react-toastify/index.js +1 -0
- package/src/bundle-dependencies/bundles/react-toastify/inject-style.d.ts +8 -0
- package/src/bundle-dependencies/bundles/react-toastify/types/index.d.ts +269 -0
- package/src/bundle-dependencies/bundles/react-toastify/utils/collapseToast.d.ts +5 -0
- package/src/bundle-dependencies/bundles/react-toastify/utils/constant.d.ts +23 -0
- package/src/bundle-dependencies/bundles/react-toastify/utils/cssTransition.d.ts +43 -0
- package/src/bundle-dependencies/bundles/react-toastify/utils/index.d.ts +5 -0
- package/src/bundle-dependencies/bundles/react-toastify/utils/mapper.d.ts +2 -0
- package/src/bundle-dependencies/bundles/react-toastify/utils/propValidator.d.ts +9 -0
- package/src/components/Toastify/index.d.ts +3 -0
- package/src/components/Toastify/index.js +10 -0
- package/src/metamodel/adaptable.metamodel.d.ts +34 -13
- package/src/metamodel/adaptable.metamodel.js +1 -1
- package/src/types.d.ts +5 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -2700,6 +2700,17 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2700
2700
|
uiLabel: string;
|
|
2701
2701
|
}[];
|
|
2702
2702
|
};
|
|
2703
|
+
FilterAppliedInfo: {
|
|
2704
|
+
name: string;
|
|
2705
|
+
kind: string;
|
|
2706
|
+
description: string;
|
|
2707
|
+
properties: {
|
|
2708
|
+
name: string;
|
|
2709
|
+
kind: string;
|
|
2710
|
+
description: string;
|
|
2711
|
+
uiLabel: string;
|
|
2712
|
+
}[];
|
|
2713
|
+
};
|
|
2703
2714
|
FilterOptions: {
|
|
2704
2715
|
name: string;
|
|
2705
2716
|
kind: string;
|
|
@@ -3239,6 +3250,18 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3239
3250
|
reference: string;
|
|
3240
3251
|
})[];
|
|
3241
3252
|
};
|
|
3253
|
+
GridSortedInfo: {
|
|
3254
|
+
name: string;
|
|
3255
|
+
kind: string;
|
|
3256
|
+
description: string;
|
|
3257
|
+
properties: {
|
|
3258
|
+
name: string;
|
|
3259
|
+
kind: string;
|
|
3260
|
+
description: string;
|
|
3261
|
+
uiLabel: string;
|
|
3262
|
+
reference: string;
|
|
3263
|
+
}[];
|
|
3264
|
+
};
|
|
3242
3265
|
IAdaptableNoCodeWizard: {
|
|
3243
3266
|
name: string;
|
|
3244
3267
|
kind: string;
|
|
@@ -3998,6 +4021,17 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3998
4021
|
uiLabel: string;
|
|
3999
4022
|
}[];
|
|
4000
4023
|
};
|
|
4024
|
+
QueryRunInfo: {
|
|
4025
|
+
name: string;
|
|
4026
|
+
kind: string;
|
|
4027
|
+
description: string;
|
|
4028
|
+
properties: {
|
|
4029
|
+
name: string;
|
|
4030
|
+
kind: string;
|
|
4031
|
+
description: string;
|
|
4032
|
+
uiLabel: string;
|
|
4033
|
+
}[];
|
|
4034
|
+
};
|
|
4001
4035
|
QueryState: {
|
|
4002
4036
|
name: string;
|
|
4003
4037
|
kind: string;
|
|
@@ -4209,19 +4243,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4209
4243
|
name: string;
|
|
4210
4244
|
kind: string;
|
|
4211
4245
|
description: string;
|
|
4212
|
-
properties: ({
|
|
4213
|
-
name: string;
|
|
4214
|
-
kind: string;
|
|
4215
|
-
description: string;
|
|
4216
|
-
uiLabel: string;
|
|
4217
|
-
reference: string;
|
|
4218
|
-
} | {
|
|
4219
|
-
name: string;
|
|
4220
|
-
kind: string;
|
|
4221
|
-
description: string;
|
|
4222
|
-
uiLabel: string;
|
|
4223
|
-
reference?: undefined;
|
|
4224
|
-
})[];
|
|
4225
4246
|
};
|
|
4226
4247
|
SearchOptions: {
|
|
4227
4248
|
name: string;
|