Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@atlaskit/inline-dialog

Package Overview
Dependencies
Maintainers
0
Versions
190
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@atlaskit/inline-dialog - npm Package Compare versions

Comparing version 14.2.3 to 14.2.4

8

CHANGELOG.md
# @atlaskit/inline-dialog
## 14.2.4
### Patch Changes
- [#120049](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/120049)
[`77504ff274f72`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/77504ff274f72) -
DSP-19576: Assign names to anonymous default exports
## 14.2.3

@@ -4,0 +12,0 @@

23

dist/cjs/InlineDialog/index.js

@@ -29,3 +29,3 @@ "use strict";

var packageName = "@atlaskit/inline-dialog";
var packageVersion = "14.2.3";
var packageVersion = "14.2.4";
var checkIsChildOfPortal = function checkIsChildOfPortal(node) {

@@ -47,3 +47,3 @@ if (!node) {

};
var InlineDialog = exports.InlineDialogWithoutAnalytics = /*#__PURE__*/(0, _react.memo)(function InlineDialog(_ref2) {
var InlineDialogComponent = exports.InlineDialogWithoutAnalytics = /*#__PURE__*/(0, _react.memo)(function InlineDialog(_ref2) {
var _ref2$isOpen = _ref2.isOpen,

@@ -198,5 +198,17 @@ isOpen = _ref2$isOpen === void 0 ? false : _ref2$isOpen,

});
InlineDialog.displayName = 'InlineDialog';
InlineDialogComponent.displayName = 'InlineDialog';
var createAndFireEventOnAtlaskit = (0, _analyticsNext.createAndFireEvent)('atlaskit');
var _default = exports.default = (0, _analyticsNext.withAnalyticsContext)({
/**
* __Inline dialog__
*
* _We are planning on deprecating Inline dialog. We recommend using the Popup component instead._
*
* An inline dialog is a pop-up container for small amounts of information. It can also contain controls.
*
* - [Examples](https://atlassian.design/components/inline-dialog/examples)
* - [Code](https://atlassian.design/components/inline-dialog/code)
* - [Usage](https://atlassian.design/components/inline-dialog/usage)
*/
var InlineDialog = (0, _analyticsNext.withAnalyticsContext)({
componentName: 'inlineDialog',

@@ -215,2 +227,3 @@ packageName: packageName,

})
})(InlineDialog));
})(InlineDialogComponent));
var _default = exports.default = InlineDialog;

@@ -18,3 +18,3 @@ /**

const packageName = "@atlaskit/inline-dialog";
const packageVersion = "14.2.3";
const packageVersion = "14.2.4";
const checkIsChildOfPortal = node => {

@@ -37,3 +37,3 @@ if (!node) {

};
const InlineDialog = /*#__PURE__*/memo(function InlineDialog({
const InlineDialogComponent = /*#__PURE__*/memo(function InlineDialog({
isOpen = false,

@@ -182,6 +182,18 @@ onContentBlur = noop,

});
InlineDialog.displayName = 'InlineDialog';
export { InlineDialog as InlineDialogWithoutAnalytics };
InlineDialogComponent.displayName = 'InlineDialog';
export { InlineDialogComponent as InlineDialogWithoutAnalytics };
const createAndFireEventOnAtlaskit = createAndFireEvent('atlaskit');
export default withAnalyticsContext({
/**
* __Inline dialog__
*
* _We are planning on deprecating Inline dialog. We recommend using the Popup component instead._
*
* An inline dialog is a pop-up container for small amounts of information. It can also contain controls.
*
* - [Examples](https://atlassian.design/components/inline-dialog/examples)
* - [Code](https://atlassian.design/components/inline-dialog/code)
* - [Usage](https://atlassian.design/components/inline-dialog/usage)
*/
const InlineDialog = withAnalyticsContext({
componentName: 'inlineDialog',

@@ -200,2 +212,3 @@ packageName,

})
})(InlineDialog));
})(InlineDialogComponent));
export default InlineDialog;

@@ -18,3 +18,3 @@ /**

var packageName = "@atlaskit/inline-dialog";
var packageVersion = "14.2.3";
var packageVersion = "14.2.4";
var checkIsChildOfPortal = function checkIsChildOfPortal(node) {

@@ -36,3 +36,3 @@ if (!node) {

};
var InlineDialog = /*#__PURE__*/memo(function InlineDialog(_ref2) {
var InlineDialogComponent = /*#__PURE__*/memo(function InlineDialog(_ref2) {
var _ref2$isOpen = _ref2.isOpen,

@@ -187,6 +187,18 @@ isOpen = _ref2$isOpen === void 0 ? false : _ref2$isOpen,

});
InlineDialog.displayName = 'InlineDialog';
export { InlineDialog as InlineDialogWithoutAnalytics };
InlineDialogComponent.displayName = 'InlineDialog';
export { InlineDialogComponent as InlineDialogWithoutAnalytics };
var createAndFireEventOnAtlaskit = createAndFireEvent('atlaskit');
export default withAnalyticsContext({
/**
* __Inline dialog__
*
* _We are planning on deprecating Inline dialog. We recommend using the Popup component instead._
*
* An inline dialog is a pop-up container for small amounts of information. It can also contain controls.
*
* - [Examples](https://atlassian.design/components/inline-dialog/examples)
* - [Code](https://atlassian.design/components/inline-dialog/code)
* - [Usage](https://atlassian.design/components/inline-dialog/usage)
*/
var InlineDialog = withAnalyticsContext({
componentName: 'inlineDialog',

@@ -205,2 +217,3 @@ packageName: packageName,

})
})(InlineDialog));
})(InlineDialogComponent));
export default InlineDialog;

@@ -7,5 +7,16 @@ /**

import type { InlineDialogProps } from '../types';
declare const InlineDialog: FC<InlineDialogProps>;
export { InlineDialog as InlineDialogWithoutAnalytics };
declare const _default: React.ForwardRefExoticComponent<Pick<Omit<InlineDialogProps, keyof import("@atlaskit/analytics-next").WithAnalyticsEventsProps> & React.RefAttributes<any> & import("@atlaskit/analytics-next").WithContextProps, "children" | "content" | "isOpen" | "onContentBlur" | "onContentClick" | "onContentFocus" | "onClose" | "placement" | "strategy" | "testId" | "key" | "analyticsContext"> & React.RefAttributes<any>>;
export default _default;
declare const InlineDialogComponent: FC<InlineDialogProps>;
export { InlineDialogComponent as InlineDialogWithoutAnalytics };
/**
* __Inline dialog__
*
* _We are planning on deprecating Inline dialog. We recommend using the Popup component instead._
*
* An inline dialog is a pop-up container for small amounts of information. It can also contain controls.
*
* - [Examples](https://atlassian.design/components/inline-dialog/examples)
* - [Code](https://atlassian.design/components/inline-dialog/code)
* - [Usage](https://atlassian.design/components/inline-dialog/usage)
*/
declare const InlineDialog: React.ForwardRefExoticComponent<Pick<Omit<InlineDialogProps, keyof import("@atlaskit/analytics-next").WithAnalyticsEventsProps> & React.RefAttributes<any> & import("@atlaskit/analytics-next").WithContextProps, "children" | "content" | "isOpen" | "onContentBlur" | "onContentClick" | "onContentFocus" | "onClose" | "placement" | "strategy" | "testId" | "key" | "analyticsContext"> & React.RefAttributes<any>>;
export default InlineDialog;

@@ -7,5 +7,16 @@ /**

import type { InlineDialogProps } from '../types';
declare const InlineDialog: FC<InlineDialogProps>;
export { InlineDialog as InlineDialogWithoutAnalytics };
declare const _default: React.ForwardRefExoticComponent<Pick<Omit<InlineDialogProps, keyof import("@atlaskit/analytics-next").WithAnalyticsEventsProps> & React.RefAttributes<any> & import("@atlaskit/analytics-next").WithContextProps, "children" | "content" | "isOpen" | "onContentBlur" | "onContentClick" | "onContentFocus" | "onClose" | "placement" | "strategy" | "testId" | "key" | "analyticsContext"> & React.RefAttributes<any>>;
export default _default;
declare const InlineDialogComponent: FC<InlineDialogProps>;
export { InlineDialogComponent as InlineDialogWithoutAnalytics };
/**
* __Inline dialog__
*
* _We are planning on deprecating Inline dialog. We recommend using the Popup component instead._
*
* An inline dialog is a pop-up container for small amounts of information. It can also contain controls.
*
* - [Examples](https://atlassian.design/components/inline-dialog/examples)
* - [Code](https://atlassian.design/components/inline-dialog/code)
* - [Usage](https://atlassian.design/components/inline-dialog/usage)
*/
declare const InlineDialog: React.ForwardRefExoticComponent<Pick<Omit<InlineDialogProps, keyof import("@atlaskit/analytics-next").WithAnalyticsEventsProps> & React.RefAttributes<any> & import("@atlaskit/analytics-next").WithContextProps, "children" | "content" | "isOpen" | "onContentBlur" | "onContentClick" | "onContentFocus" | "onClose" | "placement" | "strategy" | "testId" | "key" | "analyticsContext"> & React.RefAttributes<any>>;
export default InlineDialog;
{
"name": "@atlaskit/inline-dialog",
"version": "14.2.3",
"version": "14.2.4",
"description": "An inline dialog is a pop-up container for small amounts of information. It can also contain controls.",

@@ -50,3 +50,3 @@ "publishConfig": {

"@atlaskit/theme": "^12.11.0",
"@atlaskit/tokens": "^1.53.0",
"@atlaskit/tokens": "^1.54.0",
"@babel/runtime": "^7.0.0",

@@ -64,3 +64,3 @@ "@emotion/react": "^11.7.1",

"@af/visual-regression": "*",
"@atlaskit/button": "^18.1.0",
"@atlaskit/button": "^18.4.0",
"@atlaskit/datetime-picker": "^13.7.0",

@@ -67,0 +67,0 @@ "@atlaskit/docs": "*",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc