@atlaskit/smart-card 45.21.9 → 45.22.0

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,20 @@
1
1
  # @atlaskit/smart-card
2
2
 
3
+ ## 45.22.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`790c4f8c5dee0`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/790c4f8c5dee0) -
8
+ Add opt-in `/confluence-renderer` and `/local-model` entry points, lazy-load embedded-confluence
9
+ in smart-card, and register chat autocomplete in the initial editor preset. Trello does not
10
+ download embedded-confluence or web-llm with the default chat bundle. Confluence users keep focus
11
+ when `platform_editor_ai_autocomplete_rovo_chat_editor` is on because the plugin is no longer
12
+ added after mount.
13
+
14
+ ### Patch Changes
15
+
16
+ - Updated dependencies
17
+
3
18
  ## 45.21.9
4
19
 
5
20
  ### Patch Changes
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ Object.defineProperty(exports, "EmbeddedConfluencePageProvider", {
7
+ enumerable: true,
8
+ get: function get() {
9
+ return _embeddedConfluencePageContext.EmbeddedConfluencePageProvider;
10
+ }
11
+ });
12
+ Object.defineProperty(exports, "useEmbeddedConfluencePage", {
13
+ enumerable: true,
14
+ get: function get() {
15
+ return _embeddedConfluencePageContext.useEmbeddedConfluencePage;
16
+ }
17
+ });
18
+ var _embeddedConfluencePageContext = require("../view/EmbedCard/components/embedded-confluence-page-context");
@@ -1,18 +1,33 @@
1
1
  "use strict";
2
2
 
3
3
  var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+ var _typeof = require("@babel/runtime/helpers/typeof");
4
5
  Object.defineProperty(exports, "__esModule", {
5
6
  value: true
6
7
  });
7
8
  exports.IFrame = void 0;
8
9
  var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
9
10
  var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
10
- var _react = _interopRequireDefault(require("react"));
11
- var _page = require("@atlaskit/embedded-confluence/page");
11
+ var _react = _interopRequireWildcard(require("react"));
12
12
  var _useConfluencePageData = require("../../../hooks/useConfluencePageData");
13
+ var _embeddedConfluencePageContext = require("./embedded-confluence-page-context");
14
+ var _loadEmbeddedConfluencePage = require("./loadEmbeddedConfluencePage");
13
15
  var _excluded = ["childRef", "className", "extensionKey"];
16
+ function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function _interopRequireWildcard(e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != _typeof(e) && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (var _t in e) "default" !== _t && {}.hasOwnProperty.call(e, _t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, _t)) && (i.get || i.set) ? o(f, _t, i) : f[_t] = e[_t]); return f; })(e, t); }
17
+ var LazyEmbeddedConfluencePage = /*#__PURE__*/(0, _react.lazy)(function () {
18
+ return (0, _loadEmbeddedConfluencePage.loadEmbeddedConfluencePage)().then(function (Page) {
19
+ return {
20
+ default: Page
21
+ };
22
+ });
23
+ });
24
+
14
25
  /**
15
- * Iframe element isolated for DI purposes
26
+ * Iframe element isolated for DI purposes.
27
+ *
28
+ * Confluence `Page` is a dynamic import (or an injected host component) so
29
+ * Trello and other non-Confluence embeds do not statically pull
30
+ * `@atlaskit/embedded-confluence`.
16
31
  */
17
32
  var IFrame = exports.IFrame = function IFrame(_ref) {
18
33
  var childRef = _ref.childRef,
@@ -20,9 +35,22 @@ var IFrame = exports.IFrame = function IFrame(_ref) {
20
35
  extensionKey = _ref.extensionKey,
21
36
  props = (0, _objectWithoutProperties2.default)(_ref, _excluded);
22
37
  var confluencePageData = (0, _useConfluencePageData.useConfluencePageData)(props.src || '', extensionKey || '');
38
+ var InjectedPage = (0, _embeddedConfluencePageContext.useEmbeddedConfluencePage)();
39
+ var Page = InjectedPage !== null && InjectedPage !== void 0 ? InjectedPage : LazyEmbeddedConfluencePage;
40
+ var fallbackIframe =
41
+ /*#__PURE__*/
42
+ // eslint-disable-next-line @atlaskit/ui-styling-standard/no-classname-prop
43
+ _react.default.createElement("iframe", (0, _extends2.default)({
44
+ className: className
45
+ }, props, {
46
+ ref: childRef,
47
+ title: props.title
48
+ }));
23
49
 
24
50
  // Conditional rendering: Page component for lp-cc-embed URLs, iframe for everything else
25
- return confluencePageData ? /*#__PURE__*/_react.default.createElement(_page.Page, {
51
+ return confluencePageData ? /*#__PURE__*/_react.default.createElement(_react.Suspense, {
52
+ fallback: fallbackIframe
53
+ }, /*#__PURE__*/_react.default.createElement(Page, {
26
54
  hostname: confluencePageData.hostname,
27
55
  spaceKey: confluencePageData.spaceKey,
28
56
  contentId: confluencePageData.contentId,
@@ -38,13 +66,5 @@ var IFrame = exports.IFrame = function IFrame(_ref) {
38
66
  allowedFeatures: confluencePageData.allowedFeatures,
39
67
  themeState: confluencePageData.themeStateObject,
40
68
  userInfo: confluencePageData.userInfo
41
- }) :
42
- /*#__PURE__*/
43
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-classname-prop
44
- _react.default.createElement("iframe", (0, _extends2.default)({
45
- className: className
46
- }, props, {
47
- ref: childRef,
48
- title: props.title
49
- }));
69
+ })) : fallbackIframe;
50
70
  };
@@ -0,0 +1,22 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.useEmbeddedConfluencePage = exports.EmbeddedConfluencePageProvider = void 0;
7
+ var _react = require("react");
8
+ /**
9
+ * Props forwarded to `@atlaskit/embedded-confluence` `Page` from the embed iframe.
10
+ * Kept local so this module never imports the Confluence package.
11
+ */
12
+
13
+ var EmbeddedConfluencePageContext = /*#__PURE__*/(0, _react.createContext)(null);
14
+
15
+ /**
16
+ * Hosts that want Confluence page embeds can inject `Page` here so Trello and
17
+ * other products never compile `@atlaskit/embedded-confluence` as a hard import.
18
+ */
19
+ var EmbeddedConfluencePageProvider = exports.EmbeddedConfluencePageProvider = EmbeddedConfluencePageContext.Provider;
20
+ var useEmbeddedConfluencePage = exports.useEmbeddedConfluencePage = function useEmbeddedConfluencePage() {
21
+ return (0, _react.useContext)(EmbeddedConfluencePageContext);
22
+ };
@@ -0,0 +1,44 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ exports.loadEmbeddedConfluencePage = loadEmbeddedConfluencePage;
8
+ var _regenerator = _interopRequireDefault(require("@babel/runtime/regenerator"));
9
+ var _typeof2 = _interopRequireDefault(require("@babel/runtime/helpers/typeof"));
10
+ var _asyncToGenerator2 = _interopRequireDefault(require("@babel/runtime/helpers/asyncToGenerator"));
11
+ function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function _interopRequireWildcard(e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != (0, _typeof2.default)(e) && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (var _t in e) "default" !== _t && {}.hasOwnProperty.call(e, _t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, _t)) && (i.get || i.set) ? o(f, _t, i) : f[_t] = e[_t]); return f; })(e, t); }
12
+ /**
13
+ * Async factory for the Confluence embed `Page` component.
14
+ *
15
+ * Kept in its own module so `@atlaskit/embedded-confluence` is a dynamic
16
+ * import only — hosts that never render a Confluence embed URL do not
17
+ * download this chunk.
18
+ */
19
+ function loadEmbeddedConfluencePage() {
20
+ return _loadEmbeddedConfluencePage.apply(this, arguments);
21
+ }
22
+ function _loadEmbeddedConfluencePage() {
23
+ _loadEmbeddedConfluencePage = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee() {
24
+ var _yield$import, Page;
25
+ return _regenerator.default.wrap(function (_context) {
26
+ while (1) switch (_context.prev = _context.next) {
27
+ case 0:
28
+ _context.next = 1;
29
+ return Promise.resolve().then(function () {
30
+ return _interopRequireWildcard(require( /* webpackChunkName: "@atlaskit-internal_smart-card-embedded-confluence" */
31
+ '@atlaskit/embedded-confluence'));
32
+ });
33
+ case 1:
34
+ _yield$import = _context.sent;
35
+ Page = _yield$import.Page;
36
+ return _context.abrupt("return", Page);
37
+ case 2:
38
+ case "end":
39
+ return _context.stop();
40
+ }
41
+ }, _callee);
42
+ }));
43
+ return _loadEmbeddedConfluencePage.apply(this, arguments);
44
+ }
@@ -0,0 +1 @@
1
+ export { EmbeddedConfluencePageProvider, useEmbeddedConfluencePage } from '../view/EmbedCard/components/embedded-confluence-page-context';
@@ -1,9 +1,18 @@
1
1
  import _extends from "@babel/runtime/helpers/extends";
2
- import React from 'react';
3
- import { Page } from '@atlaskit/embedded-confluence/page';
2
+ import React, { lazy, Suspense } from 'react';
4
3
  import { useConfluencePageData } from '../../../hooks/useConfluencePageData';
4
+ import { useEmbeddedConfluencePage } from './embedded-confluence-page-context';
5
+ import { loadEmbeddedConfluencePage } from './loadEmbeddedConfluencePage';
6
+ const LazyEmbeddedConfluencePage = /*#__PURE__*/lazy(() => loadEmbeddedConfluencePage().then(Page => ({
7
+ default: Page
8
+ })));
9
+
5
10
  /**
6
- * Iframe element isolated for DI purposes
11
+ * Iframe element isolated for DI purposes.
12
+ *
13
+ * Confluence `Page` is a dynamic import (or an injected host component) so
14
+ * Trello and other non-Confluence embeds do not statically pull
15
+ * `@atlaskit/embedded-confluence`.
7
16
  */
8
17
  export const IFrame = ({
9
18
  childRef,
@@ -12,9 +21,22 @@ export const IFrame = ({
12
21
  ...props
13
22
  }) => {
14
23
  const confluencePageData = useConfluencePageData(props.src || '', extensionKey || '');
24
+ const InjectedPage = useEmbeddedConfluencePage();
25
+ const Page = InjectedPage !== null && InjectedPage !== void 0 ? InjectedPage : LazyEmbeddedConfluencePage;
26
+ const fallbackIframe =
27
+ /*#__PURE__*/
28
+ // eslint-disable-next-line @atlaskit/ui-styling-standard/no-classname-prop
29
+ React.createElement("iframe", _extends({
30
+ className: className
31
+ }, props, {
32
+ ref: childRef,
33
+ title: props.title
34
+ }));
15
35
 
16
36
  // Conditional rendering: Page component for lp-cc-embed URLs, iframe for everything else
17
- return confluencePageData ? /*#__PURE__*/React.createElement(Page, {
37
+ return confluencePageData ? /*#__PURE__*/React.createElement(Suspense, {
38
+ fallback: fallbackIframe
39
+ }, /*#__PURE__*/React.createElement(Page, {
18
40
  hostname: confluencePageData.hostname,
19
41
  spaceKey: confluencePageData.spaceKey,
20
42
  contentId: confluencePageData.contentId,
@@ -30,13 +52,5 @@ export const IFrame = ({
30
52
  allowedFeatures: confluencePageData.allowedFeatures,
31
53
  themeState: confluencePageData.themeStateObject,
32
54
  userInfo: confluencePageData.userInfo
33
- }) :
34
- /*#__PURE__*/
35
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-classname-prop
36
- React.createElement("iframe", _extends({
37
- className: className
38
- }, props, {
39
- ref: childRef,
40
- title: props.title
41
- }));
55
+ })) : fallbackIframe;
42
56
  };
@@ -0,0 +1,15 @@
1
+ import { createContext, useContext } from 'react';
2
+
3
+ /**
4
+ * Props forwarded to `@atlaskit/embedded-confluence` `Page` from the embed iframe.
5
+ * Kept local so this module never imports the Confluence package.
6
+ */
7
+
8
+ const EmbeddedConfluencePageContext = /*#__PURE__*/createContext(null);
9
+
10
+ /**
11
+ * Hosts that want Confluence page embeds can inject `Page` here so Trello and
12
+ * other products never compile `@atlaskit/embedded-confluence` as a hard import.
13
+ */
14
+ export const EmbeddedConfluencePageProvider = EmbeddedConfluencePageContext.Provider;
15
+ export const useEmbeddedConfluencePage = () => useContext(EmbeddedConfluencePageContext);
@@ -0,0 +1,14 @@
1
+ /**
2
+ * Async factory for the Confluence embed `Page` component.
3
+ *
4
+ * Kept in its own module so `@atlaskit/embedded-confluence` is a dynamic
5
+ * import only — hosts that never render a Confluence embed URL do not
6
+ * download this chunk.
7
+ */
8
+ export async function loadEmbeddedConfluencePage() {
9
+ const {
10
+ Page
11
+ } = await import( /* webpackChunkName: "@atlaskit-internal_smart-card-embedded-confluence" */
12
+ '@atlaskit/embedded-confluence');
13
+ return Page;
14
+ }
@@ -0,0 +1 @@
1
+ export { EmbeddedConfluencePageProvider, useEmbeddedConfluencePage } from '../view/EmbedCard/components/embedded-confluence-page-context';
@@ -1,11 +1,24 @@
1
1
  import _extends from "@babel/runtime/helpers/extends";
2
2
  import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
3
3
  var _excluded = ["childRef", "className", "extensionKey"];
4
- import React from 'react';
5
- import { Page } from '@atlaskit/embedded-confluence/page';
4
+ import React, { lazy, Suspense } from 'react';
6
5
  import { useConfluencePageData } from '../../../hooks/useConfluencePageData';
6
+ import { useEmbeddedConfluencePage } from './embedded-confluence-page-context';
7
+ import { loadEmbeddedConfluencePage } from './loadEmbeddedConfluencePage';
8
+ var LazyEmbeddedConfluencePage = /*#__PURE__*/lazy(function () {
9
+ return loadEmbeddedConfluencePage().then(function (Page) {
10
+ return {
11
+ default: Page
12
+ };
13
+ });
14
+ });
15
+
7
16
  /**
8
- * Iframe element isolated for DI purposes
17
+ * Iframe element isolated for DI purposes.
18
+ *
19
+ * Confluence `Page` is a dynamic import (or an injected host component) so
20
+ * Trello and other non-Confluence embeds do not statically pull
21
+ * `@atlaskit/embedded-confluence`.
9
22
  */
10
23
  export var IFrame = function IFrame(_ref) {
11
24
  var childRef = _ref.childRef,
@@ -13,9 +26,22 @@ export var IFrame = function IFrame(_ref) {
13
26
  extensionKey = _ref.extensionKey,
14
27
  props = _objectWithoutProperties(_ref, _excluded);
15
28
  var confluencePageData = useConfluencePageData(props.src || '', extensionKey || '');
29
+ var InjectedPage = useEmbeddedConfluencePage();
30
+ var Page = InjectedPage !== null && InjectedPage !== void 0 ? InjectedPage : LazyEmbeddedConfluencePage;
31
+ var fallbackIframe =
32
+ /*#__PURE__*/
33
+ // eslint-disable-next-line @atlaskit/ui-styling-standard/no-classname-prop
34
+ React.createElement("iframe", _extends({
35
+ className: className
36
+ }, props, {
37
+ ref: childRef,
38
+ title: props.title
39
+ }));
16
40
 
17
41
  // Conditional rendering: Page component for lp-cc-embed URLs, iframe for everything else
18
- return confluencePageData ? /*#__PURE__*/React.createElement(Page, {
42
+ return confluencePageData ? /*#__PURE__*/React.createElement(Suspense, {
43
+ fallback: fallbackIframe
44
+ }, /*#__PURE__*/React.createElement(Page, {
19
45
  hostname: confluencePageData.hostname,
20
46
  spaceKey: confluencePageData.spaceKey,
21
47
  contentId: confluencePageData.contentId,
@@ -31,13 +57,5 @@ export var IFrame = function IFrame(_ref) {
31
57
  allowedFeatures: confluencePageData.allowedFeatures,
32
58
  themeState: confluencePageData.themeStateObject,
33
59
  userInfo: confluencePageData.userInfo
34
- }) :
35
- /*#__PURE__*/
36
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-classname-prop
37
- React.createElement("iframe", _extends({
38
- className: className
39
- }, props, {
40
- ref: childRef,
41
- title: props.title
42
- }));
60
+ })) : fallbackIframe;
43
61
  };
@@ -0,0 +1,17 @@
1
+ import { createContext, useContext } from 'react';
2
+
3
+ /**
4
+ * Props forwarded to `@atlaskit/embedded-confluence` `Page` from the embed iframe.
5
+ * Kept local so this module never imports the Confluence package.
6
+ */
7
+
8
+ var EmbeddedConfluencePageContext = /*#__PURE__*/createContext(null);
9
+
10
+ /**
11
+ * Hosts that want Confluence page embeds can inject `Page` here so Trello and
12
+ * other products never compile `@atlaskit/embedded-confluence` as a hard import.
13
+ */
14
+ export var EmbeddedConfluencePageProvider = EmbeddedConfluencePageContext.Provider;
15
+ export var useEmbeddedConfluencePage = function useEmbeddedConfluencePage() {
16
+ return useContext(EmbeddedConfluencePageContext);
17
+ };
@@ -0,0 +1,33 @@
1
+ import _asyncToGenerator from "@babel/runtime/helpers/asyncToGenerator";
2
+ import _regeneratorRuntime from "@babel/runtime/regenerator";
3
+ /**
4
+ * Async factory for the Confluence embed `Page` component.
5
+ *
6
+ * Kept in its own module so `@atlaskit/embedded-confluence` is a dynamic
7
+ * import only — hosts that never render a Confluence embed URL do not
8
+ * download this chunk.
9
+ */
10
+ export function loadEmbeddedConfluencePage() {
11
+ return _loadEmbeddedConfluencePage.apply(this, arguments);
12
+ }
13
+ function _loadEmbeddedConfluencePage() {
14
+ _loadEmbeddedConfluencePage = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee() {
15
+ var _yield$import, Page;
16
+ return _regeneratorRuntime.wrap(function (_context) {
17
+ while (1) switch (_context.prev = _context.next) {
18
+ case 0:
19
+ _context.next = 1;
20
+ return import( /* webpackChunkName: "@atlaskit-internal_smart-card-embedded-confluence" */
21
+ '@atlaskit/embedded-confluence');
22
+ case 1:
23
+ _yield$import = _context.sent;
24
+ Page = _yield$import.Page;
25
+ return _context.abrupt("return", Page);
26
+ case 2:
27
+ case "end":
28
+ return _context.stop();
29
+ }
30
+ }, _callee);
31
+ }));
32
+ return _loadEmbeddedConfluencePage.apply(this, arguments);
33
+ }
@@ -0,0 +1 @@
1
+ export { EmbeddedConfluencePageProvider, useEmbeddedConfluencePage, type EmbeddedConfluencePageComponent, type EmbeddedConfluencePageProps, } from '../view/EmbedCard/components/embedded-confluence-page-context';
@@ -5,7 +5,11 @@ interface IFrameProps {
5
5
  extensionKey?: string;
6
6
  }
7
7
  /**
8
- * Iframe element isolated for DI purposes
8
+ * Iframe element isolated for DI purposes.
9
+ *
10
+ * Confluence `Page` is a dynamic import (or an injected host component) so
11
+ * Trello and other non-Confluence embeds do not statically pull
12
+ * `@atlaskit/embedded-confluence`.
9
13
  */
10
14
  export declare const IFrame: ({ childRef, className, extensionKey, ...props }: React.ComponentProps<'iframe'> & IFrameProps) => React.JSX.Element;
11
15
  export {};
@@ -0,0 +1,29 @@
1
+ import { type ComponentType, type MouseEventHandler, type Provider, type ReactEventHandler, type Ref } from 'react';
2
+ /**
3
+ * Props forwarded to `@atlaskit/embedded-confluence` `Page` from the embed iframe.
4
+ * Kept local so this module never imports the Confluence package.
5
+ */
6
+ export type EmbeddedConfluencePageProps = {
7
+ allowedFeatures?: unknown;
8
+ contentId: string;
9
+ hash?: string;
10
+ hostname: string;
11
+ iframeRef?: Ref<HTMLIFrameElement>;
12
+ locale?: string;
13
+ mode?: string;
14
+ onLoad?: ReactEventHandler<HTMLIFrameElement>;
15
+ onMouseEnter?: MouseEventHandler<HTMLIFrameElement>;
16
+ onMouseLeave?: MouseEventHandler<HTMLIFrameElement>;
17
+ parentProduct?: string;
18
+ sandbox?: string;
19
+ spaceKey: string;
20
+ themeState?: unknown;
21
+ userInfo?: unknown;
22
+ };
23
+ export type EmbeddedConfluencePageComponent = ComponentType<EmbeddedConfluencePageProps>;
24
+ /**
25
+ * Hosts that want Confluence page embeds can inject `Page` here so Trello and
26
+ * other products never compile `@atlaskit/embedded-confluence` as a hard import.
27
+ */
28
+ export declare const EmbeddedConfluencePageProvider: Provider<EmbeddedConfluencePageComponent | null>;
29
+ export declare const useEmbeddedConfluencePage: () => EmbeddedConfluencePageComponent | null;
@@ -0,0 +1,8 @@
1
+ /**
2
+ * Async factory for the Confluence embed `Page` component.
3
+ *
4
+ * Kept in its own module so `@atlaskit/embedded-confluence` is a dynamic
5
+ * import only — hosts that never render a Confluence embed URL do not
6
+ * download this chunk.
7
+ */
8
+ export declare function loadEmbeddedConfluencePage(): Promise<(typeof import('@atlaskit/embedded-confluence'))['Page']>;
@@ -0,0 +1,10 @@
1
+ {
2
+ "name": "@atlaskit/smart-card/embedded-confluence-page",
3
+ "main": "../dist/cjs/entry-points/embedded-confluence-page.js",
4
+ "module": "../dist/esm/entry-points/embedded-confluence-page.js",
5
+ "module:es2019": "../dist/es2019/entry-points/embedded-confluence-page.js",
6
+ "sideEffects": [
7
+ "**/*.compiled.css"
8
+ ],
9
+ "types": "../dist/types/entry-points/embedded-confluence-page.d.ts"
10
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/smart-card",
3
- "version": "45.21.9",
3
+ "version": "45.22.0",
4
4
  "description": "Smart card component",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"