@atlaskit/editor-plugin-highlight 10.0.10 → 10.0.11

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,11 @@
1
1
  # @atlaskit/editor-plugin-highlight
2
2
 
3
+ ## 10.0.11
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
3
9
  ## 10.0.10
4
10
 
5
11
  ### Patch Changes
@@ -0,0 +1,38 @@
1
+ /**
2
+ * Testing structured MCP docs for review — ignore this file.
3
+ * Contact #dst-structured-content in Slack with questions.
4
+ */
5
+
6
+ import path from 'path';
7
+
8
+
9
+ import type { ComponentStructuredContentSource } from '@atlassian/structured-docs-types';
10
+
11
+ import packageJson from './package.json';
12
+
13
+ const packagePath = path.resolve(__dirname);
14
+
15
+ const documentation: ComponentStructuredContentSource[] = [
16
+ {
17
+ name: 'EditorPluginHighlight',
18
+ description: 'Highlight plugin for @atlaskit/editor-core',
19
+ status: 'general-availability',
20
+ import: {
21
+ name: 'EditorPluginHighlight',
22
+ package: '@atlaskit/editor-plugin-highlight',
23
+ type: 'default',
24
+ packagePath,
25
+ packageJson,
26
+ },
27
+ usageGuidelines: [],
28
+ contentGuidelines: [],
29
+ accessibilityGuidelines: [],
30
+ keywords: ['editor', 'editor-plugin-highlight', 'atlaskit'],
31
+ categories: ['editor'],
32
+ examples: [
33
+ { name: 'Composable editor with highlighting', description: 'Highlight plugin in composable editor.', source: path.resolve(packagePath, './examples/1-composable-editor-with-highlighting.tsx') },
34
+ ],
35
+ },
36
+ ];
37
+
38
+ export default documentation;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-highlight",
3
- "version": "10.0.10",
3
+ "version": "10.0.11",
4
4
  "description": "Highlight plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -49,7 +49,7 @@
49
49
  "@atlaskit/icon": "^34.3.0",
50
50
  "@atlaskit/platform-feature-flags": "^1.1.0",
51
51
  "@atlaskit/primitives": "^19.0.0",
52
- "@atlaskit/tmp-editor-statsig": "^72.0.0",
52
+ "@atlaskit/tmp-editor-statsig": "^73.0.0",
53
53
  "@atlaskit/tokens": "^13.0.0",
54
54
  "@babel/runtime": "^7.0.0",
55
55
  "@emotion/react": "^11.7.1"
@@ -113,6 +113,7 @@
113
113
  }
114
114
  },
115
115
  "devDependencies": {
116
+ "@atlassian/structured-docs-types": "workspace:^",
116
117
  "react-intl": "^6.6.2"
117
118
  }
118
119
  }