@atlaskit/editor-toolbar 0.0.9 → 0.0.10
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 +9 -0
- package/dist/cjs/ui/Toolbar.compiled.css +1 -0
- package/dist/cjs/ui/Toolbar.js +1 -1
- package/dist/es2019/ui/Toolbar.compiled.css +1 -0
- package/dist/es2019/ui/Toolbar.js +1 -1
- package/dist/esm/ui/Toolbar.compiled.css +1 -0
- package/dist/esm/ui/Toolbar.js +1 -1
- package/package.json +1 -1
- package/src/ui/Toolbar.tsx +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @atlaskit/editor-toolbar
|
|
2
2
|
|
|
3
|
+
## 0.0.10
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#197019](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/197019)
|
|
8
|
+
[`96717455eea97`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/96717455eea97) -
|
|
9
|
+
Add background colour to Toolbar component in editor-toolbar, add EditorToolbarProvider to the
|
|
10
|
+
selection Toolbar
|
|
11
|
+
|
|
3
12
|
## 0.0.9
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
package/dist/cjs/ui/Toolbar.js
CHANGED
|
@@ -11,7 +11,7 @@ var _runtime = require("@compiled/react/runtime");
|
|
|
11
11
|
var _react = _interopRequireDefault(require("react"));
|
|
12
12
|
var _compiled = require("@atlaskit/primitives/compiled");
|
|
13
13
|
var styles = {
|
|
14
|
-
toolbar: "_2rkoi2wt _u5f31b66 _19bv1b66 _16qs1cd0 _4t3i14no _1bsb184x _1e0c1txw _4cvr1h6o"
|
|
14
|
+
toolbar: "_2rkoi2wt _bfhkvuon _u5f31b66 _19bv1b66 _16qs1cd0 _4t3i14no _1bsb184x _1e0c1txw _4cvr1h6o"
|
|
15
15
|
};
|
|
16
16
|
var Toolbar = exports.Toolbar = function Toolbar(_ref) {
|
|
17
17
|
var children = _ref.children,
|
|
@@ -4,7 +4,7 @@ import { ax, ix } from "@compiled/react/runtime";
|
|
|
4
4
|
import React from 'react';
|
|
5
5
|
import { Box } from '@atlaskit/primitives/compiled';
|
|
6
6
|
const styles = {
|
|
7
|
-
toolbar: "_2rkoi2wt _u5f31b66 _19bv1b66 _16qs1cd0 _4t3i14no _1bsb184x _1e0c1txw _4cvr1h6o"
|
|
7
|
+
toolbar: "_2rkoi2wt _bfhkvuon _u5f31b66 _19bv1b66 _16qs1cd0 _4t3i14no _1bsb184x _1e0c1txw _4cvr1h6o"
|
|
8
8
|
};
|
|
9
9
|
export const Toolbar = ({
|
|
10
10
|
children,
|
package/dist/esm/ui/Toolbar.js
CHANGED
|
@@ -4,7 +4,7 @@ import { ax, ix } from "@compiled/react/runtime";
|
|
|
4
4
|
import React from 'react';
|
|
5
5
|
import { Box } from '@atlaskit/primitives/compiled';
|
|
6
6
|
var styles = {
|
|
7
|
-
toolbar: "_2rkoi2wt _u5f31b66 _19bv1b66 _16qs1cd0 _4t3i14no _1bsb184x _1e0c1txw _4cvr1h6o"
|
|
7
|
+
toolbar: "_2rkoi2wt _bfhkvuon _u5f31b66 _19bv1b66 _16qs1cd0 _4t3i14no _1bsb184x _1e0c1txw _4cvr1h6o"
|
|
8
8
|
};
|
|
9
9
|
export var Toolbar = function Toolbar(_ref) {
|
|
10
10
|
var children = _ref.children,
|
package/package.json
CHANGED
package/src/ui/Toolbar.tsx
CHANGED