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,345 @@
|
|
|
1
|
+
import "styled-components";
|
|
2
|
+
import { colors } from "./colorPalette";
|
|
3
|
+
export declare const getCssValue: (v: any) => string;
|
|
4
|
+
export { colors };
|
|
5
|
+
export declare const appCss: {
|
|
6
|
+
pt: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
7
|
+
pb: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
8
|
+
pl: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
9
|
+
pr: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
10
|
+
p: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
11
|
+
mt: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
12
|
+
mb: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
13
|
+
ml: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
14
|
+
mr: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
15
|
+
m: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
16
|
+
top: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
17
|
+
bottom: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
18
|
+
left: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
19
|
+
right: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
20
|
+
clickable: import("styled-components").FlattenSimpleInterpolation;
|
|
21
|
+
disabledWhen: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
22
|
+
selectNone: import("styled-components").FlattenSimpleInterpolation;
|
|
23
|
+
yscroll: import("styled-components").FlattenSimpleInterpolation;
|
|
24
|
+
overflowHidden: import("styled-components").FlattenSimpleInterpolation;
|
|
25
|
+
rotate180: import("styled-components").FlattenSimpleInterpolation;
|
|
26
|
+
rotate180If: import("styled-components").FlattenInterpolation<import("styled-components").ThemedStyledProps<{
|
|
27
|
+
rotate180If: boolean;
|
|
28
|
+
}, any>>;
|
|
29
|
+
forMobile: import("styled-components").FlattenSimpleInterpolation;
|
|
30
|
+
forDesktop: import("styled-components").FlattenSimpleInterpolation;
|
|
31
|
+
mcontainer: import("styled-components").FlattenSimpleInterpolation;
|
|
32
|
+
c: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
33
|
+
bg: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
34
|
+
css: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
35
|
+
scrollbarDark: import("styled-components").FlattenSimpleInterpolation;
|
|
36
|
+
border: import("styled-components").FlattenSimpleInterpolation;
|
|
37
|
+
outline: import("styled-components").FlattenSimpleInterpolation;
|
|
38
|
+
borderwhite: import("styled-components").FlattenSimpleInterpolation;
|
|
39
|
+
borderred: import("styled-components").FlattenSimpleInterpolation;
|
|
40
|
+
bgred: import("styled-components").FlattenSimpleInterpolation;
|
|
41
|
+
bgblue: import("styled-components").FlattenSimpleInterpolation;
|
|
42
|
+
opacity5: import("styled-components").FlattenSimpleInterpolation;
|
|
43
|
+
divider: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
44
|
+
semiBold: import("styled-components").FlattenSimpleInterpolation;
|
|
45
|
+
bold: import("styled-components").FlattenSimpleInterpolation;
|
|
46
|
+
extraBold: import("styled-components").FlattenSimpleInterpolation;
|
|
47
|
+
fontweight_800: import("styled-components").FlattenSimpleInterpolation;
|
|
48
|
+
italic: import("styled-components").FlattenSimpleInterpolation;
|
|
49
|
+
DM4: import("styled-components").FlattenSimpleInterpolation;
|
|
50
|
+
fs: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
51
|
+
lh: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
52
|
+
ls: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
53
|
+
h1: import("styled-components").FlattenSimpleInterpolation;
|
|
54
|
+
h2: import("styled-components").FlattenSimpleInterpolation;
|
|
55
|
+
h3: import("styled-components").FlattenSimpleInterpolation;
|
|
56
|
+
h4: import("styled-components").FlattenSimpleInterpolation;
|
|
57
|
+
h5: import("styled-components").FlattenSimpleInterpolation;
|
|
58
|
+
h6: import("styled-components").FlattenSimpleInterpolation;
|
|
59
|
+
subtitle: import("styled-components").FlattenSimpleInterpolation;
|
|
60
|
+
body1: import("styled-components").FlattenSimpleInterpolation;
|
|
61
|
+
body2: import("styled-components").FlattenSimpleInterpolation;
|
|
62
|
+
body3: import("styled-components").FlattenSimpleInterpolation;
|
|
63
|
+
body4: import("styled-components").FlattenSimpleInterpolation;
|
|
64
|
+
label1: import("styled-components").FlattenSimpleInterpolation;
|
|
65
|
+
label2: import("styled-components").FlattenSimpleInterpolation;
|
|
66
|
+
label3: import("styled-components").FlattenSimpleInterpolation;
|
|
67
|
+
helperText: import("styled-components").FlattenSimpleInterpolation;
|
|
68
|
+
buttonText: import("styled-components").FlattenSimpleInterpolation;
|
|
69
|
+
buttonTextSmall: import("styled-components").FlattenSimpleInterpolation;
|
|
70
|
+
link: import("styled-components").FlattenSimpleInterpolation;
|
|
71
|
+
stepper: import("styled-components").FlattenSimpleInterpolation;
|
|
72
|
+
truncateText: import("styled-components").FlattenSimpleInterpolation;
|
|
73
|
+
dInline: import("styled-components").FlattenSimpleInterpolation;
|
|
74
|
+
flexWrap: import("styled-components").FlattenSimpleInterpolation;
|
|
75
|
+
underline: import("styled-components").FlattenSimpleInterpolation;
|
|
76
|
+
textAlignCenter: import("styled-components").FlattenSimpleInterpolation;
|
|
77
|
+
textAlignRight: import("styled-components").FlattenSimpleInterpolation;
|
|
78
|
+
textAlignLeft: import("styled-components").FlattenSimpleInterpolation;
|
|
79
|
+
uppercase: import("styled-components").FlattenSimpleInterpolation;
|
|
80
|
+
capitalize: import("styled-components").FlattenSimpleInterpolation;
|
|
81
|
+
lowercase: import("styled-components").FlattenSimpleInterpolation;
|
|
82
|
+
dflex: import("styled-components").FlattenSimpleInterpolation;
|
|
83
|
+
centered: import("styled-components").FlattenSimpleInterpolation;
|
|
84
|
+
flexColumn: import("styled-components").FlattenSimpleInterpolation;
|
|
85
|
+
flexColumnCentered: import("styled-components").FlattenSimpleInterpolation;
|
|
86
|
+
flexRowReverse: import("styled-components").FlattenSimpleInterpolation;
|
|
87
|
+
spaceBetween: import("styled-components").FlattenSimpleInterpolation;
|
|
88
|
+
spaceBetweenAligned: import("styled-components").FlattenSimpleInterpolation;
|
|
89
|
+
spaceAround: import("styled-components").FlattenSimpleInterpolation;
|
|
90
|
+
justifyEnd: import("styled-components").FlattenSimpleInterpolation;
|
|
91
|
+
justifyCenter: import("styled-components").FlattenSimpleInterpolation;
|
|
92
|
+
alignEnd: import("styled-components").FlattenSimpleInterpolation;
|
|
93
|
+
alignStart: import("styled-components").FlattenSimpleInterpolation;
|
|
94
|
+
alignCenter: import("styled-components").FlattenSimpleInterpolation;
|
|
95
|
+
grow: import("styled-components").FlattenSimpleInterpolation;
|
|
96
|
+
pAbsolute: import("styled-components").FlattenSimpleInterpolation;
|
|
97
|
+
pRelative: import("styled-components").FlattenSimpleInterpolation;
|
|
98
|
+
pSticky: import("styled-components").FlattenSimpleInterpolation;
|
|
99
|
+
floatLeft: import("styled-components").FlattenSimpleInterpolation;
|
|
100
|
+
w50: import("styled-components").FlattenSimpleInterpolation;
|
|
101
|
+
w100: import("styled-components").FlattenInterpolation<import("styled-components").ThemedStyledProps<{
|
|
102
|
+
w100: boolean;
|
|
103
|
+
}, any>>;
|
|
104
|
+
h100: import("styled-components").FlattenSimpleInterpolation;
|
|
105
|
+
w: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
106
|
+
h: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
107
|
+
dim: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
108
|
+
maxw: import("styled-components").FlattenInterpolation<import("styled-components").ThemedStyledProps<{
|
|
109
|
+
maxw?: number;
|
|
110
|
+
}, any>>;
|
|
111
|
+
maxh: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
112
|
+
minw: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
113
|
+
minh: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
114
|
+
br: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
115
|
+
fadeIn: import("styled-components").FlattenSimpleInterpolation;
|
|
116
|
+
};
|
|
117
|
+
export declare const theme: {
|
|
118
|
+
readonly colors: {
|
|
119
|
+
backgroundInterface: string;
|
|
120
|
+
interactiveDisabled: "#FEB0BD";
|
|
121
|
+
error: string;
|
|
122
|
+
warning01: string;
|
|
123
|
+
highlight01: string;
|
|
124
|
+
tableHeader: string;
|
|
125
|
+
outlineInputs: string;
|
|
126
|
+
text: string;
|
|
127
|
+
textPrim: string;
|
|
128
|
+
textSec: string;
|
|
129
|
+
textTert: string;
|
|
130
|
+
textLink: string;
|
|
131
|
+
placeholder: string;
|
|
132
|
+
disabled1: string;
|
|
133
|
+
disabled2: string;
|
|
134
|
+
disabled3: string;
|
|
135
|
+
background: string;
|
|
136
|
+
red: string;
|
|
137
|
+
black: string;
|
|
138
|
+
gold: string;
|
|
139
|
+
pink100: string;
|
|
140
|
+
pink300: string;
|
|
141
|
+
pink500: string;
|
|
142
|
+
pink700: string;
|
|
143
|
+
pink900: string;
|
|
144
|
+
white: string;
|
|
145
|
+
white50: string;
|
|
146
|
+
red50: string;
|
|
147
|
+
red100: string;
|
|
148
|
+
red200: string;
|
|
149
|
+
red300: string;
|
|
150
|
+
red400: string;
|
|
151
|
+
red500: string;
|
|
152
|
+
red600: string;
|
|
153
|
+
red700: string;
|
|
154
|
+
red800: string;
|
|
155
|
+
red900: string;
|
|
156
|
+
red1000: string;
|
|
157
|
+
red2000: string;
|
|
158
|
+
blue50: string;
|
|
159
|
+
blue100: string;
|
|
160
|
+
blue400: string;
|
|
161
|
+
blue500: string;
|
|
162
|
+
blue900: string;
|
|
163
|
+
gray5: string;
|
|
164
|
+
gray10: string;
|
|
165
|
+
gray50: string;
|
|
166
|
+
gray100: string;
|
|
167
|
+
gray200: string;
|
|
168
|
+
gray300: string;
|
|
169
|
+
gray390: string;
|
|
170
|
+
gray400: string;
|
|
171
|
+
gray500: string;
|
|
172
|
+
gray600: string;
|
|
173
|
+
gray700: string;
|
|
174
|
+
gray800: string;
|
|
175
|
+
gray900: string;
|
|
176
|
+
gray1000: string;
|
|
177
|
+
green50: string;
|
|
178
|
+
green100: string;
|
|
179
|
+
green200: string;
|
|
180
|
+
green300: string;
|
|
181
|
+
green400: string;
|
|
182
|
+
green500: string;
|
|
183
|
+
green600: string;
|
|
184
|
+
green700: string;
|
|
185
|
+
green800: string;
|
|
186
|
+
green900: string;
|
|
187
|
+
green1000: string;
|
|
188
|
+
orange50: string;
|
|
189
|
+
orange100: string;
|
|
190
|
+
orange200: string;
|
|
191
|
+
orange300: string;
|
|
192
|
+
orange400: string;
|
|
193
|
+
orange500: string;
|
|
194
|
+
orange600: string;
|
|
195
|
+
orange700: string;
|
|
196
|
+
orange800: string;
|
|
197
|
+
orange900: string;
|
|
198
|
+
orange1000: string;
|
|
199
|
+
orange1100: string;
|
|
200
|
+
orange1200: string;
|
|
201
|
+
};
|
|
202
|
+
readonly textStyles: {
|
|
203
|
+
h1: import("styled-components").FlattenSimpleInterpolation;
|
|
204
|
+
h2: import("styled-components").FlattenSimpleInterpolation;
|
|
205
|
+
h3: import("styled-components").FlattenSimpleInterpolation;
|
|
206
|
+
h4: import("styled-components").FlattenSimpleInterpolation;
|
|
207
|
+
h5: import("styled-components").FlattenSimpleInterpolation;
|
|
208
|
+
h6: import("styled-components").FlattenSimpleInterpolation;
|
|
209
|
+
subtitle: import("styled-components").FlattenSimpleInterpolation;
|
|
210
|
+
body1: import("styled-components").FlattenSimpleInterpolation;
|
|
211
|
+
body2: import("styled-components").FlattenSimpleInterpolation;
|
|
212
|
+
body3: import("styled-components").FlattenSimpleInterpolation;
|
|
213
|
+
body4: import("styled-components").FlattenSimpleInterpolation;
|
|
214
|
+
label1: import("styled-components").FlattenSimpleInterpolation;
|
|
215
|
+
label2: import("styled-components").FlattenSimpleInterpolation;
|
|
216
|
+
label3: import("styled-components").FlattenSimpleInterpolation;
|
|
217
|
+
helperText: import("styled-components").FlattenSimpleInterpolation;
|
|
218
|
+
buttonText: import("styled-components").FlattenSimpleInterpolation;
|
|
219
|
+
buttonTextSmall: import("styled-components").FlattenSimpleInterpolation;
|
|
220
|
+
link: import("styled-components").FlattenSimpleInterpolation;
|
|
221
|
+
stepper: import("styled-components").FlattenSimpleInterpolation;
|
|
222
|
+
};
|
|
223
|
+
readonly css: {
|
|
224
|
+
pt: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
225
|
+
pb: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
226
|
+
pl: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
227
|
+
pr: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
228
|
+
p: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
229
|
+
mt: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
230
|
+
mb: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
231
|
+
ml: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
232
|
+
mr: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
233
|
+
m: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
234
|
+
top: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
235
|
+
bottom: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
236
|
+
left: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
237
|
+
right: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
238
|
+
clickable: import("styled-components").FlattenSimpleInterpolation;
|
|
239
|
+
disabledWhen: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
240
|
+
selectNone: import("styled-components").FlattenSimpleInterpolation;
|
|
241
|
+
yscroll: import("styled-components").FlattenSimpleInterpolation;
|
|
242
|
+
overflowHidden: import("styled-components").FlattenSimpleInterpolation;
|
|
243
|
+
rotate180: import("styled-components").FlattenSimpleInterpolation;
|
|
244
|
+
rotate180If: import("styled-components").FlattenInterpolation<import("styled-components").ThemedStyledProps<{
|
|
245
|
+
rotate180If: boolean;
|
|
246
|
+
}, any>>;
|
|
247
|
+
forMobile: import("styled-components").FlattenSimpleInterpolation;
|
|
248
|
+
forDesktop: import("styled-components").FlattenSimpleInterpolation;
|
|
249
|
+
mcontainer: import("styled-components").FlattenSimpleInterpolation;
|
|
250
|
+
c: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
251
|
+
bg: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
252
|
+
css: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
253
|
+
scrollbarDark: import("styled-components").FlattenSimpleInterpolation;
|
|
254
|
+
border: import("styled-components").FlattenSimpleInterpolation;
|
|
255
|
+
outline: import("styled-components").FlattenSimpleInterpolation;
|
|
256
|
+
borderwhite: import("styled-components").FlattenSimpleInterpolation;
|
|
257
|
+
borderred: import("styled-components").FlattenSimpleInterpolation;
|
|
258
|
+
bgred: import("styled-components").FlattenSimpleInterpolation;
|
|
259
|
+
bgblue: import("styled-components").FlattenSimpleInterpolation;
|
|
260
|
+
opacity5: import("styled-components").FlattenSimpleInterpolation;
|
|
261
|
+
divider: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
262
|
+
semiBold: import("styled-components").FlattenSimpleInterpolation;
|
|
263
|
+
bold: import("styled-components").FlattenSimpleInterpolation;
|
|
264
|
+
extraBold: import("styled-components").FlattenSimpleInterpolation;
|
|
265
|
+
fontweight_800: import("styled-components").FlattenSimpleInterpolation;
|
|
266
|
+
italic: import("styled-components").FlattenSimpleInterpolation;
|
|
267
|
+
DM4: import("styled-components").FlattenSimpleInterpolation;
|
|
268
|
+
fs: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
269
|
+
lh: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
270
|
+
ls: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
271
|
+
h1: import("styled-components").FlattenSimpleInterpolation;
|
|
272
|
+
h2: import("styled-components").FlattenSimpleInterpolation;
|
|
273
|
+
h3: import("styled-components").FlattenSimpleInterpolation;
|
|
274
|
+
h4: import("styled-components").FlattenSimpleInterpolation;
|
|
275
|
+
h5: import("styled-components").FlattenSimpleInterpolation;
|
|
276
|
+
h6: import("styled-components").FlattenSimpleInterpolation;
|
|
277
|
+
subtitle: import("styled-components").FlattenSimpleInterpolation;
|
|
278
|
+
body1: import("styled-components").FlattenSimpleInterpolation;
|
|
279
|
+
body2: import("styled-components").FlattenSimpleInterpolation;
|
|
280
|
+
body3: import("styled-components").FlattenSimpleInterpolation;
|
|
281
|
+
body4: import("styled-components").FlattenSimpleInterpolation;
|
|
282
|
+
label1: import("styled-components").FlattenSimpleInterpolation;
|
|
283
|
+
label2: import("styled-components").FlattenSimpleInterpolation;
|
|
284
|
+
label3: import("styled-components").FlattenSimpleInterpolation;
|
|
285
|
+
helperText: import("styled-components").FlattenSimpleInterpolation;
|
|
286
|
+
buttonText: import("styled-components").FlattenSimpleInterpolation;
|
|
287
|
+
buttonTextSmall: import("styled-components").FlattenSimpleInterpolation;
|
|
288
|
+
link: import("styled-components").FlattenSimpleInterpolation;
|
|
289
|
+
stepper: import("styled-components").FlattenSimpleInterpolation;
|
|
290
|
+
truncateText: import("styled-components").FlattenSimpleInterpolation;
|
|
291
|
+
dInline: import("styled-components").FlattenSimpleInterpolation;
|
|
292
|
+
flexWrap: import("styled-components").FlattenSimpleInterpolation;
|
|
293
|
+
underline: import("styled-components").FlattenSimpleInterpolation;
|
|
294
|
+
textAlignCenter: import("styled-components").FlattenSimpleInterpolation;
|
|
295
|
+
textAlignRight: import("styled-components").FlattenSimpleInterpolation;
|
|
296
|
+
textAlignLeft: import("styled-components").FlattenSimpleInterpolation;
|
|
297
|
+
uppercase: import("styled-components").FlattenSimpleInterpolation;
|
|
298
|
+
capitalize: import("styled-components").FlattenSimpleInterpolation;
|
|
299
|
+
lowercase: import("styled-components").FlattenSimpleInterpolation;
|
|
300
|
+
dflex: import("styled-components").FlattenSimpleInterpolation;
|
|
301
|
+
centered: import("styled-components").FlattenSimpleInterpolation;
|
|
302
|
+
flexColumn: import("styled-components").FlattenSimpleInterpolation;
|
|
303
|
+
flexColumnCentered: import("styled-components").FlattenSimpleInterpolation;
|
|
304
|
+
flexRowReverse: import("styled-components").FlattenSimpleInterpolation;
|
|
305
|
+
spaceBetween: import("styled-components").FlattenSimpleInterpolation;
|
|
306
|
+
spaceBetweenAligned: import("styled-components").FlattenSimpleInterpolation;
|
|
307
|
+
spaceAround: import("styled-components").FlattenSimpleInterpolation;
|
|
308
|
+
justifyEnd: import("styled-components").FlattenSimpleInterpolation;
|
|
309
|
+
justifyCenter: import("styled-components").FlattenSimpleInterpolation;
|
|
310
|
+
alignEnd: import("styled-components").FlattenSimpleInterpolation;
|
|
311
|
+
alignStart: import("styled-components").FlattenSimpleInterpolation;
|
|
312
|
+
alignCenter: import("styled-components").FlattenSimpleInterpolation;
|
|
313
|
+
grow: import("styled-components").FlattenSimpleInterpolation;
|
|
314
|
+
pAbsolute: import("styled-components").FlattenSimpleInterpolation;
|
|
315
|
+
pRelative: import("styled-components").FlattenSimpleInterpolation;
|
|
316
|
+
pSticky: import("styled-components").FlattenSimpleInterpolation;
|
|
317
|
+
floatLeft: import("styled-components").FlattenSimpleInterpolation;
|
|
318
|
+
w50: import("styled-components").FlattenSimpleInterpolation;
|
|
319
|
+
w100: import("styled-components").FlattenInterpolation<import("styled-components").ThemedStyledProps<{
|
|
320
|
+
w100: boolean;
|
|
321
|
+
}, any>>;
|
|
322
|
+
h100: import("styled-components").FlattenSimpleInterpolation;
|
|
323
|
+
w: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
324
|
+
h: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
325
|
+
dim: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
326
|
+
maxw: import("styled-components").FlattenInterpolation<import("styled-components").ThemedStyledProps<{
|
|
327
|
+
maxw?: number;
|
|
328
|
+
}, any>>;
|
|
329
|
+
maxh: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
330
|
+
minw: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
331
|
+
minh: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
332
|
+
br: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
333
|
+
fadeIn: import("styled-components").FlattenSimpleInterpolation;
|
|
334
|
+
};
|
|
335
|
+
readonly media: {
|
|
336
|
+
desktop: string;
|
|
337
|
+
mobile: string;
|
|
338
|
+
};
|
|
339
|
+
};
|
|
340
|
+
export type Theme = typeof theme;
|
|
341
|
+
declare module "styled-components" {
|
|
342
|
+
interface DefaultTheme extends Theme {
|
|
343
|
+
}
|
|
344
|
+
}
|
|
345
|
+
export default theme;
|
|
@@ -0,0 +1,33 @@
|
|
|
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
|
+
import "styled-components";
|
|
13
|
+
import { colors } from "./colorPalette";
|
|
14
|
+
import { debugCss } from "./debugCss";
|
|
15
|
+
import { fontCss } from "./fontCss";
|
|
16
|
+
import { dimensionsCss } from "./dimensionsCss";
|
|
17
|
+
import { layoutCss } from "./layoutCss";
|
|
18
|
+
import { textCss } from "./textCss";
|
|
19
|
+
import { textStyles } from "./textStyles";
|
|
20
|
+
import { animations } from "./animations";
|
|
21
|
+
import { absolutePosition, marginCss, paddingCss } from "./positionCss";
|
|
22
|
+
import { globalCss } from "./globalCss";
|
|
23
|
+
import { mediaQueries } from "./mediaQueries";
|
|
24
|
+
export var getCssValue = function (v) { return v + (typeof v === "number" ? "px" : ""); };
|
|
25
|
+
export { colors };
|
|
26
|
+
export var appCss = __assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign({}, animations), dimensionsCss), layoutCss), textCss), textStyles), fontCss), debugCss), globalCss), absolutePosition), marginCss), paddingCss);
|
|
27
|
+
export var theme = {
|
|
28
|
+
colors: colors,
|
|
29
|
+
textStyles: textStyles,
|
|
30
|
+
css: appCss,
|
|
31
|
+
media: mediaQueries,
|
|
32
|
+
};
|
|
33
|
+
export default theme;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export declare const layoutCss: {
|
|
2
|
+
dflex: import("styled-components").FlattenSimpleInterpolation;
|
|
3
|
+
centered: import("styled-components").FlattenSimpleInterpolation;
|
|
4
|
+
flexColumn: import("styled-components").FlattenSimpleInterpolation;
|
|
5
|
+
flexColumnCentered: import("styled-components").FlattenSimpleInterpolation;
|
|
6
|
+
flexRowReverse: import("styled-components").FlattenSimpleInterpolation;
|
|
7
|
+
spaceBetween: import("styled-components").FlattenSimpleInterpolation;
|
|
8
|
+
spaceBetweenAligned: import("styled-components").FlattenSimpleInterpolation;
|
|
9
|
+
spaceAround: import("styled-components").FlattenSimpleInterpolation;
|
|
10
|
+
justifyEnd: import("styled-components").FlattenSimpleInterpolation;
|
|
11
|
+
justifyCenter: import("styled-components").FlattenSimpleInterpolation;
|
|
12
|
+
alignEnd: import("styled-components").FlattenSimpleInterpolation;
|
|
13
|
+
alignStart: import("styled-components").FlattenSimpleInterpolation;
|
|
14
|
+
alignCenter: import("styled-components").FlattenSimpleInterpolation;
|
|
15
|
+
grow: import("styled-components").FlattenSimpleInterpolation;
|
|
16
|
+
pAbsolute: import("styled-components").FlattenSimpleInterpolation;
|
|
17
|
+
pRelative: import("styled-components").FlattenSimpleInterpolation;
|
|
18
|
+
pSticky: import("styled-components").FlattenSimpleInterpolation;
|
|
19
|
+
floatLeft: import("styled-components").FlattenSimpleInterpolation;
|
|
20
|
+
};
|
|
@@ -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
|
+
export var layoutCss = {
|
|
7
|
+
dflex: css(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n display: flex;\n "], ["\n display: flex;\n "]))),
|
|
8
|
+
centered: css(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n display: flex;\n align-items: center;\n justify-content: center;\n "], ["\n display: flex;\n align-items: center;\n justify-content: center;\n "]))),
|
|
9
|
+
flexColumn: css(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n display: flex;\n flex-direction: column;\n "], ["\n display: flex;\n flex-direction: column;\n "]))),
|
|
10
|
+
flexColumnCentered: css(templateObject_4 || (templateObject_4 = __makeTemplateObject(["\n display: flex;\n flex-direction: column;\n align-items: center;\n "], ["\n display: flex;\n flex-direction: column;\n align-items: center;\n "]))),
|
|
11
|
+
flexRowReverse: css(templateObject_5 || (templateObject_5 = __makeTemplateObject(["\n display: flex;\n flex-direction: row-reverse;\n "], ["\n display: flex;\n flex-direction: row-reverse;\n "]))),
|
|
12
|
+
spaceBetween: css(templateObject_6 || (templateObject_6 = __makeTemplateObject(["\n display: flex;\n justify-content: space-between;\n "], ["\n display: flex;\n justify-content: space-between;\n "]))),
|
|
13
|
+
spaceBetweenAligned: css(templateObject_7 || (templateObject_7 = __makeTemplateObject(["\n display: flex;\n align-items: center;\n justify-content: space-between;\n "], ["\n display: flex;\n align-items: center;\n justify-content: space-between;\n "]))),
|
|
14
|
+
spaceAround: css(templateObject_8 || (templateObject_8 = __makeTemplateObject(["\n display: flex;\n justify-content: space-around;\n "], ["\n display: flex;\n justify-content: space-around;\n "]))),
|
|
15
|
+
justifyEnd: css(templateObject_9 || (templateObject_9 = __makeTemplateObject(["\n display: flex;\n justify-content: flex-end;\n "], ["\n display: flex;\n justify-content: flex-end;\n "]))),
|
|
16
|
+
justifyCenter: css(templateObject_10 || (templateObject_10 = __makeTemplateObject(["\n display: flex;\n justify-content: center;\n "], ["\n display: flex;\n justify-content: center;\n "]))),
|
|
17
|
+
alignEnd: css(templateObject_11 || (templateObject_11 = __makeTemplateObject(["\n display: flex;\n align-items: flex-end;\n "], ["\n display: flex;\n align-items: flex-end;\n "]))),
|
|
18
|
+
alignStart: css(templateObject_12 || (templateObject_12 = __makeTemplateObject(["\n display: flex;\n align-items: flex-start;\n "], ["\n display: flex;\n align-items: flex-start;\n "]))),
|
|
19
|
+
alignCenter: css(templateObject_13 || (templateObject_13 = __makeTemplateObject(["\n display: flex;\n align-items: center;\n "], ["\n display: flex;\n align-items: center;\n "]))),
|
|
20
|
+
grow: css(templateObject_14 || (templateObject_14 = __makeTemplateObject(["\n display: flex;\n flex-grow: 1;\n "], ["\n display: flex;\n flex-grow: 1;\n "]))),
|
|
21
|
+
pAbsolute: css(templateObject_15 || (templateObject_15 = __makeTemplateObject(["\n position: absolute;\n "], ["\n position: absolute;\n "]))),
|
|
22
|
+
pRelative: css(templateObject_16 || (templateObject_16 = __makeTemplateObject(["\n position: relative;\n "], ["\n position: relative;\n "]))),
|
|
23
|
+
pSticky: css(templateObject_17 || (templateObject_17 = __makeTemplateObject(["\n position: sticky;\n position: -webkit-sticky;\n top: 0;\n z-index: 100;\n "], ["\n position: sticky;\n position: -webkit-sticky;\n top: 0;\n z-index: 100;\n "]))),
|
|
24
|
+
floatLeft: css(templateObject_18 || (templateObject_18 = __makeTemplateObject(["\n float: left;\n "], ["\n float: left;\n "]))),
|
|
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, templateObject_16, templateObject_17, templateObject_18;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export declare const absolutePosition: {
|
|
2
|
+
top: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
3
|
+
bottom: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
4
|
+
left: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
5
|
+
right: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
6
|
+
};
|
|
7
|
+
export declare const marginCss: {
|
|
8
|
+
mt: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
9
|
+
mb: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
10
|
+
ml: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
11
|
+
mr: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
12
|
+
m: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
13
|
+
};
|
|
14
|
+
export declare const paddingCss: {
|
|
15
|
+
pt: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
16
|
+
pb: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
17
|
+
pl: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
18
|
+
pr: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
19
|
+
p: import("styled-components").FlattenInterpolation<import("styled-components").ThemeProps<any>>;
|
|
20
|
+
};
|
|
@@ -0,0 +1,27 @@
|
|
|
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 absolutePosition = {
|
|
8
|
+
top: css(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n top: ", ";\n "], ["\n top: ", ";\n "])), function (p) { return getCssValue(p.top); }),
|
|
9
|
+
bottom: css(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n bottom: ", ";\n "], ["\n bottom: ", ";\n "])), function (p) { return getCssValue(p.bottom); }),
|
|
10
|
+
left: css(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n left: ", ";\n "], ["\n left: ", ";\n "])), function (p) { return getCssValue(p.left); }),
|
|
11
|
+
right: css(templateObject_4 || (templateObject_4 = __makeTemplateObject(["\n right: ", ";\n "], ["\n right: ", ";\n "])), function (p) { return getCssValue(p.right); }),
|
|
12
|
+
};
|
|
13
|
+
export var marginCss = {
|
|
14
|
+
mt: css(templateObject_5 || (templateObject_5 = __makeTemplateObject(["\n margin-top: ", ";\n "], ["\n margin-top: ", ";\n "])), function (p) { return getCssValue(p.mt); }),
|
|
15
|
+
mb: css(templateObject_6 || (templateObject_6 = __makeTemplateObject(["\n margin-bottom: ", ";\n "], ["\n margin-bottom: ", ";\n "])), function (p) { return getCssValue(p.mb); }),
|
|
16
|
+
ml: css(templateObject_7 || (templateObject_7 = __makeTemplateObject(["\n margin-left: ", ";\n "], ["\n margin-left: ", ";\n "])), function (p) { return getCssValue(p.ml); }),
|
|
17
|
+
mr: css(templateObject_8 || (templateObject_8 = __makeTemplateObject(["\n margin-right: ", ";\n "], ["\n margin-right: ", ";\n "])), function (p) { return getCssValue(p.mr); }),
|
|
18
|
+
m: css(templateObject_9 || (templateObject_9 = __makeTemplateObject(["\n margin: ", ";\n "], ["\n margin: ", ";\n "])), function (p) { return getCssValue(p.m); }),
|
|
19
|
+
};
|
|
20
|
+
export var paddingCss = {
|
|
21
|
+
pt: css(templateObject_10 || (templateObject_10 = __makeTemplateObject(["\n padding-top: ", ";\n "], ["\n padding-top: ", ";\n "])), function (p) { return getCssValue(p.pt); }),
|
|
22
|
+
pb: css(templateObject_11 || (templateObject_11 = __makeTemplateObject(["\n padding-bottom: ", ";\n "], ["\n padding-bottom: ", ";\n "])), function (p) { return getCssValue(p.pb); }),
|
|
23
|
+
pl: css(templateObject_12 || (templateObject_12 = __makeTemplateObject(["\n padding-left: ", ";\n "], ["\n padding-left: ", ";\n "])), function (p) { return getCssValue(p.pl); }),
|
|
24
|
+
pr: css(templateObject_13 || (templateObject_13 = __makeTemplateObject(["\n padding-right: ", ";\n "], ["\n padding-right: ", ";\n "])), function (p) { return getCssValue(p.pr); }),
|
|
25
|
+
p: css(templateObject_14 || (templateObject_14 = __makeTemplateObject(["\n padding: ", ";\n "], ["\n padding: ", ";\n "])), function (p) { return getCssValue(p.p); }),
|
|
26
|
+
};
|
|
27
|
+
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;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export declare const textCss: {
|
|
2
|
+
truncateText: import("styled-components").FlattenSimpleInterpolation;
|
|
3
|
+
dInline: import("styled-components").FlattenSimpleInterpolation;
|
|
4
|
+
flexWrap: import("styled-components").FlattenSimpleInterpolation;
|
|
5
|
+
underline: import("styled-components").FlattenSimpleInterpolation;
|
|
6
|
+
textAlignCenter: import("styled-components").FlattenSimpleInterpolation;
|
|
7
|
+
textAlignRight: import("styled-components").FlattenSimpleInterpolation;
|
|
8
|
+
textAlignLeft: import("styled-components").FlattenSimpleInterpolation;
|
|
9
|
+
uppercase: import("styled-components").FlattenSimpleInterpolation;
|
|
10
|
+
capitalize: import("styled-components").FlattenSimpleInterpolation;
|
|
11
|
+
lowercase: import("styled-components").FlattenSimpleInterpolation;
|
|
12
|
+
};
|
|
@@ -0,0 +1,18 @@
|
|
|
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 textCss = {
|
|
7
|
+
truncateText: css(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n overflow: hidden;\n word-wrap: break-word;\n overflow-wrap: break-word;\n display: -webkit-box;\n -webkit-line-clamp: 1;\n -webkit-box-orient: vertical;\n -webkit-hyphens: auto;\n -moz-hyphens: auto;\n hyphens: auto;\n "], ["\n overflow: hidden;\n word-wrap: break-word;\n overflow-wrap: break-word;\n display: -webkit-box;\n -webkit-line-clamp: 1;\n -webkit-box-orient: vertical;\n -webkit-hyphens: auto;\n -moz-hyphens: auto;\n hyphens: auto;\n "]))),
|
|
8
|
+
dInline: css(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n display: inline-block;\n "], ["\n display: inline-block;\n "]))),
|
|
9
|
+
flexWrap: css(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n display: flex;\n flex-wrap: wrap;\n "], ["\n display: flex;\n flex-wrap: wrap;\n "]))),
|
|
10
|
+
underline: css(templateObject_4 || (templateObject_4 = __makeTemplateObject(["\n text-decoration: underline;\n "], ["\n text-decoration: underline;\n "]))),
|
|
11
|
+
textAlignCenter: css(templateObject_5 || (templateObject_5 = __makeTemplateObject(["\n text-align: center;\n "], ["\n text-align: center;\n "]))),
|
|
12
|
+
textAlignRight: css(templateObject_6 || (templateObject_6 = __makeTemplateObject(["\n text-align: right;\n "], ["\n text-align: right;\n "]))),
|
|
13
|
+
textAlignLeft: css(templateObject_7 || (templateObject_7 = __makeTemplateObject(["\n text-align: left;\n "], ["\n text-align: left;\n "]))),
|
|
14
|
+
uppercase: css(templateObject_8 || (templateObject_8 = __makeTemplateObject(["\n text-transform: uppercase;\n "], ["\n text-transform: uppercase;\n "]))),
|
|
15
|
+
capitalize: css(templateObject_9 || (templateObject_9 = __makeTemplateObject(["\n text-transform: capitalize;\n "], ["\n text-transform: capitalize;\n "]))),
|
|
16
|
+
lowercase: css(templateObject_10 || (templateObject_10 = __makeTemplateObject(["\n text-transform: lowercase;\n "], ["\n text-transform: lowercase;\n "]))),
|
|
17
|
+
};
|
|
18
|
+
var templateObject_1, templateObject_2, templateObject_3, templateObject_4, templateObject_5, templateObject_6, templateObject_7, templateObject_8, templateObject_9, templateObject_10;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
export declare const textStyles: {
|
|
2
|
+
h1: import("styled-components").FlattenSimpleInterpolation;
|
|
3
|
+
h2: import("styled-components").FlattenSimpleInterpolation;
|
|
4
|
+
h3: import("styled-components").FlattenSimpleInterpolation;
|
|
5
|
+
h4: import("styled-components").FlattenSimpleInterpolation;
|
|
6
|
+
h5: import("styled-components").FlattenSimpleInterpolation;
|
|
7
|
+
h6: import("styled-components").FlattenSimpleInterpolation;
|
|
8
|
+
subtitle: import("styled-components").FlattenSimpleInterpolation;
|
|
9
|
+
body1: import("styled-components").FlattenSimpleInterpolation;
|
|
10
|
+
body2: import("styled-components").FlattenSimpleInterpolation;
|
|
11
|
+
body3: import("styled-components").FlattenSimpleInterpolation;
|
|
12
|
+
body4: import("styled-components").FlattenSimpleInterpolation;
|
|
13
|
+
label1: import("styled-components").FlattenSimpleInterpolation;
|
|
14
|
+
label2: import("styled-components").FlattenSimpleInterpolation;
|
|
15
|
+
label3: import("styled-components").FlattenSimpleInterpolation;
|
|
16
|
+
helperText: import("styled-components").FlattenSimpleInterpolation;
|
|
17
|
+
buttonText: import("styled-components").FlattenSimpleInterpolation;
|
|
18
|
+
buttonTextSmall: import("styled-components").FlattenSimpleInterpolation;
|
|
19
|
+
link: import("styled-components").FlattenSimpleInterpolation;
|
|
20
|
+
stepper: import("styled-components").FlattenSimpleInterpolation;
|
|
21
|
+
};
|
|
@@ -0,0 +1,27 @@
|
|
|
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 textStyles = {
|
|
7
|
+
h1: css(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n font-family: DM Serif Display;\n font-weight: 400;\n font-style: normal;\n font-size: 48px;\n line-height: 72px;\n "], ["\n font-family: DM Serif Display;\n font-weight: 400;\n font-style: normal;\n font-size: 48px;\n line-height: 72px;\n "]))),
|
|
8
|
+
h2: css(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n font-family: DM Sans;\n font-weight: 700;\n font-style: normal;\n font-size: 28px;\n line-height: 36px;\n "], ["\n font-family: DM Sans;\n font-weight: 700;\n font-style: normal;\n font-size: 28px;\n line-height: 36px;\n "]))),
|
|
9
|
+
h3: css(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n font-family: DM Sans;\n font-weight: 700;\n font-style: normal;\n font-size: 40px;\n line-height: 48px;\n "], ["\n font-family: DM Sans;\n font-weight: 700;\n font-style: normal;\n font-size: 40px;\n line-height: 48px;\n "]))),
|
|
10
|
+
h4: css(templateObject_4 || (templateObject_4 = __makeTemplateObject(["\n font-family: DM Sans;\n font-weight: 400;\n font-style: normal;\n font-size: 32px;\n line-height: 48px;\n "], ["\n font-family: DM Sans;\n font-weight: 400;\n font-style: normal;\n font-size: 32px;\n line-height: 48px;\n "]))),
|
|
11
|
+
h5: css(templateObject_5 || (templateObject_5 = __makeTemplateObject(["\n font-family: DM Sans;\n font-weight: 700;\n font-style: normal;\n font-size: 24px;\n line-height: 36px;\n "], ["\n font-family: DM Sans;\n font-weight: 700;\n font-style: normal;\n font-size: 24px;\n line-height: 36px;\n "]))),
|
|
12
|
+
h6: css(templateObject_6 || (templateObject_6 = __makeTemplateObject(["\n font-family: DM Sans;\n font-weight: 700;\n font-style: normal;\n font-size: 20px;\n line-height: 32px;\n "], ["\n font-family: DM Sans;\n font-weight: 700;\n font-style: normal;\n font-size: 20px;\n line-height: 32px;\n "]))),
|
|
13
|
+
subtitle: css(templateObject_7 || (templateObject_7 = __makeTemplateObject(["\n font-family: DM Sans;\n font-weight: 500;\n font-style: normal;\n font-size: 18px;\n line-height: 24px;\n "], ["\n font-family: DM Sans;\n font-weight: 500;\n font-style: normal;\n font-size: 18px;\n line-height: 24px;\n "]))),
|
|
14
|
+
body1: css(templateObject_8 || (templateObject_8 = __makeTemplateObject(["\n font-family: DM Sans;\n font-weight: 400;\n font-style: normal;\n font-size: 16px;\n line-height: 28px;\n "], ["\n font-family: DM Sans;\n font-weight: 400;\n font-style: normal;\n font-size: 16px;\n line-height: 28px;\n "]))),
|
|
15
|
+
body2: css(templateObject_9 || (templateObject_9 = __makeTemplateObject(["\n font-family: DM Sans;\n font-weight: 700;\n font-style: normal;\n font-size: 16px;\n line-height: 28px;\n "], ["\n font-family: DM Sans;\n font-weight: 700;\n font-style: normal;\n font-size: 16px;\n line-height: 28px;\n "]))),
|
|
16
|
+
body3: css(templateObject_10 || (templateObject_10 = __makeTemplateObject(["\n font-family: DM Sans;\n font-weight: 400;\n font-size: 14px;\n line-height: 20px;\n "], ["\n font-family: DM Sans;\n font-weight: 400;\n font-size: 14px;\n line-height: 20px;\n "]))),
|
|
17
|
+
body4: css(templateObject_11 || (templateObject_11 = __makeTemplateObject(["\n font-family: DM Sans;\n font-weight: 700;\n font-style: normal;\n font-size: 14px;\n line-height: 20px;\n "], ["\n font-family: DM Sans;\n font-weight: 700;\n font-style: normal;\n font-size: 14px;\n line-height: 20px;\n "]))),
|
|
18
|
+
label1: css(templateObject_12 || (templateObject_12 = __makeTemplateObject(["\n font-family: DM Sans;\n font-weight: 700;\n font-style: normal;\n font-size: 14px;\n line-height: 16px;\n letter-spacing: 0.5px;\n "], ["\n font-family: DM Sans;\n font-weight: 700;\n font-style: normal;\n font-size: 14px;\n line-height: 16px;\n letter-spacing: 0.5px;\n "]))),
|
|
19
|
+
label2: css(templateObject_13 || (templateObject_13 = __makeTemplateObject(["\n font-family: DM Sans;\n font-weight: 700;\n font-style: normal;\n font-size: 12px;\n line-height: 16px;\n letter-spacing: 1px;\n text-transform: uppercase;\n "], ["\n font-family: DM Sans;\n font-weight: 700;\n font-style: normal;\n font-size: 12px;\n line-height: 16px;\n letter-spacing: 1px;\n text-transform: uppercase;\n "]))),
|
|
20
|
+
label3: css(templateObject_14 || (templateObject_14 = __makeTemplateObject(["\n font-family: DM Sans;\n font-weight: 700;\n font-style: normal;\n font-size: 10px;\n line-height: 16px;\n letter-spacing: 1px;\n text-transform: uppercase;\n "], ["\n font-family: DM Sans;\n font-weight: 700;\n font-style: normal;\n font-size: 10px;\n line-height: 16px;\n letter-spacing: 1px;\n text-transform: uppercase;\n "]))),
|
|
21
|
+
helperText: css(templateObject_15 || (templateObject_15 = __makeTemplateObject(["\n font-family: DM Sans;\n font-weight: 400;\n font-style: normal;\n font-size: 12px;\n line-height: 18px;\n "], ["\n font-family: DM Sans;\n font-weight: 400;\n font-style: normal;\n font-size: 12px;\n line-height: 18px;\n "]))),
|
|
22
|
+
buttonText: css(templateObject_16 || (templateObject_16 = __makeTemplateObject(["\n font-family: DM Sans;\n font-weight: 700;\n font-style: normal;\n font-size: 16px;\n line-height: 24px;\n letter-spacing: 0.02em;\n "], ["\n font-family: DM Sans;\n font-weight: 700;\n font-style: normal;\n font-size: 16px;\n line-height: 24px;\n letter-spacing: 0.02em;\n "]))),
|
|
23
|
+
buttonTextSmall: css(templateObject_17 || (templateObject_17 = __makeTemplateObject(["\n font-family: DM Sans;\n font-weight: 700;\n font-style: normal;\n font-size: 14px;\n line-height: 24px;\n letter-spacing: 0.02em;\n "], ["\n font-family: DM Sans;\n font-weight: 700;\n font-style: normal;\n font-size: 14px;\n line-height: 24px;\n letter-spacing: 0.02em;\n "]))),
|
|
24
|
+
link: css(templateObject_18 || (templateObject_18 = __makeTemplateObject(["\n font-family: DM Sans;\n font-weight: 500;\n font-style: normal;\n font-size: 14px;\n line-height: 24px;\n user-select: none;\n :hover {\n cursor: pointer;\n text-decoration-line: underline;\n opacity: 0.8;\n }\n "], ["\n font-family: DM Sans;\n font-weight: 500;\n font-style: normal;\n font-size: 14px;\n line-height: 24px;\n user-select: none;\n :hover {\n cursor: pointer;\n text-decoration-line: underline;\n opacity: 0.8;\n }\n "]))),
|
|
25
|
+
stepper: css(templateObject_19 || (templateObject_19 = __makeTemplateObject(["\n font-family: \"Montserrat\";\n font-style: normal;\n font-weight: 700;\n font-size: 14px;\n line-height: 16px;\n "], ["\n font-family: \"Montserrat\";\n font-style: normal;\n font-weight: 700;\n font-size: 14px;\n line-height: 16px;\n "]))),
|
|
26
|
+
};
|
|
27
|
+
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, templateObject_16, templateObject_17, templateObject_18, templateObject_19;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { css as cssBase } from "styled-components";
|
|
2
|
+
// prevents circular definition since:
|
|
3
|
+
// - type for `css` is ThemedCssFunction<DefaultTheme>
|
|
4
|
+
// - theme will be used to define DefaultTheme
|
|
5
|
+
export var css = cssBase;
|
|
6
|
+
// `css` shouldn't use ${(props) => props.theme.css.};
|