@team_yumi/ramen 1.2.2-next.20240516-af13d69-9700c3698df16fdc576682fa8010a08d → 1.2.3-next.20240617-5b6c3df-d0b62f575f075fb371866f5173cb69ac
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 +196 -4
- package/index.js +2 -2
- package/package.json +1 -1
- package/src/components/core/x-icon/icons/outline/index.d.ts +2 -1
- package/src/components/mobile/x-card-decision/root.d.ts +3 -0
- package/src/components/mobile/x-card-home-indicator/index.d.ts +2 -0
- package/src/components/mobile/x-card-home-indicator/root.d.ts +8 -0
- package/src/components/mobile/x-card-progress/index.d.ts +2 -0
- package/src/components/mobile/x-card-progress/root.d.ts +17 -0
- package/src/components/mobile/x-datepicker/root.d.ts +1 -0
- package/src/components/mobile/x-pull-to-refresh/index.d.ts +2 -0
- package/src/components/mobile/x-pull-to-refresh/root.d.ts +8 -0
- package/src/components/web/x-sidebar/index.d.ts +2 -1
- package/src/index.mobile.d.ts +6 -0
- package/src/index.web.d.ts +3 -1
- package/src/models/Collections/ICardProgressSize.d.ts +1 -0
- package/src/models/Collections/IIcon.d.ts +1 -1
- package/src/models/Collections/index.d.ts +2 -1
package/package.json
CHANGED
|
@@ -192,4 +192,5 @@ import { ReactComponent as Entry } from './system/entry.svg';
|
|
|
192
192
|
import { ReactComponent as LogOut } from './system/log-out.svg';
|
|
193
193
|
import { ReactComponent as SortDown } from './system/sort-down.svg';
|
|
194
194
|
import { ReactComponent as Loading } from './system/loading.svg';
|
|
195
|
-
|
|
195
|
+
import { ReactComponent as Keyboard } from './system/keyboard.svg';
|
|
196
|
+
export { Announcement, PhoneCall, PhoneIncoming, PhoneOutgoing, MessageCircle, PhoneChat, PhoneMissed, Phone, MessageSquare, PhoneForwarded, PhoneOff, Support, Briefcase, Clock, Package, Tag, Calendar, CreditCard, Printer, Truck, CameraOff, Gift, ShoppingBag, Tv, Camera, Home, ShoppingCart, Clipboard, Monitor, Star, Basket, AlignCenter, AlignRight, Grid, List, AlignLeft, Bold, ListNumber, Airplay, Mic, Rewind, Volume1, BookOpen, PauseCircle, SkipBack, Volume2, Book, Pause, SkipForward, VolumeX, FastForward, PlayCircle, Sliders, Volume, IdeaLightBulb, Play, StopCircle, Image, Radio, VideoOff, MicOff, Repeat, Video, Bento, Doner, Hamburguer, Kebab, Meatballs, ArrowDownLeft, CarretDown, CornerDownLeft, ExternalLink, ArrowDownRight, CarretLeft, CornerDownRight, Maximize, ArrowDown, CarretRight, CornerLeftDown, Minimize, ArrowLeft, CarretUp, CornerLeftUp, None, ArrowRight, ChevronDown, CornerRightDown, RefreshCcw, ArrowUpLeft, ChevronLeft, CornerRightUp, RefreshCw, ArrowUpRight, ChevronRight, CornerUpLeft, RotateCcw, Close, ArrowUp, ChevronUp, CornerUpRight, RotateCw, Chrome, Figma, Linkedin, ThumbsDown, Twitter, Facebook, Instagram, Safari, ThumbsUp, Youtube, AlertCircle, Exit, Mail, SortUp, Alert, EyeOff, Paperclip, Store, Archive, Eye, PieChart, Trash2, AtSign, Filter1, Filter2, PlusRounded, Trash, BatteryCharging, Filter, Plus, TrendingDown, Battery, Flag, Power, TrendingUp, Bluetooth, FolderMinus, Rss, Unlock, Bookmark, FolderPlus, Save, UploadCloud, Calculator, Folder, Scan2, Upload, Cast, Globe, Scan, UserCheck, Chart2, HardDrive, Search, UserMinus, Chart, Send, UserPlus, CheckCircle, Info, Server, UserX, CheckSquare, Kg, Settings, User, Check, Layout, Share2, Users, Delete, Less, Share, WifiOff, DownloadCloud, Link1, ShieldOff, Wifi, Download, Link, Shield, XCircle, Edit2, Location, Sidebar, X, Edit3, Lock, Slash, Entry, LogOut, SortDown, Loading, Keyboard, };
|
|
@@ -29,6 +29,9 @@ export interface IProps {
|
|
|
29
29
|
* The action to be executed when the third option button is clicked
|
|
30
30
|
*/
|
|
31
31
|
onClickDoesntApplyOption?: (state: boolean) => void;
|
|
32
|
+
affirmativaLabel?: string;
|
|
33
|
+
negativeLabel?: string;
|
|
34
|
+
doesntApplyLabel?: string;
|
|
32
35
|
}
|
|
33
36
|
declare const XCardDecision: React.FC<IProps>;
|
|
34
37
|
export default XCardDecision;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Collections } from '../../../models';
|
|
3
|
+
export interface IProps {
|
|
4
|
+
symbol?: (typeof Collections.ISymbol)[number];
|
|
5
|
+
icons?: (typeof Collections.IIcon)[number];
|
|
6
|
+
title?: string;
|
|
7
|
+
description?: string;
|
|
8
|
+
count?: number;
|
|
9
|
+
size?: (typeof Collections.ICardProgressSize)[number];
|
|
10
|
+
borderType?: (typeof Collections.IBorderType)[number];
|
|
11
|
+
onClick?: () => void;
|
|
12
|
+
children?: React.ReactNode;
|
|
13
|
+
disabled?: boolean;
|
|
14
|
+
progress?: number;
|
|
15
|
+
}
|
|
16
|
+
declare const XCardProgress: React.FC<IProps>;
|
|
17
|
+
export default XCardProgress;
|
package/src/index.mobile.d.ts
CHANGED
|
@@ -80,8 +80,11 @@ declare const _default: {
|
|
|
80
80
|
XRadioButtonOption: import("react").FC<import("./components/mobile/x-radio-button-option/root").IProps>;
|
|
81
81
|
XGroupCheckBox: import("react").FC<import("./components/mobile/x-group-checkbox/root").Props>;
|
|
82
82
|
XDatepickerYear: import("react").FC<import("./components/mobile/x-datepicker-year/root").IProps>;
|
|
83
|
+
XCardProgress: import("react").FC<import("./components/mobile/x-card-progress/root").IProps>;
|
|
84
|
+
XCardHomeIndicator: import("react").FC<import("./components/mobile/x-card-home-indicator/root").IProps>;
|
|
83
85
|
XCardBusiness: import("react").FC<import("./components/mobile/x-card-business/root").IProps>;
|
|
84
86
|
XStoreSelector: import("react").FC<import("./components/mobile/x-store-selector/root").IProps>;
|
|
87
|
+
XPullToRefresh: import("react").FC<import("./components/mobile/x-pull-to-refresh/root").IProps>;
|
|
85
88
|
XCardCounter: import("react").FC<import("./components/core/x-card-counter/root").IProps>;
|
|
86
89
|
XBox: import("react").FC<import("./components/core/x-box/root").IProps>;
|
|
87
90
|
XText: import("react").FC<import("./components/core/x-text/root").IProps>;
|
|
@@ -213,5 +216,8 @@ export { default as XBottomSheet } from './components/mobile/x-bottom-sheet';
|
|
|
213
216
|
export { default as XRadioButtonOption } from './components/mobile/x-radio-button-option';
|
|
214
217
|
export { default as XGroupCheckBox } from './components/mobile/x-group-checkbox';
|
|
215
218
|
export { default as XDatepickerYear } from './components/mobile/x-datepicker-year';
|
|
219
|
+
export { default as XCardProgress } from './components/mobile/x-card-progress';
|
|
220
|
+
export { default as XCardHomeIndicator } from './components/mobile/x-card-home-indicator';
|
|
216
221
|
export { default as XCardBusiness } from './components/mobile/x-card-business';
|
|
217
222
|
export { default as XStoreSelector } from './components/mobile/x-store-selector';
|
|
223
|
+
export { default as XPullToRefresh } from './components/mobile/x-pull-to-refresh';
|
package/src/index.web.d.ts
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
/// <reference types="node" />
|
|
3
|
+
import type { IMenuItem } from '@yumi/x-sidebar-web';
|
|
4
|
+
export type { IMenuItem };
|
|
3
5
|
import { XTablePagination, XTableSorter } from '@yumi/x-table-web';
|
|
4
6
|
declare const _default: {
|
|
5
7
|
XModal: import("react").ForwardRefExoticComponent<import("./components/web/x-modal/root").IProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
@@ -169,7 +171,7 @@ export { default as XHeader } from './components/web/x-header';
|
|
|
169
171
|
export { default as XPage } from './components/web/x-page';
|
|
170
172
|
export { default as XBody } from './components/web/x-body';
|
|
171
173
|
export { default as XTabs } from './components/web/x-tabs';
|
|
172
|
-
export { default as XSidebar } from './components/web/x-sidebar';
|
|
174
|
+
export { default as XSidebar, IMenuItem as IMenuItemProps } from './components/web/x-sidebar';
|
|
173
175
|
export { default as XTable } from './components/web/x-table';
|
|
174
176
|
export { default as XSelect } from './components/web/x-select';
|
|
175
177
|
export { default as XConfirmModal } from './components/web/x-confirm-modal';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const ICardProgressSize: readonly ["s", "l"];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const IIcon: readonly ["airplay-outline", "alert-bold", "alert-bold-filled", "alert-circle-outline", "alert-outline", "align-center-outline", "align-left-outline", "align-right-outline", "announcement-outline", "apple-filled", "archive-outline", "arrow-down-circle-filled", "arrow-down-left-filled", "arrow-down-left-outline", "arrow-down-outline", "arrow-down-right-filled", "arrow-down-right-outline", "arrow-left-circle-filled", "arrow-left-extrabold", "arrow-left-outline", "arrow-right-circle-filled", "arrow-right-extrabold", "arrow-right-outline", "arrow-up-circle-filled", "arrow-up-left-filled", "arrow-up-left-outline", "arrow-up-outline", "arrow-up-right-filled", "arrow-up-right-outline", "at-sign-outline", "balance-cart-filled", "balance-filled", "basket-outline", "battery-charging-outline", "battery-outline", "bento-outline", "block-filled", "bluetooth-outline", "bold-outline", "book-open-outline", "book-outline", "bookmark-outline", "briefcase-outline", "calculator-filled", "calculator-outline", "calendar-outline", "camera-filled", "camera-off-outline", "camera-outline", "car-filled", "carret-down-filled", "carret-down-outline", "carret-left-filled", "carret-left-outline", "carret-right-filled", "carret-right-outline", "carret-up-filled", "carret-up-outline", "cast-outline", "cencosud-filled", "chart-2-outline", "chart-outline", "check-bold", "check-bold-filled", "check-circle-outline", "check-extrabold", "check-filled", "check-outline", "check-square-outline", "chevron-down-extrabold", "chevron-down-filled", "chevron-down-outline", "chevron-left-extrabold", "chevron-left-filled", "chevron-left-outline", "chevron-right-extrabold", "chevron-right-filled", "chevron-right-outline", "chevron-up-extrabold", "chevron-up-filled", "chevron-up-outline", "chrome-outline", "clipboard-outline", "clock-outline", "close-outline", "corner-down-left-outline", "corner-down-right-outline", "corner-left-down-outline", "corner-left-up-outline", "corner-right-down-outline", "corner-right-up-outline", "corner-up-left-outline", "corner-up-right-outline", "credit-card-outline", "delete-outline", "denied-filled", "doner-outline", "download-cloud-outline", "download-outline", "edit-2-outline", "edit-3-outline", "entry-outline", "exit-outline", "external-link-outline", "eye-off-outline", "eye-outline", "facebook-filled", "facebook-outline", "fast-filled", "fast-forward-outline", "figma-outline", "fill-filled", "filter-1-outline", "filter-2-outline", "filter-outline", "flag-outline", "folder-minus-outline", "folder-outline", "folder-plus-filled", "folder-plus-outline", "gift-outline", "globe-outline", "google-filled", "grid-outline", "hamburguer-outline", "hard-drive-outline", "help-filled", "home-outline", "idea-light-bulb-outline", "image-outline", "inbox-filled", "info-bold", "info-bold-filled", "info-outline", "instagram-outline", "kebab-outline", "kg-outline", "layout-outline", "less-extrabold", "less-outline", "link-1-outline", "link-outline", "linkedin-outline", "list-filled", "list-number-outline", "list-outline", "loading-outline", "location-outline", "lock-outline", "log-out-outline", "mail-filled", "mail-outline", "map-filled", "maximize-outline", "meatballs-outline", "message-circle-outline", "message-square-outline", "mic-off-outline", "mic-outline", "minimize-outline", "monitor-outline", "none", "none-extrabold", "none-filled", "none-outline", "notifications-filled", "package-outline", "paperclip-outline", "pause-circle-outline", "pause-outline", "phone-call-outline", "phone-chat-outline", "phone-forwarded-outline", "phone-incoming-outline", "phone-missed-outline", "phone-off-outline", "phone-outgoing-outline", "phone-outline", "pie-chart-outline", "play-circle-outline", "play-outline", "plus-extrabold", "plus-outline", "plus-rounded-outline", "power-outline", "printer-outline", "profile-filled", "radio-outline", "refresh-ccw-outline", "refresh-cw-outline", "refuse-extrabold", "refuse-filled", "repeat-outline", "rewind-outline", "rotate-ccw-outline", "rotate-cw-outline", "rss-outline", "safari-outline", "save-outline", "scan-2-outline", "scan-outline", "search-outline", "send-outline", "server-outline", "settings-outline", "share-2-outline", "share-outline", "shield-off-outline", "shield-outline", "shopping-bag-outline", "shopping-cart-outline", "sidebar-outline", "skip-back-outline", "skip-forward-outline", "slash-extrabold", "slash-outline", "sliders-outline", "sort-down-outline", "sort-up-outline", "star-outline", "stats-filled", "stop-circle-outline", "store-outline", "support-filled", "support-outline", "tag-outline", "task-filled", "thumbs-down-outline", "thumbs-up-outline", "tools-filled", "trash-2-outline", "trash-outline", "trending-down-outline", "trending-up-outline", "truck-outline", "tunnel-filled", "tv-outline", "twitter-outline", "unlock-outline", "upload-cloud-outline", "upload-outline", "user-check-outline", "user-minus-outline", "user-outline", "user-plus-outline", "user-x-outline", "users-outline", "video-off-outline", "video-outline", "volume-1-outline", "volume-2-outline", "volume-outline", "volume-x-outline", "walking-filled", "warning-bold-filled", "wifi-off-outline", "wifi-outline", "x-bold", "x-circle-bold-filled", "x-circle-filled", "x-circle-outline", "x-extrabold", "x-outline", "youtube-outline"];
|
|
1
|
+
export declare const IIcon: readonly ["airplay-outline", "alert-bold", "alert-bold-filled", "alert-circle-outline", "alert-outline", "align-center-outline", "align-left-outline", "align-right-outline", "announcement-outline", "apple-filled", "archive-outline", "arrow-down-circle-filled", "arrow-down-left-filled", "arrow-down-left-outline", "arrow-down-outline", "arrow-down-right-filled", "arrow-down-right-outline", "arrow-left-circle-filled", "arrow-left-extrabold", "arrow-left-outline", "arrow-right-circle-filled", "arrow-right-extrabold", "arrow-right-outline", "arrow-up-circle-filled", "arrow-up-left-filled", "arrow-up-left-outline", "arrow-up-outline", "arrow-up-right-filled", "arrow-up-right-outline", "at-sign-outline", "balance-cart-filled", "balance-filled", "basket-outline", "battery-charging-outline", "battery-outline", "bento-outline", "block-filled", "bluetooth-outline", "bold-outline", "book-open-outline", "book-outline", "bookmark-outline", "briefcase-outline", "calculator-filled", "calculator-outline", "calendar-outline", "camera-filled", "camera-off-outline", "camera-outline", "car-filled", "carret-down-filled", "carret-down-outline", "carret-left-filled", "carret-left-outline", "carret-right-filled", "carret-right-outline", "carret-up-filled", "carret-up-outline", "cast-outline", "cencosud-filled", "chart-2-outline", "chart-outline", "check-bold", "check-bold-filled", "check-circle-outline", "check-extrabold", "check-filled", "check-outline", "check-square-outline", "chevron-down-extrabold", "chevron-down-filled", "chevron-down-outline", "chevron-left-extrabold", "chevron-left-filled", "chevron-left-outline", "chevron-right-extrabold", "chevron-right-filled", "chevron-right-outline", "chevron-up-extrabold", "chevron-up-filled", "chevron-up-outline", "chrome-outline", "clipboard-outline", "clock-outline", "close-outline", "corner-down-left-outline", "corner-down-right-outline", "corner-left-down-outline", "corner-left-up-outline", "corner-right-down-outline", "corner-right-up-outline", "corner-up-left-outline", "corner-up-right-outline", "credit-card-outline", "delete-outline", "denied-filled", "doner-outline", "download-cloud-outline", "download-outline", "edit-2-outline", "edit-3-outline", "entry-outline", "exit-outline", "external-link-outline", "eye-off-outline", "eye-outline", "facebook-filled", "facebook-outline", "fast-filled", "fast-forward-outline", "figma-outline", "fill-filled", "filter-1-outline", "filter-2-outline", "filter-outline", "flag-outline", "folder-minus-outline", "folder-outline", "folder-plus-filled", "folder-plus-outline", "gift-outline", "globe-outline", "google-filled", "grid-outline", "hamburguer-outline", "hard-drive-outline", "help-filled", "home-outline", "idea-light-bulb-outline", "image-outline", "inbox-filled", "info-bold", "info-bold-filled", "info-outline", "instagram-outline", "kebab-outline", "keyboard-outline", "kg-outline", "layout-outline", "less-extrabold", "less-outline", "link-1-outline", "link-outline", "linkedin-outline", "list-filled", "list-number-outline", "list-outline", "loading-outline", "location-outline", "lock-outline", "log-out-outline", "mail-filled", "mail-outline", "map-filled", "maximize-outline", "meatballs-outline", "message-circle-outline", "message-square-outline", "mic-off-outline", "mic-outline", "minimize-outline", "monitor-outline", "none", "none-extrabold", "none-filled", "none-outline", "notifications-filled", "package-outline", "paperclip-outline", "pause-circle-outline", "pause-outline", "phone-call-outline", "phone-chat-outline", "phone-forwarded-outline", "phone-incoming-outline", "phone-missed-outline", "phone-off-outline", "phone-outgoing-outline", "phone-outline", "pie-chart-outline", "play-circle-outline", "play-outline", "plus-extrabold", "plus-outline", "plus-rounded-outline", "power-outline", "printer-outline", "profile-filled", "radio-outline", "refresh-ccw-outline", "refresh-cw-outline", "refuse-extrabold", "refuse-filled", "repeat-outline", "rewind-outline", "rotate-ccw-outline", "rotate-cw-outline", "rss-outline", "safari-outline", "save-outline", "scan-2-outline", "scan-outline", "search-outline", "send-outline", "server-outline", "settings-outline", "share-2-outline", "share-outline", "shield-off-outline", "shield-outline", "shopping-bag-outline", "shopping-cart-outline", "sidebar-outline", "skip-back-outline", "skip-forward-outline", "slash-extrabold", "slash-outline", "sliders-outline", "sort-down-outline", "sort-up-outline", "star-outline", "stats-filled", "stop-circle-outline", "store-outline", "support-filled", "support-outline", "tag-outline", "task-filled", "thumbs-down-outline", "thumbs-up-outline", "tools-filled", "trash-2-outline", "trash-outline", "trending-down-outline", "trending-up-outline", "truck-outline", "tunnel-filled", "tv-outline", "twitter-outline", "unlock-outline", "upload-cloud-outline", "upload-outline", "user-check-outline", "user-minus-outline", "user-outline", "user-plus-outline", "user-x-outline", "users-outline", "video-off-outline", "video-outline", "volume-1-outline", "volume-2-outline", "volume-outline", "volume-x-outline", "walking-filled", "warning-bold-filled", "wifi-off-outline", "wifi-outline", "x-bold", "x-circle-bold-filled", "x-circle-filled", "x-circle-outline", "x-extrabold", "x-outline", "youtube-outline"];
|
|
@@ -109,4 +109,5 @@ import { ISelectManyModalSize } from './ISelectManyModalSize';
|
|
|
109
109
|
import { ICardBusinessLogo } from './ICardBusinessLogo';
|
|
110
110
|
import { IStoreSelectorLogo } from './IStoreSelectorLogo';
|
|
111
111
|
import { IStoreSelectorSize } from './IStoreSelectorSize';
|
|
112
|
-
|
|
112
|
+
import { ICardProgressSize } from './ICardProgressSize';
|
|
113
|
+
export { ICardProgressSize, IStoreSelectorSize, IStoreSelectorLogo, ICardBusinessLogo, 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, };
|