@rango-dev/ui 0.36.1-next.9 → 0.36.2-next.0
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/dist/index.js +1 -1
- package/dist/index.js.map +4 -4
- package/dist/ui.build.json +1 -1
- package/dist/widget/ui/src/components/Modal/Modal.d.ts.map +1 -1
- package/dist/widget/ui/src/components/Modal/Modal.styles.d.ts +0 -1
- package/dist/widget/ui/src/components/Modal/Modal.styles.d.ts.map +1 -1
- package/dist/widget/ui/src/components/Modal/Modal.types.d.ts +2 -2
- package/dist/widget/ui/src/components/Modal/Modal.types.d.ts.map +1 -1
- package/dist/widget/ui/src/icons/Calendar.d.ts +5 -0
- package/dist/widget/ui/src/icons/Calendar.d.ts.map +1 -0
- package/dist/widget/ui/src/icons/Discord.d.ts.map +1 -1
- package/dist/widget/ui/src/icons/Logout.d.ts +5 -0
- package/dist/widget/ui/src/icons/Logout.d.ts.map +1 -0
- package/dist/widget/ui/src/icons/Rank.d.ts +5 -0
- package/dist/widget/ui/src/icons/Rank.d.ts.map +1 -0
- package/dist/widget/ui/src/icons/Score.d.ts +5 -0
- package/dist/widget/ui/src/icons/Score.d.ts.map +1 -0
- package/dist/widget/ui/src/icons/Share.d.ts +5 -0
- package/dist/widget/ui/src/icons/Share.d.ts.map +1 -0
- package/dist/widget/ui/src/icons/Stats.d.ts +5 -0
- package/dist/widget/ui/src/icons/Stats.d.ts.map +1 -0
- package/dist/widget/ui/src/icons/index.d.ts +6 -0
- package/dist/widget/ui/src/icons/index.d.ts.map +1 -1
- package/package.json +2 -2
- package/src/components/Modal/Modal.styles.ts +32 -33
- package/src/components/Modal/Modal.tsx +20 -20
- package/src/components/Modal/Modal.types.ts +2 -2
- package/src/icons/Calendar.tsx +39 -0
- package/src/icons/Discord.tsx +3 -2
- package/src/icons/Logout.tsx +28 -0
- package/src/icons/Rank.tsx +27 -0
- package/src/icons/Score.tsx +39 -0
- package/src/icons/Share.tsx +28 -0
- package/src/icons/Stats.tsx +28 -0
- package/src/icons/index.ts +6 -0
package/src/icons/index.ts
CHANGED
|
@@ -3,6 +3,7 @@ export { default as AutoThemeIcon } from './AutoTheme';
|
|
|
3
3
|
export { default as AutorenewIcon } from './Autorenew';
|
|
4
4
|
export { default as BorderRadiusIcon } from './BorderRadius';
|
|
5
5
|
export { default as BridgesIcon } from './Bridges';
|
|
6
|
+
export { default as CalendarIcon } from './Calendar';
|
|
6
7
|
export { default as ChevronDownIcon } from './ChevronDown';
|
|
7
8
|
export { default as ChevronLeftIcon } from './ChevronLeft';
|
|
8
9
|
export { default as ChevronRightIcon } from './ChevronRight';
|
|
@@ -35,6 +36,7 @@ export { default as LanguageIcon } from './Language';
|
|
|
35
36
|
export { default as LightModeIcon } from './LightMode';
|
|
36
37
|
export { default as LinkIcon } from './Link';
|
|
37
38
|
export { default as LoadingIcon } from './Loading';
|
|
39
|
+
export { default as LogoutIcon } from './Logout';
|
|
38
40
|
export { default as LogoWithTextIcon } from './LogoWithText';
|
|
39
41
|
export { default as MenuIcon } from './Menu';
|
|
40
42
|
export { default as MoreIcon } from './More';
|
|
@@ -48,12 +50,16 @@ export { default as OtherCategoryIcon } from './OtherCategory';
|
|
|
48
50
|
export { default as PasteIcon } from './Paste';
|
|
49
51
|
export { default as PinIcon } from './Pin';
|
|
50
52
|
export { default as RangoExplorerIcon } from './RangoExplorer';
|
|
53
|
+
export { default as RankIcon } from './Rank';
|
|
51
54
|
export { default as RefreshIcon } from './Refresh';
|
|
52
55
|
export { default as ReportIcon } from './Report';
|
|
53
56
|
export { default as RequestIcon } from './Request';
|
|
54
57
|
export { default as ReverseIcon } from './Reverse';
|
|
55
58
|
export { default as RouteIcon } from './Route';
|
|
59
|
+
export { default as ScoreIcon } from './Score';
|
|
56
60
|
export { default as SearchIcon } from './Search';
|
|
61
|
+
export { default as ShareIcon } from './Share';
|
|
62
|
+
export { default as StatsIcon } from './Stats';
|
|
57
63
|
export { default as SupportIcon } from './Support';
|
|
58
64
|
export { default as SwapIcon } from './Swap';
|
|
59
65
|
export { default as TimeIcon } from './Time';
|