@atlaskit/editor-toolbar 0.0.3 → 0.0.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 CHANGED
@@ -1,5 +1,13 @@
1
1
  # @atlaskit/editor-toolbar
2
2
 
3
+ ## 0.0.4
4
+
5
+ ### Patch Changes
6
+
7
+ - [#192343](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/192343)
8
+ [`9cb0878241016`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/9cb0878241016) -
9
+ ED-28736 more extensible selection extensions API
10
+
3
11
  ## 0.0.3
4
12
 
5
13
  ### Patch Changes
@@ -563,9 +563,9 @@ export const ExampleManuallyComposedToolbar = () => {
563
563
  Last action: ${lastAction || 'None'}
564
564
  Text style: ${textStyle}
565
565
  Formatting: ${Object.entries(formatting)
566
- .filter(([, value]) => value)
567
- .map(([key]) => key)
568
- .join(', ')}
566
+ .filter(([, value]) => value)
567
+ .map(([key]) => key)
568
+ .join(', ')}
569
569
  List/Align: ${listOrAlignment}
570
570
  Pinning: ${pinning}
571
571
  `}
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "registry": "https://registry.npmjs.org/"
5
5
  },
6
- "version": "0.0.3",
6
+ "version": "0.0.4",
7
7
  "description": "Common UI for Toolbars across the platform",
8
8
  "atlassian": {
9
9
  "team": "Editor"
@@ -27,11 +27,11 @@
27
27
  "@atlaskit/button": "^23.3.0",
28
28
  "@atlaskit/css": "^0.12.0",
29
29
  "@atlaskit/dropdown-menu": "^16.3.0",
30
- "@atlaskit/icon": "^27.7.0",
30
+ "@atlaskit/icon": "^27.8.0",
31
31
  "@atlaskit/icon-lab": "^5.2.0",
32
32
  "@atlaskit/logo": "^19.6.0",
33
33
  "@atlaskit/popup": "^4.3.0",
34
- "@atlaskit/primitives": "^14.10.0",
34
+ "@atlaskit/primitives": "^14.11.0",
35
35
  "@atlaskit/tokens": "^5.6.0",
36
36
  "@atlaskit/tooltip": "^20.4.0",
37
37
  "@babel/runtime": "^7.0.0",
package/src/index.ts CHANGED
@@ -5,6 +5,7 @@ export { ToolbarDropdownItem } from './ui/ToolbarDropdownItem';
5
5
  export { ToolbarDropdownMenu } from './ui/ToolbarDropdownMenu';
6
6
  export { ToolbarKeyboardShortcutHint } from './ui/ToolbarKeyboardShortcutHint';
7
7
  export { ToolbarSection } from './ui/ToolbarSection';
8
+ export { ToolbarTooltip } from './ui/ToolbarTooltip';
8
9
 
9
10
  export { AIAdjustLengthIcon } from './ui/icons/AIAdjustLengthIcon';
10
11
  export { AIChatIcon } from './ui/icons/AIChatIcon';
@@ -30,4 +31,4 @@ export { QuoteIcon } from './ui/icons/QuoteIcon';
30
31
  export { TextColorIcon } from './ui/icons/TextColorIcon';
31
32
  export { TextIcon } from './ui/icons/TextIcon';
32
33
 
33
- export type { ToolbarButtonGroupLocation } from './types';
34
+ export type { IconComponent, ToolbarButtonGroupLocation } from './types';