@team_yumi/ramen 1.0.2-next.20240312-15487b4-3b73b7e7bb6f280b757ac31c5a1c5690 → 1.0.2-next.20240312-d92345b-d2f433d07231b93df9b25a775d0ab69a
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 +69 -11
- package/index.js +2 -2
- package/package.json +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
|
@@ -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, };
|