@team_yumi/ramen 0.4.0-next.20231215-78a9f3f-02a50a4cea7144c11bd875fac9913d8a → 0.4.0-next.20231219-327a2c3-d6b832e2ea82cee8758e4f6c5a5cf8a0

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.
@@ -47,7 +47,7 @@ export interface IProps {
47
47
  */
48
48
  touchable?: boolean;
49
49
  flexWrap?: boolean;
50
- backgroundThone?: (typeof Collections.IBackgroundThone)[number];
50
+ backgroundThone?: (typeof Collections.IBoxBackgroundThone)[number];
51
51
  borderRadius?: (typeof Collections.IRounded)[number];
52
52
  }
53
53
  declare const XBox: React.FC<IProps>;
@@ -21,6 +21,10 @@ export interface IProps {
21
21
  * Size of progress bar and text
22
22
  */
23
23
  size?: (typeof Collections.IProgressBarSize)[number];
24
+ /**
25
+ * Test to be displayed if showProgressNumber is false
26
+ */
27
+ endText?: string;
24
28
  }
25
29
  declare const XProgressBar: React.FC<IProps>;
26
30
  export default XProgressBar;