@team_yumi/ramen 0.3.3-next.20231114-689226b-ebc0f128faaa04d4dce2be33f6118449 → 0.4.0-next.20231114-7a39995-ba44c6e58b36a851121609c1a68edff5
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/components/mobile/xcard-approve/index.d.ts +2 -0
- package/components/mobile/xcard-approve/root.d.ts +34 -0
- package/components/web/xconfirm-modal/root.d.ts +1 -0
- package/index.js +1 -1
- package/index.mobile.d.ts +1 -0
- package/models/Collections/ICardApproveBorder.d.ts +1 -0
- package/models/Collections/index.d.ts +2 -1
- package/package.json +1 -1
package/index.mobile.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ import { XImageUploaderFileData } from '@yumi/ximage-uploader';
|
|
|
4
4
|
import { XImageDownloaderFileData } from '@yumi/ximage-downloader';
|
|
5
5
|
declare const _default: {
|
|
6
6
|
XEmptyState: import("react").FC<import("./components/mobile/xempty-state/root").IProps>;
|
|
7
|
+
XCardApprove: import("react").FC<import("./components/mobile/xcard-approve/root").IProps>;
|
|
7
8
|
XHeader: import("react").FC<import("./components/mobile/xheader/root").IProps>;
|
|
8
9
|
XDatepicker: import("react").FC<import("./components/mobile/xdatepicker/root").IProps>;
|
|
9
10
|
XDatepickerInput: import("react").FC<import("./components/mobile/xdatepicker-input/root").IProps>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const ICardApproveBorder: readonly ["shadow", "solid"];
|
|
@@ -84,5 +84,6 @@ import { IProgressBarSize } from './IProgressBarSize';
|
|
|
84
84
|
import { IDecisionSize } from './IDecisionSize';
|
|
85
85
|
import { ICardScanSize } from './ICardScanSize';
|
|
86
86
|
import { ITagStateColor } from './ITagStateColor';
|
|
87
|
+
import { ICardApproveBorder } from './ICardApproveBorder';
|
|
87
88
|
import { IEmptyStateType } from './IEmptyStateType';
|
|
88
|
-
export { 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, 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, IDecisionSize, };
|
|
89
|
+
export { 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, 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, IDecisionSize, };
|
package/package.json
CHANGED