@atlaskit/editor-plugin-limited-mode 3.2.0 → 4.0.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,20 @@
1
1
  # @atlaskit/editor-plugin-limited-mode
2
2
 
3
+ ## 4.0.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [`e0bc30ca14a41`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/e0bc30ca14a41) -
8
+ EDITOR-4465 - Add killSwitchEnabled option to disable performance/limited mode via Statsig
9
+ configuration.
10
+ - Updated dependencies
11
+
12
+ ## 4.0.0
13
+
14
+ ### Patch Changes
15
+
16
+ - Updated dependencies
17
+
3
18
  ## 3.2.0
4
19
 
5
20
  ### Minor Changes
@@ -1,5 +1,5 @@
1
1
  {
2
- "extends": "../../../../tsconfig.entry-points.confluence.json",
2
+ "extends": "../../../../tsconfig.local-consumption.json",
3
3
  "compilerOptions": {
4
4
  "target": "es5",
5
5
  "outDir": "../../../../../confluence/tsDist/@atlaskit__editor-plugin-limited-mode",
@@ -1,5 +1,5 @@
1
1
  {
2
- "extends": "../../../../tsconfig.entry-points.products.json",
2
+ "extends": "../../../../tsconfig.local-consumption.json",
3
3
  "compilerOptions": {
4
4
  "target": "es5",
5
5
  "outDir": "../../../../../tsDist/@atlaskit__editor-plugin-limited-mode/app",
@@ -13,6 +13,7 @@ export type LimitedModePlugin = NextEditorPlugin<'limitedMode', {
13
13
  }>;
14
14
  export type LimitedModePluginOptions = {
15
15
  contentId?: string;
16
+ killSwitchEnabled?: boolean;
16
17
  showFlag?: (props: {
17
18
  close: string;
18
19
  description: React.ReactNode;
@@ -13,6 +13,7 @@ export type LimitedModePlugin = NextEditorPlugin<'limitedMode', {
13
13
  }>;
14
14
  export type LimitedModePluginOptions = {
15
15
  contentId?: string;
16
+ killSwitchEnabled?: boolean;
16
17
  showFlag?: (props: {
17
18
  close: string;
18
19
  description: React.ReactNode;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-limited-mode",
3
- "version": "3.2.0",
3
+ "version": "4.0.1",
4
4
  "description": "LimitedMode plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -30,14 +30,14 @@
30
30
  "dependencies": {
31
31
  "@atlaskit/editor-prosemirror": "^7.2.0",
32
32
  "@atlaskit/platform-feature-flags": "^1.1.0",
33
- "@atlaskit/primitives": "^17.0.0",
34
- "@atlaskit/tmp-editor-statsig": "^16.2.0",
33
+ "@atlaskit/primitives": "^17.1.0",
34
+ "@atlaskit/tmp-editor-statsig": "^16.26.0",
35
35
  "@babel/runtime": "^7.0.0",
36
36
  "bind-event-listener": "^3.0.0",
37
37
  "react-intl-next": "npm:react-intl@^5.18.1"
38
38
  },
39
39
  "peerDependencies": {
40
- "@atlaskit/editor-common": "^110.49.0",
40
+ "@atlaskit/editor-common": "^111.8.0",
41
41
  "react": "^18.2.0"
42
42
  },
43
43
  "devDependencies": {
@@ -1,17 +0,0 @@
1
- {
2
- "extends": "../tsconfig",
3
- "compilerOptions": {
4
- "target": "es5",
5
- "paths": {}
6
- },
7
- "include": [
8
- "../src/**/*.ts",
9
- "../src/**/*.tsx"
10
- ],
11
- "exclude": [
12
- "../src/**/__tests__/*",
13
- "../src/**/*.test.*",
14
- "../src/**/test.*",
15
- "../src/**/examples.*"
16
- ]
17
- }