@elastic/eui-theme-common 1.0.0-snapshot.1746441787383 → 1.0.0-snapshot.1748601905883

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.
@@ -84,7 +84,7 @@ export interface _EuiThemeTitle {
84
84
  export declare type _EuiThemeFont = _EuiThemeFontBase & {
85
85
  scale: _EuiThemeFontScales;
86
86
  /**
87
- * @see {@link https://eui.elastic.co/#/theming/typography/values%23font-weight | Reference} for more information
87
+ * See {@link https://eui.elastic.co/#/theming/typography/values%23font-weight | Reference} for more information
88
88
  */
89
89
  weight: _EuiThemeFontWeights;
90
90
  body: _EuiThemeBody;
@@ -1 +1 @@
1
- {"version":3,"file":"typography.js","names":["EuiThemeFontUnits","exports","EuiThemeFontScales","EuiThemeFontWeights"],"sources":["../../../../src/global_styling/variables/typography.ts"],"sourcesContent":["/*\n * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one\n * or more contributor license agreements. Licensed under the Elastic License\n * 2.0 and the Server Side Public License, v 1; you may not use this file except\n * in compliance with, at your election, the Elastic License 2.0 or the Server\n * Side Public License, v 1.\n */\n\nimport { CSSProperties } from 'react';\n\n/**\n * Font units of measure\n */\n\nexport const EuiThemeFontUnits = ['rem', 'px', 'em'] as const;\n\nexport type _EuiThemeFontUnit = (typeof EuiThemeFontUnits)[number];\n\n/*\n * Font scale\n */\n\nexport const EuiThemeFontScales = [\n 'xxxs',\n 'xxs',\n 'xs',\n 's',\n 'm',\n 'l',\n 'xl',\n 'xxl',\n] as const;\n\nexport type _EuiThemeFontScale = (typeof EuiThemeFontScales)[number];\n\nexport type _EuiThemeFontScales = Record<_EuiThemeFontScale, number>;\n\n/*\n * Font base settings\n */\n\nexport type _EuiThemeFontBase = {\n /**\n * The whole font family stack for all parts of the UI.\n * We encourage only customizing the first font in the stack.\n */\n family: string;\n /**\n * The font family used for monospace UI elements like EuiCode\n */\n familyCode?: string;\n /**\n * The font family used for serif UI elements like blockquotes within EuiText\n */\n familySerif?: string;\n /**\n * Controls advanced features OpenType fonts.\n * https://developer.mozilla.org/en-US/docs/Web/CSS/font-feature-settings\n */\n featureSettings?: string;\n /**\n * Sets the default units used for font size & line height set by UI components\n * like EuiText or EuiTitle. Defaults to `rem`.\n *\n * NOTE: This may overridden by some internal usages, e.g.\n * EuiText's `relative` size which must use `em`.\n *\n * @default 'rem'\n */\n defaultUnits: _EuiThemeFontUnit;\n /**\n * A computed number that is 1/4 of `base`\n */\n baseline: number;\n /**\n * Establishes the ideal line-height percentage, but it is the `baseline` integer that establishes the final pixel/rem value\n */\n lineHeightMultiplier: number;\n};\n\n/*\n * Font weights\n */\n\nexport const EuiThemeFontWeights = [\n 'light',\n 'regular',\n 'medium',\n 'semiBold',\n 'bold',\n] as const;\n\nexport type _EuiThemeFontWeight = (typeof EuiThemeFontWeights)[number];\n\nexport type _EuiThemeFontWeights = {\n /** - Default value: 300 */\n light: CSSProperties['fontWeight'];\n /** - Default value: 400 */\n regular: CSSProperties['fontWeight'];\n /** - Default value: 500 */\n medium: CSSProperties['fontWeight'];\n /** - Default value: 600 */\n semiBold: CSSProperties['fontWeight'];\n /** - Default value: 700 */\n bold: CSSProperties['fontWeight'];\n};\n\n/**\n * Body / Base styles\n */\n\nexport interface _EuiThemeBody {\n /**\n * A sizing key from one of the font scales to set as the base body font-size\n */\n scale: _EuiThemeFontScale;\n /**\n * A font weight key for setting the base body weight\n */\n weight: keyof _EuiThemeFontWeights;\n}\n\n/**\n * Title styles\n */\n\nexport interface _EuiThemeTitle {\n /**\n * A font weight key for setting the base weight for titles and headings\n */\n weight: keyof _EuiThemeFontWeights;\n}\n\n/*\n * Font\n */\n\nexport type _EuiThemeFont = _EuiThemeFontBase & {\n scale: _EuiThemeFontScales;\n /**\n * @see {@link https://eui.elastic.co/#/theming/typography/values%23font-weight | Reference} for more information\n */\n weight: _EuiThemeFontWeights;\n body: _EuiThemeBody;\n title: _EuiThemeTitle;\n};\n"],"mappings":";;;;;;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;;AAIA;AACA;AACA;;AAEO,IAAMA,iBAAiB,GAAAC,OAAA,CAAAD,iBAAA,GAAG,CAAC,KAAK,EAAE,IAAI,EAAE,IAAI,CAAU;AAI7D;AACA;AACA;;AAEO,IAAME,kBAAkB,GAAAD,OAAA,CAAAC,kBAAA,GAAG,CAChC,MAAM,EACN,KAAK,EACL,IAAI,EACJ,GAAG,EACH,GAAG,EACH,GAAG,EACH,IAAI,EACJ,KAAK,CACG;;AAMV;AACA;AACA;;AAyCA;AACA;AACA;;AAEO,IAAMC,mBAAmB,GAAAF,OAAA,CAAAE,mBAAA,GAAG,CACjC,OAAO,EACP,SAAS,EACT,QAAQ,EACR,UAAU,EACV,MAAM,CACE;;AAiBV;AACA;AACA;;AAaA;AACA;AACA;;AASA;AACA;AACA","ignoreList":[]}
1
+ {"version":3,"file":"typography.js","names":["EuiThemeFontUnits","exports","EuiThemeFontScales","EuiThemeFontWeights"],"sources":["../../../../src/global_styling/variables/typography.ts"],"sourcesContent":["/*\n * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one\n * or more contributor license agreements. Licensed under the Elastic License\n * 2.0 and the Server Side Public License, v 1; you may not use this file except\n * in compliance with, at your election, the Elastic License 2.0 or the Server\n * Side Public License, v 1.\n */\n\nimport { CSSProperties } from 'react';\n\n/**\n * Font units of measure\n */\n\nexport const EuiThemeFontUnits = ['rem', 'px', 'em'] as const;\n\nexport type _EuiThemeFontUnit = (typeof EuiThemeFontUnits)[number];\n\n/*\n * Font scale\n */\n\nexport const EuiThemeFontScales = [\n 'xxxs',\n 'xxs',\n 'xs',\n 's',\n 'm',\n 'l',\n 'xl',\n 'xxl',\n] as const;\n\nexport type _EuiThemeFontScale = (typeof EuiThemeFontScales)[number];\n\nexport type _EuiThemeFontScales = Record<_EuiThemeFontScale, number>;\n\n/*\n * Font base settings\n */\n\nexport type _EuiThemeFontBase = {\n /**\n * The whole font family stack for all parts of the UI.\n * We encourage only customizing the first font in the stack.\n */\n family: string;\n /**\n * The font family used for monospace UI elements like EuiCode\n */\n familyCode?: string;\n /**\n * The font family used for serif UI elements like blockquotes within EuiText\n */\n familySerif?: string;\n /**\n * Controls advanced features OpenType fonts.\n * https://developer.mozilla.org/en-US/docs/Web/CSS/font-feature-settings\n */\n featureSettings?: string;\n /**\n * Sets the default units used for font size & line height set by UI components\n * like EuiText or EuiTitle. Defaults to `rem`.\n *\n * NOTE: This may overridden by some internal usages, e.g.\n * EuiText's `relative` size which must use `em`.\n *\n * @default 'rem'\n */\n defaultUnits: _EuiThemeFontUnit;\n /**\n * A computed number that is 1/4 of `base`\n */\n baseline: number;\n /**\n * Establishes the ideal line-height percentage, but it is the `baseline` integer that establishes the final pixel/rem value\n */\n lineHeightMultiplier: number;\n};\n\n/*\n * Font weights\n */\n\nexport const EuiThemeFontWeights = [\n 'light',\n 'regular',\n 'medium',\n 'semiBold',\n 'bold',\n] as const;\n\nexport type _EuiThemeFontWeight = (typeof EuiThemeFontWeights)[number];\n\nexport type _EuiThemeFontWeights = {\n /** - Default value: 300 */\n light: CSSProperties['fontWeight'];\n /** - Default value: 400 */\n regular: CSSProperties['fontWeight'];\n /** - Default value: 500 */\n medium: CSSProperties['fontWeight'];\n /** - Default value: 600 */\n semiBold: CSSProperties['fontWeight'];\n /** - Default value: 700 */\n bold: CSSProperties['fontWeight'];\n};\n\n/**\n * Body / Base styles\n */\n\nexport interface _EuiThemeBody {\n /**\n * A sizing key from one of the font scales to set as the base body font-size\n */\n scale: _EuiThemeFontScale;\n /**\n * A font weight key for setting the base body weight\n */\n weight: keyof _EuiThemeFontWeights;\n}\n\n/**\n * Title styles\n */\n\nexport interface _EuiThemeTitle {\n /**\n * A font weight key for setting the base weight for titles and headings\n */\n weight: keyof _EuiThemeFontWeights;\n}\n\n/*\n * Font\n */\n\nexport type _EuiThemeFont = _EuiThemeFontBase & {\n scale: _EuiThemeFontScales;\n /**\n * See {@link https://eui.elastic.co/#/theming/typography/values%23font-weight | Reference} for more information\n */\n weight: _EuiThemeFontWeights;\n body: _EuiThemeBody;\n title: _EuiThemeTitle;\n};\n"],"mappings":";;;;;;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;;AAIA;AACA;AACA;;AAEO,IAAMA,iBAAiB,GAAAC,OAAA,CAAAD,iBAAA,GAAG,CAAC,KAAK,EAAE,IAAI,EAAE,IAAI,CAAU;AAI7D;AACA;AACA;;AAEO,IAAME,kBAAkB,GAAAD,OAAA,CAAAC,kBAAA,GAAG,CAChC,MAAM,EACN,KAAK,EACL,IAAI,EACJ,GAAG,EACH,GAAG,EACH,GAAG,EACH,IAAI,EACJ,KAAK,CACG;;AAMV;AACA;AACA;;AAyCA;AACA;AACA;;AAEO,IAAMC,mBAAmB,GAAAF,OAAA,CAAAE,mBAAA,GAAG,CACjC,OAAO,EACP,SAAS,EACT,QAAQ,EACR,UAAU,EACV,MAAM,CACE;;AAiBV;AACA;AACA;;AAaA;AACA;AACA;;AASA;AACA;AACA","ignoreList":[]}
@@ -34,7 +34,7 @@ export declare type EuiThemeShapeBase = {
34
34
  /** - Default value: 16 */
35
35
  base: _EuiThemeBase;
36
36
  /**
37
- * @see {@link https://eui.elastic.co/#/theming/sizing | Reference} for more information
37
+ * See {@link https://eui.elastic.co/#/theming/sizing | Reference} for more information
38
38
  */
39
39
  size: _EuiThemeSizes;
40
40
  font: _EuiThemeFont;
@@ -1 +1 @@
1
- {"version":3,"file":"types.js","names":["COLOR_MODES_STANDARD","exports","light","dark","COLOR_MODES_INVERSE","EUI_THEME_HIGH_CONTRAST_MODE_KEY","EUI_THEME_OVERRIDES_KEY"],"sources":["../../../../src/services/theme/types.ts"],"sourcesContent":["/*\n * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one\n * or more contributor license agreements. Licensed under the Elastic License\n * 2.0 and the Server Side Public License, v 1; you may not use this file except\n * in compliance with, at your election, the Elastic License 2.0 or the Server\n * Side Public License, v 1.\n */\n\nimport type { CSSObject } from '@emotion/react';\n\nimport type { RecursivePartial, ValueOf } from '../../types';\n\nimport type { _EuiThemeAnimation } from '../../global_styling/variables/animations';\nimport type { _EuiThemeBreakpoints } from '../../global_styling/variables/breakpoint';\nimport type { _EuiThemeBorder } from '../../global_styling/variables/borders';\nimport type { _EuiThemeColors } from '../../global_styling/variables/colors';\nimport type {\n _EuiThemeBase,\n _EuiThemeSizes,\n} from '../../global_styling/variables/size';\nimport type { _EuiThemeFont } from '../../global_styling/variables/typography';\nimport type { _EuiThemeFocus } from '../../global_styling/variables/states';\nimport type { _EuiThemeLevels } from '../../global_styling/variables/levels';\nimport type { _EuiThemeComponents } from '../../global_styling/variables/components';\nimport type { _EuiThemeFlags } from '../../global_styling/variables';\nimport type { _EuiThemeOverrides } from '../../global_styling/variables/overrides';\n\nexport const COLOR_MODES_STANDARD = {\n light: 'LIGHT',\n dark: 'DARK',\n} as const;\nexport const COLOR_MODES_INVERSE = 'INVERSE' as const;\n\nexport type EuiThemeColorModeInverse = typeof COLOR_MODES_INVERSE;\nexport type EuiThemeColorModeStandard = ValueOf<typeof COLOR_MODES_STANDARD>;\nexport type EuiThemeColorMode =\n | 'light'\n | 'dark'\n | EuiThemeColorModeStandard\n | 'inverse'\n | EuiThemeColorModeInverse;\n\nexport type ColorModeSwitch<T = string> =\n | {\n [key in EuiThemeColorModeStandard]: T;\n }\n | T;\n\nexport type StrictColorModeSwitch<T = string> = {\n [key in EuiThemeColorModeStandard]: T;\n};\n\n// Consumers can pass a boolean to manually toggle the preferred high contrast mode,\n// but our internal high contrast mode enum is slightly more granular to account for\n// Windows's high contrast themes, which force colors/backgrounds/shadows\nexport type EuiThemeHighContrastModeProp = boolean;\nexport type EuiThemeHighContrastMode = 'forced' | 'preferred' | false;\n\nexport const EUI_THEME_HIGH_CONTRAST_MODE_KEY = 'HCM' as const;\nexport const EUI_THEME_OVERRIDES_KEY = 'overrides' as const;\n\nexport type EuiThemeShapeBase = {\n colors: _EuiThemeColors;\n /** - Default value: 16 */\n base: _EuiThemeBase;\n /**\n * @see {@link https://eui.elastic.co/#/theming/sizing | Reference} for more information\n */\n size: _EuiThemeSizes;\n font: _EuiThemeFont;\n border: _EuiThemeBorder;\n focus: _EuiThemeFocus;\n animation: _EuiThemeAnimation;\n breakpoint: _EuiThemeBreakpoints;\n levels: _EuiThemeLevels;\n components: _EuiThemeComponents;\n flags: _EuiThemeFlags;\n};\n\nexport type EuiThemeShape = EuiThemeShapeBase & {\n overrides?: _EuiThemeOverrides;\n};\n\nexport type EuiThemeSystem<T = {}> = {\n root: EuiThemeShape & T;\n model: EuiThemeShape & T;\n key: string;\n};\n\nexport type EuiThemeModifications<T = {}> = RecursivePartial<EuiThemeShape & T>;\n\nexport type ComputedThemeShape<\n T,\n P = string | number | bigint | boolean | null | undefined\n> = T extends P | ColorModeSwitch<infer X>\n ? T extends ColorModeSwitch<X>\n ? X extends P\n ? X\n : {\n [K in keyof (X &\n Exclude<\n T,\n keyof X | keyof StrictColorModeSwitch\n >)]: ComputedThemeShape<\n (X & Exclude<T, keyof X | keyof StrictColorModeSwitch>)[K],\n P\n >;\n }\n : T\n : {\n [K in keyof T]: ComputedThemeShape<T[K], P>;\n };\n\nexport type EuiThemeComputed<T = {}> = ComputedThemeShape<EuiThemeShape & T> & {\n themeName: string;\n};\n\nexport type EuiThemeNested = {\n isGlobalTheme: boolean;\n hasDifferentColorFromGlobalTheme: boolean;\n bodyColor: string;\n colorClassName: string;\n setGlobalCSSVariables: Function;\n globalCSSVariables?: CSSObject;\n setNearestThemeCSSVariables: Function;\n themeCSSVariables?: CSSObject;\n};\n\nexport interface UseEuiTheme<T extends {} = {}> {\n euiTheme: EuiThemeComputed<T>;\n colorMode: EuiThemeColorModeStandard;\n highContrastMode: EuiThemeHighContrastMode;\n modifications: EuiThemeModifications<T>;\n}\n"],"mappings":";;;;;;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;;AAqBO,IAAMA,oBAAoB,GAAAC,OAAA,CAAAD,oBAAA,GAAG;EAClCE,KAAK,EAAE,OAAO;EACdC,IAAI,EAAE;AACR,CAAU;AACH,IAAMC,mBAAmB,GAAAH,OAAA,CAAAG,mBAAA,GAAG,SAAkB;;AAqBrD;AACA;AACA;;AAIO,IAAMC,gCAAgC,GAAAJ,OAAA,CAAAI,gCAAA,GAAG,KAAc;AACvD,IAAMC,uBAAuB,GAAAL,OAAA,CAAAK,uBAAA,GAAG,WAAoB","ignoreList":[]}
1
+ {"version":3,"file":"types.js","names":["COLOR_MODES_STANDARD","exports","light","dark","COLOR_MODES_INVERSE","EUI_THEME_HIGH_CONTRAST_MODE_KEY","EUI_THEME_OVERRIDES_KEY"],"sources":["../../../../src/services/theme/types.ts"],"sourcesContent":["/*\n * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one\n * or more contributor license agreements. Licensed under the Elastic License\n * 2.0 and the Server Side Public License, v 1; you may not use this file except\n * in compliance with, at your election, the Elastic License 2.0 or the Server\n * Side Public License, v 1.\n */\n\nimport type { CSSObject } from '@emotion/react';\n\nimport type { RecursivePartial, ValueOf } from '../../types';\n\nimport type { _EuiThemeAnimation } from '../../global_styling/variables/animations';\nimport type { _EuiThemeBreakpoints } from '../../global_styling/variables/breakpoint';\nimport type { _EuiThemeBorder } from '../../global_styling/variables/borders';\nimport type { _EuiThemeColors } from '../../global_styling/variables/colors';\nimport type {\n _EuiThemeBase,\n _EuiThemeSizes,\n} from '../../global_styling/variables/size';\nimport type { _EuiThemeFont } from '../../global_styling/variables/typography';\nimport type { _EuiThemeFocus } from '../../global_styling/variables/states';\nimport type { _EuiThemeLevels } from '../../global_styling/variables/levels';\nimport type { _EuiThemeComponents } from '../../global_styling/variables/components';\nimport type { _EuiThemeFlags } from '../../global_styling/variables';\nimport type { _EuiThemeOverrides } from '../../global_styling/variables/overrides';\n\nexport const COLOR_MODES_STANDARD = {\n light: 'LIGHT',\n dark: 'DARK',\n} as const;\nexport const COLOR_MODES_INVERSE = 'INVERSE' as const;\n\nexport type EuiThemeColorModeInverse = typeof COLOR_MODES_INVERSE;\nexport type EuiThemeColorModeStandard = ValueOf<typeof COLOR_MODES_STANDARD>;\nexport type EuiThemeColorMode =\n | 'light'\n | 'dark'\n | EuiThemeColorModeStandard\n | 'inverse'\n | EuiThemeColorModeInverse;\n\nexport type ColorModeSwitch<T = string> =\n | {\n [key in EuiThemeColorModeStandard]: T;\n }\n | T;\n\nexport type StrictColorModeSwitch<T = string> = {\n [key in EuiThemeColorModeStandard]: T;\n};\n\n// Consumers can pass a boolean to manually toggle the preferred high contrast mode,\n// but our internal high contrast mode enum is slightly more granular to account for\n// Windows's high contrast themes, which force colors/backgrounds/shadows\nexport type EuiThemeHighContrastModeProp = boolean;\nexport type EuiThemeHighContrastMode = 'forced' | 'preferred' | false;\n\nexport const EUI_THEME_HIGH_CONTRAST_MODE_KEY = 'HCM' as const;\nexport const EUI_THEME_OVERRIDES_KEY = 'overrides' as const;\n\nexport type EuiThemeShapeBase = {\n colors: _EuiThemeColors;\n /** - Default value: 16 */\n base: _EuiThemeBase;\n /**\n * See {@link https://eui.elastic.co/#/theming/sizing | Reference} for more information\n */\n size: _EuiThemeSizes;\n font: _EuiThemeFont;\n border: _EuiThemeBorder;\n focus: _EuiThemeFocus;\n animation: _EuiThemeAnimation;\n breakpoint: _EuiThemeBreakpoints;\n levels: _EuiThemeLevels;\n components: _EuiThemeComponents;\n flags: _EuiThemeFlags;\n};\n\nexport type EuiThemeShape = EuiThemeShapeBase & {\n overrides?: _EuiThemeOverrides;\n};\n\nexport type EuiThemeSystem<T = {}> = {\n root: EuiThemeShape & T;\n model: EuiThemeShape & T;\n key: string;\n};\n\nexport type EuiThemeModifications<T = {}> = RecursivePartial<EuiThemeShape & T>;\n\nexport type ComputedThemeShape<\n T,\n P = string | number | bigint | boolean | null | undefined\n> = T extends P | ColorModeSwitch<infer X>\n ? T extends ColorModeSwitch<X>\n ? X extends P\n ? X\n : {\n [K in keyof (X &\n Exclude<\n T,\n keyof X | keyof StrictColorModeSwitch\n >)]: ComputedThemeShape<\n (X & Exclude<T, keyof X | keyof StrictColorModeSwitch>)[K],\n P\n >;\n }\n : T\n : {\n [K in keyof T]: ComputedThemeShape<T[K], P>;\n };\n\nexport type EuiThemeComputed<T = {}> = ComputedThemeShape<EuiThemeShape & T> & {\n themeName: string;\n};\n\nexport type EuiThemeNested = {\n isGlobalTheme: boolean;\n hasDifferentColorFromGlobalTheme: boolean;\n bodyColor: string;\n colorClassName: string;\n setGlobalCSSVariables: Function;\n globalCSSVariables?: CSSObject;\n setNearestThemeCSSVariables: Function;\n themeCSSVariables?: CSSObject;\n};\n\nexport interface UseEuiTheme<T extends {} = {}> {\n euiTheme: EuiThemeComputed<T>;\n colorMode: EuiThemeColorModeStandard;\n highContrastMode: EuiThemeHighContrastMode;\n modifications: EuiThemeModifications<T>;\n}\n"],"mappings":";;;;;;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;;AAqBO,IAAMA,oBAAoB,GAAAC,OAAA,CAAAD,oBAAA,GAAG;EAClCE,KAAK,EAAE,OAAO;EACdC,IAAI,EAAE;AACR,CAAU;AACH,IAAMC,mBAAmB,GAAAH,OAAA,CAAAG,mBAAA,GAAG,SAAkB;;AAqBrD;AACA;AACA;;AAIO,IAAMC,gCAAgC,GAAAJ,OAAA,CAAAI,gCAAA,GAAG,KAAc;AACvD,IAAMC,uBAAuB,GAAAL,OAAA,CAAAK,uBAAA,GAAG,WAAoB","ignoreList":[]}
@@ -84,7 +84,7 @@ export interface _EuiThemeTitle {
84
84
  export declare type _EuiThemeFont = _EuiThemeFontBase & {
85
85
  scale: _EuiThemeFontScales;
86
86
  /**
87
- * @see {@link https://eui.elastic.co/#/theming/typography/values%23font-weight | Reference} for more information
87
+ * See {@link https://eui.elastic.co/#/theming/typography/values%23font-weight | Reference} for more information
88
88
  */
89
89
  weight: _EuiThemeFontWeights;
90
90
  body: _EuiThemeBody;
@@ -34,7 +34,7 @@ export declare type EuiThemeShapeBase = {
34
34
  /** - Default value: 16 */
35
35
  base: _EuiThemeBase;
36
36
  /**
37
- * @see {@link https://eui.elastic.co/#/theming/sizing | Reference} for more information
37
+ * See {@link https://eui.elastic.co/#/theming/sizing | Reference} for more information
38
38
  */
39
39
  size: _EuiThemeSizes;
40
40
  font: _EuiThemeFont;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elastic/eui-theme-common",
3
- "version": "1.0.0-snapshot.1746441787383",
3
+ "version": "1.0.0-snapshot.1748601905883",
4
4
  "description": "EUI theme common",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "scripts": {