@atlaskit/code 14.4.0 → 14.4.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.
Files changed (36) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/codemods/13.0.0-remove-unnecessary-code-props.tsx +9 -11
  3. package/codemods/utils/helpers.tsx +17 -22
  4. package/dist/cjs/bidi-warning/ui/styled.js +1 -1
  5. package/dist/cjs/version.json +1 -1
  6. package/dist/es2019/bidi-warning/ui/styled.js +1 -1
  7. package/dist/es2019/version.json +1 -1
  8. package/dist/esm/bidi-warning/ui/styled.js +1 -1
  9. package/dist/esm/version.json +1 -1
  10. package/dist/types/code.d.ts +1 -1
  11. package/package.json +5 -10
  12. package/report.api.md +407 -474
  13. package/dist/types-ts4.0/bidi-warning/bidi-warning-decorator.d.ts +0 -5
  14. package/dist/types-ts4.0/bidi-warning/index.d.ts +0 -1
  15. package/dist/types-ts4.0/bidi-warning/ui/index.d.ts +0 -3
  16. package/dist/types-ts4.0/bidi-warning/ui/styled.d.ts +0 -8
  17. package/dist/types-ts4.0/bidi-warning/ui/types.d.ts +0 -33
  18. package/dist/types-ts4.0/code-block.d.ts +0 -13
  19. package/dist/types-ts4.0/code.d.ts +0 -16
  20. package/dist/types-ts4.0/constants.d.ts +0 -625
  21. package/dist/types-ts4.0/entry-points/block.d.ts +0 -2
  22. package/dist/types-ts4.0/entry-points/constants.d.ts +0 -1
  23. package/dist/types-ts4.0/entry-points/inline.d.ts +0 -2
  24. package/dist/types-ts4.0/entry-points/types.d.ts +0 -1
  25. package/dist/types-ts4.0/extract-react-types/code-block.d.ts +0 -37
  26. package/dist/types-ts4.0/extract-react-types/code.d.ts +0 -2
  27. package/dist/types-ts4.0/index.d.ts +0 -4
  28. package/dist/types-ts4.0/internal/hooks/use-highlight.d.ts +0 -6
  29. package/dist/types-ts4.0/internal/theme/constants.d.ts +0 -8
  30. package/dist/types-ts4.0/internal/theme/get-theme.d.ts +0 -7
  31. package/dist/types-ts4.0/internal/theme/styles.d.ts +0 -27
  32. package/dist/types-ts4.0/internal/theme/types.d.ts +0 -57
  33. package/dist/types-ts4.0/internal/types.d.ts +0 -57
  34. package/dist/types-ts4.0/internal/utils/get-normalized-language.d.ts +0 -2
  35. package/dist/types-ts4.0/react-syntax-highlighter-bidi-warning-renderer.d.ts +0 -9
  36. package/dist/types-ts4.0/types.d.ts +0 -32
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @atlaskit/code
2
2
 
3
+ ## 14.4.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
9
+ ## 14.4.1
10
+
11
+ ### Patch Changes
12
+
13
+ - [`bc989043572`](https://bitbucket.org/atlassian/atlassian-frontend/commits/bc989043572) - Internal changes to apply spacing tokens. This should be a no-op change.
14
+
3
15
  ## 14.4.0
4
16
 
5
17
  ### Minor Changes
@@ -35,21 +35,19 @@ function removeProps(
35
35
  jsxAttributeCollection.remove();
36
36
  }
37
37
 
38
- const jsxSpreadIdentifierPropertyCollection = getJSXSpreadIdentifierAttributesByName(
39
- j,
40
- collection,
41
- jsxElementPath,
42
- propName,
43
- );
38
+ const jsxSpreadIdentifierPropertyCollection =
39
+ getJSXSpreadIdentifierAttributesByName(
40
+ j,
41
+ collection,
42
+ jsxElementPath,
43
+ propName,
44
+ );
44
45
  if (jsxSpreadIdentifierPropertyCollection) {
45
46
  jsxSpreadIdentifierPropertyCollection.remove();
46
47
  }
47
48
 
48
- const jsxSpreadExpressionPropertyCollection = getJSXSpreadObjectExpressionAttributesByName(
49
- j,
50
- jsxElementPath,
51
- propName,
52
- );
49
+ const jsxSpreadExpressionPropertyCollection =
50
+ getJSXSpreadObjectExpressionAttributesByName(j, jsxElementPath, propName);
53
51
  if (jsxSpreadExpressionPropertyCollection) {
54
52
  jsxSpreadExpressionPropertyCollection.remove();
55
53
  }
@@ -49,10 +49,8 @@ export function getDynamicImportCollection(
49
49
  importPath: string,
50
50
  ) {
51
51
  return collection.find(j.CallExpression).filter((callExpressionPath) => {
52
- const {
53
- callee,
54
- arguments: callExpressionArguments,
55
- } = callExpressionPath.node;
52
+ const { callee, arguments: callExpressionArguments } =
53
+ callExpressionPath.node;
56
54
 
57
55
  return !!(
58
56
  isCallExpressionCalleeImportType(callee) &&
@@ -246,24 +244,21 @@ export function getJSXSpreadObjectExpressionAttributesByName(
246
244
  );
247
245
  }
248
246
 
249
- export const createRemoveFuncFor = (
250
- component: string,
251
- importName: string,
252
- prop: string,
253
- comment?: string,
254
- ) => (j: core.JSCodeshift, source: Collection<Node>) => {
255
- const specifier = getNamedSpecifier(j, source, component, importName);
247
+ export const createRemoveFuncFor =
248
+ (component: string, importName: string, prop: string, comment?: string) =>
249
+ (j: core.JSCodeshift, source: Collection<Node>) => {
250
+ const specifier = getNamedSpecifier(j, source, component, importName);
256
251
 
257
- if (!specifier) {
258
- return;
259
- }
252
+ if (!specifier) {
253
+ return;
254
+ }
260
255
 
261
- source.findJSXElements(specifier).forEach((element) => {
262
- getJSXAttributesByName(j, element, prop).forEach((attribute: any) => {
263
- j(attribute).remove();
264
- if (comment) {
265
- addCommentToStartOfFile({ j, base: source, message: comment });
266
- }
256
+ source.findJSXElements(specifier).forEach((element) => {
257
+ getJSXAttributesByName(j, element, prop).forEach((attribute: any) => {
258
+ j(attribute).remove();
259
+ if (comment) {
260
+ addCommentToStartOfFile({ j, base: source, message: comment });
261
+ }
262
+ });
267
263
  });
268
- });
269
- };
264
+ };
@@ -19,7 +19,7 @@ var decoration = (0, _react.css)({
19
19
  position: 'relative',
20
20
  ':before': {
21
21
  display: 'inline-flex',
22
- padding: '0 4px',
22
+ padding: "var(--ds-scale-0, 0px)".concat(" ", "var(--ds-scale-050, 4px)"),
23
23
  alignItems: 'center',
24
24
  justifyContent: 'center',
25
25
  flexDirection: 'row',
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/code",
3
- "version": "14.4.0",
3
+ "version": "14.4.2",
4
4
  "sideEffects": false
5
5
  }
@@ -10,7 +10,7 @@ const decoration = css({
10
10
  position: 'relative',
11
11
  ':before': {
12
12
  display: 'inline-flex',
13
- padding: '0 4px',
13
+ padding: `${"var(--ds-scale-0, 0px)"} ${"var(--ds-scale-050, 4px)"}`,
14
14
  alignItems: 'center',
15
15
  justifyContent: 'center',
16
16
  flexDirection: 'row',
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/code",
3
- "version": "14.4.0",
3
+ "version": "14.4.2",
4
4
  "sideEffects": false
5
5
  }
@@ -10,7 +10,7 @@ var decoration = css({
10
10
  position: 'relative',
11
11
  ':before': {
12
12
  display: 'inline-flex',
13
- padding: '0 4px',
13
+ padding: "var(--ds-scale-0, 0px)".concat(" ", "var(--ds-scale-050, 4px)"),
14
14
  alignItems: 'center',
15
15
  justifyContent: 'center',
16
16
  flexDirection: 'row',
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/code",
3
- "version": "14.4.0",
3
+ "version": "14.4.2",
4
4
  "sideEffects": false
5
5
  }
@@ -11,6 +11,6 @@ import type { CodeProps } from './types';
11
11
  * - [Code](https://atlassian.design/components/code/code)
12
12
  * - [Usage](https://atlassian.design/components/code/usage)
13
13
  */
14
- declare const Code: React.MemoExoticComponent<React.ForwardRefExoticComponent<Pick<CodeProps, "as" | "name" | "testId" | "codeBidiWarnings" | "codeBidiWarningLabel" | "codeBidiWarningTooltipEnabled" | "accept" | "acceptCharset" | "action" | "allowFullScreen" | "allowTransparency" | "alt" | "async" | "autoComplete" | "autoFocus" | "autoPlay" | "capture" | "cellPadding" | "cellSpacing" | "charSet" | "challenge" | "checked" | "cite" | "classID" | "cols" | "colSpan" | "content" | "controls" | "coords" | "crossOrigin" | "data" | "dateTime" | "default" | "defer" | "disabled" | "download" | "encType" | "form" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "frameBorder" | "headers" | "height" | "high" | "href" | "hrefLang" | "htmlFor" | "httpEquiv" | "integrity" | "keyParams" | "keyType" | "kind" | "label" | "list" | "loop" | "low" | "manifest" | "marginHeight" | "marginWidth" | "max" | "maxLength" | "media" | "mediaGroup" | "method" | "min" | "minLength" | "multiple" | "muted" | "nonce" | "noValidate" | "open" | "optimum" | "pattern" | "placeholder" | "playsInline" | "poster" | "preload" | "readOnly" | "rel" | "required" | "reversed" | "rows" | "rowSpan" | "sandbox" | "scope" | "scoped" | "scrolling" | "seamless" | "selected" | "shape" | "size" | "sizes" | "span" | "src" | "srcDoc" | "srcLang" | "srcSet" | "start" | "step" | "summary" | "target" | "type" | "useMap" | "value" | "width" | "wmode" | "wrap" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "slot" | "spellCheck" | "style" | "tabIndex" | "title" | "inputMode" | "is" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key"> & React.RefAttributes<HTMLElement>>>;
14
+ declare const Code: React.MemoExoticComponent<React.ForwardRefExoticComponent<Pick<CodeProps, "headers" | "method" | "as" | "name" | "testId" | "codeBidiWarnings" | "codeBidiWarningLabel" | "codeBidiWarningTooltipEnabled" | "accept" | "acceptCharset" | "action" | "allowFullScreen" | "allowTransparency" | "alt" | "async" | "autoComplete" | "autoFocus" | "autoPlay" | "capture" | "cellPadding" | "cellSpacing" | "charSet" | "challenge" | "checked" | "cite" | "classID" | "cols" | "colSpan" | "content" | "controls" | "coords" | "crossOrigin" | "data" | "dateTime" | "default" | "defer" | "disabled" | "download" | "encType" | "form" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "frameBorder" | "height" | "high" | "href" | "hrefLang" | "htmlFor" | "httpEquiv" | "integrity" | "keyParams" | "keyType" | "kind" | "label" | "list" | "loop" | "low" | "manifest" | "marginHeight" | "marginWidth" | "max" | "maxLength" | "media" | "mediaGroup" | "min" | "minLength" | "multiple" | "muted" | "nonce" | "noValidate" | "open" | "optimum" | "pattern" | "placeholder" | "playsInline" | "poster" | "preload" | "readOnly" | "rel" | "required" | "reversed" | "rows" | "rowSpan" | "sandbox" | "scope" | "scoped" | "scrolling" | "seamless" | "selected" | "shape" | "size" | "sizes" | "span" | "src" | "srcDoc" | "srcLang" | "srcSet" | "start" | "step" | "summary" | "target" | "type" | "useMap" | "value" | "width" | "wmode" | "wrap" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "slot" | "spellCheck" | "style" | "tabIndex" | "title" | "inputMode" | "is" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key"> & React.RefAttributes<HTMLElement>>>;
15
15
  export { getCodeStyles };
16
16
  export default Code;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/code",
3
- "version": "14.4.0",
3
+ "version": "14.4.2",
4
4
  "description": "Code highlights short strings of code snippets inline with body text.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -12,16 +12,10 @@
12
12
  "module": "dist/esm/index.js",
13
13
  "module:es2019": "dist/es2019/index.js",
14
14
  "types": "dist/types/index.d.ts",
15
- "typesVersions": {
16
- ">=4.0 <4.5": {
17
- "*": [
18
- "dist/types-ts4.0/*"
19
- ]
20
- }
21
- },
22
15
  "sideEffects": false,
23
16
  "atlaskit:src": "src/index.tsx",
24
17
  "atlassian": {
18
+ "disableProductCI": true,
25
19
  "team": "Design System Team",
26
20
  "releaseModel": "scheduled",
27
21
  "website": {
@@ -35,7 +29,7 @@
35
29
  "dependencies": {
36
30
  "@atlaskit/codemod-utils": "^4.1.0",
37
31
  "@atlaskit/theme": "^12.2.0",
38
- "@atlaskit/tokens": "^0.10.0",
32
+ "@atlaskit/tokens": "^0.11.0",
39
33
  "@atlaskit/tooltip": "^17.6.0",
40
34
  "@babel/runtime": "^7.0.0",
41
35
  "@emotion/react": "^11.7.1",
@@ -46,7 +40,7 @@
46
40
  "react": "^16.8.0"
47
41
  },
48
42
  "devDependencies": {
49
- "@atlaskit/button": "^16.3.0",
43
+ "@atlaskit/button": "^16.4.0",
50
44
  "@atlaskit/docs": "^9.0.0",
51
45
  "@atlaskit/ds-lib": "^2.1.0",
52
46
  "@atlaskit/section-message": "^6.3.0",
@@ -83,6 +77,7 @@
83
77
  },
84
78
  "@repo/internal": {
85
79
  "design-system": "v1",
80
+ "design-tokens": "spacing",
86
81
  "dom-events": "use-bind-event-listener",
87
82
  "ui-components": [
88
83
  "lite-mode"