ToolJet/frontend/src/modules/common/components/index.js

62 lines
2.1 KiB
JavaScript
Raw Normal View History

[improvement] New onboarding flow (#10746) * Added modules folder to the source code * Added some changes to the APIs and removing unwanted files * fixed: slug and padding issue * Fixed invitations page issue * cleaning up and modularising the store code * Refactoring the SSOAuthModule * Onboarding bug fixes (#2072) * Added the enter event hook * Added link to the header icon * removed the pointer from the parent class and added to the child * reset password button fixes and minor type fixes * fixed validations for password * handled reset password scenarios (might need some refactoring) * modified email component to take custom placeholders * fixed css error in submig button in disabled state * added handle submit in the setup page * added seprate component for resend email button to prevent re-rendering of component * Added clearPageHistory * Added forgot password create account CTA issue * Added css fix for the page scroll issue * review changes * removed duplicate component * fixed the placeholder issue * Added consultation banner fix * overlapping of email success info page and dark theme fixes * Added maxWidth to the toast * minor css fix * white labelling changes * fixed: black dot issue * Added dark-theme fix for the submit-btn * fixed margin related issue for mozilla firefox * added seprator component and minor css fix * css fixes for password success info screen * css fix --------- Co-authored-by: rohanlahori <[email protected]> * refactoring the server side code * removed onboarding status * Added pr changes --------- Co-authored-by: rohanlahori <[email protected]>
2024-09-19 07:16:22 +00:00
import FormTextInput from './FormTextInput';
import PasswordInput from './PasswordInput';
import GeneralFeatureImage from './GeneralFeatureImage';
import SubmitButton from './SubmitButton';
import FormHeader from './FormHeader';
import EmailComponent from './EmailComponent';
import FormDescription from './FormDescription';
import SSOAuthModule from './SSOAuthModule';
2025-02-25 06:52:50 +00:00
import TermsAndPrivacyInfo from './TermsAndPrivacyInfo';
import BaseImportAppMenu from './BaseImportAppMenu';
import DisablePasswordLoginModal from './DisablePasswordLoginModal';
import BaseManageOrgConstants from './BaseManageOrgConstants';
import BaseSettingsMenu from './BaseSettingsMenu';
import LeftNavSideBar from './LeftNavSideBar';
import BaseCreateVersionModal from './BaseCreateVersionModal';
import BasePromoteReleaseButton from './BasePromoteReleaseButton';
import BaseOrganizationList from './BaseOrganizationList';
import BaseWorkspaceActions from './BaseWorkspaceActions';
import DefaultSSOList from './DefaultSSOList';
import DefaultSSOModal from './DefaultSSOModal';
import BaseLogoNavDropdown from './BaseLogoNavDropdown';
import Loader from './Loader';
import LicenseBanner from './LicenseBanner';
import EditRoleErrorModal from './ErrorModal';
import BaseOnboardingQuestions from './BaseOnboardingQuestions';
import BaseSetupAdminPage from './BaseSetupAdminPage';
import UsersTable from './UsersTable';
2025-03-04 19:34:29 +00:00
import BaseColorSwatches from './BaseColorSwatches';
import BaseComponentModuleTab from './BaseComponentModuleTab';
[improvement] New onboarding flow (#10746) * Added modules folder to the source code * Added some changes to the APIs and removing unwanted files * fixed: slug and padding issue * Fixed invitations page issue * cleaning up and modularising the store code * Refactoring the SSOAuthModule * Onboarding bug fixes (#2072) * Added the enter event hook * Added link to the header icon * removed the pointer from the parent class and added to the child * reset password button fixes and minor type fixes * fixed validations for password * handled reset password scenarios (might need some refactoring) * modified email component to take custom placeholders * fixed css error in submig button in disabled state * added handle submit in the setup page * added seprate component for resend email button to prevent re-rendering of component * Added clearPageHistory * Added forgot password create account CTA issue * Added css fix for the page scroll issue * review changes * removed duplicate component * fixed the placeholder issue * Added consultation banner fix * overlapping of email success info page and dark theme fixes * Added maxWidth to the toast * minor css fix * white labelling changes * fixed: black dot issue * Added dark-theme fix for the submit-btn * fixed margin related issue for mozilla firefox * added seprator component and minor css fix * css fixes for password success info screen * css fix --------- Co-authored-by: rohanlahori <[email protected]> * refactoring the server side code * removed onboarding status * Added pr changes --------- Co-authored-by: rohanlahori <[email protected]>
2024-09-19 07:16:22 +00:00
export {
FormTextInput,
PasswordInput,
GeneralFeatureImage,
SubmitButton,
FormHeader,
2025-03-04 19:34:29 +00:00
BaseColorSwatches,
[improvement] New onboarding flow (#10746) * Added modules folder to the source code * Added some changes to the APIs and removing unwanted files * fixed: slug and padding issue * Fixed invitations page issue * cleaning up and modularising the store code * Refactoring the SSOAuthModule * Onboarding bug fixes (#2072) * Added the enter event hook * Added link to the header icon * removed the pointer from the parent class and added to the child * reset password button fixes and minor type fixes * fixed validations for password * handled reset password scenarios (might need some refactoring) * modified email component to take custom placeholders * fixed css error in submig button in disabled state * added handle submit in the setup page * added seprate component for resend email button to prevent re-rendering of component * Added clearPageHistory * Added forgot password create account CTA issue * Added css fix for the page scroll issue * review changes * removed duplicate component * fixed the placeholder issue * Added consultation banner fix * overlapping of email success info page and dark theme fixes * Added maxWidth to the toast * minor css fix * white labelling changes * fixed: black dot issue * Added dark-theme fix for the submit-btn * fixed margin related issue for mozilla firefox * added seprator component and minor css fix * css fixes for password success info screen * css fix --------- Co-authored-by: rohanlahori <[email protected]> * refactoring the server side code * removed onboarding status * Added pr changes --------- Co-authored-by: rohanlahori <[email protected]>
2024-09-19 07:16:22 +00:00
EmailComponent,
FormDescription,
SSOAuthModule,
2025-02-25 06:52:50 +00:00
TermsAndPrivacyInfo,
BaseImportAppMenu,
DisablePasswordLoginModal,
BaseManageOrgConstants,
BaseSettingsMenu,
LeftNavSideBar,
BaseCreateVersionModal,
BasePromoteReleaseButton,
BaseOrganizationList,
BaseWorkspaceActions,
DefaultSSOList,
DefaultSSOModal,
BaseLogoNavDropdown,
Loader,
LicenseBanner,
EditRoleErrorModal,
BaseOnboardingQuestions,
BaseSetupAdminPage,
UsersTable,
BaseComponentModuleTab,
[improvement] New onboarding flow (#10746) * Added modules folder to the source code * Added some changes to the APIs and removing unwanted files * fixed: slug and padding issue * Fixed invitations page issue * cleaning up and modularising the store code * Refactoring the SSOAuthModule * Onboarding bug fixes (#2072) * Added the enter event hook * Added link to the header icon * removed the pointer from the parent class and added to the child * reset password button fixes and minor type fixes * fixed validations for password * handled reset password scenarios (might need some refactoring) * modified email component to take custom placeholders * fixed css error in submig button in disabled state * added handle submit in the setup page * added seprate component for resend email button to prevent re-rendering of component * Added clearPageHistory * Added forgot password create account CTA issue * Added css fix for the page scroll issue * review changes * removed duplicate component * fixed the placeholder issue * Added consultation banner fix * overlapping of email success info page and dark theme fixes * Added maxWidth to the toast * minor css fix * white labelling changes * fixed: black dot issue * Added dark-theme fix for the submit-btn * fixed margin related issue for mozilla firefox * added seprator component and minor css fix * css fixes for password success info screen * css fix --------- Co-authored-by: rohanlahori <[email protected]> * refactoring the server side code * removed onboarding status * Added pr changes --------- Co-authored-by: rohanlahori <[email protected]>
2024-09-19 07:16:22 +00:00
};