fuse-importer 0.0.1-staging
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/README.md +270 -0
- package/lib/esm/Importer/ImporterWithContext.d.ts +6 -0
- package/lib/esm/Importer/ImporterWithContext.js +62 -0
- package/lib/esm/Importer/Matcher/EnumFieldsMatchers/EnumFieldMatcher/index.d.ts +3 -0
- package/lib/esm/Importer/Matcher/EnumFieldsMatchers/EnumFieldMatcher/index.js +68 -0
- package/lib/esm/Importer/Matcher/EnumFieldsMatchers/EnumFieldMatcher/tableColumns.d.ts +13 -0
- package/lib/esm/Importer/Matcher/EnumFieldsMatchers/EnumFieldMatcher/tableColumns.js +58 -0
- package/lib/esm/Importer/Matcher/EnumFieldsMatchers/EnumFieldMatcherContext.d.ts +10 -0
- package/lib/esm/Importer/Matcher/EnumFieldsMatchers/EnumFieldMatcherContext.js +21 -0
- package/lib/esm/Importer/Matcher/EnumFieldsMatchers/index.d.ts +1 -0
- package/lib/esm/Importer/Matcher/EnumFieldsMatchers/index.js +23 -0
- package/lib/esm/Importer/Matcher/HeaderMatcher/index.d.ts +2 -0
- package/lib/esm/Importer/Matcher/HeaderMatcher/index.js +61 -0
- package/lib/esm/Importer/Matcher/HeaderMatcher/tableColumns.d.ts +14 -0
- package/lib/esm/Importer/Matcher/HeaderMatcher/tableColumns.js +55 -0
- package/lib/esm/Importer/Matcher/common/icons/index.d.ts +2 -0
- package/lib/esm/Importer/Matcher/common/icons/index.js +14 -0
- package/lib/esm/Importer/Matcher/common/index.d.ts +3 -0
- package/lib/esm/Importer/Matcher/common/index.js +39 -0
- package/lib/esm/Importer/Matcher/common/types.d.ts +7 -0
- package/lib/esm/Importer/Matcher/common/types.js +9 -0
- package/lib/esm/Importer/Matcher/index.d.ts +3 -0
- package/lib/esm/Importer/Matcher/index.js +22 -0
- package/lib/esm/Importer/PreviewFirstTime.d.ts +1 -0
- package/lib/esm/Importer/PreviewFirstTime.js +81 -0
- package/lib/esm/Importer/PreviewModeBanner.d.ts +1 -0
- package/lib/esm/Importer/PreviewModeBanner.js +19 -0
- package/lib/esm/Importer/Review/AppResponseModal.d.ts +1 -0
- package/lib/esm/Importer/Review/AppResponseModal.js +35 -0
- package/lib/esm/Importer/Review/ReviewContextProvider.d.ts +29 -0
- package/lib/esm/Importer/Review/ReviewContextProvider.js +290 -0
- package/lib/esm/Importer/Review/ReviewWithContext.d.ts +2 -0
- package/lib/esm/Importer/Review/ReviewWithContext.js +33 -0
- package/lib/esm/Importer/Review/index.d.ts +3 -0
- package/lib/esm/Importer/Review/index.js +4 -0
- package/lib/esm/Importer/Stepper/ConfirmCloseModal.d.ts +7 -0
- package/lib/esm/Importer/Stepper/ConfirmCloseModal.js +24 -0
- package/lib/esm/Importer/Stepper/Step.d.ts +6 -0
- package/lib/esm/Importer/Stepper/Step.js +19 -0
- package/lib/esm/Importer/Stepper/StepIndex.d.ts +5 -0
- package/lib/esm/Importer/Stepper/StepIndex.js +27 -0
- package/lib/esm/Importer/Stepper/StepperSubmitModal.d.ts +7 -0
- package/lib/esm/Importer/Stepper/StepperSubmitModal.js +24 -0
- package/lib/esm/Importer/Stepper/UnmatchedHeadersModal.d.ts +8 -0
- package/lib/esm/Importer/Stepper/UnmatchedHeadersModal.js +31 -0
- package/lib/esm/Importer/Stepper/common/getEnumFieldValueMatchingsInitialValue.d.ts +8 -0
- package/lib/esm/Importer/Stepper/common/getEnumFieldValueMatchingsInitialValue.js +33 -0
- package/lib/esm/Importer/Stepper/common/icons.d.ts +2 -0
- package/lib/esm/Importer/Stepper/common/icons.js +18 -0
- package/lib/esm/Importer/Stepper/index.d.ts +6 -0
- package/lib/esm/Importer/Stepper/index.js +118 -0
- package/lib/esm/Importer/TrialModeBanner.d.ts +1 -0
- package/lib/esm/Importer/TrialModeBanner.js +22 -0
- package/lib/esm/Importer/Uploader/DragAndDropImporter/DragAndDropImporter.styles.d.ts +3 -0
- package/lib/esm/Importer/Uploader/DragAndDropImporter/DragAndDropImporter.styles.js +11 -0
- package/lib/esm/Importer/Uploader/DragAndDropImporter/ImporterDropzone.d.ts +2 -0
- package/lib/esm/Importer/Uploader/DragAndDropImporter/ImporterDropzone.js +111 -0
- package/lib/esm/Importer/Uploader/DragAndDropImporter/ImporterSectionHeader/ImporterSectionHeader.styles.d.ts +7 -0
- package/lib/esm/Importer/Uploader/DragAndDropImporter/ImporterSectionHeader/ImporterSectionHeader.styles.js +11 -0
- package/lib/esm/Importer/Uploader/DragAndDropImporter/ImporterSectionHeader/index.d.ts +7 -0
- package/lib/esm/Importer/Uploader/DragAndDropImporter/ImporterSectionHeader/index.js +44 -0
- package/lib/esm/Importer/Uploader/DragAndDropImporter/backgrounds.d.ts +2 -0
- package/lib/esm/Importer/Uploader/DragAndDropImporter/backgrounds.js +14 -0
- package/lib/esm/Importer/Uploader/DragAndDropImporter/index.d.ts +3 -0
- package/lib/esm/Importer/Uploader/DragAndDropImporter/index.js +45 -0
- package/lib/esm/Importer/Uploader/HeaderButtons.d.ts +1 -0
- package/lib/esm/Importer/Uploader/HeaderButtons.js +28 -0
- package/lib/esm/Importer/Uploader/HeadersPreview.d.ts +2 -0
- package/lib/esm/Importer/Uploader/HeadersPreview.js +36 -0
- package/lib/esm/Importer/Uploader/UploaderContextProvider.d.ts +13 -0
- package/lib/esm/Importer/Uploader/UploaderContextProvider.js +27 -0
- package/lib/esm/Importer/Uploader/index.d.ts +3 -0
- package/lib/esm/Importer/Uploader/index.js +13 -0
- package/lib/esm/Importer/common/AppLoading.d.ts +1 -0
- package/lib/esm/Importer/common/AppLoading.js +24 -0
- package/lib/esm/Importer/common/Footer.d.ts +2 -0
- package/lib/esm/Importer/common/Footer.js +17 -0
- package/lib/esm/Importer/common/FuseApi.d.ts +12 -0
- package/lib/esm/Importer/common/FuseApi.js +48 -0
- package/lib/esm/Importer/common/GlobalStyle.d.ts +1 -0
- package/lib/esm/Importer/common/GlobalStyle.js +7 -0
- package/lib/esm/Importer/common/ImporterFonts.d.ts +1 -0
- package/lib/esm/Importer/common/ImporterFonts.js +5 -0
- package/lib/esm/Importer/common/Spreadsheet/SpreadsheetContextProvider/filterMethods.d.ts +5 -0
- package/lib/esm/Importer/common/Spreadsheet/SpreadsheetContextProvider/filterMethods.js +67 -0
- package/lib/esm/Importer/common/Spreadsheet/SpreadsheetContextProvider/index.d.ts +47 -0
- package/lib/esm/Importer/common/Spreadsheet/SpreadsheetContextProvider/index.js +167 -0
- package/lib/esm/Importer/common/Spreadsheet/SpreadsheetContextProvider/useSpreadsheetFilter.d.ts +14 -0
- package/lib/esm/Importer/common/Spreadsheet/SpreadsheetContextProvider/useSpreadsheetFilter.js +45 -0
- package/lib/esm/Importer/common/Spreadsheet/SpreadsheetContextProvider/utils.d.ts +2 -0
- package/lib/esm/Importer/common/Spreadsheet/SpreadsheetContextProvider/utils.js +14 -0
- package/lib/esm/Importer/common/Spreadsheet/common/index.d.ts +16 -0
- package/lib/esm/Importer/common/Spreadsheet/common/index.js +63 -0
- package/lib/esm/Importer/common/Spreadsheet/common/types.d.ts +24 -0
- package/lib/esm/Importer/common/Spreadsheet/common/types.js +5 -0
- package/lib/esm/Importer/common/Spreadsheet/components/FieldHeader.d.ts +15 -0
- package/lib/esm/Importer/common/Spreadsheet/components/FieldHeader.js +66 -0
- package/lib/esm/Importer/common/Spreadsheet/components/GlobalStyle.d.ts +2 -0
- package/lib/esm/Importer/common/Spreadsheet/components/GlobalStyle.js +9 -0
- package/lib/esm/Importer/common/Spreadsheet/components/SpreadsheetData.d.ts +3 -0
- package/lib/esm/Importer/common/Spreadsheet/components/SpreadsheetData.js +105 -0
- package/lib/esm/Importer/common/Spreadsheet/components/SpreadsheetRowCheckboxes.d.ts +10 -0
- package/lib/esm/Importer/common/Spreadsheet/components/SpreadsheetRowCheckboxes.js +181 -0
- package/lib/esm/Importer/common/Spreadsheet/components/SpreadsheetRowNumbers.d.ts +9 -0
- package/lib/esm/Importer/common/Spreadsheet/components/SpreadsheetRowNumbers.js +55 -0
- package/lib/esm/Importer/common/Spreadsheet/components/ValidationProgress.d.ts +5 -0
- package/lib/esm/Importer/common/Spreadsheet/components/ValidationProgress.js +19 -0
- package/lib/esm/Importer/common/Spreadsheet/components/fields/SpeadsheetAutocomplete.d.ts +13 -0
- package/lib/esm/Importer/common/Spreadsheet/components/fields/SpeadsheetAutocomplete.js +38 -0
- package/lib/esm/Importer/common/Spreadsheet/components/fields/SpreadsheetInput.d.ts +12 -0
- package/lib/esm/Importer/common/Spreadsheet/components/fields/SpreadsheetInput.js +43 -0
- package/lib/esm/Importer/common/Spreadsheet/components/fields/index.d.ts +12 -0
- package/lib/esm/Importer/common/Spreadsheet/components/fields/index.js +96 -0
- package/lib/esm/Importer/common/Spreadsheet/components/inputs/Boolean.d.ts +3 -0
- package/lib/esm/Importer/common/Spreadsheet/components/inputs/Boolean.js +18 -0
- package/lib/esm/Importer/common/Spreadsheet/components/inputs/EmailInput.d.ts +3 -0
- package/lib/esm/Importer/common/Spreadsheet/components/inputs/EmailInput.js +14 -0
- package/lib/esm/Importer/common/Spreadsheet/components/inputs/EnumInput.d.ts +6 -0
- package/lib/esm/Importer/common/Spreadsheet/components/inputs/EnumInput.js +30 -0
- package/lib/esm/Importer/common/Spreadsheet/components/inputs/FloatInput.d.ts +3 -0
- package/lib/esm/Importer/common/Spreadsheet/components/inputs/FloatInput.js +16 -0
- package/lib/esm/Importer/common/Spreadsheet/components/inputs/IntegerInput.d.ts +3 -0
- package/lib/esm/Importer/common/Spreadsheet/components/inputs/IntegerInput.js +16 -0
- package/lib/esm/Importer/common/Spreadsheet/components/inputs/StringInput.d.ts +3 -0
- package/lib/esm/Importer/common/Spreadsheet/components/inputs/StringInput.js +14 -0
- package/lib/esm/Importer/common/Spreadsheet/components/inputs/index.d.ts +13 -0
- package/lib/esm/Importer/common/Spreadsheet/components/inputs/index.js +20 -0
- package/lib/esm/Importer/common/Spreadsheet/hooks.d.ts +34 -0
- package/lib/esm/Importer/common/Spreadsheet/hooks.js +234 -0
- package/lib/esm/Importer/common/Spreadsheet/index.d.ts +6 -0
- package/lib/esm/Importer/common/Spreadsheet/index.js +125 -0
- package/lib/esm/Importer/common/Spreadsheet/styles.d.ts +10 -0
- package/lib/esm/Importer/common/Spreadsheet/styles.js +16 -0
- package/lib/esm/Importer/common/Spreadsheet/transformation/index.d.ts +7 -0
- package/lib/esm/Importer/common/Spreadsheet/transformation/index.js +25 -0
- package/lib/esm/Importer/common/Spreadsheet/transformation/transformators.d.ts +8 -0
- package/lib/esm/Importer/common/Spreadsheet/transformation/transformators.js +106 -0
- package/lib/esm/Importer/common/Spreadsheet/validation/index.d.ts +23 -0
- package/lib/esm/Importer/common/Spreadsheet/validation/index.js +196 -0
- package/lib/esm/Importer/common/Spreadsheet/validation/validators.d.ts +6 -0
- package/lib/esm/Importer/common/Spreadsheet/validation/validators.js +176 -0
- package/lib/esm/Importer/common/icons/index.d.ts +6 -0
- package/lib/esm/Importer/common/icons/index.js +18 -0
- package/lib/esm/Importer/common/index.d.ts +15 -0
- package/lib/esm/Importer/common/index.js +13 -0
- package/lib/esm/Importer/common/theme.d.ts +238 -0
- package/lib/esm/Importer/common/theme.js +19 -0
- package/lib/esm/Importer/common/utils.d.ts +12 -0
- package/lib/esm/Importer/common/utils.js +100 -0
- package/lib/esm/Importer/contexts/ImporterContextProvider.d.ts +71 -0
- package/lib/esm/Importer/contexts/ImporterContextProvider.js +244 -0
- package/lib/esm/Importer/data/index.d.ts +52 -0
- package/lib/esm/Importer/data/index.js +155 -0
- package/lib/esm/Importer/index.d.ts +22 -0
- package/lib/esm/Importer/index.js +28 -0
- package/lib/esm/api/index.d.ts +16 -0
- package/lib/esm/api/index.js +93 -0
- package/lib/esm/api/responseHandlers.d.ts +4 -0
- package/lib/esm/api/responseHandlers.js +49 -0
- package/lib/esm/common/ConfirmationModal.d.ts +10 -0
- package/lib/esm/common/ConfirmationModal.js +19 -0
- package/lib/esm/common/Modal.d.ts +16 -0
- package/lib/esm/common/Modal.js +31 -0
- package/lib/esm/common/Spinner.d.ts +5 -0
- package/lib/esm/common/Spinner.js +41 -0
- package/lib/esm/common/Table/Pagination/icons.d.ts +11 -0
- package/lib/esm/common/Table/Pagination/icons.js +42 -0
- package/lib/esm/common/Table/Pagination/index.d.ts +2 -0
- package/lib/esm/common/Table/Pagination/index.js +32 -0
- package/lib/esm/common/Table/TableActions/DeleteSelectedRows.d.ts +5 -0
- package/lib/esm/common/Table/TableActions/DeleteSelectedRows.js +50 -0
- package/lib/esm/common/Table/TableActions/ExportData.d.ts +3 -0
- package/lib/esm/common/Table/TableActions/ExportData.js +23 -0
- package/lib/esm/common/Table/TableActions/FilterByErrors/FilterByErrors.d.ts +1 -0
- package/lib/esm/common/Table/TableActions/FilterByErrors/FilterByErrors.js +46 -0
- package/lib/esm/common/Table/TableActions/FilterByErrors/FilterByErrors.styles.d.ts +6 -0
- package/lib/esm/common/Table/TableActions/FilterByErrors/FilterByErrors.styles.js +24 -0
- package/lib/esm/common/Table/TableActions/FilterByErrors/functions.d.ts +11 -0
- package/lib/esm/common/Table/TableActions/FilterByErrors/functions.js +35 -0
- package/lib/esm/common/Table/TableActions/FilterByErrors/index.d.ts +1 -0
- package/lib/esm/common/Table/TableActions/FilterByErrors/index.js +1 -0
- package/lib/esm/common/Table/TableActions/RowFilters.d.ts +1 -0
- package/lib/esm/common/Table/TableActions/RowFilters.js +39 -0
- package/lib/esm/common/Table/TableActions/SearchRows.d.ts +3 -0
- package/lib/esm/common/Table/TableActions/SearchRows.js +72 -0
- package/lib/esm/common/Table/TableActions/TableActions.d.ts +8 -0
- package/lib/esm/common/Table/TableActions/TableActions.js +34 -0
- package/lib/esm/common/Table/TableActions/TableActions.styles.d.ts +5 -0
- package/lib/esm/common/Table/TableActions/TableActions.styles.js +17 -0
- package/lib/esm/common/Table/TableActions/common.d.ts +1 -0
- package/lib/esm/common/Table/TableActions/common.js +1 -0
- package/lib/esm/common/Table/TableActions/hooks.d.ts +18 -0
- package/lib/esm/common/Table/TableActions/hooks.js +41 -0
- package/lib/esm/common/Table/TableActions/icons.d.ts +4 -0
- package/lib/esm/common/Table/TableActions/icons.js +16 -0
- package/lib/esm/common/Table/TableActions/index.d.ts +1 -0
- package/lib/esm/common/Table/TableActions/index.js +1 -0
- package/lib/esm/common/Table/TableDataProvider.d.ts +35 -0
- package/lib/esm/common/Table/TableDataProvider.js +127 -0
- package/lib/esm/common/Table/TableView/CustomScrollbar.d.ts +2 -0
- package/lib/esm/common/Table/TableView/CustomScrollbar.js +34 -0
- package/lib/esm/common/Table/TableView/TableHeaders.d.ts +23 -0
- package/lib/esm/common/Table/TableView/TableHeaders.js +69 -0
- package/lib/esm/common/Table/TableView/TableRows/TableRow.d.ts +19 -0
- package/lib/esm/common/Table/TableView/TableRows/TableRow.js +57 -0
- package/lib/esm/common/Table/TableView/TableRows/index.d.ts +4 -0
- package/lib/esm/common/Table/TableView/TableRows/index.js +45 -0
- package/lib/esm/common/Table/TableView/common/index.d.ts +5 -0
- package/lib/esm/common/Table/TableView/common/index.js +37 -0
- package/lib/esm/common/Table/TableView/index.d.ts +11 -0
- package/lib/esm/common/Table/TableView/index.js +133 -0
- package/lib/esm/common/Table/TableView/types.d.ts +37 -0
- package/lib/esm/common/Table/TableView/types.js +1 -0
- package/lib/esm/common/Table/icons.d.ts +3 -0
- package/lib/esm/common/Table/icons.js +15 -0
- package/lib/esm/common/Table/index.d.ts +11 -0
- package/lib/esm/common/Table/index.js +140 -0
- package/lib/esm/common/Table/useReorderRows.d.ts +4 -0
- package/lib/esm/common/Table/useReorderRows.js +83 -0
- package/lib/esm/common/Toast.d.ts +4 -0
- package/lib/esm/common/Toast.js +69 -0
- package/lib/esm/common/TooltipProvider.d.ts +19 -0
- package/lib/esm/common/TooltipProvider.js +57 -0
- package/lib/esm/common/buttons.d.ts +50 -0
- package/lib/esm/common/buttons.js +97 -0
- package/lib/esm/common/columnsTransformations.d.ts +15 -0
- package/lib/esm/common/columnsTransformations.js +92 -0
- package/lib/esm/common/columnsValidations.d.ts +45 -0
- package/lib/esm/common/columnsValidations.js +431 -0
- package/lib/esm/common/icons/index.d.ts +11 -0
- package/lib/esm/common/icons/index.js +30 -0
- package/lib/esm/common/index.d.ts +27 -0
- package/lib/esm/common/index.js +45 -0
- package/lib/esm/common/inputs/Autocomplete.d.ts +22 -0
- package/lib/esm/common/inputs/Autocomplete.js +110 -0
- package/lib/esm/common/inputs/Checkbox.d.ts +11 -0
- package/lib/esm/common/inputs/Checkbox.js +53 -0
- package/lib/esm/common/inputs/SelectMenu.d.ts +14 -0
- package/lib/esm/common/inputs/SelectMenu.js +67 -0
- package/lib/esm/common/inputs/TextInput.d.ts +29 -0
- package/lib/esm/common/inputs/TextInput.js +89 -0
- package/lib/esm/common/inputs/index.d.ts +5 -0
- package/lib/esm/common/inputs/index.js +5 -0
- package/lib/esm/common/inputs/tooltip.d.ts +4 -0
- package/lib/esm/common/inputs/tooltip.js +38 -0
- package/lib/esm/common/logo.d.ts +1 -0
- package/lib/esm/common/logo.js +13 -0
- package/lib/esm/hooks/index.d.ts +5 -0
- package/lib/esm/hooks/index.js +16 -0
- package/lib/esm/index.d.ts +34 -0
- package/lib/esm/index.js +230 -0
- package/lib/esm/locales/de.d.ts +121 -0
- package/lib/esm/locales/de.js +121 -0
- package/lib/esm/locales/en.d.ts +121 -0
- package/lib/esm/locales/en.js +121 -0
- package/lib/esm/locales/es.d.ts +121 -0
- package/lib/esm/locales/es.js +121 -0
- package/lib/esm/locales/fr.d.ts +121 -0
- package/lib/esm/locales/fr.js +121 -0
- package/lib/esm/locales/index.d.ts +4 -0
- package/lib/esm/locales/index.js +4 -0
- package/lib/esm/styled/fontsURL.d.ts +9 -0
- package/lib/esm/styled/fontsURL.js +27 -0
- package/lib/esm/styled/index.d.ts +3 -0
- package/lib/esm/styled/index.js +3 -0
- package/lib/esm/styled/theme/animations.d.ts +3 -0
- package/lib/esm/styled/theme/animations.js +9 -0
- package/lib/esm/styled/theme/colorPalette.d.ts +171 -0
- package/lib/esm/styled/theme/colorPalette.js +109 -0
- package/lib/esm/styled/theme/debugCss.d.ts +10 -0
- package/lib/esm/styled/theme/debugCss.js +16 -0
- package/lib/esm/styled/theme/dimensionsCss.d.ts +17 -0
- package/lib/esm/styled/theme/dimensionsCss.js +20 -0
- package/lib/esm/styled/theme/fontCss.d.ts +11 -0
- package/lib/esm/styled/theme/fontCss.js +17 -0
- package/lib/esm/styled/theme/globalCss.d.ts +18 -0
- package/lib/esm/styled/theme/globalCss.js +26 -0
- package/lib/esm/styled/theme/index.d.ts +345 -0
- package/lib/esm/styled/theme/index.js +33 -0
- package/lib/esm/styled/theme/layoutCss.d.ts +20 -0
- package/lib/esm/styled/theme/layoutCss.js +26 -0
- package/lib/esm/styled/theme/mediaQueries.d.ts +4 -0
- package/lib/esm/styled/theme/mediaQueries.js +4 -0
- package/lib/esm/styled/theme/positionCss.d.ts +20 -0
- package/lib/esm/styled/theme/positionCss.js +27 -0
- package/lib/esm/styled/theme/textCss.d.ts +12 -0
- package/lib/esm/styled/theme/textCss.js +18 -0
- package/lib/esm/styled/theme/textStyles.d.ts +21 -0
- package/lib/esm/styled/theme/textStyles.js +27 -0
- package/lib/esm/styled/themeType.d.ts +2 -0
- package/lib/esm/styled/themeType.js +6 -0
- package/lib/esm/styled/utils.d.ts +22 -0
- package/lib/esm/styled/utils.js +17 -0
- package/lib/esm/types.d.ts +209 -0
- package/lib/esm/types.js +65 -0
- package/lib/esm/utils/hooks/useWindowSize.d.ts +11 -0
- package/lib/esm/utils/hooks/useWindowSize.js +23 -0
- package/lib/esm/utils/hooks.d.ts +1 -0
- package/lib/esm/utils/hooks.js +1 -0
- package/lib/esm/utils/index.d.ts +12 -0
- package/lib/esm/utils/index.js +37 -0
- package/lib/main.js +172 -0
- package/lib/main.js.LICENSE.txt +61 -0
- package/package.json +96 -0
|
@@ -0,0 +1,171 @@
|
|
|
1
|
+
export declare const colorPalette: {
|
|
2
|
+
red: string;
|
|
3
|
+
black: string;
|
|
4
|
+
gold: string;
|
|
5
|
+
pink100: string;
|
|
6
|
+
pink300: string;
|
|
7
|
+
pink500: string;
|
|
8
|
+
pink700: string;
|
|
9
|
+
pink900: string;
|
|
10
|
+
white: string;
|
|
11
|
+
white50: string;
|
|
12
|
+
red50: string;
|
|
13
|
+
red100: string;
|
|
14
|
+
red200: string;
|
|
15
|
+
red300: string;
|
|
16
|
+
red400: string;
|
|
17
|
+
red500: string;
|
|
18
|
+
error: string;
|
|
19
|
+
red600: string;
|
|
20
|
+
red700: string;
|
|
21
|
+
red800: string;
|
|
22
|
+
red900: string;
|
|
23
|
+
red1000: string;
|
|
24
|
+
red2000: string;
|
|
25
|
+
blue50: string;
|
|
26
|
+
blue100: string;
|
|
27
|
+
blue400: string;
|
|
28
|
+
blue500: string;
|
|
29
|
+
blue900: string;
|
|
30
|
+
gray5: string;
|
|
31
|
+
gray10: string;
|
|
32
|
+
gray50: string;
|
|
33
|
+
gray100: string;
|
|
34
|
+
gray200: string;
|
|
35
|
+
gray300: string;
|
|
36
|
+
gray390: string;
|
|
37
|
+
gray400: string;
|
|
38
|
+
gray500: string;
|
|
39
|
+
gray600: string;
|
|
40
|
+
gray700: string;
|
|
41
|
+
gray800: string;
|
|
42
|
+
gray900: string;
|
|
43
|
+
gray1000: string;
|
|
44
|
+
green50: string;
|
|
45
|
+
green100: string;
|
|
46
|
+
green200: string;
|
|
47
|
+
green300: string;
|
|
48
|
+
green400: string;
|
|
49
|
+
green500: string;
|
|
50
|
+
green600: string;
|
|
51
|
+
green700: string;
|
|
52
|
+
green800: string;
|
|
53
|
+
green900: string;
|
|
54
|
+
green1000: string;
|
|
55
|
+
orange50: string;
|
|
56
|
+
orange100: string;
|
|
57
|
+
orange200: string;
|
|
58
|
+
orange300: string;
|
|
59
|
+
orange400: string;
|
|
60
|
+
orange500: string;
|
|
61
|
+
orange600: string;
|
|
62
|
+
orange700: string;
|
|
63
|
+
orange800: string;
|
|
64
|
+
orange900: string;
|
|
65
|
+
orange1000: string;
|
|
66
|
+
orange1100: string;
|
|
67
|
+
orange1200: string;
|
|
68
|
+
};
|
|
69
|
+
export declare const colorLabels: {
|
|
70
|
+
readonly backgroundInterface: string;
|
|
71
|
+
readonly interactiveDisabled: "#FEB0BD";
|
|
72
|
+
readonly error: string;
|
|
73
|
+
readonly warning01: string;
|
|
74
|
+
readonly highlight01: string;
|
|
75
|
+
readonly tableHeader: string;
|
|
76
|
+
readonly outlineInputs: string;
|
|
77
|
+
readonly text: string;
|
|
78
|
+
readonly textPrim: string;
|
|
79
|
+
readonly textSec: string;
|
|
80
|
+
readonly textTert: string;
|
|
81
|
+
readonly textLink: string;
|
|
82
|
+
readonly placeholder: string;
|
|
83
|
+
readonly disabled1: string;
|
|
84
|
+
readonly disabled2: string;
|
|
85
|
+
readonly disabled3: string;
|
|
86
|
+
readonly background: string;
|
|
87
|
+
};
|
|
88
|
+
export declare const colors: {
|
|
89
|
+
backgroundInterface: string;
|
|
90
|
+
interactiveDisabled: "#FEB0BD";
|
|
91
|
+
error: string;
|
|
92
|
+
warning01: string;
|
|
93
|
+
highlight01: string;
|
|
94
|
+
tableHeader: string;
|
|
95
|
+
outlineInputs: string;
|
|
96
|
+
text: string;
|
|
97
|
+
textPrim: string;
|
|
98
|
+
textSec: string;
|
|
99
|
+
textTert: string;
|
|
100
|
+
textLink: string;
|
|
101
|
+
placeholder: string;
|
|
102
|
+
disabled1: string;
|
|
103
|
+
disabled2: string;
|
|
104
|
+
disabled3: string;
|
|
105
|
+
background: string;
|
|
106
|
+
red: string;
|
|
107
|
+
black: string;
|
|
108
|
+
gold: string;
|
|
109
|
+
pink100: string;
|
|
110
|
+
pink300: string;
|
|
111
|
+
pink500: string;
|
|
112
|
+
pink700: string;
|
|
113
|
+
pink900: string;
|
|
114
|
+
white: string;
|
|
115
|
+
white50: string;
|
|
116
|
+
red50: string;
|
|
117
|
+
red100: string;
|
|
118
|
+
red200: string;
|
|
119
|
+
red300: string;
|
|
120
|
+
red400: string;
|
|
121
|
+
red500: string;
|
|
122
|
+
red600: string;
|
|
123
|
+
red700: string;
|
|
124
|
+
red800: string;
|
|
125
|
+
red900: string;
|
|
126
|
+
red1000: string;
|
|
127
|
+
red2000: string;
|
|
128
|
+
blue50: string;
|
|
129
|
+
blue100: string;
|
|
130
|
+
blue400: string;
|
|
131
|
+
blue500: string;
|
|
132
|
+
blue900: string;
|
|
133
|
+
gray5: string;
|
|
134
|
+
gray10: string;
|
|
135
|
+
gray50: string;
|
|
136
|
+
gray100: string;
|
|
137
|
+
gray200: string;
|
|
138
|
+
gray300: string;
|
|
139
|
+
gray390: string;
|
|
140
|
+
gray400: string;
|
|
141
|
+
gray500: string;
|
|
142
|
+
gray600: string;
|
|
143
|
+
gray700: string;
|
|
144
|
+
gray800: string;
|
|
145
|
+
gray900: string;
|
|
146
|
+
gray1000: string;
|
|
147
|
+
green50: string;
|
|
148
|
+
green100: string;
|
|
149
|
+
green200: string;
|
|
150
|
+
green300: string;
|
|
151
|
+
green400: string;
|
|
152
|
+
green500: string;
|
|
153
|
+
green600: string;
|
|
154
|
+
green700: string;
|
|
155
|
+
green800: string;
|
|
156
|
+
green900: string;
|
|
157
|
+
green1000: string;
|
|
158
|
+
orange50: string;
|
|
159
|
+
orange100: string;
|
|
160
|
+
orange200: string;
|
|
161
|
+
orange300: string;
|
|
162
|
+
orange400: string;
|
|
163
|
+
orange500: string;
|
|
164
|
+
orange600: string;
|
|
165
|
+
orange700: string;
|
|
166
|
+
orange800: string;
|
|
167
|
+
orange900: string;
|
|
168
|
+
orange1000: string;
|
|
169
|
+
orange1100: string;
|
|
170
|
+
orange1200: string;
|
|
171
|
+
};
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
var __assign = (this && this.__assign) || function () {
|
|
2
|
+
__assign = Object.assign || function(t) {
|
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
4
|
+
s = arguments[i];
|
|
5
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
6
|
+
t[p] = s[p];
|
|
7
|
+
}
|
|
8
|
+
return t;
|
|
9
|
+
};
|
|
10
|
+
return __assign.apply(this, arguments);
|
|
11
|
+
};
|
|
12
|
+
var gray = {
|
|
13
|
+
gray5: "#F9FAFB",
|
|
14
|
+
gray10: "#FCFCFD",
|
|
15
|
+
gray50: "#F8F8F9",
|
|
16
|
+
gray100: "#F0F0F1",
|
|
17
|
+
gray200: "#E4E4E5",
|
|
18
|
+
gray300: "#CAC4BF",
|
|
19
|
+
gray390: "#BFBFBF",
|
|
20
|
+
gray400: "#B1B1B2",
|
|
21
|
+
gray500: "#989898",
|
|
22
|
+
gray600: "#7F7F7F",
|
|
23
|
+
gray700: "#4D4D4D",
|
|
24
|
+
gray800: "#4C4C4C",
|
|
25
|
+
gray900: "#333333",
|
|
26
|
+
gray1000: "#1C1C1C",
|
|
27
|
+
};
|
|
28
|
+
var red = {
|
|
29
|
+
red50: "#E6DBDB",
|
|
30
|
+
red100: "#FCEDEA",
|
|
31
|
+
red200: "#F8DCD4",
|
|
32
|
+
red300: "#F2B9AA",
|
|
33
|
+
red400: "#EB967F",
|
|
34
|
+
red500: "#E57354",
|
|
35
|
+
error: "#CF4520",
|
|
36
|
+
red600: "#CF4520",
|
|
37
|
+
red700: "#A9381A",
|
|
38
|
+
red800: "#842C14",
|
|
39
|
+
red900: "#5E1F0F",
|
|
40
|
+
red1000: "#381309",
|
|
41
|
+
red2000: "#87464614",
|
|
42
|
+
};
|
|
43
|
+
var green = {
|
|
44
|
+
green50: "#EDFBEF",
|
|
45
|
+
green100: "#C3F2CC",
|
|
46
|
+
green200: "#9DEAAB",
|
|
47
|
+
green300: "#62DD79",
|
|
48
|
+
green400: "#2AC046",
|
|
49
|
+
green500: "#25AA3E",
|
|
50
|
+
green600: "#209135",
|
|
51
|
+
green700: "#1A782C",
|
|
52
|
+
green800: "#155F23",
|
|
53
|
+
green900: "#0F4519",
|
|
54
|
+
green1000: "#0A2C10",
|
|
55
|
+
};
|
|
56
|
+
var blue = {
|
|
57
|
+
blue50: "#CDFCEC",
|
|
58
|
+
blue100: "#CDFBFB",
|
|
59
|
+
blue400: "#71FCE4",
|
|
60
|
+
blue500: "#0EBEBE",
|
|
61
|
+
blue900: "#025B5B",
|
|
62
|
+
};
|
|
63
|
+
var pink = {
|
|
64
|
+
pink100: "#FED7DE",
|
|
65
|
+
pink300: "#FE889C",
|
|
66
|
+
pink500: "#FD395A",
|
|
67
|
+
pink700: "#CA2E48",
|
|
68
|
+
pink900: "#651724",
|
|
69
|
+
};
|
|
70
|
+
var orange = {
|
|
71
|
+
orange50: "#FAF8F6",
|
|
72
|
+
orange100: "#FDEAC7",
|
|
73
|
+
orange200: "#FBDCA0",
|
|
74
|
+
orange300: "#FACD78",
|
|
75
|
+
orange400: "#F8BE51",
|
|
76
|
+
orange500: "#FF9A34",
|
|
77
|
+
orange600: "#CD8808",
|
|
78
|
+
orange700: "#AA7106",
|
|
79
|
+
orange800: "#885A05",
|
|
80
|
+
orange900: "#654304",
|
|
81
|
+
orange1000: "#432D03",
|
|
82
|
+
orange1100: "#FEEBD9",
|
|
83
|
+
orange1200: "#78430D",
|
|
84
|
+
};
|
|
85
|
+
var white = {
|
|
86
|
+
white: "white",
|
|
87
|
+
white50: "#F3F2F1",
|
|
88
|
+
};
|
|
89
|
+
export var colorPalette = __assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign({}, orange), green), gray), blue), red), white), pink), { red: "red", black: "black", gold: "#d0a617" });
|
|
90
|
+
export var colorLabels = {
|
|
91
|
+
backgroundInterface: colorPalette.orange50,
|
|
92
|
+
interactiveDisabled: "#FEB0BD",
|
|
93
|
+
error: colorPalette.red600,
|
|
94
|
+
warning01: colorPalette.orange500,
|
|
95
|
+
highlight01: colorPalette.blue500,
|
|
96
|
+
tableHeader: colorPalette.white50,
|
|
97
|
+
outlineInputs: colorPalette.gray300,
|
|
98
|
+
text: colorPalette.gray1000,
|
|
99
|
+
textPrim: colorPalette.black,
|
|
100
|
+
textSec: colorPalette.gray700,
|
|
101
|
+
textTert: colorPalette.gray700,
|
|
102
|
+
textLink: colorPalette.blue500,
|
|
103
|
+
placeholder: colorPalette.gray300,
|
|
104
|
+
disabled1: colorPalette.gray50,
|
|
105
|
+
disabled2: colorPalette.gray300,
|
|
106
|
+
disabled3: colorPalette.gray400,
|
|
107
|
+
background: colorPalette.gray10,
|
|
108
|
+
};
|
|
109
|
+
export var colors = __assign(__assign({}, colorPalette), colorLabels);
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export declare const debugCss: {
|
|
2
|
+
border: import("styled-components").FlattenSimpleInterpolation;
|
|
3
|
+
outline: import("styled-components").FlattenSimpleInterpolation;
|
|
4
|
+
borderwhite: import("styled-components").FlattenSimpleInterpolation;
|
|
5
|
+
borderred: import("styled-components").FlattenSimpleInterpolation;
|
|
6
|
+
bgred: import("styled-components").FlattenSimpleInterpolation;
|
|
7
|
+
bgblue: import("styled-components").FlattenSimpleInterpolation;
|
|
8
|
+
opacity5: import("styled-components").FlattenSimpleInterpolation;
|
|
9
|
+
divider: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
10
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cooked, raw) {
|
|
2
|
+
if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
|
|
3
|
+
return cooked;
|
|
4
|
+
};
|
|
5
|
+
import { css } from "../themeType";
|
|
6
|
+
export var debugCss = {
|
|
7
|
+
border: css(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n border: solid 1px black;\n "], ["\n border: solid 1px black;\n "]))),
|
|
8
|
+
outline: css(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n outline: solid 1px black;\n "], ["\n outline: solid 1px black;\n "]))),
|
|
9
|
+
borderwhite: css(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n border: solid 1px white;\n "], ["\n border: solid 1px white;\n "]))),
|
|
10
|
+
borderred: css(templateObject_4 || (templateObject_4 = __makeTemplateObject(["\n border: solid 1px red;\n "], ["\n border: solid 1px red;\n "]))),
|
|
11
|
+
bgred: css(templateObject_5 || (templateObject_5 = __makeTemplateObject(["\n background: red;\n "], ["\n background: red;\n "]))),
|
|
12
|
+
bgblue: css(templateObject_6 || (templateObject_6 = __makeTemplateObject(["\n background: blue;\n "], ["\n background: blue;\n "]))),
|
|
13
|
+
opacity5: css(templateObject_7 || (templateObject_7 = __makeTemplateObject(["\n opacity: 0.5;\n "], ["\n opacity: 0.5;\n "]))),
|
|
14
|
+
divider: css(templateObject_8 || (templateObject_8 = __makeTemplateObject(["\n height: 1px;\n background: ", ";\n "], ["\n height: 1px;\n background: ", ";\n "])), function (props) { return props.theme.colors.gray300; }),
|
|
15
|
+
};
|
|
16
|
+
var templateObject_1, templateObject_2, templateObject_3, templateObject_4, templateObject_5, templateObject_6, templateObject_7, templateObject_8;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export declare const dimensionsCss: {
|
|
2
|
+
w50: import("styled-components").FlattenSimpleInterpolation;
|
|
3
|
+
w100: import("styled-components").FlattenInterpolation<import("styled-components").ThemedStyledProps<{
|
|
4
|
+
w100: boolean;
|
|
5
|
+
}, any>>;
|
|
6
|
+
h100: import("styled-components").FlattenSimpleInterpolation;
|
|
7
|
+
w: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
8
|
+
h: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
9
|
+
dim: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
10
|
+
maxw: import("styled-components").FlattenInterpolation<import("styled-components").ThemedStyledProps<{
|
|
11
|
+
maxw?: number;
|
|
12
|
+
}, any>>;
|
|
13
|
+
maxh: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
14
|
+
minw: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
15
|
+
minh: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
16
|
+
br: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
17
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cooked, raw) {
|
|
2
|
+
if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
|
|
3
|
+
return cooked;
|
|
4
|
+
};
|
|
5
|
+
import { getCssValue } from ".";
|
|
6
|
+
import { css } from "../themeType";
|
|
7
|
+
export var dimensionsCss = {
|
|
8
|
+
w50: css(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n width: 50%;\n "], ["\n width: 50%;\n "]))),
|
|
9
|
+
w100: css(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n ", ";\n "], ["\n ", ";\n "])), function (props) { return (props.w100 ? "width: 100%" : null); }),
|
|
10
|
+
h100: css(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n height: 100%;\n "], ["\n height: 100%;\n "]))),
|
|
11
|
+
w: css(templateObject_4 || (templateObject_4 = __makeTemplateObject(["\n /* width in px when w is type number */\n width: ", ";\n "], ["\n /* width in px when w is type number */\n width: ", ";\n "])), function (p) { return getCssValue(p.w); }),
|
|
12
|
+
h: css(templateObject_5 || (templateObject_5 = __makeTemplateObject(["\n /* height in px when h is type number */\n height: ", ";\n "], ["\n /* height in px when h is type number */\n height: ", ";\n "])), function (p) { return getCssValue(p.h); }),
|
|
13
|
+
dim: css(templateObject_6 || (templateObject_6 = __makeTemplateObject(["\n height: ", ";\n width: ", ";\n "], ["\n height: ", ";\n width: ", ";\n "])), function (p) { return getCssValue(p.dim); }, function (p) { return getCssValue(p.dim); }),
|
|
14
|
+
maxw: css(templateObject_7 || (templateObject_7 = __makeTemplateObject(["\n /* maximum width in px */\n ", "\n "], ["\n /* maximum width in px */\n ", "\n "])), function (p) { return (p.maxw ? "max-width: ".concat(p.maxw, "px;") : null); }),
|
|
15
|
+
maxh: css(templateObject_8 || (templateObject_8 = __makeTemplateObject(["\n /* maxinum height in px */\n max-height: ", "px;\n "], ["\n /* maxinum height in px */\n max-height: ", "px;\n "])), function (p) { return p.maxh; }),
|
|
16
|
+
minw: css(templateObject_9 || (templateObject_9 = __makeTemplateObject(["\n /* minimum width in px */\n ", "\n "], ["\n /* minimum width in px */\n ", "\n "])), function (p) { return (p.minw ? "min-width: ".concat(p.minw, "px;") : null); }),
|
|
17
|
+
minh: css(templateObject_10 || (templateObject_10 = __makeTemplateObject(["\n /* minimum height in px */\n min-height: ", "px;\n "], ["\n /* minimum height in px */\n min-height: ", "px;\n "])), function (p) { return p.minh; }),
|
|
18
|
+
br: css(templateObject_11 || (templateObject_11 = __makeTemplateObject(["\n /* border radius in px */\n border-radius: ", ";\n "], ["\n /* border radius in px */\n border-radius: ", ";\n "])), function (p) { return getCssValue(p.br); }),
|
|
19
|
+
};
|
|
20
|
+
var templateObject_1, templateObject_2, templateObject_3, templateObject_4, templateObject_5, templateObject_6, templateObject_7, templateObject_8, templateObject_9, templateObject_10, templateObject_11;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export declare const fontCss: {
|
|
2
|
+
semiBold: import("styled-components").FlattenSimpleInterpolation;
|
|
3
|
+
bold: import("styled-components").FlattenSimpleInterpolation;
|
|
4
|
+
extraBold: import("styled-components").FlattenSimpleInterpolation;
|
|
5
|
+
fontweight_800: import("styled-components").FlattenSimpleInterpolation;
|
|
6
|
+
italic: import("styled-components").FlattenSimpleInterpolation;
|
|
7
|
+
DM4: import("styled-components").FlattenSimpleInterpolation;
|
|
8
|
+
fs: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
9
|
+
lh: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
10
|
+
ls: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
11
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cooked, raw) {
|
|
2
|
+
if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
|
|
3
|
+
return cooked;
|
|
4
|
+
};
|
|
5
|
+
import { css } from "../themeType";
|
|
6
|
+
export var fontCss = {
|
|
7
|
+
semiBold: css(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n font-weight: 500;\n "], ["\n font-weight: 500;\n "]))),
|
|
8
|
+
bold: css(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n font-weight: 600;\n "], ["\n font-weight: 600;\n "]))),
|
|
9
|
+
extraBold: css(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n font-weight: 700;\n "], ["\n font-weight: 700;\n "]))),
|
|
10
|
+
fontweight_800: css(templateObject_4 || (templateObject_4 = __makeTemplateObject(["\n font-weight: 800;\n "], ["\n font-weight: 800;\n "]))),
|
|
11
|
+
italic: css(templateObject_5 || (templateObject_5 = __makeTemplateObject(["\n font-style: italic;\n "], ["\n font-style: italic;\n "]))),
|
|
12
|
+
DM4: css(templateObject_6 || (templateObject_6 = __makeTemplateObject(["\n font-family: DM Serif Text;\n font-weight: 400;\n "], ["\n font-family: DM Serif Text;\n font-weight: 400;\n "]))),
|
|
13
|
+
fs: css(templateObject_7 || (templateObject_7 = __makeTemplateObject(["\n /* font size in px */\n font-size: ", "px;\n "], ["\n /* font size in px */\n font-size: ", "px;\n "])), function (props) { return props.fs; }),
|
|
14
|
+
lh: css(templateObject_8 || (templateObject_8 = __makeTemplateObject(["\n /* line height in px */\n line-height: ", "px;\n "], ["\n /* line height in px */\n line-height: ", "px;\n "])), function (props) { return props.lh; }),
|
|
15
|
+
ls: css(templateObject_9 || (templateObject_9 = __makeTemplateObject(["\n /* letter spacing in px */\n letter-spacing: ", "px;\n "], ["\n /* letter spacing in px */\n letter-spacing: ", "px;\n "])), function (props) { return props.ls; }),
|
|
16
|
+
};
|
|
17
|
+
var templateObject_1, templateObject_2, templateObject_3, templateObject_4, templateObject_5, templateObject_6, templateObject_7, templateObject_8, templateObject_9;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export declare const globalCss: {
|
|
2
|
+
clickable: import("styled-components").FlattenSimpleInterpolation;
|
|
3
|
+
disabledWhen: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
4
|
+
selectNone: import("styled-components").FlattenSimpleInterpolation;
|
|
5
|
+
yscroll: import("styled-components").FlattenSimpleInterpolation;
|
|
6
|
+
overflowHidden: import("styled-components").FlattenSimpleInterpolation;
|
|
7
|
+
rotate180: import("styled-components").FlattenSimpleInterpolation;
|
|
8
|
+
rotate180If: import("styled-components").FlattenInterpolation<import("styled-components").ThemedStyledProps<{
|
|
9
|
+
rotate180If: boolean;
|
|
10
|
+
}, any>>;
|
|
11
|
+
forMobile: import("styled-components").FlattenSimpleInterpolation;
|
|
12
|
+
forDesktop: import("styled-components").FlattenSimpleInterpolation;
|
|
13
|
+
mcontainer: import("styled-components").FlattenSimpleInterpolation;
|
|
14
|
+
c: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
15
|
+
bg: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
16
|
+
css: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
17
|
+
scrollbarDark: import("styled-components").FlattenSimpleInterpolation;
|
|
18
|
+
};
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cooked, raw) {
|
|
2
|
+
if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
|
|
3
|
+
return cooked;
|
|
4
|
+
};
|
|
5
|
+
import { css } from "../themeType";
|
|
6
|
+
import { colors } from "./colorPalette";
|
|
7
|
+
import { mediaQueries } from "./mediaQueries";
|
|
8
|
+
export var globalCss = {
|
|
9
|
+
clickable: css(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n user-select: none;\n :hover {\n cursor: pointer;\n opacity: 0.8;\n }\n "], ["\n user-select: none;\n :hover {\n cursor: pointer;\n opacity: 0.8;\n }\n "]))),
|
|
10
|
+
disabledWhen: css(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n ", "\n "], ["\n ", "\n "])), function (p) {
|
|
11
|
+
return p.disabledWhen && css(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n pointer-events: none;\n "], ["\n pointer-events: none;\n "])));
|
|
12
|
+
}),
|
|
13
|
+
selectNone: css(templateObject_4 || (templateObject_4 = __makeTemplateObject(["\n user-select: none;\n "], ["\n user-select: none;\n "]))),
|
|
14
|
+
yscroll: css(templateObject_5 || (templateObject_5 = __makeTemplateObject(["\n overflow-y: scroll;\n "], ["\n overflow-y: scroll;\n "]))),
|
|
15
|
+
overflowHidden: css(templateObject_6 || (templateObject_6 = __makeTemplateObject(["\n overflow: hidden;\n "], ["\n overflow: hidden;\n "]))),
|
|
16
|
+
rotate180: css(templateObject_7 || (templateObject_7 = __makeTemplateObject(["\n transform: rotate(180deg);\n "], ["\n transform: rotate(180deg);\n "]))),
|
|
17
|
+
rotate180If: css(templateObject_8 || (templateObject_8 = __makeTemplateObject(["\n transform: rotate(", ");\n "], ["\n transform: rotate(", ");\n "])), function (props) { return (props.rotate180If ? "180deg" : "0 deg"); }),
|
|
18
|
+
forMobile: css(templateObject_9 || (templateObject_9 = __makeTemplateObject(["\n @media all and ", " {\n display: none;\n }\n "], ["\n @media all and ", " {\n display: none;\n }\n "])), mediaQueries.desktop),
|
|
19
|
+
forDesktop: css(templateObject_10 || (templateObject_10 = __makeTemplateObject(["\n @media all and ", " {\n display: none;\n }\n "], ["\n @media all and ", " {\n display: none;\n }\n "])), mediaQueries.mobile),
|
|
20
|
+
mcontainer: css(templateObject_11 || (templateObject_11 = __makeTemplateObject(["\n @media all and ", " {\n padding-left: 6%;\n padding-right: 6%;\n }\n "], ["\n @media all and ", " {\n padding-left: 6%;\n padding-right: 6%;\n }\n "])), mediaQueries.mobile),
|
|
21
|
+
c: css(templateObject_12 || (templateObject_12 = __makeTemplateObject(["\n /* set color based on colors defined in theme */\n color: ", ";\n "], ["\n /* set color based on colors defined in theme */\n color: ", ";\n "])), function (props) { return props.c; }),
|
|
22
|
+
bg: css(templateObject_13 || (templateObject_13 = __makeTemplateObject(["\n /* set background color based on colors defined in theme */\n background-color: ", ";\n "], ["\n /* set background color based on colors defined in theme */\n background-color: ", ";\n "])), function (props) { return props.bg; }),
|
|
23
|
+
css: css(templateObject_14 || (templateObject_14 = __makeTemplateObject(["\n ", ";\n "], ["\n ", ";\n "])), function (p) { return p.css; }),
|
|
24
|
+
scrollbarDark: css(templateObject_15 || (templateObject_15 = __makeTemplateObject(["\n scrollbar-width: thin;\n scrollbar-color: ", ";\n /* width */\n ::-webkit-scrollbar {\n width: 5px;\n height: 5px;\n }\n\n /* Handle */\n ::-webkit-scrollbar-thumb {\n background-color: ", ";\n border-radius: 3px;\n }\n\n /* Track */\n ::-webkit-scrollbar-track {\n background-color: transparent;\n }\n\n /* Handle on hover */\n ::-webkit-scrollbar-thumb:hover {\n border-radius: 3px;\n background-color: ", ";\n }\n "], ["\n scrollbar-width: thin;\n scrollbar-color: ", ";\n /* width */\n ::-webkit-scrollbar {\n width: 5px;\n height: 5px;\n }\n\n /* Handle */\n ::-webkit-scrollbar-thumb {\n background-color: ", ";\n border-radius: 3px;\n }\n\n /* Track */\n ::-webkit-scrollbar-track {\n background-color: transparent;\n }\n\n /* Handle on hover */\n ::-webkit-scrollbar-thumb:hover {\n border-radius: 3px;\n background-color: ", ";\n }\n "])), colors.gray400, colors.gray400, colors.gray400),
|
|
25
|
+
};
|
|
26
|
+
var templateObject_1, templateObject_2, templateObject_3, templateObject_4, templateObject_5, templateObject_6, templateObject_7, templateObject_8, templateObject_9, templateObject_10, templateObject_11, templateObject_12, templateObject_13, templateObject_14, templateObject_15;
|