@atlaskit/editor-plugin-toolbar-lists-indentation 0.2.0 → 0.2.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-toolbar-lists-indentation
2
2
 
3
+ ## 0.2.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#56790](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/56790) [`ff577a7969d4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ff577a7969d4) - ED-21266: Updated @atlaskit/adf-schema to 34.0.1
8
+
3
9
  ## 0.2.0
4
10
 
5
11
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-toolbar-lists-indentation",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Toolbar lists and indentation plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -51,7 +51,7 @@
51
51
  "devDependencies": {
52
52
  "@af/integration-testing": "*",
53
53
  "@af/visual-regression": "*",
54
- "@atlaskit/adf-schema": "^34.0.0",
54
+ "@atlaskit/adf-schema": "^34.0.1",
55
55
  "@atlaskit/analytics-next": "^9.1.0",
56
56
  "@atlaskit/editor-plugin-base": "^0.2.0",
57
57
  "@atlaskit/editor-plugin-text-formatting": "^0.4.0",
@@ -1,40 +0,0 @@
1
- ## API Report File for "@atlaskit/editor-plugin-toolbar-lists-indentation"
2
-
3
- > Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
4
-
5
- ```ts
6
-
7
- /// <reference types="react" />
8
-
9
- import type { AnalyticsPlugin } from '@atlaskit/editor-plugin-analytics';
10
- import type { FeatureFlagsPlugin } from '@atlaskit/editor-plugin-feature-flags';
11
- import type { IndentationPlugin } from '@atlaskit/editor-plugin-indentation';
12
- import type { ListPlugin } from '@atlaskit/editor-plugin-list';
13
- import type { NextEditorPlugin } from '@atlaskit/editor-common/types';
14
- import type { OptionalPlugin } from '@atlaskit/editor-common/types';
15
- import type { TasksAndDecisionsPlugin } from '@atlaskit/editor-plugin-tasks-and-decisions';
16
-
17
- // @public (undocumented)
18
- type Config = {
19
- showIndentationButtons: boolean;
20
- allowHeadingAndParagraphIndentation: boolean;
21
- };
22
-
23
- // @public (undocumented)
24
- export type ToolbarListsIndentationPlugin = NextEditorPlugin<'toolbarListsIndentation', {
25
- pluginConfiguration: Config;
26
- dependencies: [
27
- OptionalPlugin<FeatureFlagsPlugin>,
28
- ListPlugin,
29
- OptionalPlugin<IndentationPlugin>,
30
- OptionalPlugin<TasksAndDecisionsPlugin>,
31
- OptionalPlugin<AnalyticsPlugin>
32
- ];
33
- }>;
34
-
35
- // @public (undocumented)
36
- export const toolbarListsIndentationPlugin: ToolbarListsIndentationPlugin;
37
-
38
- // (No @packageDocumentation comment for this package)
39
-
40
- ```