@yahoo/uds-mobile 2.24.0-beta.10 → 2.24.0-beta.11
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/dist/components/Link.cjs +6 -3
- package/dist/components/Link.d.cts +3 -4
- package/dist/components/Link.d.cts.map +1 -1
- package/dist/components/Link.d.ts +3 -4
- package/dist/components/Link.d.ts.map +1 -1
- package/dist/components/Link.js +6 -3
- package/dist/components/Link.js.map +1 -1
- package/dist/mobile/generated/fontMetrics.cjs +4 -4
- package/dist/mobile/generated/fontMetrics.js +4 -4
- package/dist/mobile/generated/fontMetrics.js.map +1 -1
- package/fonts/uds-icons.ttf +0 -0
- package/generated/fontMetrics.ts +4 -4
- package/package.json +2 -2
package/dist/components/Link.cjs
CHANGED
|
@@ -43,7 +43,6 @@ const noUnderline = { textDecorationLine: "none" };
|
|
|
43
43
|
* @usage
|
|
44
44
|
* - Use for navigation actions
|
|
45
45
|
* - Can be nested within Text for inline links
|
|
46
|
-
* - Inline icons stay at their designed size while link text scales
|
|
47
46
|
* - Use alwaysUnderline for links that need to be visually distinct
|
|
48
47
|
*
|
|
49
48
|
* @accessibility
|
|
@@ -141,7 +140,9 @@ const Link = (0, react.memo)(function Link({ children, variant = "primary", text
|
|
|
141
140
|
startIcon && /* @__PURE__ */ (0, react_jsx_runtime.jsxs)(react_jsx_runtime.Fragment, { children: [/* @__PURE__ */ (0, react_jsx_runtime.jsx)(require_components_IconSlot.IconSlot, {
|
|
142
141
|
icon: startIcon,
|
|
143
142
|
variant: "outline",
|
|
144
|
-
|
|
143
|
+
inheritFontScaling: true,
|
|
144
|
+
maxFontSizeMultiplier: resolvedMaxFontSizeMultiplier,
|
|
145
|
+
dynamicTypeRamp,
|
|
145
146
|
style: startIconStyles
|
|
146
147
|
}), /* @__PURE__ */ (0, react_jsx_runtime.jsx)(react_native.Text, {
|
|
147
148
|
style: noUnderline,
|
|
@@ -154,7 +155,9 @@ const Link = (0, react.memo)(function Link({ children, variant = "primary", text
|
|
|
154
155
|
}), /* @__PURE__ */ (0, react_jsx_runtime.jsx)(require_components_IconSlot.IconSlot, {
|
|
155
156
|
icon: endIcon,
|
|
156
157
|
variant: "outline",
|
|
157
|
-
|
|
158
|
+
inheritFontScaling: true,
|
|
159
|
+
maxFontSizeMultiplier: resolvedMaxFontSizeMultiplier,
|
|
160
|
+
dynamicTypeRamp,
|
|
158
161
|
style: endIconStyles
|
|
159
162
|
})] })
|
|
160
163
|
]
|
|
@@ -17,9 +17,9 @@ interface LinkProps extends UniversalLinkProps<IconSlotType> {
|
|
|
17
17
|
/** Link content, typically text */
|
|
18
18
|
children?: ReactNode;
|
|
19
19
|
/**
|
|
20
|
-
* Caps how far the link text
|
|
21
|
-
*
|
|
22
|
-
*
|
|
20
|
+
* Caps how far the link text and inline icons grow with the OS text-size
|
|
21
|
+
* setting. Set null to remove the cap; override app-wide via
|
|
22
|
+
* UDSFontScalingProvider.
|
|
23
23
|
*/
|
|
24
24
|
maxFontSizeMultiplier?: number | null;
|
|
25
25
|
}
|
|
@@ -51,7 +51,6 @@ interface LinkProps extends UniversalLinkProps<IconSlotType> {
|
|
|
51
51
|
* @usage
|
|
52
52
|
* - Use for navigation actions
|
|
53
53
|
* - Can be nested within Text for inline links
|
|
54
|
-
* - Inline icons stay at their designed size while link text scales
|
|
55
54
|
* - Use alwaysUnderline for links that need to be visually distinct
|
|
56
55
|
*
|
|
57
56
|
* @accessibility
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Link.d.cts","names":[],"sources":["../../src/components/Link.tsx"],"mappings":";;;;;;;;;UA2BU,SAAA,SAAkB,kBAAA,CAAmB,YAAA;;EAE7C,KAAA,GAAQ,SAAA;EAFU;EAIlB,OAAA,GAAU,WAAA;EAJmC;EAM7C,GAAA,GAAM,GAAA,CAAI,IAAA;EAFA;EAIV,QAAA,GAAW,SAAA;EAFL;;;;;EAQN,qBAAA;AAAA;;;;;;;;;;;;;AAAqB
|
|
1
|
+
{"version":3,"file":"Link.d.cts","names":[],"sources":["../../src/components/Link.tsx"],"mappings":";;;;;;;;;UA2BU,SAAA,SAAkB,kBAAA,CAAmB,YAAA;;EAE7C,KAAA,GAAQ,SAAA;EAFU;EAIlB,OAAA,GAAU,WAAA;EAJmC;EAM7C,GAAA,GAAM,GAAA,CAAI,IAAA;EAFA;EAIV,QAAA,GAAW,SAAA;EAFL;;;;;EAQN,qBAAA;AAAA;;;;;;;;;;;;;AAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;cAyCjB,IAAA,EAAI,OAAA,CAAA,oBAAA,CAAA,SAAA"}
|
|
@@ -17,9 +17,9 @@ interface LinkProps extends UniversalLinkProps<IconSlotType> {
|
|
|
17
17
|
/** Link content, typically text */
|
|
18
18
|
children?: ReactNode;
|
|
19
19
|
/**
|
|
20
|
-
* Caps how far the link text
|
|
21
|
-
*
|
|
22
|
-
*
|
|
20
|
+
* Caps how far the link text and inline icons grow with the OS text-size
|
|
21
|
+
* setting. Set null to remove the cap; override app-wide via
|
|
22
|
+
* UDSFontScalingProvider.
|
|
23
23
|
*/
|
|
24
24
|
maxFontSizeMultiplier?: number | null;
|
|
25
25
|
}
|
|
@@ -51,7 +51,6 @@ interface LinkProps extends UniversalLinkProps<IconSlotType> {
|
|
|
51
51
|
* @usage
|
|
52
52
|
* - Use for navigation actions
|
|
53
53
|
* - Can be nested within Text for inline links
|
|
54
|
-
* - Inline icons stay at their designed size while link text scales
|
|
55
54
|
* - Use alwaysUnderline for links that need to be visually distinct
|
|
56
55
|
*
|
|
57
56
|
* @accessibility
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Link.d.ts","names":[],"sources":["../../src/components/Link.tsx"],"mappings":";;;;;;;;;UA2BU,SAAA,SAAkB,kBAAA,CAAmB,YAAA;;EAE7C,KAAA,GAAQ,SAAA;EAFU;EAIlB,OAAA,GAAU,WAAA;EAJmC;EAM7C,GAAA,GAAM,GAAA,CAAI,IAAA;EAFA;EAIV,QAAA,GAAW,SAAA;EAFL;;;;;EAQN,qBAAA;AAAA;;;;;;;;;;;;;AAAqB
|
|
1
|
+
{"version":3,"file":"Link.d.ts","names":[],"sources":["../../src/components/Link.tsx"],"mappings":";;;;;;;;;UA2BU,SAAA,SAAkB,kBAAA,CAAmB,YAAA;;EAE7C,KAAA,GAAQ,SAAA;EAFU;EAIlB,OAAA,GAAU,WAAA;EAJmC;EAM7C,GAAA,GAAM,GAAA,CAAI,IAAA;EAFA;EAIV,QAAA,GAAW,SAAA;EAFL;;;;;EAQN,qBAAA;AAAA;;;;;;;;;;;;;AAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;cAyCjB,IAAA,EAAI,OAAA,CAAA,oBAAA,CAAA,SAAA"}
|
package/dist/components/Link.js
CHANGED
|
@@ -40,7 +40,6 @@ const noUnderline = { textDecorationLine: "none" };
|
|
|
40
40
|
* @usage
|
|
41
41
|
* - Use for navigation actions
|
|
42
42
|
* - Can be nested within Text for inline links
|
|
43
|
-
* - Inline icons stay at their designed size while link text scales
|
|
44
43
|
* - Use alwaysUnderline for links that need to be visually distinct
|
|
45
44
|
*
|
|
46
45
|
* @accessibility
|
|
@@ -138,7 +137,9 @@ const Link = memo(function Link({ children, variant = "primary", textVariant, al
|
|
|
138
137
|
startIcon && /* @__PURE__ */ jsxs(Fragment, { children: [/* @__PURE__ */ jsx(IconSlot, {
|
|
139
138
|
icon: startIcon,
|
|
140
139
|
variant: "outline",
|
|
141
|
-
|
|
140
|
+
inheritFontScaling: true,
|
|
141
|
+
maxFontSizeMultiplier: resolvedMaxFontSizeMultiplier,
|
|
142
|
+
dynamicTypeRamp,
|
|
142
143
|
style: startIconStyles
|
|
143
144
|
}), /* @__PURE__ */ jsx(Text, {
|
|
144
145
|
style: noUnderline,
|
|
@@ -151,7 +152,9 @@ const Link = memo(function Link({ children, variant = "primary", textVariant, al
|
|
|
151
152
|
}), /* @__PURE__ */ jsx(IconSlot, {
|
|
152
153
|
icon: endIcon,
|
|
153
154
|
variant: "outline",
|
|
154
|
-
|
|
155
|
+
inheritFontScaling: true,
|
|
156
|
+
maxFontSizeMultiplier: resolvedMaxFontSizeMultiplier,
|
|
157
|
+
dynamicTypeRamp,
|
|
155
158
|
style: endIconStyles
|
|
156
159
|
})] })
|
|
157
160
|
]
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Link.js","names":["RNText"],"sources":["../../src/components/Link.tsx"],"sourcesContent":["import type { UniversalLinkProps } from '@yahoo/uds-types';\nimport type { ReactNode, Ref } from 'react';\nimport { memo, useCallback, useMemo, useState } from 'react';\nimport type { GestureResponderEvent, TextStyle } from 'react-native';\nimport { Text as RNText } from 'react-native';\nimport Animated, {\n Easing,\n interpolateColor,\n useAnimatedStyle,\n useDerivedValue,\n withTiming,\n} from 'react-native-reanimated';\nimport { useAnimatedTheme } from 'react-native-unistyles/reanimated';\n\nimport { linkStyles } from '../../generated/styles';\nimport { DEFAULT_DYNAMIC_TYPE_RAMPS } from '../fontScaling/constants';\nimport { useDynamicTypeRampEnabled } from '../fontScaling/FontScalingContext';\nimport { useMaxFontSizeMultiplier } from '../fontScaling/useMaxFontSizeMultiplier';\nimport type { IconSlotType } from './IconSlot';\nimport { IconSlot } from './IconSlot';\nimport type { TextProps, TextVariant } from './Text';\n\nconst AnimatedText = Animated.Text;\n\n// Prevent icons from inheriting underline from parent/theme (matches web behavior)\nconst noUnderline: TextStyle = { textDecorationLine: 'none' };\n\ninterface LinkProps extends UniversalLinkProps<IconSlotType> {\n /** Style override for the link text */\n style?: TextStyle;\n /** Callback fired when the link is pressed */\n onPress?: TextProps['onPress'];\n /** Ref to the underlying Text element */\n ref?: Ref<RNText>;\n /** Link content, typically text */\n children?: ReactNode;\n /**\n * Caps how far the link text
|
|
1
|
+
{"version":3,"file":"Link.js","names":["RNText"],"sources":["../../src/components/Link.tsx"],"sourcesContent":["import type { UniversalLinkProps } from '@yahoo/uds-types';\nimport type { ReactNode, Ref } from 'react';\nimport { memo, useCallback, useMemo, useState } from 'react';\nimport type { GestureResponderEvent, TextStyle } from 'react-native';\nimport { Text as RNText } from 'react-native';\nimport Animated, {\n Easing,\n interpolateColor,\n useAnimatedStyle,\n useDerivedValue,\n withTiming,\n} from 'react-native-reanimated';\nimport { useAnimatedTheme } from 'react-native-unistyles/reanimated';\n\nimport { linkStyles } from '../../generated/styles';\nimport { DEFAULT_DYNAMIC_TYPE_RAMPS } from '../fontScaling/constants';\nimport { useDynamicTypeRampEnabled } from '../fontScaling/FontScalingContext';\nimport { useMaxFontSizeMultiplier } from '../fontScaling/useMaxFontSizeMultiplier';\nimport type { IconSlotType } from './IconSlot';\nimport { IconSlot } from './IconSlot';\nimport type { TextProps, TextVariant } from './Text';\n\nconst AnimatedText = Animated.Text;\n\n// Prevent icons from inheriting underline from parent/theme (matches web behavior)\nconst noUnderline: TextStyle = { textDecorationLine: 'none' };\n\ninterface LinkProps extends UniversalLinkProps<IconSlotType> {\n /** Style override for the link text */\n style?: TextStyle;\n /** Callback fired when the link is pressed */\n onPress?: TextProps['onPress'];\n /** Ref to the underlying Text element */\n ref?: Ref<RNText>;\n /** Link content, typically text */\n children?: ReactNode;\n /**\n * Caps how far the link text and inline icons grow with the OS text-size\n * setting. Set null to remove the cap; override app-wide via\n * UDSFontScalingProvider.\n */\n maxFontSizeMultiplier?: number | null;\n}\n\n/**\n * **🔗 A navigation link component**\n *\n * @description\n * A styled link component for navigation. Rendered as Text so it can be\n * nested inline within other Text. Supports optional start/end icons.\n *\n * @category Interactive\n * @platform mobile\n *\n * @example\n * ```tsx\n * import { Link } from '@yahoo/uds-mobile/Link';\n *\n * // Standalone link\n * <Link onPress={() => navigate('/profile')}>Go to Profile</Link>\n *\n * // Inline within text\n * <Text>Read our <Link>Terms of Service</Link> and <Link>Privacy Policy</Link>.</Text>\n *\n * // With icons\n * <Link startIcon=\"AffiliateLink\">External link</Link>\n * <Link endIcon=\"ChevronRight\">Navigate forward</Link>\n * ```\n *\n * @usage\n * - Use for navigation actions\n * - Can be nested within Text for inline links\n * - Use alwaysUnderline for links that need to be visually distinct\n *\n * @accessibility\n * - Link text is the accessible name\n * - Shows underline on press for visual feedback\n * - Use descriptive link text (avoid \"click here\")\n *\n * @see {@link Button} for primary actions\n * @see {@link Text} for non-interactive text\n */\nconst Link = memo(function Link({\n children,\n variant = 'primary',\n textVariant,\n alwaysUnderline = false,\n startIcon,\n endIcon,\n maxFontSizeMultiplier,\n onPress,\n style,\n ref,\n ...rest\n}: LinkProps) {\n const [pressed, setPressed] = useState(false);\n const dynamicTypeRampEnabled = useDynamicTypeRampEnabled();\n const resolvedTextVariant = textVariant as TextVariant | undefined;\n const resolvedMaxFontSizeMultiplier = useMaxFontSizeMultiplier(\n resolvedTextVariant,\n maxFontSizeMultiplier,\n );\n const dynamicTypeRamp =\n dynamicTypeRampEnabled && resolvedTextVariant\n ? DEFAULT_DYNAMIC_TYPE_RAMPS[resolvedTextVariant]\n : undefined;\n\n const handlePressIn = useCallback(() => {\n setPressed(true);\n }, []);\n\n const handlePressOut = useCallback(() => {\n setPressed(false);\n }, []);\n\n // Must have onPress for touch events to register (RN requirement)\n // Even without a user-provided handler, we need a function to make text touchable\n const handlePress = useCallback(\n (event: GestureResponderEvent) => {\n onPress?.(event);\n },\n [onPress],\n );\n\n linkStyles.useVariants({\n textStyle: textVariant,\n variant,\n pressed,\n });\n\n // Get theme as SharedValue for worklet access (zero re-renders)\n const animatedTheme = useAnimatedTheme();\n\n // Derive underline visibility from pressed state\n // useDerivedValue handles the animation automatically when deps change\n const underlineProgress = useDerivedValue(() => {\n const targetValue = pressed || alwaysUnderline ? 1 : 0;\n return withTiming(targetValue, {\n duration: 150,\n easing: Easing.bezier(0, 0, 0.2, 1),\n });\n }, [pressed, alwaysUnderline]);\n\n // Combined animated style for color and underline\n const animatedTextStyle = useAnimatedStyle(() => {\n // Access text color from theme using variant path\n const components = animatedTheme.value.components;\n const state = pressed ? 'pressed' : 'rest';\n const textVariantPath = `link/variant/${variant}/rootText/${state}` as const;\n const textColor = components[textVariantPath]?.color;\n\n if (!textColor) {\n return {};\n }\n\n const color = withTiming(textColor, {\n duration: 150,\n easing: Easing.bezier(0, 0, 0.2, 1),\n });\n\n // Interpolate underline opacity: 0 = transparent, 1 = text color\n const underlineColor = interpolateColor(\n underlineProgress.value,\n [0, 1],\n ['transparent', textColor],\n );\n\n return {\n color,\n textDecorationColor: underlineColor,\n };\n });\n\n const textStyles = useMemo(() => {\n return [linkStyles.root, linkStyles.text, animatedTextStyle, style];\n }, [linkStyles.text, animatedTextStyle, style, linkStyles.root]);\n\n const startIconStyles = useMemo(() => {\n return [linkStyles.icon, linkStyles.iconStart, noUnderline];\n }, [linkStyles.icon, linkStyles.iconStart, noUnderline]);\n\n const endIconStyles = useMemo(() => {\n return [linkStyles.icon, linkStyles.iconEnd, noUnderline];\n }, [linkStyles.icon, linkStyles.iconEnd, noUnderline]);\n\n return (\n <AnimatedText\n ref={ref}\n onPress={handlePress}\n onPressIn={handlePressIn}\n onPressOut={handlePressOut}\n suppressHighlighting\n maxFontSizeMultiplier={resolvedMaxFontSizeMultiplier}\n dynamicTypeRamp={dynamicTypeRamp}\n style={textStyles}\n {...rest}\n >\n {startIcon && (\n <>\n <IconSlot\n icon={startIcon}\n variant=\"outline\"\n inheritFontScaling\n maxFontSizeMultiplier={resolvedMaxFontSizeMultiplier}\n dynamicTypeRamp={dynamicTypeRamp}\n style={startIconStyles}\n />\n {/* TODO: need to add hairline space character to icon font so we can have space between icon and text https://hybridheroes.de/blog/2022-11-17-text-with-inline-icons-in-react-native/ */}\n <RNText style={noUnderline}>{' \\u200A'}</RNText>\n </>\n )}\n {children}\n {endIcon && (\n <>\n {/* TODO: need to add hairline space character to icon font so we can have space between icon and text https://hybridheroes.de/blog/2022-11-17-text-with-inline-icons-in-react-native/ */}\n <RNText style={noUnderline}>{' \\u200A'}</RNText>\n <IconSlot\n icon={endIcon}\n variant=\"outline\"\n inheritFontScaling\n maxFontSizeMultiplier={resolvedMaxFontSizeMultiplier}\n dynamicTypeRamp={dynamicTypeRamp}\n style={endIconStyles}\n />\n </>\n )}\n </AnimatedText>\n );\n});\n\nLink.displayName = 'Link';\n\nexport { Link, type LinkProps };\n"],"mappings":";;;;;;;;;;;;AAsBA,MAAM,eAAe,SAAS;AAG9B,MAAM,cAAyB,EAAE,oBAAoB,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAyD7D,MAAM,OAAO,KAAK,SAAS,KAAK,EAC9B,UACA,UAAU,WACV,aACA,kBAAkB,OAClB,WACA,SACA,uBACA,SACA,OACA,KACA,GAAG,QACS;CACZ,MAAM,CAAC,SAAS,cAAc,SAAS,MAAM;CAC7C,MAAM,yBAAyB,2BAA2B;CAC1D,MAAM,sBAAsB;CAC5B,MAAM,gCAAgC,yBACpC,qBACA,sBACD;CACD,MAAM,kBACJ,0BAA0B,sBACtB,2BAA2B,uBAC3B,KAAA;CAEN,MAAM,gBAAgB,kBAAkB;EACtC,WAAW,KAAK;IACf,EAAE,CAAC;CAEN,MAAM,iBAAiB,kBAAkB;EACvC,WAAW,MAAM;IAChB,EAAE,CAAC;CAIN,MAAM,cAAc,aACjB,UAAiC;EAChC,UAAU,MAAM;IAElB,CAAC,QAAQ,CACV;CAED,WAAW,YAAY;EACrB,WAAW;EACX;EACA;EACD,CAAC;CAGF,MAAM,gBAAgB,kBAAkB;CAIxC,MAAM,oBAAoB,sBAAsB;EAE9C,OAAO,WADa,WAAW,kBAAkB,IAAI,GACtB;GAC7B,UAAU;GACV,QAAQ,OAAO,OAAO,GAAG,GAAG,IAAK,EAAE;GACpC,CAAC;IACD,CAAC,SAAS,gBAAgB,CAAC;CAG9B,MAAM,oBAAoB,uBAAuB;EAK/C,MAAM,YAHa,cAAc,MAAM,WAGV,gBADW,QAAQ,YADlC,UAAU,YAAY,WAEW;EAE/C,IAAI,CAAC,WACH,OAAO,EAAE;EAeX,OAAO;GACL,OAbY,WAAW,WAAW;IAClC,UAAU;IACV,QAAQ,OAAO,OAAO,GAAG,GAAG,IAAK,EAAE;IACpC,CAUM;GACL,qBARqB,iBACrB,kBAAkB,OAClB,CAAC,GAAG,EAAE,EACN,CAAC,eAAe,UAAU,CAKS;GACpC;GACD;CAEF,MAAM,aAAa,cAAc;EAC/B,OAAO;GAAC,WAAW;GAAM,WAAW;GAAM;GAAmB;GAAM;IAClE;EAAC,WAAW;EAAM;EAAmB;EAAO,WAAW;EAAK,CAAC;CAEhE,MAAM,kBAAkB,cAAc;EACpC,OAAO;GAAC,WAAW;GAAM,WAAW;GAAW;GAAY;IAC1D;EAAC,WAAW;EAAM,WAAW;EAAW;EAAY,CAAC;CAExD,MAAM,gBAAgB,cAAc;EAClC,OAAO;GAAC,WAAW;GAAM,WAAW;GAAS;GAAY;IACxD;EAAC,WAAW;EAAM,WAAW;EAAS;EAAY,CAAC;CAEtD,OACE,qBAAC,cAAD;EACO;EACL,SAAS;EACT,WAAW;EACX,YAAY;EACZ,sBAAA;EACA,uBAAuB;EACN;EACjB,OAAO;EACP,GAAI;YATN;GAWG,aACC,qBAAA,UAAA,EAAA,UAAA,CACE,oBAAC,UAAD;IACE,MAAM;IACN,SAAQ;IACR,oBAAA;IACA,uBAAuB;IACN;IACjB,OAAO;IACP,CAAA,EAEF,oBAACA,MAAD;IAAQ,OAAO;cAAc;IAAmB,CAAA,CAC/C,EAAA,CAAA;GAEJ;GACA,WACC,qBAAA,UAAA,EAAA,UAAA,CAEE,oBAACA,MAAD;IAAQ,OAAO;cAAc;IAAmB,CAAA,EAChD,oBAAC,UAAD;IACE,MAAM;IACN,SAAQ;IACR,oBAAA;IACA,uBAAuB;IACN;IACjB,OAAO;IACP,CAAA,CACD,EAAA,CAAA;GAEQ;;EAEjB;AAEF,KAAK,cAAc"}
|
|
@@ -3,12 +3,12 @@
|
|
|
3
3
|
const fontMetrics = {
|
|
4
4
|
"uds-icons": {
|
|
5
5
|
"unitsPerEm": 4096,
|
|
6
|
-
"ascent":
|
|
7
|
-
"descent":
|
|
6
|
+
"ascent": 3277,
|
|
7
|
+
"descent": -819,
|
|
8
8
|
"lineGap": 0,
|
|
9
9
|
"bbox": {
|
|
10
|
-
"minY": -
|
|
11
|
-
"maxY":
|
|
10
|
+
"minY": -1075,
|
|
11
|
+
"maxY": 3303
|
|
12
12
|
}
|
|
13
13
|
},
|
|
14
14
|
"YASansCn-BoldItalic": {
|
|
@@ -3,12 +3,12 @@
|
|
|
3
3
|
const fontMetrics = {
|
|
4
4
|
"uds-icons": {
|
|
5
5
|
"unitsPerEm": 4096,
|
|
6
|
-
"ascent":
|
|
7
|
-
"descent":
|
|
6
|
+
"ascent": 3277,
|
|
7
|
+
"descent": -819,
|
|
8
8
|
"lineGap": 0,
|
|
9
9
|
"bbox": {
|
|
10
|
-
"minY": -
|
|
11
|
-
"maxY":
|
|
10
|
+
"minY": -1075,
|
|
11
|
+
"maxY": 3303
|
|
12
12
|
}
|
|
13
13
|
},
|
|
14
14
|
"YASansCn-BoldItalic": {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fontMetrics.js","names":[],"sources":["../../../generated/fontMetrics.ts"],"sourcesContent":["export type FontMetrics = {\n unitsPerEm: number;\n ascent: number;\n descent: number;\n lineGap: number;\n bbox: {\n minY: number;\n maxY: number;\n };\n};\n\nexport const fontMetrics: Record<string, FontMetrics> = {\n \"uds-icons\": {\n \"unitsPerEm\": 4096,\n \"ascent\": 4096,\n \"descent\": 0,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -256,\n \"maxY\": 4122\n }\n },\n \"YASansCn-BoldItalic\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -628,\n \"maxY\": 2153\n }\n },\n \"YASansCn-Black\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -672,\n \"maxY\": 2209\n }\n },\n \"YASansExt-LightItalic\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -540,\n \"maxY\": 2042\n }\n },\n \"YASansExt\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -570,\n \"maxY\": 2077\n }\n },\n \"YASans-Bold\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -632,\n \"maxY\": 2145\n }\n },\n \"YahooSerifDisplay-Black\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 972,\n \"descent\": -222,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -319,\n \"maxY\": 1183\n }\n },\n \"YahooSans-Semibold\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 972,\n \"descent\": -222,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -239,\n \"maxY\": 1157\n }\n },\n \"YASansCn-SmBdItalic\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -599,\n \"maxY\": 2116\n }\n },\n \"YahooSansCond-Light\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 972,\n \"descent\": -222,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -234,\n \"maxY\": 1147\n }\n },\n \"CentraNo2-MediumItalic\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 1000,\n \"descent\": -300,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -251,\n \"maxY\": 931\n }\n },\n \"YahooSans-Italic\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 972,\n \"descent\": -222,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -236,\n \"maxY\": 1157\n }\n },\n \"YahooSerifDisplay-Regular\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 972,\n \"descent\": -222,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -254,\n \"maxY\": 1096\n }\n },\n \"YahooProductSans-Medium\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 1904,\n \"descent\": -482,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -396,\n \"maxY\": 1904\n }\n },\n \"CentraNo2-Thin\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 1000,\n \"descent\": -300,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -230,\n \"maxY\": 908\n }\n },\n \"YASans-Light\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -539,\n \"maxY\": 2040\n }\n },\n \"YahooProductSans-Bold\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 1904,\n \"descent\": -482,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -396,\n \"maxY\": 1904\n }\n },\n \"Gelica-BoldItalic\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 1870,\n \"descent\": -500,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -491,\n \"maxY\": 1847\n }\n },\n \"YASansCn-Italic\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -567,\n \"maxY\": 2073\n }\n },\n \"YASansExt-BlackItalic\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -683,\n \"maxY\": 2209\n }\n },\n \"CentraNo2-Book\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 1000,\n \"descent\": -300,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -229,\n \"maxY\": 926\n }\n },\n \"CentraNo2-BoldItalic\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 1000,\n \"descent\": -300,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -273,\n \"maxY\": 939\n }\n },\n \"YahooSansCond-Black\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 972,\n \"descent\": -222,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -258,\n \"maxY\": 1160\n }\n },\n \"YASans-Medium\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -586,\n \"maxY\": 2075\n }\n },\n \"YASansCn-MediumItalic\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -579,\n \"maxY\": 2090\n }\n },\n \"YahooProductSans\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 1904,\n \"descent\": -482,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -396,\n \"maxY\": 1904\n }\n },\n \"CentraNo2-LightItalic\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 1000,\n \"descent\": -300,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -229,\n \"maxY\": 916\n }\n },\n \"YASansExt-MediumItalic\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -584,\n \"maxY\": 2093\n }\n },\n \"Gelica-ExtraLight\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 1870,\n \"descent\": -500,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -478,\n \"maxY\": 1766\n }\n },\n \"YASans\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -571,\n \"maxY\": 2064\n }\n },\n \"YahooSerifText-Bold\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 972,\n \"descent\": -222,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -296,\n \"maxY\": 1125\n }\n },\n \"YASans-SmBdItalic\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -605,\n \"maxY\": 2102\n }\n },\n \"YASans-Italic\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -571,\n \"maxY\": 2064\n }\n },\n \"YASans-Black\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -672,\n \"maxY\": 2209\n }\n },\n \"YahooSans-Black\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 972,\n \"descent\": -222,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -261,\n \"maxY\": 1160\n }\n },\n \"CentraNo2-ThinItalic\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 1000,\n \"descent\": -300,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -230,\n \"maxY\": 908\n }\n },\n \"YahooSansCond-Bold\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 972,\n \"descent\": -222,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -250,\n \"maxY\": 1158\n }\n },\n \"CentraNo2-BlackItalic\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 1000,\n \"descent\": -300,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -300,\n \"maxY\": 975\n }\n },\n \"YASansCn-BlackItalic\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -672,\n \"maxY\": 2209\n }\n },\n \"YahooSans-Light\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 972,\n \"descent\": -222,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -235,\n \"maxY\": 1149\n }\n },\n \"Gelica-Regular\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 1870,\n \"descent\": -500,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -482,\n \"maxY\": 1791\n }\n },\n \"Gelica-ExtraLightItalic\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 1870,\n \"descent\": -500,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -478,\n \"maxY\": 1766\n }\n },\n \"YahooCR2BETA-Bold\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 1014,\n \"descent\": -186,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -198,\n \"maxY\": 820\n }\n },\n \"YahooSerifText-Italic\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 972,\n \"descent\": -222,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -287,\n \"maxY\": 1135\n }\n },\n \"YahooSansCond-Medium\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 972,\n \"descent\": -222,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -239,\n \"maxY\": 1154\n }\n },\n \"YahooSans-Medium\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 972,\n \"descent\": -222,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -237,\n \"maxY\": 1157\n }\n },\n \"YASansExt-Italic\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -570,\n \"maxY\": 2077\n }\n },\n \"YASansExt-Medium\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -584,\n \"maxY\": 2093\n }\n },\n \"YahooSerifDisplay-Extrabold\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 972,\n \"descent\": -222,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -301,\n \"maxY\": 1166\n }\n },\n \"YahooCR2BETA-Regular\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 1014,\n \"descent\": -186,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -198,\n \"maxY\": 820\n }\n },\n \"CentraNo2-Medium\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 1000,\n \"descent\": -300,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -251,\n \"maxY\": 931\n }\n },\n \"YASans-LightItalic\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -539,\n \"maxY\": 2040\n }\n },\n \"Gelica-BlackItalic\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 1870,\n \"descent\": -500,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -494,\n \"maxY\": 1866\n }\n },\n \"Gelica-Italic\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 1870,\n \"descent\": -500,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -482,\n \"maxY\": 1791\n }\n },\n \"YahooCR2BETA-Medium\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 1014,\n \"descent\": -186,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -198,\n \"maxY\": 820\n }\n },\n \"YASansExt-SmBdItalic\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -605,\n \"maxY\": 2118\n }\n },\n \"Gelica-SemiBoldItalic\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 1870,\n \"descent\": -500,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -488,\n \"maxY\": 1828\n }\n },\n \"YASansExt-SmBd\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -605,\n \"maxY\": 2118\n }\n },\n \"YahooSansCond-Regular\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 972,\n \"descent\": -222,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -236,\n \"maxY\": 1151\n }\n },\n \"YASansCn-SmBd\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -599,\n \"maxY\": 2116\n }\n },\n \"YASans-BoldItalic\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -632,\n \"maxY\": 2145\n }\n },\n \"YASansExt-Bold\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -636,\n \"maxY\": 2155\n }\n },\n \"Gelica-LightItalic\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 1870,\n \"descent\": -500,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -480,\n \"maxY\": 1777\n }\n },\n \"CentraNo2-Bold\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 1000,\n \"descent\": -300,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -273,\n \"maxY\": 938\n }\n },\n \"YASansCn-Medium\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -579,\n \"maxY\": 2090\n }\n },\n \"YASansCn-LightItalic\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -539,\n \"maxY\": 2037\n }\n },\n \"CentraNo2-Black\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 1000,\n \"descent\": -300,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -300,\n \"maxY\": 975\n }\n },\n \"CentraNo2-Light\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 1000,\n \"descent\": -300,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -229,\n \"maxY\": 916\n }\n },\n \"YASans-SmBd\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -605,\n \"maxY\": 2102\n }\n },\n \"CentraNo2-ExtraBold\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 1000,\n \"descent\": -300,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -300,\n \"maxY\": 954\n }\n },\n \"CentraNo2-BookItalic\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 1000,\n \"descent\": -300,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -229,\n \"maxY\": 926\n }\n },\n \"Gelica-Black\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 1870,\n \"descent\": -500,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -494,\n \"maxY\": 1866\n }\n },\n \"YahooSerifDisplay-Light\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 972,\n \"descent\": -222,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -246,\n \"maxY\": 1066\n }\n },\n \"CentraNo2-Hairline\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 1000,\n \"descent\": -300,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -216,\n \"maxY\": 902\n }\n },\n \"YASansCn-Light\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -539,\n \"maxY\": 2037\n }\n },\n \"YASansExt-BoldItalic\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -636,\n \"maxY\": 2155\n }\n },\n \"Gelica-Bold\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 1870,\n \"descent\": -500,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -491,\n \"maxY\": 1847\n }\n },\n \"YASansCn-Bold\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -628,\n \"maxY\": 2153\n }\n },\n \"YASans-BlackItalic\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -673,\n \"maxY\": 2209\n }\n },\n \"YahooSerifText-Regular\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 972,\n \"descent\": -222,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -287,\n \"maxY\": 1113\n }\n },\n \"Gelica-Medium\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 1870,\n \"descent\": -500,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -485,\n \"maxY\": 1809\n }\n },\n \"YASansExt-Light\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -540,\n \"maxY\": 2042\n }\n },\n \"YahooSerifDisplay-Bold\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 972,\n \"descent\": -222,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -270,\n \"maxY\": 1134\n }\n },\n \"CentraNo2-HairlineItalic\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 1000,\n \"descent\": -300,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -252,\n \"maxY\": 902\n }\n },\n \"Gelica-Light\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 1870,\n \"descent\": -500,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -480,\n \"maxY\": 1777\n }\n },\n \"YahooSans-Bold\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 972,\n \"descent\": -222,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -241,\n \"maxY\": 1157\n }\n },\n \"Gelica-MediumItalic\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 1870,\n \"descent\": -500,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -485,\n \"maxY\": 1809\n }\n },\n \"YahooSans-ExtraBold\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 972,\n \"descent\": -222,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -252,\n \"maxY\": 1159\n }\n },\n \"YahooSans-Regular\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 1904,\n \"descent\": -482,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -539,\n \"maxY\": 2040\n }\n },\n \"YASansExt-Black\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -683,\n \"maxY\": 2209\n }\n },\n \"Gelica-SemiBold\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 1870,\n \"descent\": -500,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -488,\n \"maxY\": 1828\n }\n },\n \"YASansCn\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -567,\n \"maxY\": 2073\n }\n },\n \"YASans-MediumItalic\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -586,\n \"maxY\": 2075\n }\n },\n \"CentraNo2-ExtraBoldItalic\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 1000,\n \"descent\": -300,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -305,\n \"maxY\": 954\n }\n },\n \"YahooSans-ExtraLight\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 972,\n \"descent\": -222,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -235,\n \"maxY\": 1136\n }\n },\n \"YahooCR4BETA-VF\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 1904,\n \"descent\": -482,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -396,\n \"maxY\": 1904\n }\n },\n \"RobotoMono-Bold\": {\n \"unitsPerEm\": 2048,\n \"ascent\": 2146,\n \"descent\": -555,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -555,\n \"maxY\": 2146\n }\n },\n \"RobotoMono-MediumItalic\": {\n \"unitsPerEm\": 2048,\n \"ascent\": 2146,\n \"descent\": -555,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -555,\n \"maxY\": 2146\n }\n },\n \"RobotoMono-Medium\": {\n \"unitsPerEm\": 2048,\n \"ascent\": 2146,\n \"descent\": -555,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -555,\n \"maxY\": 2146\n }\n },\n \"RobotoMono-Italic\": {\n \"unitsPerEm\": 2048,\n \"ascent\": 2146,\n \"descent\": -555,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -555,\n \"maxY\": 2146\n }\n },\n \"InterVariable-TextBold\": {\n \"unitsPerEm\": 2048,\n \"ascent\": 1984,\n \"descent\": -494,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -685,\n \"maxY\": 2279\n }\n },\n \"InterVariable-TextThin\": {\n \"unitsPerEm\": 2048,\n \"ascent\": 1984,\n \"descent\": -494,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -654,\n \"maxY\": 2262\n }\n },\n \"RobotoMono-BoldItalic\": {\n \"unitsPerEm\": 2048,\n \"ascent\": 2146,\n \"descent\": -555,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -555,\n \"maxY\": 2146\n }\n },\n \"InterVariable-Text\": {\n \"unitsPerEm\": 2048,\n \"ascent\": 1984,\n \"descent\": -494,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -660,\n \"maxY\": 2269\n }\n },\n \"RobotoMono-Regular\": {\n \"unitsPerEm\": 2048,\n \"ascent\": 2146,\n \"descent\": -555,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -555,\n \"maxY\": 2146\n }\n },\n \"InterVariable-TextExtraBold\": {\n \"unitsPerEm\": 2048,\n \"ascent\": 1984,\n \"descent\": -494,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -695,\n \"maxY\": 2282\n }\n },\n \"InterVariable-TextMedium\": {\n \"unitsPerEm\": 2048,\n \"ascent\": 1984,\n \"descent\": -494,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -668,\n \"maxY\": 2272\n }\n },\n \"InterVariable-TextBlack\": {\n \"unitsPerEm\": 2048,\n \"ascent\": 1984,\n \"descent\": -494,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -706,\n \"maxY\": 2306\n }\n },\n \"InterVariable-TextSemiBold\": {\n \"unitsPerEm\": 2048,\n \"ascent\": 1984,\n \"descent\": -494,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -677,\n \"maxY\": 2275\n }\n },\n \"RobotoMono-LightItalic\": {\n \"unitsPerEm\": 2048,\n \"ascent\": 2146,\n \"descent\": -555,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -555,\n \"maxY\": 2146\n }\n },\n \"InterVariable-TextLight\": {\n \"unitsPerEm\": 2048,\n \"ascent\": 1984,\n \"descent\": -494,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -654,\n \"maxY\": 2263\n }\n },\n \"InterVariable-TextExtraLight\": {\n \"unitsPerEm\": 2048,\n \"ascent\": 1984,\n \"descent\": -494,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -654,\n \"maxY\": 2262\n }\n },\n \"RobotoMono-Light\": {\n \"unitsPerEm\": 2048,\n \"ascent\": 2146,\n \"descent\": -555,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -555,\n \"maxY\": 2146\n }\n },\n \"YahooSerifText-BoldItalic\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 972,\n \"descent\": -222,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -329,\n \"maxY\": 1144\n }\n },\n \"RobotoMono-ThinItalic\": {\n \"unitsPerEm\": 2048,\n \"ascent\": 2146,\n \"descent\": -555,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -555,\n \"maxY\": 2146\n }\n },\n \"RobotoMono-Thin\": {\n \"unitsPerEm\": 2048,\n \"ascent\": 2146,\n \"descent\": -555,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -555,\n \"maxY\": 2146\n }\n }\n};\n"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"fontMetrics.js","names":[],"sources":["../../../generated/fontMetrics.ts"],"sourcesContent":["export type FontMetrics = {\n unitsPerEm: number;\n ascent: number;\n descent: number;\n lineGap: number;\n bbox: {\n minY: number;\n maxY: number;\n };\n};\n\nexport const fontMetrics: Record<string, FontMetrics> = {\n \"uds-icons\": {\n \"unitsPerEm\": 4096,\n \"ascent\": 3277,\n \"descent\": -819,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -1075,\n \"maxY\": 3303\n }\n },\n \"YASansCn-BoldItalic\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -628,\n \"maxY\": 2153\n }\n },\n \"YASansCn-Black\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -672,\n \"maxY\": 2209\n }\n },\n \"YASansExt-LightItalic\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -540,\n \"maxY\": 2042\n }\n },\n \"YASansExt\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -570,\n \"maxY\": 2077\n }\n },\n \"YASans-Bold\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -632,\n \"maxY\": 2145\n }\n },\n \"YahooSerifDisplay-Black\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 972,\n \"descent\": -222,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -319,\n \"maxY\": 1183\n }\n },\n \"YahooSans-Semibold\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 972,\n \"descent\": -222,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -239,\n \"maxY\": 1157\n }\n },\n \"YASansCn-SmBdItalic\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -599,\n \"maxY\": 2116\n }\n },\n \"YahooSansCond-Light\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 972,\n \"descent\": -222,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -234,\n \"maxY\": 1147\n }\n },\n \"CentraNo2-MediumItalic\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 1000,\n \"descent\": -300,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -251,\n \"maxY\": 931\n }\n },\n \"YahooSans-Italic\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 972,\n \"descent\": -222,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -236,\n \"maxY\": 1157\n }\n },\n \"YahooSerifDisplay-Regular\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 972,\n \"descent\": -222,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -254,\n \"maxY\": 1096\n }\n },\n \"YahooProductSans-Medium\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 1904,\n \"descent\": -482,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -396,\n \"maxY\": 1904\n }\n },\n \"CentraNo2-Thin\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 1000,\n \"descent\": -300,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -230,\n \"maxY\": 908\n }\n },\n \"YASans-Light\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -539,\n \"maxY\": 2040\n }\n },\n \"YahooProductSans-Bold\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 1904,\n \"descent\": -482,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -396,\n \"maxY\": 1904\n }\n },\n \"Gelica-BoldItalic\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 1870,\n \"descent\": -500,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -491,\n \"maxY\": 1847\n }\n },\n \"YASansCn-Italic\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -567,\n \"maxY\": 2073\n }\n },\n \"YASansExt-BlackItalic\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -683,\n \"maxY\": 2209\n }\n },\n \"CentraNo2-Book\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 1000,\n \"descent\": -300,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -229,\n \"maxY\": 926\n }\n },\n \"CentraNo2-BoldItalic\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 1000,\n \"descent\": -300,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -273,\n \"maxY\": 939\n }\n },\n \"YahooSansCond-Black\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 972,\n \"descent\": -222,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -258,\n \"maxY\": 1160\n }\n },\n \"YASans-Medium\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -586,\n \"maxY\": 2075\n }\n },\n \"YASansCn-MediumItalic\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -579,\n \"maxY\": 2090\n }\n },\n \"YahooProductSans\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 1904,\n \"descent\": -482,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -396,\n \"maxY\": 1904\n }\n },\n \"CentraNo2-LightItalic\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 1000,\n \"descent\": -300,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -229,\n \"maxY\": 916\n }\n },\n \"YASansExt-MediumItalic\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -584,\n \"maxY\": 2093\n }\n },\n \"Gelica-ExtraLight\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 1870,\n \"descent\": -500,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -478,\n \"maxY\": 1766\n }\n },\n \"YASans\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -571,\n \"maxY\": 2064\n }\n },\n \"YahooSerifText-Bold\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 972,\n \"descent\": -222,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -296,\n \"maxY\": 1125\n }\n },\n \"YASans-SmBdItalic\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -605,\n \"maxY\": 2102\n }\n },\n \"YASans-Italic\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -571,\n \"maxY\": 2064\n }\n },\n \"YASans-Black\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -672,\n \"maxY\": 2209\n }\n },\n \"YahooSans-Black\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 972,\n \"descent\": -222,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -261,\n \"maxY\": 1160\n }\n },\n \"CentraNo2-ThinItalic\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 1000,\n \"descent\": -300,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -230,\n \"maxY\": 908\n }\n },\n \"YahooSansCond-Bold\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 972,\n \"descent\": -222,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -250,\n \"maxY\": 1158\n }\n },\n \"CentraNo2-BlackItalic\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 1000,\n \"descent\": -300,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -300,\n \"maxY\": 975\n }\n },\n \"YASansCn-BlackItalic\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -672,\n \"maxY\": 2209\n }\n },\n \"YahooSans-Light\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 972,\n \"descent\": -222,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -235,\n \"maxY\": 1149\n }\n },\n \"Gelica-Regular\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 1870,\n \"descent\": -500,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -482,\n \"maxY\": 1791\n }\n },\n \"Gelica-ExtraLightItalic\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 1870,\n \"descent\": -500,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -478,\n \"maxY\": 1766\n }\n },\n \"YahooCR2BETA-Bold\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 1014,\n \"descent\": -186,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -198,\n \"maxY\": 820\n }\n },\n \"YahooSerifText-Italic\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 972,\n \"descent\": -222,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -287,\n \"maxY\": 1135\n }\n },\n \"YahooSansCond-Medium\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 972,\n \"descent\": -222,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -239,\n \"maxY\": 1154\n }\n },\n \"YahooSans-Medium\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 972,\n \"descent\": -222,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -237,\n \"maxY\": 1157\n }\n },\n \"YASansExt-Italic\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -570,\n \"maxY\": 2077\n }\n },\n \"YASansExt-Medium\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -584,\n \"maxY\": 2093\n }\n },\n \"YahooSerifDisplay-Extrabold\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 972,\n \"descent\": -222,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -301,\n \"maxY\": 1166\n }\n },\n \"YahooCR2BETA-Regular\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 1014,\n \"descent\": -186,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -198,\n \"maxY\": 820\n }\n },\n \"CentraNo2-Medium\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 1000,\n \"descent\": -300,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -251,\n \"maxY\": 931\n }\n },\n \"YASans-LightItalic\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -539,\n \"maxY\": 2040\n }\n },\n \"Gelica-BlackItalic\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 1870,\n \"descent\": -500,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -494,\n \"maxY\": 1866\n }\n },\n \"Gelica-Italic\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 1870,\n \"descent\": -500,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -482,\n \"maxY\": 1791\n }\n },\n \"YahooCR2BETA-Medium\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 1014,\n \"descent\": -186,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -198,\n \"maxY\": 820\n }\n },\n \"YASansExt-SmBdItalic\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -605,\n \"maxY\": 2118\n }\n },\n \"Gelica-SemiBoldItalic\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 1870,\n \"descent\": -500,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -488,\n \"maxY\": 1828\n }\n },\n \"YASansExt-SmBd\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -605,\n \"maxY\": 2118\n }\n },\n \"YahooSansCond-Regular\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 972,\n \"descent\": -222,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -236,\n \"maxY\": 1151\n }\n },\n \"YASansCn-SmBd\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -599,\n \"maxY\": 2116\n }\n },\n \"YASans-BoldItalic\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -632,\n \"maxY\": 2145\n }\n },\n \"YASansExt-Bold\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -636,\n \"maxY\": 2155\n }\n },\n \"Gelica-LightItalic\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 1870,\n \"descent\": -500,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -480,\n \"maxY\": 1777\n }\n },\n \"CentraNo2-Bold\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 1000,\n \"descent\": -300,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -273,\n \"maxY\": 938\n }\n },\n \"YASansCn-Medium\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -579,\n \"maxY\": 2090\n }\n },\n \"YASansCn-LightItalic\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -539,\n \"maxY\": 2037\n }\n },\n \"CentraNo2-Black\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 1000,\n \"descent\": -300,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -300,\n \"maxY\": 975\n }\n },\n \"CentraNo2-Light\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 1000,\n \"descent\": -300,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -229,\n \"maxY\": 916\n }\n },\n \"YASans-SmBd\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -605,\n \"maxY\": 2102\n }\n },\n \"CentraNo2-ExtraBold\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 1000,\n \"descent\": -300,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -300,\n \"maxY\": 954\n }\n },\n \"CentraNo2-BookItalic\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 1000,\n \"descent\": -300,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -229,\n \"maxY\": 926\n }\n },\n \"Gelica-Black\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 1870,\n \"descent\": -500,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -494,\n \"maxY\": 1866\n }\n },\n \"YahooSerifDisplay-Light\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 972,\n \"descent\": -222,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -246,\n \"maxY\": 1066\n }\n },\n \"CentraNo2-Hairline\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 1000,\n \"descent\": -300,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -216,\n \"maxY\": 902\n }\n },\n \"YASansCn-Light\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -539,\n \"maxY\": 2037\n }\n },\n \"YASansExt-BoldItalic\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -636,\n \"maxY\": 2155\n }\n },\n \"Gelica-Bold\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 1870,\n \"descent\": -500,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -491,\n \"maxY\": 1847\n }\n },\n \"YASansCn-Bold\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -628,\n \"maxY\": 2153\n }\n },\n \"YASans-BlackItalic\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -673,\n \"maxY\": 2209\n }\n },\n \"YahooSerifText-Regular\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 972,\n \"descent\": -222,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -287,\n \"maxY\": 1113\n }\n },\n \"Gelica-Medium\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 1870,\n \"descent\": -500,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -485,\n \"maxY\": 1809\n }\n },\n \"YASansExt-Light\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -540,\n \"maxY\": 2042\n }\n },\n \"YahooSerifDisplay-Bold\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 972,\n \"descent\": -222,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -270,\n \"maxY\": 1134\n }\n },\n \"CentraNo2-HairlineItalic\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 1000,\n \"descent\": -300,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -252,\n \"maxY\": 902\n }\n },\n \"Gelica-Light\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 1870,\n \"descent\": -500,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -480,\n \"maxY\": 1777\n }\n },\n \"YahooSans-Bold\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 972,\n \"descent\": -222,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -241,\n \"maxY\": 1157\n }\n },\n \"Gelica-MediumItalic\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 1870,\n \"descent\": -500,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -485,\n \"maxY\": 1809\n }\n },\n \"YahooSans-ExtraBold\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 972,\n \"descent\": -222,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -252,\n \"maxY\": 1159\n }\n },\n \"YahooSans-Regular\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 1904,\n \"descent\": -482,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -539,\n \"maxY\": 2040\n }\n },\n \"YASansExt-Black\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -683,\n \"maxY\": 2209\n }\n },\n \"Gelica-SemiBold\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 1870,\n \"descent\": -500,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -488,\n \"maxY\": 1828\n }\n },\n \"YASansCn\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -567,\n \"maxY\": 2073\n }\n },\n \"YASans-MediumItalic\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 2210,\n \"descent\": -684,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -586,\n \"maxY\": 2075\n }\n },\n \"CentraNo2-ExtraBoldItalic\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 1000,\n \"descent\": -300,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -305,\n \"maxY\": 954\n }\n },\n \"YahooSans-ExtraLight\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 972,\n \"descent\": -222,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -235,\n \"maxY\": 1136\n }\n },\n \"YahooCR4BETA-VF\": {\n \"unitsPerEm\": 2000,\n \"ascent\": 1904,\n \"descent\": -482,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -396,\n \"maxY\": 1904\n }\n },\n \"RobotoMono-Bold\": {\n \"unitsPerEm\": 2048,\n \"ascent\": 2146,\n \"descent\": -555,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -555,\n \"maxY\": 2146\n }\n },\n \"RobotoMono-MediumItalic\": {\n \"unitsPerEm\": 2048,\n \"ascent\": 2146,\n \"descent\": -555,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -555,\n \"maxY\": 2146\n }\n },\n \"RobotoMono-Medium\": {\n \"unitsPerEm\": 2048,\n \"ascent\": 2146,\n \"descent\": -555,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -555,\n \"maxY\": 2146\n }\n },\n \"RobotoMono-Italic\": {\n \"unitsPerEm\": 2048,\n \"ascent\": 2146,\n \"descent\": -555,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -555,\n \"maxY\": 2146\n }\n },\n \"InterVariable-TextBold\": {\n \"unitsPerEm\": 2048,\n \"ascent\": 1984,\n \"descent\": -494,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -685,\n \"maxY\": 2279\n }\n },\n \"InterVariable-TextThin\": {\n \"unitsPerEm\": 2048,\n \"ascent\": 1984,\n \"descent\": -494,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -654,\n \"maxY\": 2262\n }\n },\n \"RobotoMono-BoldItalic\": {\n \"unitsPerEm\": 2048,\n \"ascent\": 2146,\n \"descent\": -555,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -555,\n \"maxY\": 2146\n }\n },\n \"InterVariable-Text\": {\n \"unitsPerEm\": 2048,\n \"ascent\": 1984,\n \"descent\": -494,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -660,\n \"maxY\": 2269\n }\n },\n \"RobotoMono-Regular\": {\n \"unitsPerEm\": 2048,\n \"ascent\": 2146,\n \"descent\": -555,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -555,\n \"maxY\": 2146\n }\n },\n \"InterVariable-TextExtraBold\": {\n \"unitsPerEm\": 2048,\n \"ascent\": 1984,\n \"descent\": -494,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -695,\n \"maxY\": 2282\n }\n },\n \"InterVariable-TextMedium\": {\n \"unitsPerEm\": 2048,\n \"ascent\": 1984,\n \"descent\": -494,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -668,\n \"maxY\": 2272\n }\n },\n \"InterVariable-TextBlack\": {\n \"unitsPerEm\": 2048,\n \"ascent\": 1984,\n \"descent\": -494,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -706,\n \"maxY\": 2306\n }\n },\n \"InterVariable-TextSemiBold\": {\n \"unitsPerEm\": 2048,\n \"ascent\": 1984,\n \"descent\": -494,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -677,\n \"maxY\": 2275\n }\n },\n \"RobotoMono-LightItalic\": {\n \"unitsPerEm\": 2048,\n \"ascent\": 2146,\n \"descent\": -555,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -555,\n \"maxY\": 2146\n }\n },\n \"InterVariable-TextLight\": {\n \"unitsPerEm\": 2048,\n \"ascent\": 1984,\n \"descent\": -494,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -654,\n \"maxY\": 2263\n }\n },\n \"InterVariable-TextExtraLight\": {\n \"unitsPerEm\": 2048,\n \"ascent\": 1984,\n \"descent\": -494,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -654,\n \"maxY\": 2262\n }\n },\n \"RobotoMono-Light\": {\n \"unitsPerEm\": 2048,\n \"ascent\": 2146,\n \"descent\": -555,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -555,\n \"maxY\": 2146\n }\n },\n \"YahooSerifText-BoldItalic\": {\n \"unitsPerEm\": 1000,\n \"ascent\": 972,\n \"descent\": -222,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -329,\n \"maxY\": 1144\n }\n },\n \"RobotoMono-ThinItalic\": {\n \"unitsPerEm\": 2048,\n \"ascent\": 2146,\n \"descent\": -555,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -555,\n \"maxY\": 2146\n }\n },\n \"RobotoMono-Thin\": {\n \"unitsPerEm\": 2048,\n \"ascent\": 2146,\n \"descent\": -555,\n \"lineGap\": 0,\n \"bbox\": {\n \"minY\": -555,\n \"maxY\": 2146\n }\n }\n};\n"],"mappings":"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"}
|
package/fonts/uds-icons.ttf
CHANGED
|
Binary file
|
package/generated/fontMetrics.ts
CHANGED
|
@@ -12,12 +12,12 @@ export type FontMetrics = {
|
|
|
12
12
|
export const fontMetrics: Record<string, FontMetrics> = {
|
|
13
13
|
"uds-icons": {
|
|
14
14
|
"unitsPerEm": 4096,
|
|
15
|
-
"ascent":
|
|
16
|
-
"descent":
|
|
15
|
+
"ascent": 3277,
|
|
16
|
+
"descent": -819,
|
|
17
17
|
"lineGap": 0,
|
|
18
18
|
"bbox": {
|
|
19
|
-
"minY": -
|
|
20
|
-
"maxY":
|
|
19
|
+
"minY": -1075,
|
|
20
|
+
"maxY": 3303
|
|
21
21
|
}
|
|
22
22
|
},
|
|
23
23
|
"YASansCn-BoldItalic": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yahoo/uds-mobile",
|
|
3
|
-
"version": "2.24.0-beta.
|
|
3
|
+
"version": "2.24.0-beta.11",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"bin": {
|
|
6
6
|
"uds-mobile": "./cli/uds-mobile.js"
|
|
@@ -407,7 +407,7 @@
|
|
|
407
407
|
"lodash-es": "^4.17.23"
|
|
408
408
|
},
|
|
409
409
|
"peerDependencies": {
|
|
410
|
-
"@yahoo/uds-icons": ">=2.
|
|
410
|
+
"@yahoo/uds-icons": ">=2.46.1-beta.2",
|
|
411
411
|
"expo-blur": "~55.0.0",
|
|
412
412
|
"expo-font": "~55.0.0",
|
|
413
413
|
"expo-modules-core": ">=2.0.0",
|