@team_yumi/ramen 0.4.0-next.20231115-50d46da-dc15999fb326471d6ef7a1b33366ac97 → 0.4.0-next.20231115-88ccc64-a7303be1787887b45701a951c71f837a
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/xicon/root.d.ts +1 -0
- package/components/web/xcollapse-card/root.d.ts +1 -0
- package/index.css +61 -0
- package/index.js +2 -2
- package/models/Collections/IIconColor.d.ts +1 -0
- package/models/Collections/index.d.ts +2 -1
- package/package.json +1 -1
- package/themes/default.theme.css +18 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const IIconColor: readonly ["black", "gray", "green", "sky-blue", "orange", "red", "purple", "pink", "green-check", "red-refuse", "yellow", "turquoise"];
|
|
@@ -84,6 +84,7 @@ import { IProgressBarSize } from './IProgressBarSize';
|
|
|
84
84
|
import { IDecisionSize } from './IDecisionSize';
|
|
85
85
|
import { ICardScanSize } from './ICardScanSize';
|
|
86
86
|
import { ITagStateColor } from './ITagStateColor';
|
|
87
|
+
import { IIconColor } from './IIconColor';
|
|
87
88
|
import { ICardApproveBorder } from './ICardApproveBorder';
|
|
88
89
|
import { IEmptyStateType } from './IEmptyStateType';
|
|
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, };
|
|
90
|
+
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 };
|
package/package.json
CHANGED
package/themes/default.theme.css
CHANGED
|
@@ -177,5 +177,23 @@
|
|
|
177
177
|
|
|
178
178
|
/**
|
|
179
179
|
* @tokens-end
|
|
180
|
+
*/
|
|
181
|
+
|
|
182
|
+
/**
|
|
183
|
+
* @tokens Colors:XIcon
|
|
184
|
+
* @presenter Color
|
|
185
|
+
*/
|
|
186
|
+
--xicon-color-green: #11A279;
|
|
187
|
+
--xicon-color-sky-blue: #4A96FF;
|
|
188
|
+
--xicon-color-orange: #FF953B;
|
|
189
|
+
--xicon-color-red: #EB4849;
|
|
190
|
+
--xicon-color-purple: #4D54C8;
|
|
191
|
+
--xicon-color-pink: #F15DDB;
|
|
192
|
+
--xicon-color-green-check: #2B994C;
|
|
193
|
+
--xicon-color-red-refuse: #DD4242;
|
|
194
|
+
--xicon-color-yellow: #FFD65A;
|
|
195
|
+
--xicon-color-turquoise: #2ddfa6;
|
|
196
|
+
/**
|
|
197
|
+
* @tokens-end
|
|
180
198
|
*/
|
|
181
199
|
}
|