@team_yumi/ramen 0.4.0-next.20231122-6c23a89-c587da26d90e05e962417adff5551535 → 0.4.0-next.20231123-b5f5bca-2ffdba989b40213ee2c85fa43e56dd4f
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/core/xbox/root.d.ts +2 -0
- package/components/core/xcard/root.d.ts +2 -0
- package/css/size.css +4 -0
- package/index.css +136 -1
- package/index.js +2 -2
- package/models/Collections/IBackgroundThone.d.ts +1 -0
- package/models/Collections/IBorderColor.d.ts +1 -0
- package/models/Collections/IBorderSize.d.ts +1 -0
- package/models/Collections/ITextColorThone.d.ts +1 -1
- package/models/Collections/index.d.ts +4 -1
- package/package.json +1 -1
- package/themes/default.theme.css +12 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const IBackgroundThone: readonly ["darkest", "medium", "dim", "lightest", "light", "dark"];
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const IBorderColor: readonly ["default", "black", "gray", "green", "sky-blue", "orange", "red", "purple", "pink", "green-check", "red-refuse", "yellow", "turquoise"];
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const IBorderSize: readonly ["default", "s", "m"];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const ITextColorThone: readonly ["darkest", "medium", "dim", "lightest"];
|
|
1
|
+
export declare const ITextColorThone: readonly ["darkest", "medium", "dim", "lightest", "light", "dark"];
|
|
@@ -87,4 +87,7 @@ import { ITagStateColor } from './ITagStateColor';
|
|
|
87
87
|
import { IIconColor } from './IIconColor';
|
|
88
88
|
import { ICardApproveBorder } from './ICardApproveBorder';
|
|
89
89
|
import { IEmptyStateType } from './IEmptyStateType';
|
|
90
|
-
|
|
90
|
+
import { IBackgroundThone } from './IBackgroundThone';
|
|
91
|
+
import { IBorderColor } from './IBorderColor';
|
|
92
|
+
import { IBorderSize } from './IBorderSize';
|
|
93
|
+
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, IIconColor, IBackgroundThone, IBorderColor, IBorderSize };
|
package/package.json
CHANGED
package/themes/default.theme.css
CHANGED
|
@@ -195,4 +195,16 @@
|
|
|
195
195
|
/**
|
|
196
196
|
* @tokens-end
|
|
197
197
|
*/
|
|
198
|
+
|
|
199
|
+
|
|
200
|
+
--xcard-border-color-green: #11A279;
|
|
201
|
+
--xcard-border-color-sky-blue: #4A96FF;
|
|
202
|
+
--xcard-border-color-orange: #FF953B;
|
|
203
|
+
--xcard-border-color-red: #EB4849;
|
|
204
|
+
--xcard-border-color-purple: #4D54C8;
|
|
205
|
+
--xcard-border-color-pink: #F15DDB;
|
|
206
|
+
--xcard-border-color-green-check: #2B994C;
|
|
207
|
+
--xcard-border-color-red-refuse: #DD4242;
|
|
208
|
+
--xcard-border-color-yellow: #FFD65A;
|
|
209
|
+
--xcard-border-color-turquoise: #2ddfa6;
|
|
198
210
|
}
|