@team_yumi/ramen 1.2.3-next.20250218-f7239e2-3266afaa6ee8bb48ac2422b601729b06 → 1.2.3-next.20250225-a0ef025-71790a7cc7100457696f9bcca433d4fb
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/package.json
CHANGED
|
@@ -13,6 +13,10 @@ export interface IProps {
|
|
|
13
13
|
* Size of progress bar and text
|
|
14
14
|
*/
|
|
15
15
|
size?: (typeof Collections.IProgressBarSize)[number];
|
|
16
|
+
/**
|
|
17
|
+
* Set style for bar 'success', 'info', 'warning', 'error'
|
|
18
|
+
*/
|
|
19
|
+
color?: (typeof Collections.IProgressBarColor)[number];
|
|
16
20
|
}
|
|
17
21
|
declare const XBar: React.FC<IProps>;
|
|
18
22
|
export default XBar;
|
|
@@ -37,6 +37,10 @@ export interface IProps {
|
|
|
37
37
|
* Additional description of the progress.
|
|
38
38
|
*/
|
|
39
39
|
progressDescription?: string;
|
|
40
|
+
/**
|
|
41
|
+
* Set style for bar 'success', 'info', 'warning', 'error'
|
|
42
|
+
*/
|
|
43
|
+
color?: (typeof Collections.IProgressBarColor)[number];
|
|
40
44
|
}
|
|
41
45
|
declare const XProgressBar: React.FC<IProps>;
|
|
42
46
|
export default XProgressBar;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const IProgressBarColor: readonly ["success", "info", "warning", "error"];
|
|
@@ -112,4 +112,5 @@ import { IStoreSelectorSize } from './IStoreSelectorSize';
|
|
|
112
112
|
import { ICardProgressSize } from './ICardProgressSize';
|
|
113
113
|
import { IDisplay } from './IDisplay';
|
|
114
114
|
import { ITooltipShowOn } from './ITooltipShowOn';
|
|
115
|
-
|
|
115
|
+
import { IProgressBarColor } from './IProgressBarColor';
|
|
116
|
+
export { ITooltipShowOn, IProgressBarColor, IDisplay, ICardProgressSize, IStoreSelectorSize, IStoreSelectorLogo, ICardBusinessLogo, ISelectManyModalSize, ISelectBorderType, ISelectMultipleBorderType, IModalSize, IFloatButtonBottom, IBoxBackgroundThone, ICardApproveBorder, IEmptyStateType, ITagStateColor, IDatepickerInputType, IDatepickerInputFormat, IDatepickerInputSize, IDatepickerType, IDatepickerFormat, IDatepickerSize, ICardScanSize, ITabsBorder, IHorizontalAlign, IVerticalAlign, IHeight, IWidth, IOverflow, IPadding, IGap, IOrientation, ITextOverflow, ILineHeight, IWeight, IFontSize, ILineClamp, IType, ISize, IIcon, IIconPosition, IBackground, ITagType, ITagSize, ITagBusinessBrand, ITagBusinessSize, IInputSize, IButtonButtonType, IInputType, ITabSize, ITabType, ITabsSize, IFooterAlign, IEmailInputSize, INumberInputSize, IPasswordInputSize, IPhoneInputSize, ISearchInputSize, ITextInputSize, ISelectSize, IAppearance, INotificationType, IPlacement, ITooltipPlacement, IHeaderType, IAlertType, ISelectMultipleSize, ICardSize, IBorderType, ISymbol, IFloatButtonPlacement, IPlacementY, ISnackbarType, ICalendarSize, ITagStateType, ITagStateSize, IState, IVSpaceSize, IBorder, IRounded, ISkeletonType, ISkeletonWidth, ITextAlign, ICountry, ITheme, ICollapseCardSize, ICardImageSize, IInputMode, ISelectModalSize, ITextColorThone, ITagColor, IButtonIconState, ITabBarBorder, IExpanssionModalState, ICardDecisionSize, ICardCounterBorderType, IDecisionItemType, IDecisionItemSize, ICardState, IProgressBarType, IProgressBarSize, IDecisionValueType, IDecisionSize, ITextFieldType, ITextFieldSize, IIconColor, IBackgroundThone, IBorderColor, IBorderSize, IColor, IBottomExpandableState, ISymbolColor, ISymbolSize, IIconSize, IIconsAndSymbols, };
|