@atlaskit/icon 22.6.0 → 22.7.0

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.
Files changed (44) hide show
  1. package/CHANGELOG.md +15 -0
  2. package/dist/cjs/components/icon-new.js +6 -2
  3. package/dist/cjs/components/icon-tile.js +1 -1
  4. package/dist/cjs/components/icon.js +9 -6
  5. package/dist/cjs/components/skeleton.js +1 -1
  6. package/dist/cjs/components/svg.js +1 -1
  7. package/dist/es2019/components/icon-new.js +7 -2
  8. package/dist/es2019/components/icon-tile.js +1 -1
  9. package/dist/es2019/components/icon.js +10 -4
  10. package/dist/es2019/components/skeleton.js +1 -1
  11. package/dist/es2019/components/svg.js +1 -1
  12. package/dist/esm/components/icon-new.js +7 -2
  13. package/dist/esm/components/icon-tile.js +1 -1
  14. package/dist/esm/components/icon.js +9 -6
  15. package/dist/esm/components/skeleton.js +1 -1
  16. package/dist/esm/components/svg.js +1 -1
  17. package/dist/types/types.d.ts +5 -1
  18. package/dist/types-ts4.5/types.d.ts +5 -1
  19. package/package.json +3 -3
  20. package/dist/cjs/extract-react-types/custom-glyph.js +0 -9
  21. package/dist/cjs/extract-react-types/glyph-no-color-size.js +0 -7
  22. package/dist/cjs/extract-react-types/glyph-no-color.js +0 -7
  23. package/dist/cjs/extract-react-types/glyph.js +0 -7
  24. package/dist/cjs/extract-react-types/svg.js +0 -9
  25. package/dist/es2019/extract-react-types/custom-glyph.js +0 -3
  26. package/dist/es2019/extract-react-types/glyph-no-color-size.js +0 -1
  27. package/dist/es2019/extract-react-types/glyph-no-color.js +0 -1
  28. package/dist/es2019/extract-react-types/glyph.js +0 -1
  29. package/dist/es2019/extract-react-types/svg.js +0 -3
  30. package/dist/esm/extract-react-types/custom-glyph.js +0 -3
  31. package/dist/esm/extract-react-types/glyph-no-color-size.js +0 -1
  32. package/dist/esm/extract-react-types/glyph-no-color.js +0 -1
  33. package/dist/esm/extract-react-types/glyph.js +0 -1
  34. package/dist/esm/extract-react-types/svg.js +0 -3
  35. package/dist/types/extract-react-types/custom-glyph.d.ts +0 -2
  36. package/dist/types/extract-react-types/glyph-no-color-size.d.ts +0 -2
  37. package/dist/types/extract-react-types/glyph-no-color.d.ts +0 -2
  38. package/dist/types/extract-react-types/glyph.d.ts +0 -2
  39. package/dist/types/extract-react-types/svg.d.ts +0 -2
  40. package/dist/types-ts4.5/extract-react-types/custom-glyph.d.ts +0 -2
  41. package/dist/types-ts4.5/extract-react-types/glyph-no-color-size.d.ts +0 -2
  42. package/dist/types-ts4.5/extract-react-types/glyph-no-color.d.ts +0 -2
  43. package/dist/types-ts4.5/extract-react-types/glyph.d.ts +0 -2
  44. package/dist/types-ts4.5/extract-react-types/svg.d.ts +0 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # @atlaskit/icon
2
2
 
3
+ ## 22.7.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#122612](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/122612)
8
+ [`0c9d2190a14f2`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/0c9d2190a14f2) -
9
+ Adds a new prop, LEGACY_margin, to the new icon API to allow for spacing adjustments between old
10
+ and new icons API.
11
+
12
+ ### Patch Changes
13
+
14
+ - [#122977](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/122977)
15
+ [`41748db2c12de`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/41748db2c12de) -
16
+ [ux]ED-24225 add wrap button inside editor-plugin-block
17
+
3
18
  ## 22.6.0
4
19
 
5
20
  ### Minor Changes
@@ -9,8 +9,8 @@ var _react2 = require("@emotion/react");
9
9
  var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
10
10
  /**
11
11
  * @jsxRuntime classic
12
+ * @jsx jsx
12
13
  */
13
- /** @jsx jsx */
14
14
 
15
15
  // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
16
16
 
@@ -107,7 +107,8 @@ var Icon = exports.Icon = /*#__PURE__*/(0, _react.memo)(function Icon(props) {
107
107
  _ref$type = _ref.type,
108
108
  type = _ref$type === void 0 ? 'global' : _ref$type,
109
109
  dangerouslySetGlyph = _ref.dangerouslySetGlyph,
110
- shouldScale = _ref.shouldScale;
110
+ shouldScale = _ref.shouldScale,
111
+ LEGACY_margin = _ref.LEGACY_margin;
111
112
  var dangerouslySetInnerHTML = dangerouslySetGlyph ? {
112
113
  __html: dangerouslySetGlyph
113
114
  } : undefined;
@@ -121,6 +122,9 @@ var Icon = exports.Icon = /*#__PURE__*/(0, _react.memo)(function Icon(props) {
121
122
  size: LEGACY_size,
122
123
  label: label,
123
124
  testId: testId
125
+ // @ts-ignore-next-line
126
+ ,
127
+ UNSAFE_margin: LEGACY_margin
124
128
  });
125
129
  }
126
130
 
@@ -7,8 +7,8 @@ exports.default = IconTile;
7
7
  var _react = require("@emotion/react");
8
8
  /**
9
9
  * @jsxRuntime classic
10
+ * @jsx jsx
10
11
  */
11
- /** @jsx jsx */
12
12
 
13
13
  // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
14
14
 
@@ -9,12 +9,13 @@ var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends")
9
9
  var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
10
10
  var _react = require("react");
11
11
  var _react2 = require("@emotion/react");
12
- var _utils = require("./utils");
13
12
  var _styles = require("./styles");
13
+ var _utils = require("./utils");
14
14
  function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
15
15
  function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { (0, _defineProperty2.default)(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; } /**
16
16
  * @jsxRuntime classic
17
- */ /** @jsx jsx */ // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
17
+ * @jsx jsx
18
+ */ // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
18
19
  /**
19
20
  * We are hiding these props from consumers as they're used to
20
21
  * hack around icon sizing specifically for icon-file-type.
@@ -86,7 +87,8 @@ var Icon = exports.Icon = /*#__PURE__*/(0, _react.memo)(function Icon(props) {
86
87
  testId = _ref.testId,
87
88
  label = _ref.label,
88
89
  width = _ref.width,
89
- height = _ref.height;
90
+ height = _ref.height,
91
+ UNSAFE_margin = _ref.UNSAFE_margin;
90
92
  var glyphProps = dangerouslySetGlyph ? {
91
93
  dangerouslySetInnerHTML: {
92
94
  __html: dangerouslySetGlyph
@@ -108,12 +110,13 @@ var Icon = exports.Icon = /*#__PURE__*/(0, _react.memo)(function Icon(props) {
108
110
  "aria-hidden": label ? undefined : true
109
111
  // eslint-disable-next-line @atlaskit/ui-styling-standard/enforce-style-prop -- Ignored via go/DSP-18766
110
112
  ,
111
- style: {
113
+ style: _objectSpread({
112
114
  '--icon-primary-color': primaryColor,
113
115
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
114
116
  '--icon-secondary-color': secondaryColor || (0, _utils.getBackground)()
115
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
116
- }
117
+ }, UNSAFE_margin ? {
118
+ margin: UNSAFE_margin
119
+ } : {})
117
120
  }, glyphProps, {
118
121
  css: [iconStyles, baseHcmStyles, primaryColor === secondaryColor && primaryEqualsSecondaryHcmStyles, secondaryColor === 'transparent' && secondaryTransparentHcmStyles,
119
122
  // NB: This can be resolved if this component, composes base SVG / and/or skeleton
@@ -9,8 +9,8 @@ var _react2 = require("react");
9
9
  var _styles = require("./styles");
10
10
  /**
11
11
  * @jsxRuntime classic
12
+ * @jsx jsx
12
13
  */
13
- /** @jsx jsx */
14
14
  // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
15
15
 
16
16
  var skeletonStyles = (0, _react.css)({
@@ -10,8 +10,8 @@ var _utils = require("./utils");
10
10
  var _styles = require("./styles");
11
11
  /**
12
12
  * @jsxRuntime classic
13
+ * @jsx jsx
13
14
  */
14
- /** @jsx jsx */
15
15
 
16
16
  // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
17
17
 
@@ -1,8 +1,9 @@
1
1
  /**
2
2
  * @jsxRuntime classic
3
+ * @jsx jsx
3
4
  */
4
- /** @jsx jsx */
5
5
  import { memo } from 'react';
6
+
6
7
  // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
7
8
  import { css, jsx } from '@emotion/react';
8
9
  import { fg } from '@atlaskit/platform-feature-flags';
@@ -100,7 +101,8 @@ export const Icon = /*#__PURE__*/memo(function Icon(props) {
100
101
  // Used to set icon glyphs in codegen
101
102
  dangerouslySetGlyph,
102
103
  // Used with iconTile to scale icon up and down
103
- shouldScale
104
+ shouldScale,
105
+ LEGACY_margin
104
106
  } = props;
105
107
  const dangerouslySetInnerHTML = dangerouslySetGlyph ? {
106
108
  __html: dangerouslySetGlyph
@@ -115,6 +117,9 @@ export const Icon = /*#__PURE__*/memo(function Icon(props) {
115
117
  size: LEGACY_size,
116
118
  label: label,
117
119
  testId: testId
120
+ // @ts-ignore-next-line
121
+ ,
122
+ UNSAFE_margin: LEGACY_margin
118
123
  });
119
124
  }
120
125
 
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * @jsxRuntime classic
3
+ * @jsx jsx
3
4
  */
4
- /** @jsx jsx */
5
5
 
6
6
  // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
7
7
  import { css, jsx } from '@emotion/react';
@@ -1,13 +1,14 @@
1
1
  import _extends from "@babel/runtime/helpers/extends";
2
2
  /**
3
3
  * @jsxRuntime classic
4
+ * @jsx jsx
4
5
  */
5
- /** @jsx jsx */
6
6
  import { memo } from 'react';
7
+
7
8
  // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
8
9
  import { css, jsx } from '@emotion/react';
9
- import { getBackground } from './utils';
10
10
  import { commonSVGStyles, getIconSize } from './styles';
11
+ import { getBackground } from './utils';
11
12
 
12
13
  /**
13
14
  * We are hiding these props from consumers as they're used to
@@ -81,7 +82,8 @@ export const Icon = /*#__PURE__*/memo(function Icon(props) {
81
82
  testId,
82
83
  label,
83
84
  width,
84
- height
85
+ height,
86
+ UNSAFE_margin
85
87
  } = props;
86
88
  const glyphProps = dangerouslySetGlyph ? {
87
89
  dangerouslySetInnerHTML: {
@@ -107,7 +109,11 @@ export const Icon = /*#__PURE__*/memo(function Icon(props) {
107
109
  style: {
108
110
  '--icon-primary-color': primaryColor,
109
111
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
110
- '--icon-secondary-color': secondaryColor || getBackground()
112
+ '--icon-secondary-color': secondaryColor || getBackground(),
113
+ // eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
114
+ ...(UNSAFE_margin ? {
115
+ margin: UNSAFE_margin
116
+ } : {})
111
117
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
112
118
  }
113
119
  }, glyphProps, {
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * @jsxRuntime classic
3
+ * @jsx jsx
3
4
  */
4
- /** @jsx jsx */
5
5
  // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
6
6
  import { css, jsx } from '@emotion/react';
7
7
  import { memo } from 'react';
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * @jsxRuntime classic
3
+ * @jsx jsx
3
4
  */
4
- /** @jsx jsx */
5
5
  import { memo } from 'react';
6
6
  // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
7
7
  import { css, jsx } from '@emotion/react';
@@ -1,8 +1,9 @@
1
1
  /**
2
2
  * @jsxRuntime classic
3
+ * @jsx jsx
3
4
  */
4
- /** @jsx jsx */
5
5
  import { memo } from 'react';
6
+
6
7
  // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
7
8
  import { css, jsx } from '@emotion/react';
8
9
  import { fg } from '@atlaskit/platform-feature-flags';
@@ -100,7 +101,8 @@ export var Icon = /*#__PURE__*/memo(function Icon(props) {
100
101
  _ref$type = _ref.type,
101
102
  type = _ref$type === void 0 ? 'global' : _ref$type,
102
103
  dangerouslySetGlyph = _ref.dangerouslySetGlyph,
103
- shouldScale = _ref.shouldScale;
104
+ shouldScale = _ref.shouldScale,
105
+ LEGACY_margin = _ref.LEGACY_margin;
104
106
  var dangerouslySetInnerHTML = dangerouslySetGlyph ? {
105
107
  __html: dangerouslySetGlyph
106
108
  } : undefined;
@@ -114,6 +116,9 @@ export var Icon = /*#__PURE__*/memo(function Icon(props) {
114
116
  size: LEGACY_size,
115
117
  label: label,
116
118
  testId: testId
119
+ // @ts-ignore-next-line
120
+ ,
121
+ UNSAFE_margin: LEGACY_margin
117
122
  });
118
123
  }
119
124
 
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * @jsxRuntime classic
3
+ * @jsx jsx
3
4
  */
4
- /** @jsx jsx */
5
5
 
6
6
  // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
7
7
  import { css, jsx } from '@emotion/react';
@@ -4,13 +4,14 @@ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbol
4
4
  function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
5
5
  /**
6
6
  * @jsxRuntime classic
7
+ * @jsx jsx
7
8
  */
8
- /** @jsx jsx */
9
9
  import { memo } from 'react';
10
+
10
11
  // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
11
12
  import { css, jsx } from '@emotion/react';
12
- import { getBackground } from './utils';
13
13
  import { commonSVGStyles, getIconSize } from './styles';
14
+ import { getBackground } from './utils';
14
15
 
15
16
  /**
16
17
  * We are hiding these props from consumers as they're used to
@@ -83,7 +84,8 @@ export var Icon = /*#__PURE__*/memo(function Icon(props) {
83
84
  testId = _ref.testId,
84
85
  label = _ref.label,
85
86
  width = _ref.width,
86
- height = _ref.height;
87
+ height = _ref.height,
88
+ UNSAFE_margin = _ref.UNSAFE_margin;
87
89
  var glyphProps = dangerouslySetGlyph ? {
88
90
  dangerouslySetInnerHTML: {
89
91
  __html: dangerouslySetGlyph
@@ -105,12 +107,13 @@ export var Icon = /*#__PURE__*/memo(function Icon(props) {
105
107
  "aria-hidden": label ? undefined : true
106
108
  // eslint-disable-next-line @atlaskit/ui-styling-standard/enforce-style-prop -- Ignored via go/DSP-18766
107
109
  ,
108
- style: {
110
+ style: _objectSpread({
109
111
  '--icon-primary-color': primaryColor,
110
112
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
111
113
  '--icon-secondary-color': secondaryColor || getBackground()
112
- // eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
113
- }
114
+ }, UNSAFE_margin ? {
115
+ margin: UNSAFE_margin
116
+ } : {})
114
117
  }, glyphProps, {
115
118
  css: [iconStyles, baseHcmStyles, primaryColor === secondaryColor && primaryEqualsSecondaryHcmStyles, secondaryColor === 'transparent' && secondaryTransparentHcmStyles,
116
119
  // NB: This can be resolved if this component, composes base SVG / and/or skeleton
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * @jsxRuntime classic
3
+ * @jsx jsx
3
4
  */
4
- /** @jsx jsx */
5
5
  // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
6
6
  import { css, jsx } from '@emotion/react';
7
7
  import { memo } from 'react';
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * @jsxRuntime classic
3
+ * @jsx jsx
3
4
  */
4
- /** @jsx jsx */
5
5
  import { memo } from 'react';
6
6
  // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
7
7
  import { css, jsx } from '@emotion/react';
@@ -1,4 +1,4 @@
1
- import type { ComponentType, SVGProps as ReactSVGProps, ReactNode } from 'react';
1
+ import type { ComponentType, ReactNode, SVGProps as ReactSVGProps } from 'react';
2
2
  import type { IconColor, IconColorPressed } from '@atlaskit/tokens/css-type-schema';
3
3
  export type Size = 'small' | 'medium' | 'large' | 'xlarge';
4
4
  export interface CustomGlyphProps extends ReactSVGProps<SVGSVGElement> {
@@ -111,6 +111,10 @@ export interface NewIconProps extends NewGlyphProps, IconInternalGlyphProps {
111
111
  * Icon type. Used in icon build process.
112
112
  */
113
113
  type?: 'utility' | 'global';
114
+ /**
115
+ * Sets a margin on the fallback legacy icon.
116
+ */
117
+ LEGACY_margin?: string;
114
118
  }
115
119
  export type IconTileAppearance = 'gray' | 'blue' | 'teal' | 'green' | 'lime' | 'yellow' | 'orange' | 'red' | 'magenta' | 'purple' | 'grayBold' | 'blueBold' | 'tealBold' | 'greenBold' | 'limeBold' | 'yellowBold' | 'orangeBold' | 'redBold' | 'magentaBold' | 'purpleBold';
116
120
  export type IconTileSize = '16' | '24' | '32' | '40' | '48';
@@ -1,4 +1,4 @@
1
- import type { ComponentType, SVGProps as ReactSVGProps, ReactNode } from 'react';
1
+ import type { ComponentType, ReactNode, SVGProps as ReactSVGProps } from 'react';
2
2
  import type { IconColor, IconColorPressed } from '@atlaskit/tokens/css-type-schema';
3
3
  export type Size = 'small' | 'medium' | 'large' | 'xlarge';
4
4
  export interface CustomGlyphProps extends ReactSVGProps<SVGSVGElement> {
@@ -111,6 +111,10 @@ export interface NewIconProps extends NewGlyphProps, IconInternalGlyphProps {
111
111
  * Icon type. Used in icon build process.
112
112
  */
113
113
  type?: 'utility' | 'global';
114
+ /**
115
+ * Sets a margin on the fallback legacy icon.
116
+ */
117
+ LEGACY_margin?: string;
114
118
  }
115
119
  export type IconTileAppearance = 'gray' | 'blue' | 'teal' | 'green' | 'lime' | 'yellow' | 'orange' | 'red' | 'magenta' | 'purple' | 'grayBold' | 'blueBold' | 'tealBold' | 'greenBold' | 'limeBold' | 'yellowBold' | 'orangeBold' | 'redBold' | 'magentaBold' | 'purpleBold';
116
120
  export type IconTileSize = '16' | '24' | '32' | '40' | '48';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/icon",
3
- "version": "22.6.0",
3
+ "version": "22.7.0",
4
4
  "description": "An icon is a visual representation of a command, device, directory, or common action.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -31,7 +31,7 @@
31
31
  },
32
32
  "dependencies": {
33
33
  "@atlaskit/platform-feature-flags": "^0.3.0",
34
- "@atlaskit/tokens": "^1.53.0",
34
+ "@atlaskit/tokens": "^1.56.0",
35
35
  "@babel/runtime": "^7.0.0",
36
36
  "@emotion/react": "^11.7.1"
37
37
  },
@@ -45,7 +45,7 @@
45
45
  "@atlaskit/code": "^15.4.0",
46
46
  "@atlaskit/ds-lib": "^2.3.0",
47
47
  "@atlaskit/logo": "^14.1.0",
48
- "@atlaskit/primitives": "^10.1.0",
48
+ "@atlaskit/primitives": "^11.0.0",
49
49
  "@atlaskit/ssr": "*",
50
50
  "@atlaskit/textfield": "^6.4.0",
51
51
  "@atlaskit/theme": "^12.11.0",
@@ -1,9 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.default = CustomGlyphProps;
7
- function CustomGlyphProps(props) {
8
- return null;
9
- }
@@ -1,7 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.default = _default;
7
- function _default(_) {}
@@ -1,7 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.default = _default;
7
- function _default(_) {}
@@ -1,7 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.default = _default;
7
- function _default(_) {}
@@ -1,9 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.default = SVGProps;
7
- function SVGProps(props) {
8
- return null;
9
- }
@@ -1,3 +0,0 @@
1
- export default function CustomGlyphProps(props) {
2
- return null;
3
- }
@@ -1 +0,0 @@
1
- export default function (_) {}
@@ -1 +0,0 @@
1
- export default function (_) {}
@@ -1 +0,0 @@
1
- export default function (_) {}
@@ -1,3 +0,0 @@
1
- export default function SVGProps(props) {
2
- return null;
3
- }
@@ -1,3 +0,0 @@
1
- export default function CustomGlyphProps(props) {
2
- return null;
3
- }
@@ -1 +0,0 @@
1
- export default function (_) {}
@@ -1 +0,0 @@
1
- export default function (_) {}
@@ -1 +0,0 @@
1
- export default function (_) {}
@@ -1,3 +0,0 @@
1
- export default function SVGProps(props) {
2
- return null;
3
- }
@@ -1,2 +0,0 @@
1
- import type { CustomGlyphProps as Props } from '../types';
2
- export default function CustomGlyphProps(props: Props): null;
@@ -1,2 +0,0 @@
1
- import type { OtherGlyphProps } from '../types';
2
- export default function (_: OtherGlyphProps): void;
@@ -1,2 +0,0 @@
1
- import type { OtherGlyphProps, GlyphSizeProps } from '../types';
2
- export default function (_: OtherGlyphProps & GlyphSizeProps): void;
@@ -1,2 +0,0 @@
1
- import type { GlyphProps } from '../types';
2
- export default function (_: GlyphProps): void;
@@ -1,2 +0,0 @@
1
- import type { SVGProps as Props } from '../types';
2
- export default function SVGProps(props: Props): null;
@@ -1,2 +0,0 @@
1
- import type { CustomGlyphProps as Props } from '../types';
2
- export default function CustomGlyphProps(props: Props): null;
@@ -1,2 +0,0 @@
1
- import type { OtherGlyphProps } from '../types';
2
- export default function (_: OtherGlyphProps): void;
@@ -1,2 +0,0 @@
1
- import type { OtherGlyphProps, GlyphSizeProps } from '../types';
2
- export default function (_: OtherGlyphProps & GlyphSizeProps): void;
@@ -1,2 +0,0 @@
1
- import type { GlyphProps } from '../types';
2
- export default function (_: GlyphProps): void;
@@ -1,2 +0,0 @@
1
- import type { SVGProps as Props } from '../types';
2
- export default function SVGProps(props: Props): null;