@atlaskit/inline-edit 13.5.12 → 13.5.13
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 +6 -0
- package/dist/cjs/inline-edit.js +3 -2
- package/dist/cjs/inline-editable-textfield.js +1 -1
- package/dist/cjs/internal/buttons.js +1 -1
- package/dist/cjs/internal/read-view.js +1 -1
- package/dist/es2019/inline-edit.js +2 -2
- package/dist/es2019/inline-editable-textfield.js +1 -1
- package/dist/es2019/internal/buttons.js +1 -1
- package/dist/es2019/internal/read-view.js +1 -1
- package/dist/esm/inline-edit.js +2 -2
- package/dist/esm/inline-editable-textfield.js +1 -1
- package/dist/esm/internal/buttons.js +1 -1
- package/dist/esm/internal/read-view.js +1 -1
- package/dist/types/internal/buttons.d.ts +1 -1
- package/dist/types/internal/read-view.d.ts +1 -1
- package/dist/types-ts4.5/internal/buttons.d.ts +1 -1
- package/dist/types-ts4.5/internal/read-view.d.ts +1 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
package/dist/cjs/inline-edit.js
CHANGED
|
@@ -23,7 +23,8 @@ function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e;
|
|
|
23
23
|
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
24
24
|
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) { (0, _defineProperty2.default)(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; } /**
|
|
25
25
|
* @jsxRuntime classic
|
|
26
|
-
|
|
26
|
+
* @jsx jsx
|
|
27
|
+
*/ // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
27
28
|
var fieldStyles = (0, _react2.css)({
|
|
28
29
|
maxWidth: '100%',
|
|
29
30
|
position: 'relative'
|
|
@@ -31,7 +32,7 @@ var fieldStyles = (0, _react2.css)({
|
|
|
31
32
|
var analyticsAttributes = {
|
|
32
33
|
componentName: 'inlineEdit',
|
|
33
34
|
packageName: "@atlaskit/inline-edit",
|
|
34
|
-
packageVersion: "13.5.
|
|
35
|
+
packageVersion: "13.5.13"
|
|
35
36
|
};
|
|
36
37
|
var noop = function noop() {};
|
|
37
38
|
var InnerInlineEdit = function InnerInlineEdit(props) {
|
|
@@ -18,8 +18,8 @@ var _constants = require("./internal/constants");
|
|
|
18
18
|
var _excluded = ["errorMessage", "isInvalid"];
|
|
19
19
|
/**
|
|
20
20
|
* @jsxRuntime classic
|
|
21
|
+
* @jsx jsx
|
|
21
22
|
*/
|
|
22
|
-
/** @jsx jsx */
|
|
23
23
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
24
24
|
var errorIconContainerStyles = (0, _react2.css)({
|
|
25
25
|
paddingInlineEnd: "var(--ds-space-075, 6px)",
|
|
@@ -14,8 +14,8 @@ var _colors = require("@atlaskit/theme/colors");
|
|
|
14
14
|
var _constants = require("./constants");
|
|
15
15
|
/**
|
|
16
16
|
* @jsxRuntime classic
|
|
17
|
+
* @jsx jsx
|
|
17
18
|
*/
|
|
18
|
-
/** @jsx jsx */
|
|
19
19
|
|
|
20
20
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
21
21
|
|
|
@@ -14,8 +14,8 @@ function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return
|
|
|
14
14
|
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
15
15
|
/**
|
|
16
16
|
* @jsxRuntime classic
|
|
17
|
+
* @jsx jsx
|
|
17
18
|
*/
|
|
18
|
-
/** @jsx jsx */
|
|
19
19
|
|
|
20
20
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
21
21
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @jsxRuntime classic
|
|
3
|
+
* @jsx jsx
|
|
3
4
|
*/
|
|
4
|
-
/** @jsx jsx */
|
|
5
5
|
import React, { useCallback, useRef, useState } from 'react';
|
|
6
6
|
|
|
7
7
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
@@ -21,7 +21,7 @@ const fieldStyles = css({
|
|
|
21
21
|
const analyticsAttributes = {
|
|
22
22
|
componentName: 'inlineEdit',
|
|
23
23
|
packageName: "@atlaskit/inline-edit",
|
|
24
|
-
packageVersion: "13.5.
|
|
24
|
+
packageVersion: "13.5.13"
|
|
25
25
|
};
|
|
26
26
|
const noop = () => {};
|
|
27
27
|
const InnerInlineEdit = props => {
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import _extends from "@babel/runtime/helpers/extends";
|
|
2
2
|
/**
|
|
3
3
|
* @jsxRuntime classic
|
|
4
|
+
* @jsx jsx
|
|
4
5
|
*/
|
|
5
|
-
/** @jsx jsx */
|
|
6
6
|
import { useCallback, useRef } from 'react';
|
|
7
7
|
|
|
8
8
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import _extends from "@babel/runtime/helpers/extends";
|
|
2
2
|
/**
|
|
3
3
|
* @jsxRuntime classic
|
|
4
|
+
* @jsx jsx
|
|
4
5
|
*/
|
|
5
|
-
/** @jsx jsx */
|
|
6
6
|
|
|
7
7
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
8
8
|
import { css, jsx } from '@emotion/react';
|
package/dist/esm/inline-edit.js
CHANGED
|
@@ -4,8 +4,8 @@ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbol
|
|
|
4
4
|
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; }
|
|
5
5
|
/**
|
|
6
6
|
* @jsxRuntime classic
|
|
7
|
+
* @jsx jsx
|
|
7
8
|
*/
|
|
8
|
-
/** @jsx jsx */
|
|
9
9
|
import React, { useCallback, useRef, useState } from 'react';
|
|
10
10
|
|
|
11
11
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
@@ -25,7 +25,7 @@ var fieldStyles = css({
|
|
|
25
25
|
var analyticsAttributes = {
|
|
26
26
|
componentName: 'inlineEdit',
|
|
27
27
|
packageName: "@atlaskit/inline-edit",
|
|
28
|
-
packageVersion: "13.5.
|
|
28
|
+
packageVersion: "13.5.13"
|
|
29
29
|
};
|
|
30
30
|
var noop = function noop() {};
|
|
31
31
|
var InnerInlineEdit = function InnerInlineEdit(props) {
|
|
@@ -3,8 +3,8 @@ import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProper
|
|
|
3
3
|
var _excluded = ["errorMessage", "isInvalid"];
|
|
4
4
|
/**
|
|
5
5
|
* @jsxRuntime classic
|
|
6
|
+
* @jsx jsx
|
|
6
7
|
*/
|
|
7
|
-
/** @jsx jsx */
|
|
8
8
|
import { useCallback, useRef } from 'react';
|
|
9
9
|
|
|
10
10
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import _extends from "@babel/runtime/helpers/extends";
|
|
2
2
|
/**
|
|
3
3
|
* @jsxRuntime classic
|
|
4
|
+
* @jsx jsx
|
|
4
5
|
*/
|
|
5
|
-
/** @jsx jsx */
|
|
6
6
|
|
|
7
7
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
8
8
|
import { css, jsx } from '@emotion/react';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/inline-edit",
|
|
3
|
-
"version": "13.5.
|
|
3
|
+
"version": "13.5.13",
|
|
4
4
|
"description": "An inline edit displays a custom input component that switches between reading and editing on the same page.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -36,16 +36,16 @@
|
|
|
36
36
|
"runReact18": true
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@atlaskit/analytics-next": "^
|
|
40
|
-
"@atlaskit/button": "^19.
|
|
39
|
+
"@atlaskit/analytics-next": "^10.0.0",
|
|
40
|
+
"@atlaskit/button": "^19.1.0",
|
|
41
41
|
"@atlaskit/codemod-utils": "^4.2.0",
|
|
42
42
|
"@atlaskit/form": "^10.4.0",
|
|
43
|
-
"@atlaskit/icon": "^22.
|
|
43
|
+
"@atlaskit/icon": "^22.10.0",
|
|
44
44
|
"@atlaskit/inline-dialog": "^14.2.0",
|
|
45
|
-
"@atlaskit/primitives": "^11.
|
|
45
|
+
"@atlaskit/primitives": "^11.1.0",
|
|
46
46
|
"@atlaskit/textfield": "^6.4.0",
|
|
47
47
|
"@atlaskit/theme": "^12.11.0",
|
|
48
|
-
"@atlaskit/tokens": "^1.
|
|
48
|
+
"@atlaskit/tokens": "^1.57.0",
|
|
49
49
|
"@atlaskit/visually-hidden": "^1.4.0",
|
|
50
50
|
"@babel/runtime": "^7.0.0",
|
|
51
51
|
"@emotion/react": "^11.7.1"
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"devDependencies": {
|
|
57
57
|
"@af/accessibility-testing": "*",
|
|
58
58
|
"@af/integration-testing": "*",
|
|
59
|
-
"@atlaskit/datetime-picker": "^13.
|
|
59
|
+
"@atlaskit/datetime-picker": "^13.8.0",
|
|
60
60
|
"@atlaskit/docs": "*",
|
|
61
61
|
"@atlaskit/ds-lib": "^2.3.0",
|
|
62
62
|
"@atlaskit/section-message": "^6.5.0",
|