@audira/carbon-react-native 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. package/lib/commonjs/carbon-style-sheet/g/font.js +6 -6
  2. package/lib/commonjs/carbon-style-sheet/g/font.js.map +1 -1
  3. package/lib/commonjs/carbon-style-sheet/g/spacing.js +1 -1
  4. package/lib/commonjs/carbon-style-sheet/g/typography.js +1 -1
  5. package/lib/commonjs/carbon-style-sheet/g-object/font.js +4 -4
  6. package/lib/commonjs/carbon-style-sheet/g-object/font.js.map +1 -1
  7. package/lib/commonjs/carbon-style-sheet/g-object/spacing.js +1 -1
  8. package/lib/commonjs/carbon-style-sheet/g-object/typography.js +1 -1
  9. package/lib/commonjs/components/text/Text.js +1 -1
  10. package/lib/commonjs/components/text/Text.js.map +1 -1
  11. package/lib/module/carbon-style-sheet/g/font.js +4 -4
  12. package/lib/module/carbon-style-sheet/g/font.js.map +1 -1
  13. package/lib/module/carbon-style-sheet/g/spacing.js +1 -1
  14. package/lib/module/carbon-style-sheet/g/typography.js +1 -1
  15. package/lib/module/carbon-style-sheet/g-object/font.js +3 -3
  16. package/lib/module/carbon-style-sheet/g-object/font.js.map +1 -1
  17. package/lib/module/carbon-style-sheet/g-object/spacing.js +1 -1
  18. package/lib/module/carbon-style-sheet/g-object/typography.js +1 -1
  19. package/lib/module/components/text/Text.js +1 -1
  20. package/lib/module/components/text/Text.js.map +1 -1
  21. package/lib/typescript/commonjs/carbon-style-sheet/g/font.d.ts +2 -2
  22. package/lib/typescript/commonjs/carbon-style-sheet/g/font.d.ts.map +1 -1
  23. package/lib/typescript/commonjs/carbon-style-sheet/g-object/font.d.ts +2 -2
  24. package/lib/typescript/commonjs/carbon-style-sheet/g-object/font.d.ts.map +1 -1
  25. package/lib/typescript/module/carbon-style-sheet/g/font.d.ts +2 -2
  26. package/lib/typescript/module/carbon-style-sheet/g/font.d.ts.map +1 -1
  27. package/lib/typescript/module/carbon-style-sheet/g-object/font.d.ts +2 -2
  28. package/lib/typescript/module/carbon-style-sheet/g-object/font.d.ts.map +1 -1
  29. package/lib/typescript/tsconfig.tsbuildinfo +1 -1
  30. package/package.json +1 -1
  31. package/src/carbon-style-sheet/g/font.ts +4 -4
  32. package/src/carbon-style-sheet/g/spacing.ts +1 -1
  33. package/src/carbon-style-sheet/g/typography.ts +1 -1
  34. package/src/carbon-style-sheet/g-object/font.ts +3 -3
  35. package/src/carbon-style-sheet/g-object/spacing.ts +1 -1
  36. package/src/carbon-style-sheet/g-object/typography.ts +1 -1
  37. package/src/components/text/Text.tsx +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@audira/carbon-react-native",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "license": "MIT",
5
5
  "homepage": "https://rakadoank.github.io/carbon-react-native",
6
6
  "repository": "https://github.com/RakaDoank/carbon-react-native",
@@ -1,5 +1,5 @@
1
1
  // Generated
2
- // Fri, 13 Mar 2026 18:21:07 GMT
2
+ // Fri, 13 Mar 2026 18:42:02 GMT
3
3
 
4
4
  // To support cross platforms, we are mapping the `fontFamily` value to its PostScript name,
5
5
  // instead of the `fontWeight` number with a single font family name like in Web// Giving a `fontWeight` number will not work.
@@ -44,9 +44,9 @@ export const { font_regular } = StyleSheet.create({
44
44
  fontFamily: "IBMPlexSans-Regular",
45
45
  } as const,
46
46
  })
47
- export const { font_regular_italic } = StyleSheet.create({
48
- font_regular_italic: {
49
- fontFamily: "IBMPlexSans-Regular-Italic",
47
+ export const { font_italic } = StyleSheet.create({
48
+ font_italic: {
49
+ fontFamily: "IBMPlexSans-Italic",
50
50
  } as const,
51
51
  })
52
52
  export const { font_medium } = StyleSheet.create({
@@ -1,5 +1,5 @@
1
1
  // Generated
2
- // Fri, 13 Mar 2026 18:21:07 GMT
2
+ // Fri, 13 Mar 2026 18:42:02 GMT
3
3
 
4
4
  import {
5
5
  StyleSheet,
@@ -1,5 +1,5 @@
1
1
  // Generated
2
- // Fri, 13 Mar 2026 18:21:07 GMT
2
+ // Fri, 13 Mar 2026 18:42:02 GMT
3
3
 
4
4
  import {
5
5
  StyleSheet,
@@ -1,5 +1,5 @@
1
1
  // Generated
2
- // Fri, 13 Mar 2026 18:21:07 GMT
2
+ // Fri, 13 Mar 2026 18:42:02 GMT
3
3
 
4
4
  // To support cross platforms, we are mapping the `fontFamily` value to its PostScript name,
5
5
  // instead of the `fontWeight` number with a single font family name like in Web// Giving a `fontWeight` number will not work.
@@ -37,8 +37,8 @@ export const font_regular = {
37
37
  fontFamily: "IBMPlexSans-Regular",
38
38
  } as const satisfies TextStyle
39
39
 
40
- export const font_regular_italic = {
41
- fontFamily: "IBMPlexSans-Regular-Italic",
40
+ export const font_italic = {
41
+ fontFamily: "IBMPlexSans-Italic",
42
42
  } as const satisfies TextStyle
43
43
 
44
44
  export const font_medium = {
@@ -1,5 +1,5 @@
1
1
  // Generated
2
- // Fri, 13 Mar 2026 18:21:07 GMT
2
+ // Fri, 13 Mar 2026 18:42:02 GMT
3
3
 
4
4
  import type {
5
5
  ViewStyle,
@@ -1,5 +1,5 @@
1
1
  // Generated
2
- // Fri, 13 Mar 2026 18:21:07 GMT
2
+ // Fri, 13 Mar 2026 18:42:02 GMT
3
3
 
4
4
  import type {
5
5
  TextStyle,
@@ -92,7 +92,7 @@ const
92
92
  100: CarbonStyleSheet.g.font_thin_italic,
93
93
  200: CarbonStyleSheet.g.font_extralight_italic,
94
94
  300: CarbonStyleSheet.g.font_light_italic,
95
- 400: CarbonStyleSheet.g.font_regular_italic,
95
+ 400: CarbonStyleSheet.g.font_italic,
96
96
  500: CarbonStyleSheet.g.font_medium_italic,
97
97
  600: CarbonStyleSheet.g.font_semibold_italic,
98
98
  700: CarbonStyleSheet.g.font_bold_italic,