@adaptabletools/adaptable 15.3.3-canary.0 → 15.3.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/base.css +1 -1
- package/base.css.map +1 -1
- package/bundle.cjs.js +123 -123
- package/index.css +1 -1
- package/index.css.map +1 -1
- package/package.json +1 -1
- package/publishTimestamp.d.ts +1 -1
- package/publishTimestamp.js +1 -1
- package/src/AdaptableOptions/ActionOptions.d.ts +1 -1
- package/src/AdaptableOptions/EditOptions.d.ts +2 -2
- package/src/PredefinedConfig/Common/AdaptableIcon.d.ts +1 -1
- package/src/PredefinedConfig/Common/AdaptableStyle.d.ts +1 -1
- package/src/PredefinedConfig/StyledColumnState.d.ts +27 -3
- package/src/Utilities/Services/ModuleService.js +1 -1
- package/src/View/Alert/Wizard/AlertButtonsEditor.js +26 -24
- package/src/View/Components/Buttons/ButtonInvalid.js +1 -1
- package/src/View/Components/Buttons/ButtonShare.js +1 -1
- package/src/View/Components/NewScopeComponent.js +2 -2
- package/src/View/FormatColumn/Wizard/FormatColumnStyleWizardSection.js +4 -3
- package/src/View/Shortcut/Wizard/ShortcutScopeWizardSection.js +2 -2
- package/src/View/Shortcut/Wizard/ShortcutSettingsWizard.js +14 -12
- package/src/View/TeamSharing/TeamSharingApplyButton.js +1 -1
- package/src/components/icons/index.js +0 -2
- package/src/metamodel/adaptable.metamodel.d.ts +39 -0
- package/src/metamodel/adaptable.metamodel.js +1 -1
- package/src/types.d.ts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -10,6 +10,6 @@ const TeamSharingApplyButton = (props) => {
|
|
|
10
10
|
const handleImport = React.useCallback(() => {
|
|
11
11
|
adaptable.api.teamSharingApi.importSharedEntry(props.data);
|
|
12
12
|
}, []);
|
|
13
|
-
return (React.createElement(SimpleButton_1.default, { "data-name": "shared-entity-apply-button", onClick: handleImport, variant: "text", tooltip: "
|
|
13
|
+
return (React.createElement(SimpleButton_1.default, { "data-name": "shared-entity-apply-button", onClick: handleImport, variant: "text", tooltip: "Import", icon: "import-export" }));
|
|
14
14
|
};
|
|
15
15
|
exports.TeamSharingApplyButton = TeamSharingApplyButton;
|
|
@@ -98,7 +98,6 @@ const dock_1 = tslib_1.__importDefault(require("./dock"));
|
|
|
98
98
|
const collapse_1 = tslib_1.__importDefault(require("./collapse"));
|
|
99
99
|
const expand_1 = tslib_1.__importDefault(require("./expand"));
|
|
100
100
|
const arrow_expand_1 = tslib_1.__importDefault(require("./arrow-expand"));
|
|
101
|
-
const invalid_1 = tslib_1.__importDefault(require("./invalid"));
|
|
102
101
|
const history_1 = tslib_1.__importDefault(require("./history"));
|
|
103
102
|
const filter_1 = tslib_1.__importDefault(require("./filter"));
|
|
104
103
|
const close_1 = tslib_1.__importDefault(require("./close"));
|
|
@@ -243,7 +242,6 @@ const allIcons = {
|
|
|
243
242
|
collapse: collapse_1.default,
|
|
244
243
|
expand: expand_1.default,
|
|
245
244
|
'arrow-expand': arrow_expand_1.default,
|
|
246
|
-
invalid: invalid_1.default,
|
|
247
245
|
history: history_1.default,
|
|
248
246
|
close: close_1.default,
|
|
249
247
|
function: function_1.default,
|
|
@@ -1156,6 +1156,35 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1156
1156
|
desc: string;
|
|
1157
1157
|
}[];
|
|
1158
1158
|
};
|
|
1159
|
+
BadgeStyle: {
|
|
1160
|
+
name: string;
|
|
1161
|
+
kind: string;
|
|
1162
|
+
desc: string;
|
|
1163
|
+
};
|
|
1164
|
+
BadgeStyleDefinition: {
|
|
1165
|
+
name: string;
|
|
1166
|
+
kind: string;
|
|
1167
|
+
desc: string;
|
|
1168
|
+
props: ({
|
|
1169
|
+
name: string;
|
|
1170
|
+
kind: string;
|
|
1171
|
+
desc: string;
|
|
1172
|
+
isOpt: boolean;
|
|
1173
|
+
ref?: undefined;
|
|
1174
|
+
} | {
|
|
1175
|
+
name: string;
|
|
1176
|
+
kind: string;
|
|
1177
|
+
desc: string;
|
|
1178
|
+
isOpt: boolean;
|
|
1179
|
+
ref: string;
|
|
1180
|
+
} | {
|
|
1181
|
+
name: string;
|
|
1182
|
+
kind: string;
|
|
1183
|
+
desc: string;
|
|
1184
|
+
ref: string;
|
|
1185
|
+
isOpt?: undefined;
|
|
1186
|
+
})[];
|
|
1187
|
+
};
|
|
1159
1188
|
BadgeStylePredicate: {
|
|
1160
1189
|
name: string;
|
|
1161
1190
|
kind: string;
|
|
@@ -4287,6 +4316,16 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4287
4316
|
kind: string;
|
|
4288
4317
|
desc: string;
|
|
4289
4318
|
};
|
|
4319
|
+
SystemBadgeStylePredicateId: {
|
|
4320
|
+
name: string;
|
|
4321
|
+
kind: string;
|
|
4322
|
+
desc: string;
|
|
4323
|
+
};
|
|
4324
|
+
SystemBadgeStylePredicateIds: {
|
|
4325
|
+
name: string;
|
|
4326
|
+
kind: string;
|
|
4327
|
+
desc: string;
|
|
4328
|
+
};
|
|
4290
4329
|
SystemExportDestination: {
|
|
4291
4330
|
name: string;
|
|
4292
4331
|
kind: string;
|