@atlaskit/editor-common 76.27.4 → 76.27.5
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/CHANGELOG.md +7 -0
- package/dist/cjs/analytics/types/enums.js +3 -0
- package/dist/cjs/i18n/es.js +2 -0
- package/dist/cjs/i18n/ja.js +1 -0
- package/dist/cjs/i18n/tr.js +2 -0
- package/dist/cjs/monitoring/error.js +1 -1
- package/dist/cjs/styles/shared/table.js +2 -2
- package/dist/cjs/ui/DropList/index.js +1 -1
- package/dist/es2019/analytics/types/enums.js +3 -0
- package/dist/es2019/i18n/es.js +2 -0
- package/dist/es2019/i18n/ja.js +1 -0
- package/dist/es2019/i18n/tr.js +2 -0
- package/dist/es2019/monitoring/error.js +1 -1
- package/dist/es2019/styles/shared/table.js +2 -2
- package/dist/es2019/ui/DropList/index.js +1 -1
- package/dist/esm/analytics/types/enums.js +3 -0
- package/dist/esm/i18n/es.js +2 -0
- package/dist/esm/i18n/ja.js +1 -0
- package/dist/esm/i18n/tr.js +2 -0
- package/dist/esm/monitoring/error.js +1 -1
- package/dist/esm/styles/shared/table.js +2 -2
- package/dist/esm/ui/DropList/index.js +1 -1
- package/dist/types/analytics/types/enums.d.ts +4 -1
- package/dist/types/analytics/types/events.d.ts +1 -1
- package/dist/types/i18n/es.d.ts +2 -0
- package/dist/types/i18n/ja.d.ts +1 -0
- package/dist/types/i18n/tr.d.ts +2 -0
- package/dist/types-ts4.5/analytics/types/enums.d.ts +4 -1
- package/dist/types-ts4.5/analytics/types/events.d.ts +1 -1
- package/dist/types-ts4.5/i18n/es.d.ts +2 -0
- package/dist/types-ts4.5/i18n/ja.d.ts +1 -0
- package/dist/types-ts4.5/i18n/tr.d.ts +2 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @atlaskit/editor-common
|
|
2
2
|
|
|
3
|
+
## 76.27.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#61112](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/61112) [`283d290a41e5`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/283d290a41e5) - ED-21499: analytics event added for remove child operation in MBE
|
|
8
|
+
- [#62117](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/62117) [`f2c6b2f4cca8`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/f2c6b2f4cca8) - Update table header cell color token to match user cell background colour picker
|
|
9
|
+
|
|
3
10
|
## 76.27.4
|
|
4
11
|
|
|
5
12
|
### Patch Changes
|
|
@@ -137,6 +137,9 @@ var ACTION = exports.ACTION = /*#__PURE__*/function (ACTION) {
|
|
|
137
137
|
ACTION["RECORD_VIDEO_FAILED"] = "recordVideoFailed";
|
|
138
138
|
ACTION["ADD_CHILD"] = "addChild";
|
|
139
139
|
ACTION["CHANGE_ACTIVE"] = "changeActive";
|
|
140
|
+
ACTION["REMOVE_CHILD"] = "removeChild";
|
|
141
|
+
ACTION["UPDATE_PARAMETERS"] = "updateParameters";
|
|
142
|
+
ACTION["GET_CHILDERN"] = "getChildern";
|
|
140
143
|
return ACTION;
|
|
141
144
|
}({});
|
|
142
145
|
var INPUT_METHOD = exports.INPUT_METHOD = /*#__PURE__*/function (INPUT_METHOD) {
|
package/dist/cjs/i18n/es.js
CHANGED
|
@@ -187,6 +187,8 @@ var _default = exports.default = {
|
|
|
187
187
|
'fabric.editor.pageActionsLabel': 'Acciones de la página',
|
|
188
188
|
'fabric.editor.placeholderText': 'Texto de marcador de posición',
|
|
189
189
|
'fabric.editor.placeholderText.description': 'Insertar un marcador de posición de texto en la página',
|
|
190
|
+
'fabric.editor.recordVideo': 'Grabar vídeo',
|
|
191
|
+
'fabric.editor.recordVideo.description': 'Grabar vídeo con Loom',
|
|
190
192
|
'fabric.editor.redo': 'Rehacer',
|
|
191
193
|
'fabric.editor.remove': 'Eliminar',
|
|
192
194
|
'fabric.editor.removeColumns': '{0, plural, one {Eliminar columna} other {Eliminar columnas}}',
|
package/dist/cjs/i18n/ja.js
CHANGED
|
@@ -217,6 +217,7 @@ var _default = exports.default = {
|
|
|
217
217
|
'fabric.editor.table': '表',
|
|
218
218
|
'fabric.editor.table.description': '表を挿入',
|
|
219
219
|
'fabric.editor.tableOptions': '表のオプション',
|
|
220
|
+
'fabric.editor.tableResizeScreenReaderInformation': '{newWidth, plural, other {テーブル幅が {newWidth,number} ピクセルに縮小しました。}}',
|
|
220
221
|
'fabric.editor.tables.adjustColumn': '列を調整する',
|
|
221
222
|
'fabric.editor.tables.confirmDeleteLinkedModalMessage': '{nodeName} を削除すると、接続されているすべてが破棄されます。',
|
|
222
223
|
'fabric.editor.tables.confirmDeleteLinkedModalOKButton': '削除',
|
package/dist/cjs/i18n/tr.js
CHANGED
|
@@ -187,6 +187,8 @@ var _default = exports.default = {
|
|
|
187
187
|
'fabric.editor.pageActionsLabel': 'Sayfa işlemleri',
|
|
188
188
|
'fabric.editor.placeholderText': 'Yer tutucu metin',
|
|
189
189
|
'fabric.editor.placeholderText.description': 'Sayfaya metin yer tutucusu ekle',
|
|
190
|
+
'fabric.editor.recordVideo': 'Video kaydet',
|
|
191
|
+
'fabric.editor.recordVideo.description': 'Loom kullanarak video kaydedin',
|
|
190
192
|
'fabric.editor.redo': 'Yinele',
|
|
191
193
|
'fabric.editor.remove': 'Kaldır',
|
|
192
194
|
'fabric.editor.removeColumns': '{0, plural, one {Sütunu sil} other {Sütunları sil}}',
|
|
@@ -16,7 +16,7 @@ function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "functio
|
|
|
16
16
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
17
17
|
var SENTRY_DSN = 'https://0b10c8e02fb44d8796c047b102c9bee8@o55978.ingest.sentry.io/4505129224110080';
|
|
18
18
|
var packageName = 'editor-common'; // Sentry doesn't accept '/' in its releases https://docs.sentry.io/platforms/javascript/configuration/releases/
|
|
19
|
-
var packageVersion = "76.27.
|
|
19
|
+
var packageVersion = "76.27.5";
|
|
20
20
|
var sanitiseSentryEvents = function sanitiseSentryEvents(data, _hint) {
|
|
21
21
|
// Remove URL as it has UGC
|
|
22
22
|
// TODO: Sanitise the URL instead of just removing it
|
|
@@ -56,8 +56,8 @@ var tableSharedStyle = exports.tableSharedStyle = function tableSharedStyle(prop
|
|
|
56
56
|
})(props), tableCellPadding, _browser.default.gecko || _browser.default.ie || _browser.default.mac && _browser.default.chrome ? 'background-clip: padding-box;' : '', (0, _components.themed)({
|
|
57
57
|
dark: _editorSharedStyles.getTableCellBackgroundDarkModeColors
|
|
58
58
|
})(props), (0, _components.themed)({
|
|
59
|
-
light: "var(--ds-background-
|
|
60
|
-
dark: "var(--ds-background-
|
|
59
|
+
light: "var(--ds-background-accent-gray-subtlest, ".concat(_editorSharedStyles.akEditorTableToolbar, ")"),
|
|
60
|
+
dark: "var(--ds-background-accent-gray-subtlest, ".concat(_editorSharedStyles.akEditorTableToolbarDark, ")")
|
|
61
61
|
})(props), _codeBlock.CodeBlockSharedCssClassName.CODEBLOCK_CONTAINER, (0, _components.themed)({
|
|
62
62
|
light: "var(--ds-surface-raised, rgb(235, 237, 240))",
|
|
63
63
|
dark: "var(--ds-surface-raised, rgb(36, 47, 66))"
|
|
@@ -24,7 +24,7 @@ var _templateObject, _templateObject2, _templateObject3;
|
|
|
24
24
|
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2.default)(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2.default)(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2.default)(this, result); }; }
|
|
25
25
|
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } } /** @jsx jsx */
|
|
26
26
|
var packageName = "@atlaskit/editor-common";
|
|
27
|
-
var packageVersion = "76.27.
|
|
27
|
+
var packageVersion = "76.27.5";
|
|
28
28
|
var halfFocusRing = 1;
|
|
29
29
|
var dropOffset = '0, 8';
|
|
30
30
|
var DropList = /*#__PURE__*/function (_Component) {
|
|
@@ -131,6 +131,9 @@ export let ACTION = /*#__PURE__*/function (ACTION) {
|
|
|
131
131
|
ACTION["RECORD_VIDEO_FAILED"] = "recordVideoFailed";
|
|
132
132
|
ACTION["ADD_CHILD"] = "addChild";
|
|
133
133
|
ACTION["CHANGE_ACTIVE"] = "changeActive";
|
|
134
|
+
ACTION["REMOVE_CHILD"] = "removeChild";
|
|
135
|
+
ACTION["UPDATE_PARAMETERS"] = "updateParameters";
|
|
136
|
+
ACTION["GET_CHILDERN"] = "getChildern";
|
|
134
137
|
return ACTION;
|
|
135
138
|
}({});
|
|
136
139
|
export let INPUT_METHOD = /*#__PURE__*/function (INPUT_METHOD) {
|
package/dist/es2019/i18n/es.js
CHANGED
|
@@ -181,6 +181,8 @@ export default {
|
|
|
181
181
|
'fabric.editor.pageActionsLabel': 'Acciones de la página',
|
|
182
182
|
'fabric.editor.placeholderText': 'Texto de marcador de posición',
|
|
183
183
|
'fabric.editor.placeholderText.description': 'Insertar un marcador de posición de texto en la página',
|
|
184
|
+
'fabric.editor.recordVideo': 'Grabar vídeo',
|
|
185
|
+
'fabric.editor.recordVideo.description': 'Grabar vídeo con Loom',
|
|
184
186
|
'fabric.editor.redo': 'Rehacer',
|
|
185
187
|
'fabric.editor.remove': 'Eliminar',
|
|
186
188
|
'fabric.editor.removeColumns': '{0, plural, one {Eliminar columna} other {Eliminar columnas}}',
|
package/dist/es2019/i18n/ja.js
CHANGED
|
@@ -211,6 +211,7 @@ export default {
|
|
|
211
211
|
'fabric.editor.table': '表',
|
|
212
212
|
'fabric.editor.table.description': '表を挿入',
|
|
213
213
|
'fabric.editor.tableOptions': '表のオプション',
|
|
214
|
+
'fabric.editor.tableResizeScreenReaderInformation': '{newWidth, plural, other {テーブル幅が {newWidth,number} ピクセルに縮小しました。}}',
|
|
214
215
|
'fabric.editor.tables.adjustColumn': '列を調整する',
|
|
215
216
|
'fabric.editor.tables.confirmDeleteLinkedModalMessage': '{nodeName} を削除すると、接続されているすべてが破棄されます。',
|
|
216
217
|
'fabric.editor.tables.confirmDeleteLinkedModalOKButton': '削除',
|
package/dist/es2019/i18n/tr.js
CHANGED
|
@@ -181,6 +181,8 @@ export default {
|
|
|
181
181
|
'fabric.editor.pageActionsLabel': 'Sayfa işlemleri',
|
|
182
182
|
'fabric.editor.placeholderText': 'Yer tutucu metin',
|
|
183
183
|
'fabric.editor.placeholderText.description': 'Sayfaya metin yer tutucusu ekle',
|
|
184
|
+
'fabric.editor.recordVideo': 'Video kaydet',
|
|
185
|
+
'fabric.editor.recordVideo.description': 'Loom kullanarak video kaydedin',
|
|
184
186
|
'fabric.editor.redo': 'Yinele',
|
|
185
187
|
'fabric.editor.remove': 'Kaldır',
|
|
186
188
|
'fabric.editor.removeColumns': '{0, plural, one {Sütunu sil} other {Sütunları sil}}',
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
const SENTRY_DSN = 'https://0b10c8e02fb44d8796c047b102c9bee8@o55978.ingest.sentry.io/4505129224110080';
|
|
2
2
|
const packageName = 'editor-common'; // Sentry doesn't accept '/' in its releases https://docs.sentry.io/platforms/javascript/configuration/releases/
|
|
3
|
-
const packageVersion = "76.27.
|
|
3
|
+
const packageVersion = "76.27.5";
|
|
4
4
|
const sanitiseSentryEvents = (data, _hint) => {
|
|
5
5
|
// Remove URL as it has UGC
|
|
6
6
|
// TODO: Sanitise the URL instead of just removing it
|
|
@@ -148,8 +148,8 @@ const tableSharedStyle = props => css`
|
|
|
148
148
|
}
|
|
149
149
|
th {
|
|
150
150
|
background-color: ${themed({
|
|
151
|
-
light: `var(--ds-background-
|
|
152
|
-
dark: `var(--ds-background-
|
|
151
|
+
light: `var(--ds-background-accent-gray-subtlest, ${akEditorTableToolbar})`,
|
|
152
|
+
dark: `var(--ds-background-accent-gray-subtlest, ${akEditorTableToolbarDark})`
|
|
153
153
|
})(props)};
|
|
154
154
|
text-align: left;
|
|
155
155
|
|
|
@@ -9,7 +9,7 @@ import { themed } from '@atlaskit/theme/components';
|
|
|
9
9
|
import { borderRadius } from '@atlaskit/theme/constants';
|
|
10
10
|
import Layer from '../Layer';
|
|
11
11
|
const packageName = "@atlaskit/editor-common";
|
|
12
|
-
const packageVersion = "76.27.
|
|
12
|
+
const packageVersion = "76.27.5";
|
|
13
13
|
const halfFocusRing = 1;
|
|
14
14
|
const dropOffset = '0, 8';
|
|
15
15
|
class DropList extends Component {
|
|
@@ -131,6 +131,9 @@ export var ACTION = /*#__PURE__*/function (ACTION) {
|
|
|
131
131
|
ACTION["RECORD_VIDEO_FAILED"] = "recordVideoFailed";
|
|
132
132
|
ACTION["ADD_CHILD"] = "addChild";
|
|
133
133
|
ACTION["CHANGE_ACTIVE"] = "changeActive";
|
|
134
|
+
ACTION["REMOVE_CHILD"] = "removeChild";
|
|
135
|
+
ACTION["UPDATE_PARAMETERS"] = "updateParameters";
|
|
136
|
+
ACTION["GET_CHILDERN"] = "getChildern";
|
|
134
137
|
return ACTION;
|
|
135
138
|
}({});
|
|
136
139
|
export var INPUT_METHOD = /*#__PURE__*/function (INPUT_METHOD) {
|
package/dist/esm/i18n/es.js
CHANGED
|
@@ -181,6 +181,8 @@ export default {
|
|
|
181
181
|
'fabric.editor.pageActionsLabel': 'Acciones de la página',
|
|
182
182
|
'fabric.editor.placeholderText': 'Texto de marcador de posición',
|
|
183
183
|
'fabric.editor.placeholderText.description': 'Insertar un marcador de posición de texto en la página',
|
|
184
|
+
'fabric.editor.recordVideo': 'Grabar vídeo',
|
|
185
|
+
'fabric.editor.recordVideo.description': 'Grabar vídeo con Loom',
|
|
184
186
|
'fabric.editor.redo': 'Rehacer',
|
|
185
187
|
'fabric.editor.remove': 'Eliminar',
|
|
186
188
|
'fabric.editor.removeColumns': '{0, plural, one {Eliminar columna} other {Eliminar columnas}}',
|
package/dist/esm/i18n/ja.js
CHANGED
|
@@ -211,6 +211,7 @@ export default {
|
|
|
211
211
|
'fabric.editor.table': '表',
|
|
212
212
|
'fabric.editor.table.description': '表を挿入',
|
|
213
213
|
'fabric.editor.tableOptions': '表のオプション',
|
|
214
|
+
'fabric.editor.tableResizeScreenReaderInformation': '{newWidth, plural, other {テーブル幅が {newWidth,number} ピクセルに縮小しました。}}',
|
|
214
215
|
'fabric.editor.tables.adjustColumn': '列を調整する',
|
|
215
216
|
'fabric.editor.tables.confirmDeleteLinkedModalMessage': '{nodeName} を削除すると、接続されているすべてが破棄されます。',
|
|
216
217
|
'fabric.editor.tables.confirmDeleteLinkedModalOKButton': '削除',
|
package/dist/esm/i18n/tr.js
CHANGED
|
@@ -181,6 +181,8 @@ export default {
|
|
|
181
181
|
'fabric.editor.pageActionsLabel': 'Sayfa işlemleri',
|
|
182
182
|
'fabric.editor.placeholderText': 'Yer tutucu metin',
|
|
183
183
|
'fabric.editor.placeholderText.description': 'Sayfaya metin yer tutucusu ekle',
|
|
184
|
+
'fabric.editor.recordVideo': 'Video kaydet',
|
|
185
|
+
'fabric.editor.recordVideo.description': 'Loom kullanarak video kaydedin',
|
|
184
186
|
'fabric.editor.redo': 'Yinele',
|
|
185
187
|
'fabric.editor.remove': 'Kaldır',
|
|
186
188
|
'fabric.editor.removeColumns': '{0, plural, one {Sütunu sil} other {Sütunları sil}}',
|
|
@@ -6,7 +6,7 @@ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbol
|
|
|
6
6
|
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
7
7
|
var SENTRY_DSN = 'https://0b10c8e02fb44d8796c047b102c9bee8@o55978.ingest.sentry.io/4505129224110080';
|
|
8
8
|
var packageName = 'editor-common'; // Sentry doesn't accept '/' in its releases https://docs.sentry.io/platforms/javascript/configuration/releases/
|
|
9
|
-
var packageVersion = "76.27.
|
|
9
|
+
var packageVersion = "76.27.5";
|
|
10
10
|
var sanitiseSentryEvents = function sanitiseSentryEvents(data, _hint) {
|
|
11
11
|
// Remove URL as it has UGC
|
|
12
12
|
// TODO: Sanitise the URL instead of just removing it
|
|
@@ -50,8 +50,8 @@ var tableSharedStyle = function tableSharedStyle(props) {
|
|
|
50
50
|
})(props), tableCellPadding, browser.gecko || browser.ie || browser.mac && browser.chrome ? 'background-clip: padding-box;' : '', themed({
|
|
51
51
|
dark: getTableCellBackgroundDarkModeColors
|
|
52
52
|
})(props), themed({
|
|
53
|
-
light: "var(--ds-background-
|
|
54
|
-
dark: "var(--ds-background-
|
|
53
|
+
light: "var(--ds-background-accent-gray-subtlest, ".concat(akEditorTableToolbar, ")"),
|
|
54
|
+
dark: "var(--ds-background-accent-gray-subtlest, ".concat(akEditorTableToolbarDark, ")")
|
|
55
55
|
})(props), CodeBlockSharedCssClassName.CODEBLOCK_CONTAINER, themed({
|
|
56
56
|
light: "var(--ds-surface-raised, rgb(235, 237, 240))",
|
|
57
57
|
dark: "var(--ds-surface-raised, rgb(36, 47, 66))"
|
|
@@ -19,7 +19,7 @@ import { themed } from '@atlaskit/theme/components';
|
|
|
19
19
|
import { borderRadius } from '@atlaskit/theme/constants';
|
|
20
20
|
import Layer from '../Layer';
|
|
21
21
|
var packageName = "@atlaskit/editor-common";
|
|
22
|
-
var packageVersion = "76.27.
|
|
22
|
+
var packageVersion = "76.27.5";
|
|
23
23
|
var halfFocusRing = 1;
|
|
24
24
|
var dropOffset = '0, 8';
|
|
25
25
|
var DropList = /*#__PURE__*/function (_Component) {
|
|
@@ -137,7 +137,10 @@ export declare enum ACTION {
|
|
|
137
137
|
INSERT_VIDEO = "insertVideo",
|
|
138
138
|
RECORD_VIDEO_FAILED = "recordVideoFailed",
|
|
139
139
|
ADD_CHILD = "addChild",
|
|
140
|
-
CHANGE_ACTIVE = "changeActive"
|
|
140
|
+
CHANGE_ACTIVE = "changeActive",
|
|
141
|
+
REMOVE_CHILD = "removeChild",
|
|
142
|
+
UPDATE_PARAMETERS = "updateParameters",
|
|
143
|
+
GET_CHILDERN = "getChildern"
|
|
141
144
|
}
|
|
142
145
|
export declare enum INPUT_METHOD {
|
|
143
146
|
ASCII = "ascii",
|
|
@@ -45,7 +45,7 @@ type CustomPanelEventPayload = TrackAEP<ACTION.CHANGED_BACKGROUND_COLOR | ACTION
|
|
|
45
45
|
} | {
|
|
46
46
|
icon: string;
|
|
47
47
|
}, undefined>;
|
|
48
|
-
type MBEEventPayload = TrackAEP<ACTION.ADD_CHILD | ACTION.CHANGE_ACTIVE | ACTION.DELETED, ACTION_SUBJECT.MULTI_BODIED_EXTENSION, undefined, {
|
|
48
|
+
type MBEEventPayload = TrackAEP<ACTION.ADD_CHILD | ACTION.CHANGE_ACTIVE | ACTION.DELETED | ACTION.REMOVE_CHILD | ACTION.UPDATE_PARAMETERS | ACTION.GET_CHILDERN, ACTION_SUBJECT.MULTI_BODIED_EXTENSION, undefined, {
|
|
49
49
|
extensionType: string;
|
|
50
50
|
extensionKey: string;
|
|
51
51
|
localId: string;
|
package/dist/types/i18n/es.d.ts
CHANGED
|
@@ -179,6 +179,8 @@ declare const _default: {
|
|
|
179
179
|
'fabric.editor.pageActionsLabel': string;
|
|
180
180
|
'fabric.editor.placeholderText': string;
|
|
181
181
|
'fabric.editor.placeholderText.description': string;
|
|
182
|
+
'fabric.editor.recordVideo': string;
|
|
183
|
+
'fabric.editor.recordVideo.description': string;
|
|
182
184
|
'fabric.editor.redo': string;
|
|
183
185
|
'fabric.editor.remove': string;
|
|
184
186
|
'fabric.editor.removeColumns': string;
|
package/dist/types/i18n/ja.d.ts
CHANGED
|
@@ -209,6 +209,7 @@ declare const _default: {
|
|
|
209
209
|
'fabric.editor.table': string;
|
|
210
210
|
'fabric.editor.table.description': string;
|
|
211
211
|
'fabric.editor.tableOptions': string;
|
|
212
|
+
'fabric.editor.tableResizeScreenReaderInformation': string;
|
|
212
213
|
'fabric.editor.tables.adjustColumn': string;
|
|
213
214
|
'fabric.editor.tables.confirmDeleteLinkedModalMessage': string;
|
|
214
215
|
'fabric.editor.tables.confirmDeleteLinkedModalOKButton': string;
|
package/dist/types/i18n/tr.d.ts
CHANGED
|
@@ -179,6 +179,8 @@ declare const _default: {
|
|
|
179
179
|
'fabric.editor.pageActionsLabel': string;
|
|
180
180
|
'fabric.editor.placeholderText': string;
|
|
181
181
|
'fabric.editor.placeholderText.description': string;
|
|
182
|
+
'fabric.editor.recordVideo': string;
|
|
183
|
+
'fabric.editor.recordVideo.description': string;
|
|
182
184
|
'fabric.editor.redo': string;
|
|
183
185
|
'fabric.editor.remove': string;
|
|
184
186
|
'fabric.editor.removeColumns': string;
|
|
@@ -137,7 +137,10 @@ export declare enum ACTION {
|
|
|
137
137
|
INSERT_VIDEO = "insertVideo",
|
|
138
138
|
RECORD_VIDEO_FAILED = "recordVideoFailed",
|
|
139
139
|
ADD_CHILD = "addChild",
|
|
140
|
-
CHANGE_ACTIVE = "changeActive"
|
|
140
|
+
CHANGE_ACTIVE = "changeActive",
|
|
141
|
+
REMOVE_CHILD = "removeChild",
|
|
142
|
+
UPDATE_PARAMETERS = "updateParameters",
|
|
143
|
+
GET_CHILDERN = "getChildern"
|
|
141
144
|
}
|
|
142
145
|
export declare enum INPUT_METHOD {
|
|
143
146
|
ASCII = "ascii",
|
|
@@ -45,7 +45,7 @@ type CustomPanelEventPayload = TrackAEP<ACTION.CHANGED_BACKGROUND_COLOR | ACTION
|
|
|
45
45
|
} | {
|
|
46
46
|
icon: string;
|
|
47
47
|
}, undefined>;
|
|
48
|
-
type MBEEventPayload = TrackAEP<ACTION.ADD_CHILD | ACTION.CHANGE_ACTIVE | ACTION.DELETED, ACTION_SUBJECT.MULTI_BODIED_EXTENSION, undefined, {
|
|
48
|
+
type MBEEventPayload = TrackAEP<ACTION.ADD_CHILD | ACTION.CHANGE_ACTIVE | ACTION.DELETED | ACTION.REMOVE_CHILD | ACTION.UPDATE_PARAMETERS | ACTION.GET_CHILDERN, ACTION_SUBJECT.MULTI_BODIED_EXTENSION, undefined, {
|
|
49
49
|
extensionType: string;
|
|
50
50
|
extensionKey: string;
|
|
51
51
|
localId: string;
|
|
@@ -179,6 +179,8 @@ declare const _default: {
|
|
|
179
179
|
'fabric.editor.pageActionsLabel': string;
|
|
180
180
|
'fabric.editor.placeholderText': string;
|
|
181
181
|
'fabric.editor.placeholderText.description': string;
|
|
182
|
+
'fabric.editor.recordVideo': string;
|
|
183
|
+
'fabric.editor.recordVideo.description': string;
|
|
182
184
|
'fabric.editor.redo': string;
|
|
183
185
|
'fabric.editor.remove': string;
|
|
184
186
|
'fabric.editor.removeColumns': string;
|
|
@@ -209,6 +209,7 @@ declare const _default: {
|
|
|
209
209
|
'fabric.editor.table': string;
|
|
210
210
|
'fabric.editor.table.description': string;
|
|
211
211
|
'fabric.editor.tableOptions': string;
|
|
212
|
+
'fabric.editor.tableResizeScreenReaderInformation': string;
|
|
212
213
|
'fabric.editor.tables.adjustColumn': string;
|
|
213
214
|
'fabric.editor.tables.confirmDeleteLinkedModalMessage': string;
|
|
214
215
|
'fabric.editor.tables.confirmDeleteLinkedModalOKButton': string;
|
|
@@ -179,6 +179,8 @@ declare const _default: {
|
|
|
179
179
|
'fabric.editor.pageActionsLabel': string;
|
|
180
180
|
'fabric.editor.placeholderText': string;
|
|
181
181
|
'fabric.editor.placeholderText.description': string;
|
|
182
|
+
'fabric.editor.recordVideo': string;
|
|
183
|
+
'fabric.editor.recordVideo.description': string;
|
|
182
184
|
'fabric.editor.redo': string;
|
|
183
185
|
'fabric.editor.remove': string;
|
|
184
186
|
'fabric.editor.removeColumns': string;
|
package/package.json
CHANGED