@atlaskit/tokens 1.43.1 → 1.44.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 (50) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/codemods/hypermod.config.tsx +2 -0
  3. package/codemods/remove-fallbacks-color/transform.tsx +26 -0
  4. package/dist/cjs/artifacts/replacement-mapping.js +1 -7
  5. package/dist/cjs/artifacts/themes/atlassian-typography-adg3.js +2 -2
  6. package/dist/cjs/artifacts/themes/atlassian-typography-minor3.js +2 -2
  7. package/dist/cjs/artifacts/token-default-values.js +1 -3
  8. package/dist/cjs/artifacts/token-names.js +1 -3
  9. package/dist/cjs/artifacts/tokens-raw/atlassian-typography-adg3.js +1 -63
  10. package/dist/cjs/artifacts/tokens-raw/atlassian-typography-minor3.js +1 -63
  11. package/dist/cjs/get-token-value.js +1 -1
  12. package/dist/cjs/get-token.js +1 -1
  13. package/dist/es2019/artifacts/replacement-mapping.js +1 -7
  14. package/dist/es2019/artifacts/themes/atlassian-typography-adg3.js +1 -3
  15. package/dist/es2019/artifacts/themes/atlassian-typography-minor3.js +1 -3
  16. package/dist/es2019/artifacts/token-default-values.js +1 -3
  17. package/dist/es2019/artifacts/token-names.js +1 -3
  18. package/dist/es2019/artifacts/tokens-raw/atlassian-typography-adg3.js +1 -63
  19. package/dist/es2019/artifacts/tokens-raw/atlassian-typography-minor3.js +1 -63
  20. package/dist/es2019/get-token-value.js +1 -1
  21. package/dist/es2019/get-token.js +1 -1
  22. package/dist/esm/artifacts/replacement-mapping.js +1 -7
  23. package/dist/esm/artifacts/themes/atlassian-typography-adg3.js +2 -2
  24. package/dist/esm/artifacts/themes/atlassian-typography-minor3.js +2 -2
  25. package/dist/esm/artifacts/token-default-values.js +1 -3
  26. package/dist/esm/artifacts/token-names.js +1 -3
  27. package/dist/esm/artifacts/tokens-raw/atlassian-typography-adg3.js +1 -63
  28. package/dist/esm/artifacts/tokens-raw/atlassian-typography-minor3.js +1 -63
  29. package/dist/esm/get-token-value.js +1 -1
  30. package/dist/esm/get-token.js +1 -1
  31. package/dist/types/artifacts/replacement-mapping.d.ts +1 -1
  32. package/dist/types/artifacts/themes/atlassian-typography-adg3.d.ts +2 -2
  33. package/dist/types/artifacts/themes/atlassian-typography-minor3.d.ts +2 -2
  34. package/dist/types/artifacts/token-default-values.d.ts +1 -3
  35. package/dist/types/artifacts/token-names.d.ts +1 -5
  36. package/dist/types/artifacts/tokens-raw/atlassian-typography-adg3.d.ts +1 -34
  37. package/dist/types/artifacts/tokens-raw/atlassian-typography-minor3.d.ts +1 -34
  38. package/dist/types/types.d.ts +0 -4
  39. package/dist/types-ts4.5/artifacts/replacement-mapping.d.ts +1 -1
  40. package/dist/types-ts4.5/artifacts/themes/atlassian-typography-adg3.d.ts +2 -2
  41. package/dist/types-ts4.5/artifacts/themes/atlassian-typography-minor3.d.ts +2 -2
  42. package/dist/types-ts4.5/artifacts/token-default-values.d.ts +1 -3
  43. package/dist/types-ts4.5/artifacts/token-names.d.ts +1 -5
  44. package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-typography-adg3.d.ts +1 -34
  45. package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-typography-minor3.d.ts +1 -34
  46. package/dist/types-ts4.5/types.d.ts +0 -4
  47. package/package.json +6 -5
  48. package/codemods/css-to-design-tokens/__tests__/css-to-design-tokens.test.tsx +0 -489
  49. package/codemods/css-to-design-tokens/__tests__/utils.test.tsx +0 -145
  50. package/codemods/theme-to-design-tokens/__tests__/theme-to-design-tokens.test.tsx +0 -1104
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @atlaskit/tokens
2
2
 
3
+ ## 1.44.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#94487](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/94487) [`9c81d48cda91`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/9c81d48cda91) - Removed deprecated experimental `font.ui` tokens. These experimental tokens were not documented and not intended for use. The `font.body` tokens should be used instead.
8
+
9
+ ## 1.43.2
10
+
11
+ ### Patch Changes
12
+
13
+ - [#94316](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/94316) [`35fd5ed8e1d7`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/35fd5ed8e1d7) - Upgrading internal dependency `bind-event-listener` to `@^3.0.0`
14
+
3
15
  ## 1.43.1
4
16
 
5
17
  ### Patch Changes
@@ -1,9 +1,11 @@
1
1
  import cssToDesignTokens from './css-to-design-tokens/transform';
2
+ import removeFallbacksColor from './remove-fallbacks-color/transform';
2
3
  import themeToDesignTokens from './theme-to-design-tokens/transform';
3
4
 
4
5
  export default {
5
6
  presets: {
6
7
  'theme-to-design-tokens': themeToDesignTokens,
7
8
  'css-to-design-tokens': cssToDesignTokens,
9
+ 'remove-fallbacks-color': removeFallbacksColor,
8
10
  },
9
11
  };
@@ -0,0 +1,26 @@
1
+ import { hasImportDeclaration } from '@hypermod/utils';
2
+ import type { API, FileInfo } from 'jscodeshift';
3
+
4
+ export default async function transformer(file: FileInfo, api: API) {
5
+ const j = api.jscodeshift;
6
+ const source = j(file.source);
7
+
8
+ if (!hasImportDeclaration(j, source, '@atlaskit/tokens')) {
9
+ return file.source;
10
+ }
11
+
12
+ source
13
+ .find(j.CallExpression, { callee: { name: 'token' } })
14
+ .forEach((path) => {
15
+ if (
16
+ path.node.arguments.length > 1 &&
17
+ j.StringLiteral.check(path.node.arguments[0]) &&
18
+ /^color\.|elevation/.test(path.node.arguments[0].value)
19
+ ) {
20
+ // Remove the second argument
21
+ path.node.arguments.splice(1, 1);
22
+ }
23
+ });
24
+
25
+ return source.toSource();
26
+ }
@@ -18,19 +18,13 @@ exports.default = void 0;
18
18
  * These changes will then be picked up by our tooling which will attempt to
19
19
  * migrate as many of these renames as possible.
20
20
  *
21
- * @codegen <<SignedSource::8acffd312a339deeb96c1044b1d8291e>>
21
+ * @codegen <<SignedSource::d444e5232c83f7487f44f75fa2b1d331>>
22
22
  * @codegenCommand yarn build tokens
23
23
  */
24
24
 
25
25
  var replacementMapper = [{
26
26
  "path": "border.width.0",
27
27
  "state": "experimental"
28
- }, {
29
- "path": "font.ui.[default]",
30
- "state": "deprecated"
31
- }, {
32
- "path": "font.ui.small",
33
- "state": "deprecated"
34
28
  }, {
35
29
  "path": "font.letterSpacing.0",
36
30
  "state": "deprecated"
@@ -6,7 +6,7 @@ Object.defineProperty(exports, "__esModule", {
6
6
  exports.default = void 0;
7
7
  /**
8
8
  * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
9
- * @codegen <<SignedSource::338bafdd240d21d599f2864ace1663f6>>
9
+ * @codegen <<SignedSource::e5868e67ba2f7772caca669bd410845d>>
10
10
  * @codegenCommand yarn build tokens
11
11
  */
12
- var _default = exports.default = "\nhtml[data-theme~=\"typography:typography-adg3\"] {\n --ds-UNSAFE-textTransformUppercase: uppercase;\n --ds-font-heading-xxlarge: normal 500 2.1875rem/2.5rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-xlarge: normal 600 1.8125rem/2rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-large: normal 500 1.5rem/1.75rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-medium: normal 500 1.25rem/1.5rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-small: normal 600 1rem/1.25rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-xsmall: normal 600 0.875rem/1rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-xxsmall: normal 600 0.75rem/1rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-body-large: normal 400 1rem/1.5rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-body: normal 400 0.875rem/1.25rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-body-small: normal 400 0.6875rem/1rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-body-UNSAFE_small: normal 400 0.75rem/1rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-ui: normal 500 0.875rem/1 ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-ui-small: normal 400 0.6875rem/1 ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-code: normal 400 0.875em/1 ui-monospace, Menlo, \"Segoe UI Mono\", \"Ubuntu Mono\", monospace;\n --ds-font-letterSpacing-0: 0;\n --ds-font-letterSpacing-100: -0.003em;\n --ds-font-letterSpacing-200: -0.006em;\n --ds-font-letterSpacing-300: -0.008em;\n --ds-font-letterSpacing-400: -0.01em;\n --ds-font-family-body: ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-family-code: ui-monospace, Menlo, \"Segoe UI Mono\", \"Ubuntu Mono\", monospace;\n --ds-font-family-heading: ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-family-monospace: ui-monospace, Menlo, \"Segoe UI Mono\", \"Ubuntu Mono\", monospace;\n --ds-font-family-sans: -apple-system, BlinkMacSystemFont, \"Segoe UI\", \"Roboto\", \"Oxygen\", \"Ubuntu\", \"Fira Sans\", \"Droid Sans\", \"Helvetica Neue\", sans-serif;\n --ds-font-family-brand-body: \"Charlie Text\", ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-family-brand-heading: \"Charlie Display\", ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-size-050: 0.6875rem;\n --ds-font-size-075: 0.75rem;\n --ds-font-size-100: 0.875rem;\n --ds-font-size-200: 1rem;\n --ds-font-size-300: 1.25rem;\n --ds-font-size-400: 1.5rem;\n --ds-font-size-500: 1.8125rem;\n --ds-font-size-600: 2.1875rem;\n --ds-font-weight-bold: 700;\n --ds-font-weight-medium: 500;\n --ds-font-weight-regular: 400;\n --ds-font-weight-semibold: 600;\n --ds-font-lineHeight-1: 1;\n --ds-font-lineHeight-100: 1rem;\n --ds-font-lineHeight-200: 1.25rem;\n --ds-font-lineHeight-300: 1.5rem;\n --ds-font-lineHeight-400: 1.75rem;\n --ds-font-lineHeight-500: 2rem;\n --ds-font-lineHeight-600: 2.5rem;\n}\n";
12
+ var _default = exports.default = "\nhtml[data-theme~=\"typography:typography-adg3\"] {\n --ds-UNSAFE-textTransformUppercase: uppercase;\n --ds-font-heading-xxlarge: normal 500 2.1875rem/2.5rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-xlarge: normal 600 1.8125rem/2rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-large: normal 500 1.5rem/1.75rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-medium: normal 500 1.25rem/1.5rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-small: normal 600 1rem/1.25rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-xsmall: normal 600 0.875rem/1rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-xxsmall: normal 600 0.75rem/1rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-body-large: normal 400 1rem/1.5rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-body: normal 400 0.875rem/1.25rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-body-small: normal 400 0.6875rem/1rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-body-UNSAFE_small: normal 400 0.75rem/1rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-code: normal 400 0.875em/1 ui-monospace, Menlo, \"Segoe UI Mono\", \"Ubuntu Mono\", monospace;\n --ds-font-letterSpacing-0: 0;\n --ds-font-letterSpacing-100: -0.003em;\n --ds-font-letterSpacing-200: -0.006em;\n --ds-font-letterSpacing-300: -0.008em;\n --ds-font-letterSpacing-400: -0.01em;\n --ds-font-family-body: ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-family-code: ui-monospace, Menlo, \"Segoe UI Mono\", \"Ubuntu Mono\", monospace;\n --ds-font-family-heading: ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-family-monospace: ui-monospace, Menlo, \"Segoe UI Mono\", \"Ubuntu Mono\", monospace;\n --ds-font-family-sans: -apple-system, BlinkMacSystemFont, \"Segoe UI\", \"Roboto\", \"Oxygen\", \"Ubuntu\", \"Fira Sans\", \"Droid Sans\", \"Helvetica Neue\", sans-serif;\n --ds-font-family-brand-body: \"Charlie Text\", ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-family-brand-heading: \"Charlie Display\", ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-size-050: 0.6875rem;\n --ds-font-size-075: 0.75rem;\n --ds-font-size-100: 0.875rem;\n --ds-font-size-200: 1rem;\n --ds-font-size-300: 1.25rem;\n --ds-font-size-400: 1.5rem;\n --ds-font-size-500: 1.8125rem;\n --ds-font-size-600: 2.1875rem;\n --ds-font-weight-bold: 700;\n --ds-font-weight-medium: 500;\n --ds-font-weight-regular: 400;\n --ds-font-weight-semibold: 600;\n --ds-font-lineHeight-1: 1;\n --ds-font-lineHeight-100: 1rem;\n --ds-font-lineHeight-200: 1.25rem;\n --ds-font-lineHeight-300: 1.5rem;\n --ds-font-lineHeight-400: 1.75rem;\n --ds-font-lineHeight-500: 2rem;\n --ds-font-lineHeight-600: 2.5rem;\n}\n";
@@ -6,7 +6,7 @@ Object.defineProperty(exports, "__esModule", {
6
6
  exports.default = void 0;
7
7
  /**
8
8
  * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
9
- * @codegen <<SignedSource::d694a878208706b13b8d839607a4d667>>
9
+ * @codegen <<SignedSource::bda5042ec3329f01c4b0a5b87bbe0ac3>>
10
10
  * @codegenCommand yarn build tokens
11
11
  */
12
- var _default = exports.default = "\nhtml[data-theme~=\"typography:typography-minor3\"] {\n --ds-UNSAFE-textTransformUppercase: uppercase;\n --ds-font-heading-xxlarge: normal 700 2rem/2.25rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-xlarge: normal 700 1.75rem/2rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-large: normal 700 1.5rem/1.75rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-medium: normal 700 1.25rem/1.5rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-small: normal 700 1rem/1.25rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-xsmall: normal 700 0.875rem/1rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-xxsmall: normal 700 0.75rem/1rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-body-large: normal 400 1rem/1.5rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-body: normal 400 0.875rem/1.25rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-body-small: normal 400 0.75rem/1rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-body-UNSAFE_small: normal 400 0.75rem/1rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-ui: normal 500 0.875rem/1 ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-ui-small: normal 400 0.75rem/1 ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-code: normal 400 0.875em/1 ui-monospace, Menlo, \"Segoe UI Mono\", \"Ubuntu Mono\", monospace;\n --ds-font-letterSpacing-0: 0;\n --ds-font-letterSpacing-100: 0;\n --ds-font-letterSpacing-200: 0;\n --ds-font-letterSpacing-300: 0;\n --ds-font-letterSpacing-400: 0;\n --ds-font-family-body: ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-family-code: ui-monospace, Menlo, \"Segoe UI Mono\", \"Ubuntu Mono\", monospace;\n --ds-font-family-heading: ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-family-monospace: ui-monospace, Menlo, \"Segoe UI Mono\", \"Ubuntu Mono\", monospace;\n --ds-font-family-sans: ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-family-brand-body: \"Charlie Text\", ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-family-brand-heading: \"Charlie Display\", ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-weight-bold: 700;\n --ds-font-weight-medium: 500;\n --ds-font-weight-regular: 400;\n --ds-font-weight-semibold: 600;\n @media not all and (min-width: 64rem) {\n --ds-font-heading-xxlarge: normal 700 1.75rem/2rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-xlarge: normal 700 1.5rem/1.75rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-large: normal 700 1.25rem/1.5rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-medium: normal 700 1rem/1.25rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n }\n}\n";
12
+ var _default = exports.default = "\nhtml[data-theme~=\"typography:typography-minor3\"] {\n --ds-UNSAFE-textTransformUppercase: uppercase;\n --ds-font-heading-xxlarge: normal 700 2rem/2.25rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-xlarge: normal 700 1.75rem/2rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-large: normal 700 1.5rem/1.75rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-medium: normal 700 1.25rem/1.5rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-small: normal 700 1rem/1.25rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-xsmall: normal 700 0.875rem/1rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-xxsmall: normal 700 0.75rem/1rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-body-large: normal 400 1rem/1.5rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-body: normal 400 0.875rem/1.25rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-body-small: normal 400 0.75rem/1rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-body-UNSAFE_small: normal 400 0.75rem/1rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-code: normal 400 0.875em/1 ui-monospace, Menlo, \"Segoe UI Mono\", \"Ubuntu Mono\", monospace;\n --ds-font-letterSpacing-0: 0;\n --ds-font-letterSpacing-100: 0;\n --ds-font-letterSpacing-200: 0;\n --ds-font-letterSpacing-300: 0;\n --ds-font-letterSpacing-400: 0;\n --ds-font-family-body: ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-family-code: ui-monospace, Menlo, \"Segoe UI Mono\", \"Ubuntu Mono\", monospace;\n --ds-font-family-heading: ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-family-monospace: ui-monospace, Menlo, \"Segoe UI Mono\", \"Ubuntu Mono\", monospace;\n --ds-font-family-sans: ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-family-brand-body: \"Charlie Text\", ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-family-brand-heading: \"Charlie Display\", ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-weight-bold: 700;\n --ds-font-weight-medium: 500;\n --ds-font-weight-regular: 400;\n --ds-font-weight-semibold: 600;\n @media not all and (min-width: 64rem) {\n --ds-font-heading-xxlarge: normal 700 1.75rem/2rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-xlarge: normal 700 1.5rem/1.75rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-large: normal 700 1.25rem/1.5rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-medium: normal 700 1rem/1.25rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n }\n}\n";
@@ -13,7 +13,7 @@ exports.default = void 0;
13
13
  * Token names mapped to their value in the default Atlassian themes ('light').
14
14
  * These default values are used by the Babel plugin to optionally provide automatic fallbacks.
15
15
  *
16
- * @codegen <<SignedSource::c68390482f3d13196971786c661680df>>
16
+ * @codegen <<SignedSource::ad01599dac97780efc98bf183c2a4372>>
17
17
  * @codegenCommand yarn build tokens
18
18
  */
19
19
  var defaultTokenValues = {
@@ -452,8 +452,6 @@ var defaultTokenValues = {
452
452
  'font.body': 'normal 400 0.875rem/1.25rem ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, system-ui, "Helvetica Neue", sans-serif',
453
453
  'font.body.small': 'normal 400 0.6875rem/1rem ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, system-ui, "Helvetica Neue", sans-serif',
454
454
  'font.body.UNSAFE_small': 'normal 400 0.75rem/1rem ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, system-ui, "Helvetica Neue", sans-serif',
455
- 'font.ui': 'normal 500 0.875rem/1 ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, system-ui, "Helvetica Neue", sans-serif',
456
- 'font.ui.small': 'normal 400 0.6875rem/1 ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, system-ui, "Helvetica Neue", sans-serif',
457
455
  'font.code': 'normal 400 0.875em/1 ui-monospace, Menlo, "Segoe UI Mono", "Ubuntu Mono", monospace',
458
456
  'font.letterSpacing.0': '0',
459
457
  'font.letterSpacing.100': '-0.003em',
@@ -6,7 +6,7 @@ Object.defineProperty(exports, "__esModule", {
6
6
  exports.default = void 0;
7
7
  /**
8
8
  * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
9
- * @codegen <<SignedSource::5f419e63c7c69054007e886593e3fc45>>
9
+ * @codegen <<SignedSource::4f8c980cdc8766c5383270928294aeac>>
10
10
  * @codegenCommand yarn build tokens
11
11
  */
12
12
  var tokens = {
@@ -445,8 +445,6 @@ var tokens = {
445
445
  'font.body': '--ds-font-body',
446
446
  'font.body.small': '--ds-font-body-small',
447
447
  'font.body.UNSAFE_small': '--ds-font-body-UNSAFE_small',
448
- 'font.ui': '--ds-font-ui',
449
- 'font.ui.small': '--ds-font-ui-small',
450
448
  'font.code': '--ds-font-code',
451
449
  'font.letterSpacing.0': '--ds-font-letterSpacing-0',
452
450
  'font.letterSpacing.100': '--ds-font-letterSpacing-100',
@@ -6,7 +6,7 @@ Object.defineProperty(exports, "__esModule", {
6
6
  exports.default = void 0;
7
7
  /**
8
8
  * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
9
- * @codegen <<SignedSource::293e410a525bc2269873fca060cc05c2>>
9
+ * @codegen <<SignedSource::9979a8f061dbdaddf43d0173981655c2>>
10
10
  * @codegenCommand yarn build tokens
11
11
  */
12
12
  var tokens = [{
@@ -358,68 +358,6 @@ var tokens = [{
358
358
  "name": "font.body.UNSAFE_small",
359
359
  "path": ["font", "body", "UNSAFE_small"],
360
360
  "cleanName": "font.body.UNSAFE_small"
361
- }, {
362
- "attributes": {
363
- "group": "typography",
364
- "state": "deprecated",
365
- "introduced": "1.14.0",
366
- "deprecated": "1.39.0",
367
- "description": "ALPHA - Use with caution. Single-line non-wrapping text like that in a button."
368
- },
369
- "value": "normal 500 14px/1 ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif",
370
- "filePath": "schema/themes/atlassian-typography-adg3/theme.tsx",
371
- "isSource": true,
372
- "original": {
373
- "attributes": {
374
- "group": "typography",
375
- "state": "deprecated",
376
- "introduced": "1.14.0",
377
- "deprecated": "1.39.0",
378
- "description": "ALPHA - Use with caution. Single-line non-wrapping text like that in a button."
379
- },
380
- "value": {
381
- "fontWeight": "FontWeight500",
382
- "fontSize": "FontSize14",
383
- "lineHeight": "LineHeight1",
384
- "fontFamily": "FontFamilyWebSans",
385
- "fontStyle": "normal",
386
- "letterSpacing": "LetterSpacing0"
387
- }
388
- },
389
- "name": "font.ui.[default]",
390
- "path": ["font", "ui", "[default]"],
391
- "cleanName": "font.ui"
392
- }, {
393
- "attributes": {
394
- "group": "typography",
395
- "state": "deprecated",
396
- "introduced": "1.14.0",
397
- "deprecated": "1.39.0",
398
- "description": "ALPHA - Use with caution. Single-line non-wrapping supporting text like that in a smaller label."
399
- },
400
- "value": "normal 400 11px/1 ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif",
401
- "filePath": "schema/themes/atlassian-typography-adg3/theme.tsx",
402
- "isSource": true,
403
- "original": {
404
- "attributes": {
405
- "group": "typography",
406
- "state": "deprecated",
407
- "introduced": "1.14.0",
408
- "deprecated": "1.39.0",
409
- "description": "ALPHA - Use with caution. Single-line non-wrapping supporting text like that in a smaller label."
410
- },
411
- "value": {
412
- "fontWeight": "FontWeight400",
413
- "fontSize": "LegacyFontSize11",
414
- "lineHeight": "LineHeight1",
415
- "fontFamily": "FontFamilyWebSans",
416
- "fontStyle": "normal",
417
- "letterSpacing": "LetterSpacing0"
418
- }
419
- },
420
- "name": "font.ui.small",
421
- "path": ["font", "ui", "small"],
422
- "cleanName": "font.ui.small"
423
361
  }, {
424
362
  "attributes": {
425
363
  "group": "typography",
@@ -6,7 +6,7 @@ Object.defineProperty(exports, "__esModule", {
6
6
  exports.default = void 0;
7
7
  /**
8
8
  * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
9
- * @codegen <<SignedSource::04b3a57c2e9cf4f1ef0a02e239f75362>>
9
+ * @codegen <<SignedSource::9e4504db147308499c5db002a01275ff>>
10
10
  * @codegenCommand yarn build tokens
11
11
  */
12
12
  var tokens = [{
@@ -358,68 +358,6 @@ var tokens = [{
358
358
  "name": "font.body.UNSAFE_small",
359
359
  "path": ["font", "body", "UNSAFE_small"],
360
360
  "cleanName": "font.body.UNSAFE_small"
361
- }, {
362
- "attributes": {
363
- "group": "typography",
364
- "state": "deprecated",
365
- "introduced": "1.14.0",
366
- "deprecated": "1.39.0",
367
- "description": "ALPHA - Use with caution. Single-line non-wrapping text like that in a button."
368
- },
369
- "value": "normal 500 14px/1 ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif",
370
- "filePath": "schema/themes/atlassian-typography-minor3/theme.tsx",
371
- "isSource": true,
372
- "original": {
373
- "attributes": {
374
- "group": "typography",
375
- "state": "deprecated",
376
- "introduced": "1.14.0",
377
- "deprecated": "1.39.0",
378
- "description": "ALPHA - Use with caution. Single-line non-wrapping text like that in a button."
379
- },
380
- "value": {
381
- "fontWeight": "FontWeight500",
382
- "fontSize": "FontSize14",
383
- "lineHeight": "LineHeight1",
384
- "fontFamily": "FontFamilyWebSans",
385
- "fontStyle": "normal",
386
- "letterSpacing": "LetterSpacing0"
387
- }
388
- },
389
- "name": "font.ui.[default]",
390
- "path": ["font", "ui", "[default]"],
391
- "cleanName": "font.ui"
392
- }, {
393
- "attributes": {
394
- "group": "typography",
395
- "state": "deprecated",
396
- "introduced": "1.14.0",
397
- "deprecated": "1.39.0",
398
- "description": "ALPHA - Use with caution. Single-line non-wrapping supporting text like that in a smaller label."
399
- },
400
- "value": "normal 400 12px/1 ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif",
401
- "filePath": "schema/themes/atlassian-typography-minor3/theme.tsx",
402
- "isSource": true,
403
- "original": {
404
- "attributes": {
405
- "group": "typography",
406
- "state": "deprecated",
407
- "introduced": "1.14.0",
408
- "deprecated": "1.39.0",
409
- "description": "ALPHA - Use with caution. Single-line non-wrapping supporting text like that in a smaller label."
410
- },
411
- "value": {
412
- "fontWeight": "FontWeight400",
413
- "fontSize": "FontSize12",
414
- "lineHeight": "LineHeight1",
415
- "fontFamily": "FontFamilyWebSans",
416
- "fontStyle": "normal",
417
- "letterSpacing": "LetterSpacing0"
418
- }
419
- },
420
- "name": "font.ui.small",
421
- "path": ["font", "ui", "small"],
422
- "cleanName": "font.ui.small"
423
361
  }, {
424
362
  "attributes": {
425
363
  "group": "typography",
@@ -8,7 +8,7 @@ exports.default = void 0;
8
8
  var _warnOnce = _interopRequireDefault(require("@atlaskit/ds-lib/warn-once"));
9
9
  var _tokenNames = _interopRequireDefault(require("./artifacts/token-names"));
10
10
  var name = "@atlaskit/tokens";
11
- var version = "1.43.1";
11
+ var version = "1.44.0";
12
12
  /**
13
13
  * Takes a dot-separated token name and and an optional fallback, and returns the current computed CSS value for the
14
14
  * resulting CSS Custom Property.
@@ -9,7 +9,7 @@ var _warnOnce = _interopRequireDefault(require("@atlaskit/ds-lib/warn-once"));
9
9
  var _tokenNames = _interopRequireDefault(require("./artifacts/token-names"));
10
10
  var _constants = require("./constants");
11
11
  var name = "@atlaskit/tokens";
12
- var version = "1.43.1";
12
+ var version = "1.44.0";
13
13
  /**
14
14
  * Takes a dot-separated token name and an optional fallback, and returns the CSS custom property for the corresponding token.
15
15
  * This should be used to implement design decisions throughout your application.
@@ -12,19 +12,13 @@
12
12
  * These changes will then be picked up by our tooling which will attempt to
13
13
  * migrate as many of these renames as possible.
14
14
  *
15
- * @codegen <<SignedSource::8acffd312a339deeb96c1044b1d8291e>>
15
+ * @codegen <<SignedSource::d444e5232c83f7487f44f75fa2b1d331>>
16
16
  * @codegenCommand yarn build tokens
17
17
  */
18
18
 
19
19
  const replacementMapper = [{
20
20
  "path": "border.width.0",
21
21
  "state": "experimental"
22
- }, {
23
- "path": "font.ui.[default]",
24
- "state": "deprecated"
25
- }, {
26
- "path": "font.ui.small",
27
- "state": "deprecated"
28
22
  }, {
29
23
  "path": "font.letterSpacing.0",
30
24
  "state": "deprecated"
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
- * @codegen <<SignedSource::338bafdd240d21d599f2864ace1663f6>>
3
+ * @codegen <<SignedSource::e5868e67ba2f7772caca669bd410845d>>
4
4
  * @codegenCommand yarn build tokens
5
5
  */
6
6
  export default `
@@ -17,8 +17,6 @@ html[data-theme~="typography:typography-adg3"] {
17
17
  --ds-font-body: normal 400 0.875rem/1.25rem ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, system-ui, "Helvetica Neue", sans-serif;
18
18
  --ds-font-body-small: normal 400 0.6875rem/1rem ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, system-ui, "Helvetica Neue", sans-serif;
19
19
  --ds-font-body-UNSAFE_small: normal 400 0.75rem/1rem ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, system-ui, "Helvetica Neue", sans-serif;
20
- --ds-font-ui: normal 500 0.875rem/1 ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, system-ui, "Helvetica Neue", sans-serif;
21
- --ds-font-ui-small: normal 400 0.6875rem/1 ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, system-ui, "Helvetica Neue", sans-serif;
22
20
  --ds-font-code: normal 400 0.875em/1 ui-monospace, Menlo, "Segoe UI Mono", "Ubuntu Mono", monospace;
23
21
  --ds-font-letterSpacing-0: 0;
24
22
  --ds-font-letterSpacing-100: -0.003em;
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
- * @codegen <<SignedSource::d694a878208706b13b8d839607a4d667>>
3
+ * @codegen <<SignedSource::bda5042ec3329f01c4b0a5b87bbe0ac3>>
4
4
  * @codegenCommand yarn build tokens
5
5
  */
6
6
  export default `
@@ -17,8 +17,6 @@ html[data-theme~="typography:typography-minor3"] {
17
17
  --ds-font-body: normal 400 0.875rem/1.25rem ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, system-ui, "Helvetica Neue", sans-serif;
18
18
  --ds-font-body-small: normal 400 0.75rem/1rem ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, system-ui, "Helvetica Neue", sans-serif;
19
19
  --ds-font-body-UNSAFE_small: normal 400 0.75rem/1rem ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, system-ui, "Helvetica Neue", sans-serif;
20
- --ds-font-ui: normal 500 0.875rem/1 ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, system-ui, "Helvetica Neue", sans-serif;
21
- --ds-font-ui-small: normal 400 0.75rem/1 ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, system-ui, "Helvetica Neue", sans-serif;
22
20
  --ds-font-code: normal 400 0.875em/1 ui-monospace, Menlo, "Segoe UI Mono", "Ubuntu Mono", monospace;
23
21
  --ds-font-letterSpacing-0: 0;
24
22
  --ds-font-letterSpacing-100: 0;
@@ -7,7 +7,7 @@
7
7
  * Token names mapped to their value in the default Atlassian themes ('light').
8
8
  * These default values are used by the Babel plugin to optionally provide automatic fallbacks.
9
9
  *
10
- * @codegen <<SignedSource::c68390482f3d13196971786c661680df>>
10
+ * @codegen <<SignedSource::ad01599dac97780efc98bf183c2a4372>>
11
11
  * @codegenCommand yarn build tokens
12
12
  */
13
13
  const defaultTokenValues = {
@@ -446,8 +446,6 @@ const defaultTokenValues = {
446
446
  'font.body': 'normal 400 0.875rem/1.25rem ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, system-ui, "Helvetica Neue", sans-serif',
447
447
  'font.body.small': 'normal 400 0.6875rem/1rem ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, system-ui, "Helvetica Neue", sans-serif',
448
448
  'font.body.UNSAFE_small': 'normal 400 0.75rem/1rem ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, system-ui, "Helvetica Neue", sans-serif',
449
- 'font.ui': 'normal 500 0.875rem/1 ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, system-ui, "Helvetica Neue", sans-serif',
450
- 'font.ui.small': 'normal 400 0.6875rem/1 ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, system-ui, "Helvetica Neue", sans-serif',
451
449
  'font.code': 'normal 400 0.875em/1 ui-monospace, Menlo, "Segoe UI Mono", "Ubuntu Mono", monospace',
452
450
  'font.letterSpacing.0': '0',
453
451
  'font.letterSpacing.100': '-0.003em',
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
- * @codegen <<SignedSource::5f419e63c7c69054007e886593e3fc45>>
3
+ * @codegen <<SignedSource::4f8c980cdc8766c5383270928294aeac>>
4
4
  * @codegenCommand yarn build tokens
5
5
  */
6
6
  const tokens = {
@@ -439,8 +439,6 @@ const tokens = {
439
439
  'font.body': '--ds-font-body',
440
440
  'font.body.small': '--ds-font-body-small',
441
441
  'font.body.UNSAFE_small': '--ds-font-body-UNSAFE_small',
442
- 'font.ui': '--ds-font-ui',
443
- 'font.ui.small': '--ds-font-ui-small',
444
442
  'font.code': '--ds-font-code',
445
443
  'font.letterSpacing.0': '--ds-font-letterSpacing-0',
446
444
  'font.letterSpacing.100': '--ds-font-letterSpacing-100',
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
- * @codegen <<SignedSource::293e410a525bc2269873fca060cc05c2>>
3
+ * @codegen <<SignedSource::9979a8f061dbdaddf43d0173981655c2>>
4
4
  * @codegenCommand yarn build tokens
5
5
  */
6
6
  const tokens = [{
@@ -352,68 +352,6 @@ const tokens = [{
352
352
  "name": "font.body.UNSAFE_small",
353
353
  "path": ["font", "body", "UNSAFE_small"],
354
354
  "cleanName": "font.body.UNSAFE_small"
355
- }, {
356
- "attributes": {
357
- "group": "typography",
358
- "state": "deprecated",
359
- "introduced": "1.14.0",
360
- "deprecated": "1.39.0",
361
- "description": "ALPHA - Use with caution. Single-line non-wrapping text like that in a button."
362
- },
363
- "value": "normal 500 14px/1 ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif",
364
- "filePath": "schema/themes/atlassian-typography-adg3/theme.tsx",
365
- "isSource": true,
366
- "original": {
367
- "attributes": {
368
- "group": "typography",
369
- "state": "deprecated",
370
- "introduced": "1.14.0",
371
- "deprecated": "1.39.0",
372
- "description": "ALPHA - Use with caution. Single-line non-wrapping text like that in a button."
373
- },
374
- "value": {
375
- "fontWeight": "FontWeight500",
376
- "fontSize": "FontSize14",
377
- "lineHeight": "LineHeight1",
378
- "fontFamily": "FontFamilyWebSans",
379
- "fontStyle": "normal",
380
- "letterSpacing": "LetterSpacing0"
381
- }
382
- },
383
- "name": "font.ui.[default]",
384
- "path": ["font", "ui", "[default]"],
385
- "cleanName": "font.ui"
386
- }, {
387
- "attributes": {
388
- "group": "typography",
389
- "state": "deprecated",
390
- "introduced": "1.14.0",
391
- "deprecated": "1.39.0",
392
- "description": "ALPHA - Use with caution. Single-line non-wrapping supporting text like that in a smaller label."
393
- },
394
- "value": "normal 400 11px/1 ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif",
395
- "filePath": "schema/themes/atlassian-typography-adg3/theme.tsx",
396
- "isSource": true,
397
- "original": {
398
- "attributes": {
399
- "group": "typography",
400
- "state": "deprecated",
401
- "introduced": "1.14.0",
402
- "deprecated": "1.39.0",
403
- "description": "ALPHA - Use with caution. Single-line non-wrapping supporting text like that in a smaller label."
404
- },
405
- "value": {
406
- "fontWeight": "FontWeight400",
407
- "fontSize": "LegacyFontSize11",
408
- "lineHeight": "LineHeight1",
409
- "fontFamily": "FontFamilyWebSans",
410
- "fontStyle": "normal",
411
- "letterSpacing": "LetterSpacing0"
412
- }
413
- },
414
- "name": "font.ui.small",
415
- "path": ["font", "ui", "small"],
416
- "cleanName": "font.ui.small"
417
355
  }, {
418
356
  "attributes": {
419
357
  "group": "typography",
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
- * @codegen <<SignedSource::04b3a57c2e9cf4f1ef0a02e239f75362>>
3
+ * @codegen <<SignedSource::9e4504db147308499c5db002a01275ff>>
4
4
  * @codegenCommand yarn build tokens
5
5
  */
6
6
  const tokens = [{
@@ -352,68 +352,6 @@ const tokens = [{
352
352
  "name": "font.body.UNSAFE_small",
353
353
  "path": ["font", "body", "UNSAFE_small"],
354
354
  "cleanName": "font.body.UNSAFE_small"
355
- }, {
356
- "attributes": {
357
- "group": "typography",
358
- "state": "deprecated",
359
- "introduced": "1.14.0",
360
- "deprecated": "1.39.0",
361
- "description": "ALPHA - Use with caution. Single-line non-wrapping text like that in a button."
362
- },
363
- "value": "normal 500 14px/1 ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif",
364
- "filePath": "schema/themes/atlassian-typography-minor3/theme.tsx",
365
- "isSource": true,
366
- "original": {
367
- "attributes": {
368
- "group": "typography",
369
- "state": "deprecated",
370
- "introduced": "1.14.0",
371
- "deprecated": "1.39.0",
372
- "description": "ALPHA - Use with caution. Single-line non-wrapping text like that in a button."
373
- },
374
- "value": {
375
- "fontWeight": "FontWeight500",
376
- "fontSize": "FontSize14",
377
- "lineHeight": "LineHeight1",
378
- "fontFamily": "FontFamilyWebSans",
379
- "fontStyle": "normal",
380
- "letterSpacing": "LetterSpacing0"
381
- }
382
- },
383
- "name": "font.ui.[default]",
384
- "path": ["font", "ui", "[default]"],
385
- "cleanName": "font.ui"
386
- }, {
387
- "attributes": {
388
- "group": "typography",
389
- "state": "deprecated",
390
- "introduced": "1.14.0",
391
- "deprecated": "1.39.0",
392
- "description": "ALPHA - Use with caution. Single-line non-wrapping supporting text like that in a smaller label."
393
- },
394
- "value": "normal 400 12px/1 ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif",
395
- "filePath": "schema/themes/atlassian-typography-minor3/theme.tsx",
396
- "isSource": true,
397
- "original": {
398
- "attributes": {
399
- "group": "typography",
400
- "state": "deprecated",
401
- "introduced": "1.14.0",
402
- "deprecated": "1.39.0",
403
- "description": "ALPHA - Use with caution. Single-line non-wrapping supporting text like that in a smaller label."
404
- },
405
- "value": {
406
- "fontWeight": "FontWeight400",
407
- "fontSize": "FontSize12",
408
- "lineHeight": "LineHeight1",
409
- "fontFamily": "FontFamilyWebSans",
410
- "fontStyle": "normal",
411
- "letterSpacing": "LetterSpacing0"
412
- }
413
- },
414
- "name": "font.ui.small",
415
- "path": ["font", "ui", "small"],
416
- "cleanName": "font.ui.small"
417
355
  }, {
418
356
  "attributes": {
419
357
  "group": "typography",
@@ -1,7 +1,7 @@
1
1
  import warnOnce from '@atlaskit/ds-lib/warn-once';
2
2
  import tokens from './artifacts/token-names';
3
3
  const name = "@atlaskit/tokens";
4
- const version = "1.43.1";
4
+ const version = "1.44.0";
5
5
  /**
6
6
  * Takes a dot-separated token name and and an optional fallback, and returns the current computed CSS value for the
7
7
  * resulting CSS Custom Property.
@@ -2,7 +2,7 @@ import warnOnce from '@atlaskit/ds-lib/warn-once';
2
2
  import tokens from './artifacts/token-names';
3
3
  import { TOKEN_NOT_FOUND_CSS_VAR } from './constants';
4
4
  const name = "@atlaskit/tokens";
5
- const version = "1.43.1";
5
+ const version = "1.44.0";
6
6
  /**
7
7
  * Takes a dot-separated token name and an optional fallback, and returns the CSS custom property for the corresponding token.
8
8
  * This should be used to implement design decisions throughout your application.