rsuite 5.0.3 → 5.1.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/CHANGELOG.md +17 -0
- package/MaskedInput/package.json +7 -0
- package/README.md +1 -1
- package/Toggle/styles/index.less +20 -0
- package/Toggle/styles/mixin.less +12 -0
- package/cjs/DOMHelper/index.d.ts +1 -1
- package/cjs/DatePicker/DatePicker.js +3 -2
- package/cjs/DateRangePicker/DateRangePicker.js +3 -2
- package/cjs/Dropdown/DropdownItem.js +23 -16
- package/cjs/MaskedInput/MaskedInput.d.ts +43 -0
- package/cjs/MaskedInput/MaskedInput.js +80 -0
- package/cjs/MaskedInput/adjustCaretPosition.d.ts +11 -0
- package/cjs/MaskedInput/adjustCaretPosition.js +218 -0
- package/cjs/MaskedInput/conformToMask.d.ts +8 -0
- package/cjs/MaskedInput/conformToMask.js +247 -0
- package/cjs/MaskedInput/createTextMaskInputElement.d.ts +7 -0
- package/cjs/MaskedInput/createTextMaskInputElement.js +226 -0
- package/cjs/MaskedInput/index.d.ts +3 -0
- package/cjs/MaskedInput/index.js +11 -0
- package/cjs/MaskedInput/types.d.ts +10 -0
- package/cjs/{@types/icons.js → MaskedInput/types.js} +0 -0
- package/cjs/MaskedInput/utilities.d.ts +7 -0
- package/cjs/MaskedInput/utilities.js +47 -0
- package/cjs/Overlay/positionUtils.js +1 -1
- package/cjs/Picker/PickerToggle.js +3 -3
- package/cjs/Toggle/Toggle.d.ts +2 -0
- package/cjs/Toggle/Toggle.js +23 -5
- package/cjs/index.d.ts +2 -0
- package/cjs/index.js +5 -1
- package/cjs/locales/fa_IR.d.ts +105 -0
- package/cjs/locales/fa_IR.js +84 -0
- package/cjs/locales/index.d.ts +1 -0
- package/cjs/locales/index.js +6 -2
- package/dist/rsuite-rtl.css +58 -0
- package/dist/rsuite-rtl.min.css +1 -1
- package/dist/rsuite-rtl.min.css.map +1 -1
- package/dist/rsuite.css +58 -0
- package/dist/rsuite.js +79 -23
- package/dist/rsuite.js.map +1 -1
- package/dist/rsuite.min.css +1 -1
- package/dist/rsuite.min.css.map +1 -1
- package/dist/rsuite.min.js +1 -1
- package/dist/rsuite.min.js.map +1 -1
- package/esm/DOMHelper/index.d.ts +1 -1
- package/esm/DatePicker/DatePicker.js +3 -2
- package/esm/DateRangePicker/DateRangePicker.js +3 -2
- package/esm/Dropdown/DropdownItem.js +23 -16
- package/esm/MaskedInput/MaskedInput.d.ts +43 -0
- package/esm/MaskedInput/MaskedInput.js +67 -0
- package/esm/MaskedInput/adjustCaretPosition.d.ts +11 -0
- package/esm/MaskedInput/adjustCaretPosition.js +213 -0
- package/esm/MaskedInput/conformToMask.d.ts +8 -0
- package/esm/MaskedInput/conformToMask.js +239 -0
- package/esm/MaskedInput/createTextMaskInputElement.d.ts +7 -0
- package/esm/MaskedInput/createTextMaskInputElement.js +212 -0
- package/esm/MaskedInput/index.d.ts +3 -0
- package/esm/MaskedInput/index.js +2 -0
- package/esm/MaskedInput/types.d.ts +10 -0
- package/esm/{@types/icons.js → MaskedInput/types.js} +0 -0
- package/esm/MaskedInput/utilities.d.ts +7 -0
- package/esm/MaskedInput/utilities.js +38 -0
- package/esm/Overlay/positionUtils.js +1 -1
- package/esm/Picker/PickerToggle.js +1 -1
- package/esm/Toggle/Toggle.d.ts +2 -0
- package/esm/Toggle/Toggle.js +22 -5
- package/esm/index.d.ts +2 -0
- package/esm/index.js +1 -0
- package/esm/locales/fa_IR.d.ts +105 -0
- package/esm/locales/fa_IR.js +74 -0
- package/esm/locales/index.d.ts +1 -0
- package/esm/locales/index.js +2 -1
- package/locales/fa_IR/package.json +7 -0
- package/package.json +3 -4
- package/styles/color-modes/light.less +2 -0
- package/cjs/@types/icons.d.ts +0 -1
- package/esm/@types/icons.d.ts +0 -1
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
common: {
|
|
3
|
+
loading: string;
|
|
4
|
+
emptyMessage: string;
|
|
5
|
+
};
|
|
6
|
+
Plaintext: {
|
|
7
|
+
unfilled: string;
|
|
8
|
+
notSelected: string;
|
|
9
|
+
notUploaded: string;
|
|
10
|
+
};
|
|
11
|
+
Pagination: {
|
|
12
|
+
more: string;
|
|
13
|
+
prev: string;
|
|
14
|
+
next: string;
|
|
15
|
+
first: string;
|
|
16
|
+
last: string;
|
|
17
|
+
limit: string;
|
|
18
|
+
total: string;
|
|
19
|
+
skip: string;
|
|
20
|
+
};
|
|
21
|
+
Calendar: {
|
|
22
|
+
sunday: string;
|
|
23
|
+
monday: string;
|
|
24
|
+
tuesday: string;
|
|
25
|
+
wednesday: string;
|
|
26
|
+
thursday: string;
|
|
27
|
+
friday: string;
|
|
28
|
+
saturday: string;
|
|
29
|
+
ok: string;
|
|
30
|
+
today: string;
|
|
31
|
+
yesterday: string;
|
|
32
|
+
hours: string;
|
|
33
|
+
minutes: string;
|
|
34
|
+
seconds: string;
|
|
35
|
+
formattedMonthPattern: string;
|
|
36
|
+
formattedDayPattern: string;
|
|
37
|
+
dateLocale: any;
|
|
38
|
+
};
|
|
39
|
+
DatePicker: {
|
|
40
|
+
sunday: string;
|
|
41
|
+
monday: string;
|
|
42
|
+
tuesday: string;
|
|
43
|
+
wednesday: string;
|
|
44
|
+
thursday: string;
|
|
45
|
+
friday: string;
|
|
46
|
+
saturday: string;
|
|
47
|
+
ok: string;
|
|
48
|
+
today: string;
|
|
49
|
+
yesterday: string;
|
|
50
|
+
hours: string;
|
|
51
|
+
minutes: string;
|
|
52
|
+
seconds: string;
|
|
53
|
+
formattedMonthPattern: string;
|
|
54
|
+
formattedDayPattern: string;
|
|
55
|
+
dateLocale: any;
|
|
56
|
+
};
|
|
57
|
+
DateRangePicker: {
|
|
58
|
+
last7Days: string;
|
|
59
|
+
sunday: string;
|
|
60
|
+
monday: string;
|
|
61
|
+
tuesday: string;
|
|
62
|
+
wednesday: string;
|
|
63
|
+
thursday: string;
|
|
64
|
+
friday: string;
|
|
65
|
+
saturday: string;
|
|
66
|
+
ok: string;
|
|
67
|
+
today: string;
|
|
68
|
+
yesterday: string;
|
|
69
|
+
hours: string;
|
|
70
|
+
minutes: string;
|
|
71
|
+
seconds: string;
|
|
72
|
+
formattedMonthPattern: string;
|
|
73
|
+
formattedDayPattern: string;
|
|
74
|
+
dateLocale: any;
|
|
75
|
+
};
|
|
76
|
+
Picker: {
|
|
77
|
+
noResultsText: string;
|
|
78
|
+
placeholder: string;
|
|
79
|
+
searchPlaceholder: string;
|
|
80
|
+
checkAll: string;
|
|
81
|
+
};
|
|
82
|
+
InputPicker: {
|
|
83
|
+
newItem: string;
|
|
84
|
+
createOption: string;
|
|
85
|
+
};
|
|
86
|
+
Uploader: {
|
|
87
|
+
inited: string;
|
|
88
|
+
progress: string;
|
|
89
|
+
error: string;
|
|
90
|
+
complete: string;
|
|
91
|
+
emptyFile: string;
|
|
92
|
+
upload: string;
|
|
93
|
+
};
|
|
94
|
+
CloseButton: {
|
|
95
|
+
closeLabel: string;
|
|
96
|
+
};
|
|
97
|
+
Breadcrumb: {
|
|
98
|
+
expandText: string;
|
|
99
|
+
};
|
|
100
|
+
Toggle: {
|
|
101
|
+
on: string;
|
|
102
|
+
off: string;
|
|
103
|
+
};
|
|
104
|
+
};
|
|
105
|
+
export default _default;
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
2
|
+
import faIR from 'date-fns/locale/fa-IR';
|
|
3
|
+
var Calendar = {
|
|
4
|
+
sunday: 'یکشنبه',
|
|
5
|
+
monday: 'دوشنبه',
|
|
6
|
+
tuesday: 'سه شنبه',
|
|
7
|
+
wednesday: 'چهارشنبه',
|
|
8
|
+
thursday: 'پنجشنبه',
|
|
9
|
+
friday: 'جمعه',
|
|
10
|
+
saturday: 'شنبه',
|
|
11
|
+
ok: 'خوب',
|
|
12
|
+
today: 'امروز',
|
|
13
|
+
yesterday: 'دیروز',
|
|
14
|
+
hours: 'ساعت',
|
|
15
|
+
minutes: 'دقیقه',
|
|
16
|
+
seconds: 'ثانیه',
|
|
17
|
+
formattedMonthPattern: 'MMM, yyyy',
|
|
18
|
+
formattedDayPattern: 'MMM dd, yyyy',
|
|
19
|
+
dateLocale: faIR
|
|
20
|
+
};
|
|
21
|
+
export default {
|
|
22
|
+
common: {
|
|
23
|
+
loading: 'در حال بارگذاری...',
|
|
24
|
+
emptyMessage: 'داده ایی پیدا نشد'
|
|
25
|
+
},
|
|
26
|
+
Plaintext: {
|
|
27
|
+
unfilled: 'خالی',
|
|
28
|
+
notSelected: 'انتخاب نشده',
|
|
29
|
+
notUploaded: 'اپلود نشده'
|
|
30
|
+
},
|
|
31
|
+
Pagination: {
|
|
32
|
+
more: 'بیشتر',
|
|
33
|
+
prev: 'قبلی',
|
|
34
|
+
next: 'بعدی',
|
|
35
|
+
first: 'اول',
|
|
36
|
+
last: 'اخر',
|
|
37
|
+
limit: '{0} / صفحه',
|
|
38
|
+
total: 'مجموع ردیف ها: {0}',
|
|
39
|
+
skip: 'برو به{0}'
|
|
40
|
+
},
|
|
41
|
+
Calendar: Calendar,
|
|
42
|
+
DatePicker: _extends({}, Calendar),
|
|
43
|
+
DateRangePicker: _extends({}, Calendar, {
|
|
44
|
+
last7Days: '7 روز اخر'
|
|
45
|
+
}),
|
|
46
|
+
Picker: {
|
|
47
|
+
noResultsText: 'نتیجه ایی یافت نشد',
|
|
48
|
+
placeholder: 'انتخاب',
|
|
49
|
+
searchPlaceholder: 'جستجو',
|
|
50
|
+
checkAll: 'همه'
|
|
51
|
+
},
|
|
52
|
+
InputPicker: {
|
|
53
|
+
newItem: 'گزینه جدید',
|
|
54
|
+
createOption: 'ساخت گزینه "{0}"'
|
|
55
|
+
},
|
|
56
|
+
Uploader: {
|
|
57
|
+
inited: 'اولیه',
|
|
58
|
+
progress: 'در حال اپلود',
|
|
59
|
+
error: 'مشکل',
|
|
60
|
+
complete: 'تمام شد',
|
|
61
|
+
emptyFile: 'خالی',
|
|
62
|
+
upload: 'اپلود'
|
|
63
|
+
},
|
|
64
|
+
CloseButton: {
|
|
65
|
+
closeLabel: 'بستن'
|
|
66
|
+
},
|
|
67
|
+
Breadcrumb: {
|
|
68
|
+
expandText: 'نمایش مسیر'
|
|
69
|
+
},
|
|
70
|
+
Toggle: {
|
|
71
|
+
on: 'باز کردن',
|
|
72
|
+
off: 'بستن'
|
|
73
|
+
}
|
|
74
|
+
};
|
package/esm/locales/index.d.ts
CHANGED
|
@@ -14,6 +14,7 @@ export { default as ruRU } from './ru_RU';
|
|
|
14
14
|
export { default as svSE } from './sv_SE';
|
|
15
15
|
export { default as zhCN } from './zh_CN';
|
|
16
16
|
export { default as zhTw } from './zh_TW';
|
|
17
|
+
export { default as faIR } from './fa_IR';
|
|
17
18
|
declare type PickKeys<T> = {
|
|
18
19
|
[keys in keyof T]?: T[keys];
|
|
19
20
|
};
|
package/esm/locales/index.js
CHANGED
|
@@ -12,4 +12,5 @@ export { default as ptBR } from './pt_BR';
|
|
|
12
12
|
export { default as ruRU } from './ru_RU';
|
|
13
13
|
export { default as svSE } from './sv_SE';
|
|
14
14
|
export { default as zhCN } from './zh_CN';
|
|
15
|
-
export { default as zhTw } from './zh_TW';
|
|
15
|
+
export { default as zhTw } from './zh_TW';
|
|
16
|
+
export { default as faIR } from './fa_IR';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rsuite",
|
|
3
|
-
"version": "5.0
|
|
3
|
+
"version": "5.1.0",
|
|
4
4
|
"description": "A suite of react components",
|
|
5
5
|
"main": "cjs/index.js",
|
|
6
6
|
"module": "esm/index.js",
|
|
@@ -32,13 +32,12 @@
|
|
|
32
32
|
"@types/react-virtualized": "^9.21.11",
|
|
33
33
|
"classnames": "^2.3.1",
|
|
34
34
|
"date-fns": "^2.13.0",
|
|
35
|
-
"dom-lib": "^2.0
|
|
35
|
+
"dom-lib": "^2.1.0",
|
|
36
36
|
"element-resize-event": "^3.0.6",
|
|
37
37
|
"lodash": "^4.17.11",
|
|
38
38
|
"prop-types": "^15.7.2",
|
|
39
|
-
"react-text-mask": "^5.4.3",
|
|
40
39
|
"react-virtualized": "^9.22.3",
|
|
41
|
-
"rsuite-table": "^5.0.
|
|
40
|
+
"rsuite-table": "^5.0.2",
|
|
42
41
|
"schema-typed": "^2.0.1"
|
|
43
42
|
},
|
|
44
43
|
"peerDependencies": {
|
|
@@ -215,6 +215,8 @@
|
|
|
215
215
|
// Toggle
|
|
216
216
|
--rs-toggle-bg: @B300;
|
|
217
217
|
--rs-toggle-thumb: #fff;
|
|
218
|
+
--rs-toggle-loader-ring: fade(@B050, 30%);
|
|
219
|
+
--rs-toggle-loader-rotor: @B000;
|
|
218
220
|
--rs-toggle-hover-bg: @B400;
|
|
219
221
|
--rs-toggle-disabled-bg: @B050;
|
|
220
222
|
--rs-toggle-disabled-thumb: #fff;
|
package/cjs/@types/icons.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare type IconNames = '500px' | 'address-book' | 'address-book-o' | 'adjust' | 'adn' | 'align-center' | 'align-justify' | 'align-left' | 'align-right' | 'alipay' | 'amazon' | 'ambulance' | 'anchor' | 'android' | 'android2' | 'angellist' | 'angle-double-down' | 'angle-double-left' | 'angle-double-right' | 'angle-double-up' | 'angle-down' | 'angle-left' | 'angle-right' | 'angle-up' | 'apple' | 'archive' | 'area-chart' | 'arrow-circle-down' | 'arrow-circle-left' | 'arrow-circle-o-down' | 'arrow-circle-o-left' | 'arrow-circle-o-right' | 'arrow-circle-o-up' | 'arrow-circle-right' | 'arrow-circle-up' | 'arrow-down' | 'arrow-down-line' | 'arrow-down2' | 'arrow-left' | 'arrow-left-line' | 'arrow-right' | 'arrow-right-line' | 'arrow-up' | 'arrow-up-line' | 'arrow-up2' | 'arrows' | 'arrows-alt' | 'arrows-h' | 'arrows-v' | 'asl-interpreting' | 'assistive-listening-systems' | 'asterisk' | 'at' | 'attachment' | 'attribution' | 'audio-description' | 'avatar' | 'back-arrow' | 'backward' | 'balance-scale' | 'ban' | 'bandcamp' | 'bank' | 'bar-chart' | 'bar-chart-ranking' | 'barcode' | 'bars' | 'battery' | 'battery-0' | 'battery-1' | 'battery-2' | 'battery-3' | 'bed' | 'beer' | 'behance' | 'behance-square' | 'bell' | 'bell-o' | 'bell-slash' | 'bell-slash-o' | 'bicycle' | 'binoculars' | 'birthday-cake' | 'bitbucket' | 'bitbucket-square' | 'black-tie' | 'blind' | 'bluetooth' | 'bluetooth-b' | 'bold' | 'bolt' | 'bomb' | 'book' | 'book2' | 'bookmark' | 'bookmark-o' | 'braille' | 'briefcase' | 'btc' | 'btn-off' | 'btn-on' | 'bug' | 'building' | 'building-o' | 'building2' | 'bullhorn' | 'bullseye' | 'bus' | 'buysellads' | 'cab' | 'calculator' | 'calendar' | 'calendar-check-o' | 'calendar-minus-o' | 'calendar-o' | 'calendar-plus-o' | 'calendar-times-o' | 'camera' | 'camera-retro' | 'car' | 'caret-down' | 'caret-left' | 'caret-right' | 'caret-up' | 'cart-arrow-down' | 'cart-plus' | 'cc' | 'cc-amex' | 'cc-diners-club' | 'cc-discover' | 'cc-jcb' | 'cc-mastercard' | 'cc-paypal' | 'cc-stripe' | 'cc-visa' | 'certificate' | 'character-area' | 'character-authorize' | 'charts' | 'charts-line' | 'check' | 'check-circle' | 'check-circle-o' | 'check-square' | 'check-square-o' | 'check2' | 'chevron-circle-down' | 'chevron-circle-left' | 'chevron-circle-right' | 'chevron-circle-up' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'chevron-up' | 'child' | 'chrome' | 'circle' | 'circle-o' | 'circle-o-notch' | 'circle-thin' | 'clock-o' | 'clone' | 'close' | 'close-circle' | 'cloud' | 'cloud-download' | 'cloud-upload' | 'cny' | 'code' | 'code-fork' | 'codepen' | 'codiepie' | 'coffee' | 'cog' | 'cogs' | 'coincide' | 'collasped' | 'collasped-o' | 'columns' | 'comment' | 'comment-o' | 'commenting' | 'commenting-o' | 'comments' | 'comments-o' | 'compass' | 'compress' | 'connectdevelop' | 'contao' | 'copy' | 'copy-o' | 'copyright' | 'creative' | 'creative-commons' | 'credit-card' | 'credit-card-alt' | 'crop' | 'crosshairs' | 'css3' | 'cube' | 'cubes' | 'cut' | 'cutlery' | 'dashboard' | 'dashcube' | 'data-authorize' | 'data-decrease' | 'data-increase' | 'database' | 'deaf' | 'dedent' | 'delicious' | 'desktop' | 'detail' | 'deviantart' | 'diamond' | 'digg' | 'dot-circle-o' | 'down' | 'download' | 'download2' | 'dribbble' | 'dropbox' | 'drupal' | 'edge' | 'edit' | 'edit2' | 'eercast' | 'eject' | 'ellipsis-h' | 'ellipsis-v' | 'envelope' | 'envelope-o' | 'envelope-open' | 'envelope-open-o' | 'envelope-square' | 'envira' | 'eraser' | 'etsy' | 'eur' | 'exchange' | 'exclamation' | 'exclamation-circle' | 'exclamation-circle2' | 'exclamation-triangle' | 'exit' | 'expand' | 'expand-o' | 'expeditedssl' | 'explore' | 'export' | 'external-link' | 'external-link-square' | 'eye' | 'eye-slash' | 'eyedropper' | 'fa' | 'facebook' | 'facebook-official' | 'facebook-square' | 'fast-backward' | 'fast-forward' | 'fax' | 'female' | 'fighter-jet' | 'file' | 'file-audio-o' | 'file-code-o' | 'file-download' | 'file-excel-o' | 'file-image-o' | 'file-movie-o' | 'file-o' | 'file-pdf-o' | 'file-powerpoint-o' | 'file-text' | 'file-text-o' | 'file-upload' | 'file-word-o' | 'file-zip-o' | 'film' | 'filter' | 'fire' | 'fire-extinguisher' | 'firefox' | 'first-order' | 'flag' | 'flag-checkered' | 'flag-o' | 'flask' | 'flickr' | 'flow' | 'folder' | 'folder-o' | 'folder-open' | 'folder-open-o' | 'font' | 'fonticons' | 'fort-awesome' | 'forumbee' | 'forward' | 'foursquare' | 'frame' | 'free-code-camp' | 'frown-o' | 'futbol-o' | 'gamepad' | 'gavel' | 'gbp' | 'ge' | 'gear' | 'gear-circle' | 'gear2' | 'gears2' | 'genderless' | 'get-pocket' | 'gg' | 'gg-circle' | 'gift' | 'git' | 'git-square' | 'github' | 'github-alt' | 'github-square' | 'gitlab' | 'gittip' | 'glass' | 'glide' | 'glide-g' | 'globe' | 'globe2' | 'good' | 'google' | 'google-plus' | 'google-plus-circle' | 'google-plus-square' | 'google-wallet' | 'grav' | 'group' | 'h-square' | 'hand-grab-o' | 'hand-lizard-o' | 'hand-o-down' | 'hand-o-left' | 'hand-o-right' | 'hand-o-up' | 'hand-peace-o' | 'hand-pointer-o' | 'hand-scissors-o' | 'hand-spock-o' | 'hand-stop-o' | 'handshake-o' | 'hashtag' | 'hdd-o' | 'header' | 'headphones' | 'heart' | 'heart-o' | 'heartbeat' | 'help-o' | 'history' | 'home' | 'hospital-o' | 'hourglass' | 'hourglass-1' | 'hourglass-2' | 'hourglass-3' | 'hourglass-o' | 'houzz' | 'html5' | 'i-cursor' | 'id-badge' | 'id-card' | 'id-card-o' | 'id-info' | 'id-mapping' | 'ils' | 'image' | 'imdb' | 'import' | 'inbox' | 'indent' | 'industry' | 'info' | 'info-circle' | 'inr' | 'instagram' | 'internet-explorer' | 'intersex' | 'ios' | 'ioxhost' | 'italic' | 'joomla' | 'jsfiddle' | 'key' | 'keyboard-o' | 'krw' | 'language' | 'laptop' | 'lastfm' | 'lastfm-square' | 'leaf' | 'leanpub' | 'left' | 'lemon-o' | 'level-down' | 'level-up' | 'lightbulb-o' | 'line-chart' | 'link' | 'linkedin' | 'linkedin-square' | 'linode' | 'linux' | 'list' | 'list-alt' | 'list-ol' | 'list-ul' | 'location-arrow' | 'lock' | 'logo-ads' | 'logo-analytics' | 'logo-dmp' | 'logo-mobile' | 'logo-shop' | 'logo-survey' | 'logo-video' | 'long-arrow-down' | 'long-arrow-left' | 'long-arrow-right' | 'long-arrow-up' | 'low-vision' | 'magic' | 'magic2' | 'magnet' | 'male' | 'map' | 'map-marker' | 'map-o' | 'map-pin' | 'map-signs' | 'mars' | 'mars-double' | 'mars-stroke' | 'mars-stroke-h' | 'mars-stroke-v' | 'maxcdn' | 'meanpath' | 'medium' | 'medkit' | 'meetup' | 'meh-o' | 'mercury' | 'microchip' | 'microphone' | 'microphone-slash' | 'minus' | 'minus-circle' | 'minus-square' | 'minus-square-o' | 'mixcloud' | 'mobile' | 'modx' | 'money' | 'moon-o' | 'more' | 'mortar-board' | 'motorcycle' | 'mouse-pointer' | 'multiple-lines-chart' | 'music' | 'neuter' | 'newspaper-o' | 'object-group' | 'object-ungroup' | 'odnoklassniki' | 'odnoklassniki-square' | 'off' | 'ok-circle' | 'opencart' | 'openid' | 'opera' | 'optin-monster' | 'order-form' | 'page-end' | 'page-next' | 'page-previous' | 'page-top' | 'pagelines' | 'paint-brush' | 'paperclip' | 'paragraph' | 'paste' | 'pause' | 'pause-circle' | 'pause-circle-o' | 'paw' | 'paypal' | 'pc' | 'pencil' | 'pencil-square' | 'people-group' | 'peoples' | 'peoples-map' | 'percent' | 'phone' | 'phone-square' | 'pie-chart' | 'pied-piper' | 'pied-piper-alt' | 'pied-piper-pp' | 'pinterest' | 'pinterest-p' | 'pinterest-square' | 'plane' | 'play' | 'play-circle' | 'play-circle-o' | 'play2' | 'plug' | 'plus' | 'plus-circle' | 'plus-square' | 'plus-square-o' | 'podcast' | 'power-off' | 'print' | 'product-hunt' | 'profile' | 'project' | 'public-opinion' | 'puzzle-piece' | 'qq' | 'qrcode' | 'question' | 'question-circle' | 'question-circle2' | 'question2' | 'quora' | 'quote-left' | 'quote-right' | 'ra' | 'random' | 'rate' | 'ravelry' | 'realtime' | 'recycle' | 'reddit' | 'reddit-alien' | 'reddit-square' | 'refresh' | 'refresh2' | 'registered' | 'related-map' | 'reload' | 'remind' | 'renren' | 'repeat' | 'reply' | 'reply-all' | 'retention' | 'retweet' | 'right' | 'road' | 'rocket' | 'rss' | 'rss-square' | 'rub' | 's15' | 'safari' | 'sales' | 'growth' | 'save' | 'scribd' | 'search' | 'search-minus' | 'search-peoples' | 'search-plus' | 'sellsy' | 'send' | 'send-o' | 'sequence' | 'sequence-down' | 'sequence-up' | 'server' | 'setting' | 'shapes' | 'share' | 'share-alt' | 'share-alt-square' | 'share-square' | 'share-square-o' | 'share2' | 'shield' | 'ship' | 'shirtsinbulk' | 'shopping-bag' | 'shopping-basket' | 'shopping-cart' | 'shower' | 'sign-in' | 'sign-out' | 'signal' | 'signing' | 'simplybuilt' | 'sitemap' | 'skyatlas' | 'skype' | 'slack' | 'sliders' | 'slideshare' | 'smile-o' | 'snapchat' | 'snapchat-ghost' | 'snapchat-square' | 'snowflake-o' | 'sort' | 'sort-alpha-asc' | 'sort-alpha-desc' | 'sort-amount-asc' | 'sort-amount-desc' | 'sort-desc' | 'sort-numeric-asc' | 'sort-numeric-desc' | 'sort-up' | 'soundcloud' | 'space-shuttle' | 'speaker' | 'spinner' | 'spoon' | 'spotify' | 'square' | 'square-o' | 'squares' | 'stack-exchange' | 'stack-overflow' | 'star' | 'star-half' | 'star-half-o' | 'star-o' | 'steam' | 'steam-square' | 'step-backward' | 'step-forward' | 'stethoscope' | 'sticky-note' | 'sticky-note-o' | 'stop' | 'stop-circle' | 'stop-circle-o' | 'stop2' | 'street-view' | 'strikethrough' | 'stumbleupon' | 'stumbleupon-circle' | 'subscript' | 'subway' | 'suitcase' | 'sun-o' | 'superpowers' | 'superscript' | 'support' | 'table' | 'tablet' | 'tag' | 'tag-area' | 'tag-authorize' | 'tag-unauthorize' | 'tags' | 'target' | 'task' | 'tasks' | 'telegram' | 'tencent-weibo' | 'terminal' | 'terminal-line' | 'text-height' | 'text-width' | 'th' | 'th-large' | 'th-list' | 'th2' | 'themeisle' | 'thermometer' | 'thermometer-0' | 'thermometer-1' | 'thermometer-2' | 'thermometer-3' | 'thumb-tack' | 'thumbs-down' | 'thumbs-o-down' | 'thumbs-o-up' | 'thumbs-up' | 'ticket' | 'times-circle' | 'times-circle-o' | 'tint' | 'tmall' | 'toggle-down' | 'toggle-left' | 'toggle-off' | 'toggle-on' | 'toggle-right' | 'toggle-up' | 'trademark' | 'train' | 'transgender-alt' | 'trash' | 'trash-o' | 'trash2' | 'tree' | 'tree-close' | 'tree-open' | 'trello' | 'trend' | 'tripadvisor' | 'trophy' | 'truck' | 'try' | 'tty' | 'tumblr' | 'tumblr-square' | 'tv' | 'twinkle-star' | 'twitch' | 'twitter' | 'twitter-square' | 'umbrella' | 'underline' | 'undo' | 'universal-access' | 'unlink' | 'unlock' | 'unlock-alt' | 'up' | 'upload' | 'upload2' | 'usb' | 'usd' | 'user' | 'user-analysis' | 'user-circle' | 'user-circle-o' | 'user-info' | 'user-md' | 'user-o' | 'user-plus' | 'user-secret' | 'user-times' | 'vcard' | 'vcard-o' | 'venus' | 'venus-double' | 'venus-mars' | 'viacoin' | 'viadeo' | 'viadeo-square' | 'video-camera' | 'views-authorize' | 'views-unauthorize' | 'vimeo' | 'vimeo-square' | 'vine' | 'vk' | 'volume-control-phone' | 'volume-down' | 'volume-off' | 'volume-up' | 'warning' | 'weapp' | 'web' | 'wechat' | 'weibo' | 'whatsapp' | 'wheelchair' | 'wheelchair-alt' | 'wifi' | 'wikipedia-w' | 'window-close' | 'window-close-o' | 'window-maximize' | 'window-minimize' | 'window-restore' | 'windows' | 'wordpress' | 'wpbeginner' | 'wpexplorer' | 'wpforms' | 'wrench' | 'xing' | 'xing-square' | 'yahoo' | 'yc' | 'yc-square' | 'yelp' | 'yoast' | 'youtube' | 'youtube-play' | 'youtube-square';
|
package/esm/@types/icons.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare type IconNames = '500px' | 'address-book' | 'address-book-o' | 'adjust' | 'adn' | 'align-center' | 'align-justify' | 'align-left' | 'align-right' | 'alipay' | 'amazon' | 'ambulance' | 'anchor' | 'android' | 'android2' | 'angellist' | 'angle-double-down' | 'angle-double-left' | 'angle-double-right' | 'angle-double-up' | 'angle-down' | 'angle-left' | 'angle-right' | 'angle-up' | 'apple' | 'archive' | 'area-chart' | 'arrow-circle-down' | 'arrow-circle-left' | 'arrow-circle-o-down' | 'arrow-circle-o-left' | 'arrow-circle-o-right' | 'arrow-circle-o-up' | 'arrow-circle-right' | 'arrow-circle-up' | 'arrow-down' | 'arrow-down-line' | 'arrow-down2' | 'arrow-left' | 'arrow-left-line' | 'arrow-right' | 'arrow-right-line' | 'arrow-up' | 'arrow-up-line' | 'arrow-up2' | 'arrows' | 'arrows-alt' | 'arrows-h' | 'arrows-v' | 'asl-interpreting' | 'assistive-listening-systems' | 'asterisk' | 'at' | 'attachment' | 'attribution' | 'audio-description' | 'avatar' | 'back-arrow' | 'backward' | 'balance-scale' | 'ban' | 'bandcamp' | 'bank' | 'bar-chart' | 'bar-chart-ranking' | 'barcode' | 'bars' | 'battery' | 'battery-0' | 'battery-1' | 'battery-2' | 'battery-3' | 'bed' | 'beer' | 'behance' | 'behance-square' | 'bell' | 'bell-o' | 'bell-slash' | 'bell-slash-o' | 'bicycle' | 'binoculars' | 'birthday-cake' | 'bitbucket' | 'bitbucket-square' | 'black-tie' | 'blind' | 'bluetooth' | 'bluetooth-b' | 'bold' | 'bolt' | 'bomb' | 'book' | 'book2' | 'bookmark' | 'bookmark-o' | 'braille' | 'briefcase' | 'btc' | 'btn-off' | 'btn-on' | 'bug' | 'building' | 'building-o' | 'building2' | 'bullhorn' | 'bullseye' | 'bus' | 'buysellads' | 'cab' | 'calculator' | 'calendar' | 'calendar-check-o' | 'calendar-minus-o' | 'calendar-o' | 'calendar-plus-o' | 'calendar-times-o' | 'camera' | 'camera-retro' | 'car' | 'caret-down' | 'caret-left' | 'caret-right' | 'caret-up' | 'cart-arrow-down' | 'cart-plus' | 'cc' | 'cc-amex' | 'cc-diners-club' | 'cc-discover' | 'cc-jcb' | 'cc-mastercard' | 'cc-paypal' | 'cc-stripe' | 'cc-visa' | 'certificate' | 'character-area' | 'character-authorize' | 'charts' | 'charts-line' | 'check' | 'check-circle' | 'check-circle-o' | 'check-square' | 'check-square-o' | 'check2' | 'chevron-circle-down' | 'chevron-circle-left' | 'chevron-circle-right' | 'chevron-circle-up' | 'chevron-down' | 'chevron-left' | 'chevron-right' | 'chevron-up' | 'child' | 'chrome' | 'circle' | 'circle-o' | 'circle-o-notch' | 'circle-thin' | 'clock-o' | 'clone' | 'close' | 'close-circle' | 'cloud' | 'cloud-download' | 'cloud-upload' | 'cny' | 'code' | 'code-fork' | 'codepen' | 'codiepie' | 'coffee' | 'cog' | 'cogs' | 'coincide' | 'collasped' | 'collasped-o' | 'columns' | 'comment' | 'comment-o' | 'commenting' | 'commenting-o' | 'comments' | 'comments-o' | 'compass' | 'compress' | 'connectdevelop' | 'contao' | 'copy' | 'copy-o' | 'copyright' | 'creative' | 'creative-commons' | 'credit-card' | 'credit-card-alt' | 'crop' | 'crosshairs' | 'css3' | 'cube' | 'cubes' | 'cut' | 'cutlery' | 'dashboard' | 'dashcube' | 'data-authorize' | 'data-decrease' | 'data-increase' | 'database' | 'deaf' | 'dedent' | 'delicious' | 'desktop' | 'detail' | 'deviantart' | 'diamond' | 'digg' | 'dot-circle-o' | 'down' | 'download' | 'download2' | 'dribbble' | 'dropbox' | 'drupal' | 'edge' | 'edit' | 'edit2' | 'eercast' | 'eject' | 'ellipsis-h' | 'ellipsis-v' | 'envelope' | 'envelope-o' | 'envelope-open' | 'envelope-open-o' | 'envelope-square' | 'envira' | 'eraser' | 'etsy' | 'eur' | 'exchange' | 'exclamation' | 'exclamation-circle' | 'exclamation-circle2' | 'exclamation-triangle' | 'exit' | 'expand' | 'expand-o' | 'expeditedssl' | 'explore' | 'export' | 'external-link' | 'external-link-square' | 'eye' | 'eye-slash' | 'eyedropper' | 'fa' | 'facebook' | 'facebook-official' | 'facebook-square' | 'fast-backward' | 'fast-forward' | 'fax' | 'female' | 'fighter-jet' | 'file' | 'file-audio-o' | 'file-code-o' | 'file-download' | 'file-excel-o' | 'file-image-o' | 'file-movie-o' | 'file-o' | 'file-pdf-o' | 'file-powerpoint-o' | 'file-text' | 'file-text-o' | 'file-upload' | 'file-word-o' | 'file-zip-o' | 'film' | 'filter' | 'fire' | 'fire-extinguisher' | 'firefox' | 'first-order' | 'flag' | 'flag-checkered' | 'flag-o' | 'flask' | 'flickr' | 'flow' | 'folder' | 'folder-o' | 'folder-open' | 'folder-open-o' | 'font' | 'fonticons' | 'fort-awesome' | 'forumbee' | 'forward' | 'foursquare' | 'frame' | 'free-code-camp' | 'frown-o' | 'futbol-o' | 'gamepad' | 'gavel' | 'gbp' | 'ge' | 'gear' | 'gear-circle' | 'gear2' | 'gears2' | 'genderless' | 'get-pocket' | 'gg' | 'gg-circle' | 'gift' | 'git' | 'git-square' | 'github' | 'github-alt' | 'github-square' | 'gitlab' | 'gittip' | 'glass' | 'glide' | 'glide-g' | 'globe' | 'globe2' | 'good' | 'google' | 'google-plus' | 'google-plus-circle' | 'google-plus-square' | 'google-wallet' | 'grav' | 'group' | 'h-square' | 'hand-grab-o' | 'hand-lizard-o' | 'hand-o-down' | 'hand-o-left' | 'hand-o-right' | 'hand-o-up' | 'hand-peace-o' | 'hand-pointer-o' | 'hand-scissors-o' | 'hand-spock-o' | 'hand-stop-o' | 'handshake-o' | 'hashtag' | 'hdd-o' | 'header' | 'headphones' | 'heart' | 'heart-o' | 'heartbeat' | 'help-o' | 'history' | 'home' | 'hospital-o' | 'hourglass' | 'hourglass-1' | 'hourglass-2' | 'hourglass-3' | 'hourglass-o' | 'houzz' | 'html5' | 'i-cursor' | 'id-badge' | 'id-card' | 'id-card-o' | 'id-info' | 'id-mapping' | 'ils' | 'image' | 'imdb' | 'import' | 'inbox' | 'indent' | 'industry' | 'info' | 'info-circle' | 'inr' | 'instagram' | 'internet-explorer' | 'intersex' | 'ios' | 'ioxhost' | 'italic' | 'joomla' | 'jsfiddle' | 'key' | 'keyboard-o' | 'krw' | 'language' | 'laptop' | 'lastfm' | 'lastfm-square' | 'leaf' | 'leanpub' | 'left' | 'lemon-o' | 'level-down' | 'level-up' | 'lightbulb-o' | 'line-chart' | 'link' | 'linkedin' | 'linkedin-square' | 'linode' | 'linux' | 'list' | 'list-alt' | 'list-ol' | 'list-ul' | 'location-arrow' | 'lock' | 'logo-ads' | 'logo-analytics' | 'logo-dmp' | 'logo-mobile' | 'logo-shop' | 'logo-survey' | 'logo-video' | 'long-arrow-down' | 'long-arrow-left' | 'long-arrow-right' | 'long-arrow-up' | 'low-vision' | 'magic' | 'magic2' | 'magnet' | 'male' | 'map' | 'map-marker' | 'map-o' | 'map-pin' | 'map-signs' | 'mars' | 'mars-double' | 'mars-stroke' | 'mars-stroke-h' | 'mars-stroke-v' | 'maxcdn' | 'meanpath' | 'medium' | 'medkit' | 'meetup' | 'meh-o' | 'mercury' | 'microchip' | 'microphone' | 'microphone-slash' | 'minus' | 'minus-circle' | 'minus-square' | 'minus-square-o' | 'mixcloud' | 'mobile' | 'modx' | 'money' | 'moon-o' | 'more' | 'mortar-board' | 'motorcycle' | 'mouse-pointer' | 'multiple-lines-chart' | 'music' | 'neuter' | 'newspaper-o' | 'object-group' | 'object-ungroup' | 'odnoklassniki' | 'odnoklassniki-square' | 'off' | 'ok-circle' | 'opencart' | 'openid' | 'opera' | 'optin-monster' | 'order-form' | 'page-end' | 'page-next' | 'page-previous' | 'page-top' | 'pagelines' | 'paint-brush' | 'paperclip' | 'paragraph' | 'paste' | 'pause' | 'pause-circle' | 'pause-circle-o' | 'paw' | 'paypal' | 'pc' | 'pencil' | 'pencil-square' | 'people-group' | 'peoples' | 'peoples-map' | 'percent' | 'phone' | 'phone-square' | 'pie-chart' | 'pied-piper' | 'pied-piper-alt' | 'pied-piper-pp' | 'pinterest' | 'pinterest-p' | 'pinterest-square' | 'plane' | 'play' | 'play-circle' | 'play-circle-o' | 'play2' | 'plug' | 'plus' | 'plus-circle' | 'plus-square' | 'plus-square-o' | 'podcast' | 'power-off' | 'print' | 'product-hunt' | 'profile' | 'project' | 'public-opinion' | 'puzzle-piece' | 'qq' | 'qrcode' | 'question' | 'question-circle' | 'question-circle2' | 'question2' | 'quora' | 'quote-left' | 'quote-right' | 'ra' | 'random' | 'rate' | 'ravelry' | 'realtime' | 'recycle' | 'reddit' | 'reddit-alien' | 'reddit-square' | 'refresh' | 'refresh2' | 'registered' | 'related-map' | 'reload' | 'remind' | 'renren' | 'repeat' | 'reply' | 'reply-all' | 'retention' | 'retweet' | 'right' | 'road' | 'rocket' | 'rss' | 'rss-square' | 'rub' | 's15' | 'safari' | 'sales' | 'growth' | 'save' | 'scribd' | 'search' | 'search-minus' | 'search-peoples' | 'search-plus' | 'sellsy' | 'send' | 'send-o' | 'sequence' | 'sequence-down' | 'sequence-up' | 'server' | 'setting' | 'shapes' | 'share' | 'share-alt' | 'share-alt-square' | 'share-square' | 'share-square-o' | 'share2' | 'shield' | 'ship' | 'shirtsinbulk' | 'shopping-bag' | 'shopping-basket' | 'shopping-cart' | 'shower' | 'sign-in' | 'sign-out' | 'signal' | 'signing' | 'simplybuilt' | 'sitemap' | 'skyatlas' | 'skype' | 'slack' | 'sliders' | 'slideshare' | 'smile-o' | 'snapchat' | 'snapchat-ghost' | 'snapchat-square' | 'snowflake-o' | 'sort' | 'sort-alpha-asc' | 'sort-alpha-desc' | 'sort-amount-asc' | 'sort-amount-desc' | 'sort-desc' | 'sort-numeric-asc' | 'sort-numeric-desc' | 'sort-up' | 'soundcloud' | 'space-shuttle' | 'speaker' | 'spinner' | 'spoon' | 'spotify' | 'square' | 'square-o' | 'squares' | 'stack-exchange' | 'stack-overflow' | 'star' | 'star-half' | 'star-half-o' | 'star-o' | 'steam' | 'steam-square' | 'step-backward' | 'step-forward' | 'stethoscope' | 'sticky-note' | 'sticky-note-o' | 'stop' | 'stop-circle' | 'stop-circle-o' | 'stop2' | 'street-view' | 'strikethrough' | 'stumbleupon' | 'stumbleupon-circle' | 'subscript' | 'subway' | 'suitcase' | 'sun-o' | 'superpowers' | 'superscript' | 'support' | 'table' | 'tablet' | 'tag' | 'tag-area' | 'tag-authorize' | 'tag-unauthorize' | 'tags' | 'target' | 'task' | 'tasks' | 'telegram' | 'tencent-weibo' | 'terminal' | 'terminal-line' | 'text-height' | 'text-width' | 'th' | 'th-large' | 'th-list' | 'th2' | 'themeisle' | 'thermometer' | 'thermometer-0' | 'thermometer-1' | 'thermometer-2' | 'thermometer-3' | 'thumb-tack' | 'thumbs-down' | 'thumbs-o-down' | 'thumbs-o-up' | 'thumbs-up' | 'ticket' | 'times-circle' | 'times-circle-o' | 'tint' | 'tmall' | 'toggle-down' | 'toggle-left' | 'toggle-off' | 'toggle-on' | 'toggle-right' | 'toggle-up' | 'trademark' | 'train' | 'transgender-alt' | 'trash' | 'trash-o' | 'trash2' | 'tree' | 'tree-close' | 'tree-open' | 'trello' | 'trend' | 'tripadvisor' | 'trophy' | 'truck' | 'try' | 'tty' | 'tumblr' | 'tumblr-square' | 'tv' | 'twinkle-star' | 'twitch' | 'twitter' | 'twitter-square' | 'umbrella' | 'underline' | 'undo' | 'universal-access' | 'unlink' | 'unlock' | 'unlock-alt' | 'up' | 'upload' | 'upload2' | 'usb' | 'usd' | 'user' | 'user-analysis' | 'user-circle' | 'user-circle-o' | 'user-info' | 'user-md' | 'user-o' | 'user-plus' | 'user-secret' | 'user-times' | 'vcard' | 'vcard-o' | 'venus' | 'venus-double' | 'venus-mars' | 'viacoin' | 'viadeo' | 'viadeo-square' | 'video-camera' | 'views-authorize' | 'views-unauthorize' | 'vimeo' | 'vimeo-square' | 'vine' | 'vk' | 'volume-control-phone' | 'volume-down' | 'volume-off' | 'volume-up' | 'warning' | 'weapp' | 'web' | 'wechat' | 'weibo' | 'whatsapp' | 'wheelchair' | 'wheelchair-alt' | 'wifi' | 'wikipedia-w' | 'window-close' | 'window-close-o' | 'window-maximize' | 'window-minimize' | 'window-restore' | 'windows' | 'wordpress' | 'wpbeginner' | 'wpexplorer' | 'wpforms' | 'wrench' | 'xing' | 'xing-square' | 'yahoo' | 'yc' | 'yc-square' | 'yelp' | 'yoast' | 'youtube' | 'youtube-play' | 'youtube-square';
|