@team_yumi/ramen 1.0.2-next.20240312-4b40db1-a36bf284a8e6971436a308865655559a → 1.0.2-next.20240312-58660e7-f453a2c3c47743b5ae683f0d579e7ee0
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/index.css +76 -13
- package/index.js +2 -2
- package/package.json +1 -1
- package/src/components/core/x-image-preview/root.d.ts +2 -0
- package/src/components/core/x-input/root.d.ts +1 -0
- package/src/components/mobile/x-card-approve/root.d.ts +1 -1
- package/src/components/mobile/x-select/root.d.ts +1 -0
- package/src/components/mobile/x-select-multiple/root.d.ts +2 -0
- package/src/models/Collections/ISelectBorderType.d.ts +1 -0
- package/src/models/Collections/ISelectManyModalSize.d.ts +1 -0
- package/src/models/Collections/ISelectModalSize.d.ts +1 -1
- package/src/models/Collections/ISelectMultipleBorderType.d.ts +1 -0
- package/src/models/Collections/index.d.ts +4 -1
package/package.json
CHANGED
|
@@ -5,6 +5,8 @@ export interface IProps {
|
|
|
5
5
|
border?: (typeof Collections.IBorder)[number];
|
|
6
6
|
rounded?: (typeof Collections.IRounded)[number];
|
|
7
7
|
showExpandIcon?: boolean;
|
|
8
|
+
default?: string;
|
|
9
|
+
disabled?: boolean;
|
|
8
10
|
}
|
|
9
11
|
declare const XImagePreview: React.FC<IProps>;
|
|
10
12
|
export default XImagePreview;
|
|
@@ -16,10 +16,12 @@ export interface IProps {
|
|
|
16
16
|
defaultValues?: string[];
|
|
17
17
|
okText?: string;
|
|
18
18
|
options: XSelectMultipleOption[];
|
|
19
|
+
borderType?: (typeof Collections.ISelectMultipleBorderType)[number];
|
|
19
20
|
size?: (typeof Collections.ISelectSize)[number];
|
|
20
21
|
icon?: (typeof Collections.IIcon)[number];
|
|
21
22
|
disabled?: boolean;
|
|
22
23
|
hasError?: boolean;
|
|
24
|
+
modalSize?: (typeof Collections.ISelectManyModalSize)[number];
|
|
23
25
|
onChange?: (values: XSelectMultipleOption[]) => void;
|
|
24
26
|
showCounter?: boolean;
|
|
25
27
|
showSelecteds?: boolean;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const ISelectBorderType: readonly ["shadow", "solid", "dashed", "gradient"];
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const ISelectManyModalSize: readonly ["xs", "s", "m", "l", "xl", "auto"];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const ISelectModalSize: readonly ["xs", "s", "m", "l", "xl"];
|
|
1
|
+
export declare const ISelectModalSize: readonly ["xs", "s", "m", "l", "xl", "auto"];
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const ISelectMultipleBorderType: readonly ["shadow", "solid", "dashed", "gradient"];
|
|
@@ -103,4 +103,7 @@ import { ISymbolSize } from './ISymbolSize';
|
|
|
103
103
|
import { IIconSize } from './IIconSize';
|
|
104
104
|
import { IModalSize } from './IModalSize';
|
|
105
105
|
import { IIconsAndSymbols } from './IIconsAndSymbols';
|
|
106
|
-
|
|
106
|
+
import { ISelectBorderType } from './ISelectBorderType';
|
|
107
|
+
import { ISelectMultipleBorderType } from './ISelectMultipleBorderType';
|
|
108
|
+
import { ISelectManyModalSize } from './ISelectManyModalSize';
|
|
109
|
+
export { 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, };
|