@atlaskit/editor-plugin-user-preferences 1.1.0 → 1.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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @atlaskit/editor-plugin-user-preferences
2
2
 
3
+ ## 1.1.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
3
9
  ## 1.1.0
4
10
 
5
11
  ### Minor Changes
@@ -3,7 +3,7 @@ import type { EditorCommand } from '@atlaskit/editor-common/types';
3
3
  import { type ResolvedUserPreferences, type UserPreferences, type UserPreferencesProvider } from '@atlaskit/editor-common/user-preferences';
4
4
  export declare const updateUserPreference: ({ key, value, userPreferencesProvider, editorAnalyticsApi, }: {
5
5
  key: keyof UserPreferences;
6
- value: ResolvedUserPreferences[typeof key];
7
- userPreferencesProvider?: UserPreferencesProvider;
6
+ value: "top" | "none";
7
+ userPreferencesProvider?: UserPreferencesProvider | undefined;
8
8
  editorAnalyticsApi?: EditorAnalyticsAPI | undefined;
9
9
  }) => EditorCommand;
@@ -3,7 +3,7 @@ import type { EditorCommand } from '@atlaskit/editor-common/types';
3
3
  import { type ResolvedUserPreferences, type UserPreferences, type UserPreferencesProvider } from '@atlaskit/editor-common/user-preferences';
4
4
  export declare const updateUserPreference: ({ key, value, userPreferencesProvider, editorAnalyticsApi, }: {
5
5
  key: keyof UserPreferences;
6
- value: ResolvedUserPreferences[typeof key];
7
- userPreferencesProvider?: UserPreferencesProvider;
6
+ value: "top" | "none";
7
+ userPreferencesProvider?: UserPreferencesProvider | undefined;
8
8
  editorAnalyticsApi?: EditorAnalyticsAPI | undefined;
9
9
  }) => EditorCommand;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-user-preferences",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "UserPreferences plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -34,7 +34,7 @@
34
34
  "@atlaskit/editor-plugin-analytics": "^3.0.0",
35
35
  "@atlaskit/editor-prosemirror": "7.0.0",
36
36
  "@atlaskit/platform-feature-flags": "^1.1.0",
37
- "@atlaskit/tmp-editor-statsig": "^8.8.0",
37
+ "@atlaskit/tmp-editor-statsig": "^9.0.0",
38
38
  "@babel/runtime": "^7.0.0",
39
39
  "bind-event-listener": "^3.0.0"
40
40
  },