@atlaskit/side-navigation 3.1.3 → 3.2.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 (36) hide show
  1. package/CHANGELOG.md +649 -644
  2. package/afm-cc/tsconfig.json +3 -0
  3. package/afm-jira/tsconfig.json +43 -0
  4. package/codemods/0.8.0-change-css-fn-prop.tsx +9 -8
  5. package/codemods/helpers/generic.tsx +12 -11
  6. package/dist/cjs/components/Header/index.js +9 -3
  7. package/dist/es2019/components/Header/index.js +8 -3
  8. package/dist/esm/components/Header/index.js +9 -3
  9. package/dist/types/components/Item/button-item.d.ts +1 -1
  10. package/dist/types/components/Item/custom-item.d.ts +1 -1
  11. package/dist/types/components/Item/link-item.d.ts +1 -1
  12. package/dist/types/components/NavigationContent/index.d.ts +1 -1
  13. package/dist/types/components/NavigationFooter/index.d.ts +1 -1
  14. package/dist/types/components/NestableNavigationContent/context.d.ts +1 -1
  15. package/dist/types/components/NestableNavigationContent/nesting-motion.d.ts +2 -2
  16. package/dist/types/components/NestingItem/hack-for-ert.d.ts +1 -1
  17. package/dist/types/components/NestingItem/index.d.ts +1 -1
  18. package/dist/types/components/NestingItem/styles.d.ts +1 -1
  19. package/dist/types/components/Section/heading-item.d.ts +1 -1
  20. package/dist/types/components/Section/skeleton-heading-item.d.ts +1 -1
  21. package/dist/types/components/utils/hooks.d.ts +1 -1
  22. package/dist/types-ts4.5/components/Item/button-item.d.ts +1 -1
  23. package/dist/types-ts4.5/components/Item/custom-item.d.ts +1 -1
  24. package/dist/types-ts4.5/components/Item/link-item.d.ts +1 -1
  25. package/dist/types-ts4.5/components/NavigationContent/index.d.ts +1 -1
  26. package/dist/types-ts4.5/components/NavigationFooter/index.d.ts +1 -1
  27. package/dist/types-ts4.5/components/NestableNavigationContent/context.d.ts +1 -1
  28. package/dist/types-ts4.5/components/NestableNavigationContent/nesting-motion.d.ts +2 -2
  29. package/dist/types-ts4.5/components/NestingItem/hack-for-ert.d.ts +1 -1
  30. package/dist/types-ts4.5/components/NestingItem/index.d.ts +1 -1
  31. package/dist/types-ts4.5/components/NestingItem/styles.d.ts +1 -1
  32. package/dist/types-ts4.5/components/Section/heading-item.d.ts +1 -1
  33. package/dist/types-ts4.5/components/Section/skeleton-heading-item.d.ts +1 -1
  34. package/dist/types-ts4.5/components/utils/hooks.d.ts +1 -1
  35. package/docs/ert/footer.tsx +1 -1
  36. package/package.json +8 -4
@@ -30,6 +30,9 @@
30
30
  {
31
31
  "path": "../../motion/afm-cc/tsconfig.json"
32
32
  },
33
+ {
34
+ "path": "../../../platform/feature-flags/afm-cc/tsconfig.json"
35
+ },
33
36
  {
34
37
  "path": "../../primitives/afm-cc/tsconfig.json"
35
38
  },
@@ -0,0 +1,43 @@
1
+ {
2
+ "extends": "../../../../tsconfig.products.json",
3
+ "compilerOptions": {
4
+ "declaration": true,
5
+ "target": "es5",
6
+ "outDir": "../../../../../tsDist/@atlaskit__side-navigation/app",
7
+ "composite": true,
8
+ "rootDir": "../",
9
+ "baseUrl": "../"
10
+ },
11
+ "include": [
12
+ "../src/**/*.ts",
13
+ "../src/**/*.tsx"
14
+ ],
15
+ "exclude": [
16
+ "../src/**/__tests__/*",
17
+ "../src/**/*.test.*",
18
+ "../src/**/test.*"
19
+ ],
20
+ "references": [
21
+ {
22
+ "path": "../../ds-lib/afm-jira/tsconfig.json"
23
+ },
24
+ {
25
+ "path": "../../icon/afm-jira/tsconfig.json"
26
+ },
27
+ {
28
+ "path": "../../menu/afm-jira/tsconfig.json"
29
+ },
30
+ {
31
+ "path": "../../motion/afm-jira/tsconfig.json"
32
+ },
33
+ {
34
+ "path": "../../primitives/afm-jira/tsconfig.json"
35
+ },
36
+ {
37
+ "path": "../../theme/afm-jira/tsconfig.json"
38
+ },
39
+ {
40
+ "path": "../../tokens/afm-jira/tsconfig.json"
41
+ }
42
+ ]
43
+ }
@@ -1,11 +1,12 @@
1
- import { NodePath } from 'ast-types/lib/node-path';
2
- import core, {
3
- API,
4
- ASTPath,
5
- FileInfo,
6
- ImportDeclaration,
7
- ImportSpecifier,
8
- Options,
1
+ import { type NodePath } from 'ast-types/lib/node-path';
2
+ import {
3
+ type API,
4
+ type ASTPath,
5
+ type default as core,
6
+ type FileInfo,
7
+ type ImportDeclaration,
8
+ type ImportSpecifier,
9
+ type Options,
9
10
  } from 'jscodeshift';
10
11
 
11
12
  import {
@@ -1,15 +1,16 @@
1
- import { NodePath } from 'ast-types/lib/node-path';
2
- import core, {
3
- ASTPath,
4
- ImportDeclaration,
5
- ImportDefaultSpecifier,
6
- ImportSpecifier,
7
- JSXAttribute,
8
- JSXElement,
9
- Node,
10
- Program,
1
+ import { type NodePath } from 'ast-types/lib/node-path';
2
+ import {
3
+ type ASTPath,
4
+ type default as core,
5
+ type ImportDeclaration,
6
+ type ImportDefaultSpecifier,
7
+ type ImportSpecifier,
8
+ type JSXAttribute,
9
+ type JSXElement,
10
+ type Node,
11
+ type Program,
11
12
  } from 'jscodeshift';
12
- import { Collection } from 'jscodeshift/src/Collection';
13
+ import { type Collection } from 'jscodeshift/src/Collection';
13
14
 
14
15
  export type Nullable<T> = T | null;
15
16
 
@@ -10,12 +10,15 @@ var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends")
10
10
  var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
11
11
  var _react = require("react");
12
12
  var _react2 = require("@emotion/react");
13
+ var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
13
14
  var _colors = require("@atlaskit/theme/colors");
14
15
  var _styles = require("../../common/styles");
15
16
  var _Item = require("../Item");
16
17
  var _excluded = ["children", "data-testid"],
17
18
  _excluded2 = ["children"];
18
19
  /** @jsx jsx */
20
+ 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; }
21
+ 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; }
19
22
  var containerStyles = (0, _react2.css)({
20
23
  display: 'block',
21
24
  position: 'relative'
@@ -67,12 +70,15 @@ var Header = /*#__PURE__*/(0, _react.forwardRef)(function (props, ref) {
67
70
  var _ref3;
68
71
  return _ref3 = {
69
72
  userSelect: 'auto'
70
- }, (0, _defineProperty2.default)(_ref3, '[data-item-title]', {
73
+ }, (0, _defineProperty2.default)(_ref3, '[data-item-title]', _objectSpread(_objectSpread({}, (0, _platformFeatureFlags.getBooleanFF)('platform.design-system-team.side-navigation-tokenised-typography-styles') ? {
74
+ font: "var(--ds-font-heading-xsmall, normal 600 14px/16px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif)"
75
+ } : {
71
76
  fontSize: '0.875rem',
72
77
  letterSpacing: '-0.003em',
73
- fontWeight: "var(--ds-font-weight-semibold, 600)",
78
+ fontWeight: "var(--ds-font-weight-semibold, 600)"
79
+ }), {}, {
74
80
  color: "var(--ds-text, ".concat(_colors.N500, ")")
75
- }), (0, _defineProperty2.default)(_ref3, 'div&:hover', {
81
+ })), (0, _defineProperty2.default)(_ref3, 'div&:hover', {
76
82
  backgroundColor: "var(--ds-background-neutral-subtle, transparent)",
77
83
  cursor: 'default'
78
84
  }), (0, _defineProperty2.default)(_ref3, 'div&:active', {
@@ -2,6 +2,7 @@ import _extends from "@babel/runtime/helpers/extends";
2
2
  /** @jsx jsx */
3
3
  import { forwardRef } from 'react';
4
4
  import { css, jsx } from '@emotion/react';
5
+ import { getBooleanFF } from '@atlaskit/platform-feature-flags';
5
6
  import { N500 } from '@atlaskit/theme/colors';
6
7
  import { overrideStyleFunction } from '../../common/styles';
7
8
  import { CustomItem } from '../Item';
@@ -55,9 +56,13 @@ const Header = /*#__PURE__*/forwardRef((props, ref) => {
55
56
  const cssFn = overrideStyleFunction(() => ({
56
57
  userSelect: 'auto',
57
58
  ['[data-item-title]']: {
58
- fontSize: '0.875rem',
59
- letterSpacing: '-0.003em',
60
- fontWeight: "var(--ds-font-weight-semibold, 600)",
59
+ ...(getBooleanFF('platform.design-system-team.side-navigation-tokenised-typography-styles') ? {
60
+ font: "var(--ds-font-heading-xsmall, normal 600 14px/16px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif)"
61
+ } : {
62
+ fontSize: '0.875rem',
63
+ letterSpacing: '-0.003em',
64
+ fontWeight: "var(--ds-font-weight-semibold, 600)"
65
+ }),
61
66
  color: `var(--ds-text, ${N500})`
62
67
  },
63
68
  // Will look interactive if the `component` is anything other than a div.
@@ -3,9 +3,12 @@ import _extends from "@babel/runtime/helpers/extends";
3
3
  import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
4
4
  var _excluded = ["children", "data-testid"],
5
5
  _excluded2 = ["children"];
6
+ 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; }
7
+ 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; }
6
8
  /** @jsx jsx */
7
9
  import { forwardRef } from 'react';
8
10
  import { css, jsx } from '@emotion/react';
11
+ import { getBooleanFF } from '@atlaskit/platform-feature-flags';
9
12
  import { N500 } from '@atlaskit/theme/colors';
10
13
  import { overrideStyleFunction } from '../../common/styles';
11
14
  import { CustomItem } from '../Item';
@@ -60,12 +63,15 @@ var Header = /*#__PURE__*/forwardRef(function (props, ref) {
60
63
  var _ref3;
61
64
  return _ref3 = {
62
65
  userSelect: 'auto'
63
- }, _defineProperty(_ref3, '[data-item-title]', {
66
+ }, _defineProperty(_ref3, '[data-item-title]', _objectSpread(_objectSpread({}, getBooleanFF('platform.design-system-team.side-navigation-tokenised-typography-styles') ? {
67
+ font: "var(--ds-font-heading-xsmall, normal 600 14px/16px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif)"
68
+ } : {
64
69
  fontSize: '0.875rem',
65
70
  letterSpacing: '-0.003em',
66
- fontWeight: "var(--ds-font-weight-semibold, 600)",
71
+ fontWeight: "var(--ds-font-weight-semibold, 600)"
72
+ }), {}, {
67
73
  color: "var(--ds-text, ".concat(N500, ")")
68
- }), _defineProperty(_ref3, 'div&:hover', {
74
+ })), _defineProperty(_ref3, 'div&:hover', {
69
75
  backgroundColor: "var(--ds-background-neutral-subtle, transparent)",
70
76
  cursor: 'default'
71
77
  }), _defineProperty(_ref3, 'div&:active', {
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- import { ButtonItemProps } from '@atlaskit/menu';
2
+ import { type ButtonItemProps } from '@atlaskit/menu';
3
3
  export type { ButtonItemProps } from '@atlaskit/menu';
4
4
  /**
5
5
  * __Button item__
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
- import { CustomItemComponentProps, CustomItemProps } from '@atlaskit/menu';
2
+ import { type CustomItemComponentProps, type CustomItemProps } from '@atlaskit/menu';
3
3
  export type { CustomItemComponentProps, CustomItemProps } from '@atlaskit/menu';
4
4
  interface CustomItemPropsHack {
5
5
  <TComponentProps extends {}>(props: CustomItemProps<TComponentProps> & {
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- import { LinkItemProps } from '@atlaskit/menu';
2
+ import { type LinkItemProps } from '@atlaskit/menu';
3
3
  export type { LinkItemProps } from '@atlaskit/menu';
4
4
  /**
5
5
  * __Link item__
@@ -1,5 +1,5 @@
1
1
  /** @jsx jsx */
2
- import { HTMLAttributes } from 'react';
2
+ import { type HTMLAttributes } from 'react';
3
3
  export interface NavigationContentProps {
4
4
  children: React.ReactNode;
5
5
  /**
@@ -1,4 +1,4 @@
1
- import { ReactNode } from 'react';
1
+ import { type ReactNode } from 'react';
2
2
  export interface NavigationFooterProps {
3
3
  children: ReactNode;
4
4
  }
@@ -1,4 +1,4 @@
1
- import { MutableRefObject } from 'react';
1
+ import { type MutableRefObject } from 'react';
2
2
  /**
3
3
  * @internal
4
4
  */
@@ -1,7 +1,7 @@
1
1
  /** @jsx jsx */
2
- import { Ref } from 'react';
2
+ import { type Ref } from 'react';
3
3
  import { jsx } from '@emotion/react';
4
- import { Direction } from '@atlaskit/motion';
4
+ import { type Direction } from '@atlaskit/motion';
5
5
  interface ChildrenAsFunctionProps {
6
6
  'data-enter-from': string;
7
7
  'data-exit-to': string;
@@ -1,2 +1,2 @@
1
- import { NestingItemProps } from './index';
1
+ import { type NestingItemProps } from './index';
2
2
  export default function (_: NestingItemProps): void;
@@ -1,6 +1,6 @@
1
1
  /** @jsx jsx */
2
2
  import React from 'react';
3
- import { CSSFn, CustomItemComponentProps, Overrides } from '@atlaskit/menu';
3
+ import { type CSSFn, type CustomItemComponentProps, type Overrides } from '@atlaskit/menu';
4
4
  interface NestingItemOverrides extends Overrides {
5
5
  /**
6
6
  * Use this to override the back button displayed when navigation is nested.
@@ -1,4 +1,4 @@
1
- import { CSSFn } from '@atlaskit/menu';
1
+ import { type CSSFn } from '@atlaskit/menu';
2
2
  export declare const enabledCSS: {
3
3
  "&:hover [data-custom-icon]": {
4
4
  display: string;
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
- import { HeadingItemProps } from '@atlaskit/menu';
2
+ import { type HeadingItemProps } from '@atlaskit/menu';
3
3
  export type { HeadingItemProps } from '@atlaskit/menu';
4
4
  /**
5
5
  * __Heading item__
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
- import { SkeletonHeadingItemProps } from '@atlaskit/menu';
2
+ import { type SkeletonHeadingItemProps } from '@atlaskit/menu';
3
3
  export type { SkeletonHeadingItemProps } from '@atlaskit/menu';
4
4
  /**
5
5
  * __Skeleton heading item__
@@ -1,4 +1,4 @@
1
- import { MutableRefObject } from 'react';
1
+ import { type MutableRefObject } from 'react';
2
2
  export declare const useChildIds: (currentStackId: string, committedStack: string[], onUnknownNest?: ((stack: string[]) => void) | undefined) => {
3
3
  childIdsRef: MutableRefObject<Set<string>>;
4
4
  };
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- import { ButtonItemProps } from '@atlaskit/menu';
2
+ import { type ButtonItemProps } from '@atlaskit/menu';
3
3
  export type { ButtonItemProps } from '@atlaskit/menu';
4
4
  /**
5
5
  * __Button item__
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
- import { CustomItemComponentProps, CustomItemProps } from '@atlaskit/menu';
2
+ import { type CustomItemComponentProps, type CustomItemProps } from '@atlaskit/menu';
3
3
  export type { CustomItemComponentProps, CustomItemProps } from '@atlaskit/menu';
4
4
  interface CustomItemPropsHack {
5
5
  <TComponentProps extends {}>(props: CustomItemProps<TComponentProps> & {
@@ -1,5 +1,5 @@
1
1
  import React from 'react';
2
- import { LinkItemProps } from '@atlaskit/menu';
2
+ import { type LinkItemProps } from '@atlaskit/menu';
3
3
  export type { LinkItemProps } from '@atlaskit/menu';
4
4
  /**
5
5
  * __Link item__
@@ -1,5 +1,5 @@
1
1
  /** @jsx jsx */
2
- import { HTMLAttributes } from 'react';
2
+ import { type HTMLAttributes } from 'react';
3
3
  export interface NavigationContentProps {
4
4
  children: React.ReactNode;
5
5
  /**
@@ -1,4 +1,4 @@
1
- import { ReactNode } from 'react';
1
+ import { type ReactNode } from 'react';
2
2
  export interface NavigationFooterProps {
3
3
  children: ReactNode;
4
4
  }
@@ -1,4 +1,4 @@
1
- import { MutableRefObject } from 'react';
1
+ import { type MutableRefObject } from 'react';
2
2
  /**
3
3
  * @internal
4
4
  */
@@ -1,7 +1,7 @@
1
1
  /** @jsx jsx */
2
- import { Ref } from 'react';
2
+ import { type Ref } from 'react';
3
3
  import { jsx } from '@emotion/react';
4
- import { Direction } from '@atlaskit/motion';
4
+ import { type Direction } from '@atlaskit/motion';
5
5
  interface ChildrenAsFunctionProps {
6
6
  'data-enter-from': string;
7
7
  'data-exit-to': string;
@@ -1,2 +1,2 @@
1
- import { NestingItemProps } from './index';
1
+ import { type NestingItemProps } from './index';
2
2
  export default function (_: NestingItemProps): void;
@@ -1,6 +1,6 @@
1
1
  /** @jsx jsx */
2
2
  import React from 'react';
3
- import { CSSFn, CustomItemComponentProps, Overrides } from '@atlaskit/menu';
3
+ import { type CSSFn, type CustomItemComponentProps, type Overrides } from '@atlaskit/menu';
4
4
  interface NestingItemOverrides extends Overrides {
5
5
  /**
6
6
  * Use this to override the back button displayed when navigation is nested.
@@ -1,4 +1,4 @@
1
- import { CSSFn } from '@atlaskit/menu';
1
+ import { type CSSFn } from '@atlaskit/menu';
2
2
  export declare const enabledCSS: {
3
3
  "&:hover [data-custom-icon]": {
4
4
  display: string;
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
- import { HeadingItemProps } from '@atlaskit/menu';
2
+ import { type HeadingItemProps } from '@atlaskit/menu';
3
3
  export type { HeadingItemProps } from '@atlaskit/menu';
4
4
  /**
5
5
  * __Heading item__
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
- import { SkeletonHeadingItemProps } from '@atlaskit/menu';
2
+ import { type SkeletonHeadingItemProps } from '@atlaskit/menu';
3
3
  export type { SkeletonHeadingItemProps } from '@atlaskit/menu';
4
4
  /**
5
5
  * __Skeleton heading item__
@@ -1,4 +1,4 @@
1
- import { MutableRefObject } from 'react';
1
+ import { type MutableRefObject } from 'react';
2
2
  export declare const useChildIds: (currentStackId: string, committedStack: string[], onUnknownNest?: ((stack: string[]) => void) | undefined) => {
3
3
  childIdsRef: MutableRefObject<Set<string>>;
4
4
  };
@@ -2,7 +2,7 @@
2
2
  /* eslint-disable @repo/internal/react/boolean-prop-naming-convention */
3
3
  /* eslint-disable @repo/internal/react/consistent-props-definitions */
4
4
 
5
- import { HeaderProps } from '../../src/components/Header';
5
+ import { type HeaderProps } from '../../src/components/Header';
6
6
 
7
7
  interface FooterProps extends HeaderProps {
8
8
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/side-navigation",
3
- "version": "3.1.3",
3
+ "version": "3.2.0",
4
4
  "description": "A highly composable side navigation component that supports nested views.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -34,7 +34,8 @@
34
34
  "@atlaskit/icon": "^22.3.0",
35
35
  "@atlaskit/menu": "^2.3.0",
36
36
  "@atlaskit/motion": "^1.6.0",
37
- "@atlaskit/primitives": "^6.3.0",
37
+ "@atlaskit/platform-feature-flags": "^0.2.5",
38
+ "@atlaskit/primitives": "^6.4.0",
38
39
  "@atlaskit/theme": "^12.8.0",
39
40
  "@atlaskit/tokens": "^1.49.0",
40
41
  "@babel/runtime": "^7.0.0",
@@ -48,7 +49,6 @@
48
49
  "@af/integration-testing": "*",
49
50
  "@af/visual-regression": "*",
50
51
  "@atlaskit/visual-regression": "*",
51
- "@atlassian/atlassian-frontend-prettier-config-1.0.1": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.1",
52
52
  "@atlassian/feature-flags-test-utils": "*",
53
53
  "@testing-library/react": "^12.1.5",
54
54
  "@types/jest-axe": "^3.5.5",
@@ -90,5 +90,9 @@
90
90
  }
91
91
  },
92
92
  "homepage": "https://atlassian.design/components/side-navigation/",
93
- "prettier": "@atlassian/atlassian-frontend-prettier-config-1.0.1"
93
+ "platform-feature-flags": {
94
+ "platform.design-system-team.side-navigation-tokenised-typography-styles": {
95
+ "type": "boolean"
96
+ }
97
+ }
94
98
  }