@atlaskit/editor-core 193.24.0 → 193.24.15
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/.eslintrc.js +37 -37
- package/CHANGELOG.md +17424 -17539
- package/architecture/0001-record-architecture-decisions.md +6 -3
- package/architecture/0002-deep-equality-check-for-getsharedstate.md +9 -8
- package/architecture/0003-explicit-plugin-dependencies.md +47 -18
- package/codemods/140.0.0-rc-kraken-fix-type-errors.ts +1 -3
- package/codemods/145.0.0-deprecate-props.ts +1 -3
- package/codemods/172.0.0-transform-smartlinks-prop.ts +1 -3
- package/codemods/175.0.0-rename-unsafe-allowUndoRedoButton-prop.ts +1 -1
- package/codemods/180.1.0-update-to-editor-migration-component.ts +1 -3
- package/codemods/__tests__/next-remove-allow-more-text-colors-prop.ts +29 -31
- package/codemods/__tests__/remove-config-panel-width-prop.ts +29 -31
- package/codemods/__tests__/rename-editor-to-editor-migration-component.ts +43 -45
- package/codemods/__tests__/rename-smartlinks-prop.ts +57 -59
- package/codemods/__tests__/rename-unsafe-allowUndoRedoButtons-prop.ts +43 -43
- package/codemods/__tests__/rename-unsafe-cards-prop.ts +43 -45
- package/codemods/migrates/next-remove-allow-more-text-colors-prop.ts +41 -45
- package/codemods/migrates/remove-config-panel-width-prop.ts +20 -29
- package/codemods/migrates/rename-editor-to-editor-migration-component.ts +20 -24
- package/codemods/migrates/rename-smartlinks-prop.ts +30 -38
- package/codemods/migrates/rename-unsafe-allowUndoRedoButtons-prop.ts +4 -5
- package/codemods/migrates/rename-unsafe-cards-prop.ts +1 -4
- package/codemods/utils.ts +62 -72
- package/dist/cjs/ui/Appearance/Comment/Toolbar.js +3 -3
- package/dist/cjs/ui/AppearanceComponents/Mobile.js +5 -5
- package/dist/cjs/ui/ContentStyles/ai-panels.js +1 -1
- package/dist/cjs/ui/ContentStyles/code-block.js +2 -2
- package/dist/cjs/ui/ContentStyles/date.js +1 -1
- package/dist/cjs/ui/ContentStyles/expand.js +1 -1
- package/dist/cjs/ui/ContentStyles/extension.js +2 -2
- package/dist/cjs/ui/ContentStyles/index.js +6 -6
- package/dist/cjs/ui/ContentStyles/layout.js +1 -1
- package/dist/cjs/ui/ContentStyles/media.js +1 -1
- package/dist/cjs/ui/ContentStyles/panel.js +1 -1
- package/dist/cjs/ui/ContentStyles/status.js +1 -1
- package/dist/cjs/ui/ContentStyles/tasks-and-decisions.js +1 -1
- package/dist/cjs/utils/extensions.js +5 -5
- package/dist/cjs/version-wrapper.js +1 -1
- package/dist/es2019/ui/Appearance/Comment/Toolbar.js +40 -40
- package/dist/es2019/ui/AppearanceComponents/Mobile.js +5 -5
- package/dist/es2019/ui/ContentStyles/ai-panels.js +80 -80
- package/dist/es2019/ui/ContentStyles/code-block.js +58 -58
- package/dist/es2019/ui/ContentStyles/date.js +19 -19
- package/dist/es2019/ui/ContentStyles/expand.js +98 -98
- package/dist/es2019/ui/ContentStyles/extension.js +154 -159
- package/dist/es2019/ui/ContentStyles/index.js +139 -144
- package/dist/es2019/ui/ContentStyles/layout.js +125 -125
- package/dist/es2019/ui/ContentStyles/media.js +179 -178
- package/dist/es2019/ui/ContentStyles/panel.js +29 -30
- package/dist/es2019/ui/ContentStyles/status.js +30 -32
- package/dist/es2019/ui/ContentStyles/tasks-and-decisions.js +18 -19
- package/dist/es2019/utils/extensions.js +5 -5
- package/dist/es2019/version-wrapper.js +1 -1
- package/dist/esm/ui/Appearance/Comment/Toolbar.js +3 -3
- package/dist/esm/ui/AppearanceComponents/Mobile.js +5 -5
- package/dist/esm/ui/ContentStyles/ai-panels.js +1 -1
- package/dist/esm/ui/ContentStyles/code-block.js +2 -2
- package/dist/esm/ui/ContentStyles/date.js +1 -1
- package/dist/esm/ui/ContentStyles/expand.js +1 -1
- package/dist/esm/ui/ContentStyles/extension.js +2 -2
- package/dist/esm/ui/ContentStyles/index.js +6 -6
- package/dist/esm/ui/ContentStyles/layout.js +1 -1
- package/dist/esm/ui/ContentStyles/media.js +1 -1
- package/dist/esm/ui/ContentStyles/panel.js +1 -1
- package/dist/esm/ui/ContentStyles/status.js +1 -1
- package/dist/esm/ui/ContentStyles/tasks-and-decisions.js +1 -1
- package/dist/esm/utils/extensions.js +5 -5
- package/dist/esm/version-wrapper.js +1 -1
- package/dist/types/composable-editor/editor.d.ts +1 -1
- package/dist/types/composable-editor/hooks/useProviders.d.ts +1 -1
- package/dist/types/create-editor/create-preset.d.ts +137 -11
- package/dist/types/create-editor/sort-by-order.d.ts +1 -1
- package/dist/types/event-dispatcher/index.d.ts +2 -2
- package/dist/types/index.d.ts +2 -2
- package/dist/types/presets/default.d.ts +122 -10
- package/dist/types/presets/universal.d.ts +137 -11
- package/dist/types/presets/useUniversalPreset.d.ts +137 -11
- package/dist/types/test-utils.d.ts +1 -1
- package/dist/types/types/browser.d.ts +1 -1
- package/dist/types/types/editor-plugin.d.ts +1 -1
- package/dist/types/types/empty-state-handler.d.ts +1 -1
- package/dist/types/types/feature-flags.d.ts +1 -1
- package/dist/types/types/index.d.ts +3 -3
- package/dist/types/types/pm-config.d.ts +1 -1
- package/dist/types/types/ui-components.d.ts +1 -1
- package/dist/types/ui/Addon/ClickAreaBlock/index.d.ts +1 -1
- package/dist/types/ui/Toolbar/types.d.ts +1 -1
- package/dist/types/utils/action.d.ts +1 -4
- package/dist/types/utils/performance/plugin-performance-report.d.ts +1 -1
- package/dist/types/utils/slice.d.ts +1 -1
- package/dist/types-ts4.5/composable-editor/editor.d.ts +1 -1
- package/dist/types-ts4.5/composable-editor/hooks/useProviders.d.ts +1 -1
- package/dist/types-ts4.5/create-editor/create-preset.d.ts +155 -11
- package/dist/types-ts4.5/create-editor/sort-by-order.d.ts +1 -1
- package/dist/types-ts4.5/event-dispatcher/index.d.ts +2 -2
- package/dist/types-ts4.5/index.d.ts +2 -2
- package/dist/types-ts4.5/presets/default.d.ts +138 -10
- package/dist/types-ts4.5/presets/universal.d.ts +155 -11
- package/dist/types-ts4.5/presets/useUniversalPreset.d.ts +155 -11
- package/dist/types-ts4.5/test-utils.d.ts +1 -1
- package/dist/types-ts4.5/types/browser.d.ts +1 -1
- package/dist/types-ts4.5/types/editor-plugin.d.ts +1 -1
- package/dist/types-ts4.5/types/empty-state-handler.d.ts +1 -1
- package/dist/types-ts4.5/types/feature-flags.d.ts +1 -1
- package/dist/types-ts4.5/types/index.d.ts +3 -3
- package/dist/types-ts4.5/types/pm-config.d.ts +1 -1
- package/dist/types-ts4.5/types/ui-components.d.ts +1 -1
- package/dist/types-ts4.5/ui/Addon/ClickAreaBlock/index.d.ts +1 -1
- package/dist/types-ts4.5/ui/Toolbar/types.d.ts +1 -1
- package/dist/types-ts4.5/utils/performance/plugin-performance-report.d.ts +1 -1
- package/dist/types-ts4.5/utils/slice.d.ts +1 -1
- package/docs/0-intro.tsx +13 -19
- package/docs/1-legacy-editor.tsx +13 -19
- package/docs/4-annotations.tsx +222 -223
- package/package.json +28 -20
- package/report.api.md +448 -473
|
@@ -4,73 +4,73 @@ import { CodeBlockSharedCssClassName, codeBlockSharedStyles } from '@atlaskit/ed
|
|
|
4
4
|
import { akEditorDeleteBackground, akEditorDeleteBorder, akEditorDeleteIconColor, akEditorSelectedBorderSize, akEditorSelectedNodeClassName, blockNodesVerticalMargin, getSelectionStyles, SelectionStyle } from '@atlaskit/editor-shared-styles';
|
|
5
5
|
import { R75 } from '@atlaskit/theme/colors';
|
|
6
6
|
const GutterDangerOverlay = () => css`
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
7
|
+
&::after {
|
|
8
|
+
height: 100%;
|
|
9
|
+
content: '';
|
|
10
|
+
position: absolute;
|
|
11
|
+
left: 0;
|
|
12
|
+
top: 0;
|
|
13
|
+
width: 24px;
|
|
14
|
+
background-color: ${"var(--ds-blanket-danger, none)"};
|
|
15
|
+
}
|
|
16
16
|
`;
|
|
17
17
|
export const codeBlockStyles = () => css`
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
18
|
+
.ProseMirror {
|
|
19
|
+
${codeBlockSharedStyles()}
|
|
20
|
+
}
|
|
21
21
|
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
22
|
+
.ProseMirror li {
|
|
23
|
+
/* if same list item has multiple code blocks we need top margin for all but first */
|
|
24
|
+
> .code-block {
|
|
25
|
+
margin: ${blockNodesVerticalMargin} 0 0 0;
|
|
26
|
+
}
|
|
27
|
+
> .code-block:first-child,
|
|
28
|
+
> .ProseMirror-gapcursor:first-child + .code-block {
|
|
29
|
+
margin-top: 0;
|
|
30
|
+
}
|
|
31
31
|
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
32
|
+
> div:last-of-type.code-block {
|
|
33
|
+
margin-bottom: ${blockNodesVerticalMargin};
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
36
|
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
37
|
+
.ProseMirror .code-block.${akEditorSelectedNodeClassName}:not(.danger) {
|
|
38
|
+
${getSelectionStyles([SelectionStyle.BoxShadow, SelectionStyle.Blanket])}
|
|
39
|
+
}
|
|
40
40
|
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
41
|
+
/* Danger when top level node */
|
|
42
|
+
.ProseMirror .danger.code-block {
|
|
43
|
+
box-shadow: 0 0 0 ${akEditorSelectedBorderSize}px
|
|
44
|
+
${`var(--ds-border-danger, ${akEditorDeleteBorder})`};
|
|
45
45
|
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
46
|
+
.${CodeBlockSharedCssClassName.CODEBLOCK_LINE_NUMBER_GUTTER} {
|
|
47
|
+
background-color: ${`var(--ds-background-danger, ${R75})`};
|
|
48
|
+
color: ${`var(--ds-text-danger, ${akEditorDeleteIconColor})`};
|
|
49
|
+
${GutterDangerOverlay()};
|
|
50
|
+
}
|
|
51
51
|
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
52
|
+
.${CodeBlockSharedCssClassName.CODEBLOCK_CONTENT} {
|
|
53
|
+
background-color: ${`var(--ds-blanket-danger, ${akEditorDeleteBackground})`};
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
56
|
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
57
|
+
/* Danger when nested node */
|
|
58
|
+
.ProseMirror .danger .code-block {
|
|
59
|
+
.${CodeBlockSharedCssClassName.CODEBLOCK_LINE_NUMBER_GUTTER} {
|
|
60
|
+
background-color: ${"var(--ds-background-danger, rgba(255, 143, 115, 0.5))"};
|
|
61
|
+
color: ${`var(--ds-text-danger, ${akEditorDeleteIconColor})`};
|
|
62
|
+
${GutterDangerOverlay()};
|
|
63
|
+
}
|
|
64
64
|
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
65
|
+
.${CodeBlockSharedCssClassName.CODEBLOCK_CONTENT} {
|
|
66
|
+
background-color: ${"var(--ds-blanket-danger, rgba(255, 189, 173, 0.5))"};
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
69
|
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
70
|
+
/* When code-block is inside the panel */
|
|
71
|
+
.ak-editor-panel__content {
|
|
72
|
+
> .code-block:first-child {
|
|
73
|
+
margin: 0 0 0 0 !important;
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
76
|
`;
|
|
@@ -3,25 +3,25 @@ import { DateSharedCssClassName } from '@atlaskit/editor-common/styles';
|
|
|
3
3
|
import { akEditorDeleteBorder, akEditorSelectedBorderSize, akEditorSelectedNodeClassName, getSelectionStyles, SelectionStyle } from '@atlaskit/editor-shared-styles';
|
|
4
4
|
// eslint-disable-next-line @atlaskit/design-system/no-css-tagged-template-expression -- Needs manual remediation
|
|
5
5
|
export const dateStyles = css`
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
6
|
+
.${DateSharedCssClassName.DATE_CONTAINER} {
|
|
7
|
+
.${DateSharedCssClassName.DATE_WRAPPER} {
|
|
8
|
+
line-height: initial;
|
|
9
|
+
cursor: pointer;
|
|
10
|
+
}
|
|
11
11
|
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
12
|
+
&.${akEditorSelectedNodeClassName} {
|
|
13
|
+
.${DateSharedCssClassName.DATE_WRAPPER} > span {
|
|
14
|
+
${getSelectionStyles([SelectionStyle.BoxShadow])}
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
18
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
19
|
+
.danger {
|
|
20
|
+
.${DateSharedCssClassName.DATE_CONTAINER}.${akEditorSelectedNodeClassName}
|
|
21
|
+
.${DateSharedCssClassName.DATE_WRAPPER}
|
|
22
|
+
> span {
|
|
23
|
+
box-shadow: 0 0 0 ${akEditorSelectedBorderSize}px
|
|
24
|
+
${`var(--ds-border-danger, ${akEditorDeleteBorder})`};
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
27
|
`;
|
|
@@ -13,109 +13,109 @@ const DANGER_STATE_BORDER_COLOR = `var(--ds-border-danger, ${R300})`;
|
|
|
13
13
|
/* eslint-disable @atlaskit/design-system/ensure-design-token-usage */
|
|
14
14
|
// eslint-disable-next-line @atlaskit/design-system/no-css-tagged-template-expression -- Needs manual remediation
|
|
15
15
|
export const expandStyles = () => css`
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
16
|
+
.${expandClassNames.icon} > div {
|
|
17
|
+
display: flex;
|
|
18
|
+
}
|
|
19
19
|
|
|
20
|
-
|
|
21
|
-
|
|
20
|
+
.${expandClassNames.prefix} {
|
|
21
|
+
${sharedExpandStyles.containerStyles({
|
|
22
22
|
expanded: false,
|
|
23
23
|
focused: false
|
|
24
24
|
})()}
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
25
|
+
overflow: hidden;
|
|
26
|
+
cursor: pointer;
|
|
27
|
+
box-sizing: border-box;
|
|
28
|
+
|
|
29
|
+
td > & {
|
|
30
|
+
margin-top: 0;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.${expandClassNames.iconContainer} svg {
|
|
34
|
+
${EXPAND_ICON_COLOR()};
|
|
35
|
+
transform: rotate(90deg);
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
&.${akEditorSelectedNodeClassName}:not(.danger) {
|
|
39
|
+
${getSelectionStyles([SelectionStyle.Blanket, SelectionStyle.Border])}
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
&.danger {
|
|
43
|
+
background: ${DANGER_STATE_BACKGROUND_COLOR};
|
|
44
|
+
border-color: ${DANGER_STATE_BORDER_COLOR};
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.ProseMirror
|
|
49
|
+
> .${expandClassNames.type('expand')},
|
|
50
|
+
.${BreakoutCssClassName.BREAKOUT_MARK_DOM}
|
|
51
|
+
> .${expandClassNames.type('expand')} {
|
|
52
|
+
margin-left: -${akLayoutGutterOffset}px;
|
|
53
|
+
margin-right: -${akLayoutGutterOffset}px;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.${expandClassNames.content} {
|
|
57
|
+
${sharedExpandStyles.contentStyles({
|
|
58
58
|
expanded: false,
|
|
59
59
|
focused: false
|
|
60
60
|
})()}
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
61
|
+
cursor: text;
|
|
62
|
+
padding-top: 0px;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.${expandClassNames.titleInput} {
|
|
66
|
+
${sharedExpandStyles.titleInputStyles()}
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.${expandClassNames.titleContainer} {
|
|
70
|
+
${sharedExpandStyles.titleContainerStyles()};
|
|
71
|
+
align-items: center;
|
|
72
|
+
overflow: visible;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.${expandClassNames.expanded} {
|
|
76
|
+
background: ${EXPAND_SELECTED_BACKGROUND};
|
|
77
|
+
border-color: ${`var(--ds-border, ${N40A})`};
|
|
78
|
+
|
|
79
|
+
.${expandClassNames.content} {
|
|
80
|
+
padding-top: ${"var(--ds-space-100, 8px)"};
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.${expandClassNames.inputContainer} {
|
|
85
|
+
width: 100%;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
/* stylelint-disable property-no-unknown, value-keyword-case */
|
|
89
|
+
.${expandClassNames.prefix}:(.${expandClassNames.expanded}) {
|
|
90
|
+
.expand-content-wrapper {
|
|
91
|
+
height: auto;
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
/* stylelint-enable property-no-unknown, value-keyword-case */
|
|
95
|
+
|
|
96
|
+
.${expandClassNames.prefix}:not(.${expandClassNames.expanded}) {
|
|
97
|
+
.ak-editor-expand__content {
|
|
98
|
+
position: absolute;
|
|
99
|
+
height: 1px;
|
|
100
|
+
width: 1px;
|
|
101
|
+
overflow: hidden;
|
|
102
|
+
clip: rect(1px, 1px, 1px, 1px);
|
|
103
|
+
white-space: nowrap;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.${expandClassNames.iconContainer} svg {
|
|
107
|
+
${EXPAND_ICON_COLOR()};
|
|
108
|
+
transform: rotate(0deg);
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
&:not(.${akEditorSelectedNodeClassName}):not(.danger) {
|
|
112
|
+
background: transparent;
|
|
113
|
+
border-color: transparent;
|
|
114
|
+
|
|
115
|
+
&:hover {
|
|
116
|
+
border-color: ${`var(--ds-border, ${N50A})`};
|
|
117
|
+
background: ${EXPAND_SELECTED_BACKGROUND};
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
121
|
`;
|