@atlaskit/mention 24.2.13 → 24.2.14

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 CHANGED
@@ -1,5 +1,12 @@
1
1
  # @atlaskit/mention
2
2
 
3
+ ## 24.2.14
4
+
5
+ ### Patch Changes
6
+
7
+ - [`e5001e144b74e`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/e5001e144b74e) -
8
+ Internal changes to how border radius is applied.
9
+
3
10
  ## 24.2.13
4
11
 
5
12
  ### Patch Changes
@@ -19,5 +19,5 @@ var ScrollableStyle = exports.ScrollableStyle = _styled.default.div({
19
19
  background: "var(--ds-surface, white)",
20
20
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
21
21
  maxHeight: _sharedStyles.scrollableMaxHeight,
22
- borderRadius: "var(--ds-border-radius-100, 3px)"
22
+ borderRadius: "var(--ds-radius-small, 3px)"
23
23
  });
@@ -6,7 +6,7 @@ Object.defineProperty(exports, "__esModule", {
6
6
  exports.scrollableMaxHeight = exports.noDialogContainerBoxShadow = exports.noDialogContainerBorderRadius = exports.noDialogContainerBorderColor = exports.mentionListWidth = void 0;
7
7
  var _colors = require("@atlaskit/theme/colors");
8
8
  var noDialogContainerBorderColor = exports.noDialogContainerBorderColor = "var(--ds-border, ".concat(_colors.N40, ")"); // This has not been confirmed by the ADG yet
9
- var noDialogContainerBorderRadius = exports.noDialogContainerBorderRadius = "var(--ds-border-radius-100, 3px)";
9
+ var noDialogContainerBorderRadius = exports.noDialogContainerBorderRadius = "var(--ds-radius-small, 3px)";
10
10
  var noDialogContainerBoxShadow = exports.noDialogContainerBoxShadow = "var(--ds-shadow-overlay, 0 4px 8px -2px rgba(9, 30, 66, 0.25), 0 0 1px rgba(9, 30, 66, 0.31))"; // Copied from droplist style
11
11
 
12
12
  var scrollableMaxHeight = exports.scrollableMaxHeight = '264px';
@@ -12,7 +12,7 @@ var _types = require("../types");
12
12
  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; }
13
13
  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; }
14
14
  var packageName = "@atlaskit/mention";
15
- var packageVersion = "0.0.0-development";
15
+ var packageVersion = "24.2.13";
16
16
  var SLI_EVENT_TYPE = exports.SLI_EVENT_TYPE = 'sli';
17
17
  var SMART_EVENT_TYPE = exports.SMART_EVENT_TYPE = 'smart';
18
18
  var fireAnalyticsMentionTypeaheadEvent = exports.fireAnalyticsMentionTypeaheadEvent = function fireAnalyticsMentionTypeaheadEvent(props) {
@@ -12,5 +12,5 @@ export const ScrollableStyle = styled.div({
12
12
  background: "var(--ds-surface, white)",
13
13
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
14
14
  maxHeight: scrollableMaxHeight,
15
- borderRadius: "var(--ds-border-radius-100, 3px)"
15
+ borderRadius: "var(--ds-radius-small, 3px)"
16
16
  });
@@ -1,6 +1,6 @@
1
1
  import { N40 } from '@atlaskit/theme/colors';
2
2
  export const noDialogContainerBorderColor = `var(--ds-border, ${N40})`; // This has not been confirmed by the ADG yet
3
- export const noDialogContainerBorderRadius = "var(--ds-border-radius-100, 3px)";
3
+ export const noDialogContainerBorderRadius = "var(--ds-radius-small, 3px)";
4
4
  export const noDialogContainerBoxShadow = "var(--ds-shadow-overlay, 0 4px 8px -2px rgba(9, 30, 66, 0.25), 0 0 1px rgba(9, 30, 66, 0.31))"; // Copied from droplist style
5
5
 
6
6
  export const scrollableMaxHeight = '264px';
@@ -2,7 +2,7 @@ import { OPERATIONAL_EVENT_TYPE, UI_EVENT_TYPE } from '@atlaskit/analytics-gas-t
2
2
  import { ELEMENTS_CHANNEL } from '../_constants';
3
3
  import { ComponentNames, isSpecialMentionText } from '../types';
4
4
  const packageName = "@atlaskit/mention";
5
- const packageVersion = "0.0.0-development";
5
+ const packageVersion = "24.2.13";
6
6
  export const SLI_EVENT_TYPE = 'sli';
7
7
  export const SMART_EVENT_TYPE = 'smart';
8
8
  export const fireAnalyticsMentionTypeaheadEvent = props => (action, duration, userIds = [], query) => {
@@ -12,5 +12,5 @@ export var ScrollableStyle = styled.div({
12
12
  background: "var(--ds-surface, white)",
13
13
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
14
14
  maxHeight: scrollableMaxHeight,
15
- borderRadius: "var(--ds-border-radius-100, 3px)"
15
+ borderRadius: "var(--ds-radius-small, 3px)"
16
16
  });
@@ -1,6 +1,6 @@
1
1
  import { N40 } from '@atlaskit/theme/colors';
2
2
  export var noDialogContainerBorderColor = "var(--ds-border, ".concat(N40, ")"); // This has not been confirmed by the ADG yet
3
- export var noDialogContainerBorderRadius = "var(--ds-border-radius-100, 3px)";
3
+ export var noDialogContainerBorderRadius = "var(--ds-radius-small, 3px)";
4
4
  export var noDialogContainerBoxShadow = "var(--ds-shadow-overlay, 0 4px 8px -2px rgba(9, 30, 66, 0.25), 0 0 1px rgba(9, 30, 66, 0.31))"; // Copied from droplist style
5
5
 
6
6
  export var scrollableMaxHeight = '264px';
@@ -5,7 +5,7 @@ import { OPERATIONAL_EVENT_TYPE, UI_EVENT_TYPE } from '@atlaskit/analytics-gas-t
5
5
  import { ELEMENTS_CHANNEL } from '../_constants';
6
6
  import { ComponentNames, isSpecialMentionText } from '../types';
7
7
  var packageName = "@atlaskit/mention";
8
- var packageVersion = "0.0.0-development";
8
+ var packageVersion = "24.2.13";
9
9
  export var SLI_EVENT_TYPE = 'sli';
10
10
  export var SMART_EVENT_TYPE = 'smart';
11
11
  export var fireAnalyticsMentionTypeaheadEvent = function fireAnalyticsMentionTypeaheadEvent(props) {
@@ -1,5 +1,5 @@
1
1
  export declare const noDialogContainerBorderColor: "var(--ds-border)";
2
- export declare const noDialogContainerBorderRadius: "var(--ds-border-radius-100)";
2
+ export declare const noDialogContainerBorderRadius: "var(--ds-radius-small)";
3
3
  export declare const noDialogContainerBoxShadow: "var(--ds-shadow-overlay)";
4
4
  export declare const scrollableMaxHeight = "264px";
5
5
  export declare const mentionListWidth = "340px";
@@ -1,5 +1,5 @@
1
1
  export declare const noDialogContainerBorderColor: "var(--ds-border)";
2
- export declare const noDialogContainerBorderRadius: "var(--ds-border-radius-100)";
2
+ export declare const noDialogContainerBorderRadius: "var(--ds-radius-small)";
3
3
  export declare const noDialogContainerBoxShadow: "var(--ds-shadow-overlay)";
4
4
  export declare const scrollableMaxHeight = "264px";
5
5
  export declare const mentionListWidth = "340px";
package/package.json CHANGED
@@ -115,5 +115,5 @@
115
115
  ]
116
116
  }
117
117
  },
118
- "version": "24.2.13"
118
+ "version": "24.2.14"
119
119
  }