@butternutbox/pawprint-native 0.10.2 → 0.10.3
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/.turbo/turbo-build.log +7 -19
- package/CHANGELOG.md +6 -0
- package/dist/index.cjs +18 -26
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +12 -26
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/tsup.config.ts +3 -1
- /package/dist/{ibm-plex-sans-condensed-400-normal-HPNYNCMK.ttf → ibm-plex-sans-condensed-400-normal.ttf} +0 -0
- /package/dist/{ibm-plex-sans-condensed-500-normal-A67WOCOE.ttf → ibm-plex-sans-condensed-500-normal.ttf} +0 -0
- /package/dist/{ibm-plex-sans-condensed-600-normal-LVI6BHYG.ttf → ibm-plex-sans-condensed-600-normal.ttf} +0 -0
- /package/dist/{ibm-plex-sans-condensed-700-normal-M7CX52AP.ttf → ibm-plex-sans-condensed-700-normal.ttf} +0 -0
- /package/dist/{ida-narrow-500-normal-QUBTMKIO.ttf → ida-narrow-500-normal.ttf} +0 -0
- /package/dist/{ida-narrow-700-normal-6QL6J2BT.ttf → ida-narrow-700-normal.ttf} +0 -0
package/dist/index.js
CHANGED
|
@@ -3,6 +3,12 @@ import { Brand, Theme, DEFAULT_THEME_OPTIONS, THEME_OPTIONS_MAP, tokens } from '
|
|
|
3
3
|
export { tokens } from '@butternutbox/pawprint-tokens';
|
|
4
4
|
import styled50 from '@emotion/native';
|
|
5
5
|
export { default as styled } from '@emotion/native';
|
|
6
|
+
import idaNarrow500 from './ida-narrow-500-normal.ttf';
|
|
7
|
+
import idaNarrow700 from './ida-narrow-700-normal.ttf';
|
|
8
|
+
import ibmPlexSansCondensed400 from './ibm-plex-sans-condensed-400-normal.ttf';
|
|
9
|
+
import ibmPlexSansCondensed500 from './ibm-plex-sans-condensed-500-normal.ttf';
|
|
10
|
+
import ibmPlexSansCondensed600 from './ibm-plex-sans-condensed-600-normal.ttf';
|
|
11
|
+
import ibmPlexSansCondensed700 from './ibm-plex-sans-condensed-700-normal.ttf';
|
|
6
12
|
import React65, { createContext, forwardRef, useRef, useEffect, useState, useCallback, useMemo, useContext } from 'react';
|
|
7
13
|
import { jsx, jsxs, Fragment } from 'react/jsx-runtime';
|
|
8
14
|
import * as AvatarPrimitive from '@rn-primitives/avatar';
|
|
@@ -73,34 +79,14 @@ var __async = (__this, __arguments, generator) => {
|
|
|
73
79
|
step((generator = generator.apply(__this, __arguments)).next());
|
|
74
80
|
});
|
|
75
81
|
};
|
|
76
|
-
|
|
77
|
-
// src/fonts/ida-narrow-500-normal.ttf
|
|
78
|
-
var ida_narrow_500_normal_default = "./ida-narrow-500-normal-QUBTMKIO.ttf";
|
|
79
|
-
|
|
80
|
-
// src/fonts/ida-narrow-700-normal.ttf
|
|
81
|
-
var ida_narrow_700_normal_default = "./ida-narrow-700-normal-6QL6J2BT.ttf";
|
|
82
|
-
|
|
83
|
-
// src/fonts/ibm-plex-sans-condensed-400-normal.ttf
|
|
84
|
-
var ibm_plex_sans_condensed_400_normal_default = "./ibm-plex-sans-condensed-400-normal-HPNYNCMK.ttf";
|
|
85
|
-
|
|
86
|
-
// src/fonts/ibm-plex-sans-condensed-500-normal.ttf
|
|
87
|
-
var ibm_plex_sans_condensed_500_normal_default = "./ibm-plex-sans-condensed-500-normal-A67WOCOE.ttf";
|
|
88
|
-
|
|
89
|
-
// src/fonts/ibm-plex-sans-condensed-600-normal.ttf
|
|
90
|
-
var ibm_plex_sans_condensed_600_normal_default = "./ibm-plex-sans-condensed-600-normal-LVI6BHYG.ttf";
|
|
91
|
-
|
|
92
|
-
// src/fonts/ibm-plex-sans-condensed-700-normal.ttf
|
|
93
|
-
var ibm_plex_sans_condensed_700_normal_default = "./ibm-plex-sans-condensed-700-normal-M7CX52AP.ttf";
|
|
94
|
-
|
|
95
|
-
// src/fonts/index.ts
|
|
96
82
|
var BRAND_FONTS = {
|
|
97
83
|
[Brand.Butternutbox]: {
|
|
98
|
-
"IdaNarrow-Medium":
|
|
99
|
-
"IdaNarrow-Bold":
|
|
100
|
-
"IBMPlexSansCondensed-Regular":
|
|
101
|
-
"IBMPlexSansCondensed-Medium":
|
|
102
|
-
"IBMPlexSansCondensed-SemiBold":
|
|
103
|
-
"IBMPlexSansCondensed-Bold":
|
|
84
|
+
"IdaNarrow-Medium": idaNarrow500,
|
|
85
|
+
"IdaNarrow-Bold": idaNarrow700,
|
|
86
|
+
"IBMPlexSansCondensed-Regular": ibmPlexSansCondensed400,
|
|
87
|
+
"IBMPlexSansCondensed-Medium": ibmPlexSansCondensed500,
|
|
88
|
+
"IBMPlexSansCondensed-SemiBold": ibmPlexSansCondensed600,
|
|
89
|
+
"IBMPlexSansCondensed-Bold": ibmPlexSansCondensed700
|
|
104
90
|
}
|
|
105
91
|
};
|
|
106
92
|
var FONT_MAP = {
|