@atlaskit/editor-plugin-placeholder-text 0.1.2 → 0.1.4
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 +12 -0
- package/package.json +4 -4
- package/tmp/api-report-tmp.d.ts +0 -49
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-placeholder-text
|
|
2
2
|
|
|
3
|
+
## 0.1.4
|
|
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
|
+
|
|
9
|
+
## 0.1.3
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#43417](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43417) [`3f3c17f0273`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3f3c17f0273) - ED-20971 Upgrade adf-schema package to ^34.0.0
|
|
14
|
+
|
|
3
15
|
## 0.1.2
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-placeholder-text",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "placeholder text plugin for @atlaskit/editor-core",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -20,15 +20,15 @@
|
|
|
20
20
|
"releaseModel": "continuous"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@atlaskit/adf-schema": "^
|
|
24
|
-
"@atlaskit/editor-common": "^76.
|
|
23
|
+
"@atlaskit/adf-schema": "^34.0.1",
|
|
24
|
+
"@atlaskit/editor-common": "^76.23.0",
|
|
25
25
|
"@atlaskit/editor-plugin-analytics": "^0.3.0",
|
|
26
26
|
"@atlaskit/editor-plugin-type-ahead": "^0.7.0",
|
|
27
27
|
"@atlaskit/editor-prosemirror": "1.1.0",
|
|
28
28
|
"@atlaskit/editor-shared-styles": "^2.8.0",
|
|
29
29
|
"@atlaskit/icon": "^22.0.0",
|
|
30
30
|
"@atlaskit/theme": "^12.6.0",
|
|
31
|
-
"@atlaskit/tokens": "^1.
|
|
31
|
+
"@atlaskit/tokens": "^1.29.0",
|
|
32
32
|
"@babel/runtime": "^7.0.0",
|
|
33
33
|
"@emotion/react": "^11.7.1"
|
|
34
34
|
},
|
package/tmp/api-report-tmp.d.ts
DELETED
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
## API Report File for "@atlaskit/editor-plugin-placeholder-text"
|
|
2
|
-
|
|
3
|
-
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
|
|
4
|
-
|
|
5
|
-
```ts
|
|
6
|
-
|
|
7
|
-
import type { analyticsPlugin } from '@atlaskit/editor-plugin-analytics';
|
|
8
|
-
import type { EditorState } from '@atlaskit/editor-prosemirror/state';
|
|
9
|
-
import type { NextEditorPlugin } from '@atlaskit/editor-common/types';
|
|
10
|
-
import type { OptionalPlugin } from '@atlaskit/editor-common/types';
|
|
11
|
-
import type { Transaction } from '@atlaskit/editor-prosemirror/state';
|
|
12
|
-
import type { TypeAheadPlugin } from '@atlaskit/editor-plugin-type-ahead';
|
|
13
|
-
|
|
14
|
-
// @public (undocumented)
|
|
15
|
-
export interface PlaceholderTextOptions {
|
|
16
|
-
// (undocumented)
|
|
17
|
-
allowInserting?: boolean;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
// @public (undocumented)
|
|
21
|
-
export type PlaceholderTextPlugin = NextEditorPlugin<'placeholderText', {
|
|
22
|
-
dependencies: [
|
|
23
|
-
OptionalPlugin<typeof analyticsPlugin>,
|
|
24
|
-
OptionalPlugin<TypeAheadPlugin>
|
|
25
|
-
];
|
|
26
|
-
pluginConfiguration: PlaceholderTextOptions;
|
|
27
|
-
sharedState: PlaceholderTextPluginState | undefined;
|
|
28
|
-
actions: {
|
|
29
|
-
showPlaceholderFloatingToolbar: typeof showPlaceholderFloatingToolbar;
|
|
30
|
-
};
|
|
31
|
-
}>;
|
|
32
|
-
|
|
33
|
-
// @public (undocumented)
|
|
34
|
-
export const placeholderTextPlugin: PlaceholderTextPlugin;
|
|
35
|
-
|
|
36
|
-
// @public (undocumented)
|
|
37
|
-
export interface PlaceholderTextPluginState {
|
|
38
|
-
// (undocumented)
|
|
39
|
-
allowInserting: boolean;
|
|
40
|
-
// (undocumented)
|
|
41
|
-
showInsertPanelAt: null | number;
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
// @public (undocumented)
|
|
45
|
-
const showPlaceholderFloatingToolbar: (state: EditorState, dispatch: (tr: Transaction) => void) => boolean;
|
|
46
|
-
|
|
47
|
-
// (No @packageDocumentation comment for this package)
|
|
48
|
-
|
|
49
|
-
```
|