react-jupiter 6.0.0-beta.1 → 6.0.0-beta.10
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/accordion/index.js +25 -0
- package/{src/components/accordion → accordion}/index.styles.js +6 -6
- package/accordion/panel.js +41 -0
- package/avatar/index.js +41 -0
- package/avatar/index.styles.js +17 -0
- package/avatar/theme.js +13 -0
- package/button/index.js +210 -0
- package/button/index.styles.js +104 -0
- package/button/theme.js +58 -0
- package/button/utils.js +12 -0
- package/card/card-template/index.js +74 -0
- package/card/card-template/index.stories.js +110 -0
- package/card/card-template/index.style.js +25 -0
- package/card/card-template/index.test.js +85 -0
- package/card/event-card/constants.js +3 -0
- package/card/event-card/event-card-label/index.js +24 -0
- package/card/event-card/event-card-label/index.style.js +10 -0
- package/card/event-card/event-card-label/index.test.js +23 -0
- package/card/event-card/index.js +227 -0
- package/card/event-card/index.stories.js +166 -0
- package/card/event-card/index.style.js +129 -0
- package/card/event-card/index.test.js +79 -0
- package/card/index.js +16 -0
- package/card/organization-card/index.js +59 -0
- package/card/organization-card/index.stories.js +49 -0
- package/card/organization-card/index.style.js +10 -0
- package/card/organization-card/index.test.js +25 -0
- package/card/orgnizer-card/buttons.js +48 -0
- package/card/orgnizer-card/index.js +179 -0
- package/card/orgnizer-card/index.stories.js +81 -0
- package/card/orgnizer-card/index.style.js +58 -0
- package/cover/index.js +74 -0
- package/cover/index.style.js +48 -0
- package/display/index.js +42 -0
- package/display/index.style.js +79 -0
- package/file-item/fileImgIcon.js +37 -0
- package/{src/components/file-item → file-item}/fileImgsFont.js +4 -4
- package/file-item/index.js +101 -0
- package/file-item/index.style.js +31 -0
- package/file-item/theme.js +12 -0
- package/file-item/utils.js +3 -0
- package/form/captcha/index.js +86 -0
- package/form/captcha/index.stories.js +42 -0
- package/form/captcha/index.style.js +38 -0
- package/form/captcha/index.test.js +31 -0
- package/form/checkbox/checkbox-option.js +41 -0
- package/form/checkbox/checkbox.js +54 -0
- package/form/checkbox/index.js +10 -0
- package/form/checkbox/index.stories.js +121 -0
- package/form/checkbox/index.style.js +62 -0
- package/form/dropdown/index.js +10 -0
- package/form/dropdown/index.stories.js +119 -0
- package/form/dropdown/index.style.js +57 -0
- package/form/dropdown/index.test.js +20 -0
- package/form/dropdown/option.js +22 -0
- package/form/dropdown/select.js +68 -0
- package/form/errorMsg.js +21 -0
- package/form/index.js +22 -0
- package/form/radio/index.js +10 -0
- package/form/radio/index.stories.js +119 -0
- package/form/radio/index.style.js +61 -0
- package/form/radio/radio-option.js +45 -0
- package/form/radio/radio.js +56 -0
- package/form/text-input/index.js +92 -0
- package/form/text-input/index.stories.js +77 -0
- package/form/text-input/index.style.js +57 -0
- package/form/text-input/index.test.js +63 -0
- package/form/textarea/index.js +59 -0
- package/form/textarea/index.stories.js +90 -0
- package/form/textarea/index.style.js +25 -0
- package/form/theme.js +16 -0
- package/form-v7/captcha/index.js +101 -0
- package/form-v7/captcha/index.stories.js +60 -0
- package/form-v7/captcha/index.style.js +38 -0
- package/form-v7/captcha/index.test.js +31 -0
- package/form-v7/checkbox/checkbox-option.js +44 -0
- package/form-v7/checkbox/checkbox.js +70 -0
- package/form-v7/checkbox/index.js +10 -0
- package/form-v7/checkbox/index.stories.js +113 -0
- package/form-v7/checkbox/index.style.js +62 -0
- package/form-v7/dropdown/index.js +10 -0
- package/form-v7/dropdown/index.stories.js +130 -0
- package/form-v7/dropdown/index.style.js +57 -0
- package/form-v7/dropdown/index.test.js +20 -0
- package/form-v7/dropdown/option.js +18 -0
- package/form-v7/dropdown/select.js +85 -0
- package/form-v7/errorMsg.js +21 -0
- package/form-v7/file-input/index.js +73 -0
- package/form-v7/file-input/index.stories.js +73 -0
- package/form-v7/file-input/index.style.js +62 -0
- package/form-v7/file-input/index.test.js +63 -0
- package/form-v7/form/index.stories.js +276 -0
- package/form-v7/index.js +25 -0
- package/form-v7/index.style.js +11 -0
- package/form-v7/label/index.js +31 -0
- package/form-v7/label/index.style.js +12 -0
- package/form-v7/radio/index.js +10 -0
- package/form-v7/radio/index.stories.js +117 -0
- package/form-v7/radio/index.style.js +61 -0
- package/form-v7/radio/radio-option.js +45 -0
- package/form-v7/radio/radio.js +75 -0
- package/form-v7/text-input/index.js +132 -0
- package/form-v7/text-input/index.stories.js +96 -0
- package/form-v7/text-input/index.style.js +49 -0
- package/form-v7/text-input/index.test.js +63 -0
- package/form-v7/textarea/index.js +71 -0
- package/form-v7/textarea/index.stories.js +91 -0
- package/form-v7/textarea/index.style.js +25 -0
- package/form-v7/theme.js +20 -0
- package/{src/components/globalStyle.js → globalStyle.js} +4 -4
- package/grid/index.js +83 -0
- package/icon/iconFont.js +1054 -0
- package/icon/index.js +121 -0
- package/icon/index.styles.js +12 -0
- package/icon/theme.js +23 -0
- package/index.js +75 -0
- package/modal/index.js +100 -0
- package/modal/index.style.js +40 -0
- package/modal/theme.js +11 -0
- package/numeric-summery-report/index.js +28 -0
- package/numeric-summery-report/index.style.js +16 -0
- package/package.json +3 -3
- package/product-menu/index.js +10 -0
- package/product-menu/index.style.js +38 -0
- package/product-menu/menu-item.js +23 -0
- package/product-menu/menu.js +88 -0
- package/product-menu/theme.js +16 -0
- package/product-owner/index.js +85 -0
- package/product-owner/index.style.js +16 -0
- package/product-properties/index.js +65 -0
- package/product-properties/index.style.js +14 -0
- package/product-properties/product-property/index.js +49 -0
- package/product-properties/product-property/index.style.js +9 -0
- package/progress-bar/index.js +46 -0
- package/{dist/components/progress-bar → progress-bar}/index.styles.js +11 -11
- package/responsive/index.js +44 -0
- package/show-date/index.js +25 -0
- package/spacing/core.js +106 -0
- package/spacing/index.js +10 -0
- package/spacing/margin/index.js +26 -0
- package/spacing/padding/index.js +26 -0
- package/table/actionCell.js +57 -0
- package/table/index.js +56 -0
- package/{src/components/table → table}/index.style.js +31 -31
- package/table/tableHeaderRow.js +28 -0
- package/table/tableRow.js +60 -0
- package/table/theme.js +8 -0
- package/tabs/index.js +10 -0
- package/tabs/index.style.js +35 -0
- package/tabs/tabPanel.js +17 -0
- package/tabs/tabs.js +71 -0
- package/tabs/theme.js +10 -0
- package/themes.js +97 -0
- package/titled-avatar/index.js +48 -0
- package/titled-avatar/index.style.js +30 -0
- package/typography/heading/index.js +59 -0
- package/typography/heading/index.stories.js +94 -0
- package/typography/heading/index.styles.js +69 -0
- package/typography/heading/index.test.js +122 -0
- package/typography/index.js +16 -0
- package/typography/link/index.js +82 -0
- package/typography/link/index.stories.js +70 -0
- package/typography/link/index.styles.js +8 -0
- package/typography/link/index.test.js +60 -0
- package/typography/paragraph/index.js +37 -0
- package/typography/paragraph/index.stories.js +56 -0
- package/typography/paragraph/index.styles.js +12 -0
- package/typography/paragraph/index.test.js +47 -0
- package/typography/text/index.js +156 -0
- package/typography/text/index.stories.js +196 -0
- package/typography/text/index.styles.js +73 -0
- package/typography/text/index.test.js +333 -0
- package/typography/theme.js +66 -0
- package/typography/utils.js +53 -0
- package/utils/date.js +7 -0
- package/utils/detectMobile.js +15 -0
- package/utils/index.js +7 -0
- package/utils/media-query.js +12 -0
- package/utils/numbers.js +25 -0
- package/utils/test.js +6 -0
- package/utils/theme.js +67 -0
- package/.babelrc +0 -12
- package/.env +0 -3
- package/.eslintignore +0 -2
- package/.eslintrc +0 -18
- package/.eslintrc.js +0 -47
- package/.eslintrc.json +0 -16
- package/.flowconfig +0 -0
- package/.storybook/main.js +0 -27
- package/.storybook/preview-head.html +0 -1
- package/.storybook/preview.js +0 -30
- package/.storybook/style.css +0 -9
- package/.vscode/settings.json +0 -4
- package/__mocks__/fileMock.js +0 -1
- package/config-overrides.js +0 -34
- package/dist/App.js +0 -13
- package/dist/components/accordion/index.js +0 -25
- package/dist/components/accordion/index.stories.js +0 -82
- package/dist/components/accordion/index.styles.js +0 -52
- package/dist/components/accordion/panel.js +0 -41
- package/dist/components/avatar/index.js +0 -41
- package/dist/components/avatar/index.stories.js +0 -59
- package/dist/components/avatar/index.styles.js +0 -17
- package/dist/components/avatar/index.test.js +0 -10
- package/dist/components/avatar/theme.js +0 -13
- package/dist/components/button/__snapshots__/index.test.js.snap +0 -489
- package/dist/components/button/index.js +0 -209
- package/dist/components/button/index.stories.js +0 -304
- package/dist/components/button/index.styles.js +0 -104
- package/dist/components/button/theme.js +0 -58
- package/dist/components/button/utils.js +0 -12
- package/dist/components/card/card-template/index.js +0 -74
- package/dist/components/card/card-template/index.stories.js +0 -110
- package/dist/components/card/card-template/index.style.js +0 -25
- package/dist/components/card/card-template/index.test.js +0 -85
- package/dist/components/card/event-card/constants.js +0 -3
- package/dist/components/card/event-card/event-card-label/index.js +0 -24
- package/dist/components/card/event-card/event-card-label/index.style.js +0 -10
- package/dist/components/card/event-card/event-card-label/index.test.js +0 -23
- package/dist/components/card/event-card/index.js +0 -227
- package/dist/components/card/event-card/index.stories.js +0 -166
- package/dist/components/card/event-card/index.style.js +0 -129
- package/dist/components/card/event-card/index.test.js +0 -79
- package/dist/components/card/index.js +0 -16
- package/dist/components/card/organization-card/index.js +0 -59
- package/dist/components/card/organization-card/index.stories.js +0 -49
- package/dist/components/card/organization-card/index.style.js +0 -10
- package/dist/components/card/organization-card/index.test.js +0 -25
- package/dist/components/card/orgnizer-card/buttons.js +0 -48
- package/dist/components/card/orgnizer-card/index.js +0 -179
- package/dist/components/card/orgnizer-card/index.stories.js +0 -81
- package/dist/components/card/orgnizer-card/index.style.js +0 -58
- package/dist/components/cover/index.js +0 -74
- package/dist/components/cover/index.style.js +0 -48
- package/dist/components/cover/index.test.js +0 -25
- package/dist/components/display/index.js +0 -42
- package/dist/components/display/index.style.js +0 -79
- package/dist/components/file-item/fileImgIcon.js +0 -37
- package/dist/components/file-item/fileImgsFont.js +0 -800
- package/dist/components/file-item/index.js +0 -101
- package/dist/components/file-item/index.stories.js +0 -71
- package/dist/components/file-item/index.style.js +0 -31
- package/dist/components/file-item/index.test.js +0 -106
- package/dist/components/file-item/theme.js +0 -12
- package/dist/components/file-item/utils.js +0 -3
- package/dist/components/form/captcha/index.js +0 -86
- package/dist/components/form/captcha/index.stories.js +0 -42
- package/dist/components/form/captcha/index.style.js +0 -38
- package/dist/components/form/captcha/index.test.js +0 -31
- package/dist/components/form/checkbox/checkbox-option.js +0 -41
- package/dist/components/form/checkbox/checkbox.js +0 -54
- package/dist/components/form/checkbox/index.js +0 -10
- package/dist/components/form/checkbox/index.stories.js +0 -121
- package/dist/components/form/checkbox/index.style.js +0 -62
- package/dist/components/form/dropdown/index.js +0 -10
- package/dist/components/form/dropdown/index.stories.js +0 -119
- package/dist/components/form/dropdown/index.style.js +0 -57
- package/dist/components/form/dropdown/index.test.js +0 -20
- package/dist/components/form/dropdown/option.js +0 -22
- package/dist/components/form/dropdown/select.js +0 -68
- package/dist/components/form/errorMsg.js +0 -21
- package/dist/components/form/index.js +0 -22
- package/dist/components/form/radio/index.js +0 -10
- package/dist/components/form/radio/index.stories.js +0 -119
- package/dist/components/form/radio/index.style.js +0 -61
- package/dist/components/form/radio/radio-option.js +0 -45
- package/dist/components/form/radio/radio.js +0 -56
- package/dist/components/form/text-input/index.js +0 -92
- package/dist/components/form/text-input/index.stories.js +0 -77
- package/dist/components/form/text-input/index.style.js +0 -57
- package/dist/components/form/text-input/index.test.js +0 -63
- package/dist/components/form/textarea/index.js +0 -59
- package/dist/components/form/textarea/index.stories.js +0 -90
- package/dist/components/form/textarea/index.style.js +0 -25
- package/dist/components/form/theme.js +0 -16
- package/dist/components/form-v7/captcha/index.js +0 -101
- package/dist/components/form-v7/captcha/index.stories.js +0 -60
- package/dist/components/form-v7/captcha/index.style.js +0 -38
- package/dist/components/form-v7/captcha/index.test.js +0 -31
- package/dist/components/form-v7/checkbox/checkbox-option.js +0 -44
- package/dist/components/form-v7/checkbox/checkbox.js +0 -70
- package/dist/components/form-v7/checkbox/index.js +0 -10
- package/dist/components/form-v7/checkbox/index.stories.js +0 -113
- package/dist/components/form-v7/checkbox/index.style.js +0 -62
- package/dist/components/form-v7/dropdown/index.js +0 -10
- package/dist/components/form-v7/dropdown/index.stories.js +0 -130
- package/dist/components/form-v7/dropdown/index.style.js +0 -57
- package/dist/components/form-v7/dropdown/index.test.js +0 -20
- package/dist/components/form-v7/dropdown/option.js +0 -18
- package/dist/components/form-v7/dropdown/select.js +0 -85
- package/dist/components/form-v7/errorMsg.js +0 -21
- package/dist/components/form-v7/file-input/index.js +0 -73
- package/dist/components/form-v7/file-input/index.stories.js +0 -73
- package/dist/components/form-v7/file-input/index.style.js +0 -62
- package/dist/components/form-v7/file-input/index.test.js +0 -63
- package/dist/components/form-v7/form/index.stories.js +0 -276
- package/dist/components/form-v7/index.js +0 -25
- package/dist/components/form-v7/index.style.js +0 -11
- package/dist/components/form-v7/label/index.js +0 -31
- package/dist/components/form-v7/label/index.style.js +0 -12
- package/dist/components/form-v7/radio/index.js +0 -10
- package/dist/components/form-v7/radio/index.stories.js +0 -117
- package/dist/components/form-v7/radio/index.style.js +0 -61
- package/dist/components/form-v7/radio/radio-option.js +0 -45
- package/dist/components/form-v7/radio/radio.js +0 -75
- package/dist/components/form-v7/text-input/index.js +0 -132
- package/dist/components/form-v7/text-input/index.stories.js +0 -96
- package/dist/components/form-v7/text-input/index.style.js +0 -49
- package/dist/components/form-v7/text-input/index.test.js +0 -63
- package/dist/components/form-v7/textarea/index.js +0 -71
- package/dist/components/form-v7/textarea/index.stories.js +0 -91
- package/dist/components/form-v7/textarea/index.style.js +0 -25
- package/dist/components/form-v7/theme.js +0 -20
- package/dist/components/globalStyle.js +0 -28
- package/dist/components/grid/index.js +0 -83
- package/dist/components/icon/iconFont.js +0 -806
- package/dist/components/icon/index.js +0 -116
- package/dist/components/icon/index.stories.js +0 -45
- package/dist/components/icon/index.styles.js +0 -12
- package/dist/components/icon/index.test.js +0 -66
- package/dist/components/icon/theme.js +0 -23
- package/dist/components/index.js +0 -75
- package/dist/components/modal/index.js +0 -100
- package/dist/components/modal/index.stories.js +0 -86
- package/dist/components/modal/index.style.js +0 -40
- package/dist/components/modal/theme.js +0 -11
- package/dist/components/numeric-summery-report/index.js +0 -28
- package/dist/components/numeric-summery-report/index.stories.js +0 -37
- package/dist/components/numeric-summery-report/index.style.js +0 -16
- package/dist/components/numeric-summery-report/index.test.js +0 -22
- package/dist/components/product-menu/index.js +0 -10
- package/dist/components/product-menu/index.stories.js +0 -33
- package/dist/components/product-menu/index.style.js +0 -38
- package/dist/components/product-menu/index.test.js +0 -27
- package/dist/components/product-menu/menu-item.js +0 -23
- package/dist/components/product-menu/menu.js +0 -88
- package/dist/components/product-menu/theme.js +0 -16
- package/dist/components/product-owner/index.js +0 -85
- package/dist/components/product-owner/index.style.js +0 -16
- package/dist/components/product-owner/index.test.js +0 -75
- package/dist/components/product-properties/index.js +0 -65
- package/dist/components/product-properties/index.stories.js +0 -52
- package/dist/components/product-properties/index.style.js +0 -14
- package/dist/components/product-properties/index.test.js +0 -31
- package/dist/components/product-properties/product-property/index.js +0 -49
- package/dist/components/product-properties/product-property/index.style.js +0 -9
- package/dist/components/progress-bar/index.js +0 -46
- package/dist/components/progress-bar/index.stories.js +0 -33
- package/dist/components/responsive/index.js +0 -44
- package/dist/components/show-date/index.js +0 -25
- package/dist/components/show-date/index.stories.js +0 -51
- package/dist/components/show-date/index.test.js +0 -24
- package/dist/components/spacing/core.js +0 -106
- package/dist/components/spacing/index.js +0 -10
- package/dist/components/spacing/margin/index.js +0 -26
- package/dist/components/spacing/padding/index.js +0 -26
- package/dist/components/storybook.css +0 -54
- package/dist/components/table/actionCell.js +0 -57
- package/dist/components/table/index.js +0 -56
- package/dist/components/table/index.stories.js +0 -188
- package/dist/components/table/index.style.js +0 -107
- package/dist/components/table/index.test.js +0 -119
- package/dist/components/table/tableHeaderRow.js +0 -28
- package/dist/components/table/tableRow.js +0 -60
- package/dist/components/table/theme.js +0 -8
- package/dist/components/tabs/index.js +0 -10
- package/dist/components/tabs/index.stories.js +0 -61
- package/dist/components/tabs/index.style.js +0 -35
- package/dist/components/tabs/index.test.js +0 -30
- package/dist/components/tabs/tabPanel.js +0 -17
- package/dist/components/tabs/tabs.js +0 -71
- package/dist/components/tabs/theme.js +0 -10
- package/dist/components/themes.js +0 -97
- package/dist/components/titled-avatar/index.js +0 -48
- package/dist/components/titled-avatar/index.stories.js +0 -52
- package/dist/components/titled-avatar/index.style.js +0 -30
- package/dist/components/titled-avatar/index.test.js +0 -25
- package/dist/components/typography/heading/index.js +0 -59
- package/dist/components/typography/heading/index.stories.js +0 -94
- package/dist/components/typography/heading/index.styles.js +0 -69
- package/dist/components/typography/heading/index.test.js +0 -122
- package/dist/components/typography/index.js +0 -16
- package/dist/components/typography/link/index.js +0 -82
- package/dist/components/typography/link/index.stories.js +0 -70
- package/dist/components/typography/link/index.styles.js +0 -8
- package/dist/components/typography/link/index.test.js +0 -60
- package/dist/components/typography/paragraph/index.js +0 -37
- package/dist/components/typography/paragraph/index.stories.js +0 -56
- package/dist/components/typography/paragraph/index.styles.js +0 -12
- package/dist/components/typography/paragraph/index.test.js +0 -47
- package/dist/components/typography/text/index.js +0 -156
- package/dist/components/typography/text/index.stories.js +0 -196
- package/dist/components/typography/text/index.styles.js +0 -73
- package/dist/components/typography/text/index.test.js +0 -333
- package/dist/components/typography/theme.js +0 -66
- package/dist/components/typography/utils.js +0 -53
- package/dist/components/typography/utils.test.js +0 -188
- package/dist/components/utils/date.js +0 -7
- package/dist/components/utils/date.test.js +0 -15
- package/dist/components/utils/detectMobile.js +0 -15
- package/dist/components/utils/index.js +0 -7
- package/dist/components/utils/media-query.js +0 -12
- package/dist/components/utils/numbers.js +0 -25
- package/dist/components/utils/test.js +0 -6
- package/dist/components/utils/theme.js +0 -67
- package/dist/docs/App.css +0 -33
- package/dist/docs/App.js +0 -52
- package/dist/docs/assets/ads-label.svg +0 -13
- package/dist/docs/assets/avatar-sample.jpeg +0 -0
- package/dist/docs/assets/cover-sample.png +0 -0
- package/dist/docs/assets/fonts/filesImgs.woff +0 -0
- package/dist/docs/assets/fonts/icomoon.woff +0 -0
- package/dist/docs/assets/fonts/iransharp_bold_web.woff +0 -0
- package/dist/docs/assets/fonts/iransharp_bold_web.woff2 +0 -0
- package/dist/docs/assets/fonts/iransharp_regular_web.woff +0 -0
- package/dist/docs/assets/fonts/iransharp_regular_web.woff2 +0 -0
- package/dist/docs/assets/fonts/wer6t7890- +0 -0
- package/dist/docs/assets/logo.svg +0 -7
- package/dist/docs/components/header/index.js +0 -10
- package/dist/docs/components/header/index.styles.js +0 -10
- package/dist/docs/components/side-navigation/index.js +0 -167
- package/dist/docs/components/side-navigation/index.styles.js +0 -46
- package/dist/docs/containers/avatar/index.js +0 -92
- package/dist/docs/containers/button/index.js +0 -295
- package/dist/docs/containers/card/index.js +0 -153
- package/dist/docs/containers/cover/index.js +0 -77
- package/dist/docs/containers/form/index.js +0 -41
- package/dist/docs/containers/home/index.js +0 -41
- package/dist/docs/containers/icon/index.js +0 -56
- package/dist/docs/containers/icons/index.js +0 -1488
- package/dist/docs/containers/product/index.js +0 -123
- package/dist/docs/containers/typography/index.js +0 -138
- package/dist/docs/globalStyle.js +0 -58
- package/dist/index.css +0 -3
- package/dist/index.js +0 -18
- package/dist/playground/index.js +0 -144
- package/dist/playground.css +0 -26
- package/dist/serviceWorker.js +0 -135
- package/dist/setupTests.js +0 -24
- package/dist/stories/Page.js +0 -67
- package/dist/storybook.css +0 -58
- package/dist/styles.css +0 -3
- package/dist/test-utils.js +0 -21
- package/doctor-storybook.log +0 -25
- package/migration-storybook.log +0 -329
- package/package.lib.json +0 -47
- package/postcss.config.js +0 -6
- package/public/assets/fonts/iransharp_bold_web.woff2 +0 -0
- package/public/assets/fonts/iransharp_light_web.woff2 +0 -0
- package/public/assets/fonts/iransharp_regular_web.woff2 +0 -0
- package/public/favicon.ico +0 -0
- package/public/index.html +0 -43
- package/public/logo.svg +0 -1
- package/public/logo142.svg +0 -1
- package/public/manifest.json +0 -25
- package/public/robots.txt +0 -2
- package/src/App.js +0 -13
- package/src/components/accordion/index.js +0 -25
- package/src/components/accordion/index.stories.js +0 -82
- package/src/components/accordion/panel.js +0 -41
- package/src/components/avatar/index.js +0 -41
- package/src/components/avatar/index.stories.js +0 -59
- package/src/components/avatar/index.styles.js +0 -17
- package/src/components/avatar/index.test.js +0 -10
- package/src/components/avatar/theme.js +0 -13
- package/src/components/button/__snapshots__/index.test.js.snap +0 -489
- package/src/components/button/index.js +0 -209
- package/src/components/button/index.stories.js +0 -304
- package/src/components/button/index.styles.js +0 -104
- package/src/components/button/theme.js +0 -60
- package/src/components/button/utils.js +0 -12
- package/src/components/card/card-template/index.js +0 -74
- package/src/components/card/card-template/index.stories.js +0 -110
- package/src/components/card/card-template/index.style.js +0 -25
- package/src/components/card/card-template/index.test.js +0 -85
- package/src/components/card/event-card/constants.js +0 -3
- package/src/components/card/event-card/event-card-label/index.js +0 -24
- package/src/components/card/event-card/event-card-label/index.style.js +0 -10
- package/src/components/card/event-card/event-card-label/index.test.js +0 -23
- package/src/components/card/event-card/index.js +0 -227
- package/src/components/card/event-card/index.stories.js +0 -166
- package/src/components/card/event-card/index.style.js +0 -129
- package/src/components/card/event-card/index.test.js +0 -79
- package/src/components/card/index.js +0 -16
- package/src/components/card/organization-card/index.js +0 -59
- package/src/components/card/organization-card/index.stories.js +0 -49
- package/src/components/card/organization-card/index.style.js +0 -10
- package/src/components/card/organization-card/index.test.js +0 -25
- package/src/components/card/orgnizer-card/buttons.js +0 -48
- package/src/components/card/orgnizer-card/index.js +0 -179
- package/src/components/card/orgnizer-card/index.stories.js +0 -81
- package/src/components/card/orgnizer-card/index.style.js +0 -58
- package/src/components/cover/index.js +0 -74
- package/src/components/cover/index.style.js +0 -48
- package/src/components/cover/index.test.js +0 -25
- package/src/components/display/index.js +0 -42
- package/src/components/display/index.style.js +0 -80
- package/src/components/file-item/fileImgIcon.js +0 -37
- package/src/components/file-item/index.js +0 -101
- package/src/components/file-item/index.stories.js +0 -71
- package/src/components/file-item/index.style.js +0 -31
- package/src/components/file-item/index.test.js +0 -106
- package/src/components/file-item/theme.js +0 -12
- package/src/components/file-item/utils.js +0 -3
- package/src/components/form/captcha/index.js +0 -86
- package/src/components/form/captcha/index.stories.js +0 -42
- package/src/components/form/captcha/index.style.js +0 -38
- package/src/components/form/captcha/index.test.js +0 -31
- package/src/components/form/checkbox/checkbox-option.js +0 -41
- package/src/components/form/checkbox/checkbox.js +0 -54
- package/src/components/form/checkbox/index.js +0 -10
- package/src/components/form/checkbox/index.stories.js +0 -121
- package/src/components/form/checkbox/index.style.js +0 -62
- package/src/components/form/dropdown/index.js +0 -10
- package/src/components/form/dropdown/index.stories.js +0 -119
- package/src/components/form/dropdown/index.style.js +0 -57
- package/src/components/form/dropdown/index.test.js +0 -20
- package/src/components/form/dropdown/option.js +0 -22
- package/src/components/form/dropdown/select.js +0 -68
- package/src/components/form/errorMsg.js +0 -21
- package/src/components/form/index.js +0 -22
- package/src/components/form/radio/index.js +0 -10
- package/src/components/form/radio/index.stories.js +0 -119
- package/src/components/form/radio/index.style.js +0 -61
- package/src/components/form/radio/radio-option.js +0 -45
- package/src/components/form/radio/radio.js +0 -56
- package/src/components/form/text-input/index.js +0 -92
- package/src/components/form/text-input/index.stories.js +0 -77
- package/src/components/form/text-input/index.style.js +0 -57
- package/src/components/form/text-input/index.test.js +0 -63
- package/src/components/form/textarea/index.js +0 -59
- package/src/components/form/textarea/index.stories.js +0 -90
- package/src/components/form/textarea/index.style.js +0 -25
- package/src/components/form/theme.js +0 -16
- package/src/components/form-v7/captcha/index.js +0 -101
- package/src/components/form-v7/captcha/index.stories.js +0 -60
- package/src/components/form-v7/captcha/index.style.js +0 -38
- package/src/components/form-v7/captcha/index.test.js +0 -31
- package/src/components/form-v7/checkbox/checkbox-option.js +0 -44
- package/src/components/form-v7/checkbox/checkbox.js +0 -70
- package/src/components/form-v7/checkbox/index.js +0 -10
- package/src/components/form-v7/checkbox/index.stories.js +0 -113
- package/src/components/form-v7/checkbox/index.style.js +0 -62
- package/src/components/form-v7/dropdown/index.js +0 -10
- package/src/components/form-v7/dropdown/index.stories.js +0 -130
- package/src/components/form-v7/dropdown/index.style.js +0 -57
- package/src/components/form-v7/dropdown/index.test.js +0 -20
- package/src/components/form-v7/dropdown/option.js +0 -18
- package/src/components/form-v7/dropdown/select.js +0 -85
- package/src/components/form-v7/errorMsg.js +0 -21
- package/src/components/form-v7/file-input/index.js +0 -73
- package/src/components/form-v7/file-input/index.stories.js +0 -73
- package/src/components/form-v7/file-input/index.style.js +0 -62
- package/src/components/form-v7/file-input/index.test.js +0 -63
- package/src/components/form-v7/form/index.stories.js +0 -276
- package/src/components/form-v7/index.js +0 -25
- package/src/components/form-v7/index.style.js +0 -11
- package/src/components/form-v7/label/index.js +0 -31
- package/src/components/form-v7/label/index.style.js +0 -12
- package/src/components/form-v7/radio/index.js +0 -10
- package/src/components/form-v7/radio/index.stories.js +0 -117
- package/src/components/form-v7/radio/index.style.js +0 -61
- package/src/components/form-v7/radio/radio-option.js +0 -45
- package/src/components/form-v7/radio/radio.js +0 -75
- package/src/components/form-v7/text-input/index.js +0 -132
- package/src/components/form-v7/text-input/index.stories.js +0 -96
- package/src/components/form-v7/text-input/index.style.js +0 -49
- package/src/components/form-v7/text-input/index.test.js +0 -63
- package/src/components/form-v7/textarea/index.js +0 -71
- package/src/components/form-v7/textarea/index.stories.js +0 -91
- package/src/components/form-v7/textarea/index.style.js +0 -25
- package/src/components/form-v7/theme.js +0 -20
- package/src/components/grid/index.js +0 -83
- package/src/components/icon/iconFont.js +0 -806
- package/src/components/icon/index.js +0 -116
- package/src/components/icon/index.stories.js +0 -45
- package/src/components/icon/index.styles.js +0 -12
- package/src/components/icon/index.test.js +0 -66
- package/src/components/icon/theme.js +0 -23
- package/src/components/index.js +0 -75
- package/src/components/modal/index.js +0 -100
- package/src/components/modal/index.stories.js +0 -86
- package/src/components/modal/index.style.js +0 -40
- package/src/components/modal/theme.js +0 -11
- package/src/components/numeric-summery-report/index.js +0 -28
- package/src/components/numeric-summery-report/index.stories.js +0 -37
- package/src/components/numeric-summery-report/index.style.js +0 -16
- package/src/components/numeric-summery-report/index.test.js +0 -22
- package/src/components/product-menu/index.js +0 -10
- package/src/components/product-menu/index.stories.js +0 -33
- package/src/components/product-menu/index.style.js +0 -38
- package/src/components/product-menu/index.test.js +0 -27
- package/src/components/product-menu/menu-item.js +0 -23
- package/src/components/product-menu/menu.js +0 -88
- package/src/components/product-menu/theme.js +0 -16
- package/src/components/product-owner/index.js +0 -85
- package/src/components/product-owner/index.style.js +0 -16
- package/src/components/product-owner/index.test.js +0 -75
- package/src/components/product-properties/index.js +0 -65
- package/src/components/product-properties/index.stories.js +0 -52
- package/src/components/product-properties/index.style.js +0 -14
- package/src/components/product-properties/index.test.js +0 -31
- package/src/components/product-properties/product-property/index.js +0 -49
- package/src/components/product-properties/product-property/index.style.js +0 -9
- package/src/components/progress-bar/index.js +0 -46
- package/src/components/progress-bar/index.stories.js +0 -33
- package/src/components/progress-bar/index.styles.js +0 -65
- package/src/components/responsive/index.js +0 -44
- package/src/components/show-date/index.js +0 -25
- package/src/components/show-date/index.stories.js +0 -51
- package/src/components/show-date/index.style.js +0 -1
- package/src/components/show-date/index.test.js +0 -24
- package/src/components/spacing/core.js +0 -106
- package/src/components/spacing/index.js +0 -10
- package/src/components/spacing/margin/index.js +0 -26
- package/src/components/spacing/padding/index.js +0 -26
- package/src/components/storybook.css +0 -54
- package/src/components/table/actionCell.js +0 -57
- package/src/components/table/index.js +0 -56
- package/src/components/table/index.stories.js +0 -188
- package/src/components/table/index.test.js +0 -119
- package/src/components/table/tableHeaderRow.js +0 -28
- package/src/components/table/tableRow.js +0 -60
- package/src/components/table/theme.js +0 -8
- package/src/components/tabs/index.js +0 -10
- package/src/components/tabs/index.stories.js +0 -61
- package/src/components/tabs/index.style.js +0 -35
- package/src/components/tabs/index.test.js +0 -30
- package/src/components/tabs/tabPanel.js +0 -17
- package/src/components/tabs/tabs.js +0 -71
- package/src/components/tabs/theme.js +0 -10
- package/src/components/themes.js +0 -97
- package/src/components/titled-avatar/index.js +0 -48
- package/src/components/titled-avatar/index.stories.js +0 -52
- package/src/components/titled-avatar/index.style.js +0 -30
- package/src/components/titled-avatar/index.test.js +0 -25
- package/src/components/typography/heading/index.js +0 -59
- package/src/components/typography/heading/index.stories.js +0 -94
- package/src/components/typography/heading/index.styles.js +0 -69
- package/src/components/typography/heading/index.test.js +0 -122
- package/src/components/typography/index.js +0 -16
- package/src/components/typography/index.styles.js +0 -1
- package/src/components/typography/link/index.js +0 -82
- package/src/components/typography/link/index.stories.js +0 -70
- package/src/components/typography/link/index.styles.js +0 -8
- package/src/components/typography/link/index.test.js +0 -60
- package/src/components/typography/paragraph/index.js +0 -37
- package/src/components/typography/paragraph/index.stories.js +0 -56
- package/src/components/typography/paragraph/index.styles.js +0 -12
- package/src/components/typography/paragraph/index.test.js +0 -47
- package/src/components/typography/text/index.js +0 -156
- package/src/components/typography/text/index.stories.js +0 -196
- package/src/components/typography/text/index.styles.js +0 -73
- package/src/components/typography/text/index.test.js +0 -333
- package/src/components/typography/theme.js +0 -66
- package/src/components/typography/utils.js +0 -53
- package/src/components/typography/utils.test.js +0 -188
- package/src/components/utils/date.js +0 -7
- package/src/components/utils/date.test.js +0 -15
- package/src/components/utils/detectMobile.js +0 -15
- package/src/components/utils/index.js +0 -7
- package/src/components/utils/media-query.js +0 -12
- package/src/components/utils/numbers.js +0 -25
- package/src/components/utils/test.js +0 -6
- package/src/components/utils/theme.js +0 -67
- package/src/docs/App.css +0 -33
- package/src/docs/App.js +0 -52
- package/src/docs/assets/ads-label.svg +0 -13
- package/src/docs/assets/avatar-sample.jpeg +0 -0
- package/src/docs/assets/cover-sample.png +0 -0
- package/src/docs/assets/fonts/filesImgs.woff +0 -0
- package/src/docs/assets/fonts/icomoon.woff +0 -0
- package/src/docs/assets/fonts/iransharp_bold_web.woff +0 -0
- package/src/docs/assets/fonts/iransharp_bold_web.woff2 +0 -0
- package/src/docs/assets/fonts/iransharp_regular_web.woff +0 -0
- package/src/docs/assets/fonts/iransharp_regular_web.woff2 +0 -0
- package/src/docs/assets/fonts/wer6t7890- +0 -0
- package/src/docs/assets/logo.svg +0 -7
- package/src/docs/components/header/index.js +0 -10
- package/src/docs/components/header/index.styles.js +0 -10
- package/src/docs/components/side-navigation/index.js +0 -167
- package/src/docs/components/side-navigation/index.styles.js +0 -46
- package/src/docs/containers/avatar/index.js +0 -92
- package/src/docs/containers/button/index.js +0 -295
- package/src/docs/containers/card/index.js +0 -153
- package/src/docs/containers/cover/index.js +0 -77
- package/src/docs/containers/form/index.js +0 -41
- package/src/docs/containers/home/index.js +0 -41
- package/src/docs/containers/icon/index.js +0 -56
- package/src/docs/containers/icons/index.js +0 -1488
- package/src/docs/containers/product/index.js +0 -123
- package/src/docs/containers/typography/index.js +0 -138
- package/src/docs/globalStyle.js +0 -58
- package/src/index.css +0 -3
- package/src/index.js +0 -18
- package/src/playground/index.js +0 -144
- package/src/playground.css +0 -26
- package/src/serviceWorker.js +0 -135
- package/src/setupTests.js +0 -24
- package/src/stories/Page.jsx +0 -67
- package/src/storybook.css +0 -58
- package/src/styles.css +0 -3
- package/src/test-utils.js +0 -21
- package/storybook.log +0 -113
- package/tailwind.config.js +0 -26
- package/update-stories.js +0 -41
- /package/{dist/components/show-date → show-date}/index.style.js +0 -0
- /package/{dist/components/typography → typography}/index.styles.js +0 -0
package/icon/iconFont.js
ADDED
|
@@ -0,0 +1,1054 @@
|
|
|
1
|
+
"use strict";var _styledComponents=require("styled-components");Object.defineProperty(exports,"__esModule",{value:!0}),exports.legacyIconMap=void 0;
|
|
2
|
+
// import IconMoonWoff from '../../docs/assets/fonts/icomoon.woff';
|
|
3
|
+
|
|
4
|
+
const legacyIconMap=exports.legacyIconMap={
|
|
5
|
+
refresh:"ArrowPath",
|
|
6
|
+
"account-balance-wallet":"Wallet",
|
|
7
|
+
"account-box":"UserCircle",
|
|
8
|
+
"account-circle":"UserCircle",
|
|
9
|
+
"add-a-photo":"Camera",
|
|
10
|
+
"add-alert":"BellAlert",
|
|
11
|
+
"add-box":"PlusCircle",
|
|
12
|
+
"add-circle-outline":"PlusCircle",
|
|
13
|
+
"add-circle":"PlusCircle",
|
|
14
|
+
"add-photo-alternate":"Photo",
|
|
15
|
+
add:"Plus",
|
|
16
|
+
"alarm-add":"BellPlus",// Not in Heroicons, fallback to 'Bell'
|
|
17
|
+
"alarm-off":"BellSlash",// Not in Heroicons, fallback to 'Bell'
|
|
18
|
+
"alarm-on":"Bell",
|
|
19
|
+
alarm:"Bell",
|
|
20
|
+
apps:"Squares2X2",
|
|
21
|
+
"arrow-back":"ArrowLeft",
|
|
22
|
+
"arrow-backward-ios":"ChevronLeft",
|
|
23
|
+
"arrow-downward":"ArrowDown",
|
|
24
|
+
"arrow-drop-down-circle":"ChevronDown",
|
|
25
|
+
"arrow-drop-down":"ChevronDown",
|
|
26
|
+
"arrow-drop-up":"ChevronUp",
|
|
27
|
+
"arrow-forward-ios":"ChevronRight",
|
|
28
|
+
"arrow-forward":"ArrowRight",
|
|
29
|
+
"arrow-left":"ArrowLeft",
|
|
30
|
+
"arrow-right":"ArrowRight",
|
|
31
|
+
"arrow-upward":"ArrowUp",
|
|
32
|
+
"aspect-ratio":"RectangleGroup",
|
|
33
|
+
assessment:"ChartBar",
|
|
34
|
+
"assignment-ind":"Identification",
|
|
35
|
+
assignment:"DocumentText",
|
|
36
|
+
attachment:"PaperClip",
|
|
37
|
+
attendees:"UserGroup",
|
|
38
|
+
autorenew:"ArrowPath",
|
|
39
|
+
backup:"CloudArrowUp",
|
|
40
|
+
block:"NoSymbol",
|
|
41
|
+
"bluetooth-connected":"Signal",
|
|
42
|
+
"bluetooth-disabled":"SignalSlash",
|
|
43
|
+
"bluetooth-searching":"MagnifyingGlassCircle",
|
|
44
|
+
bluetooth:"Signal",
|
|
45
|
+
"bookmark-border":"Bookmark",
|
|
46
|
+
bookmark:"Bookmark",
|
|
47
|
+
bookmarks:"BookmarkSquare",
|
|
48
|
+
build:"WrenchScrewdriver",
|
|
49
|
+
cake:"Cake",
|
|
50
|
+
"calendar-today":"CalendarDays",
|
|
51
|
+
"call-end":"PhoneXMark",
|
|
52
|
+
"call-message":"ChatBubbleLeftRight",
|
|
53
|
+
call:"Phone",
|
|
54
|
+
"camera-alt":"Camera",
|
|
55
|
+
cancel:"XMark",
|
|
56
|
+
"card-giftcard":"Gift",
|
|
57
|
+
categories:"Squares2X2",
|
|
58
|
+
category:"Squares2X2",
|
|
59
|
+
"chat-bubble":"ChatBubbleLeft",
|
|
60
|
+
chat:"ChatBubbleLeft",
|
|
61
|
+
"check-box-outline-blank":"Square2Stack",
|
|
62
|
+
"check-box":"CheckSquare",
|
|
63
|
+
"check-circle-outline":"CheckCircle",
|
|
64
|
+
"check-circle":"CheckCircle",
|
|
65
|
+
check:"Check",
|
|
66
|
+
"chevron-left":"ChevronLeft",
|
|
67
|
+
"chevron-right":"ChevronRight",
|
|
68
|
+
close:"XMark",
|
|
69
|
+
"cloud-circle":"Cloud",
|
|
70
|
+
"cloud-done":"CloudCheck",
|
|
71
|
+
"cloud-download":"CloudArrowDown",
|
|
72
|
+
"cloud-off":"CloudSlash",
|
|
73
|
+
"cloud-queue":"Cloud",
|
|
74
|
+
"cloud-upload":"CloudArrowUp",
|
|
75
|
+
cloud:"Cloud",
|
|
76
|
+
code:"CodeBracket",
|
|
77
|
+
colleague:"UserGroup",
|
|
78
|
+
commute:null,// No direct match
|
|
79
|
+
copyright:null,// No direct match
|
|
80
|
+
create:"PencilSquare",
|
|
81
|
+
"credit-card":"CreditCard",
|
|
82
|
+
"crop-rotate":"Crop",
|
|
83
|
+
dashboard:"Squares2X2",
|
|
84
|
+
"delete-outline":"Trash",
|
|
85
|
+
"delete-sweep":"Trash",
|
|
86
|
+
delete:"Trash",
|
|
87
|
+
description:"DocumentText",
|
|
88
|
+
dialpad:"Squares2X2",
|
|
89
|
+
drafts:"InboxStack",
|
|
90
|
+
email:"Envelope",
|
|
91
|
+
equalizer:"AdjustmentsHorizontal",
|
|
92
|
+
"error-outline":"ExclamationCircle",
|
|
93
|
+
error:"ExclamationCircle",
|
|
94
|
+
"event-seat":null,// No direct match
|
|
95
|
+
event:"CalendarDays",
|
|
96
|
+
"exit-to-app":"ArrowRightOnRectangle",
|
|
97
|
+
"expand-less":"ChevronUp",
|
|
98
|
+
"expand-more":"ChevronDown",
|
|
99
|
+
"facebook-alt":"Facebook",// Not in Heroicons, use custom or null
|
|
100
|
+
facebook:"Facebook",// Not in Heroicons, use custom or null
|
|
101
|
+
"favorite-border":"Heart",
|
|
102
|
+
favorite:"Heart",
|
|
103
|
+
file:"Document",
|
|
104
|
+
fingerprint:"FingerPrint",
|
|
105
|
+
follower:"UserGroup",
|
|
106
|
+
forum:"ChatBubbleLeftRight",
|
|
107
|
+
"get-app":"ArrowDownTray",
|
|
108
|
+
"google-alt":null,// Not in Heroicons
|
|
109
|
+
"google-plus-alt":null,// Not in Heroicons
|
|
110
|
+
"google-plus":null,// Not in Heroicons
|
|
111
|
+
google:null,// Not in Heroicons
|
|
112
|
+
"gps-fixed":"MapPin",
|
|
113
|
+
"gps-not-fixed":"MapPin",
|
|
114
|
+
"gps-off":"MapPin",
|
|
115
|
+
group:"UserGroup",
|
|
116
|
+
"headset-mic":"Microphone",
|
|
117
|
+
headset:"Headphones",
|
|
118
|
+
"help-outline":"QuestionMarkCircle",
|
|
119
|
+
help:"QuestionMarkCircle",
|
|
120
|
+
"highlight-off":"XCircle",
|
|
121
|
+
history:"Clock",
|
|
122
|
+
home:"Home",
|
|
123
|
+
"hourglass-empty":"Clock",
|
|
124
|
+
"hourglass-full":"Clock",
|
|
125
|
+
"ic-content-copy":"DocumentDuplicate",
|
|
126
|
+
"import-contacts":"ArrowDownTray",
|
|
127
|
+
"indeterminate-check-box":"MinusCircle",
|
|
128
|
+
info:"InformationCircle",
|
|
129
|
+
"instagram-alt":null,// Not in Heroicons
|
|
130
|
+
instagram:null,// Not in Heroicons
|
|
131
|
+
"keyboard-backspace":"ArrowLeft",
|
|
132
|
+
"keyboard-voice":"Microphone",
|
|
133
|
+
keyboard:"CommandLine",
|
|
134
|
+
language:"GlobeAlt",
|
|
135
|
+
"link-off":"LinkSlash",
|
|
136
|
+
link:"Link",
|
|
137
|
+
"linkedin-alt":null,// Not in Heroicons
|
|
138
|
+
linkedin:null,// Not in Heroicons
|
|
139
|
+
"local-offer":"Tag",
|
|
140
|
+
"location-off":"MapPin",
|
|
141
|
+
"location-on":"MapPin",
|
|
142
|
+
"lock-open":"LockOpen",
|
|
143
|
+
lock:"LockClosed",
|
|
144
|
+
loop:"ArrowPath",
|
|
145
|
+
loyalty:"Tag",
|
|
146
|
+
"mail-outline":"Envelope",
|
|
147
|
+
mail:"Envelope",
|
|
148
|
+
menu:"Bars3",
|
|
149
|
+
"mic-none":"Microphone",
|
|
150
|
+
"mic-off":"MicrophoneSlash",
|
|
151
|
+
mic:"Microphone",
|
|
152
|
+
"mood-bad":"FaceFrown",
|
|
153
|
+
mood:"FaceSmile",
|
|
154
|
+
"more-horiz":"EllipsisHorizontal",
|
|
155
|
+
"more-vert":"EllipsisVertical",
|
|
156
|
+
"not-interested":"NoSymbol",
|
|
157
|
+
"note-add":"DocumentPlus",
|
|
158
|
+
note:"DocumentText",
|
|
159
|
+
"notification-important":"BellAlert",
|
|
160
|
+
"notifications-active":"BellAlert",
|
|
161
|
+
"notifications-none":"Bell",
|
|
162
|
+
"notifications-off":"BellSlash",
|
|
163
|
+
"notifications-paused":"BellSlash",
|
|
164
|
+
notifications:"Bell",
|
|
165
|
+
"offline-pin":"CheckCircle",
|
|
166
|
+
"ondemand-video":"PlayCircle",
|
|
167
|
+
"outlined-flag":"Flag",
|
|
168
|
+
partner:"UserGroup",
|
|
169
|
+
"pause-circle-outline":"PauseCircle",
|
|
170
|
+
"perm-contact-calendar":"CalendarDays",
|
|
171
|
+
"perm-identity":"User",
|
|
172
|
+
place:"MapPin",
|
|
173
|
+
"play-arrow":"Play",
|
|
174
|
+
"play-circle-filled":"PlayCircle",
|
|
175
|
+
"play-circle-outline":"PlayCircle",
|
|
176
|
+
"playlist-add-check":"CheckCircle",
|
|
177
|
+
"playlist-add":"PlusCircle",
|
|
178
|
+
"playlist-play":"Play",
|
|
179
|
+
print:"Printer",
|
|
180
|
+
"query-builder":"Clock",
|
|
181
|
+
"question-answer":"ChatBubbleLeftRight",
|
|
182
|
+
"radio-button-checked":"CheckCircle",
|
|
183
|
+
"radio-button-unchecked":"Circle",
|
|
184
|
+
"remove-circle-outline":"MinusCircle",
|
|
185
|
+
"remove-circle":"MinusCircle",
|
|
186
|
+
"remove-red-eye-2":"EyeSlash",
|
|
187
|
+
"remove-red-eye":"EyeSlash",
|
|
188
|
+
"report-problem":"ExclamationTriangle",
|
|
189
|
+
restore:"ArrowUturnLeft",
|
|
190
|
+
search:"MagnifyingGlass",
|
|
191
|
+
send:"PaperAirplane",
|
|
192
|
+
"sentiment-dissatisfied":"FaceFrown",
|
|
193
|
+
"sentiment-satisfied":"FaceSmile",
|
|
194
|
+
"sentiment-very-dissatisfied":"FaceFrown",
|
|
195
|
+
"sentiment-very-satisfied":"FaceSmile",
|
|
196
|
+
setting:"Cog6Tooth",
|
|
197
|
+
"settings-applications":"Cog6Tooth",
|
|
198
|
+
"settings-ethernet":"Cog6Tooth",
|
|
199
|
+
share:"Share",
|
|
200
|
+
"shopping-cart":"ShoppingCart",
|
|
201
|
+
smartphone:"DevicePhoneMobile",
|
|
202
|
+
"sort-by-alpha":"BarsArrowDown",
|
|
203
|
+
speaker:"SpeakerWave",
|
|
204
|
+
"star-border":"Star",
|
|
205
|
+
"star-half":"Star",
|
|
206
|
+
star:"Star",
|
|
207
|
+
"stay-current-landscape":"DeviceTablet",
|
|
208
|
+
"stay-current-portrait":"DeviceTablet",
|
|
209
|
+
Subtraction:null,// No direct match
|
|
210
|
+
"supervised-user-circle":"UserGroup",
|
|
211
|
+
"supervisor-account":"UserGroup",
|
|
212
|
+
"tablet-android":"DeviceTablet",
|
|
213
|
+
tablet:"DeviceTablet",
|
|
214
|
+
"telegram-alt":null,// Not in Heroicons
|
|
215
|
+
telegram:null,// Not in Heroicons
|
|
216
|
+
textsms:"ChatBubbleLeft",
|
|
217
|
+
theaters:"Film",
|
|
218
|
+
"thumb-down-alt":"HandThumbDown",
|
|
219
|
+
"thumb-down":"HandThumbDown",
|
|
220
|
+
"thumb-up-alt":"HandThumbUp",
|
|
221
|
+
"thumb-up":"HandThumbUp",
|
|
222
|
+
ticket:"Ticket",
|
|
223
|
+
today:"CalendarDays",
|
|
224
|
+
"toggle-off":"ToggleLeft",
|
|
225
|
+
"toggle-on":"ToggleRight",
|
|
226
|
+
"touch-app":"HandRaised",
|
|
227
|
+
tv:"Tv",
|
|
228
|
+
"twitter-alt":null,// Not in Heroicons
|
|
229
|
+
twitter:null,// Not in Heroicons
|
|
230
|
+
update:"ArrowPath",
|
|
231
|
+
"verified-user":"ShieldCheck",
|
|
232
|
+
"view-carousel":"Squares2X2",
|
|
233
|
+
"visibility-off":"EyeSlash",
|
|
234
|
+
visibility:"Eye",
|
|
235
|
+
"volume-down":"SpeakerWave",
|
|
236
|
+
"volume-mute":"SpeakerXMark",
|
|
237
|
+
"volume-off":"SpeakerXMark",
|
|
238
|
+
"volume-up":"SpeakerWave",
|
|
239
|
+
"vpn-key":"Key",
|
|
240
|
+
warning:"ExclamationTriangle",
|
|
241
|
+
"watch-later":"Clock",
|
|
242
|
+
watch:"Clock",
|
|
243
|
+
"Whatsapp-alt":null,// Not in Heroicons
|
|
244
|
+
"where-to-vote":"MapPin",
|
|
245
|
+
"work-off":"Briefcase",
|
|
246
|
+
"work-outline":"Briefcase",
|
|
247
|
+
work:"Briefcase",
|
|
248
|
+
"zoom-in":"MagnifyingGlassPlus",
|
|
249
|
+
"zoom-out-map":"Map",
|
|
250
|
+
"zoom-out":"MagnifyingGlassMinus"
|
|
251
|
+
};
|
|
252
|
+
|
|
253
|
+
// const FontStyle = createGlobalStyle`
|
|
254
|
+
// @font-face {
|
|
255
|
+
// font-family: 'Jupiterico';
|
|
256
|
+
// src: url(${IconMoonWoff}) format('woff'); /* Updated path based on staticDirs */
|
|
257
|
+
// font-weight: normal;
|
|
258
|
+
// font-style: normal;
|
|
259
|
+
// font-display: block; /* Helps prevent invisible text during font load */
|
|
260
|
+
// }
|
|
261
|
+
|
|
262
|
+
// i.jupiter-icon {
|
|
263
|
+
// /* use !important to prevent issues with browser extensions that change fonts */
|
|
264
|
+
// display: inline-block;
|
|
265
|
+
// vertical-align: middle;
|
|
266
|
+
// font-family: 'Jupiterico' !important;
|
|
267
|
+
// font-style: normal;
|
|
268
|
+
// font-weight: normal;
|
|
269
|
+
// font-variant: normal;
|
|
270
|
+
// text-transform: none;
|
|
271
|
+
// line-height: 1;
|
|
272
|
+
|
|
273
|
+
// /* Better Font Rendering =========== */
|
|
274
|
+
// -webkit-font-smoothing: antialiased;
|
|
275
|
+
// -moz-osx-font-smoothing: grayscale;
|
|
276
|
+
// }
|
|
277
|
+
|
|
278
|
+
// .new-icon-refresh:before {
|
|
279
|
+
// content: "\\e9fa";
|
|
280
|
+
// }
|
|
281
|
+
// .new-icon-account-balance-wallet:before {
|
|
282
|
+
// content: "\\e900";
|
|
283
|
+
// }
|
|
284
|
+
// .new-icon-account-box:before {
|
|
285
|
+
// content: "\\e901";
|
|
286
|
+
// }
|
|
287
|
+
// .new-icon-account-circle:before {
|
|
288
|
+
// content: "\\e902";
|
|
289
|
+
// }
|
|
290
|
+
// .new-icon-add-a-photo:before {
|
|
291
|
+
// content: "\\e903";
|
|
292
|
+
// }
|
|
293
|
+
// .new-icon-add-alert:before {
|
|
294
|
+
// content: "\\e904";
|
|
295
|
+
// }
|
|
296
|
+
// .new-icon-add-box:before {
|
|
297
|
+
// content: "\\e905";
|
|
298
|
+
// }
|
|
299
|
+
// .new-icon-add-circle-outline:before {
|
|
300
|
+
// content: "\\e906";
|
|
301
|
+
// }
|
|
302
|
+
// .new-icon-add-circle:before {
|
|
303
|
+
// content: "\\e907";
|
|
304
|
+
// }
|
|
305
|
+
// .new-icon-add-photo-alternate:before {
|
|
306
|
+
// content: "\\e908";
|
|
307
|
+
// }
|
|
308
|
+
// .new-icon-add:before {
|
|
309
|
+
// content: "\\e909";
|
|
310
|
+
// }
|
|
311
|
+
// .new-icon-alarm-add:before {
|
|
312
|
+
// content: "\\e90a";
|
|
313
|
+
// }
|
|
314
|
+
// .new-icon-alarm-off:before {
|
|
315
|
+
// content: "\\e90b";
|
|
316
|
+
// }
|
|
317
|
+
// .new-icon-alarm-on:before {
|
|
318
|
+
// content: "\\e90c";
|
|
319
|
+
// }
|
|
320
|
+
// .new-icon-alarm:before {
|
|
321
|
+
// content: "\\e90d";
|
|
322
|
+
// }
|
|
323
|
+
// .new-icon-apps:before {
|
|
324
|
+
// content: "\\e90e";
|
|
325
|
+
// }
|
|
326
|
+
// .new-icon-arrow-back:before {
|
|
327
|
+
// content: "\\e90f";
|
|
328
|
+
// }
|
|
329
|
+
// .new-icon-arrow-backward-ios:before {
|
|
330
|
+
// content: "\\e910";
|
|
331
|
+
// }
|
|
332
|
+
// .new-icon-arrow-downward:before {
|
|
333
|
+
// content: "\\e911";
|
|
334
|
+
// }
|
|
335
|
+
// .new-icon-arrow-drop-down-circle:before {
|
|
336
|
+
// content: "\\e912";
|
|
337
|
+
// }
|
|
338
|
+
// .new-icon-arrow-drop-down:before {
|
|
339
|
+
// content: "\\e913";
|
|
340
|
+
// }
|
|
341
|
+
// .new-icon-arrow-drop-up:before {
|
|
342
|
+
// content: "\\e914";
|
|
343
|
+
// }
|
|
344
|
+
// .new-icon-arrow-forward-ios:before {
|
|
345
|
+
// content: "\\e915";
|
|
346
|
+
// }
|
|
347
|
+
// .new-icon-arrow-forward:before {
|
|
348
|
+
// content: "\\e916";
|
|
349
|
+
// }
|
|
350
|
+
// .new-icon-arrow-left:before {
|
|
351
|
+
// content: "\\e917";
|
|
352
|
+
// }
|
|
353
|
+
// .new-icon-arrow-right:before {
|
|
354
|
+
// content: "\\e918";
|
|
355
|
+
// }
|
|
356
|
+
// .new-icon-arrow-upward:before {
|
|
357
|
+
// content: "\\e919";
|
|
358
|
+
// }
|
|
359
|
+
// .new-icon-aspect-ratio:before {
|
|
360
|
+
// content: "\\e91a";
|
|
361
|
+
// }
|
|
362
|
+
// .new-icon-assessment:before {
|
|
363
|
+
// content: "\\e91b";
|
|
364
|
+
// }
|
|
365
|
+
// .new-icon-assignment-ind:before {
|
|
366
|
+
// content: "\\e91c";
|
|
367
|
+
// }
|
|
368
|
+
// .new-icon-assignment:before {
|
|
369
|
+
// content: "\\e91d";
|
|
370
|
+
// }
|
|
371
|
+
// .new-icon-attachment:before {
|
|
372
|
+
// content: "\\e91e";
|
|
373
|
+
// }
|
|
374
|
+
// .new-icon-attendees:before {
|
|
375
|
+
// content: "\\e91f";
|
|
376
|
+
// color: #535353;
|
|
377
|
+
// }
|
|
378
|
+
// .new-icon-autorenew:before {
|
|
379
|
+
// content: "\\e920";
|
|
380
|
+
// }
|
|
381
|
+
// .new-icon-backup:before {
|
|
382
|
+
// content: "\\e921";
|
|
383
|
+
// }
|
|
384
|
+
// .new-icon-block:before {
|
|
385
|
+
// content: "\\e922";
|
|
386
|
+
// }
|
|
387
|
+
// .new-icon-bluetooth-connected:before {
|
|
388
|
+
// content: "\\e923";
|
|
389
|
+
// }
|
|
390
|
+
// .new-icon-bluetooth-disabled:before {
|
|
391
|
+
// content: "\\e924";
|
|
392
|
+
// }
|
|
393
|
+
// .new-icon-bluetooth-searching:before {
|
|
394
|
+
// content: "\\e925";
|
|
395
|
+
// }
|
|
396
|
+
// .new-icon-bluetooth:before {
|
|
397
|
+
// content: "\\e926";
|
|
398
|
+
// }
|
|
399
|
+
// .new-icon-bookmark-border:before {
|
|
400
|
+
// content: "\\e927";
|
|
401
|
+
// }
|
|
402
|
+
// .new-icon-bookmark:before {
|
|
403
|
+
// content: "\\e928";
|
|
404
|
+
// }
|
|
405
|
+
// .new-icon-bookmarks:before {
|
|
406
|
+
// content: "\\e929";
|
|
407
|
+
// }
|
|
408
|
+
// .new-icon-build:before {
|
|
409
|
+
// content: "\\e92a";
|
|
410
|
+
// }
|
|
411
|
+
// .new-icon-cake:before {
|
|
412
|
+
// content: "\\e92b";
|
|
413
|
+
// }
|
|
414
|
+
// .new-icon-calendar-today:before {
|
|
415
|
+
// content: "\\e92c";
|
|
416
|
+
// }
|
|
417
|
+
// .new-icon-call-end:before {
|
|
418
|
+
// content: "\\e92d";
|
|
419
|
+
// }
|
|
420
|
+
// .new-icon-call-message:before {
|
|
421
|
+
// content: "\\e92e";
|
|
422
|
+
// }
|
|
423
|
+
// .new-icon-call:before {
|
|
424
|
+
// content: "\\e92f";
|
|
425
|
+
// }
|
|
426
|
+
// .new-icon-camera-alt:before {
|
|
427
|
+
// content: "\\e930";
|
|
428
|
+
// }
|
|
429
|
+
// .new-icon-cancel:before {
|
|
430
|
+
// content: "\\e931";
|
|
431
|
+
// }
|
|
432
|
+
// .new-icon-card-giftcard:before {
|
|
433
|
+
// content: "\\e932";
|
|
434
|
+
// }
|
|
435
|
+
// .new-icon-categories:before {
|
|
436
|
+
// content: "\\e933";
|
|
437
|
+
// color: #535353;
|
|
438
|
+
// }
|
|
439
|
+
// .new-icon-category:before {
|
|
440
|
+
// content: "\\e934";
|
|
441
|
+
// }
|
|
442
|
+
// .new-icon-chat-bubble:before {
|
|
443
|
+
// content: "\\e935";
|
|
444
|
+
// }
|
|
445
|
+
// .new-icon-chat:before {
|
|
446
|
+
// content: "\\e936";
|
|
447
|
+
// }
|
|
448
|
+
// .new-icon-check-box-outline-blank:before {
|
|
449
|
+
// content: "\\e937";
|
|
450
|
+
// }
|
|
451
|
+
// .new-icon-check-box:before {
|
|
452
|
+
// content: "\\e938";
|
|
453
|
+
// }
|
|
454
|
+
// .new-icon-check-circle-outline:before {
|
|
455
|
+
// content: "\\e939";
|
|
456
|
+
// }
|
|
457
|
+
// .new-icon-check-circle:before {
|
|
458
|
+
// content: "\\e93a";
|
|
459
|
+
// }
|
|
460
|
+
// .new-icon-check:before {
|
|
461
|
+
// content: "\\e93b";
|
|
462
|
+
// }
|
|
463
|
+
// .new-icon-chevron-left:before {
|
|
464
|
+
// content: "\\e93c";
|
|
465
|
+
// }
|
|
466
|
+
// .new-icon-chevron-right:before {
|
|
467
|
+
// content: "\\e93d";
|
|
468
|
+
// }
|
|
469
|
+
// .new-icon-close:before {
|
|
470
|
+
// content: "\\e93e";
|
|
471
|
+
// }
|
|
472
|
+
// .new-icon-cloud-circle:before {
|
|
473
|
+
// content: "\\e93f";
|
|
474
|
+
// }
|
|
475
|
+
// .new-icon-cloud-done:before {
|
|
476
|
+
// content: "\\e940";
|
|
477
|
+
// }
|
|
478
|
+
// .new-icon-cloud-download:before {
|
|
479
|
+
// content: "\\e941";
|
|
480
|
+
// }
|
|
481
|
+
// .new-icon-cloud-off:before {
|
|
482
|
+
// content: "\\e942";
|
|
483
|
+
// }
|
|
484
|
+
// .new-icon-cloud-queue:before {
|
|
485
|
+
// content: "\\e943";
|
|
486
|
+
// }
|
|
487
|
+
// .new-icon-cloud-upload:before {
|
|
488
|
+
// content: "\\e944";
|
|
489
|
+
// }
|
|
490
|
+
// .new-icon-cloud:before {
|
|
491
|
+
// content: "\\e945";
|
|
492
|
+
// }
|
|
493
|
+
// .new-icon-code:before {
|
|
494
|
+
// content: "\\e946";
|
|
495
|
+
// }
|
|
496
|
+
// .new-icon-colleague:before {
|
|
497
|
+
// content: "\\e947";
|
|
498
|
+
// }
|
|
499
|
+
// .new-icon-commute:before {
|
|
500
|
+
// content: "\\e948";
|
|
501
|
+
// }
|
|
502
|
+
// .new-icon-copyright:before {
|
|
503
|
+
// content: "\\e949";
|
|
504
|
+
// }
|
|
505
|
+
// .new-icon-create:before {
|
|
506
|
+
// content: "\\e94a";
|
|
507
|
+
// }
|
|
508
|
+
// .new-icon-credit-card:before {
|
|
509
|
+
// content: "\\e94b";
|
|
510
|
+
// }
|
|
511
|
+
// .new-icon-crop-rotate:before {
|
|
512
|
+
// content: "\\e94c";
|
|
513
|
+
// }
|
|
514
|
+
// .new-icon-dashboard:before {
|
|
515
|
+
// content: "\\e94d";
|
|
516
|
+
// }
|
|
517
|
+
// .new-icon-delete-outline:before {
|
|
518
|
+
// content: "\\e94e";
|
|
519
|
+
// }
|
|
520
|
+
// .new-icon-delete-sweep:before {
|
|
521
|
+
// content: "\\e94f";
|
|
522
|
+
// }
|
|
523
|
+
// .new-icon-delete:before {
|
|
524
|
+
// content: "\\e950";
|
|
525
|
+
// }
|
|
526
|
+
// .new-icon-description:before {
|
|
527
|
+
// content: "\\e951";
|
|
528
|
+
// }
|
|
529
|
+
// .new-icon-dialpad:before {
|
|
530
|
+
// content: "\\e952";
|
|
531
|
+
// }
|
|
532
|
+
// .new-icon-drafts:before {
|
|
533
|
+
// content: "\\e953";
|
|
534
|
+
// }
|
|
535
|
+
// .new-icon-email:before {
|
|
536
|
+
// content: "\\e954";
|
|
537
|
+
// }
|
|
538
|
+
// .new-icon-equalizer:before {
|
|
539
|
+
// content: "\\e955";
|
|
540
|
+
// }
|
|
541
|
+
// .new-icon-error-outline:before {
|
|
542
|
+
// content: "\\e956";
|
|
543
|
+
// }
|
|
544
|
+
// .new-icon-error:before {
|
|
545
|
+
// content: "\\e957";
|
|
546
|
+
// }
|
|
547
|
+
// .new-icon-event-seat:before {
|
|
548
|
+
// content: "\\e958";
|
|
549
|
+
// }
|
|
550
|
+
// .new-icon-event:before {
|
|
551
|
+
// content: "\\e959";
|
|
552
|
+
// }
|
|
553
|
+
// .new-icon-exit-to-app:before {
|
|
554
|
+
// content: "\\e95a";
|
|
555
|
+
// }
|
|
556
|
+
// .new-icon-expand-less:before {
|
|
557
|
+
// content: "\\e95b";
|
|
558
|
+
// }
|
|
559
|
+
// .new-icon-expand-more:before {
|
|
560
|
+
// content: "\\e95c";
|
|
561
|
+
// }
|
|
562
|
+
// .new-icon-facebook-alt:before {
|
|
563
|
+
// content: "\\e95d";
|
|
564
|
+
// }
|
|
565
|
+
// .new-icon-facebook:before {
|
|
566
|
+
// content: "\\e95e";
|
|
567
|
+
// }
|
|
568
|
+
// .new-icon-favorite-border:before {
|
|
569
|
+
// content: "\\e95f";
|
|
570
|
+
// }
|
|
571
|
+
// .new-icon-favorite:before {
|
|
572
|
+
// content: "\\e960";
|
|
573
|
+
// }
|
|
574
|
+
// .new-icon-file .path1:before {
|
|
575
|
+
// content: "\\e961";
|
|
576
|
+
// color: rgb(255, 255, 255);
|
|
577
|
+
// }
|
|
578
|
+
// .new-icon-file .path2:before {
|
|
579
|
+
// content: "\\e962";
|
|
580
|
+
// margin-left: -1em;
|
|
581
|
+
// color: rgb(59, 65, 65);
|
|
582
|
+
// }
|
|
583
|
+
// .new-icon-fingerprint:before {
|
|
584
|
+
// content: "\\e963";
|
|
585
|
+
// }
|
|
586
|
+
// .new-icon-follower:before {
|
|
587
|
+
// content: "\\e964";
|
|
588
|
+
// color: #535353;
|
|
589
|
+
// }
|
|
590
|
+
// .new-icon-forum:before {
|
|
591
|
+
// content: "\\e965";
|
|
592
|
+
// }
|
|
593
|
+
// .new-icon-get-app:before {
|
|
594
|
+
// content: "\\e966";
|
|
595
|
+
// }
|
|
596
|
+
// .new-icon-google-alt:before {
|
|
597
|
+
// content: "\\e967";
|
|
598
|
+
// }
|
|
599
|
+
// .new-icon-google-plus-alt:before {
|
|
600
|
+
// content: "\\e968";
|
|
601
|
+
// }
|
|
602
|
+
// .new-icon-google-plus:before {
|
|
603
|
+
// content: "\\e969";
|
|
604
|
+
// }
|
|
605
|
+
// .new-icon-google:before {
|
|
606
|
+
// content: "\\e96a";
|
|
607
|
+
// }
|
|
608
|
+
// .new-icon-gps-fixed:before {
|
|
609
|
+
// content: "\\e96b";
|
|
610
|
+
// }
|
|
611
|
+
// .new-icon-gps-not-fixed:before {
|
|
612
|
+
// content: "\\e96c";
|
|
613
|
+
// }
|
|
614
|
+
// .new-icon-gps-off:before {
|
|
615
|
+
// content: "\\e96d";
|
|
616
|
+
// }
|
|
617
|
+
// .new-icon-group:before {
|
|
618
|
+
// content: "\\e96e";
|
|
619
|
+
// }
|
|
620
|
+
// .new-icon-headset-mic:before {
|
|
621
|
+
// content: "\\e96f";
|
|
622
|
+
// }
|
|
623
|
+
// .new-icon-headset:before {
|
|
624
|
+
// content: "\\e970";
|
|
625
|
+
// }
|
|
626
|
+
// .new-icon-help-outline:before {
|
|
627
|
+
// content: "\\e971";
|
|
628
|
+
// }
|
|
629
|
+
// .new-icon-help:before {
|
|
630
|
+
// content: "\\e972";
|
|
631
|
+
// }
|
|
632
|
+
// .new-icon-highlight-off:before {
|
|
633
|
+
// content: "\\e973";
|
|
634
|
+
// }
|
|
635
|
+
// .new-icon-history:before {
|
|
636
|
+
// content: "\\e974";
|
|
637
|
+
// }
|
|
638
|
+
// .new-icon-home:before {
|
|
639
|
+
// content: "\\e975";
|
|
640
|
+
// }
|
|
641
|
+
// .new-icon-hourglass-empty:before {
|
|
642
|
+
// content: "\\e976";
|
|
643
|
+
// }
|
|
644
|
+
// .new-icon-hourglass-full:before {
|
|
645
|
+
// content: "\\e977";
|
|
646
|
+
// }
|
|
647
|
+
// .new-icon-ic-content-copy:before {
|
|
648
|
+
// content: "\\e978";
|
|
649
|
+
// }
|
|
650
|
+
// .new-icon-import-contacts:before {
|
|
651
|
+
// content: "\\e979";
|
|
652
|
+
// }
|
|
653
|
+
// .new-icon-indeterminate-check-box:before {
|
|
654
|
+
// content: "\\e97a";
|
|
655
|
+
// }
|
|
656
|
+
// .new-icon-info:before {
|
|
657
|
+
// content: "\\e97b";
|
|
658
|
+
// }
|
|
659
|
+
// .new-icon-instagram-alt:before {
|
|
660
|
+
// content: "\\e97c";
|
|
661
|
+
// }
|
|
662
|
+
// .new-icon-instagram:before {
|
|
663
|
+
// content: "\\e97d";
|
|
664
|
+
// }
|
|
665
|
+
// .new-icon-keyboard-backspace:before {
|
|
666
|
+
// content: "\\e97e";
|
|
667
|
+
// }
|
|
668
|
+
// .new-icon-keyboard-voice:before {
|
|
669
|
+
// content: "\\e97f";
|
|
670
|
+
// }
|
|
671
|
+
// .new-icon-keyboard:before {
|
|
672
|
+
// content: "\\e980";
|
|
673
|
+
// }
|
|
674
|
+
// .new-icon-language:before {
|
|
675
|
+
// content: "\\e981";
|
|
676
|
+
// }
|
|
677
|
+
// .new-icon-link-off:before {
|
|
678
|
+
// content: "\\e982";
|
|
679
|
+
// }
|
|
680
|
+
// .new-icon-link:before {
|
|
681
|
+
// content: "\\e983";
|
|
682
|
+
// }
|
|
683
|
+
// .new-icon-linkedin-alt:before {
|
|
684
|
+
// content: "\\e984";
|
|
685
|
+
// }
|
|
686
|
+
// .new-icon-linkedin:before {
|
|
687
|
+
// content: "\\e985";
|
|
688
|
+
// }
|
|
689
|
+
// .new-icon-local-offer .path1:before {
|
|
690
|
+
// content: "\\e986";
|
|
691
|
+
// color: rgb(255, 255, 255);
|
|
692
|
+
// }
|
|
693
|
+
// .new-icon-local-offer .path2:before {
|
|
694
|
+
// content: "\\e987";
|
|
695
|
+
// margin-left: -1em;
|
|
696
|
+
// color: rgb(59, 65, 65);
|
|
697
|
+
// }
|
|
698
|
+
// .new-icon-location-off:before {
|
|
699
|
+
// content: "\\e988";
|
|
700
|
+
// }
|
|
701
|
+
// .new-icon-location-on:before {
|
|
702
|
+
// content: "\\e989";
|
|
703
|
+
// }
|
|
704
|
+
// .new-icon-lock-open:before {
|
|
705
|
+
// content: "\\e98a";
|
|
706
|
+
// }
|
|
707
|
+
// .new-icon-lock:before {
|
|
708
|
+
// content: "\\e98b";
|
|
709
|
+
// }
|
|
710
|
+
// .new-icon-loop:before {
|
|
711
|
+
// content: "\\e98c";
|
|
712
|
+
// }
|
|
713
|
+
// .new-icon-loyalty:before {
|
|
714
|
+
// content: "\\e98d";
|
|
715
|
+
// }
|
|
716
|
+
// .new-icon-mail-outline:before {
|
|
717
|
+
// content: "\\e98e";
|
|
718
|
+
// }
|
|
719
|
+
// .new-icon-mail:before {
|
|
720
|
+
// content: "\\e98f";
|
|
721
|
+
// }
|
|
722
|
+
// .new-icon-menu:before {
|
|
723
|
+
// content: "\\e990";
|
|
724
|
+
// }
|
|
725
|
+
// .new-icon-mic-none:before {
|
|
726
|
+
// content: "\\e991";
|
|
727
|
+
// }
|
|
728
|
+
// .new-icon-mic-off:before {
|
|
729
|
+
// content: "\\e992";
|
|
730
|
+
// }
|
|
731
|
+
// .new-icon-mic:before {
|
|
732
|
+
// content: "\\e993";
|
|
733
|
+
// }
|
|
734
|
+
// .new-icon-mood-bad:before {
|
|
735
|
+
// content: "\\e994";
|
|
736
|
+
// }
|
|
737
|
+
// .new-icon-mood:before {
|
|
738
|
+
// content: "\\e995";
|
|
739
|
+
// }
|
|
740
|
+
// .new-icon-more-horiz:before {
|
|
741
|
+
// content: "\\e996";
|
|
742
|
+
// }
|
|
743
|
+
// .new-icon-more-vert:before {
|
|
744
|
+
// content: "\\e997";
|
|
745
|
+
// }
|
|
746
|
+
// .new-icon-not-interested:before {
|
|
747
|
+
// content: "\\e998";
|
|
748
|
+
// }
|
|
749
|
+
// .new-icon-note-add:before {
|
|
750
|
+
// content: "\\e999";
|
|
751
|
+
// }
|
|
752
|
+
// .new-icon-note:before {
|
|
753
|
+
// content: "\\e99a";
|
|
754
|
+
// }
|
|
755
|
+
// .new-icon-notification-important:before {
|
|
756
|
+
// content: "\\e99b";
|
|
757
|
+
// }
|
|
758
|
+
// .new-icon-notifications-active:before {
|
|
759
|
+
// content: "\\e99c";
|
|
760
|
+
// }
|
|
761
|
+
// .new-icon-notifications-none:before {
|
|
762
|
+
// content: "\\e99d";
|
|
763
|
+
// }
|
|
764
|
+
// .new-icon-notifications-off:before {
|
|
765
|
+
// content: "\\e99e";
|
|
766
|
+
// }
|
|
767
|
+
// .new-icon-notifications-paused:before {
|
|
768
|
+
// content: "\\e99f";
|
|
769
|
+
// }
|
|
770
|
+
// .new-icon-notifications:before {
|
|
771
|
+
// content: "\\e9a0";
|
|
772
|
+
// }
|
|
773
|
+
// .new-icon-offline-pin:before {
|
|
774
|
+
// content: "\\e9a1";
|
|
775
|
+
// }
|
|
776
|
+
// .new-icon-ondemand-video:before {
|
|
777
|
+
// content: "\\e9a2";
|
|
778
|
+
// }
|
|
779
|
+
// .new-icon-outlined-flag:before {
|
|
780
|
+
// content: "\\e9a3";
|
|
781
|
+
// }
|
|
782
|
+
// .new-icon-partner:before {
|
|
783
|
+
// content: "\\e9a4";
|
|
784
|
+
// }
|
|
785
|
+
// .new-icon-pause-circle-outline:before {
|
|
786
|
+
// content: "\\e9a5";
|
|
787
|
+
// }
|
|
788
|
+
// .new-icon-perm-contact-calendar:before {
|
|
789
|
+
// content: "\\e9a6";
|
|
790
|
+
// }
|
|
791
|
+
// .new-icon-perm-identity:before {
|
|
792
|
+
// content: "\\e9a7";
|
|
793
|
+
// }
|
|
794
|
+
// .new-icon-place:before {
|
|
795
|
+
// content: "\\e9a8";
|
|
796
|
+
// }
|
|
797
|
+
// .new-icon-play-arrow:before {
|
|
798
|
+
// content: "\\e9a9";
|
|
799
|
+
// }
|
|
800
|
+
// .new-icon-play-circle-filled:before {
|
|
801
|
+
// content: "\\e9aa";
|
|
802
|
+
// }
|
|
803
|
+
// .new-icon-play-circle-outline:before {
|
|
804
|
+
// content: "\\e9ab";
|
|
805
|
+
// }
|
|
806
|
+
// .new-icon-playlist-add-check:before {
|
|
807
|
+
// content: "\\e9ac";
|
|
808
|
+
// }
|
|
809
|
+
// .new-icon-playlist-add:before {
|
|
810
|
+
// content: "\\e9ad";
|
|
811
|
+
// }
|
|
812
|
+
// .new-icon-playlist-play:before {
|
|
813
|
+
// content: "\\e9ae";
|
|
814
|
+
// }
|
|
815
|
+
// .new-icon-print:before {
|
|
816
|
+
// content: "\\e9af";
|
|
817
|
+
// }
|
|
818
|
+
// .new-icon-query-builder:before {
|
|
819
|
+
// content: "\\e9b0";
|
|
820
|
+
// }
|
|
821
|
+
// .new-icon-question-answer:before {
|
|
822
|
+
// content: "\\e9b1";
|
|
823
|
+
// }
|
|
824
|
+
// .new-icon-radio-button-checked:before {
|
|
825
|
+
// content: "\\e9b2";
|
|
826
|
+
// }
|
|
827
|
+
// .new-icon-radio-button-unchecked:before {
|
|
828
|
+
// content: "\\e9b3";
|
|
829
|
+
// }
|
|
830
|
+
// .new-icon-remove-circle-outline:before {
|
|
831
|
+
// content: "\\e9b4";
|
|
832
|
+
// }
|
|
833
|
+
// .new-icon-remove-circle:before {
|
|
834
|
+
// content: "\\e9b5";
|
|
835
|
+
// }
|
|
836
|
+
// .new-icon-remove-red-eye-2 .path1:before {
|
|
837
|
+
// content: "\\e9b6";
|
|
838
|
+
// color: rgb(255, 255, 255);
|
|
839
|
+
// }
|
|
840
|
+
// .new-icon-remove-red-eye-2 .path2:before {
|
|
841
|
+
// content: "\\e9b7";
|
|
842
|
+
// margin-left: -1em;
|
|
843
|
+
// color: rgb(59, 65, 65);
|
|
844
|
+
// }
|
|
845
|
+
// .new-icon-remove-red-eye .path1:before {
|
|
846
|
+
// content: "\\e9b8";
|
|
847
|
+
// color: rgb(255, 255, 255);
|
|
848
|
+
// }
|
|
849
|
+
// .new-icon-remove-red-eye .path2:before {
|
|
850
|
+
// content: "\\e9b9";
|
|
851
|
+
// margin-left: -1em;
|
|
852
|
+
// color: rgb(59, 65, 65);
|
|
853
|
+
// }
|
|
854
|
+
// .new-icon-report-problem:before {
|
|
855
|
+
// content: "\\e9ba";
|
|
856
|
+
// }
|
|
857
|
+
// .new-icon-restore:before {
|
|
858
|
+
// content: "\\e9bb";
|
|
859
|
+
// }
|
|
860
|
+
// .new-icon-search:before {
|
|
861
|
+
// content: "\\e9bc";
|
|
862
|
+
// }
|
|
863
|
+
// .new-icon-send:before {
|
|
864
|
+
// content: "\\e9bd";
|
|
865
|
+
// }
|
|
866
|
+
// .new-icon-sentiment-dissatisfied:before {
|
|
867
|
+
// content: "\\e9be";
|
|
868
|
+
// }
|
|
869
|
+
// .new-icon-sentiment-satisfied:before {
|
|
870
|
+
// content: "\\e9bf";
|
|
871
|
+
// }
|
|
872
|
+
// .new-icon-sentiment-very-dissatisfied:before {
|
|
873
|
+
// content: "\\e9c0";
|
|
874
|
+
// }
|
|
875
|
+
// .new-icon-sentiment-very-satisfied:before {
|
|
876
|
+
// content: "\\e9c1";
|
|
877
|
+
// }
|
|
878
|
+
// .new-icon-setting:before {
|
|
879
|
+
// content: "\\e9c2";
|
|
880
|
+
// }
|
|
881
|
+
// .new-icon-settings-applications:before {
|
|
882
|
+
// content: "\\e9c3";
|
|
883
|
+
// }
|
|
884
|
+
// .new-icon-settings-ethernet:before {
|
|
885
|
+
// content: "\\e9c4";
|
|
886
|
+
// }
|
|
887
|
+
// .new-icon-share:before {
|
|
888
|
+
// content: "\\e9c5";
|
|
889
|
+
// }
|
|
890
|
+
// .new-icon-shopping-cart:before {
|
|
891
|
+
// content: "\\e9c6";
|
|
892
|
+
// }
|
|
893
|
+
// .new-icon-smartphone:before {
|
|
894
|
+
// content: "\\e9c7";
|
|
895
|
+
// }
|
|
896
|
+
// .new-icon-sort-by-alpha:before {
|
|
897
|
+
// content: "\\e9c8";
|
|
898
|
+
// }
|
|
899
|
+
// .new-icon-speaker:before {
|
|
900
|
+
// content: "\\e9c9";
|
|
901
|
+
// color: #535353;
|
|
902
|
+
// }
|
|
903
|
+
// .new-icon-star-border:before {
|
|
904
|
+
// content: "\\e9ca";
|
|
905
|
+
// }
|
|
906
|
+
// .new-icon-star-half:before {
|
|
907
|
+
// content: "\\e9cb";
|
|
908
|
+
// }
|
|
909
|
+
// .new-icon-star:before {
|
|
910
|
+
// content: "\\e9cc";
|
|
911
|
+
// }
|
|
912
|
+
// .new-icon-stay-current-landscape:before {
|
|
913
|
+
// content: "\\e9cd";
|
|
914
|
+
// }
|
|
915
|
+
// .new-icon-stay-current-portrait:before {
|
|
916
|
+
// content: "\\e9ce";
|
|
917
|
+
// }
|
|
918
|
+
// .new-icon-Subtraction:before {
|
|
919
|
+
// content: "\\e9cf";
|
|
920
|
+
// }
|
|
921
|
+
// .new-icon-supervised-user-circle:before {
|
|
922
|
+
// content: "\\e9d0";
|
|
923
|
+
// }
|
|
924
|
+
// .new-icon-supervisor-account:before {
|
|
925
|
+
// content: "\\e9d1";
|
|
926
|
+
// }
|
|
927
|
+
// .new-icon-tablet-android:before {
|
|
928
|
+
// content: "\\e9d2";
|
|
929
|
+
// }
|
|
930
|
+
// .new-icon-tablet:before {
|
|
931
|
+
// content: "\\e9d3";
|
|
932
|
+
// }
|
|
933
|
+
// .new-icon-telegram-alt:before {
|
|
934
|
+
// content: "\\e9d4";
|
|
935
|
+
// }
|
|
936
|
+
// .new-icon-telegram:before {
|
|
937
|
+
// content: "\\e9d5";
|
|
938
|
+
// }
|
|
939
|
+
// .new-icon-textsms:before {
|
|
940
|
+
// content: "\\e9d6";
|
|
941
|
+
// }
|
|
942
|
+
// .new-icon-theaters:before {
|
|
943
|
+
// content: "\\e9d7";
|
|
944
|
+
// }
|
|
945
|
+
// .new-icon-thumb-down-alt:before {
|
|
946
|
+
// content: "\\e9d8";
|
|
947
|
+
// }
|
|
948
|
+
// .new-icon-thumb-down:before {
|
|
949
|
+
// content: "\\e9d9";
|
|
950
|
+
// }
|
|
951
|
+
// .new-icon-thumb-up-alt:before {
|
|
952
|
+
// content: "\\e9da";
|
|
953
|
+
// }
|
|
954
|
+
// .new-icon-thumb-up:before {
|
|
955
|
+
// content: "\\e9db";
|
|
956
|
+
// }
|
|
957
|
+
// .new-icon-ticket:before {
|
|
958
|
+
// content: "\\e9dc";
|
|
959
|
+
// }
|
|
960
|
+
// .new-icon-today:before {
|
|
961
|
+
// content: "\\e9dd";
|
|
962
|
+
// }
|
|
963
|
+
// .new-icon-toggle-off:before {
|
|
964
|
+
// content: "\\e9de";
|
|
965
|
+
// }
|
|
966
|
+
// .new-icon-toggle-on:before {
|
|
967
|
+
// content: "\\e9df";
|
|
968
|
+
// }
|
|
969
|
+
// .new-icon-touch-app:before {
|
|
970
|
+
// content: "\\e9e0";
|
|
971
|
+
// }
|
|
972
|
+
// .new-icon-tv .path1:before {
|
|
973
|
+
// content: "\\e9e1";
|
|
974
|
+
// color: rgb(255, 255, 255);
|
|
975
|
+
// }
|
|
976
|
+
// .new-icon-tv .path2:before {
|
|
977
|
+
// content: "\\e9e2";
|
|
978
|
+
// margin-left: -1em;
|
|
979
|
+
// color: rgb(59, 65, 65);
|
|
980
|
+
// }
|
|
981
|
+
// .new-icon-twitter-alt:before {
|
|
982
|
+
// content: "\\e9e3";
|
|
983
|
+
// }
|
|
984
|
+
// .new-icon-twitter:before {
|
|
985
|
+
// content: "\\e9e4";
|
|
986
|
+
// }
|
|
987
|
+
// .new-icon-update:before {
|
|
988
|
+
// content: "\\e9e5";
|
|
989
|
+
// }
|
|
990
|
+
// .new-icon-verified-user:before {
|
|
991
|
+
// content: "\\e9e6";
|
|
992
|
+
// }
|
|
993
|
+
// .new-icon-view-carousel:before {
|
|
994
|
+
// content: "\\e9e7";
|
|
995
|
+
// }
|
|
996
|
+
// .new-icon-visibility-off:before {
|
|
997
|
+
// content: "\\e9e8";
|
|
998
|
+
// }
|
|
999
|
+
// .new-icon-visibility:before {
|
|
1000
|
+
// content: "\\e9e9";
|
|
1001
|
+
// }
|
|
1002
|
+
// .new-icon-volume-down:before {
|
|
1003
|
+
// content: "\\e9ea";
|
|
1004
|
+
// }
|
|
1005
|
+
// .new-icon-volume-mute:before {
|
|
1006
|
+
// content: "\\e9eb";
|
|
1007
|
+
// }
|
|
1008
|
+
// .new-icon-volume-off:before {
|
|
1009
|
+
// content: "\\e9ec";
|
|
1010
|
+
// }
|
|
1011
|
+
// .new-icon-volume-up:before {
|
|
1012
|
+
// content: "\\e9ed";
|
|
1013
|
+
// }
|
|
1014
|
+
// .new-icon-vpn-key:before {
|
|
1015
|
+
// content: "\\e9ee";
|
|
1016
|
+
// }
|
|
1017
|
+
// .new-icon-warning:before {
|
|
1018
|
+
// content: "\\e9ef";
|
|
1019
|
+
// }
|
|
1020
|
+
// .new-icon-watch-later:before {
|
|
1021
|
+
// content: "\\e9f0";
|
|
1022
|
+
// }
|
|
1023
|
+
// .new-icon-watch:before {
|
|
1024
|
+
// content: "\\e9f1";
|
|
1025
|
+
// }
|
|
1026
|
+
// .new-icon-Whatsapp-alt:before {
|
|
1027
|
+
// content: "\\e9f2";
|
|
1028
|
+
// }
|
|
1029
|
+
// .new-icon-where-to-vote:before {
|
|
1030
|
+
// content: "\\e9f3";
|
|
1031
|
+
// }
|
|
1032
|
+
// .new-icon-work-off:before {
|
|
1033
|
+
// content: "\\e9f4";
|
|
1034
|
+
// }
|
|
1035
|
+
// .new-icon-work-outline:before {
|
|
1036
|
+
// content: "\\e9f5";
|
|
1037
|
+
// }
|
|
1038
|
+
// .new-icon-work:before {
|
|
1039
|
+
// content: "\\e9f6";
|
|
1040
|
+
// }
|
|
1041
|
+
// .new-icon-zoom-in:before {
|
|
1042
|
+
// content: "\\e9f7";
|
|
1043
|
+
// }
|
|
1044
|
+
// .new-icon-zoom-out-map:before {
|
|
1045
|
+
// content: "\\e9f8";
|
|
1046
|
+
// }
|
|
1047
|
+
// .new-icon-zoom-out:before {
|
|
1048
|
+
// content: "\\e9f9";
|
|
1049
|
+
// }
|
|
1050
|
+
|
|
1051
|
+
|
|
1052
|
+
// `;
|
|
1053
|
+
|
|
1054
|
+
// export default FontStyle;
|