@atlaskit/renderer 125.1.0 → 125.1.1
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 +8 -0
- package/dist/cjs/react/nodes/extension.js +1 -1
- package/dist/cjs/react/nodes/table.js +1 -1
- package/dist/cjs/react/nodes/tableNew.js +1 -1
- package/dist/cjs/ui/Renderer/index.js +1 -1
- package/dist/es2019/react/nodes/extension.js +1 -1
- package/dist/es2019/react/nodes/table.js +1 -1
- package/dist/es2019/react/nodes/tableNew.js +1 -1
- package/dist/es2019/ui/Renderer/index.js +1 -1
- package/dist/esm/react/nodes/extension.js +1 -1
- package/dist/esm/react/nodes/table.js +1 -1
- package/dist/esm/react/nodes/tableNew.js +1 -1
- package/dist/esm/ui/Renderer/index.js +1 -1
- package/dist/types/react/nodes/inlineCard.d.ts +1 -1
- package/dist/types/react/nodes/table.d.ts +1 -1
- package/dist/types/ui/SmartCardStorage.d.ts +1 -1
- package/dist/types-ts4.5/react/nodes/inlineCard.d.ts +1 -1
- package/dist/types-ts4.5/react/nodes/table.d.ts +1 -1
- package/dist/types-ts4.5/ui/SmartCardStorage.d.ts +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @atlaskit/renderer
|
|
2
2
|
|
|
3
|
+
## 125.1.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`e64156876a79c`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/e64156876a79c) -
|
|
8
|
+
Update documentation from Stash to Bitbucket
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
|
|
3
11
|
## 125.1.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
|
@@ -23,7 +23,7 @@ var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
|
|
|
23
23
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
24
24
|
|
|
25
25
|
var viewportSizes = ['small', 'medium', 'default', 'large', 'xlarge'];
|
|
26
|
-
// Mirrors sizes from https://
|
|
26
|
+
// Mirrors sizes from https://bitbucket.org/atlassian/atlassian-frontend-monorepo/src/master/platform/packages/forge/xen-editor-provider/src/render/renderers/ForgeUIExtension.tsx
|
|
27
27
|
var macroHeights = {
|
|
28
28
|
small: '112px',
|
|
29
29
|
medium: '262px',
|
|
@@ -599,7 +599,7 @@ var TableContainer = exports.TableContainer = /*#__PURE__*/function (_React$Comp
|
|
|
599
599
|
height: "var(--ds-space-250, 20px)",
|
|
600
600
|
// MAX_BROWSER_SCROLLBAR_HEIGHT
|
|
601
601
|
// Follow editor to hide by default so it does not show empty gap in SSR
|
|
602
|
-
// https://
|
|
602
|
+
// https://bitbucket.org/atlassian/atlassian-frontend-monorepo/src/master/platform/packages/editor/editor-plugin-table/src/nodeviews/TableComponent.tsx#957
|
|
603
603
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/enforce-style-prop -- Ignored via go/DSP-18766
|
|
604
604
|
display: fixTableSSRResizing ? 'none' : 'block',
|
|
605
605
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/enforce-style-prop
|
|
@@ -38,7 +38,7 @@ var stickyContainerBaseStyles = {
|
|
|
38
38
|
height: "var(--ds-space-250, 20px)",
|
|
39
39
|
// MAX_BROWSER_SCROLLBAR_HEIGHT
|
|
40
40
|
// Follow editor to hide by default so it does not show empty gap in SSR
|
|
41
|
-
// https://
|
|
41
|
+
// https://bitbucket.org/atlassian/atlassian-frontend-monorepo/src/master/platform/packages/editor/editor-plugin-table/src/nodeviews/TableComponent.tsx#957
|
|
42
42
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/enforce-style-prop -- Ignored via go/DSP-18766
|
|
43
43
|
display: 'block',
|
|
44
44
|
width: '100%'
|
|
@@ -70,7 +70,7 @@ var DEGRADED_SEVERITY_THRESHOLD = exports.DEGRADED_SEVERITY_THRESHOLD = 3000;
|
|
|
70
70
|
var TABLE_INFO_TIMEOUT = 10000;
|
|
71
71
|
var RENDER_EVENT_SAMPLE_RATE = 0.2;
|
|
72
72
|
var packageName = "@atlaskit/renderer";
|
|
73
|
-
var packageVersion = "
|
|
73
|
+
var packageVersion = "0.0.0-development";
|
|
74
74
|
var setAsQueryContainerStyles = (0, _react2.css)({
|
|
75
75
|
containerName: 'ak-renderer-wrapper',
|
|
76
76
|
containerType: 'inline-size'
|
|
@@ -15,7 +15,7 @@ import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals';
|
|
|
15
15
|
import { calcBreakoutWidthCss } from '../utils/breakout';
|
|
16
16
|
import { fg } from '@atlaskit/platform-feature-flags';
|
|
17
17
|
const viewportSizes = ['small', 'medium', 'default', 'large', 'xlarge'];
|
|
18
|
-
// Mirrors sizes from https://
|
|
18
|
+
// Mirrors sizes from https://bitbucket.org/atlassian/atlassian-frontend-monorepo/src/master/platform/packages/forge/xen-editor-provider/src/render/renderers/ForgeUIExtension.tsx
|
|
19
19
|
const macroHeights = {
|
|
20
20
|
small: '112px',
|
|
21
21
|
medium: '262px',
|
|
@@ -542,7 +542,7 @@ export class TableContainer extends React.Component {
|
|
|
542
542
|
height: "var(--ds-space-250, 20px)",
|
|
543
543
|
// MAX_BROWSER_SCROLLBAR_HEIGHT
|
|
544
544
|
// Follow editor to hide by default so it does not show empty gap in SSR
|
|
545
|
-
// https://
|
|
545
|
+
// https://bitbucket.org/atlassian/atlassian-frontend-monorepo/src/master/platform/packages/editor/editor-plugin-table/src/nodeviews/TableComponent.tsx#957
|
|
546
546
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/enforce-style-prop -- Ignored via go/DSP-18766
|
|
547
547
|
display: fixTableSSRResizing ? 'none' : 'block',
|
|
548
548
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/enforce-style-prop
|
|
@@ -20,7 +20,7 @@ const stickyContainerBaseStyles = {
|
|
|
20
20
|
height: "var(--ds-space-250, 20px)",
|
|
21
21
|
// MAX_BROWSER_SCROLLBAR_HEIGHT
|
|
22
22
|
// Follow editor to hide by default so it does not show empty gap in SSR
|
|
23
|
-
// https://
|
|
23
|
+
// https://bitbucket.org/atlassian/atlassian-frontend-monorepo/src/master/platform/packages/editor/editor-plugin-table/src/nodeviews/TableComponent.tsx#957
|
|
24
24
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/enforce-style-prop -- Ignored via go/DSP-18766
|
|
25
25
|
display: 'block',
|
|
26
26
|
width: '100%'
|
|
@@ -56,7 +56,7 @@ export const DEGRADED_SEVERITY_THRESHOLD = 3000;
|
|
|
56
56
|
const TABLE_INFO_TIMEOUT = 10000;
|
|
57
57
|
const RENDER_EVENT_SAMPLE_RATE = 0.2;
|
|
58
58
|
const packageName = "@atlaskit/renderer";
|
|
59
|
-
const packageVersion = "
|
|
59
|
+
const packageVersion = "0.0.0-development";
|
|
60
60
|
const setAsQueryContainerStyles = css({
|
|
61
61
|
containerName: 'ak-renderer-wrapper',
|
|
62
62
|
containerType: 'inline-size'
|
|
@@ -15,7 +15,7 @@ import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals';
|
|
|
15
15
|
import { calcBreakoutWidthCss } from '../utils/breakout';
|
|
16
16
|
import { fg } from '@atlaskit/platform-feature-flags';
|
|
17
17
|
var viewportSizes = ['small', 'medium', 'default', 'large', 'xlarge'];
|
|
18
|
-
// Mirrors sizes from https://
|
|
18
|
+
// Mirrors sizes from https://bitbucket.org/atlassian/atlassian-frontend-monorepo/src/master/platform/packages/forge/xen-editor-provider/src/render/renderers/ForgeUIExtension.tsx
|
|
19
19
|
var macroHeights = {
|
|
20
20
|
small: '112px',
|
|
21
21
|
medium: '262px',
|
|
@@ -592,7 +592,7 @@ export var TableContainer = /*#__PURE__*/function (_React$Component) {
|
|
|
592
592
|
height: "var(--ds-space-250, 20px)",
|
|
593
593
|
// MAX_BROWSER_SCROLLBAR_HEIGHT
|
|
594
594
|
// Follow editor to hide by default so it does not show empty gap in SSR
|
|
595
|
-
// https://
|
|
595
|
+
// https://bitbucket.org/atlassian/atlassian-frontend-monorepo/src/master/platform/packages/editor/editor-plugin-table/src/nodeviews/TableComponent.tsx#957
|
|
596
596
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/enforce-style-prop -- Ignored via go/DSP-18766
|
|
597
597
|
display: fixTableSSRResizing ? 'none' : 'block',
|
|
598
598
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/enforce-style-prop
|
|
@@ -32,7 +32,7 @@ var stickyContainerBaseStyles = {
|
|
|
32
32
|
height: "var(--ds-space-250, 20px)",
|
|
33
33
|
// MAX_BROWSER_SCROLLBAR_HEIGHT
|
|
34
34
|
// Follow editor to hide by default so it does not show empty gap in SSR
|
|
35
|
-
// https://
|
|
35
|
+
// https://bitbucket.org/atlassian/atlassian-frontend-monorepo/src/master/platform/packages/editor/editor-plugin-table/src/nodeviews/TableComponent.tsx#957
|
|
36
36
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/enforce-style-prop -- Ignored via go/DSP-18766
|
|
37
37
|
display: 'block',
|
|
38
38
|
width: '100%'
|
|
@@ -61,7 +61,7 @@ export var DEGRADED_SEVERITY_THRESHOLD = 3000;
|
|
|
61
61
|
var TABLE_INFO_TIMEOUT = 10000;
|
|
62
62
|
var RENDER_EVENT_SAMPLE_RATE = 0.2;
|
|
63
63
|
var packageName = "@atlaskit/renderer";
|
|
64
|
-
var packageVersion = "
|
|
64
|
+
var packageVersion = "0.0.0-development";
|
|
65
65
|
var setAsQueryContainerStyles = css({
|
|
66
66
|
containerName: 'ak-renderer-wrapper',
|
|
67
67
|
containerType: 'inline-size'
|
|
@@ -16,7 +16,7 @@ export interface InlineCardProps extends MarkDataAttributes {
|
|
|
16
16
|
url?: string;
|
|
17
17
|
}
|
|
18
18
|
declare const _default: {
|
|
19
|
-
new (props: import("@atlaskit/editor-common/utils").Diff<InlineCardProps & WithSmartCardStorageProps, WithSmartCardStorageProps>
|
|
19
|
+
new (props: import("@atlaskit/editor-common/utils").Diff<InlineCardProps & WithSmartCardStorageProps, WithSmartCardStorageProps>): {
|
|
20
20
|
render(): import("react").JSX.Element;
|
|
21
21
|
context: unknown;
|
|
22
22
|
setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<import("@atlaskit/editor-common/utils").Diff<InlineCardProps & WithSmartCardStorageProps, WithSmartCardStorageProps>>) => {} | Pick<{}, K> | null) | Pick<{}, K> | null, callback?: (() => void) | undefined): void;
|
|
@@ -113,7 +113,7 @@ export declare class TableProcessor extends React.Component<TableProps & Overflo
|
|
|
113
113
|
private addNumberColumnIndexes;
|
|
114
114
|
}
|
|
115
115
|
declare const _default: {
|
|
116
|
-
new (props: import("@atlaskit/editor-common/utils").Diff<any, WithSmartCardStorageProps>
|
|
116
|
+
new (props: import("@atlaskit/editor-common/utils").Diff<any, WithSmartCardStorageProps>): {
|
|
117
117
|
render(): React.JSX.Element;
|
|
118
118
|
context: unknown;
|
|
119
119
|
setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<import("@atlaskit/editor-common/utils").Diff<any, WithSmartCardStorageProps>>) => {} | Pick<{}, K> | null) | Pick<{}, K> | null, callback?: (() => void) | undefined): void;
|
|
@@ -6,7 +6,7 @@ export interface WithSmartCardStorageProps {
|
|
|
6
6
|
export declare const Context: React.Context<Map<string, string>>;
|
|
7
7
|
export declare const Provider: ({ children, }: React.PropsWithChildren<unknown>) => React.JSX.Element;
|
|
8
8
|
export declare const withSmartCardStorage: <Props extends WithSmartCardStorageProps>(WrappedComponent: React.ComponentType<React.PropsWithChildren<Props>>) => {
|
|
9
|
-
new (props: Diff<Props, WithSmartCardStorageProps>
|
|
9
|
+
new (props: Diff<Props, WithSmartCardStorageProps>): {
|
|
10
10
|
render(): React.JSX.Element;
|
|
11
11
|
context: unknown;
|
|
12
12
|
setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Diff<Props, WithSmartCardStorageProps>>) => {} | Pick<{}, K> | null) | Pick<{}, K> | null, callback?: (() => void) | undefined): void;
|
|
@@ -16,7 +16,7 @@ export interface InlineCardProps extends MarkDataAttributes {
|
|
|
16
16
|
url?: string;
|
|
17
17
|
}
|
|
18
18
|
declare const _default: {
|
|
19
|
-
new (props: import("@atlaskit/editor-common/utils").Diff<InlineCardProps & WithSmartCardStorageProps, WithSmartCardStorageProps>
|
|
19
|
+
new (props: import("@atlaskit/editor-common/utils").Diff<InlineCardProps & WithSmartCardStorageProps, WithSmartCardStorageProps>): {
|
|
20
20
|
render(): import("react").JSX.Element;
|
|
21
21
|
context: unknown;
|
|
22
22
|
setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<import("@atlaskit/editor-common/utils").Diff<InlineCardProps & WithSmartCardStorageProps, WithSmartCardStorageProps>>) => {} | Pick<{}, K> | null) | Pick<{}, K> | null, callback?: (() => void) | undefined): void;
|
|
@@ -113,7 +113,7 @@ export declare class TableProcessor extends React.Component<TableProps & Overflo
|
|
|
113
113
|
private addNumberColumnIndexes;
|
|
114
114
|
}
|
|
115
115
|
declare const _default: {
|
|
116
|
-
new (props: import("@atlaskit/editor-common/utils").Diff<any, WithSmartCardStorageProps>
|
|
116
|
+
new (props: import("@atlaskit/editor-common/utils").Diff<any, WithSmartCardStorageProps>): {
|
|
117
117
|
render(): React.JSX.Element;
|
|
118
118
|
context: unknown;
|
|
119
119
|
setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<import("@atlaskit/editor-common/utils").Diff<any, WithSmartCardStorageProps>>) => {} | Pick<{}, K> | null) | Pick<{}, K> | null, callback?: (() => void) | undefined): void;
|
|
@@ -6,7 +6,7 @@ export interface WithSmartCardStorageProps {
|
|
|
6
6
|
export declare const Context: React.Context<Map<string, string>>;
|
|
7
7
|
export declare const Provider: ({ children, }: React.PropsWithChildren<unknown>) => React.JSX.Element;
|
|
8
8
|
export declare const withSmartCardStorage: <Props extends WithSmartCardStorageProps>(WrappedComponent: React.ComponentType<React.PropsWithChildren<Props>>) => {
|
|
9
|
-
new (props: Diff<Props, WithSmartCardStorageProps>
|
|
9
|
+
new (props: Diff<Props, WithSmartCardStorageProps>): {
|
|
10
10
|
render(): React.JSX.Element;
|
|
11
11
|
context: unknown;
|
|
12
12
|
setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: Readonly<Diff<Props, WithSmartCardStorageProps>>) => {} | Pick<{}, K> | null) | Pick<{}, K> | null, callback?: (() => void) | undefined): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/renderer",
|
|
3
|
-
"version": "125.1.
|
|
3
|
+
"version": "125.1.1",
|
|
4
4
|
"description": "Renderer component",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"@atlaskit/feature-gate-js-client": "^5.5.0",
|
|
41
41
|
"@atlaskit/icon": "^29.3.0",
|
|
42
42
|
"@atlaskit/link": "^3.3.0",
|
|
43
|
-
"@atlaskit/link-datasource": "^4.
|
|
43
|
+
"@atlaskit/link-datasource": "^4.31.0",
|
|
44
44
|
"@atlaskit/link-extractors": "^2.4.0",
|
|
45
45
|
"@atlaskit/linking-common": "^9.9.0",
|
|
46
46
|
"@atlaskit/media-card": "^79.12.0",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"@atlaskit/status": "^3.0.0",
|
|
58
58
|
"@atlaskit/task-decision": "^19.2.0",
|
|
59
59
|
"@atlaskit/theme": "^21.0.0",
|
|
60
|
-
"@atlaskit/tmp-editor-statsig": "^16.
|
|
60
|
+
"@atlaskit/tmp-editor-statsig": "^16.8.0",
|
|
61
61
|
"@atlaskit/tokens": "^9.1.0",
|
|
62
62
|
"@atlaskit/tooltip": "^20.11.0",
|
|
63
63
|
"@atlaskit/visually-hidden": "^3.0.0",
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
"uuid": "^3.1.0"
|
|
72
72
|
},
|
|
73
73
|
"peerDependencies": {
|
|
74
|
-
"@atlaskit/editor-common": "^111.
|
|
74
|
+
"@atlaskit/editor-common": "^111.5.0",
|
|
75
75
|
"@atlaskit/link-provider": "^4.1.0",
|
|
76
76
|
"@atlaskit/media-core": "^37.0.0",
|
|
77
77
|
"react": "^18.2.0",
|