@yahoo/uds-mobile 2.20.1 → 2.21.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bin/_virtual/_rolldown/runtime.mjs +14 -0
- package/dist/bin/automated-config/dist/generated/generatedConfigs.mjs +47982 -0
- package/dist/bin/mobile/scripts/utils/configToRNMappings.mjs +20 -1
- package/dist/components/Checkbox.cjs +1 -2
- package/dist/components/Checkbox.js +1 -2
- package/dist/components/Checkbox.js.map +1 -1
- package/dist/components/Icon.d.cts +2 -2
- package/dist/components/Icon.d.ts +2 -2
- package/dist/components/Input.cjs +13 -5
- package/dist/components/Input.js +13 -5
- package/dist/components/Input.js.map +1 -1
- package/dist/components/InputHelpText.cjs +1 -2
- package/dist/components/InputHelpText.js +1 -2
- package/dist/components/InputHelpText.js.map +1 -1
- package/dist/jest/mocks/styles.cjs +3 -2
- package/dist/jest/mocks/styles.d.cts.map +1 -1
- package/dist/jest/mocks/styles.d.ts.map +1 -1
- package/dist/jest/mocks/styles.js +3 -2
- package/dist/jest/mocks/styles.js.map +1 -1
- package/fonts/index.cjs +213 -213
- package/fonts/index.mjs +213 -213
- package/fonts/uds-icons.ttf +0 -0
- package/generated/styles.cjs +85 -146
- package/generated/styles.d.ts +5 -15
- package/generated/styles.mjs +85 -146
- package/generated/unistyles.d.ts +64 -186
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"styles.js","names":[],"sources":["../../../src/jest/mocks/styles.ts"],"sourcesContent":["/**\n * Jest mock for generated/styles.\n *\n * Provides proxy-based mocks for the generated style objects\n * (styles, buttonStyles, etc.) with useVariants as a no-op.\n */\n\n/// <reference types=\"jest\" />\n\n// Default style values for foundation\nconst defaultFoundation = {\n // Layout\n display: 'flex',\n flexDirection: 'column',\n alignItems: 'stretch',\n justifyContent: 'flex-start',\n // Spacing\n padding: 0,\n paddingHorizontal: 0,\n paddingVertical: 0,\n margin: 0,\n gap: 0,\n // Colors\n backgroundColor: 'transparent',\n color: '#000000',\n borderColor: 'transparent',\n // Border\n borderWidth: 0,\n borderRadius: 0,\n // Typography\n fontFamily: 'System',\n fontSize: 14,\n lineHeight: 20,\n fontWeight: 'regular',\n // Effects\n opacity: 1,\n boxShadow: '',\n};\n\n// Create a style object with useVariants attached\nfunction createStyleObject(baseStyles: Record<string, unknown> = {}) {\n const proxy = new Proxy(\n { ...defaultFoundation, ...baseStyles, useVariants: jest.fn() },\n {\n get(target, prop) {\n if (prop === 'useVariants') {\n return jest.fn();\n }\n if (prop in target) {\n return target[prop as keyof typeof target];\n }\n // Return sensible defaults for unknown properties\n if (typeof prop === 'string') {\n if (prop.includes('color') || prop.includes('Color')) {\n return '#000000';\n }\n if (prop.includes('width') || prop.includes('Width')) {\n return 0;\n }\n if (prop.includes('radius') || prop.includes('Radius')) {\n return 0;\n }\n if (prop.includes('size') || prop.includes('Size')) {\n return 16;\n }\n if (prop.includes('spacing') || prop.includes('Spacing')) {\n return 0;\n }\n if (prop.includes('gap') || prop.includes('Gap')) {\n return 0;\n }\n }\n return undefined;\n },\n },\n );\n return proxy;\n}\n\n// Create a component style object (like buttonStyles) with multiple style keys\nfunction createComponentStyles(styleKeys: Record<string, Record<string, unknown>>) {\n const result: Record<string, unknown> = { useVariants: jest.fn() };\n\n for (const [key, baseStyles] of Object.entries(styleKeys)) {\n result[key] = createStyleObject(baseStyles);\n }\n\n return new Proxy(result, {\n get(target, prop) {\n if (prop === 'useVariants') {\n return jest.fn();\n }\n if (prop in target) {\n return target[prop as keyof typeof target];\n }\n // Return a default style object for any unknown key\n if (typeof prop === 'string') {\n return createStyleObject();\n }\n return undefined;\n },\n });\n}\n\n// Main styles export\nexport const styles = createComponentStyles({\n foundation: defaultFoundation,\n});\n\n// Button styles\nexport const buttonStyles = createComponentStyles({\n root: {\n display: 'flex',\n flexDirection: 'row',\n alignItems: 'center',\n justifyContent: 'center',\n gap: 8,\n paddingHorizontal: 16,\n paddingVertical: 10,\n backgroundColor: '#6001D2',\n borderRadius: 8,\n borderWidth: 0,\n borderColor: 'transparent',\n opacity: 1,\n boxShadow: '',\n },\n text: {\n fontFamily: 'YahooProductSans-Medium',\n fontSize: 14,\n letterSpacing: 0,\n lineHeight: 20,\n color: '#FFFFFF',\n },\n icon: {\n fontSize: 16,\n iconSizeToken: 'sm',\n lineHeight: 16,\n color: '#FFFFFF',\n },\n});\n\n// Text styles\nexport const textStyles = createComponentStyles({\n root: {\n fontFamily: 'YahooProductSans-Regular',\n fontSize: 14,\n lineHeight: 20,\n color: '#000000',\n },\n});\n\n// Input styles\nexport const inputStyles = createComponentStyles({\n root: {\n display: 'flex',\n flexDirection: 'column',\n gap: 4,\n },\n label: {\n fontFamily: 'YahooProductSans-Medium',\n fontSize: 14,\n lineHeight: 20,\n color: '#000000',\n },\n inputContainer: {\n display: 'flex',\n flexDirection: 'row',\n alignItems: 'center',\n paddingHorizontal: 12,\n paddingVertical: 10,\n backgroundColor: '#FFFFFF',\n borderRadius: 8,\n borderWidth: 1,\n borderColor: '#E0E0E0',\n },\n input: {\n flex: 1,\n fontFamily: 'YahooProductSans-Regular',\n fontSize: 16,\n lineHeight: 24,\n color: '#000000',\n },\n helperText: {\n fontFamily: 'YahooProductSans-Regular',\n fontSize: 12,\n lineHeight: 16,\n color: '#666666',\n },\n});\n\n// Checkbox styles\nexport const checkboxStyles = createComponentStyles({\n root: {\n display: 'flex',\n flexDirection: 'row',\n alignItems: 'center',\n gap: 8,\n },\n box: {\n width: 20,\n height: 20,\n borderRadius: 4,\n borderWidth: 2,\n borderColor: '#6001D2',\n backgroundColor: 'transparent',\n },\n label: {\n fontFamily: 'YahooProductSans-Regular',\n fontSize: 14,\n lineHeight: 20,\n color: '#000000',\n },\n});\n\n// Switch styles\nexport const switchStyles = createComponentStyles({\n root: {\n display: 'flex',\n flexDirection: 'row',\n alignItems: 'center',\n gap: 8,\n },\n track: {\n width: 48,\n height: 28,\n borderRadius: 14,\n backgroundColor: '#E0E0E0',\n },\n thumb: {\n width: 24,\n height: 24,\n borderRadius: 12,\n backgroundColor: '#FFFFFF',\n },\n label: {\n fontFamily: 'YahooProductSans-Regular',\n fontSize: 14,\n lineHeight: 20,\n color: '#000000',\n },\n});\n\n// Avatar styles\nexport const avatarStyles = createComponentStyles({\n root: {\n display: 'flex',\n alignItems: 'center',\n justifyContent: 'center',\n borderRadius: 9999,\n backgroundColor: '#E0E0E0',\n overflow: 'hidden',\n },\n image: {\n width: '100%',\n height: '100%',\n },\n initials: {\n fontFamily: 'YahooProductSans-Medium',\n fontSize: 14,\n color: '#000000',\n },\n});\n\n// Badge styles\nexport const badgeStyles = createComponentStyles({\n root: {\n display: 'flex',\n alignItems: 'center',\n justifyContent: 'center',\n paddingHorizontal: 8,\n paddingVertical: 2,\n borderRadius: 4,\n backgroundColor: '#E0E0E0',\n },\n text: {\n fontFamily: 'YahooProductSans-Medium',\n fontSize: 12,\n lineHeight: 16,\n color: '#000000',\n },\n});\n\n// Chip styles\nexport const chipStyles = createComponentStyles({\n root: {\n display: 'flex',\n flexDirection: 'row',\n alignItems: 'center',\n gap: 4,\n paddingHorizontal: 12,\n paddingVertical: 6,\n borderRadius: 16,\n backgroundColor: '#F5F5F5',\n borderWidth: 1,\n borderColor: '#E0E0E0',\n },\n text: {\n fontFamily: 'YahooProductSans-Medium',\n fontSize: 14,\n lineHeight: 20,\n color: '#000000',\n },\n});\n\n// Divider styles\nexport const dividerStyles = createComponentStyles({\n root: {\n gap: 8,\n },\n label: {\n fontFamily: 'YahooProductSans-Medium',\n fontSize: 12,\n lineHeight: 16,\n color: '#000000',\n },\n line: {\n borderWidth: 1,\n borderColor: '#E0E0E0',\n },\n});\n\n// Link styles\nexport const linkStyles = createComponentStyles({\n root: {\n flexDirection: 'row',\n alignItems: 'center',\n gap: 4,\n },\n text: {\n fontFamily: 'YahooProductSans-Regular',\n fontSize: 14,\n lineHeight: 20,\n color: '#6001D2',\n textDecorationLine: 'underline',\n },\n});\n\n// Radio styles\nexport const radioStyles = createComponentStyles({\n root: {\n display: 'flex',\n flexDirection: 'row',\n alignItems: 'center',\n gap: 8,\n },\n circle: {\n width: 20,\n height: 20,\n borderRadius: 10,\n borderWidth: 2,\n borderColor: '#6001D2',\n backgroundColor: 'transparent',\n },\n dot: {\n width: 10,\n height: 10,\n borderRadius: 5,\n backgroundColor: '#6001D2',\n },\n label: {\n fontFamily: 'YahooProductSans-Regular',\n fontSize: 14,\n lineHeight: 20,\n color: '#000000',\n },\n});\n\n// IconButton styles\nexport const iconButtonStyles = createComponentStyles({\n root: {\n display: 'flex',\n alignItems: 'center',\n justifyContent: 'center',\n borderRadius: 8,\n backgroundColor: 'transparent',\n },\n icon: {\n fontSize: 24,\n color: '#000000',\n },\n});\n\n// BottomSheet styles\nexport const bottomSheetStyles = createComponentStyles({\n root: {\n backgroundColor: '#ffffff',\n backgroundBlurColor: '#ffffff',\n backgroundBlurRadius: 0,\n borderColor: '#e0e0e0',\n borderWidth: 1,\n borderRadius: 16,\n paddingHorizontal: 16,\n paddingVertical: 8,\n marginHorizontal: 8,\n marginBottom: 8,\n },\n header: {\n fontFamily: 'YahooProductSans-Medium',\n fontSize: 16,\n letterSpacing: 0,\n lineHeight: 20,\n color: '#000000',\n },\n handleIndicator: {\n backgroundColor: '#999999',\n },\n});\n\n// Scrim styles\nexport const scrimStyles = createComponentStyles({\n root: {\n backgroundColor: '#000000',\n opacity: 0.2,\n backgroundBlurRadius: 0,\n },\n});\n\n// Popover styles\nexport const popoverStyles = createComponentStyles({\n root: {\n boxShadow: '0px 8px 16px rgba(0, 0, 0, 0.12)',\n },\n blur: {\n backgroundBlurRadius: 0,\n },\n closeIcon: {\n fontSize: 16,\n iconSizeToken: 'sm',\n lineHeight: 16,\n color: '#000000',\n },\n closeIconContainer: {\n padding: 8,\n },\n contentWrapper: {\n gap: 8,\n paddingHorizontal: 16,\n paddingVertical: 16,\n },\n svgBase: {\n borderRadius: 16,\n backgroundBlurColor: '#ffffff',\n backgroundBlurRadius: 0,\n backgroundColor: '#ffffff',\n backgroundOpacity: 1,\n },\n svgBorder: {\n borderColor: '#e0e0e0',\n borderWidth: 1,\n },\n});\n\n// Tabs (tab list chrome)\nexport const tabsStyles = createComponentStyles({\n root: {\n flexDirection: 'row',\n alignItems: 'center',\n gap: 8,\n },\n});\n\n// Pagination styles\nexport const paginationStyles = createComponentStyles({\n root: {\n flexDirection: 'row',\n alignItems: 'center',\n gap: 4,\n },\n item: {\n alignItems: 'center',\n justifyContent: 'center',\n padding: 8,\n borderRadius: 999,\n },\n text: {\n fontSize: 14,\n lineHeight: 16,\n },\n icon: {\n fontSize: 16,\n lineHeight: 16,\n },\n});\n\n// Toast styles\nexport const toastStyles = createComponentStyles({\n root: {\n alignItems: 'center',\n backgroundBlurColor: 'rgba(255, 255, 255, 0.9)',\n backgroundBlurRadius: 0,\n backgroundColor: '#FFFFFF',\n borderColor: '#E0E0E0',\n borderRadius: 12,\n borderWidth: 1,\n boxShadow: '',\n flexDirection: 'row',\n gap: 8,\n paddingHorizontal: 12,\n paddingVertical: 10,\n },\n text: {\n color: '#000000',\n },\n icon: {\n color: '#000000',\n fontSize: 16,\n iconSizeToken: 'md',\n lineHeight: 16,\n },\n closeIcon: {\n color: '#000000',\n fontSize: 12,\n iconSizeToken: 'sm',\n lineHeight: 12,\n },\n label: {\n fontFamily: 'YahooProductSans-Medium',\n fontSize: 14,\n letterSpacing: 0,\n lineHeight: 20,\n },\n});\n\n// Modal styles\nexport const modalStyles = createComponentStyles({\n root: {\n backgroundBlurColor: 'rgba(255, 255, 255, 0.9)',\n backgroundBlurRadius: 0,\n backgroundColor: '#FFFFFF',\n borderColor: '#E0E0E0',\n borderRadius: 16,\n borderWidth: 1,\n boxShadow: '',\n paddingVertical: 32,\n },\n actions: {\n gap: 12,\n },\n closeIcon: {\n color: '#000000',\n fontSize: 24,\n iconSizeToken: 'md',\n lineHeight: 24,\n },\n closeIconContainer: {\n padding: 8,\n },\n description: {\n color: '#000000',\n fontFamily: 'YahooProductSans-Regular',\n fontSize: 18,\n letterSpacing: 0,\n lineHeight: 28,\n },\n scrim: {\n padding: 32,\n },\n spacingHorizontal: {\n paddingHorizontal: 32,\n },\n title: {\n color: '#000000',\n fontFamily: 'YahooProductSans-Medium',\n fontSize: 28,\n letterSpacing: 0,\n lineHeight: 36,\n },\n titleDescriptionWrapper: {\n gap: 8,\n },\n});\n\n// Type for StyleProps\nexport interface StyleProps {\n color?: string;\n backgroundColor?: string;\n borderColor?: string;\n borderWidth?: number;\n borderRadius?: number;\n [key: string]: unknown;\n}\n"],"mappings":"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Aa;EACb,cAAc;EACd,aAAa;EACb,WAAW;EACX,eAAe;EACf,KAAK;EACL,mBAAmB;EACnB,iBAAiB;EAClB;CACD,MAAM,EACJ,OAAO,WACR;CACD,MAAM;EACJ,OAAO;EACP,UAAU;EACV,eAAe;EACf,YAAY;EACb;CACD,WAAW;EACT,OAAO;EACP,UAAU;EACV,eAAe;EACf,YAAY;EACb;CACD,OAAO;EACL,YAAY;EACZ,UAAU;EACV,eAAe;EACf,YAAY;EACb;CACF,CAAC;AAGF,MAAa,cAAc,sBAAsB;CAC/C,MAAM;EACJ,qBAAqB;EACrB,sBAAsB;EACtB,iBAAiB;EACjB,aAAa;EACb,cAAc;EACd,aAAa;EACb,WAAW;EACX,iBAAiB;EAClB;CACD,SAAS,EACP,KAAK,IACN;CACD,WAAW;EACT,OAAO;EACP,UAAU;EACV,eAAe;EACf,YAAY;EACb;CACD,oBAAoB,EAClB,SAAS,GACV;CACD,aAAa;EACX,OAAO;EACP,YAAY;EACZ,UAAU;EACV,eAAe;EACf,YAAY;EACb;CACD,OAAO,EACL,SAAS,IACV;CACD,mBAAmB,EACjB,mBAAmB,IACpB;CACD,OAAO;EACL,OAAO;EACP,YAAY;EACZ,UAAU;EACV,eAAe;EACf,YAAY;EACb;CACD,yBAAyB,EACvB,KAAK,GACN;CACF,CAAC"}
|
|
1
|
+
{"version":3,"file":"styles.js","names":[],"sources":["../../../src/jest/mocks/styles.ts"],"sourcesContent":["/**\n * Jest mock for generated/styles.\n *\n * Provides proxy-based mocks for the generated style objects\n * (styles, buttonStyles, etc.) with useVariants as a no-op.\n */\n\n/// <reference types=\"jest\" />\n\n// Default style values for foundation\nconst defaultFoundation = {\n // Layout\n display: 'flex',\n flexDirection: 'column',\n alignItems: 'stretch',\n justifyContent: 'flex-start',\n // Spacing\n padding: 0,\n paddingHorizontal: 0,\n paddingVertical: 0,\n margin: 0,\n gap: 0,\n // Colors\n backgroundColor: 'transparent',\n color: '#000000',\n borderColor: 'transparent',\n // Border\n borderWidth: 0,\n borderRadius: 0,\n // Typography\n fontFamily: 'System',\n fontSize: 14,\n lineHeight: 20,\n fontWeight: 'regular',\n // Effects\n opacity: 1,\n boxShadow: '',\n};\n\n// Create a style object with useVariants attached\nfunction createStyleObject(baseStyles: Record<string, unknown> = {}) {\n const proxy = new Proxy(\n { ...defaultFoundation, ...baseStyles, useVariants: jest.fn() },\n {\n get(target, prop) {\n if (prop === 'useVariants') {\n return jest.fn();\n }\n if (prop in target) {\n return target[prop as keyof typeof target];\n }\n // Return sensible defaults for unknown properties\n if (typeof prop === 'string') {\n if (prop.includes('color') || prop.includes('Color')) {\n return '#000000';\n }\n if (prop.includes('width') || prop.includes('Width')) {\n return 0;\n }\n if (prop.includes('radius') || prop.includes('Radius')) {\n return 0;\n }\n if (prop.includes('size') || prop.includes('Size')) {\n return 16;\n }\n if (prop.includes('spacing') || prop.includes('Spacing')) {\n return 0;\n }\n if (prop.includes('gap') || prop.includes('Gap')) {\n return 0;\n }\n }\n return undefined;\n },\n },\n );\n return proxy;\n}\n\n// Create a component style object (like buttonStyles) with multiple style keys\nfunction createComponentStyles(styleKeys: Record<string, Record<string, unknown>>) {\n const result: Record<string, unknown> = { useVariants: jest.fn() };\n\n for (const [key, baseStyles] of Object.entries(styleKeys)) {\n result[key] = createStyleObject(baseStyles);\n }\n\n return new Proxy(result, {\n get(target, prop) {\n if (prop === 'useVariants') {\n return jest.fn();\n }\n if (prop in target) {\n return target[prop as keyof typeof target];\n }\n // Return a default style object for any unknown key\n if (typeof prop === 'string') {\n return createStyleObject();\n }\n return undefined;\n },\n });\n}\n\n// Main styles export\nexport const styles = createComponentStyles({\n foundation: defaultFoundation,\n});\n\n// Button styles\nexport const buttonStyles = createComponentStyles({\n root: {\n display: 'flex',\n flexDirection: 'row',\n alignItems: 'center',\n justifyContent: 'center',\n gap: 8,\n paddingHorizontal: 16,\n paddingVertical: 10,\n backgroundColor: '#6001D2',\n borderRadius: 8,\n borderWidth: 0,\n borderColor: 'transparent',\n opacity: 1,\n boxShadow: '',\n },\n text: {\n fontFamily: 'YahooProductSans-Medium',\n fontSize: 14,\n letterSpacing: 0,\n lineHeight: 20,\n color: '#FFFFFF',\n },\n icon: {\n fontSize: 16,\n iconSizeToken: 'sm',\n lineHeight: 16,\n color: '#FFFFFF',\n },\n});\n\n// Text styles\nexport const textStyles = createComponentStyles({\n root: {\n fontFamily: 'YahooProductSans-Regular',\n fontSize: 14,\n lineHeight: 20,\n color: '#000000',\n },\n});\n\n// Input styles\nexport const inputStyles = createComponentStyles({\n root: {\n display: 'flex',\n flexDirection: 'column',\n gap: 4,\n },\n label: {\n fontFamily: 'YahooProductSans-Medium',\n fontSize: 14,\n lineHeight: 20,\n color: '#000000',\n },\n inputContainer: {\n display: 'flex',\n flexDirection: 'row',\n alignItems: 'center',\n paddingHorizontal: 12,\n paddingVertical: 10,\n backgroundColor: '#FFFFFF',\n borderRadius: 8,\n borderWidth: 1,\n borderColor: '#E0E0E0',\n },\n input: {\n flex: 1,\n fontFamily: 'YahooProductSans-Regular',\n fontSize: 16,\n lineHeight: 24,\n color: '#000000',\n },\n helperText: {\n fontFamily: 'YahooProductSans-Regular',\n fontSize: 12,\n lineHeight: 16,\n color: '#666666',\n },\n});\n\n// Checkbox styles\nexport const checkboxStyles = createComponentStyles({\n root: {\n display: 'flex',\n flexDirection: 'row',\n alignItems: 'center',\n gap: 8,\n },\n checkbox: {\n width: 20,\n height: 20,\n borderRadius: 4,\n borderWidth: 2,\n borderColor: '#6001D2',\n backgroundColor: 'transparent',\n },\n checkboxIcon: {\n color: '#6001D2',\n },\n text: {\n fontFamily: 'YahooProductSans-Regular',\n fontSize: 14,\n lineHeight: 20,\n color: '#000000',\n },\n});\n\n// Switch styles\nexport const switchStyles = createComponentStyles({\n root: {\n display: 'flex',\n flexDirection: 'row',\n alignItems: 'center',\n gap: 8,\n },\n track: {\n width: 48,\n height: 28,\n borderRadius: 14,\n backgroundColor: '#E0E0E0',\n },\n thumb: {\n width: 24,\n height: 24,\n borderRadius: 12,\n backgroundColor: '#FFFFFF',\n },\n label: {\n fontFamily: 'YahooProductSans-Regular',\n fontSize: 14,\n lineHeight: 20,\n color: '#000000',\n },\n});\n\n// Avatar styles\nexport const avatarStyles = createComponentStyles({\n root: {\n display: 'flex',\n alignItems: 'center',\n justifyContent: 'center',\n borderRadius: 9999,\n backgroundColor: '#E0E0E0',\n overflow: 'hidden',\n },\n image: {\n width: '100%',\n height: '100%',\n },\n initials: {\n fontFamily: 'YahooProductSans-Medium',\n fontSize: 14,\n color: '#000000',\n },\n});\n\n// Badge styles\nexport const badgeStyles = createComponentStyles({\n root: {\n display: 'flex',\n alignItems: 'center',\n justifyContent: 'center',\n paddingHorizontal: 8,\n paddingVertical: 2,\n borderRadius: 4,\n backgroundColor: '#E0E0E0',\n },\n text: {\n fontFamily: 'YahooProductSans-Medium',\n fontSize: 12,\n lineHeight: 16,\n color: '#000000',\n },\n});\n\n// Chip styles\nexport const chipStyles = createComponentStyles({\n root: {\n display: 'flex',\n flexDirection: 'row',\n alignItems: 'center',\n gap: 4,\n paddingHorizontal: 12,\n paddingVertical: 6,\n borderRadius: 16,\n backgroundColor: '#F5F5F5',\n borderWidth: 1,\n borderColor: '#E0E0E0',\n },\n text: {\n fontFamily: 'YahooProductSans-Medium',\n fontSize: 14,\n lineHeight: 20,\n color: '#000000',\n },\n});\n\n// Divider styles\nexport const dividerStyles = createComponentStyles({\n root: {\n gap: 8,\n },\n label: {\n fontFamily: 'YahooProductSans-Medium',\n fontSize: 12,\n lineHeight: 16,\n color: '#000000',\n },\n line: {\n borderWidth: 1,\n borderColor: '#E0E0E0',\n },\n});\n\n// Link styles\nexport const linkStyles = createComponentStyles({\n root: {\n flexDirection: 'row',\n alignItems: 'center',\n gap: 4,\n },\n text: {\n fontFamily: 'YahooProductSans-Regular',\n fontSize: 14,\n lineHeight: 20,\n color: '#6001D2',\n textDecorationLine: 'underline',\n },\n});\n\n// Radio styles\nexport const radioStyles = createComponentStyles({\n root: {\n display: 'flex',\n flexDirection: 'row',\n alignItems: 'center',\n gap: 8,\n },\n circle: {\n width: 20,\n height: 20,\n borderRadius: 10,\n borderWidth: 2,\n borderColor: '#6001D2',\n backgroundColor: 'transparent',\n },\n dot: {\n width: 10,\n height: 10,\n borderRadius: 5,\n backgroundColor: '#6001D2',\n },\n label: {\n fontFamily: 'YahooProductSans-Regular',\n fontSize: 14,\n lineHeight: 20,\n color: '#000000',\n },\n});\n\n// IconButton styles\nexport const iconButtonStyles = createComponentStyles({\n root: {\n display: 'flex',\n alignItems: 'center',\n justifyContent: 'center',\n borderRadius: 8,\n backgroundColor: 'transparent',\n },\n icon: {\n fontSize: 24,\n color: '#000000',\n },\n});\n\n// BottomSheet styles\nexport const bottomSheetStyles = createComponentStyles({\n root: {\n backgroundColor: '#ffffff',\n backgroundBlurColor: '#ffffff',\n backgroundBlurRadius: 0,\n borderColor: '#e0e0e0',\n borderWidth: 1,\n borderRadius: 16,\n paddingHorizontal: 16,\n paddingVertical: 8,\n marginHorizontal: 8,\n marginBottom: 8,\n },\n header: {\n fontFamily: 'YahooProductSans-Medium',\n fontSize: 16,\n letterSpacing: 0,\n lineHeight: 20,\n color: '#000000',\n },\n handleIndicator: {\n backgroundColor: '#999999',\n },\n});\n\n// Scrim styles\nexport const scrimStyles = createComponentStyles({\n root: {\n backgroundColor: '#000000',\n opacity: 0.2,\n backgroundBlurRadius: 0,\n },\n});\n\n// Popover styles\nexport const popoverStyles = createComponentStyles({\n root: {\n boxShadow: '0px 8px 16px rgba(0, 0, 0, 0.12)',\n },\n blur: {\n backgroundBlurRadius: 0,\n },\n closeIcon: {\n fontSize: 16,\n iconSizeToken: 'sm',\n lineHeight: 16,\n color: '#000000',\n },\n closeIconContainer: {\n padding: 8,\n },\n contentWrapper: {\n gap: 8,\n paddingHorizontal: 16,\n paddingVertical: 16,\n },\n svgBase: {\n borderRadius: 16,\n backgroundBlurColor: '#ffffff',\n backgroundBlurRadius: 0,\n backgroundColor: '#ffffff',\n backgroundOpacity: 1,\n },\n svgBorder: {\n borderColor: '#e0e0e0',\n borderWidth: 1,\n },\n});\n\n// Tabs (tab list chrome)\nexport const tabsStyles = createComponentStyles({\n root: {\n flexDirection: 'row',\n alignItems: 'center',\n gap: 8,\n },\n});\n\n// Pagination styles\nexport const paginationStyles = createComponentStyles({\n root: {\n flexDirection: 'row',\n alignItems: 'center',\n gap: 4,\n },\n item: {\n alignItems: 'center',\n justifyContent: 'center',\n padding: 8,\n borderRadius: 999,\n },\n text: {\n fontSize: 14,\n lineHeight: 16,\n },\n icon: {\n fontSize: 16,\n lineHeight: 16,\n },\n});\n\n// Toast styles\nexport const toastStyles = createComponentStyles({\n root: {\n alignItems: 'center',\n backgroundBlurColor: 'rgba(255, 255, 255, 0.9)',\n backgroundBlurRadius: 0,\n backgroundColor: '#FFFFFF',\n borderColor: '#E0E0E0',\n borderRadius: 12,\n borderWidth: 1,\n boxShadow: '',\n flexDirection: 'row',\n gap: 8,\n paddingHorizontal: 12,\n paddingVertical: 10,\n },\n text: {\n color: '#000000',\n },\n icon: {\n color: '#000000',\n fontSize: 16,\n iconSizeToken: 'md',\n lineHeight: 16,\n },\n closeIcon: {\n color: '#000000',\n fontSize: 12,\n iconSizeToken: 'sm',\n lineHeight: 12,\n },\n label: {\n fontFamily: 'YahooProductSans-Medium',\n fontSize: 14,\n letterSpacing: 0,\n lineHeight: 20,\n },\n});\n\n// Modal styles\nexport const modalStyles = createComponentStyles({\n root: {\n backgroundBlurColor: 'rgba(255, 255, 255, 0.9)',\n backgroundBlurRadius: 0,\n backgroundColor: '#FFFFFF',\n borderColor: '#E0E0E0',\n borderRadius: 16,\n borderWidth: 1,\n boxShadow: '',\n paddingVertical: 32,\n },\n actions: {\n gap: 12,\n },\n closeIcon: {\n color: '#000000',\n fontSize: 24,\n iconSizeToken: 'md',\n lineHeight: 24,\n },\n closeIconContainer: {\n padding: 8,\n },\n description: {\n color: '#000000',\n fontFamily: 'YahooProductSans-Regular',\n fontSize: 18,\n letterSpacing: 0,\n lineHeight: 28,\n },\n scrim: {\n padding: 32,\n },\n spacingHorizontal: {\n paddingHorizontal: 32,\n },\n title: {\n color: '#000000',\n fontFamily: 'YahooProductSans-Medium',\n fontSize: 28,\n letterSpacing: 0,\n lineHeight: 36,\n },\n titleDescriptionWrapper: {\n gap: 8,\n },\n});\n\n// Type for StyleProps\nexport interface StyleProps {\n color?: string;\n backgroundColor?: string;\n borderColor?: string;\n borderWidth?: number;\n borderRadius?: number;\n [key: string]: unknown;\n}\n"],"mappings":"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AsB;EACtB,iBAAiB;EACjB,aAAa;EACb,cAAc;EACd,aAAa;EACb,WAAW;EACX,eAAe;EACf,KAAK;EACL,mBAAmB;EACnB,iBAAiB;EAClB;CACD,MAAM,EACJ,OAAO,WACR;CACD,MAAM;EACJ,OAAO;EACP,UAAU;EACV,eAAe;EACf,YAAY;EACb;CACD,WAAW;EACT,OAAO;EACP,UAAU;EACV,eAAe;EACf,YAAY;EACb;CACD,OAAO;EACL,YAAY;EACZ,UAAU;EACV,eAAe;EACf,YAAY;EACb;CACF,CAAC;AAGF,MAAa,cAAc,sBAAsB;CAC/C,MAAM;EACJ,qBAAqB;EACrB,sBAAsB;EACtB,iBAAiB;EACjB,aAAa;EACb,cAAc;EACd,aAAa;EACb,WAAW;EACX,iBAAiB;EAClB;CACD,SAAS,EACP,KAAK,IACN;CACD,WAAW;EACT,OAAO;EACP,UAAU;EACV,eAAe;EACf,YAAY;EACb;CACD,oBAAoB,EAClB,SAAS,GACV;CACD,aAAa;EACX,OAAO;EACP,YAAY;EACZ,UAAU;EACV,eAAe;EACf,YAAY;EACb;CACD,OAAO,EACL,SAAS,IACV;CACD,mBAAmB,EACjB,mBAAmB,IACpB;CACD,OAAO;EACL,OAAO;EACP,YAAY;EACZ,UAAU;EACV,eAAe;EACf,YAAY;EACb;CACD,yBAAyB,EACvB,KAAK,GACN;CACF,CAAC"}
|
package/fonts/index.cjs
CHANGED
|
@@ -1,270 +1,270 @@
|
|
|
1
1
|
|
|
2
2
|
module.exports.fonts = [
|
|
3
|
-
require.resolve('@yahoo/uds-mobile/fonts/centra-no2-hairline.otf'),
|
|
4
|
-
require.resolve('@yahoo/uds-mobile/fonts/centra-no2-extrabold.otf'),
|
|
5
3
|
require.resolve('@yahoo/uds-mobile/fonts/yas-regular-italic.otf'),
|
|
6
|
-
require.resolve('@yahoo/uds-mobile/fonts/yas-regular.otf'),
|
|
7
4
|
require.resolve('@yahoo/uds-mobile/fonts/centra-no2-black-italic.otf'),
|
|
8
|
-
require.resolve('@yahoo/uds-mobile/fonts/
|
|
9
|
-
require.resolve('@yahoo/uds-mobile/fonts/
|
|
10
|
-
require.resolve('@yahoo/uds-mobile/fonts/yas-
|
|
11
|
-
require.resolve('@yahoo/uds-mobile/fonts/
|
|
12
|
-
require.resolve('@yahoo/uds-mobile/fonts/
|
|
13
|
-
require.resolve('@yahoo/uds-mobile/fonts/yahoo-product-sans-bold.otf'),
|
|
14
|
-
require.resolve('@yahoo/uds-mobile/fonts/yas-condensed-semibold-italic.otf'),
|
|
15
|
-
require.resolve('@yahoo/uds-mobile/fonts/yahoo-product-sans-medium.otf'),
|
|
5
|
+
require.resolve('@yahoo/uds-mobile/fonts/yas-condensed-medium-italic.otf'),
|
|
6
|
+
require.resolve('@yahoo/uds-mobile/fonts/yahoo-sans-light.otf'),
|
|
7
|
+
require.resolve('@yahoo/uds-mobile/fonts/yas-light-italic.otf'),
|
|
8
|
+
require.resolve('@yahoo/uds-mobile/fonts/yas-condensed-bold-italic.otf'),
|
|
9
|
+
require.resolve('@yahoo/uds-mobile/fonts/yas-extended-semibold-italic.otf'),
|
|
16
10
|
require.resolve('@yahoo/uds-mobile/fonts/yahoo-serif-display-light.otf'),
|
|
17
|
-
require.resolve('@yahoo/uds-mobile/fonts/
|
|
18
|
-
require.resolve('@yahoo/uds-mobile/fonts/
|
|
19
|
-
require.resolve('@yahoo/uds-mobile/fonts/
|
|
20
|
-
require.resolve('@yahoo/uds-mobile/fonts/yahoo-serif-display-regular.otf'),
|
|
21
|
-
require.resolve('@yahoo/uds-mobile/fonts/centra-no2-bold-italic.otf'),
|
|
22
|
-
require.resolve('@yahoo/uds-mobile/fonts/gelica-light.otf'),
|
|
23
|
-
require.resolve('@yahoo/uds-mobile/fonts/yas-extended-semibold.otf'),
|
|
24
|
-
require.resolve('@yahoo/uds-mobile/fonts/centra-no2-light-italic.otf'),
|
|
25
|
-
require.resolve('@yahoo/uds-mobile/fonts/yas-condensed-regular.otf'),
|
|
26
|
-
require.resolve('@yahoo/uds-mobile/fonts/centra-no2-hairline-italic.otf'),
|
|
27
|
-
require.resolve('@yahoo/uds-mobile/fonts/yahoo-sans-condensed-light.otf'),
|
|
28
|
-
require.resolve('@yahoo/uds-mobile/fonts/yahoo-serif-text-italic.otf'),
|
|
29
|
-
require.resolve('@yahoo/uds-mobile/fonts/yas-condensed-black-italic.otf'),
|
|
30
|
-
require.resolve('@yahoo/uds-mobile/fonts/yahoo-serif-text-bold.otf'),
|
|
31
|
-
require.resolve('@yahoo/uds-mobile/fonts/yahoo-serif-display-extrabold.otf'),
|
|
32
|
-
require.resolve('@yahoo/uds-mobile/fonts/yahoo-sans-bold.otf'),
|
|
33
|
-
require.resolve('@yahoo/uds-mobile/fonts/yahoo-sans-extrabold.otf'),
|
|
34
|
-
require.resolve('@yahoo/uds-mobile/fonts/yas-black-italic.otf'),
|
|
35
|
-
require.resolve('@yahoo/uds-mobile/fonts/centra-no2-medium.otf'),
|
|
36
|
-
require.resolve('@yahoo/uds-mobile/fonts/yas-condensed-bold.otf'),
|
|
37
|
-
require.resolve('@yahoo/uds-mobile/fonts/yas-extended-medium.otf'),
|
|
11
|
+
require.resolve('@yahoo/uds-mobile/fonts/gelica-bold.otf'),
|
|
12
|
+
require.resolve('@yahoo/uds-mobile/fonts/gelica-light-italic.otf'),
|
|
13
|
+
require.resolve('@yahoo/uds-mobile/fonts/gelica-bold-italic.otf'),
|
|
38
14
|
require.resolve('@yahoo/uds-mobile/fonts/gelica-medium-italic.otf'),
|
|
39
|
-
require.resolve('@yahoo/uds-mobile/fonts/yahoo-sans-condensed-medium.otf'),
|
|
40
|
-
require.resolve('@yahoo/uds-mobile/fonts/yas-condensed-semibold.otf'),
|
|
41
|
-
require.resolve('@yahoo/uds-mobile/fonts/yas-condensed-medium.otf'),
|
|
42
|
-
require.resolve('@yahoo/uds-mobile/fonts/yahoo-sans-medium.otf'),
|
|
43
|
-
require.resolve('@yahoo/uds-mobile/fonts/yas-extended-bold-italic.otf'),
|
|
44
15
|
require.resolve('@yahoo/uds-mobile/fonts/yahoo-sans-condensed-regular.otf'),
|
|
45
|
-
require.resolve('@yahoo/uds-mobile/fonts/
|
|
46
|
-
require.resolve('@yahoo/uds-mobile/fonts/
|
|
47
|
-
require.resolve('@yahoo/uds-mobile/fonts/yas-bold-italic.otf'),
|
|
48
|
-
require.resolve('@yahoo/uds-mobile/fonts/centra-no2-book-italic.otf'),
|
|
49
|
-
require.resolve('@yahoo/uds-mobile/fonts/yahoo-sans-light.otf'),
|
|
50
|
-
require.resolve('@yahoo/uds-mobile/fonts/gelica-regular.otf'),
|
|
51
|
-
require.resolve('@yahoo/uds-mobile/fonts/gelica-black.otf'),
|
|
52
|
-
require.resolve('@yahoo/uds-mobile/fonts/yas-extended-light-italic.otf'),
|
|
53
|
-
require.resolve('@yahoo/uds-mobile/fonts/gelica-semi-bold.otf'),
|
|
16
|
+
require.resolve('@yahoo/uds-mobile/fonts/yas-medium.otf'),
|
|
17
|
+
require.resolve('@yahoo/uds-mobile/fonts/yahoo-serif-display-extrabold.otf'),
|
|
54
18
|
require.resolve('@yahoo/uds-mobile/fonts/yahoo-sans-regular-italic.otf'),
|
|
55
|
-
require.resolve('@yahoo/uds-mobile/fonts/gelica-light-italic.otf'),
|
|
56
|
-
require.resolve('@yahoo/uds-mobile/fonts/yas-extended-bold.otf'),
|
|
57
|
-
require.resolve('@yahoo/uds-mobile/fonts/gelica-bold.otf'),
|
|
58
|
-
require.resolve('@yahoo/uds-mobile/fonts/yas-condensed-bold-italic.otf'),
|
|
59
|
-
require.resolve('@yahoo/uds-mobile/fonts/yahoo-sans-beta-regular.otf'),
|
|
60
|
-
require.resolve('@yahoo/uds-mobile/fonts/yas-extended-semibold-italic.otf'),
|
|
61
|
-
require.resolve('@yahoo/uds-mobile/fonts/yahoo-serif-text-regular.otf'),
|
|
62
19
|
require.resolve('@yahoo/uds-mobile/fonts/centra-no2-extrabold-italic.otf'),
|
|
63
|
-
require.resolve('@yahoo/uds-mobile/fonts/yahoo-sans-
|
|
64
|
-
require.resolve('@yahoo/uds-mobile/fonts/yahoo-
|
|
65
|
-
require.resolve('@yahoo/uds-mobile/fonts/yas-
|
|
66
|
-
require.resolve('@yahoo/uds-mobile/fonts/yas-
|
|
20
|
+
require.resolve('@yahoo/uds-mobile/fonts/yahoo-sans-extrabold.otf'),
|
|
21
|
+
require.resolve('@yahoo/uds-mobile/fonts/yahoo-serif-display-regular.otf'),
|
|
22
|
+
require.resolve('@yahoo/uds-mobile/fonts/yas-condensed-light.otf'),
|
|
23
|
+
require.resolve('@yahoo/uds-mobile/fonts/yas-light.otf'),
|
|
67
24
|
require.resolve('@yahoo/uds-mobile/fonts/yas-condensed-black.otf'),
|
|
25
|
+
require.resolve('@yahoo/uds-mobile/fonts/gelica-light.otf'),
|
|
26
|
+
require.resolve('@yahoo/uds-mobile/fonts/yahoo-product-sans-medium.otf'),
|
|
27
|
+
require.resolve('@yahoo/uds-mobile/fonts/yas-condensed-semibold.otf'),
|
|
28
|
+
require.resolve('@yahoo/uds-mobile/fonts/yas-condensed-semibold-italic.otf'),
|
|
29
|
+
require.resolve('@yahoo/uds-mobile/fonts/centra-no2-extrabold.otf'),
|
|
30
|
+
require.resolve('@yahoo/uds-mobile/fonts/yahoo-sans-regular.otf'),
|
|
31
|
+
require.resolve('@yahoo/uds-mobile/fonts/centra-no2-medium.otf'),
|
|
32
|
+
require.resolve('@yahoo/uds-mobile/fonts/yahoo-sans-semibold.otf'),
|
|
33
|
+
require.resolve('@yahoo/uds-mobile/fonts/yas-extended-regular-italic.otf'),
|
|
34
|
+
require.resolve('@yahoo/uds-mobile/fonts/gelica-semi-bold.otf'),
|
|
35
|
+
require.resolve('@yahoo/uds-mobile/fonts/yahoo-product-sans-bold.otf'),
|
|
36
|
+
require.resolve('@yahoo/uds-mobile/fonts/yas-condensed-black-italic.otf'),
|
|
37
|
+
require.resolve('@yahoo/uds-mobile/fonts/yas-extended-bold-italic.otf'),
|
|
38
|
+
require.resolve('@yahoo/uds-mobile/fonts/yahoo-product-sans-regular.otf'),
|
|
39
|
+
require.resolve('@yahoo/uds-mobile/fonts/yahoo-sans-black.otf'),
|
|
40
|
+
require.resolve('@yahoo/uds-mobile/fonts/yas-extended-light-italic.otf'),
|
|
68
41
|
require.resolve('@yahoo/uds-mobile/fonts/yas-extended-black.otf'),
|
|
69
|
-
require.resolve('@yahoo/uds-mobile/fonts/yahoo-sans-
|
|
70
|
-
require.resolve('@yahoo/uds-mobile/fonts/yas-light-italic.otf'),
|
|
71
|
-
require.resolve('@yahoo/uds-mobile/fonts/yas-semibold-italic.otf'),
|
|
42
|
+
require.resolve('@yahoo/uds-mobile/fonts/yahoo-sans-beta-medium.otf'),
|
|
72
43
|
require.resolve('@yahoo/uds-mobile/fonts/gelica-extra-light-italic.otf'),
|
|
73
|
-
require.resolve('@yahoo/uds-mobile/fonts/
|
|
74
|
-
require.resolve('@yahoo/uds-mobile/fonts/
|
|
44
|
+
require.resolve('@yahoo/uds-mobile/fonts/yas-extended-bold.otf'),
|
|
45
|
+
require.resolve('@yahoo/uds-mobile/fonts/yahoo-sans-condensed-light.otf'),
|
|
46
|
+
require.resolve('@yahoo/uds-mobile/fonts/yas-medium-italic.otf'),
|
|
75
47
|
require.resolve('@yahoo/uds-mobile/fonts/yas-black.otf'),
|
|
76
|
-
require.resolve('@yahoo/uds-mobile/fonts/yas-
|
|
77
|
-
require.resolve('@yahoo/uds-mobile/fonts/
|
|
78
|
-
require.resolve('@yahoo/uds-mobile/fonts/
|
|
79
|
-
require.resolve('@yahoo/uds-mobile/fonts/
|
|
80
|
-
require.resolve('@yahoo/uds-mobile/fonts/
|
|
48
|
+
require.resolve('@yahoo/uds-mobile/fonts/yas-extended-regular.otf'),
|
|
49
|
+
require.resolve('@yahoo/uds-mobile/fonts/gelica-black.otf'),
|
|
50
|
+
require.resolve('@yahoo/uds-mobile/fonts/yahoo-sans-condensed-bold.otf'),
|
|
51
|
+
require.resolve('@yahoo/uds-mobile/fonts/yahoo-sans-medium.otf'),
|
|
52
|
+
require.resolve('@yahoo/uds-mobile/fonts/yahoo-sans-beta-bold.otf'),
|
|
53
|
+
require.resolve('@yahoo/uds-mobile/fonts/yas-extended-medium.otf'),
|
|
54
|
+
require.resolve('@yahoo/uds-mobile/fonts/yas-extended-light.otf'),
|
|
55
|
+
require.resolve('@yahoo/uds-mobile/fonts/centra-no2-light.otf'),
|
|
56
|
+
require.resolve('@yahoo/uds-mobile/fonts/centra-no2-light-italic.otf'),
|
|
57
|
+
require.resolve('@yahoo/uds-mobile/fonts/yahoo-serif-text-bold.otf'),
|
|
58
|
+
require.resolve('@yahoo/uds-mobile/fonts/yas-semibold.otf'),
|
|
59
|
+
require.resolve('@yahoo/uds-mobile/fonts/centra-no2-hairline-italic.otf'),
|
|
60
|
+
require.resolve('@yahoo/uds-mobile/fonts/centra-no2-book-italic.otf'),
|
|
61
|
+
require.resolve('@yahoo/uds-mobile/fonts/centra-no2-thin.otf'),
|
|
81
62
|
require.resolve('@yahoo/uds-mobile/fonts/yahoo-serif-display-bold.otf'),
|
|
82
|
-
require.resolve('@yahoo/uds-mobile/fonts/
|
|
83
|
-
require.resolve('@yahoo/uds-mobile/fonts/
|
|
63
|
+
require.resolve('@yahoo/uds-mobile/fonts/gelica-medium.otf'),
|
|
64
|
+
require.resolve('@yahoo/uds-mobile/fonts/yas-regular.otf'),
|
|
84
65
|
require.resolve('@yahoo/uds-mobile/fonts/gelica-black-italic.otf'),
|
|
85
|
-
require.resolve('@yahoo/uds-mobile/fonts/
|
|
86
|
-
require.resolve('@yahoo/uds-mobile/fonts/centra-no2-thin-italic.otf'),
|
|
87
|
-
require.resolve('@yahoo/uds-mobile/fonts/yas-semibold.otf'),
|
|
66
|
+
require.resolve('@yahoo/uds-mobile/fonts/centra-no2-black.otf'),
|
|
88
67
|
require.resolve('@yahoo/uds-mobile/fonts/centra-no2-medium-italic.otf'),
|
|
89
|
-
require.resolve('@yahoo/uds-mobile/fonts/
|
|
90
|
-
require.resolve('@yahoo/uds-mobile/fonts/yahoo-
|
|
91
|
-
require.resolve('@yahoo/uds-mobile/fonts/yas-
|
|
68
|
+
require.resolve('@yahoo/uds-mobile/fonts/yahoo-sans-bold.otf'),
|
|
69
|
+
require.resolve('@yahoo/uds-mobile/fonts/yahoo-serif-text-italic.otf'),
|
|
70
|
+
require.resolve('@yahoo/uds-mobile/fonts/yas-condensed-regular-italic.otf'),
|
|
71
|
+
require.resolve('@yahoo/uds-mobile/fonts/yas-semibold-italic.otf'),
|
|
72
|
+
require.resolve('@yahoo/uds-mobile/fonts/yas-condensed-medium.otf'),
|
|
73
|
+
require.resolve('@yahoo/uds-mobile/fonts/yahoo-sans-condensed-black.otf'),
|
|
74
|
+
require.resolve('@yahoo/uds-mobile/fonts/centra-no2-bold.otf'),
|
|
75
|
+
require.resolve('@yahoo/uds-mobile/fonts/yahoo-serif-text-regular.otf'),
|
|
92
76
|
require.resolve('@yahoo/uds-mobile/fonts/yas-extended-medium-italic.otf'),
|
|
93
|
-
require.resolve('@yahoo/uds-mobile/fonts/yas-extended-light.otf'),
|
|
94
|
-
require.resolve('@yahoo/uds-mobile/fonts/gelica-semi-bold-italic.otf'),
|
|
95
77
|
require.resolve('@yahoo/uds-mobile/fonts/yahoo-serif-display-black.otf'),
|
|
96
|
-
require.resolve('@yahoo/uds-mobile/fonts/
|
|
97
|
-
require.resolve('@yahoo/uds-mobile/fonts/
|
|
98
|
-
require.resolve('@yahoo/uds-mobile/fonts/
|
|
99
|
-
require.resolve('@yahoo/uds-mobile/fonts/
|
|
100
|
-
require.resolve('@yahoo/uds-mobile/fonts/
|
|
101
|
-
require.resolve('@yahoo/uds-mobile/fonts/
|
|
102
|
-
require.resolve('@yahoo/uds-mobile/fonts/
|
|
78
|
+
require.resolve('@yahoo/uds-mobile/fonts/yahoo-sans-extralight.otf'),
|
|
79
|
+
require.resolve('@yahoo/uds-mobile/fonts/yas-extended-black-italic.otf'),
|
|
80
|
+
require.resolve('@yahoo/uds-mobile/fonts/gelica-regular.otf'),
|
|
81
|
+
require.resolve('@yahoo/uds-mobile/fonts/yas-extended-semibold.otf'),
|
|
82
|
+
require.resolve('@yahoo/uds-mobile/fonts/yas-condensed-regular.otf'),
|
|
83
|
+
require.resolve('@yahoo/uds-mobile/fonts/centra-no2-bold-italic.otf'),
|
|
84
|
+
require.resolve('@yahoo/uds-mobile/fonts/yas-bold-italic.otf'),
|
|
85
|
+
require.resolve('@yahoo/uds-mobile/fonts/yahoo-sans-italic.otf'),
|
|
86
|
+
require.resolve('@yahoo/uds-mobile/fonts/yahoo-sans-beta-regular.otf'),
|
|
87
|
+
require.resolve('@yahoo/uds-mobile/fonts/gelica-semi-bold-italic.otf'),
|
|
88
|
+
require.resolve('@yahoo/uds-mobile/fonts/gelica-extra-light.otf'),
|
|
89
|
+
require.resolve('@yahoo/uds-mobile/fonts/yas-condensed-light-italic.otf'),
|
|
90
|
+
require.resolve('@yahoo/uds-mobile/fonts/yahoo-sans-condensed-medium.otf'),
|
|
91
|
+
require.resolve('@yahoo/uds-mobile/fonts/yas-condensed-bold.otf'),
|
|
92
|
+
require.resolve('@yahoo/uds-mobile/fonts/centra-no2-book.otf'),
|
|
93
|
+
require.resolve('@yahoo/uds-mobile/fonts/centra-no2-thin-italic.otf'),
|
|
94
|
+
require.resolve('@yahoo/uds-mobile/fonts/yas-black-italic.otf'),
|
|
95
|
+
require.resolve('@yahoo/uds-mobile/fonts/yas-bold.otf'),
|
|
96
|
+
require.resolve('@yahoo/uds-mobile/fonts/centra-no2-hairline.otf'),
|
|
97
|
+
require.resolve('@yahoo/uds-mobile/fonts/gelica-regular-italic.otf'),
|
|
103
98
|
require.resolve('@yahoo/uds-mobile/fonts/inter-light.ttf'),
|
|
104
|
-
require.resolve('@yahoo/uds-mobile/fonts/yahoo-product-sans-extended-
|
|
105
|
-
require.resolve('@yahoo/uds-mobile/fonts/
|
|
106
|
-
require.resolve('@yahoo/uds-mobile/fonts/
|
|
107
|
-
require.resolve('@yahoo/uds-mobile/fonts/
|
|
108
|
-
require.resolve('@yahoo/uds-mobile/fonts/
|
|
99
|
+
require.resolve('@yahoo/uds-mobile/fonts/yahoo-product-sans-extended-bold.ttf'),
|
|
100
|
+
require.resolve('@yahoo/uds-mobile/fonts/yahoo-serif-text-bold-italic.ttf'),
|
|
101
|
+
require.resolve('@yahoo/uds-mobile/fonts/yahoo-sans-cr4-medium.ttf'),
|
|
102
|
+
require.resolve('@yahoo/uds-mobile/fonts/roboto-mono-bold-italic.ttf'),
|
|
103
|
+
require.resolve('@yahoo/uds-mobile/fonts/inter-medium.ttf'),
|
|
109
104
|
require.resolve('@yahoo/uds-mobile/fonts/yahoo-product-sans-extended-bold-italic.ttf'),
|
|
110
|
-
require.resolve('@yahoo/uds-mobile/fonts/
|
|
111
|
-
require.resolve('@yahoo/uds-mobile/fonts/roboto-mono-thin.ttf'),
|
|
105
|
+
require.resolve('@yahoo/uds-mobile/fonts/inter-extra-light.ttf'),
|
|
112
106
|
require.resolve('@yahoo/uds-mobile/fonts/yahoo-product-sans-extended-black-italic.ttf'),
|
|
113
|
-
require.resolve('@yahoo/uds-mobile/fonts/
|
|
114
|
-
require.resolve('@yahoo/uds-mobile/fonts/
|
|
115
|
-
require.resolve('@yahoo/uds-mobile/fonts/yahoo-sans-
|
|
107
|
+
require.resolve('@yahoo/uds-mobile/fonts/inter-bold.ttf'),
|
|
108
|
+
require.resolve('@yahoo/uds-mobile/fonts/roboto-mono-thin-italic.ttf'),
|
|
109
|
+
require.resolve('@yahoo/uds-mobile/fonts/yahoo-product-sans-extended-medium.ttf'),
|
|
116
110
|
require.resolve('@yahoo/uds-mobile/fonts/inter-thin.ttf'),
|
|
117
|
-
require.resolve('@yahoo/uds-mobile/fonts/inter-semi-bold.ttf'),
|
|
118
|
-
require.resolve('@yahoo/uds-mobile/fonts/roboto-mono-bold-italic.ttf'),
|
|
119
|
-
require.resolve('@yahoo/uds-mobile/fonts/inter-extra-bold.ttf'),
|
|
120
|
-
require.resolve('@yahoo/uds-mobile/fonts/yahoo-product-sans-extended-medium-italic.ttf'),
|
|
121
|
-
require.resolve('@yahoo/uds-mobile/fonts/roboto-mono-medium-italic.ttf'),
|
|
122
|
-
require.resolve('@yahoo/uds-mobile/fonts/roboto-mono-regular.ttf'),
|
|
123
|
-
require.resolve('@yahoo/uds-mobile/fonts/yahoo-product-sans-extended-regular.ttf'),
|
|
124
|
-
require.resolve('@yahoo/uds-mobile/fonts/yahoo-product-sans-extended-bold.ttf'),
|
|
125
111
|
require.resolve('@yahoo/uds-mobile/fonts/yahoo-sans-cr4-regular.ttf'),
|
|
126
|
-
require.resolve('@yahoo/uds-mobile/fonts/inter-regular.ttf'),
|
|
127
112
|
require.resolve('@yahoo/uds-mobile/fonts/yahoo-sans-cr4-bold.ttf'),
|
|
113
|
+
require.resolve('@yahoo/uds-mobile/fonts/yahoo-product-sans-extended-semibold-italic.ttf'),
|
|
114
|
+
require.resolve('@yahoo/uds-mobile/fonts/roboto-mono-regular.ttf'),
|
|
115
|
+
require.resolve('@yahoo/uds-mobile/fonts/inter-regular.ttf'),
|
|
116
|
+
require.resolve('@yahoo/uds-mobile/fonts/uds-icons.ttf'),
|
|
117
|
+
require.resolve('@yahoo/uds-mobile/fonts/yahoo-product-sans-extended-semibold.ttf'),
|
|
118
|
+
require.resolve('@yahoo/uds-mobile/fonts/roboto-mono-regular-italic.ttf'),
|
|
128
119
|
require.resolve('@yahoo/uds-mobile/fonts/roboto-mono-light-italic.ttf'),
|
|
129
|
-
require.resolve('@yahoo/uds-mobile/fonts/
|
|
120
|
+
require.resolve('@yahoo/uds-mobile/fonts/roboto-mono-thin.ttf'),
|
|
130
121
|
require.resolve('@yahoo/uds-mobile/fonts/yahoo-product-sans-extended-black.ttf'),
|
|
131
|
-
require.resolve('@yahoo/uds-mobile/fonts/
|
|
132
|
-
require.resolve('@yahoo/uds-mobile/fonts/roboto-mono-
|
|
122
|
+
require.resolve('@yahoo/uds-mobile/fonts/yahoo-product-sans-extended-regular.ttf'),
|
|
123
|
+
require.resolve('@yahoo/uds-mobile/fonts/roboto-mono-medium.ttf'),
|
|
124
|
+
require.resolve('@yahoo/uds-mobile/fonts/yahoo-sans-condensed-xbold.ttf'),
|
|
125
|
+
require.resolve('@yahoo/uds-mobile/fonts/yahoo-product-sans-extended-light-italic.ttf'),
|
|
126
|
+
require.resolve('@yahoo/uds-mobile/fonts/roboto-mono-bold.ttf'),
|
|
127
|
+
require.resolve('@yahoo/uds-mobile/fonts/inter-semi-bold.ttf'),
|
|
128
|
+
require.resolve('@yahoo/uds-mobile/fonts/roboto-mono-light.ttf'),
|
|
129
|
+
require.resolve('@yahoo/uds-mobile/fonts/inter-black.ttf'),
|
|
130
|
+
require.resolve('@yahoo/uds-mobile/fonts/yahoo-product-sans-extended-medium-italic.ttf'),
|
|
133
131
|
require.resolve('@yahoo/uds-mobile/fonts/yahoo-product-sans-extended-light.ttf'),
|
|
134
|
-
require.resolve('@yahoo/uds-mobile/fonts/
|
|
132
|
+
require.resolve('@yahoo/uds-mobile/fonts/inter-extra-bold.ttf'),
|
|
133
|
+
require.resolve('@yahoo/uds-mobile/fonts/roboto-mono-medium-italic.ttf'),
|
|
134
|
+
require.resolve('@yahoo/uds-mobile/fonts/yahoo-product-sans-extended-regular-italic.ttf')
|
|
135
135
|
];
|
|
136
136
|
|
|
137
137
|
module.exports.fontAliasToPostscript = {
|
|
138
138
|
"uds-icons": "uds-icons",
|
|
139
|
-
"centra-no2-hairline": "CentraNo2-Hairline",
|
|
140
|
-
"centra-no2-extrabold": "CentraNo2-ExtraBold",
|
|
141
139
|
"yas-regular-italic": "YASans-Italic",
|
|
142
|
-
"yas-regular": "YASans",
|
|
143
140
|
"centra-no2-black-italic": "CentraNo2-BlackItalic",
|
|
144
|
-
"
|
|
145
|
-
"
|
|
146
|
-
"yas-
|
|
147
|
-
"
|
|
148
|
-
"
|
|
149
|
-
"yahoo-product-sans-bold": "YahooProductSans-Bold",
|
|
150
|
-
"yas-condensed-semibold-italic": "YASansCn-SmBdItalic",
|
|
151
|
-
"yahoo-product-sans-medium": "YahooProductSans-Medium",
|
|
141
|
+
"yas-condensed-medium-italic": "YASansCn-MediumItalic",
|
|
142
|
+
"yahoo-sans-light": "YahooSans-Light",
|
|
143
|
+
"yas-light-italic": "YASans-LightItalic",
|
|
144
|
+
"yas-condensed-bold-italic": "YASansCn-BoldItalic",
|
|
145
|
+
"yas-extended-semibold-italic": "YASansExt-SmBdItalic",
|
|
152
146
|
"yahoo-serif-display-light": "YahooSerifDisplay-Light",
|
|
153
|
-
"
|
|
154
|
-
"
|
|
155
|
-
"
|
|
156
|
-
"yahoo-serif-display-regular": "YahooSerifDisplay-Regular",
|
|
157
|
-
"centra-no2-bold-italic": "CentraNo2-BoldItalic",
|
|
158
|
-
"gelica-light": "Gelica-Light",
|
|
159
|
-
"yas-extended-semibold": "YASansExt-SmBd",
|
|
160
|
-
"centra-no2-light-italic": "CentraNo2-LightItalic",
|
|
161
|
-
"yas-condensed-regular": "YASansCn",
|
|
162
|
-
"centra-no2-hairline-italic": "CentraNo2-HairlineItalic",
|
|
163
|
-
"yahoo-sans-condensed-light": "YahooSansCond-Light",
|
|
164
|
-
"yahoo-serif-text-italic": "YahooSerifText-Italic",
|
|
165
|
-
"yas-condensed-black-italic": "YASansCn-BlackItalic",
|
|
166
|
-
"yahoo-serif-text-bold": "YahooSerifText-Bold",
|
|
167
|
-
"yahoo-serif-display-extrabold": "YahooSerifDisplay-Extrabold",
|
|
168
|
-
"yahoo-sans-bold": "YahooSans-Bold",
|
|
169
|
-
"yahoo-sans-extrabold": "YahooSans-ExtraBold",
|
|
170
|
-
"yas-black-italic": "YASans-BlackItalic",
|
|
171
|
-
"centra-no2-medium": "CentraNo2-Medium",
|
|
172
|
-
"yas-condensed-bold": "YASansCn-Bold",
|
|
173
|
-
"yas-extended-medium": "YASansExt-Medium",
|
|
147
|
+
"gelica-bold": "Gelica-Bold",
|
|
148
|
+
"gelica-light-italic": "Gelica-LightItalic",
|
|
149
|
+
"gelica-bold-italic": "Gelica-BoldItalic",
|
|
174
150
|
"gelica-medium-italic": "Gelica-MediumItalic",
|
|
175
|
-
"yahoo-sans-condensed-medium": "YahooSansCond-Medium",
|
|
176
|
-
"yas-condensed-semibold": "YASansCn-SmBd",
|
|
177
|
-
"yas-condensed-medium": "YASansCn-Medium",
|
|
178
|
-
"yahoo-sans-medium": "YahooSans-Medium",
|
|
179
|
-
"yas-extended-bold-italic": "YASansExt-BoldItalic",
|
|
180
151
|
"yahoo-sans-condensed-regular": "YahooSansCond-Regular",
|
|
181
|
-
"
|
|
182
|
-
"
|
|
183
|
-
"yas-bold-italic": "YASans-BoldItalic",
|
|
184
|
-
"centra-no2-book-italic": "CentraNo2-BookItalic",
|
|
185
|
-
"yahoo-sans-light": "YahooSans-Light",
|
|
186
|
-
"gelica-regular": "Gelica-Regular",
|
|
187
|
-
"gelica-black": "Gelica-Black",
|
|
188
|
-
"yas-extended-light-italic": "YASansExt-LightItalic",
|
|
189
|
-
"gelica-semi-bold": "Gelica-SemiBold",
|
|
152
|
+
"yas-medium": "YASans-Medium",
|
|
153
|
+
"yahoo-serif-display-extrabold": "YahooSerifDisplay-Extrabold",
|
|
190
154
|
"yahoo-sans-regular-italic": "YahooSans-Italic",
|
|
191
|
-
"gelica-light-italic": "Gelica-LightItalic",
|
|
192
|
-
"yas-extended-bold": "YASansExt-Bold",
|
|
193
|
-
"gelica-bold": "Gelica-Bold",
|
|
194
|
-
"yas-condensed-bold-italic": "YASansCn-BoldItalic",
|
|
195
|
-
"yahoo-sans-beta-regular": "YahooCR2BETA-Regular",
|
|
196
|
-
"yas-extended-semibold-italic": "YASansExt-SmBdItalic",
|
|
197
|
-
"yahoo-serif-text-regular": "YahooSerifText-Regular",
|
|
198
155
|
"centra-no2-extrabold-italic": "CentraNo2-ExtraBoldItalic",
|
|
199
|
-
"yahoo-sans-
|
|
200
|
-
"yahoo-
|
|
201
|
-
"yas-
|
|
202
|
-
"yas-
|
|
156
|
+
"yahoo-sans-extrabold": "YahooSans-ExtraBold",
|
|
157
|
+
"yahoo-serif-display-regular": "YahooSerifDisplay-Regular",
|
|
158
|
+
"yas-condensed-light": "YASansCn-Light",
|
|
159
|
+
"yas-light": "YASans-Light",
|
|
203
160
|
"yas-condensed-black": "YASansCn-Black",
|
|
161
|
+
"gelica-light": "Gelica-Light",
|
|
162
|
+
"yahoo-product-sans-medium": "YahooProductSans-Medium",
|
|
163
|
+
"yas-condensed-semibold": "YASansCn-SmBd",
|
|
164
|
+
"yas-condensed-semibold-italic": "YASansCn-SmBdItalic",
|
|
165
|
+
"centra-no2-extrabold": "CentraNo2-ExtraBold",
|
|
166
|
+
"yahoo-sans-regular": "YahooSans-Regular",
|
|
167
|
+
"centra-no2-medium": "CentraNo2-Medium",
|
|
168
|
+
"yahoo-sans-semibold": "YahooSans-Semibold",
|
|
169
|
+
"yas-extended-regular-italic": "YASansExt-Italic",
|
|
170
|
+
"gelica-semi-bold": "Gelica-SemiBold",
|
|
171
|
+
"yahoo-product-sans-bold": "YahooProductSans-Bold",
|
|
172
|
+
"yas-condensed-black-italic": "YASansCn-BlackItalic",
|
|
173
|
+
"yas-extended-bold-italic": "YASansExt-BoldItalic",
|
|
174
|
+
"yahoo-product-sans-regular": "YahooProductSans",
|
|
175
|
+
"yahoo-sans-black": "YahooSans-Black",
|
|
176
|
+
"yas-extended-light-italic": "YASansExt-LightItalic",
|
|
204
177
|
"yas-extended-black": "YASansExt-Black",
|
|
205
|
-
"yahoo-sans-
|
|
206
|
-
"yas-light-italic": "YASans-LightItalic",
|
|
207
|
-
"yas-semibold-italic": "YASans-SmBdItalic",
|
|
178
|
+
"yahoo-sans-beta-medium": "YahooCR2BETA-Medium",
|
|
208
179
|
"gelica-extra-light-italic": "Gelica-ExtraLightItalic",
|
|
209
|
-
"
|
|
210
|
-
"
|
|
180
|
+
"yas-extended-bold": "YASansExt-Bold",
|
|
181
|
+
"yahoo-sans-condensed-light": "YahooSansCond-Light",
|
|
182
|
+
"yas-medium-italic": "YASans-MediumItalic",
|
|
211
183
|
"yas-black": "YASans-Black",
|
|
212
|
-
"yas-
|
|
213
|
-
"
|
|
214
|
-
"
|
|
215
|
-
"
|
|
216
|
-
"
|
|
184
|
+
"yas-extended-regular": "YASansExt",
|
|
185
|
+
"gelica-black": "Gelica-Black",
|
|
186
|
+
"yahoo-sans-condensed-bold": "YahooSansCond-Bold",
|
|
187
|
+
"yahoo-sans-medium": "YahooSans-Medium",
|
|
188
|
+
"yahoo-sans-beta-bold": "YahooCR2BETA-Bold",
|
|
189
|
+
"yas-extended-medium": "YASansExt-Medium",
|
|
190
|
+
"yas-extended-light": "YASansExt-Light",
|
|
191
|
+
"centra-no2-light": "CentraNo2-Light",
|
|
192
|
+
"centra-no2-light-italic": "CentraNo2-LightItalic",
|
|
193
|
+
"yahoo-serif-text-bold": "YahooSerifText-Bold",
|
|
194
|
+
"yas-semibold": "YASans-SmBd",
|
|
195
|
+
"centra-no2-hairline-italic": "CentraNo2-HairlineItalic",
|
|
196
|
+
"centra-no2-book-italic": "CentraNo2-BookItalic",
|
|
197
|
+
"centra-no2-thin": "CentraNo2-Thin",
|
|
217
198
|
"yahoo-serif-display-bold": "YahooSerifDisplay-Bold",
|
|
218
|
-
"
|
|
219
|
-
"
|
|
199
|
+
"gelica-medium": "Gelica-Medium",
|
|
200
|
+
"yas-regular": "YASans",
|
|
220
201
|
"gelica-black-italic": "Gelica-BlackItalic",
|
|
221
|
-
"
|
|
222
|
-
"centra-no2-thin-italic": "CentraNo2-ThinItalic",
|
|
223
|
-
"yas-semibold": "YASans-SmBd",
|
|
202
|
+
"centra-no2-black": "CentraNo2-Black",
|
|
224
203
|
"centra-no2-medium-italic": "CentraNo2-MediumItalic",
|
|
225
|
-
"
|
|
226
|
-
"yahoo-
|
|
227
|
-
"yas-
|
|
204
|
+
"yahoo-sans-bold": "YahooSans-Bold",
|
|
205
|
+
"yahoo-serif-text-italic": "YahooSerifText-Italic",
|
|
206
|
+
"yas-condensed-regular-italic": "YASansCn-Italic",
|
|
207
|
+
"yas-semibold-italic": "YASans-SmBdItalic",
|
|
208
|
+
"yas-condensed-medium": "YASansCn-Medium",
|
|
209
|
+
"yahoo-sans-condensed-black": "YahooSansCond-Black",
|
|
210
|
+
"centra-no2-bold": "CentraNo2-Bold",
|
|
211
|
+
"yahoo-serif-text-regular": "YahooSerifText-Regular",
|
|
228
212
|
"yas-extended-medium-italic": "YASansExt-MediumItalic",
|
|
229
|
-
"yas-extended-light": "YASansExt-Light",
|
|
230
|
-
"gelica-semi-bold-italic": "Gelica-SemiBoldItalic",
|
|
231
213
|
"yahoo-serif-display-black": "YahooSerifDisplay-Black",
|
|
232
|
-
"
|
|
233
|
-
"
|
|
234
|
-
"
|
|
235
|
-
"
|
|
236
|
-
"
|
|
237
|
-
"
|
|
214
|
+
"yahoo-sans-extralight": "YahooSans-ExtraLight",
|
|
215
|
+
"yas-extended-black-italic": "YASansExt-BlackItalic",
|
|
216
|
+
"gelica-regular": "Gelica-Regular",
|
|
217
|
+
"yas-extended-semibold": "YASansExt-SmBd",
|
|
218
|
+
"yas-condensed-regular": "YASansCn",
|
|
219
|
+
"centra-no2-bold-italic": "CentraNo2-BoldItalic",
|
|
220
|
+
"yas-bold-italic": "YASans-BoldItalic",
|
|
221
|
+
"yahoo-sans-italic": "YahooSans-Italic",
|
|
222
|
+
"yahoo-sans-beta-regular": "YahooCR2BETA-Regular",
|
|
223
|
+
"gelica-semi-bold-italic": "Gelica-SemiBoldItalic",
|
|
224
|
+
"gelica-extra-light": "Gelica-ExtraLight",
|
|
225
|
+
"yas-condensed-light-italic": "YASansCn-LightItalic",
|
|
226
|
+
"yahoo-sans-condensed-medium": "YahooSansCond-Medium",
|
|
227
|
+
"yas-condensed-bold": "YASansCn-Bold",
|
|
228
|
+
"centra-no2-book": "CentraNo2-Book",
|
|
229
|
+
"centra-no2-thin-italic": "CentraNo2-ThinItalic",
|
|
230
|
+
"yas-black-italic": "YASans-BlackItalic",
|
|
231
|
+
"yas-bold": "YASans-Bold",
|
|
232
|
+
"centra-no2-hairline": "CentraNo2-Hairline",
|
|
233
|
+
"gelica-regular-italic": "Gelica-Italic",
|
|
238
234
|
"inter-light": "InterVariable-TextLight",
|
|
239
|
-
"yahoo-product-sans-extended-
|
|
240
|
-
"
|
|
241
|
-
"
|
|
242
|
-
"
|
|
243
|
-
"
|
|
235
|
+
"yahoo-product-sans-extended-bold": "YahooSans-Regular",
|
|
236
|
+
"yahoo-serif-text-bold-italic": "YahooSerifText-BoldItalic",
|
|
237
|
+
"yahoo-sans-cr4-medium": "YahooCR4BETA-VF",
|
|
238
|
+
"roboto-mono-bold-italic": "RobotoMono-BoldItalic",
|
|
239
|
+
"inter-medium": "InterVariable-TextMedium",
|
|
244
240
|
"yahoo-product-sans-extended-bold-italic": "YahooSans-Regular",
|
|
245
|
-
"
|
|
246
|
-
"roboto-mono-thin": "RobotoMono-Thin",
|
|
241
|
+
"inter-extra-light": "InterVariable-TextExtraLight",
|
|
247
242
|
"yahoo-product-sans-extended-black-italic": "YahooSans-Regular",
|
|
248
|
-
"
|
|
249
|
-
"
|
|
250
|
-
"yahoo-sans-
|
|
243
|
+
"inter-bold": "InterVariable-TextBold",
|
|
244
|
+
"roboto-mono-thin-italic": "RobotoMono-ThinItalic",
|
|
245
|
+
"yahoo-product-sans-extended-medium": "YahooSans-Regular",
|
|
251
246
|
"inter-thin": "InterVariable-TextThin",
|
|
252
|
-
"inter-semi-bold": "InterVariable-TextSemiBold",
|
|
253
|
-
"roboto-mono-bold-italic": "RobotoMono-BoldItalic",
|
|
254
|
-
"inter-extra-bold": "InterVariable-TextExtraBold",
|
|
255
|
-
"yahoo-product-sans-extended-medium-italic": "YahooSans-Regular",
|
|
256
|
-
"roboto-mono-medium-italic": "RobotoMono-MediumItalic",
|
|
257
|
-
"roboto-mono-regular": "RobotoMono-Regular",
|
|
258
|
-
"yahoo-product-sans-extended-regular": "YahooSans-Regular",
|
|
259
|
-
"yahoo-product-sans-extended-bold": "YahooSans-Regular",
|
|
260
247
|
"yahoo-sans-cr4-regular": "YahooCR4BETA-VF",
|
|
261
|
-
"inter-regular": "InterVariable-Text",
|
|
262
248
|
"yahoo-sans-cr4-bold": "YahooCR4BETA-VF",
|
|
249
|
+
"yahoo-product-sans-extended-semibold-italic": "YahooSans-Regular",
|
|
250
|
+
"roboto-mono-regular": "RobotoMono-Regular",
|
|
251
|
+
"inter-regular": "InterVariable-Text",
|
|
252
|
+
"yahoo-product-sans-extended-semibold": "YahooSans-Regular",
|
|
253
|
+
"roboto-mono-regular-italic": "RobotoMono-Italic",
|
|
263
254
|
"roboto-mono-light-italic": "RobotoMono-LightItalic",
|
|
264
|
-
"
|
|
255
|
+
"roboto-mono-thin": "RobotoMono-Thin",
|
|
265
256
|
"yahoo-product-sans-extended-black": "YahooSans-Regular",
|
|
266
|
-
"
|
|
267
|
-
"roboto-mono-
|
|
257
|
+
"yahoo-product-sans-extended-regular": "YahooSans-Regular",
|
|
258
|
+
"roboto-mono-medium": "RobotoMono-Medium",
|
|
259
|
+
"yahoo-sans-condensed-xbold": "YahooSansCond-Bold",
|
|
260
|
+
"yahoo-product-sans-extended-light-italic": "YahooSans-Regular",
|
|
261
|
+
"roboto-mono-bold": "RobotoMono-Bold",
|
|
262
|
+
"inter-semi-bold": "InterVariable-TextSemiBold",
|
|
263
|
+
"roboto-mono-light": "RobotoMono-Light",
|
|
264
|
+
"inter-black": "InterVariable-TextBlack",
|
|
265
|
+
"yahoo-product-sans-extended-medium-italic": "YahooSans-Regular",
|
|
268
266
|
"yahoo-product-sans-extended-light": "YahooSans-Regular",
|
|
269
|
-
"
|
|
267
|
+
"inter-extra-bold": "InterVariable-TextExtraBold",
|
|
268
|
+
"roboto-mono-medium-italic": "RobotoMono-MediumItalic",
|
|
269
|
+
"yahoo-product-sans-extended-regular-italic": "YahooSans-Regular"
|
|
270
270
|
};
|