@atlaskit/smart-card 40.20.1 → 40.20.3

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,19 @@
1
1
  # @atlaskit/smart-card
2
2
 
3
+ ## 40.20.3
4
+
5
+ ### Patch Changes
6
+
7
+ - [`6012c22dec4c0`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/6012c22dec4c0) -
8
+ Follow-up on the revert for PR #20864 to prevent Confluence SSR issue
9
+
10
+ ## 40.20.2
11
+
12
+ ### Patch Changes
13
+
14
+ - [`3f4271f8a0790`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/3f4271f8a0790) -
15
+ Replace LP-CC-EMBED iframe with embedded confluence iframe
16
+
3
17
  ## 40.20.1
4
18
 
5
19
  ### Patch Changes
@@ -0,0 +1,103 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.userType = exports.useConfluencePageData = exports.EMBEDDED_CONFLUENCE_MODE = exports.CONFLUENCE_EXTENSION_KEYS = void 0;
7
+ var _react = require("react");
8
+ var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
9
+ var _tokens = require("@atlaskit/tokens");
10
+ var userType = exports.userType = /*#__PURE__*/function (userType) {
11
+ userType["ATLASSIAN_ACCOUNT"] = "atlassianAccount";
12
+ userType["HASHED_EMAIL"] = "hashedEmail";
13
+ userType["LOOM"] = "loom";
14
+ userType["TRELLO"] = "trello";
15
+ userType["OPSGENIE"] = "opsgenie";
16
+ userType["JA_USER_ID"] = "jiraAlign";
17
+ userType["HALP"] = "halp";
18
+ return userType;
19
+ }({});
20
+ var EMBEDDED_CONFLUENCE_MODE = exports.EMBEDDED_CONFLUENCE_MODE = /*#__PURE__*/function (EMBEDDED_CONFLUENCE_MODE) {
21
+ EMBEDDED_CONFLUENCE_MODE["VIEW_MODE"] = "view";
22
+ EMBEDDED_CONFLUENCE_MODE["EDIT_MODE"] = "edit";
23
+ return EMBEDDED_CONFLUENCE_MODE;
24
+ }({});
25
+ var CONFLUENCE_EXTENSION_KEYS = exports.CONFLUENCE_EXTENSION_KEYS = /*#__PURE__*/function (CONFLUENCE_EXTENSION_KEYS) {
26
+ CONFLUENCE_EXTENSION_KEYS["PAGE"] = "integration-confluence-object-provider";
27
+ CONFLUENCE_EXTENSION_KEYS["CANVAS"] = "canvas-native-object-provider";
28
+ return CONFLUENCE_EXTENSION_KEYS;
29
+ }({});
30
+ var useConfluencePageData = exports.useConfluencePageData = function useConfluencePageData(url, extensionKey) {
31
+ var parsedData = (0, _react.useMemo)(function () {
32
+ if (!(0, _platformFeatureFlags.fg)('platform_deprecate_lp_cc_embed')) {
33
+ return undefined;
34
+ }
35
+ if (!url || typeof url !== 'string' || !url.startsWith('http://') && !url.startsWith('https://') || !extensionKey || !Object.values(CONFLUENCE_EXTENSION_KEYS).find(function (key) {
36
+ return key === extensionKey;
37
+ })) {
38
+ return undefined;
39
+ }
40
+ var urlObj;
41
+ try {
42
+ urlObj = new URL(url);
43
+ } catch (_unused) {
44
+ return undefined;
45
+ }
46
+ var _urlObj = urlObj,
47
+ searchParams = _urlObj.searchParams,
48
+ hash = _urlObj.hash;
49
+ var hostname = (searchParams === null || searchParams === void 0 ? void 0 : searchParams.get('hostname')) || '';
50
+ var contentId = (searchParams === null || searchParams === void 0 ? void 0 : searchParams.get('contentId')) || '';
51
+ var spaceKey = (searchParams === null || searchParams === void 0 ? void 0 : searchParams.get('spaceKey')) || '';
52
+
53
+ // Early return for invalid URLs
54
+ if (!contentId || !hostname) {
55
+ return undefined;
56
+ }
57
+ var themeState = (searchParams === null || searchParams === void 0 ? void 0 : searchParams.get('themeState')) || '';
58
+ var themeMode = searchParams === null || searchParams === void 0 ? void 0 : searchParams.get('themeMode');
59
+ var enableInlineComments = (searchParams === null || searchParams === void 0 ? void 0 : searchParams.get('enableInlineComments')) === 'true';
60
+ var enablePageComments = (searchParams === null || searchParams === void 0 ? void 0 : searchParams.get('enablePageComments')) === 'true';
61
+ var userId = (searchParams === null || searchParams === void 0 ? void 0 : searchParams.get('userId')) || '';
62
+ var userIdType = (searchParams === null || searchParams === void 0 ? void 0 : searchParams.get('userInfo')) || undefined;
63
+ var parentProduct = (searchParams === null || searchParams === void 0 ? void 0 : searchParams.get('parentProduct')) || '';
64
+ var inlineComments = enableInlineComments ? ['inline-comments'] : [];
65
+ var pageComments = enablePageComments ? ['page-comments'] : [];
66
+
67
+ // Calculate theme state object here
68
+ var calculatedThemeStateObject;
69
+ if (themeState) {
70
+ calculatedThemeStateObject = (0, _tokens.themeStringToObject)(decodeURIComponent(themeState));
71
+ } else if (themeMode) {
72
+ calculatedThemeStateObject = {
73
+ colorMode: themeMode
74
+ };
75
+ }
76
+ return {
77
+ hostname: hostname,
78
+ spaceKey: spaceKey,
79
+ contentId: contentId,
80
+ parentProduct: parentProduct,
81
+ userId: userId,
82
+ userIdType: userIdType,
83
+ hash: hash || '',
84
+ enableInlineComments: enableInlineComments,
85
+ enablePageComments: enablePageComments,
86
+ themeStateObject: calculatedThemeStateObject,
87
+ allowedFeatures: {
88
+ edit: ['delete-draft'],
89
+ view: ['byline-contributors', 'byline-extensions', 'page-reactions'].concat(pageComments, inlineComments)
90
+ },
91
+ mode: EMBEDDED_CONFLUENCE_MODE.VIEW_MODE,
92
+ locale: 'en'
93
+ };
94
+ }, [url, extensionKey]);
95
+
96
+ // Handle theme side effect - only when theme object changes
97
+ (0, _react.useEffect)(function () {
98
+ if (parsedData !== null && parsedData !== void 0 && parsedData.themeStateObject) {
99
+ (0, _tokens.setGlobalTheme)(parsedData.themeStateObject);
100
+ }
101
+ }, [parsedData === null || parsedData === void 0 ? void 0 : parsedData.themeStateObject]);
102
+ return parsedData;
103
+ };
@@ -11,7 +11,7 @@ var ANALYTICS_CHANNEL = exports.ANALYTICS_CHANNEL = 'media';
11
11
  var context = exports.context = {
12
12
  componentName: 'smart-cards',
13
13
  packageName: "@atlaskit/smart-card",
14
- packageVersion: "40.20.0"
14
+ packageVersion: "0.0.0-development"
15
15
  };
16
16
  var TrackQuickActionType = exports.TrackQuickActionType = /*#__PURE__*/function (TrackQuickActionType) {
17
17
  TrackQuickActionType["StatusUpdate"] = "StatusUpdate";
@@ -21,7 +21,7 @@ var _excluded = ["href", "children", "checkSafety", "onClick", "testId", "isLink
21
21
  _excluded2 = ["isLinkSafe", "showSafetyWarningModal"];
22
22
  var PACKAGE_DATA = {
23
23
  packageName: "@atlaskit/smart-card",
24
- packageVersion: "40.20.0",
24
+ packageVersion: "0.0.0-development",
25
25
  componentName: 'linkUrl'
26
26
  };
27
27
  var Anchor = (0, _click.withLinkClickedEvent)('a');
@@ -0,0 +1,96 @@
1
+ import { useEffect, useMemo } from 'react';
2
+ import { fg } from '@atlaskit/platform-feature-flags';
3
+ import { setGlobalTheme, themeStringToObject } from '@atlaskit/tokens';
4
+ export let userType = /*#__PURE__*/function (userType) {
5
+ userType["ATLASSIAN_ACCOUNT"] = "atlassianAccount";
6
+ userType["HASHED_EMAIL"] = "hashedEmail";
7
+ userType["LOOM"] = "loom";
8
+ userType["TRELLO"] = "trello";
9
+ userType["OPSGENIE"] = "opsgenie";
10
+ userType["JA_USER_ID"] = "jiraAlign";
11
+ userType["HALP"] = "halp";
12
+ return userType;
13
+ }({});
14
+ export let EMBEDDED_CONFLUENCE_MODE = /*#__PURE__*/function (EMBEDDED_CONFLUENCE_MODE) {
15
+ EMBEDDED_CONFLUENCE_MODE["VIEW_MODE"] = "view";
16
+ EMBEDDED_CONFLUENCE_MODE["EDIT_MODE"] = "edit";
17
+ return EMBEDDED_CONFLUENCE_MODE;
18
+ }({});
19
+ export let CONFLUENCE_EXTENSION_KEYS = /*#__PURE__*/function (CONFLUENCE_EXTENSION_KEYS) {
20
+ CONFLUENCE_EXTENSION_KEYS["PAGE"] = "integration-confluence-object-provider";
21
+ CONFLUENCE_EXTENSION_KEYS["CANVAS"] = "canvas-native-object-provider";
22
+ return CONFLUENCE_EXTENSION_KEYS;
23
+ }({});
24
+ export const useConfluencePageData = (url, extensionKey) => {
25
+ const parsedData = useMemo(() => {
26
+ if (!fg('platform_deprecate_lp_cc_embed')) {
27
+ return undefined;
28
+ }
29
+ if (!url || typeof url !== 'string' || !url.startsWith('http://') && !url.startsWith('https://') || !extensionKey || !Object.values(CONFLUENCE_EXTENSION_KEYS).find(key => key === extensionKey)) {
30
+ return undefined;
31
+ }
32
+ let urlObj;
33
+ try {
34
+ urlObj = new URL(url);
35
+ } catch {
36
+ return undefined;
37
+ }
38
+ const {
39
+ searchParams,
40
+ hash
41
+ } = urlObj;
42
+ const hostname = (searchParams === null || searchParams === void 0 ? void 0 : searchParams.get('hostname')) || '';
43
+ const contentId = (searchParams === null || searchParams === void 0 ? void 0 : searchParams.get('contentId')) || '';
44
+ const spaceKey = (searchParams === null || searchParams === void 0 ? void 0 : searchParams.get('spaceKey')) || '';
45
+
46
+ // Early return for invalid URLs
47
+ if (!contentId || !hostname) {
48
+ return undefined;
49
+ }
50
+ const themeState = (searchParams === null || searchParams === void 0 ? void 0 : searchParams.get('themeState')) || '';
51
+ const themeMode = searchParams === null || searchParams === void 0 ? void 0 : searchParams.get('themeMode');
52
+ const enableInlineComments = (searchParams === null || searchParams === void 0 ? void 0 : searchParams.get('enableInlineComments')) === 'true';
53
+ const enablePageComments = (searchParams === null || searchParams === void 0 ? void 0 : searchParams.get('enablePageComments')) === 'true';
54
+ const userId = (searchParams === null || searchParams === void 0 ? void 0 : searchParams.get('userId')) || '';
55
+ const userIdType = (searchParams === null || searchParams === void 0 ? void 0 : searchParams.get('userInfo')) || undefined;
56
+ const parentProduct = (searchParams === null || searchParams === void 0 ? void 0 : searchParams.get('parentProduct')) || '';
57
+ const inlineComments = enableInlineComments ? ['inline-comments'] : [];
58
+ const pageComments = enablePageComments ? ['page-comments'] : [];
59
+
60
+ // Calculate theme state object here
61
+ let calculatedThemeStateObject;
62
+ if (themeState) {
63
+ calculatedThemeStateObject = themeStringToObject(decodeURIComponent(themeState));
64
+ } else if (themeMode) {
65
+ calculatedThemeStateObject = {
66
+ colorMode: themeMode
67
+ };
68
+ }
69
+ return {
70
+ hostname,
71
+ spaceKey,
72
+ contentId,
73
+ parentProduct,
74
+ userId,
75
+ userIdType,
76
+ hash: hash || '',
77
+ enableInlineComments,
78
+ enablePageComments,
79
+ themeStateObject: calculatedThemeStateObject,
80
+ allowedFeatures: {
81
+ edit: ['delete-draft'],
82
+ view: ['byline-contributors', 'byline-extensions', 'page-reactions', ...pageComments, ...inlineComments]
83
+ },
84
+ mode: EMBEDDED_CONFLUENCE_MODE.VIEW_MODE,
85
+ locale: 'en'
86
+ };
87
+ }, [url, extensionKey]);
88
+
89
+ // Handle theme side effect - only when theme object changes
90
+ useEffect(() => {
91
+ if (parsedData !== null && parsedData !== void 0 && parsedData.themeStateObject) {
92
+ setGlobalTheme(parsedData.themeStateObject);
93
+ }
94
+ }, [parsedData === null || parsedData === void 0 ? void 0 : parsedData.themeStateObject]);
95
+ return parsedData;
96
+ };
@@ -2,7 +2,7 @@ export const ANALYTICS_CHANNEL = 'media';
2
2
  export const context = {
3
3
  componentName: 'smart-cards',
4
4
  packageName: "@atlaskit/smart-card",
5
- packageVersion: "40.20.0"
5
+ packageVersion: "0.0.0-development"
6
6
  };
7
7
  export let TrackQuickActionType = /*#__PURE__*/function (TrackQuickActionType) {
8
8
  TrackQuickActionType["StatusUpdate"] = "StatusUpdate";
@@ -11,7 +11,7 @@ import LinkWarningModal from './LinkWarningModal';
11
11
  import { useLinkWarningModal } from './LinkWarningModal/hooks/use-link-warning-modal';
12
12
  const PACKAGE_DATA = {
13
13
  packageName: "@atlaskit/smart-card",
14
- packageVersion: "40.20.0",
14
+ packageVersion: "0.0.0-development",
15
15
  componentName: 'linkUrl'
16
16
  };
17
17
  const Anchor = withLinkClickedEvent('a');
@@ -0,0 +1,97 @@
1
+ import { useEffect, useMemo } from 'react';
2
+ import { fg } from '@atlaskit/platform-feature-flags';
3
+ import { setGlobalTheme, themeStringToObject } from '@atlaskit/tokens';
4
+ export var userType = /*#__PURE__*/function (userType) {
5
+ userType["ATLASSIAN_ACCOUNT"] = "atlassianAccount";
6
+ userType["HASHED_EMAIL"] = "hashedEmail";
7
+ userType["LOOM"] = "loom";
8
+ userType["TRELLO"] = "trello";
9
+ userType["OPSGENIE"] = "opsgenie";
10
+ userType["JA_USER_ID"] = "jiraAlign";
11
+ userType["HALP"] = "halp";
12
+ return userType;
13
+ }({});
14
+ export var EMBEDDED_CONFLUENCE_MODE = /*#__PURE__*/function (EMBEDDED_CONFLUENCE_MODE) {
15
+ EMBEDDED_CONFLUENCE_MODE["VIEW_MODE"] = "view";
16
+ EMBEDDED_CONFLUENCE_MODE["EDIT_MODE"] = "edit";
17
+ return EMBEDDED_CONFLUENCE_MODE;
18
+ }({});
19
+ export var CONFLUENCE_EXTENSION_KEYS = /*#__PURE__*/function (CONFLUENCE_EXTENSION_KEYS) {
20
+ CONFLUENCE_EXTENSION_KEYS["PAGE"] = "integration-confluence-object-provider";
21
+ CONFLUENCE_EXTENSION_KEYS["CANVAS"] = "canvas-native-object-provider";
22
+ return CONFLUENCE_EXTENSION_KEYS;
23
+ }({});
24
+ export var useConfluencePageData = function useConfluencePageData(url, extensionKey) {
25
+ var parsedData = useMemo(function () {
26
+ if (!fg('platform_deprecate_lp_cc_embed')) {
27
+ return undefined;
28
+ }
29
+ if (!url || typeof url !== 'string' || !url.startsWith('http://') && !url.startsWith('https://') || !extensionKey || !Object.values(CONFLUENCE_EXTENSION_KEYS).find(function (key) {
30
+ return key === extensionKey;
31
+ })) {
32
+ return undefined;
33
+ }
34
+ var urlObj;
35
+ try {
36
+ urlObj = new URL(url);
37
+ } catch (_unused) {
38
+ return undefined;
39
+ }
40
+ var _urlObj = urlObj,
41
+ searchParams = _urlObj.searchParams,
42
+ hash = _urlObj.hash;
43
+ var hostname = (searchParams === null || searchParams === void 0 ? void 0 : searchParams.get('hostname')) || '';
44
+ var contentId = (searchParams === null || searchParams === void 0 ? void 0 : searchParams.get('contentId')) || '';
45
+ var spaceKey = (searchParams === null || searchParams === void 0 ? void 0 : searchParams.get('spaceKey')) || '';
46
+
47
+ // Early return for invalid URLs
48
+ if (!contentId || !hostname) {
49
+ return undefined;
50
+ }
51
+ var themeState = (searchParams === null || searchParams === void 0 ? void 0 : searchParams.get('themeState')) || '';
52
+ var themeMode = searchParams === null || searchParams === void 0 ? void 0 : searchParams.get('themeMode');
53
+ var enableInlineComments = (searchParams === null || searchParams === void 0 ? void 0 : searchParams.get('enableInlineComments')) === 'true';
54
+ var enablePageComments = (searchParams === null || searchParams === void 0 ? void 0 : searchParams.get('enablePageComments')) === 'true';
55
+ var userId = (searchParams === null || searchParams === void 0 ? void 0 : searchParams.get('userId')) || '';
56
+ var userIdType = (searchParams === null || searchParams === void 0 ? void 0 : searchParams.get('userInfo')) || undefined;
57
+ var parentProduct = (searchParams === null || searchParams === void 0 ? void 0 : searchParams.get('parentProduct')) || '';
58
+ var inlineComments = enableInlineComments ? ['inline-comments'] : [];
59
+ var pageComments = enablePageComments ? ['page-comments'] : [];
60
+
61
+ // Calculate theme state object here
62
+ var calculatedThemeStateObject;
63
+ if (themeState) {
64
+ calculatedThemeStateObject = themeStringToObject(decodeURIComponent(themeState));
65
+ } else if (themeMode) {
66
+ calculatedThemeStateObject = {
67
+ colorMode: themeMode
68
+ };
69
+ }
70
+ return {
71
+ hostname: hostname,
72
+ spaceKey: spaceKey,
73
+ contentId: contentId,
74
+ parentProduct: parentProduct,
75
+ userId: userId,
76
+ userIdType: userIdType,
77
+ hash: hash || '',
78
+ enableInlineComments: enableInlineComments,
79
+ enablePageComments: enablePageComments,
80
+ themeStateObject: calculatedThemeStateObject,
81
+ allowedFeatures: {
82
+ edit: ['delete-draft'],
83
+ view: ['byline-contributors', 'byline-extensions', 'page-reactions'].concat(pageComments, inlineComments)
84
+ },
85
+ mode: EMBEDDED_CONFLUENCE_MODE.VIEW_MODE,
86
+ locale: 'en'
87
+ };
88
+ }, [url, extensionKey]);
89
+
90
+ // Handle theme side effect - only when theme object changes
91
+ useEffect(function () {
92
+ if (parsedData !== null && parsedData !== void 0 && parsedData.themeStateObject) {
93
+ setGlobalTheme(parsedData.themeStateObject);
94
+ }
95
+ }, [parsedData === null || parsedData === void 0 ? void 0 : parsedData.themeStateObject]);
96
+ return parsedData;
97
+ };
@@ -4,7 +4,7 @@ export var ANALYTICS_CHANNEL = 'media';
4
4
  export var context = {
5
5
  componentName: 'smart-cards',
6
6
  packageName: "@atlaskit/smart-card",
7
- packageVersion: "40.20.0"
7
+ packageVersion: "0.0.0-development"
8
8
  };
9
9
  export var TrackQuickActionType = /*#__PURE__*/function (TrackQuickActionType) {
10
10
  TrackQuickActionType["StatusUpdate"] = "StatusUpdate";
@@ -14,7 +14,7 @@ import LinkWarningModal from './LinkWarningModal';
14
14
  import { useLinkWarningModal } from './LinkWarningModal/hooks/use-link-warning-modal';
15
15
  var PACKAGE_DATA = {
16
16
  packageName: "@atlaskit/smart-card",
17
- packageVersion: "40.20.0",
17
+ packageVersion: "0.0.0-development",
18
18
  componentName: 'linkUrl'
19
19
  };
20
20
  var Anchor = withLinkClickedEvent('a');
@@ -0,0 +1,39 @@
1
+ export declare enum userType {
2
+ ATLASSIAN_ACCOUNT = "atlassianAccount",
3
+ HASHED_EMAIL = "hashedEmail",
4
+ LOOM = "loom",
5
+ TRELLO = "trello",
6
+ OPSGENIE = "opsgenie",
7
+ JA_USER_ID = "jiraAlign",
8
+ HALP = "halp"
9
+ }
10
+ export type PageAllowedFeatures = {
11
+ edit: string[];
12
+ view: string[];
13
+ };
14
+ export declare enum EMBEDDED_CONFLUENCE_MODE {
15
+ VIEW_MODE = "view",
16
+ EDIT_MODE = "edit"
17
+ }
18
+ export declare enum CONFLUENCE_EXTENSION_KEYS {
19
+ PAGE = "integration-confluence-object-provider",
20
+ CANVAS = "canvas-native-object-provider"
21
+ }
22
+ export declare const useConfluencePageData: (url: string, extensionKey: string) => {
23
+ hostname: string;
24
+ spaceKey: string;
25
+ contentId: string;
26
+ parentProduct: string;
27
+ userId: string;
28
+ userIdType: userType;
29
+ hash: string;
30
+ enableInlineComments: boolean;
31
+ enablePageComments: boolean;
32
+ themeStateObject: Partial<import("@atlaskit/tokens").ThemeState> | undefined;
33
+ allowedFeatures: {
34
+ edit: string[];
35
+ view: string[];
36
+ };
37
+ mode: EMBEDDED_CONFLUENCE_MODE;
38
+ locale: string;
39
+ } | undefined;
@@ -0,0 +1,39 @@
1
+ export declare enum userType {
2
+ ATLASSIAN_ACCOUNT = "atlassianAccount",
3
+ HASHED_EMAIL = "hashedEmail",
4
+ LOOM = "loom",
5
+ TRELLO = "trello",
6
+ OPSGENIE = "opsgenie",
7
+ JA_USER_ID = "jiraAlign",
8
+ HALP = "halp"
9
+ }
10
+ export type PageAllowedFeatures = {
11
+ edit: string[];
12
+ view: string[];
13
+ };
14
+ export declare enum EMBEDDED_CONFLUENCE_MODE {
15
+ VIEW_MODE = "view",
16
+ EDIT_MODE = "edit"
17
+ }
18
+ export declare enum CONFLUENCE_EXTENSION_KEYS {
19
+ PAGE = "integration-confluence-object-provider",
20
+ CANVAS = "canvas-native-object-provider"
21
+ }
22
+ export declare const useConfluencePageData: (url: string, extensionKey: string) => {
23
+ hostname: string;
24
+ spaceKey: string;
25
+ contentId: string;
26
+ parentProduct: string;
27
+ userId: string;
28
+ userIdType: userType;
29
+ hash: string;
30
+ enableInlineComments: boolean;
31
+ enablePageComments: boolean;
32
+ themeStateObject: Partial<import("@atlaskit/tokens").ThemeState> | undefined;
33
+ allowedFeatures: {
34
+ edit: string[];
35
+ view: string[];
36
+ };
37
+ mode: EMBEDDED_CONFLUENCE_MODE;
38
+ locale: string;
39
+ } | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/smart-card",
3
- "version": "40.20.1",
3
+ "version": "40.20.3",
4
4
  "description": "Smart card component",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -223,6 +223,9 @@
223
223
  "ptc-enable-embed-team-smart-links": {
224
224
  "type": "boolean"
225
225
  },
226
+ "platform_deprecate_lp_cc_embed": {
227
+ "type": "boolean"
228
+ },
226
229
  "navx-1483-a11y-close-button-in-modal-updates": {
227
230
  "type": "boolean"
228
231
  },