@atlaskit/tokens 1.25.2 → 1.26.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/dist/cjs/artifacts/palettes-raw/legacy-palette.js +119 -119
- package/dist/cjs/artifacts/palettes-raw/palette.js +133 -133
- package/dist/cjs/artifacts/palettes-raw/shape-palette.js +11 -11
- package/dist/cjs/artifacts/palettes-raw/spacing-scale.js +24 -24
- package/dist/cjs/artifacts/palettes-raw/typography-palette.js +40 -40
- package/dist/cjs/artifacts/palettes-raw/updated-saturated-palette.js +133 -133
- package/dist/cjs/artifacts/theme-import-map.js +13 -1
- package/dist/cjs/artifacts/themes/atlassian-dark-increased-contrast.js +12 -0
- package/dist/cjs/artifacts/themes/atlassian-light-increased-contrast.js +12 -0
- package/dist/cjs/artifacts/tokens-raw/atlassian-dark-increased-contrast.js +8687 -0
- package/dist/cjs/artifacts/tokens-raw/atlassian-dark-new-input-border.js +2 -2
- package/dist/cjs/artifacts/tokens-raw/atlassian-dark-saturated-palette-changes.js +389 -389
- package/dist/cjs/artifacts/tokens-raw/atlassian-dark.js +389 -389
- package/dist/cjs/artifacts/tokens-raw/atlassian-legacy-dark.js +389 -389
- package/dist/cjs/artifacts/tokens-raw/atlassian-legacy-light.js +389 -389
- package/dist/cjs/artifacts/tokens-raw/atlassian-light-increased-contrast.js +8653 -0
- package/dist/cjs/artifacts/tokens-raw/atlassian-light-new-input-border.js +2 -2
- package/dist/cjs/artifacts/tokens-raw/atlassian-light-saturated-palette-changes.js +389 -389
- package/dist/cjs/artifacts/tokens-raw/atlassian-light.js +389 -389
- package/dist/cjs/artifacts/tokens-raw/atlassian-shape.js +12 -12
- package/dist/cjs/artifacts/tokens-raw/atlassian-spacing.js +24 -24
- package/dist/cjs/artifacts/tokens-raw/atlassian-typography-adg3.js +45 -45
- package/dist/cjs/artifacts/tokens-raw/atlassian-typography-minor3.js +26 -26
- package/dist/cjs/artifacts/tokens-raw/atlassian-typography.js +25 -25
- package/dist/cjs/constants.js +2 -1
- package/dist/cjs/enable-global-theme.js +3 -0
- package/dist/cjs/get-ssr-auto-script.js +8 -2
- package/dist/cjs/get-theme-html-attrs.js +9 -0
- package/dist/cjs/get-theme-styles.js +9 -0
- package/dist/cjs/get-token-value.js +1 -1
- package/dist/cjs/get-token.js +1 -1
- package/dist/cjs/set-global-theme.js +35 -20
- package/dist/cjs/theme-config.js +29 -2
- package/dist/cjs/utils/configure-page.js +16 -1
- package/dist/cjs/utils/contrast-mode-listeners.js +65 -0
- package/dist/cjs/utils/get-increased-contrast-theme.js +20 -0
- package/dist/cjs/utils/get-theme-preferences.js +23 -1
- package/dist/cjs/utils/theme-loading.js +3 -2
- package/dist/es2019/artifacts/palettes-raw/legacy-palette.js +119 -119
- package/dist/es2019/artifacts/palettes-raw/palette.js +133 -133
- package/dist/es2019/artifacts/palettes-raw/shape-palette.js +11 -11
- package/dist/es2019/artifacts/palettes-raw/spacing-scale.js +24 -24
- package/dist/es2019/artifacts/palettes-raw/typography-palette.js +40 -40
- package/dist/es2019/artifacts/palettes-raw/updated-saturated-palette.js +133 -133
- package/dist/es2019/artifacts/theme-import-map.js +5 -1
- package/dist/es2019/artifacts/themes/atlassian-dark-increased-contrast.js +401 -0
- package/dist/es2019/artifacts/themes/atlassian-light-increased-contrast.js +401 -0
- package/dist/es2019/artifacts/tokens-raw/atlassian-dark-increased-contrast.js +8681 -0
- package/dist/es2019/artifacts/tokens-raw/atlassian-dark-new-input-border.js +2 -2
- package/dist/es2019/artifacts/tokens-raw/atlassian-dark-saturated-palette-changes.js +389 -389
- package/dist/es2019/artifacts/tokens-raw/atlassian-dark.js +389 -389
- package/dist/es2019/artifacts/tokens-raw/atlassian-legacy-dark.js +389 -389
- package/dist/es2019/artifacts/tokens-raw/atlassian-legacy-light.js +389 -389
- package/dist/es2019/artifacts/tokens-raw/atlassian-light-increased-contrast.js +8647 -0
- package/dist/es2019/artifacts/tokens-raw/atlassian-light-new-input-border.js +2 -2
- package/dist/es2019/artifacts/tokens-raw/atlassian-light-saturated-palette-changes.js +389 -389
- package/dist/es2019/artifacts/tokens-raw/atlassian-light.js +389 -389
- package/dist/es2019/artifacts/tokens-raw/atlassian-shape.js +12 -12
- package/dist/es2019/artifacts/tokens-raw/atlassian-spacing.js +24 -24
- package/dist/es2019/artifacts/tokens-raw/atlassian-typography-adg3.js +45 -45
- package/dist/es2019/artifacts/tokens-raw/atlassian-typography-minor3.js +26 -26
- package/dist/es2019/artifacts/tokens-raw/atlassian-typography.js +25 -25
- package/dist/es2019/constants.js +1 -0
- package/dist/es2019/enable-global-theme.js +2 -0
- package/dist/es2019/get-ssr-auto-script.js +17 -11
- package/dist/es2019/get-theme-html-attrs.js +12 -2
- package/dist/es2019/get-theme-styles.js +7 -0
- package/dist/es2019/get-token-value.js +1 -1
- package/dist/es2019/get-token.js +1 -1
- package/dist/es2019/set-global-theme.js +14 -0
- package/dist/es2019/theme-config.js +28 -1
- package/dist/es2019/utils/configure-page.js +18 -1
- package/dist/es2019/utils/contrast-mode-listeners.js +48 -0
- package/dist/es2019/utils/get-increased-contrast-theme.js +13 -0
- package/dist/es2019/utils/get-theme-preferences.js +23 -1
- package/dist/es2019/utils/theme-loading.js +2 -1
- package/dist/esm/artifacts/palettes-raw/legacy-palette.js +119 -119
- package/dist/esm/artifacts/palettes-raw/palette.js +133 -133
- package/dist/esm/artifacts/palettes-raw/shape-palette.js +11 -11
- package/dist/esm/artifacts/palettes-raw/spacing-scale.js +24 -24
- package/dist/esm/artifacts/palettes-raw/typography-palette.js +40 -40
- package/dist/esm/artifacts/palettes-raw/updated-saturated-palette.js +133 -133
- package/dist/esm/artifacts/theme-import-map.js +9 -1
- package/dist/esm/artifacts/themes/atlassian-dark-increased-contrast.js +6 -0
- package/dist/esm/artifacts/themes/atlassian-light-increased-contrast.js +6 -0
- package/dist/esm/artifacts/tokens-raw/atlassian-dark-increased-contrast.js +8681 -0
- package/dist/esm/artifacts/tokens-raw/atlassian-dark-new-input-border.js +2 -2
- package/dist/esm/artifacts/tokens-raw/atlassian-dark-saturated-palette-changes.js +389 -389
- package/dist/esm/artifacts/tokens-raw/atlassian-dark.js +389 -389
- package/dist/esm/artifacts/tokens-raw/atlassian-legacy-dark.js +389 -389
- package/dist/esm/artifacts/tokens-raw/atlassian-legacy-light.js +389 -389
- package/dist/esm/artifacts/tokens-raw/atlassian-light-increased-contrast.js +8647 -0
- package/dist/esm/artifacts/tokens-raw/atlassian-light-new-input-border.js +2 -2
- package/dist/esm/artifacts/tokens-raw/atlassian-light-saturated-palette-changes.js +389 -389
- package/dist/esm/artifacts/tokens-raw/atlassian-light.js +389 -389
- package/dist/esm/artifacts/tokens-raw/atlassian-shape.js +12 -12
- package/dist/esm/artifacts/tokens-raw/atlassian-spacing.js +24 -24
- package/dist/esm/artifacts/tokens-raw/atlassian-typography-adg3.js +45 -45
- package/dist/esm/artifacts/tokens-raw/atlassian-typography-minor3.js +26 -26
- package/dist/esm/artifacts/tokens-raw/atlassian-typography.js +25 -25
- package/dist/esm/constants.js +1 -0
- package/dist/esm/enable-global-theme.js +3 -0
- package/dist/esm/get-ssr-auto-script.js +10 -4
- package/dist/esm/get-theme-html-attrs.js +10 -1
- package/dist/esm/get-theme-styles.js +9 -0
- package/dist/esm/get-token-value.js +1 -1
- package/dist/esm/get-token.js +1 -1
- package/dist/esm/set-global-theme.js +35 -20
- package/dist/esm/theme-config.js +28 -1
- package/dist/esm/utils/configure-page.js +16 -1
- package/dist/esm/utils/contrast-mode-listeners.js +58 -0
- package/dist/esm/utils/get-increased-contrast-theme.js +14 -0
- package/dist/esm/utils/get-theme-preferences.js +23 -1
- package/dist/esm/utils/theme-loading.js +2 -1
- package/dist/types/artifacts/palettes-raw/legacy-palette.d.ts +1 -1
- package/dist/types/artifacts/palettes-raw/palette.d.ts +1 -1
- package/dist/types/artifacts/palettes-raw/shape-palette.d.ts +1 -1
- package/dist/types/artifacts/palettes-raw/spacing-scale.d.ts +1 -1
- package/dist/types/artifacts/palettes-raw/typography-palette.d.ts +1 -1
- package/dist/types/artifacts/palettes-raw/updated-saturated-palette.d.ts +1 -1
- package/dist/types/artifacts/theme-import-map.d.ts +1 -1
- package/dist/types/artifacts/themes/atlassian-dark-increased-contrast.d.ts +7 -0
- package/dist/types/artifacts/themes/atlassian-light-increased-contrast.d.ts +7 -0
- package/dist/types/artifacts/tokens-raw/atlassian-dark-increased-contrast.d.ts +133 -0
- package/dist/types/artifacts/tokens-raw/atlassian-dark-new-input-border.d.ts +1 -1
- package/dist/types/artifacts/tokens-raw/atlassian-dark-saturated-palette-changes.d.ts +1 -1
- package/dist/types/artifacts/tokens-raw/atlassian-dark.d.ts +1 -1
- package/dist/types/artifacts/tokens-raw/atlassian-legacy-dark.d.ts +1 -1
- package/dist/types/artifacts/tokens-raw/atlassian-legacy-light.d.ts +1 -1
- package/dist/types/artifacts/tokens-raw/atlassian-light-increased-contrast.d.ts +113 -0
- package/dist/types/artifacts/tokens-raw/atlassian-light-new-input-border.d.ts +1 -1
- package/dist/types/artifacts/tokens-raw/atlassian-light-saturated-palette-changes.d.ts +1 -1
- package/dist/types/artifacts/tokens-raw/atlassian-light.d.ts +1 -1
- package/dist/types/artifacts/tokens-raw/atlassian-shape.d.ts +1 -1
- package/dist/types/artifacts/tokens-raw/atlassian-spacing.d.ts +1 -1
- package/dist/types/artifacts/tokens-raw/atlassian-typography-adg3.d.ts +1 -1
- package/dist/types/artifacts/tokens-raw/atlassian-typography-minor3.d.ts +1 -1
- package/dist/types/artifacts/tokens-raw/atlassian-typography.d.ts +1 -1
- package/dist/types/constants.d.ts +1 -0
- package/dist/types/enable-global-theme.d.ts +1 -1
- package/dist/types/get-ssr-auto-script.d.ts +1 -1
- package/dist/types/get-theme-html-attrs.d.ts +1 -1
- package/dist/types/set-global-theme.d.ts +2 -1
- package/dist/types/theme-config.d.ts +29 -6
- package/dist/types/types.d.ts +38 -40
- package/dist/types/utils/configure-page.d.ts +1 -1
- package/dist/types/utils/contrast-mode-listeners.d.ts +13 -0
- package/dist/types/utils/get-increased-contrast-theme.d.ts +5 -0
- package/dist/types/utils/theme-loading.d.ts +1 -0
- package/dist/types-ts4.5/artifacts/palettes-raw/legacy-palette.d.ts +1 -1
- package/dist/types-ts4.5/artifacts/palettes-raw/palette.d.ts +1 -1
- package/dist/types-ts4.5/artifacts/palettes-raw/shape-palette.d.ts +1 -1
- package/dist/types-ts4.5/artifacts/palettes-raw/spacing-scale.d.ts +1 -1
- package/dist/types-ts4.5/artifacts/palettes-raw/typography-palette.d.ts +1 -1
- package/dist/types-ts4.5/artifacts/palettes-raw/updated-saturated-palette.d.ts +1 -1
- package/dist/types-ts4.5/artifacts/theme-import-map.d.ts +1 -1
- package/dist/types-ts4.5/artifacts/themes/atlassian-dark-increased-contrast.d.ts +7 -0
- package/dist/types-ts4.5/artifacts/themes/atlassian-light-increased-contrast.d.ts +7 -0
- package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-dark-increased-contrast.d.ts +133 -0
- package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-dark-new-input-border.d.ts +1 -1
- package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-dark-saturated-palette-changes.d.ts +1 -1
- package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-dark.d.ts +1 -1
- package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-legacy-dark.d.ts +1 -1
- package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-legacy-light.d.ts +1 -1
- package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-light-increased-contrast.d.ts +113 -0
- package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-light-new-input-border.d.ts +1 -1
- package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-light-saturated-palette-changes.d.ts +1 -1
- package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-light.d.ts +1 -1
- package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-shape.d.ts +1 -1
- package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-spacing.d.ts +1 -1
- package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-typography-adg3.d.ts +1 -1
- package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-typography-minor3.d.ts +1 -1
- package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-typography.d.ts +1 -1
- package/dist/types-ts4.5/constants.d.ts +1 -0
- package/dist/types-ts4.5/enable-global-theme.d.ts +1 -1
- package/dist/types-ts4.5/get-ssr-auto-script.d.ts +1 -1
- package/dist/types-ts4.5/get-theme-html-attrs.d.ts +1 -1
- package/dist/types-ts4.5/set-global-theme.d.ts +2 -1
- package/dist/types-ts4.5/theme-config.d.ts +35 -4
- package/dist/types-ts4.5/types.d.ts +38 -40
- package/dist/types-ts4.5/utils/configure-page.d.ts +1 -1
- package/dist/types-ts4.5/utils/contrast-mode-listeners.d.ts +13 -0
- package/dist/types-ts4.5/utils/get-increased-contrast-theme.d.ts +5 -0
- package/dist/types-ts4.5/utils/theme-loading.d.ts +1 -0
- package/figma/atlassian-dark-increased-contrast.json +3542 -0
- package/figma/atlassian-light-increased-contrast.json +3523 -0
- package/package.json +4 -1
- package/report.api.md +40 -229
- package/tmp/api-report-tmp.d.ts +21 -236
- package/dist/cjs/palettes/legacy-palette.js +0 -849
- package/dist/cjs/palettes/palette.js +0 -954
- package/dist/cjs/palettes/shape-palette.js +0 -82
- package/dist/cjs/palettes/spacing-scale.js +0 -154
- package/dist/cjs/palettes/typography-palette.js +0 -273
- package/dist/cjs/palettes/updated-saturated-palette.js +0 -320
- package/dist/cjs/tokens/atlassian-dark/color/accent.js +0 -627
- package/dist/cjs/tokens/atlassian-dark/color/background.js +0 -272
- package/dist/cjs/tokens/atlassian-dark/color/border.js +0 -52
- package/dist/cjs/tokens/atlassian-dark/color/chart.js +0 -445
- package/dist/cjs/tokens/atlassian-dark/color/icon.js +0 -51
- package/dist/cjs/tokens/atlassian-dark/color/interaction.js +0 -21
- package/dist/cjs/tokens/atlassian-dark/color/skeleton.js +0 -19
- package/dist/cjs/tokens/atlassian-dark/color/text.js +0 -65
- package/dist/cjs/tokens/atlassian-dark/elevation/shadow.js +0 -110
- package/dist/cjs/tokens/atlassian-dark/elevation/surface.js +0 -49
- package/dist/cjs/tokens/atlassian-dark/opacity/opacity.js +0 -17
- package/dist/cjs/tokens/atlassian-dark/utility/utility.js +0 -25
- package/dist/cjs/tokens/atlassian-dark-new-input-border/color/border.js +0 -16
- package/dist/cjs/tokens/atlassian-dark-saturated-palette-changes/color/accent.js +0 -21
- package/dist/cjs/tokens/atlassian-dark-saturated-palette-changes/color/background.js +0 -26
- package/dist/cjs/tokens/atlassian-dark-saturated-palette-changes/color/icon.js +0 -18
- package/dist/cjs/tokens/atlassian-legacy-dark/color/accent.js +0 -675
- package/dist/cjs/tokens/atlassian-legacy-dark/color/background.js +0 -271
- package/dist/cjs/tokens/atlassian-legacy-dark/color/border.js +0 -52
- package/dist/cjs/tokens/atlassian-legacy-dark/color/chart.js +0 -471
- package/dist/cjs/tokens/atlassian-legacy-dark/color/icon.js +0 -51
- package/dist/cjs/tokens/atlassian-legacy-dark/color/interaction.js +0 -21
- package/dist/cjs/tokens/atlassian-legacy-dark/color/skeleton.js +0 -19
- package/dist/cjs/tokens/atlassian-legacy-dark/color/text.js +0 -65
- package/dist/cjs/tokens/atlassian-legacy-dark/elevation/shadow.js +0 -110
- package/dist/cjs/tokens/atlassian-legacy-dark/elevation/surface.js +0 -49
- package/dist/cjs/tokens/atlassian-legacy-dark/opacity/opacity.js +0 -17
- package/dist/cjs/tokens/atlassian-legacy-dark/utility/utility.js +0 -25
- package/dist/cjs/tokens/atlassian-legacy-light/color/accent.js +0 -675
- package/dist/cjs/tokens/atlassian-legacy-light/color/background.js +0 -271
- package/dist/cjs/tokens/atlassian-legacy-light/color/border.js +0 -52
- package/dist/cjs/tokens/atlassian-legacy-light/color/chart.js +0 -471
- package/dist/cjs/tokens/atlassian-legacy-light/color/icon.js +0 -51
- package/dist/cjs/tokens/atlassian-legacy-light/color/interaction.js +0 -21
- package/dist/cjs/tokens/atlassian-legacy-light/color/skeleton.js +0 -19
- package/dist/cjs/tokens/atlassian-legacy-light/color/text.js +0 -65
- package/dist/cjs/tokens/atlassian-legacy-light/elevation/shadow.js +0 -80
- package/dist/cjs/tokens/atlassian-legacy-light/elevation/surface.js +0 -49
- package/dist/cjs/tokens/atlassian-legacy-light/opacity/opacity.js +0 -17
- package/dist/cjs/tokens/atlassian-legacy-light/utility/utility.js +0 -25
- package/dist/cjs/tokens/atlassian-light/color/accent.js +0 -627
- package/dist/cjs/tokens/atlassian-light/color/background.js +0 -271
- package/dist/cjs/tokens/atlassian-light/color/border.js +0 -52
- package/dist/cjs/tokens/atlassian-light/color/chart.js +0 -445
- package/dist/cjs/tokens/atlassian-light/color/icon.js +0 -51
- package/dist/cjs/tokens/atlassian-light/color/interaction.js +0 -21
- package/dist/cjs/tokens/atlassian-light/color/skeleton.js +0 -19
- package/dist/cjs/tokens/atlassian-light/color/text.js +0 -65
- package/dist/cjs/tokens/atlassian-light/elevation/shadow.js +0 -80
- package/dist/cjs/tokens/atlassian-light/elevation/surface.js +0 -49
- package/dist/cjs/tokens/atlassian-light/opacity/opacity.js +0 -17
- package/dist/cjs/tokens/atlassian-light/utility/utility.js +0 -25
- package/dist/cjs/tokens/atlassian-light-new-input-border/color/border.js +0 -16
- package/dist/cjs/tokens/atlassian-light-saturated-palette-changes/color/accent.js +0 -35
- package/dist/cjs/tokens/atlassian-light-saturated-palette-changes/color/background.js +0 -26
- package/dist/cjs/tokens/atlassian-light-saturated-palette-changes/color/icon.js +0 -16
- package/dist/cjs/tokens/atlassian-shape/shape.js +0 -52
- package/dist/cjs/tokens/atlassian-spacing/spacing.js +0 -89
- package/dist/cjs/tokens/atlassian-typography/font-family.js +0 -31
- package/dist/cjs/tokens/atlassian-typography/letter-spacing.js +0 -28
- package/dist/cjs/tokens/atlassian-typography/theme.js +0 -149
- package/dist/cjs/tokens/atlassian-typography-adg3/font-family.js +0 -31
- package/dist/cjs/tokens/atlassian-typography-adg3/font-size.js +0 -37
- package/dist/cjs/tokens/atlassian-typography-adg3/font-weight.js +0 -25
- package/dist/cjs/tokens/atlassian-typography-adg3/letter-spacing.js +0 -28
- package/dist/cjs/tokens/atlassian-typography-adg3/line-height.js +0 -34
- package/dist/cjs/tokens/atlassian-typography-adg3/theme.js +0 -160
- package/dist/cjs/tokens/atlassian-typography-minor3/font-family.js +0 -31
- package/dist/cjs/tokens/atlassian-typography-minor3/letter-spacing.js +0 -28
- package/dist/cjs/tokens/atlassian-typography-minor3/theme.js +0 -160
- package/dist/cjs/tokens/default/color/accent.js +0 -1427
- package/dist/cjs/tokens/default/color/background.js +0 -585
- package/dist/cjs/tokens/default/color/border.js +0 -117
- package/dist/cjs/tokens/default/color/chart.js +0 -945
- package/dist/cjs/tokens/default/color/icon.js +0 -111
- package/dist/cjs/tokens/default/color/interaction.js +0 -29
- package/dist/cjs/tokens/default/color/skeleton.js +0 -29
- package/dist/cjs/tokens/default/color/text.js +0 -145
- package/dist/cjs/tokens/default/elevation/shadow.js +0 -55
- package/dist/cjs/tokens/default/elevation/surface.js +0 -99
- package/dist/cjs/tokens/default/opacity/opacity.js +0 -27
- package/dist/cjs/tokens/default/shape/shape.js +0 -106
- package/dist/cjs/tokens/default/spacing/spacing.js +0 -220
- package/dist/cjs/tokens/default/typography/font-family.js +0 -61
- package/dist/cjs/tokens/default/typography/font-size.js +0 -77
- package/dist/cjs/tokens/default/typography/font-weight.js +0 -45
- package/dist/cjs/tokens/default/typography/font.js +0 -140
- package/dist/cjs/tokens/default/typography/letter-spacing.js +0 -53
- package/dist/cjs/tokens/default/typography/line-height.js +0 -69
- package/dist/cjs/tokens/default/utility/utility.js +0 -41
- package/dist/es2019/palettes/legacy-palette.js +0 -843
- package/dist/es2019/palettes/palette.js +0 -948
- package/dist/es2019/palettes/shape-palette.js +0 -76
- package/dist/es2019/palettes/spacing-scale.js +0 -148
- package/dist/es2019/palettes/typography-palette.js +0 -269
- package/dist/es2019/palettes/updated-saturated-palette.js +0 -312
- package/dist/es2019/tokens/atlassian-dark/color/accent.js +0 -621
- package/dist/es2019/tokens/atlassian-dark/color/background.js +0 -266
- package/dist/es2019/tokens/atlassian-dark/color/border.js +0 -46
- package/dist/es2019/tokens/atlassian-dark/color/chart.js +0 -439
- package/dist/es2019/tokens/atlassian-dark/color/icon.js +0 -45
- package/dist/es2019/tokens/atlassian-dark/color/interaction.js +0 -15
- package/dist/es2019/tokens/atlassian-dark/color/skeleton.js +0 -13
- package/dist/es2019/tokens/atlassian-dark/color/text.js +0 -59
- package/dist/es2019/tokens/atlassian-dark/elevation/shadow.js +0 -104
- package/dist/es2019/tokens/atlassian-dark/elevation/surface.js +0 -43
- package/dist/es2019/tokens/atlassian-dark/opacity/opacity.js +0 -11
- package/dist/es2019/tokens/atlassian-dark/utility/utility.js +0 -18
- package/dist/es2019/tokens/atlassian-dark-new-input-border/color/border.js +0 -10
- package/dist/es2019/tokens/atlassian-dark-saturated-palette-changes/color/accent.js +0 -15
- package/dist/es2019/tokens/atlassian-dark-saturated-palette-changes/color/background.js +0 -20
- package/dist/es2019/tokens/atlassian-dark-saturated-palette-changes/color/icon.js +0 -12
- package/dist/es2019/tokens/atlassian-legacy-dark/color/accent.js +0 -669
- package/dist/es2019/tokens/atlassian-legacy-dark/color/background.js +0 -265
- package/dist/es2019/tokens/atlassian-legacy-dark/color/border.js +0 -46
- package/dist/es2019/tokens/atlassian-legacy-dark/color/chart.js +0 -465
- package/dist/es2019/tokens/atlassian-legacy-dark/color/icon.js +0 -45
- package/dist/es2019/tokens/atlassian-legacy-dark/color/interaction.js +0 -15
- package/dist/es2019/tokens/atlassian-legacy-dark/color/skeleton.js +0 -13
- package/dist/es2019/tokens/atlassian-legacy-dark/color/text.js +0 -59
- package/dist/es2019/tokens/atlassian-legacy-dark/elevation/shadow.js +0 -104
- package/dist/es2019/tokens/atlassian-legacy-dark/elevation/surface.js +0 -43
- package/dist/es2019/tokens/atlassian-legacy-dark/opacity/opacity.js +0 -11
- package/dist/es2019/tokens/atlassian-legacy-dark/utility/utility.js +0 -18
- package/dist/es2019/tokens/atlassian-legacy-light/color/accent.js +0 -669
- package/dist/es2019/tokens/atlassian-legacy-light/color/background.js +0 -265
- package/dist/es2019/tokens/atlassian-legacy-light/color/border.js +0 -46
- package/dist/es2019/tokens/atlassian-legacy-light/color/chart.js +0 -465
- package/dist/es2019/tokens/atlassian-legacy-light/color/icon.js +0 -45
- package/dist/es2019/tokens/atlassian-legacy-light/color/interaction.js +0 -15
- package/dist/es2019/tokens/atlassian-legacy-light/color/skeleton.js +0 -13
- package/dist/es2019/tokens/atlassian-legacy-light/color/text.js +0 -59
- package/dist/es2019/tokens/atlassian-legacy-light/elevation/shadow.js +0 -74
- package/dist/es2019/tokens/atlassian-legacy-light/elevation/surface.js +0 -43
- package/dist/es2019/tokens/atlassian-legacy-light/opacity/opacity.js +0 -11
- package/dist/es2019/tokens/atlassian-legacy-light/utility/utility.js +0 -18
- package/dist/es2019/tokens/atlassian-light/color/accent.js +0 -621
- package/dist/es2019/tokens/atlassian-light/color/background.js +0 -265
- package/dist/es2019/tokens/atlassian-light/color/border.js +0 -46
- package/dist/es2019/tokens/atlassian-light/color/chart.js +0 -439
- package/dist/es2019/tokens/atlassian-light/color/icon.js +0 -45
- package/dist/es2019/tokens/atlassian-light/color/interaction.js +0 -15
- package/dist/es2019/tokens/atlassian-light/color/skeleton.js +0 -13
- package/dist/es2019/tokens/atlassian-light/color/text.js +0 -59
- package/dist/es2019/tokens/atlassian-light/elevation/shadow.js +0 -74
- package/dist/es2019/tokens/atlassian-light/elevation/surface.js +0 -43
- package/dist/es2019/tokens/atlassian-light/opacity/opacity.js +0 -11
- package/dist/es2019/tokens/atlassian-light/utility/utility.js +0 -18
- package/dist/es2019/tokens/atlassian-light-new-input-border/color/border.js +0 -10
- package/dist/es2019/tokens/atlassian-light-saturated-palette-changes/color/accent.js +0 -29
- package/dist/es2019/tokens/atlassian-light-saturated-palette-changes/color/background.js +0 -20
- package/dist/es2019/tokens/atlassian-light-saturated-palette-changes/color/icon.js +0 -10
- package/dist/es2019/tokens/atlassian-shape/shape.js +0 -46
- package/dist/es2019/tokens/atlassian-spacing/spacing.js +0 -83
- package/dist/es2019/tokens/atlassian-typography/font-family.js +0 -25
- package/dist/es2019/tokens/atlassian-typography/letter-spacing.js +0 -22
- package/dist/es2019/tokens/atlassian-typography/theme.js +0 -143
- package/dist/es2019/tokens/atlassian-typography-adg3/font-family.js +0 -25
- package/dist/es2019/tokens/atlassian-typography-adg3/font-size.js +0 -31
- package/dist/es2019/tokens/atlassian-typography-adg3/font-weight.js +0 -19
- package/dist/es2019/tokens/atlassian-typography-adg3/letter-spacing.js +0 -22
- package/dist/es2019/tokens/atlassian-typography-adg3/line-height.js +0 -28
- package/dist/es2019/tokens/atlassian-typography-adg3/theme.js +0 -154
- package/dist/es2019/tokens/atlassian-typography-minor3/font-family.js +0 -25
- package/dist/es2019/tokens/atlassian-typography-minor3/letter-spacing.js +0 -22
- package/dist/es2019/tokens/atlassian-typography-minor3/theme.js +0 -154
- package/dist/es2019/tokens/default/color/accent.js +0 -1421
- package/dist/es2019/tokens/default/color/background.js +0 -579
- package/dist/es2019/tokens/default/color/border.js +0 -111
- package/dist/es2019/tokens/default/color/chart.js +0 -939
- package/dist/es2019/tokens/default/color/icon.js +0 -105
- package/dist/es2019/tokens/default/color/interaction.js +0 -23
- package/dist/es2019/tokens/default/color/skeleton.js +0 -23
- package/dist/es2019/tokens/default/color/text.js +0 -139
- package/dist/es2019/tokens/default/elevation/shadow.js +0 -51
- package/dist/es2019/tokens/default/elevation/surface.js +0 -93
- package/dist/es2019/tokens/default/opacity/opacity.js +0 -21
- package/dist/es2019/tokens/default/shape/shape.js +0 -100
- package/dist/es2019/tokens/default/spacing/spacing.js +0 -214
- package/dist/es2019/tokens/default/typography/font-family.js +0 -55
- package/dist/es2019/tokens/default/typography/font-size.js +0 -71
- package/dist/es2019/tokens/default/typography/font-weight.js +0 -39
- package/dist/es2019/tokens/default/typography/font.js +0 -134
- package/dist/es2019/tokens/default/typography/letter-spacing.js +0 -47
- package/dist/es2019/tokens/default/typography/line-height.js +0 -63
- package/dist/es2019/tokens/default/utility/utility.js +0 -35
- package/dist/esm/palettes/legacy-palette.js +0 -843
- package/dist/esm/palettes/palette.js +0 -948
- package/dist/esm/palettes/shape-palette.js +0 -76
- package/dist/esm/palettes/spacing-scale.js +0 -148
- package/dist/esm/palettes/typography-palette.js +0 -266
- package/dist/esm/palettes/updated-saturated-palette.js +0 -313
- package/dist/esm/tokens/atlassian-dark/color/accent.js +0 -621
- package/dist/esm/tokens/atlassian-dark/color/background.js +0 -266
- package/dist/esm/tokens/atlassian-dark/color/border.js +0 -46
- package/dist/esm/tokens/atlassian-dark/color/chart.js +0 -439
- package/dist/esm/tokens/atlassian-dark/color/icon.js +0 -45
- package/dist/esm/tokens/atlassian-dark/color/interaction.js +0 -15
- package/dist/esm/tokens/atlassian-dark/color/skeleton.js +0 -13
- package/dist/esm/tokens/atlassian-dark/color/text.js +0 -59
- package/dist/esm/tokens/atlassian-dark/elevation/shadow.js +0 -104
- package/dist/esm/tokens/atlassian-dark/elevation/surface.js +0 -43
- package/dist/esm/tokens/atlassian-dark/opacity/opacity.js +0 -11
- package/dist/esm/tokens/atlassian-dark/utility/utility.js +0 -18
- package/dist/esm/tokens/atlassian-dark-new-input-border/color/border.js +0 -10
- package/dist/esm/tokens/atlassian-dark-saturated-palette-changes/color/accent.js +0 -15
- package/dist/esm/tokens/atlassian-dark-saturated-palette-changes/color/background.js +0 -20
- package/dist/esm/tokens/atlassian-dark-saturated-palette-changes/color/icon.js +0 -12
- package/dist/esm/tokens/atlassian-legacy-dark/color/accent.js +0 -669
- package/dist/esm/tokens/atlassian-legacy-dark/color/background.js +0 -265
- package/dist/esm/tokens/atlassian-legacy-dark/color/border.js +0 -46
- package/dist/esm/tokens/atlassian-legacy-dark/color/chart.js +0 -465
- package/dist/esm/tokens/atlassian-legacy-dark/color/icon.js +0 -45
- package/dist/esm/tokens/atlassian-legacy-dark/color/interaction.js +0 -15
- package/dist/esm/tokens/atlassian-legacy-dark/color/skeleton.js +0 -13
- package/dist/esm/tokens/atlassian-legacy-dark/color/text.js +0 -59
- package/dist/esm/tokens/atlassian-legacy-dark/elevation/shadow.js +0 -104
- package/dist/esm/tokens/atlassian-legacy-dark/elevation/surface.js +0 -43
- package/dist/esm/tokens/atlassian-legacy-dark/opacity/opacity.js +0 -11
- package/dist/esm/tokens/atlassian-legacy-dark/utility/utility.js +0 -18
- package/dist/esm/tokens/atlassian-legacy-light/color/accent.js +0 -669
- package/dist/esm/tokens/atlassian-legacy-light/color/background.js +0 -265
- package/dist/esm/tokens/atlassian-legacy-light/color/border.js +0 -46
- package/dist/esm/tokens/atlassian-legacy-light/color/chart.js +0 -465
- package/dist/esm/tokens/atlassian-legacy-light/color/icon.js +0 -45
- package/dist/esm/tokens/atlassian-legacy-light/color/interaction.js +0 -15
- package/dist/esm/tokens/atlassian-legacy-light/color/skeleton.js +0 -13
- package/dist/esm/tokens/atlassian-legacy-light/color/text.js +0 -59
- package/dist/esm/tokens/atlassian-legacy-light/elevation/shadow.js +0 -74
- package/dist/esm/tokens/atlassian-legacy-light/elevation/surface.js +0 -43
- package/dist/esm/tokens/atlassian-legacy-light/opacity/opacity.js +0 -11
- package/dist/esm/tokens/atlassian-legacy-light/utility/utility.js +0 -18
- package/dist/esm/tokens/atlassian-light/color/accent.js +0 -621
- package/dist/esm/tokens/atlassian-light/color/background.js +0 -265
- package/dist/esm/tokens/atlassian-light/color/border.js +0 -46
- package/dist/esm/tokens/atlassian-light/color/chart.js +0 -439
- package/dist/esm/tokens/atlassian-light/color/icon.js +0 -45
- package/dist/esm/tokens/atlassian-light/color/interaction.js +0 -15
- package/dist/esm/tokens/atlassian-light/color/skeleton.js +0 -13
- package/dist/esm/tokens/atlassian-light/color/text.js +0 -59
- package/dist/esm/tokens/atlassian-light/elevation/shadow.js +0 -74
- package/dist/esm/tokens/atlassian-light/elevation/surface.js +0 -43
- package/dist/esm/tokens/atlassian-light/opacity/opacity.js +0 -11
- package/dist/esm/tokens/atlassian-light/utility/utility.js +0 -18
- package/dist/esm/tokens/atlassian-light-new-input-border/color/border.js +0 -10
- package/dist/esm/tokens/atlassian-light-saturated-palette-changes/color/accent.js +0 -29
- package/dist/esm/tokens/atlassian-light-saturated-palette-changes/color/background.js +0 -20
- package/dist/esm/tokens/atlassian-light-saturated-palette-changes/color/icon.js +0 -10
- package/dist/esm/tokens/atlassian-shape/shape.js +0 -46
- package/dist/esm/tokens/atlassian-spacing/spacing.js +0 -83
- package/dist/esm/tokens/atlassian-typography/font-family.js +0 -25
- package/dist/esm/tokens/atlassian-typography/letter-spacing.js +0 -22
- package/dist/esm/tokens/atlassian-typography/theme.js +0 -143
- package/dist/esm/tokens/atlassian-typography-adg3/font-family.js +0 -25
- package/dist/esm/tokens/atlassian-typography-adg3/font-size.js +0 -31
- package/dist/esm/tokens/atlassian-typography-adg3/font-weight.js +0 -19
- package/dist/esm/tokens/atlassian-typography-adg3/letter-spacing.js +0 -22
- package/dist/esm/tokens/atlassian-typography-adg3/line-height.js +0 -28
- package/dist/esm/tokens/atlassian-typography-adg3/theme.js +0 -154
- package/dist/esm/tokens/atlassian-typography-minor3/font-family.js +0 -25
- package/dist/esm/tokens/atlassian-typography-minor3/letter-spacing.js +0 -22
- package/dist/esm/tokens/atlassian-typography-minor3/theme.js +0 -154
- package/dist/esm/tokens/default/color/accent.js +0 -1421
- package/dist/esm/tokens/default/color/background.js +0 -579
- package/dist/esm/tokens/default/color/border.js +0 -111
- package/dist/esm/tokens/default/color/chart.js +0 -939
- package/dist/esm/tokens/default/color/icon.js +0 -105
- package/dist/esm/tokens/default/color/interaction.js +0 -23
- package/dist/esm/tokens/default/color/skeleton.js +0 -23
- package/dist/esm/tokens/default/color/text.js +0 -139
- package/dist/esm/tokens/default/elevation/shadow.js +0 -49
- package/dist/esm/tokens/default/elevation/surface.js +0 -93
- package/dist/esm/tokens/default/opacity/opacity.js +0 -21
- package/dist/esm/tokens/default/shape/shape.js +0 -100
- package/dist/esm/tokens/default/spacing/spacing.js +0 -214
- package/dist/esm/tokens/default/typography/font-family.js +0 -55
- package/dist/esm/tokens/default/typography/font-size.js +0 -71
- package/dist/esm/tokens/default/typography/font-weight.js +0 -39
- package/dist/esm/tokens/default/typography/font.js +0 -134
- package/dist/esm/tokens/default/typography/letter-spacing.js +0 -47
- package/dist/esm/tokens/default/typography/line-height.js +0 -63
- package/dist/esm/tokens/default/utility/utility.js +0 -35
- package/dist/types/palettes/legacy-palette.d.ts +0 -10
- package/dist/types/palettes/palette.d.ts +0 -5
- package/dist/types/palettes/shape-palette.d.ts +0 -73
- package/dist/types/palettes/spacing-scale.d.ts +0 -147
- package/dist/types/palettes/typography-palette.d.ts +0 -16
- package/dist/types/palettes/updated-saturated-palette.d.ts +0 -10
- package/dist/types/tokens/atlassian-dark/color/accent.d.ts +0 -4
- package/dist/types/tokens/atlassian-dark/color/background.d.ts +0 -4
- package/dist/types/tokens/atlassian-dark/color/border.d.ts +0 -4
- package/dist/types/tokens/atlassian-dark/color/chart.d.ts +0 -4
- package/dist/types/tokens/atlassian-dark/color/icon.d.ts +0 -4
- package/dist/types/tokens/atlassian-dark/color/interaction.d.ts +0 -4
- package/dist/types/tokens/atlassian-dark/color/skeleton.d.ts +0 -4
- package/dist/types/tokens/atlassian-dark/color/text.d.ts +0 -4
- package/dist/types/tokens/atlassian-dark/elevation/shadow.d.ts +0 -4
- package/dist/types/tokens/atlassian-dark/elevation/surface.d.ts +0 -4
- package/dist/types/tokens/atlassian-dark/opacity/opacity.d.ts +0 -3
- package/dist/types/tokens/atlassian-dark/utility/utility.d.ts +0 -5
- package/dist/types/tokens/atlassian-dark-new-input-border/color/border.d.ts +0 -10
- package/dist/types/tokens/atlassian-dark-saturated-palette-changes/color/accent.d.ts +0 -4
- package/dist/types/tokens/atlassian-dark-saturated-palette-changes/color/background.d.ts +0 -4
- package/dist/types/tokens/atlassian-dark-saturated-palette-changes/color/icon.d.ts +0 -4
- package/dist/types/tokens/atlassian-legacy-dark/color/accent.d.ts +0 -4
- package/dist/types/tokens/atlassian-legacy-dark/color/background.d.ts +0 -4
- package/dist/types/tokens/atlassian-legacy-dark/color/border.d.ts +0 -4
- package/dist/types/tokens/atlassian-legacy-dark/color/chart.d.ts +0 -4
- package/dist/types/tokens/atlassian-legacy-dark/color/icon.d.ts +0 -4
- package/dist/types/tokens/atlassian-legacy-dark/color/interaction.d.ts +0 -4
- package/dist/types/tokens/atlassian-legacy-dark/color/skeleton.d.ts +0 -4
- package/dist/types/tokens/atlassian-legacy-dark/color/text.d.ts +0 -4
- package/dist/types/tokens/atlassian-legacy-dark/elevation/shadow.d.ts +0 -4
- package/dist/types/tokens/atlassian-legacy-dark/elevation/surface.d.ts +0 -4
- package/dist/types/tokens/atlassian-legacy-dark/opacity/opacity.d.ts +0 -3
- package/dist/types/tokens/atlassian-legacy-dark/utility/utility.d.ts +0 -5
- package/dist/types/tokens/atlassian-legacy-light/color/accent.d.ts +0 -4
- package/dist/types/tokens/atlassian-legacy-light/color/background.d.ts +0 -4
- package/dist/types/tokens/atlassian-legacy-light/color/border.d.ts +0 -4
- package/dist/types/tokens/atlassian-legacy-light/color/chart.d.ts +0 -4
- package/dist/types/tokens/atlassian-legacy-light/color/icon.d.ts +0 -4
- package/dist/types/tokens/atlassian-legacy-light/color/interaction.d.ts +0 -4
- package/dist/types/tokens/atlassian-legacy-light/color/skeleton.d.ts +0 -4
- package/dist/types/tokens/atlassian-legacy-light/color/text.d.ts +0 -4
- package/dist/types/tokens/atlassian-legacy-light/elevation/shadow.d.ts +0 -4
- package/dist/types/tokens/atlassian-legacy-light/elevation/surface.d.ts +0 -4
- package/dist/types/tokens/atlassian-legacy-light/opacity/opacity.d.ts +0 -3
- package/dist/types/tokens/atlassian-legacy-light/utility/utility.d.ts +0 -5
- package/dist/types/tokens/atlassian-light/color/accent.d.ts +0 -4
- package/dist/types/tokens/atlassian-light/color/background.d.ts +0 -4
- package/dist/types/tokens/atlassian-light/color/border.d.ts +0 -4
- package/dist/types/tokens/atlassian-light/color/chart.d.ts +0 -4
- package/dist/types/tokens/atlassian-light/color/icon.d.ts +0 -4
- package/dist/types/tokens/atlassian-light/color/interaction.d.ts +0 -4
- package/dist/types/tokens/atlassian-light/color/skeleton.d.ts +0 -4
- package/dist/types/tokens/atlassian-light/color/text.d.ts +0 -4
- package/dist/types/tokens/atlassian-light/elevation/shadow.d.ts +0 -4
- package/dist/types/tokens/atlassian-light/elevation/surface.d.ts +0 -4
- package/dist/types/tokens/atlassian-light/opacity/opacity.d.ts +0 -3
- package/dist/types/tokens/atlassian-light/utility/utility.d.ts +0 -5
- package/dist/types/tokens/atlassian-light-new-input-border/color/border.d.ts +0 -10
- package/dist/types/tokens/atlassian-light-saturated-palette-changes/color/accent.d.ts +0 -4
- package/dist/types/tokens/atlassian-light-saturated-palette-changes/color/background.d.ts +0 -4
- package/dist/types/tokens/atlassian-light-saturated-palette-changes/color/icon.d.ts +0 -4
- package/dist/types/tokens/atlassian-shape/shape.d.ts +0 -7
- package/dist/types/tokens/atlassian-spacing/spacing.d.ts +0 -10
- package/dist/types/tokens/atlassian-typography/font-family.d.ts +0 -4
- package/dist/types/tokens/atlassian-typography/letter-spacing.d.ts +0 -4
- package/dist/types/tokens/atlassian-typography/theme.d.ts +0 -10
- package/dist/types/tokens/atlassian-typography-adg3/font-family.d.ts +0 -4
- package/dist/types/tokens/atlassian-typography-adg3/font-size.d.ts +0 -4
- package/dist/types/tokens/atlassian-typography-adg3/font-weight.d.ts +0 -4
- package/dist/types/tokens/atlassian-typography-adg3/letter-spacing.d.ts +0 -4
- package/dist/types/tokens/atlassian-typography-adg3/line-height.d.ts +0 -4
- package/dist/types/tokens/atlassian-typography-adg3/theme.d.ts +0 -145
- package/dist/types/tokens/atlassian-typography-minor3/font-family.d.ts +0 -4
- package/dist/types/tokens/atlassian-typography-minor3/letter-spacing.d.ts +0 -4
- package/dist/types/tokens/atlassian-typography-minor3/theme.d.ts +0 -145
- package/dist/types/tokens/default/color/accent.d.ts +0 -4
- package/dist/types/tokens/default/color/background.d.ts +0 -4
- package/dist/types/tokens/default/color/border.d.ts +0 -4
- package/dist/types/tokens/default/color/chart.d.ts +0 -4
- package/dist/types/tokens/default/color/icon.d.ts +0 -4
- package/dist/types/tokens/default/color/interaction.d.ts +0 -4
- package/dist/types/tokens/default/color/skeleton.d.ts +0 -4
- package/dist/types/tokens/default/color/text.d.ts +0 -4
- package/dist/types/tokens/default/elevation/shadow.d.ts +0 -4
- package/dist/types/tokens/default/elevation/surface.d.ts +0 -4
- package/dist/types/tokens/default/opacity/opacity.d.ts +0 -3
- package/dist/types/tokens/default/shape/shape.d.ts +0 -3
- package/dist/types/tokens/default/spacing/spacing.d.ts +0 -8
- package/dist/types/tokens/default/typography/font-family.d.ts +0 -4
- package/dist/types/tokens/default/typography/font-size.d.ts +0 -4
- package/dist/types/tokens/default/typography/font-weight.d.ts +0 -4
- package/dist/types/tokens/default/typography/font.d.ts +0 -20
- package/dist/types/tokens/default/typography/letter-spacing.d.ts +0 -4
- package/dist/types/tokens/default/typography/line-height.d.ts +0 -4
- package/dist/types/tokens/default/utility/utility.d.ts +0 -5
- package/dist/types-ts4.5/palettes/legacy-palette.d.ts +0 -10
- package/dist/types-ts4.5/palettes/palette.d.ts +0 -5
- package/dist/types-ts4.5/palettes/shape-palette.d.ts +0 -73
- package/dist/types-ts4.5/palettes/spacing-scale.d.ts +0 -147
- package/dist/types-ts4.5/palettes/typography-palette.d.ts +0 -16
- package/dist/types-ts4.5/palettes/updated-saturated-palette.d.ts +0 -10
- package/dist/types-ts4.5/tokens/atlassian-dark/color/accent.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-dark/color/background.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-dark/color/border.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-dark/color/chart.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-dark/color/icon.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-dark/color/interaction.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-dark/color/skeleton.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-dark/color/text.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-dark/elevation/shadow.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-dark/elevation/surface.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-dark/opacity/opacity.d.ts +0 -3
- package/dist/types-ts4.5/tokens/atlassian-dark/utility/utility.d.ts +0 -5
- package/dist/types-ts4.5/tokens/atlassian-dark-new-input-border/color/border.d.ts +0 -10
- package/dist/types-ts4.5/tokens/atlassian-dark-saturated-palette-changes/color/accent.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-dark-saturated-palette-changes/color/background.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-dark-saturated-palette-changes/color/icon.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-legacy-dark/color/accent.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-legacy-dark/color/background.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-legacy-dark/color/border.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-legacy-dark/color/chart.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-legacy-dark/color/icon.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-legacy-dark/color/interaction.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-legacy-dark/color/skeleton.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-legacy-dark/color/text.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-legacy-dark/elevation/shadow.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-legacy-dark/elevation/surface.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-legacy-dark/opacity/opacity.d.ts +0 -3
- package/dist/types-ts4.5/tokens/atlassian-legacy-dark/utility/utility.d.ts +0 -5
- package/dist/types-ts4.5/tokens/atlassian-legacy-light/color/accent.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-legacy-light/color/background.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-legacy-light/color/border.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-legacy-light/color/chart.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-legacy-light/color/icon.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-legacy-light/color/interaction.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-legacy-light/color/skeleton.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-legacy-light/color/text.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-legacy-light/elevation/shadow.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-legacy-light/elevation/surface.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-legacy-light/opacity/opacity.d.ts +0 -3
- package/dist/types-ts4.5/tokens/atlassian-legacy-light/utility/utility.d.ts +0 -5
- package/dist/types-ts4.5/tokens/atlassian-light/color/accent.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-light/color/background.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-light/color/border.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-light/color/chart.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-light/color/icon.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-light/color/interaction.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-light/color/skeleton.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-light/color/text.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-light/elevation/shadow.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-light/elevation/surface.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-light/opacity/opacity.d.ts +0 -3
- package/dist/types-ts4.5/tokens/atlassian-light/utility/utility.d.ts +0 -5
- package/dist/types-ts4.5/tokens/atlassian-light-new-input-border/color/border.d.ts +0 -10
- package/dist/types-ts4.5/tokens/atlassian-light-saturated-palette-changes/color/accent.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-light-saturated-palette-changes/color/background.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-light-saturated-palette-changes/color/icon.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-shape/shape.d.ts +0 -7
- package/dist/types-ts4.5/tokens/atlassian-spacing/spacing.d.ts +0 -10
- package/dist/types-ts4.5/tokens/atlassian-typography/font-family.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-typography/letter-spacing.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-typography/theme.d.ts +0 -10
- package/dist/types-ts4.5/tokens/atlassian-typography-adg3/font-family.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-typography-adg3/font-size.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-typography-adg3/font-weight.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-typography-adg3/letter-spacing.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-typography-adg3/line-height.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-typography-adg3/theme.d.ts +0 -145
- package/dist/types-ts4.5/tokens/atlassian-typography-minor3/font-family.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-typography-minor3/letter-spacing.d.ts +0 -4
- package/dist/types-ts4.5/tokens/atlassian-typography-minor3/theme.d.ts +0 -145
- package/dist/types-ts4.5/tokens/default/color/accent.d.ts +0 -4
- package/dist/types-ts4.5/tokens/default/color/background.d.ts +0 -4
- package/dist/types-ts4.5/tokens/default/color/border.d.ts +0 -4
- package/dist/types-ts4.5/tokens/default/color/chart.d.ts +0 -4
- package/dist/types-ts4.5/tokens/default/color/icon.d.ts +0 -4
- package/dist/types-ts4.5/tokens/default/color/interaction.d.ts +0 -4
- package/dist/types-ts4.5/tokens/default/color/skeleton.d.ts +0 -4
- package/dist/types-ts4.5/tokens/default/color/text.d.ts +0 -4
- package/dist/types-ts4.5/tokens/default/elevation/shadow.d.ts +0 -4
- package/dist/types-ts4.5/tokens/default/elevation/surface.d.ts +0 -4
- package/dist/types-ts4.5/tokens/default/opacity/opacity.d.ts +0 -3
- package/dist/types-ts4.5/tokens/default/shape/shape.d.ts +0 -3
- package/dist/types-ts4.5/tokens/default/spacing/spacing.d.ts +0 -8
- package/dist/types-ts4.5/tokens/default/typography/font-family.d.ts +0 -4
- package/dist/types-ts4.5/tokens/default/typography/font-size.d.ts +0 -4
- package/dist/types-ts4.5/tokens/default/typography/font-weight.d.ts +0 -4
- package/dist/types-ts4.5/tokens/default/typography/font.d.ts +0 -20
- package/dist/types-ts4.5/tokens/default/typography/letter-spacing.d.ts +0 -4
- package/dist/types-ts4.5/tokens/default/typography/line-height.d.ts +0 -4
- package/dist/types-ts4.5/tokens/default/utility/utility.d.ts +0 -5
|
@@ -1,214 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* The spacing attribute schema governs the non-value specific metadata to apply to the
|
|
3
|
-
* spacing theme. This governs the name, description and state
|
|
4
|
-
* of a token.
|
|
5
|
-
*/
|
|
6
|
-
const spacing = {
|
|
7
|
-
space: {
|
|
8
|
-
'0': {
|
|
9
|
-
attributes: {
|
|
10
|
-
group: 'spacing',
|
|
11
|
-
state: 'active',
|
|
12
|
-
introduced: '0.12.0',
|
|
13
|
-
description: 'Equates to `0`. Use for resetting default spacing styles.'
|
|
14
|
-
}
|
|
15
|
-
},
|
|
16
|
-
'025': {
|
|
17
|
-
attributes: {
|
|
18
|
-
group: 'spacing',
|
|
19
|
-
state: 'active',
|
|
20
|
-
suggest: ['1px', '3px'],
|
|
21
|
-
introduced: '0.12.0',
|
|
22
|
-
description: 'Use for small and compact pieces of UI.'
|
|
23
|
-
}
|
|
24
|
-
},
|
|
25
|
-
'050': {
|
|
26
|
-
attributes: {
|
|
27
|
-
group: 'spacing',
|
|
28
|
-
state: 'active',
|
|
29
|
-
suggest: ['3px', '5px'],
|
|
30
|
-
introduced: '0.12.0',
|
|
31
|
-
description: 'Use for small and compact pieces of UI.'
|
|
32
|
-
}
|
|
33
|
-
},
|
|
34
|
-
'075': {
|
|
35
|
-
attributes: {
|
|
36
|
-
group: 'spacing',
|
|
37
|
-
state: 'active',
|
|
38
|
-
suggest: ['5px', '7px'],
|
|
39
|
-
introduced: '0.12.0',
|
|
40
|
-
description: 'Use for small and compact pieces of UI.'
|
|
41
|
-
}
|
|
42
|
-
},
|
|
43
|
-
'100': {
|
|
44
|
-
attributes: {
|
|
45
|
-
group: 'spacing',
|
|
46
|
-
state: 'active',
|
|
47
|
-
suggest: ['7px', '9px'],
|
|
48
|
-
introduced: '0.12.0',
|
|
49
|
-
description: 'Use for small and compact pieces of UI.'
|
|
50
|
-
}
|
|
51
|
-
},
|
|
52
|
-
'150': {
|
|
53
|
-
attributes: {
|
|
54
|
-
group: 'spacing',
|
|
55
|
-
state: 'active',
|
|
56
|
-
suggest: ['10px', '11px', '13px', '14px'],
|
|
57
|
-
introduced: '0.12.0',
|
|
58
|
-
description: 'Use for larger and less dense pieces of UI.'
|
|
59
|
-
}
|
|
60
|
-
},
|
|
61
|
-
'200': {
|
|
62
|
-
attributes: {
|
|
63
|
-
group: 'spacing',
|
|
64
|
-
state: 'active',
|
|
65
|
-
suggest: ['14px', '15px', '17px', '18px'],
|
|
66
|
-
introduced: '0.12.0',
|
|
67
|
-
description: 'Use for larger and less dense pieces of UI.'
|
|
68
|
-
}
|
|
69
|
-
},
|
|
70
|
-
'250': {
|
|
71
|
-
attributes: {
|
|
72
|
-
group: 'spacing',
|
|
73
|
-
state: 'active',
|
|
74
|
-
suggest: ['19px', '21px', '22px', '23px'],
|
|
75
|
-
introduced: '0.12.0',
|
|
76
|
-
description: 'Use for larger and less dense pieces of UI.'
|
|
77
|
-
}
|
|
78
|
-
},
|
|
79
|
-
'300': {
|
|
80
|
-
attributes: {
|
|
81
|
-
group: 'spacing',
|
|
82
|
-
state: 'active',
|
|
83
|
-
suggest: ['23px', '25px', '26px', '27px', '28px'],
|
|
84
|
-
introduced: '0.12.0',
|
|
85
|
-
description: 'Use for larger and less dense pieces of UI.'
|
|
86
|
-
}
|
|
87
|
-
},
|
|
88
|
-
'400': {
|
|
89
|
-
attributes: {
|
|
90
|
-
group: 'spacing',
|
|
91
|
-
state: 'active',
|
|
92
|
-
suggest: ['28px', '29px', '30px', '31px', '33px', '34px', '35px'],
|
|
93
|
-
introduced: '0.12.0',
|
|
94
|
-
description: 'Use for the largest pieces of UI and for layout elements.'
|
|
95
|
-
}
|
|
96
|
-
},
|
|
97
|
-
'500': {
|
|
98
|
-
attributes: {
|
|
99
|
-
group: 'spacing',
|
|
100
|
-
state: 'active',
|
|
101
|
-
introduced: '0.12.0',
|
|
102
|
-
description: 'Use for the largest pieces of UI and for layout elements.'
|
|
103
|
-
}
|
|
104
|
-
},
|
|
105
|
-
'600': {
|
|
106
|
-
attributes: {
|
|
107
|
-
group: 'spacing',
|
|
108
|
-
state: 'active',
|
|
109
|
-
introduced: '0.12.0',
|
|
110
|
-
description: 'Use for the largest pieces of UI and for layout elements.'
|
|
111
|
-
}
|
|
112
|
-
},
|
|
113
|
-
'800': {
|
|
114
|
-
attributes: {
|
|
115
|
-
group: 'spacing',
|
|
116
|
-
state: 'active',
|
|
117
|
-
introduced: '0.12.0',
|
|
118
|
-
description: 'Use for the largest pieces of UI and for layout elements.'
|
|
119
|
-
}
|
|
120
|
-
},
|
|
121
|
-
'1000': {
|
|
122
|
-
attributes: {
|
|
123
|
-
group: 'spacing',
|
|
124
|
-
state: 'active',
|
|
125
|
-
introduced: '0.12.0',
|
|
126
|
-
description: 'Use for the largest pieces of UI and for layout elements.'
|
|
127
|
-
}
|
|
128
|
-
},
|
|
129
|
-
negative: {
|
|
130
|
-
'025': {
|
|
131
|
-
attributes: {
|
|
132
|
-
group: 'spacing',
|
|
133
|
-
state: 'active',
|
|
134
|
-
suggest: ['-1px', '-3px'],
|
|
135
|
-
introduced: '1.21.0',
|
|
136
|
-
description: 'Use to negate parent whitespace or overlap small pieces of UI.'
|
|
137
|
-
}
|
|
138
|
-
},
|
|
139
|
-
'050': {
|
|
140
|
-
attributes: {
|
|
141
|
-
group: 'spacing',
|
|
142
|
-
state: 'active',
|
|
143
|
-
suggest: ['-3px', '-5px'],
|
|
144
|
-
introduced: '1.21.0',
|
|
145
|
-
description: 'Use to negate parent whitespace or overlap small pieces of UI.'
|
|
146
|
-
}
|
|
147
|
-
},
|
|
148
|
-
'075': {
|
|
149
|
-
attributes: {
|
|
150
|
-
group: 'spacing',
|
|
151
|
-
state: 'active',
|
|
152
|
-
suggest: ['-5px', '-7px'],
|
|
153
|
-
introduced: '1.21.0',
|
|
154
|
-
description: 'Use to negate parent whitespace or overlap small pieces of UI.'
|
|
155
|
-
}
|
|
156
|
-
},
|
|
157
|
-
'100': {
|
|
158
|
-
attributes: {
|
|
159
|
-
group: 'spacing',
|
|
160
|
-
state: 'active',
|
|
161
|
-
suggest: ['-7px', '-9px'],
|
|
162
|
-
introduced: '1.21.0',
|
|
163
|
-
description: 'Use to negate parent whitespace or overlap small pieces of UI.'
|
|
164
|
-
}
|
|
165
|
-
},
|
|
166
|
-
'150': {
|
|
167
|
-
attributes: {
|
|
168
|
-
group: 'spacing',
|
|
169
|
-
state: 'active',
|
|
170
|
-
suggest: ['-10px', '-11px', '-13px', '-14px'],
|
|
171
|
-
introduced: '1.21.0',
|
|
172
|
-
description: 'Use to negate parent whitespace or overlap larger pieces of UI.'
|
|
173
|
-
}
|
|
174
|
-
},
|
|
175
|
-
'200': {
|
|
176
|
-
attributes: {
|
|
177
|
-
group: 'spacing',
|
|
178
|
-
state: 'active',
|
|
179
|
-
suggest: ['-14px', '-15px', '-17px', '-18px'],
|
|
180
|
-
introduced: '1.21.0',
|
|
181
|
-
description: 'Use to negate parent whitespace or overlap larger pieces of UI.'
|
|
182
|
-
}
|
|
183
|
-
},
|
|
184
|
-
'250': {
|
|
185
|
-
attributes: {
|
|
186
|
-
group: 'spacing',
|
|
187
|
-
state: 'active',
|
|
188
|
-
suggest: ['-19px', '-21px', '-22px', '-23px'],
|
|
189
|
-
introduced: '1.21.0',
|
|
190
|
-
description: 'Use to negate parent whitespace or overlap larger pieces of UI.'
|
|
191
|
-
}
|
|
192
|
-
},
|
|
193
|
-
'300': {
|
|
194
|
-
attributes: {
|
|
195
|
-
group: 'spacing',
|
|
196
|
-
state: 'active',
|
|
197
|
-
suggest: ['-23px', '-25px', '-26px', '-27px', '-28px'],
|
|
198
|
-
introduced: '1.21.0',
|
|
199
|
-
description: 'Use to negate parent whitespace or overlap larger pieces of UI.'
|
|
200
|
-
}
|
|
201
|
-
},
|
|
202
|
-
'400': {
|
|
203
|
-
attributes: {
|
|
204
|
-
group: 'spacing',
|
|
205
|
-
state: 'active',
|
|
206
|
-
suggest: ['-28px', '-29px', '-30px', '-31px', '-33px', '-34px', '-35px'],
|
|
207
|
-
introduced: '1.21.0',
|
|
208
|
-
description: 'Use to negate parent whitespace or overlap the largest pieces of UI.'
|
|
209
|
-
}
|
|
210
|
-
}
|
|
211
|
-
}
|
|
212
|
-
}
|
|
213
|
-
};
|
|
214
|
-
export default spacing;
|
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
const font = {
|
|
2
|
-
font: {
|
|
3
|
-
family: {
|
|
4
|
-
sans: {
|
|
5
|
-
attributes: {
|
|
6
|
-
group: 'fontFamily',
|
|
7
|
-
state: 'active',
|
|
8
|
-
introduced: '0.10.33',
|
|
9
|
-
description: 'Helpful guidance goes here'
|
|
10
|
-
}
|
|
11
|
-
},
|
|
12
|
-
monospace: {
|
|
13
|
-
attributes: {
|
|
14
|
-
group: 'fontFamily',
|
|
15
|
-
state: 'active',
|
|
16
|
-
introduced: '0.10.33',
|
|
17
|
-
description: 'Helpful guidance goes here'
|
|
18
|
-
}
|
|
19
|
-
},
|
|
20
|
-
code: {
|
|
21
|
-
attributes: {
|
|
22
|
-
group: 'fontFamily',
|
|
23
|
-
state: 'experimental',
|
|
24
|
-
introduced: '1.14.0',
|
|
25
|
-
description: 'Helpful guidance goes here'
|
|
26
|
-
}
|
|
27
|
-
},
|
|
28
|
-
brand: {
|
|
29
|
-
attributes: {
|
|
30
|
-
group: 'fontFamily',
|
|
31
|
-
state: 'experimental',
|
|
32
|
-
introduced: '1.14.0',
|
|
33
|
-
description: 'Helpful guidance goes here'
|
|
34
|
-
}
|
|
35
|
-
},
|
|
36
|
-
heading: {
|
|
37
|
-
attributes: {
|
|
38
|
-
group: 'fontFamily',
|
|
39
|
-
state: 'experimental',
|
|
40
|
-
introduced: '1.14.0',
|
|
41
|
-
description: 'Helpful guidance goes here'
|
|
42
|
-
}
|
|
43
|
-
},
|
|
44
|
-
body: {
|
|
45
|
-
attributes: {
|
|
46
|
-
group: 'fontFamily',
|
|
47
|
-
state: 'experimental',
|
|
48
|
-
introduced: '1.14.0',
|
|
49
|
-
description: 'Helpful guidance goes here'
|
|
50
|
-
}
|
|
51
|
-
}
|
|
52
|
-
}
|
|
53
|
-
}
|
|
54
|
-
};
|
|
55
|
-
export default font;
|
|
@@ -1,71 +0,0 @@
|
|
|
1
|
-
const font = {
|
|
2
|
-
font: {
|
|
3
|
-
size: {
|
|
4
|
-
'050': {
|
|
5
|
-
attributes: {
|
|
6
|
-
group: 'fontSize',
|
|
7
|
-
state: 'active',
|
|
8
|
-
introduced: '0.10.33',
|
|
9
|
-
description: 'Helpful guidance goes here'
|
|
10
|
-
}
|
|
11
|
-
},
|
|
12
|
-
'075': {
|
|
13
|
-
attributes: {
|
|
14
|
-
group: 'fontSize',
|
|
15
|
-
state: 'active',
|
|
16
|
-
introduced: '0.10.33',
|
|
17
|
-
description: 'Helpful guidance goes here'
|
|
18
|
-
}
|
|
19
|
-
},
|
|
20
|
-
'100': {
|
|
21
|
-
attributes: {
|
|
22
|
-
group: 'fontSize',
|
|
23
|
-
state: 'active',
|
|
24
|
-
introduced: '0.10.33',
|
|
25
|
-
description: 'Helpful guidance goes here'
|
|
26
|
-
}
|
|
27
|
-
},
|
|
28
|
-
'200': {
|
|
29
|
-
attributes: {
|
|
30
|
-
group: 'fontSize',
|
|
31
|
-
state: 'active',
|
|
32
|
-
introduced: '0.10.33',
|
|
33
|
-
description: 'Helpful guidance goes here'
|
|
34
|
-
}
|
|
35
|
-
},
|
|
36
|
-
'300': {
|
|
37
|
-
attributes: {
|
|
38
|
-
group: 'fontSize',
|
|
39
|
-
state: 'active',
|
|
40
|
-
introduced: '0.10.33',
|
|
41
|
-
description: 'Helpful guidance goes here'
|
|
42
|
-
}
|
|
43
|
-
},
|
|
44
|
-
'400': {
|
|
45
|
-
attributes: {
|
|
46
|
-
group: 'fontSize',
|
|
47
|
-
state: 'active',
|
|
48
|
-
introduced: '0.10.33',
|
|
49
|
-
description: 'Helpful guidance goes here'
|
|
50
|
-
}
|
|
51
|
-
},
|
|
52
|
-
'500': {
|
|
53
|
-
attributes: {
|
|
54
|
-
group: 'fontSize',
|
|
55
|
-
state: 'active',
|
|
56
|
-
introduced: '0.10.33',
|
|
57
|
-
description: 'Helpful guidance goes here'
|
|
58
|
-
}
|
|
59
|
-
},
|
|
60
|
-
'600': {
|
|
61
|
-
attributes: {
|
|
62
|
-
group: 'fontSize',
|
|
63
|
-
state: 'active',
|
|
64
|
-
introduced: '0.10.33',
|
|
65
|
-
description: 'Helpful guidance goes here'
|
|
66
|
-
}
|
|
67
|
-
}
|
|
68
|
-
}
|
|
69
|
-
}
|
|
70
|
-
};
|
|
71
|
-
export default font;
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
const font = {
|
|
2
|
-
font: {
|
|
3
|
-
weight: {
|
|
4
|
-
regular: {
|
|
5
|
-
attributes: {
|
|
6
|
-
group: 'fontWeight',
|
|
7
|
-
state: 'active',
|
|
8
|
-
introduced: '0.10.33',
|
|
9
|
-
description: 'Helpful guidance goes here'
|
|
10
|
-
}
|
|
11
|
-
},
|
|
12
|
-
medium: {
|
|
13
|
-
attributes: {
|
|
14
|
-
group: 'fontWeight',
|
|
15
|
-
state: 'active',
|
|
16
|
-
introduced: '0.10.33',
|
|
17
|
-
description: 'Helpful guidance goes here'
|
|
18
|
-
}
|
|
19
|
-
},
|
|
20
|
-
semibold: {
|
|
21
|
-
attributes: {
|
|
22
|
-
group: 'fontWeight',
|
|
23
|
-
state: 'active',
|
|
24
|
-
introduced: '0.10.33',
|
|
25
|
-
description: 'Helpful guidance goes here'
|
|
26
|
-
}
|
|
27
|
-
},
|
|
28
|
-
bold: {
|
|
29
|
-
attributes: {
|
|
30
|
-
group: 'fontWeight',
|
|
31
|
-
state: 'active',
|
|
32
|
-
introduced: '0.10.33',
|
|
33
|
-
description: 'Helpful guidance goes here'
|
|
34
|
-
}
|
|
35
|
-
}
|
|
36
|
-
}
|
|
37
|
-
}
|
|
38
|
-
};
|
|
39
|
-
export default font;
|
|
@@ -1,134 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
*
|
|
3
|
-
* @example
|
|
4
|
-
* ```js
|
|
5
|
-
* {
|
|
6
|
-
* body: {
|
|
7
|
-
* value: {
|
|
8
|
-
* fontWeight: 500,
|
|
9
|
-
* fontSize: "16px",
|
|
10
|
-
* lineHeight: "22px",
|
|
11
|
-
* fontFamily: "Helvetica",
|
|
12
|
-
* fontStyle: "italic"
|
|
13
|
-
* },
|
|
14
|
-
* type: "typography"
|
|
15
|
-
*}
|
|
16
|
-
* ```
|
|
17
|
-
*/
|
|
18
|
-
const font = {
|
|
19
|
-
font: {
|
|
20
|
-
code: {
|
|
21
|
-
'[default]': {
|
|
22
|
-
attributes: {
|
|
23
|
-
group: 'typography',
|
|
24
|
-
state: 'experimental',
|
|
25
|
-
introduced: '1.14.0',
|
|
26
|
-
description: 'Used for monospace and code.'
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
},
|
|
30
|
-
heading: {
|
|
31
|
-
xxlarge: {
|
|
32
|
-
attributes: {
|
|
33
|
-
group: 'typography',
|
|
34
|
-
state: 'experimental',
|
|
35
|
-
introduced: '1.14.0',
|
|
36
|
-
description: 'TBD'
|
|
37
|
-
}
|
|
38
|
-
},
|
|
39
|
-
xlarge: {
|
|
40
|
-
attributes: {
|
|
41
|
-
group: 'typography',
|
|
42
|
-
state: 'experimental',
|
|
43
|
-
introduced: '1.14.0',
|
|
44
|
-
description: 'TBD'
|
|
45
|
-
}
|
|
46
|
-
},
|
|
47
|
-
large: {
|
|
48
|
-
attributes: {
|
|
49
|
-
group: 'typography',
|
|
50
|
-
state: 'experimental',
|
|
51
|
-
introduced: '1.14.0',
|
|
52
|
-
description: 'TBD'
|
|
53
|
-
}
|
|
54
|
-
},
|
|
55
|
-
medium: {
|
|
56
|
-
attributes: {
|
|
57
|
-
group: 'typography',
|
|
58
|
-
state: 'experimental',
|
|
59
|
-
introduced: '1.14.0',
|
|
60
|
-
description: 'TBD'
|
|
61
|
-
}
|
|
62
|
-
},
|
|
63
|
-
small: {
|
|
64
|
-
attributes: {
|
|
65
|
-
group: 'typography',
|
|
66
|
-
state: 'experimental',
|
|
67
|
-
introduced: '1.14.0',
|
|
68
|
-
description: 'TBD'
|
|
69
|
-
}
|
|
70
|
-
},
|
|
71
|
-
xsmall: {
|
|
72
|
-
attributes: {
|
|
73
|
-
group: 'typography',
|
|
74
|
-
state: 'experimental',
|
|
75
|
-
introduced: '1.14.0',
|
|
76
|
-
description: 'TBD'
|
|
77
|
-
}
|
|
78
|
-
},
|
|
79
|
-
xxsmall: {
|
|
80
|
-
attributes: {
|
|
81
|
-
group: 'typography',
|
|
82
|
-
state: 'experimental',
|
|
83
|
-
introduced: '1.14.0',
|
|
84
|
-
description: 'TBD'
|
|
85
|
-
}
|
|
86
|
-
}
|
|
87
|
-
},
|
|
88
|
-
ui: {
|
|
89
|
-
small: {
|
|
90
|
-
attributes: {
|
|
91
|
-
group: 'typography',
|
|
92
|
-
state: 'experimental',
|
|
93
|
-
introduced: '1.14.0',
|
|
94
|
-
description: 'Single-line non-wrapping supporting text like that in a smaller label.'
|
|
95
|
-
}
|
|
96
|
-
},
|
|
97
|
-
'[default]': {
|
|
98
|
-
attributes: {
|
|
99
|
-
group: 'typography',
|
|
100
|
-
state: 'experimental',
|
|
101
|
-
introduced: '1.14.0',
|
|
102
|
-
description: 'Single-line non-wrapping text like that in a button.'
|
|
103
|
-
}
|
|
104
|
-
}
|
|
105
|
-
},
|
|
106
|
-
body: {
|
|
107
|
-
large: {
|
|
108
|
-
attributes: {
|
|
109
|
-
group: 'typography',
|
|
110
|
-
state: 'experimental',
|
|
111
|
-
introduced: '1.14.0',
|
|
112
|
-
description: 'Larger body font or default body font for text rich experiences.'
|
|
113
|
-
}
|
|
114
|
-
},
|
|
115
|
-
small: {
|
|
116
|
-
attributes: {
|
|
117
|
-
group: 'typography',
|
|
118
|
-
state: 'experimental',
|
|
119
|
-
introduced: '1.14.0',
|
|
120
|
-
description: 'Smaller body font.'
|
|
121
|
-
}
|
|
122
|
-
},
|
|
123
|
-
'[default]': {
|
|
124
|
-
attributes: {
|
|
125
|
-
group: 'typography',
|
|
126
|
-
state: 'experimental',
|
|
127
|
-
introduced: '1.14.0',
|
|
128
|
-
description: 'The default body font.'
|
|
129
|
-
}
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
}
|
|
133
|
-
};
|
|
134
|
-
export default font;
|
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
const font = {
|
|
2
|
-
font: {
|
|
3
|
-
letterSpacing: {
|
|
4
|
-
'0': {
|
|
5
|
-
attributes: {
|
|
6
|
-
group: 'letterSpacing',
|
|
7
|
-
state: 'active',
|
|
8
|
-
introduced: '0.10.33',
|
|
9
|
-
description: 'Helpful guidance goes here'
|
|
10
|
-
}
|
|
11
|
-
},
|
|
12
|
-
'100': {
|
|
13
|
-
attributes: {
|
|
14
|
-
group: 'letterSpacing',
|
|
15
|
-
state: 'active',
|
|
16
|
-
introduced: '0.10.33',
|
|
17
|
-
description: 'Helpful guidance goes here'
|
|
18
|
-
}
|
|
19
|
-
},
|
|
20
|
-
'200': {
|
|
21
|
-
attributes: {
|
|
22
|
-
group: 'letterSpacing',
|
|
23
|
-
state: 'active',
|
|
24
|
-
introduced: '0.10.33',
|
|
25
|
-
description: 'Helpful guidance goes here'
|
|
26
|
-
}
|
|
27
|
-
},
|
|
28
|
-
'300': {
|
|
29
|
-
attributes: {
|
|
30
|
-
group: 'letterSpacing',
|
|
31
|
-
state: 'active',
|
|
32
|
-
introduced: '0.10.33',
|
|
33
|
-
description: 'Helpful guidance goes here'
|
|
34
|
-
}
|
|
35
|
-
},
|
|
36
|
-
'400': {
|
|
37
|
-
attributes: {
|
|
38
|
-
group: 'letterSpacing',
|
|
39
|
-
state: 'active',
|
|
40
|
-
introduced: '0.10.33',
|
|
41
|
-
description: 'Helpful guidance goes here'
|
|
42
|
-
}
|
|
43
|
-
}
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
};
|
|
47
|
-
export default font;
|
|
@@ -1,63 +0,0 @@
|
|
|
1
|
-
const font = {
|
|
2
|
-
font: {
|
|
3
|
-
lineHeight: {
|
|
4
|
-
'1': {
|
|
5
|
-
attributes: {
|
|
6
|
-
group: 'lineHeight',
|
|
7
|
-
state: 'active',
|
|
8
|
-
introduced: '0.10.33',
|
|
9
|
-
description: 'Used single-line text.'
|
|
10
|
-
}
|
|
11
|
-
},
|
|
12
|
-
'100': {
|
|
13
|
-
attributes: {
|
|
14
|
-
group: 'lineHeight',
|
|
15
|
-
state: 'active',
|
|
16
|
-
introduced: '0.10.33',
|
|
17
|
-
description: 'Helpful guidance goes here'
|
|
18
|
-
}
|
|
19
|
-
},
|
|
20
|
-
'200': {
|
|
21
|
-
attributes: {
|
|
22
|
-
group: 'lineHeight',
|
|
23
|
-
state: 'active',
|
|
24
|
-
introduced: '0.10.33',
|
|
25
|
-
description: 'Helpful guidance goes here'
|
|
26
|
-
}
|
|
27
|
-
},
|
|
28
|
-
'300': {
|
|
29
|
-
attributes: {
|
|
30
|
-
group: 'lineHeight',
|
|
31
|
-
state: 'active',
|
|
32
|
-
introduced: '0.10.33',
|
|
33
|
-
description: 'Helpful guidance goes here'
|
|
34
|
-
}
|
|
35
|
-
},
|
|
36
|
-
'400': {
|
|
37
|
-
attributes: {
|
|
38
|
-
group: 'lineHeight',
|
|
39
|
-
state: 'active',
|
|
40
|
-
introduced: '0.10.33',
|
|
41
|
-
description: 'Helpful guidance goes here'
|
|
42
|
-
}
|
|
43
|
-
},
|
|
44
|
-
'500': {
|
|
45
|
-
attributes: {
|
|
46
|
-
group: 'lineHeight',
|
|
47
|
-
state: 'active',
|
|
48
|
-
introduced: '0.10.33',
|
|
49
|
-
description: 'Helpful guidance goes here'
|
|
50
|
-
}
|
|
51
|
-
},
|
|
52
|
-
'600': {
|
|
53
|
-
attributes: {
|
|
54
|
-
group: 'lineHeight',
|
|
55
|
-
state: 'active',
|
|
56
|
-
introduced: '0.10.33',
|
|
57
|
-
description: 'Helpful guidance goes here'
|
|
58
|
-
}
|
|
59
|
-
}
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
};
|
|
63
|
-
export default font;
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
const utility = {
|
|
2
|
-
UNSAFE: {
|
|
3
|
-
transparent: {
|
|
4
|
-
attributes: {
|
|
5
|
-
group: 'raw',
|
|
6
|
-
state: 'active',
|
|
7
|
-
introduced: '0.1.1',
|
|
8
|
-
description: 'Transparent token used for backwards compatibility between new and old theming solutions'
|
|
9
|
-
}
|
|
10
|
-
},
|
|
11
|
-
textTransformUppercase: {
|
|
12
|
-
attributes: {
|
|
13
|
-
group: 'raw',
|
|
14
|
-
state: 'active',
|
|
15
|
-
introduced: '1.20.1',
|
|
16
|
-
description: 'Text transform uppercase token used for backwards compatibility between new and old theming solutions'
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
},
|
|
20
|
-
elevation: {
|
|
21
|
-
surface: {
|
|
22
|
-
current: {
|
|
23
|
-
attributes: {
|
|
24
|
-
group: 'paint',
|
|
25
|
-
state: 'active',
|
|
26
|
-
introduced: '1.14.0',
|
|
27
|
-
description: `A dynamic token that represents the current surface color set by a parent element. It defaults to the 'elevation.surface' token value.`
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
};
|
|
33
|
-
export default {
|
|
34
|
-
utility
|
|
35
|
-
};
|