@atlaskit/editor-plugin-placeholder-text 1.9.2 → 1.10.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 CHANGED
@@ -1,5 +1,23 @@
1
1
  # @atlaskit/editor-plugin-placeholder-text
2
2
 
3
+ ## 1.10.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
9
+ ## 1.10.0
10
+
11
+ ### Minor Changes
12
+
13
+ - [#109060](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/109060)
14
+ [`4660ec858a305`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/4660ec858a305) -
15
+ Update `React` from v16 to v18
16
+
17
+ ### Patch Changes
18
+
19
+ - Updated dependencies
20
+
3
21
  ## 1.9.2
4
22
 
5
23
  ### Patch Changes
@@ -9,8 +9,12 @@ export interface PlaceholderTextPluginState {
9
9
  showInsertPanelAt: number | null;
10
10
  allowInserting: boolean;
11
11
  }
12
+ export type PlaceholderTextPluginDependencies = [
13
+ OptionalPlugin<typeof analyticsPlugin>,
14
+ OptionalPlugin<TypeAheadPlugin>
15
+ ];
12
16
  export type PlaceholderTextPlugin = NextEditorPlugin<'placeholderText', {
13
- dependencies: [OptionalPlugin<typeof analyticsPlugin>, OptionalPlugin<TypeAheadPlugin>];
17
+ dependencies: PlaceholderTextPluginDependencies;
14
18
  pluginConfiguration: PlaceholderTextOptions;
15
19
  sharedState: PlaceholderTextPluginState | undefined;
16
20
  actions: {
@@ -9,11 +9,12 @@ export interface PlaceholderTextPluginState {
9
9
  showInsertPanelAt: number | null;
10
10
  allowInserting: boolean;
11
11
  }
12
+ export type PlaceholderTextPluginDependencies = [
13
+ OptionalPlugin<typeof analyticsPlugin>,
14
+ OptionalPlugin<TypeAheadPlugin>
15
+ ];
12
16
  export type PlaceholderTextPlugin = NextEditorPlugin<'placeholderText', {
13
- dependencies: [
14
- OptionalPlugin<typeof analyticsPlugin>,
15
- OptionalPlugin<TypeAheadPlugin>
16
- ];
17
+ dependencies: PlaceholderTextPluginDependencies;
17
18
  pluginConfiguration: PlaceholderTextOptions;
18
19
  sharedState: PlaceholderTextPluginState | undefined;
19
20
  actions: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-placeholder-text",
3
- "version": "1.9.2",
3
+ "version": "1.10.1",
4
4
  "description": "placeholder text plugin for @atlaskit/editor-core",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -27,14 +27,14 @@
27
27
  },
28
28
  "dependencies": {
29
29
  "@atlaskit/adf-schema": "^46.1.0",
30
- "@atlaskit/editor-common": "^99.0.0",
31
- "@atlaskit/editor-plugin-analytics": "^1.10.0",
32
- "@atlaskit/editor-plugin-type-ahead": "^1.11.0",
30
+ "@atlaskit/editor-common": "^99.9.0",
31
+ "@atlaskit/editor-plugin-analytics": "^1.11.0",
32
+ "@atlaskit/editor-plugin-type-ahead": "^1.12.0",
33
33
  "@atlaskit/editor-prosemirror": "6.2.1",
34
34
  "@atlaskit/editor-shared-styles": "^3.2.0",
35
- "@atlaskit/icon": "^23.3.0",
36
- "@atlaskit/theme": "^14.0.0",
37
- "@atlaskit/tokens": "^3.0.0",
35
+ "@atlaskit/icon": "^23.7.0",
36
+ "@atlaskit/theme": "^15.0.0",
37
+ "@atlaskit/tokens": "^3.3.0",
38
38
  "@babel/runtime": "^7.0.0",
39
39
  "@emotion/react": "^11.7.1"
40
40
  },
@@ -45,11 +45,11 @@
45
45
  },
46
46
  "devDependencies": {
47
47
  "@af/visual-regression": "*",
48
- "@atlaskit/analytics-next": "^10.2.0",
49
- "@atlaskit/editor-plugin-floating-toolbar": "^1.14.0",
48
+ "@atlaskit/analytics-next": "^10.3.0",
49
+ "@atlaskit/editor-plugin-floating-toolbar": "^1.16.0",
50
50
  "@atlaskit/ssr": "*",
51
51
  "@atlaskit/visual-regression": "*",
52
- "@testing-library/react": "^12.1.5",
52
+ "@testing-library/react": "^13.4.0",
53
53
  "typescript": "~5.4.2",
54
54
  "wait-for-expect": "^1.2.0"
55
55
  },