@atlaskit/editor-plugin-primary-toolbar 1.1.1 → 1.1.2

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-primary-toolbar
2
2
 
3
+ ## 1.1.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
3
9
  ## 1.1.1
4
10
 
5
11
  ### Patch Changes
@@ -7,10 +7,14 @@ exports.default = void 0;
7
7
  var _react = require("@emotion/react");
8
8
  var _styles = require("@atlaskit/editor-common/styles");
9
9
  /** @jsx jsx */
10
+ // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
10
11
  var _default = exports.default = function _default() {
11
- return (0, _react.jsx)("span", {
12
- css: _styles.wrapperStyle
13
- }, (0, _react.jsx)("span", {
14
- css: _styles.separatorStyles
15
- }));
12
+ return (
13
+ // eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/design-system/consistent-css-prop-usage -- Ignored via go/DSP-18766
14
+ (0, _react.jsx)("span", {
15
+ css: _styles.wrapperStyle
16
+ }, (0, _react.jsx)("span", {
17
+ css: _styles.separatorStyles
18
+ }))
19
+ );
16
20
  };
@@ -1,7 +1,10 @@
1
1
  /** @jsx jsx */
2
+ // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
2
3
  import { jsx } from '@emotion/react';
3
4
  import { separatorStyles, wrapperStyle } from '@atlaskit/editor-common/styles';
4
- export default (() => jsx("span", {
5
+ export default (() =>
6
+ // eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/design-system/consistent-css-prop-usage -- Ignored via go/DSP-18766
7
+ jsx("span", {
5
8
  css: wrapperStyle
6
9
  }, jsx("span", {
7
10
  css: separatorStyles
@@ -1,10 +1,14 @@
1
1
  /** @jsx jsx */
2
+ // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
2
3
  import { jsx } from '@emotion/react';
3
4
  import { separatorStyles, wrapperStyle } from '@atlaskit/editor-common/styles';
4
5
  export default (function () {
5
- return jsx("span", {
6
- css: wrapperStyle
7
- }, jsx("span", {
8
- css: separatorStyles
9
- }));
6
+ return (
7
+ // eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values, @atlaskit/design-system/consistent-css-prop-usage -- Ignored via go/DSP-18766
8
+ jsx("span", {
9
+ css: wrapperStyle
10
+ }, jsx("span", {
11
+ css: separatorStyles
12
+ }))
13
+ );
10
14
  });
package/package.json CHANGED
@@ -1,86 +1,86 @@
1
1
  {
2
- "name": "@atlaskit/editor-plugin-primary-toolbar",
3
- "version": "1.1.1",
4
- "description": "Primary toolbar plugin for @atlaskit/editor-core",
5
- "author": "Atlassian Pty Ltd",
6
- "license": "Apache-2.0",
7
- "publishConfig": {
8
- "registry": "https://registry.npmjs.org/"
9
- },
10
- "atlassian": {
11
- "team": "Editor: Core Experiences",
12
- "inPublicMirror": false,
13
- "releaseModel": "continuous",
14
- "website": {
15
- "name": "EditorPluginPrimaryToolbar",
16
- "category": "Components"
17
- },
18
- "runReact18": false
19
- },
20
- "repository": "https://stash.atlassian.com/projects/ATLASSIAN/repos/atlassian-frontend-monorepo",
21
- "main": "dist/cjs/index.js",
22
- "module": "dist/esm/index.js",
23
- "module:es2019": "dist/es2019/index.js",
24
- "types": "dist/types/index.d.ts",
25
- "typesVersions": {
26
- ">=4.5 <5.4": {
27
- "*": [
28
- "dist/types-ts4.5/*",
29
- "dist/types-ts4.5/index.d.ts"
30
- ]
31
- }
32
- },
33
- "sideEffects": [
34
- "*.compiled.css"
35
- ],
36
- "atlaskit:src": "src/index.ts",
37
- "af:exports": {
38
- ".": "./src/index.ts"
39
- },
40
- "dependencies": {
41
- "@atlaskit/editor-common": "^82.0.0",
42
- "@atlaskit/editor-prosemirror": "4.0.1",
43
- "@babel/runtime": "^7.0.0",
44
- "@emotion/react": "^11.7.1"
45
- },
46
- "peerDependencies": {
47
- "react": "^16.8.0"
48
- },
49
- "devDependencies": {
50
- "typescript": "~5.4.2"
51
- },
52
- "techstack": {
53
- "@atlassian/frontend": {
54
- "import-structure": [
55
- "atlassian-conventions"
56
- ],
57
- "circular-dependencies": [
58
- "file-and-folder-level"
59
- ]
60
- },
61
- "@repo/internal": {
62
- "dom-events": "use-bind-event-listener",
63
- "analytics": [
64
- "analytics-next"
65
- ],
66
- "design-tokens": [
67
- "color"
68
- ],
69
- "theming": [
70
- "react-context"
71
- ],
72
- "ui-components": [
73
- "lite-mode"
74
- ],
75
- "deprecation": [
76
- "no-deprecated-imports"
77
- ],
78
- "styling": [
79
- "emotion"
80
- ],
81
- "imports": [
82
- "import-no-extraneous-disable-for-examples-and-docs"
83
- ]
84
- }
85
- }
86
- }
2
+ "name": "@atlaskit/editor-plugin-primary-toolbar",
3
+ "version": "1.1.2",
4
+ "description": "Primary toolbar plugin for @atlaskit/editor-core",
5
+ "author": "Atlassian Pty Ltd",
6
+ "license": "Apache-2.0",
7
+ "publishConfig": {
8
+ "registry": "https://registry.npmjs.org/"
9
+ },
10
+ "atlassian": {
11
+ "team": "Editor: Core Experiences",
12
+ "inPublicMirror": false,
13
+ "releaseModel": "continuous",
14
+ "website": {
15
+ "name": "EditorPluginPrimaryToolbar",
16
+ "category": "Components"
17
+ },
18
+ "runReact18": false
19
+ },
20
+ "repository": "https://stash.atlassian.com/projects/ATLASSIAN/repos/atlassian-frontend-monorepo",
21
+ "main": "dist/cjs/index.js",
22
+ "module": "dist/esm/index.js",
23
+ "module:es2019": "dist/es2019/index.js",
24
+ "types": "dist/types/index.d.ts",
25
+ "typesVersions": {
26
+ ">=4.5 <5.4": {
27
+ "*": [
28
+ "dist/types-ts4.5/*",
29
+ "dist/types-ts4.5/index.d.ts"
30
+ ]
31
+ }
32
+ },
33
+ "sideEffects": [
34
+ "*.compiled.css"
35
+ ],
36
+ "atlaskit:src": "src/index.ts",
37
+ "af:exports": {
38
+ ".": "./src/index.ts"
39
+ },
40
+ "dependencies": {
41
+ "@atlaskit/editor-common": "^83.0.0",
42
+ "@atlaskit/editor-prosemirror": "4.0.1",
43
+ "@babel/runtime": "^7.0.0",
44
+ "@emotion/react": "^11.7.1"
45
+ },
46
+ "peerDependencies": {
47
+ "react": "^16.8.0"
48
+ },
49
+ "devDependencies": {
50
+ "typescript": "~5.4.2"
51
+ },
52
+ "techstack": {
53
+ "@atlassian/frontend": {
54
+ "import-structure": [
55
+ "atlassian-conventions"
56
+ ],
57
+ "circular-dependencies": [
58
+ "file-and-folder-level"
59
+ ]
60
+ },
61
+ "@repo/internal": {
62
+ "dom-events": "use-bind-event-listener",
63
+ "analytics": [
64
+ "analytics-next"
65
+ ],
66
+ "design-tokens": [
67
+ "color"
68
+ ],
69
+ "theming": [
70
+ "react-context"
71
+ ],
72
+ "ui-components": [
73
+ "lite-mode"
74
+ ],
75
+ "deprecation": [
76
+ "no-deprecated-imports"
77
+ ],
78
+ "styling": [
79
+ "emotion"
80
+ ],
81
+ "imports": [
82
+ "import-no-extraneous-disable-for-examples-and-docs"
83
+ ]
84
+ }
85
+ }
86
+ }