├── .gitignore ├── .vscode ├── extensions.json └── settings.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── axelor-common ├── build.gradle └── src │ ├── main │ └── java │ │ └── com │ │ └── axelor │ │ └── common │ │ ├── ClassUtils.java │ │ ├── FileUtils.java │ │ ├── HtmlUtils.java │ │ ├── Inflections.java │ │ ├── Inflector.java │ │ ├── MimeTypesUtils.java │ │ ├── ObjectUtils.java │ │ ├── PropertiesUtils.java │ │ ├── ResourceUtils.java │ │ ├── StringUtils.java │ │ ├── UriBuilder.java │ │ ├── VersionUtils.java │ │ ├── XMLUtils.java │ │ ├── YamlUtils.java │ │ ├── crypto │ │ ├── BytesEncryptor.java │ │ ├── Encryptor.java │ │ ├── EncryptorException.java │ │ ├── OperationMode.java │ │ ├── PaddingScheme.java │ │ └── StringEncryptor.java │ │ ├── csv │ │ └── CSVFile.java │ │ ├── http │ │ └── ContentDisposition.java │ │ ├── logging │ │ ├── ColorConverter.java │ │ └── LoggerConfiguration.java │ │ └── reflections │ │ ├── ClassFinder.java │ │ ├── ClassScanner.java │ │ ├── Reflections.java │ │ └── ResourceFinder.java │ └── test │ ├── java │ └── com │ │ └── axelor │ │ └── common │ │ ├── AbstractMapTester.java │ │ ├── TestCSVFileUtils.java │ │ ├── TestClassUtils.java │ │ ├── TestFileUtils.java │ │ ├── TestHtmlUtils.java │ │ ├── TestInflector.java │ │ ├── TestMimeTypesUtils.java │ │ ├── TestObjectUtils.java │ │ ├── TestPropertiesUtils.java │ │ ├── TestReflections.java │ │ ├── TestStringUtils.java │ │ ├── TestUriBuilder.java │ │ ├── TestVersionUtils.java │ │ ├── TestYamlUtils.java │ │ ├── bar │ │ ├── MyBase.java │ │ └── MyClass1.java │ │ ├── crypto │ │ └── TestEncryptors.java │ │ ├── foo │ │ ├── MyClass2.java │ │ └── MyClass3.java │ │ └── logging │ │ └── LoggingTest.java │ └── resources │ ├── grades.csv │ ├── grades_bom.csv │ ├── logback.xml │ ├── test.html │ ├── test.pdf │ ├── test.properties │ ├── test.txt │ └── test.yaml ├── axelor-core ├── build.gradle └── src │ ├── main │ ├── java │ │ ├── com │ │ │ └── axelor │ │ │ │ ├── app │ │ │ │ ├── AppConfig.java │ │ │ │ ├── AppModule.java │ │ │ │ ├── AppSettings.java │ │ │ │ ├── AppSettingsObserver.java │ │ │ │ ├── AvailableAppFeatures.java │ │ │ │ ├── AvailableAppSettings.java │ │ │ │ ├── AxelorModule.java │ │ │ │ ├── cli │ │ │ │ │ ├── AbstractCliCommand.java │ │ │ │ │ ├── CliCommand.java │ │ │ │ │ ├── CliRunner.java │ │ │ │ │ └── commands │ │ │ │ │ │ ├── DatabaseCommand.java │ │ │ │ │ │ └── RunCommand.java │ │ │ │ ├── internal │ │ │ │ │ ├── AppFilter.java │ │ │ │ │ └── AppLogger.java │ │ │ │ └── settings │ │ │ │ │ ├── AbstractSettingsSource.java │ │ │ │ │ ├── BeanConfigurator.java │ │ │ │ │ ├── EncryptorConfigurationProperties.java │ │ │ │ │ ├── EnvSettingSource.java │ │ │ │ │ ├── MapSettingsSource.java │ │ │ │ │ ├── PropertiesSettingsSource.java │ │ │ │ │ ├── SettingsBuilder.java │ │ │ │ │ ├── SettingsUtils.java │ │ │ │ │ ├── StringEncryptorBuilder.java │ │ │ │ │ ├── SystemSettingSource.java │ │ │ │ │ └── YamlSettingsSource.java │ │ │ │ ├── auth │ │ │ │ ├── AuditableRunner.java │ │ │ │ ├── AuthModule.java │ │ │ │ ├── AuthPasswordResetService.java │ │ │ │ ├── AuthPasswordResetServiceImpl.java │ │ │ │ ├── AuthRealm.java │ │ │ │ ├── AuthResolver.java │ │ │ │ ├── AuthSecurity.java │ │ │ │ ├── AuthSecurityException.java │ │ │ │ ├── AuthSecurityWarner.java │ │ │ │ ├── AuthService.java │ │ │ │ ├── AuthSessionService.java │ │ │ │ ├── AuthUtils.java │ │ │ │ ├── AuthWebModule.java │ │ │ │ ├── MFAService.java │ │ │ │ ├── MFATooManyRequestsException.java │ │ │ │ ├── UserAuthenticationInfo.java │ │ │ │ ├── UserService.java │ │ │ │ ├── UserTokenService.java │ │ │ │ ├── db │ │ │ │ │ ├── AuditableModel.java │ │ │ │ │ └── repo │ │ │ │ │ │ ├── MFARepository.java │ │ │ │ │ │ ├── ProtectedFieldsProcessor.java │ │ │ │ │ │ ├── UserRepository.java │ │ │ │ │ │ └── UserTokenRepository.java │ │ │ │ ├── pac4j │ │ │ │ │ ├── AuthPac4jInfo.java │ │ │ │ │ ├── AuthPac4jListener.java │ │ │ │ │ ├── AuthPac4jModule.java │ │ │ │ │ ├── AuthPac4jObserver.java │ │ │ │ │ ├── AuthPac4jProfileService.java │ │ │ │ │ ├── AuthPac4jRealm.java │ │ │ │ │ ├── AuthPac4jUserService.java │ │ │ │ │ ├── AxelorCallbackClientFinder.java │ │ │ │ │ ├── AxelorCallbackFilter.java │ │ │ │ │ ├── AxelorCallbackLogic.java │ │ │ │ │ ├── AxelorCsrfAuthorizer.java │ │ │ │ │ ├── AxelorCsrfGenerator.java │ │ │ │ │ ├── AxelorCsrfMatcher.java │ │ │ │ │ ├── AxelorLoginFilter.java │ │ │ │ │ ├── AxelorLogoutFilter.java │ │ │ │ │ ├── AxelorLogoutFilterConfig.java │ │ │ │ │ ├── AxelorLogoutLogic.java │ │ │ │ │ ├── AxelorProfileManager.java │ │ │ │ │ ├── AxelorRememberMeManager.java │ │ │ │ │ ├── AxelorSecurityFilter.java │ │ │ │ │ ├── AxelorSecurityLogic.java │ │ │ │ │ ├── AxelorSessionManager.java │ │ │ │ │ ├── AxelorUrlResolver.java │ │ │ │ │ ├── AxelorUserAuthorizer.java │ │ │ │ │ ├── ClientConfig.java │ │ │ │ │ ├── ClientListDefaultService.java │ │ │ │ │ ├── ClientListService.java │ │ │ │ │ ├── ClientsProvider.java │ │ │ │ │ ├── ErrorHandler.java │ │ │ │ │ ├── config │ │ │ │ │ │ ├── BaseConfig.java │ │ │ │ │ │ └── LogoutConfig.java │ │ │ │ │ ├── ldap │ │ │ │ │ │ ├── AxelorLdapGroupDefinition.java │ │ │ │ │ │ ├── AxelorLdapProfile.java │ │ │ │ │ │ ├── AxelorLdapProfileDefinition.java │ │ │ │ │ │ ├── AxelorLdapProfileService.java │ │ │ │ │ │ ├── AxelorSearchEntryResolver.java │ │ │ │ │ │ └── ByteArrayConverter.java │ │ │ │ │ └── local │ │ │ │ │ │ ├── AxelorAjaxRequestResolver.java │ │ │ │ │ │ ├── AxelorApiKeyAuthenticator.java │ │ │ │ │ │ ├── AxelorApiKeyClient.java │ │ │ │ │ │ ├── AxelorAuthenticator.java │ │ │ │ │ │ ├── AxelorDirectBasicAuthClient.java │ │ │ │ │ │ ├── AxelorFormClient.java │ │ │ │ │ │ ├── AxelorFormCredentials.java │ │ │ │ │ │ ├── AxelorIndirectBasicAuthClient.java │ │ │ │ │ │ ├── BasicAuthCallbackClientFinder.java │ │ │ │ │ │ ├── ChangePasswordException.java │ │ │ │ │ │ ├── CredentialsHandler.java │ │ │ │ │ │ ├── JsonExtractor.java │ │ │ │ │ │ ├── MfaAuthenticator.java │ │ │ │ │ │ └── MfaClient.java │ │ │ │ └── web │ │ │ │ │ ├── MFAController.java │ │ │ │ │ ├── UserController.java │ │ │ │ │ └── UserTokenController.java │ │ │ │ ├── cache │ │ │ │ ├── AxelorCache.java │ │ │ │ ├── CacheBuilder.java │ │ │ │ ├── CacheConfig.java │ │ │ │ ├── CacheLoader.java │ │ │ │ ├── CacheProviderInfo.java │ │ │ │ ├── CacheType.java │ │ │ │ ├── DistributedAtomicLong.java │ │ │ │ ├── DistributedFactory.java │ │ │ │ ├── DistributedService.java │ │ │ │ ├── caffeine │ │ │ │ │ ├── AtomicLongAdapter.java │ │ │ │ │ ├── CaffeineCache.java │ │ │ │ │ ├── CaffeineCacheBuilder.java │ │ │ │ │ ├── CaffeineDistributedService.java │ │ │ │ │ ├── CaffeineLoadingCache.java │ │ │ │ │ └── NoOpLock.java │ │ │ │ ├── event │ │ │ │ │ ├── RemovalCause.java │ │ │ │ │ └── RemovalListener.java │ │ │ │ └── redisson │ │ │ │ │ ├── AbstractRedissonCache.java │ │ │ │ │ ├── AbstractRedissonCacheBuilder.java │ │ │ │ │ ├── AxelorKryo5Codec.java │ │ │ │ │ ├── AxelorRedissonRegionFactory.java │ │ │ │ │ ├── AxelorRedissonRegionNativeFactory.java │ │ │ │ │ ├── RedissonAtomicLongAdapter.java │ │ │ │ │ ├── RedissonCache.java │ │ │ │ │ ├── RedissonCacheBuilder.java │ │ │ │ │ ├── RedissonCacheNative.java │ │ │ │ │ ├── RedissonCacheNativeBuilder.java │ │ │ │ │ ├── RedissonDistributedService.java │ │ │ │ │ ├── RedissonProvider.java │ │ │ │ │ ├── RedissonUtils.java │ │ │ │ │ └── Version.java │ │ │ │ ├── concurrent │ │ │ │ ├── ContextAware.java │ │ │ │ ├── ContextAwareCallable.java │ │ │ │ ├── ContextAwareRunnable.java │ │ │ │ └── ContextState.java │ │ │ │ ├── data │ │ │ │ ├── AuditHelper.java │ │ │ │ ├── DataScriptHelper.java │ │ │ │ ├── ImportException.java │ │ │ │ ├── ImportTask.java │ │ │ │ ├── Importer.java │ │ │ │ ├── Listener.java │ │ │ │ ├── XStreamUtils.java │ │ │ │ ├── adapter │ │ │ │ │ ├── Adapter.java │ │ │ │ │ ├── BooleanAdapter.java │ │ │ │ │ ├── DataAdapter.java │ │ │ │ │ ├── JavaTimeAdapter.java │ │ │ │ │ ├── NumberAdapter.java │ │ │ │ │ └── PasswordAdapter.java │ │ │ │ ├── csv │ │ │ │ │ ├── CSVBind.java │ │ │ │ │ ├── CSVBindConverter.java │ │ │ │ │ ├── CSVBindJson.java │ │ │ │ │ ├── CSVBinder.java │ │ │ │ │ ├── CSVConfig.java │ │ │ │ │ ├── CSVImporter.java │ │ │ │ │ ├── CSVInput.java │ │ │ │ │ ├── CSVInputConverter.java │ │ │ │ │ ├── CSVInputJson.java │ │ │ │ │ └── CSVLogger.java │ │ │ │ └── xml │ │ │ │ │ ├── ElementConverter.java │ │ │ │ │ ├── XMLBind.java │ │ │ │ │ ├── XMLBindConverter.java │ │ │ │ │ ├── XMLBindJson.java │ │ │ │ │ ├── XMLBinder.java │ │ │ │ │ ├── XMLConfig.java │ │ │ │ │ ├── XMLImporter.java │ │ │ │ │ └── XMLInput.java │ │ │ │ ├── db │ │ │ │ ├── EntityHelper.java │ │ │ │ ├── JPA.java │ │ │ │ ├── JpaClassLoader.java │ │ │ │ ├── JpaModel.java │ │ │ │ ├── JpaModule.java │ │ │ │ ├── JpaRepository.java │ │ │ │ ├── JpaScanner.java │ │ │ │ ├── JpaSecurity.java │ │ │ │ ├── JpaSequence.java │ │ │ │ ├── JpaSupport.java │ │ │ │ ├── Model.java │ │ │ │ ├── ParallelTransactionExecutor.java │ │ │ │ ├── Query.java │ │ │ │ ├── QueryBinder.java │ │ │ │ ├── Repository.java │ │ │ │ ├── ValueEnum.java │ │ │ │ ├── annotations │ │ │ │ │ ├── EnumWidget.java │ │ │ │ │ ├── EqualsInclude.java │ │ │ │ │ ├── NameColumn.java │ │ │ │ │ ├── Sequence.java │ │ │ │ │ ├── Track.java │ │ │ │ │ ├── TrackEvent.java │ │ │ │ │ ├── TrackField.java │ │ │ │ │ ├── TrackMessage.java │ │ │ │ │ ├── VirtualColumn.java │ │ │ │ │ └── Widget.java │ │ │ │ ├── audit │ │ │ │ │ ├── AuditIntegrator.java │ │ │ │ │ ├── AuditListener.java │ │ │ │ │ ├── AuditTracker.java │ │ │ │ │ ├── AuditTrail.java │ │ │ │ │ ├── AuditUtils.java │ │ │ │ │ ├── HibernateListenerConfigurator.java │ │ │ │ │ └── HibernateListenerService.java │ │ │ │ ├── converters │ │ │ │ │ ├── AbstractEncryptedConverter.java │ │ │ │ │ ├── EncryptedBytesConverter.java │ │ │ │ │ ├── EncryptedFieldService.java │ │ │ │ │ └── EncryptedStringConverter.java │ │ │ │ ├── hibernate │ │ │ │ │ ├── dialect │ │ │ │ │ │ ├── AxelorHSQLDialect.java │ │ │ │ │ │ ├── AxelorMySQLDialect.java │ │ │ │ │ │ ├── AxelorOracleDialect.java │ │ │ │ │ │ ├── AxelorPostgreSQLDialect.java │ │ │ │ │ │ ├── CustomDialectResolver.java │ │ │ │ │ │ └── function │ │ │ │ │ │ │ ├── AbstractJsonExtractFunction.java │ │ │ │ │ │ │ ├── AbstractJsonSetFunction.java │ │ │ │ │ │ │ ├── MySQLJsonExtractFunction.java │ │ │ │ │ │ │ ├── MySQLJsonSetFunction.java │ │ │ │ │ │ │ ├── OracleJsonExtractFunction.java │ │ │ │ │ │ │ ├── PostgreSQLJsonExtractFunction.java │ │ │ │ │ │ │ └── PostgreSQLJsonSetFunction.java │ │ │ │ │ ├── naming │ │ │ │ │ │ ├── ImplicitNamingStrategyImpl.java │ │ │ │ │ │ └── PhysicalNamingStrategyImpl.java │ │ │ │ │ └── type │ │ │ │ │ │ ├── EncryptedTextType.java │ │ │ │ │ │ ├── JsonFunction.java │ │ │ │ │ │ ├── JsonType.java │ │ │ │ │ │ └── ValueEnumType.java │ │ │ │ ├── internal │ │ │ │ │ ├── DBHelper.java │ │ │ │ │ └── TargetDatabase.java │ │ │ │ ├── mapper │ │ │ │ │ ├── Adapter.java │ │ │ │ │ ├── JsonProperty.java │ │ │ │ │ ├── Mapper.java │ │ │ │ │ ├── Property.java │ │ │ │ │ ├── PropertyType.java │ │ │ │ │ ├── TypeAdapter.java │ │ │ │ │ └── types │ │ │ │ │ │ ├── DecimalAdapter.java │ │ │ │ │ │ ├── EnumAdapter.java │ │ │ │ │ │ ├── JavaTimeAdapter.java │ │ │ │ │ │ ├── ListAdapter.java │ │ │ │ │ │ ├── MapAdapter.java │ │ │ │ │ │ ├── SetAdapter.java │ │ │ │ │ │ └── SimpleAdapter.java │ │ │ │ ├── tenants │ │ │ │ │ ├── BadTenantException.java │ │ │ │ │ ├── TenantAware.java │ │ │ │ │ ├── TenantConfig.java │ │ │ │ │ ├── TenantConfigImpl.java │ │ │ │ │ ├── TenantConfigProvider.java │ │ │ │ │ ├── TenantConfigProviderImpl.java │ │ │ │ │ ├── TenantConnectionProvider.java │ │ │ │ │ ├── TenantFilter.java │ │ │ │ │ ├── TenantInfo.java │ │ │ │ │ ├── TenantModule.java │ │ │ │ │ ├── TenantNotFoundException.java │ │ │ │ │ ├── TenantResolver.java │ │ │ │ │ └── TenantSupport.java │ │ │ │ └── tracking │ │ │ │ │ ├── FieldTracking.java │ │ │ │ │ └── ModelTracking.java │ │ │ │ ├── dms │ │ │ │ ├── db │ │ │ │ │ └── repo │ │ │ │ │ │ ├── DMSFileRepository.java │ │ │ │ │ │ ├── DMSFileTagRepository.java │ │ │ │ │ │ └── DMSPermissionRepository.java │ │ │ │ └── web │ │ │ │ │ └── DMSPermissionController.java │ │ │ │ ├── event │ │ │ │ ├── Event.java │ │ │ │ ├── EventBus.java │ │ │ │ ├── EventImpl.java │ │ │ │ ├── EventModule.java │ │ │ │ ├── NamedLiteral.java │ │ │ │ ├── Observer.java │ │ │ │ ├── ObserverException.java │ │ │ │ └── Observes.java │ │ │ │ ├── events │ │ │ │ ├── ActionEvent.java │ │ │ │ ├── FeatureChanged.java │ │ │ │ ├── LoginEvent.java │ │ │ │ ├── LogoutEvent.java │ │ │ │ ├── PostAction.java │ │ │ │ ├── PostLogin.java │ │ │ │ ├── PostRequest.java │ │ │ │ ├── PreAction.java │ │ │ │ ├── PreLogin.java │ │ │ │ ├── PreRequest.java │ │ │ │ ├── RequestEvent.java │ │ │ │ ├── ShutdownEvent.java │ │ │ │ ├── StartupEvent.java │ │ │ │ ├── internal │ │ │ │ │ └── BeforeTransactionComplete.java │ │ │ │ └── qualifiers │ │ │ │ │ ├── EntityType.java │ │ │ │ │ └── EntityTypes.java │ │ │ │ ├── file │ │ │ │ ├── store │ │ │ │ │ ├── FileStoreFactory.java │ │ │ │ │ ├── Store.java │ │ │ │ │ ├── StoreType.java │ │ │ │ │ ├── UploadedFile.java │ │ │ │ │ ├── file │ │ │ │ │ │ └── FileSystemStore.java │ │ │ │ │ └── s3 │ │ │ │ │ │ ├── DefaultS3ClientManager.java │ │ │ │ │ │ ├── S3Cache.java │ │ │ │ │ │ ├── S3Client.java │ │ │ │ │ │ ├── S3ClientManager.java │ │ │ │ │ │ ├── S3Configuration.java │ │ │ │ │ │ ├── S3EncryptionType.java │ │ │ │ │ │ └── S3Store.java │ │ │ │ └── temp │ │ │ │ │ └── TempFiles.java │ │ │ │ ├── i18n │ │ │ │ ├── I18n.java │ │ │ │ ├── I18nBundle.java │ │ │ │ ├── I18nControl.java │ │ │ │ ├── I18nInterpolator.java │ │ │ │ └── L10n.java │ │ │ │ ├── inject │ │ │ │ ├── Beans.java │ │ │ │ └── logger │ │ │ │ │ ├── LoggerModule.java │ │ │ │ │ ├── LoggerProvider.java │ │ │ │ │ └── LoggerProvisionListener.java │ │ │ │ ├── mail │ │ │ │ ├── AbstractMailAccount.java │ │ │ │ ├── ImapAccount.java │ │ │ │ ├── MailAccount.java │ │ │ │ ├── MailBuilder.java │ │ │ │ ├── MailConstants.java │ │ │ │ ├── MailException.java │ │ │ │ ├── MailFileTypeMap.java │ │ │ │ ├── MailParser.java │ │ │ │ ├── MailReader.java │ │ │ │ ├── MailSender.java │ │ │ │ ├── Pop3Account.java │ │ │ │ ├── SmtpAccount.java │ │ │ │ ├── db │ │ │ │ │ └── repo │ │ │ │ │ │ ├── MailAddressRepository.java │ │ │ │ │ │ ├── MailFlagsRepository.java │ │ │ │ │ │ ├── MailFollowerRepository.java │ │ │ │ │ │ └── MailMessageRepository.java │ │ │ │ ├── service │ │ │ │ │ ├── MailFetchJob.java │ │ │ │ │ ├── MailService.java │ │ │ │ │ └── MailServiceImpl.java │ │ │ │ └── web │ │ │ │ │ └── MailController.java │ │ │ │ ├── meta │ │ │ │ ├── ActionExecutor.java │ │ │ │ ├── ActionHandler.java │ │ │ │ ├── CallMethod.java │ │ │ │ ├── MetaFiles.java │ │ │ │ ├── MetaPermissions.java │ │ │ │ ├── MetaScanner.java │ │ │ │ ├── MetaStore.java │ │ │ │ ├── db │ │ │ │ │ └── repo │ │ │ │ │ │ ├── MetaJsonModelRepository.java │ │ │ │ │ │ ├── MetaJsonRecordRepository.java │ │ │ │ │ │ ├── MetaJsonReferenceUpdater.java │ │ │ │ │ │ └── MetaThemeRepository.java │ │ │ │ ├── loader │ │ │ │ │ ├── AbstractLoader.java │ │ │ │ │ ├── AbstractParallelLoader.java │ │ │ │ │ ├── AbstractXmlProcessor.java │ │ │ │ │ ├── ComputedViewProcessor.java │ │ │ │ │ ├── ComputedViewXmlProcessor.java │ │ │ │ │ ├── DataLoader.java │ │ │ │ │ ├── DemoLoader.java │ │ │ │ │ ├── I18nLoader.java │ │ │ │ │ ├── ModelLoader.java │ │ │ │ │ ├── Module.java │ │ │ │ │ ├── ModuleInfo.java │ │ │ │ │ ├── ModuleManager.java │ │ │ │ │ ├── ModuleResolver.java │ │ │ │ │ ├── ViewGenerator.java │ │ │ │ │ ├── ViewLoader.java │ │ │ │ │ ├── ViewObserver.java │ │ │ │ │ ├── ViewWatcher.java │ │ │ │ │ ├── ViewWatcherObserver.java │ │ │ │ │ └── XMLViews.java │ │ │ │ ├── schema │ │ │ │ │ ├── ObjectViews.java │ │ │ │ │ ├── actions │ │ │ │ │ │ ├── Action.java │ │ │ │ │ │ ├── ActionAttrs.java │ │ │ │ │ │ ├── ActionCondition.java │ │ │ │ │ │ ├── ActionExport.java │ │ │ │ │ │ ├── ActionGroup.java │ │ │ │ │ │ ├── ActionImport.java │ │ │ │ │ │ ├── ActionMethod.java │ │ │ │ │ │ ├── ActionRecord.java │ │ │ │ │ │ ├── ActionReport.java │ │ │ │ │ │ ├── ActionResumable.java │ │ │ │ │ │ ├── ActionScript.java │ │ │ │ │ │ ├── ActionView.java │ │ │ │ │ │ ├── ActionWS.java │ │ │ │ │ │ ├── PendingExport.java │ │ │ │ │ │ ├── package-info.java │ │ │ │ │ │ └── validate │ │ │ │ │ │ │ ├── ActionValidate.java │ │ │ │ │ │ │ ├── ActionValidateBuilder.java │ │ │ │ │ │ │ ├── package-info.java │ │ │ │ │ │ │ └── validator │ │ │ │ │ │ │ ├── Alert.java │ │ │ │ │ │ │ ├── Error.java │ │ │ │ │ │ │ ├── Info.java │ │ │ │ │ │ │ ├── Notify.java │ │ │ │ │ │ │ ├── Validator.java │ │ │ │ │ │ │ ├── ValidatorType.java │ │ │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── package-info.java │ │ │ │ │ └── views │ │ │ │ │ │ ├── AbstractContainer.java │ │ │ │ │ │ ├── AbstractPanel.java │ │ │ │ │ │ ├── AbstractView.java │ │ │ │ │ │ ├── AbstractWidget.java │ │ │ │ │ │ ├── BaseSearchField.java │ │ │ │ │ │ ├── Button.java │ │ │ │ │ │ ├── ButtonGroup.java │ │ │ │ │ │ ├── CalendarEventHilite.java │ │ │ │ │ │ ├── CalendarView.java │ │ │ │ │ │ ├── CardsView.java │ │ │ │ │ │ ├── ChartView.java │ │ │ │ │ │ ├── ContainerView.java │ │ │ │ │ │ ├── CustomView.java │ │ │ │ │ │ ├── Dashboard.java │ │ │ │ │ │ ├── Dashlet.java │ │ │ │ │ │ ├── DataSet.java │ │ │ │ │ │ ├── Extend.java │ │ │ │ │ │ ├── ExtendItemAttribute.java │ │ │ │ │ │ ├── ExtendItemInsert.java │ │ │ │ │ │ ├── ExtendItemMove.java │ │ │ │ │ │ ├── ExtendItemReplace.java │ │ │ │ │ │ ├── ExtendableView.java │ │ │ │ │ │ ├── Field.java │ │ │ │ │ │ ├── FormView.java │ │ │ │ │ │ ├── GanttView.java │ │ │ │ │ │ ├── GridView.java │ │ │ │ │ │ ├── Help.java │ │ │ │ │ │ ├── Hilite.java │ │ │ │ │ │ ├── KanbanView.java │ │ │ │ │ │ ├── Label.java │ │ │ │ │ │ ├── Menu.java │ │ │ │ │ │ ├── MenuItem.java │ │ │ │ │ │ ├── Panel.java │ │ │ │ │ │ ├── PanelEditor.java │ │ │ │ │ │ ├── PanelField.java │ │ │ │ │ │ ├── PanelInclude.java │ │ │ │ │ │ ├── PanelMail.java │ │ │ │ │ │ ├── PanelRelated.java │ │ │ │ │ │ ├── PanelStack.java │ │ │ │ │ │ ├── PanelTabs.java │ │ │ │ │ │ ├── PanelViewer.java │ │ │ │ │ │ ├── Position.java │ │ │ │ │ │ ├── Search.java │ │ │ │ │ │ ├── SearchFilters.java │ │ │ │ │ │ ├── Selection.java │ │ │ │ │ │ ├── Separator.java │ │ │ │ │ │ ├── SimpleContainer.java │ │ │ │ │ │ ├── SimpleWidget.java │ │ │ │ │ │ ├── Spacer.java │ │ │ │ │ │ ├── Static.java │ │ │ │ │ │ ├── ToolTip.java │ │ │ │ │ │ ├── TreeView.java │ │ │ │ │ │ └── package-info.java │ │ │ │ ├── service │ │ │ │ │ ├── MetaFilterService.java │ │ │ │ │ ├── MetaModelService.java │ │ │ │ │ ├── MetaService.java │ │ │ │ │ ├── ViewProcessor.java │ │ │ │ │ ├── menu │ │ │ │ │ │ ├── MenuChecker.java │ │ │ │ │ │ ├── MenuItemComparator.java │ │ │ │ │ │ ├── MenuNode.java │ │ │ │ │ │ ├── MenuNodeVisitor.java │ │ │ │ │ │ ├── MenuService.java │ │ │ │ │ │ ├── MenuUtils.java │ │ │ │ │ │ └── SimpleMenuNodeVisitor.java │ │ │ │ │ └── tags │ │ │ │ │ │ ├── TagItem.java │ │ │ │ │ │ └── TagsService.java │ │ │ │ ├── theme │ │ │ │ │ ├── AvailableTheme.java │ │ │ │ │ ├── MetaThemeService.java │ │ │ │ │ └── MetaThemeServiceImpl.java │ │ │ │ └── web │ │ │ │ │ ├── JobController.java │ │ │ │ │ ├── MetaController.java │ │ │ │ │ └── MetaFilterController.java │ │ │ │ ├── quartz │ │ │ │ ├── AxelorConnectionProvider.java │ │ │ │ ├── GuiceJobFactory.java │ │ │ │ ├── GuiceJobRunShell.java │ │ │ │ ├── GuiceJobRunShellFactory.java │ │ │ │ ├── GuiceSchedulerFactory.java │ │ │ │ ├── JobCleaner.java │ │ │ │ ├── JobRunner.java │ │ │ │ ├── SchedulerModule.java │ │ │ │ └── SchedulerProvider.java │ │ │ │ ├── report │ │ │ │ ├── ReportEngineProvider.java │ │ │ │ ├── ReportGenerator.java │ │ │ │ ├── ReportResourceLocator.java │ │ │ │ └── tool │ │ │ │ │ ├── ImageTool.java │ │ │ │ │ └── ReportExecutor.java │ │ │ │ ├── rpc │ │ │ │ ├── ActionRequest.java │ │ │ │ ├── ActionResponse.java │ │ │ │ ├── Context.java │ │ │ │ ├── ContextEntity.java │ │ │ │ ├── ContextHandler.java │ │ │ │ ├── ContextHandlerFactory.java │ │ │ │ ├── Criteria.java │ │ │ │ ├── JsonContext.java │ │ │ │ ├── ObjectMapperProvider.java │ │ │ │ ├── PendingExportService.java │ │ │ │ ├── Request.java │ │ │ │ ├── RequestFilter.java │ │ │ │ ├── RequestUtils.java │ │ │ │ ├── Resource.java │ │ │ │ ├── Response.java │ │ │ │ ├── ResponseException.java │ │ │ │ ├── ResponseInterceptor.java │ │ │ │ ├── Translator.java │ │ │ │ └── filter │ │ │ │ │ ├── Filter.java │ │ │ │ │ ├── JPQLFilter.java │ │ │ │ │ ├── LikeFilter.java │ │ │ │ │ ├── LogicalFilter.java │ │ │ │ │ ├── NullFilter.java │ │ │ │ │ ├── Operator.java │ │ │ │ │ ├── RangeFilter.java │ │ │ │ │ └── SimpleFilter.java │ │ │ │ ├── script │ │ │ │ ├── AbstractScriptHelper.java │ │ │ │ ├── CompositeScriptHelper.java │ │ │ │ ├── ConfigContext.java │ │ │ │ ├── ELScriptHelper.java │ │ │ │ ├── GroovyCheck.java │ │ │ │ ├── GroovyCheckProp.java │ │ │ │ ├── GroovyCheckPropTransformation.java │ │ │ │ ├── GroovyCheckTransformation.java │ │ │ │ ├── GroovyScriptHelper.java │ │ │ │ ├── GroovyScriptSupport.java │ │ │ │ ├── JavaScriptScope.java │ │ │ │ ├── JavaScriptScriptHelper.java │ │ │ │ ├── ScriptAllowed.java │ │ │ │ ├── ScriptBindings.java │ │ │ │ ├── ScriptHelper.java │ │ │ │ ├── ScriptPolicy.java │ │ │ │ ├── ScriptPolicyConfigurator.java │ │ │ │ ├── ScriptPolicyConfiguratorService.java │ │ │ │ ├── ScriptPolicyException.java │ │ │ │ └── ScriptTimeoutException.java │ │ │ │ ├── team │ │ │ │ ├── db │ │ │ │ │ └── repo │ │ │ │ │ │ └── TeamRepository.java │ │ │ │ └── web │ │ │ │ │ └── TaskController.java │ │ │ │ ├── text │ │ │ │ ├── AxelorGStringTemplateEngine.java │ │ │ │ ├── AxelorStreamingTemplateEngine.java │ │ │ │ ├── FormatHelper.java │ │ │ │ ├── GroovyTemplates.java │ │ │ │ ├── Renderer.java │ │ │ │ ├── StringTemplates.java │ │ │ │ ├── Template.java │ │ │ │ └── Templates.java │ │ │ │ └── ui │ │ │ │ ├── QuickMenu.java │ │ │ │ ├── QuickMenuCreator.java │ │ │ │ ├── QuickMenuItem.java │ │ │ │ └── QuickMenuService.java │ │ └── org │ │ │ └── apache │ │ │ └── shiro │ │ │ └── cache │ │ │ └── jcache │ │ │ └── AxelorJCacheManager.java │ └── resources │ │ ├── META-INF │ │ ├── services │ │ │ └── org.hibernate.integrator.spi.Integrator │ │ └── validation.xml │ │ ├── application.conf │ │ ├── com │ │ └── axelor │ │ │ ├── meta │ │ │ └── schema │ │ │ │ ├── actions │ │ │ │ └── jaxb.properties │ │ │ │ ├── jaxb.properties │ │ │ │ └── views │ │ │ │ └── jaxb.properties │ │ │ └── report │ │ │ └── fonts │ │ │ ├── dejavu │ │ │ ├── DejaVuSans-Bold.ttf │ │ │ ├── DejaVuSans-BoldOblique.ttf │ │ │ ├── DejaVuSans-Oblique.ttf │ │ │ ├── DejaVuSans.ttf │ │ │ ├── DejaVuSansMono-Bold.ttf │ │ │ ├── DejaVuSansMono-BoldOblique.ttf │ │ │ ├── DejaVuSansMono-Oblique.ttf │ │ │ ├── DejaVuSansMono.ttf │ │ │ ├── DejaVuSerif-Bold.ttf │ │ │ ├── DejaVuSerif-BoldItalic.ttf │ │ │ ├── DejaVuSerif-Italic.ttf │ │ │ ├── DejaVuSerif.ttf │ │ │ └── LICENSE │ │ │ └── fontsConfig.xml │ │ ├── data-demo │ │ ├── input-config.xml │ │ └── input │ │ │ └── auth.xml │ │ ├── data-import.xsd │ │ ├── data-init │ │ ├── input-config.xml │ │ └── input │ │ │ ├── auth.xml │ │ │ └── jobs.xml │ │ ├── domain-models.xsd │ │ ├── domains │ │ ├── DMS.xml │ │ ├── Group.xml │ │ ├── MFA.xml │ │ ├── Mail.xml │ │ ├── Meta.xml │ │ ├── MetaFilter.xml │ │ ├── MetaJson.xml │ │ ├── MetaPermission.xml │ │ ├── MetaSchedule.xml │ │ ├── MetaSequence.xml │ │ ├── MetaTheme.xml │ │ ├── PasswordResetToken.xml │ │ ├── Permission.xml │ │ ├── Role.xml │ │ ├── Team.xml │ │ ├── User.xml │ │ └── UserToken.xml │ │ ├── i18n │ │ ├── messages.csv │ │ ├── messages_en.csv │ │ └── messages_fr.csv │ │ ├── object-views.xsd │ │ └── views │ │ ├── DMS.xml │ │ ├── Group.xml │ │ ├── MFA.xml │ │ ├── Mail.xml │ │ ├── Menu.xml │ │ ├── Meta.xml │ │ ├── MetaJson.xml │ │ ├── MetaPermission.xml │ │ ├── MetaTheme.xml │ │ ├── Permission.xml │ │ ├── Role.xml │ │ ├── Schedules.xml │ │ ├── Team.xml │ │ ├── User.xml │ │ └── UserToken.xml │ └── test │ ├── java │ └── com │ │ └── axelor │ │ ├── AbstractTest.java │ │ ├── JpaTest.java │ │ ├── JpaTestModule.java │ │ ├── TestModule.java │ │ ├── TestingHelpers.java │ │ ├── app │ │ ├── AppSettingGetPropTest.java │ │ ├── AppSettingsMergedTest.java │ │ ├── AppSettingsTest.java │ │ ├── EncryptedSettingsTest.java │ │ └── EnvironmentVariablesExtension.java │ │ ├── auth │ │ ├── AuthTest.java │ │ ├── LdapTest.java │ │ └── extensions │ │ │ └── LdapExtension.java │ │ ├── cache │ │ ├── AbstractBaseCache.java │ │ ├── CacheBuilderTest.java │ │ ├── CacheConfigTest.java │ │ ├── CaffeineTest.java │ │ ├── DistributedFactoryTest.java │ │ ├── EhcacheTest.java │ │ ├── HazelcastTest.java │ │ ├── InfinispanTest.java │ │ ├── RedisTest.java │ │ └── redisson │ │ │ └── RedissonProviderTest.java │ │ ├── concurrent │ │ └── ContextAwareTest.java │ │ ├── db │ │ ├── AuditTest.java │ │ ├── CrudTest.java │ │ ├── DateTest.java │ │ ├── EnumTest.java │ │ ├── EqualityTest.java │ │ ├── FixtureTest.java │ │ ├── JsonFunctionsTest.java │ │ ├── MapperTest.java │ │ ├── MigrationTest.java │ │ ├── PropertyTest.java │ │ ├── QueryJsonTest.java │ │ ├── QueryTest.java │ │ ├── RelationTest.java │ │ ├── RepositoryTest.java │ │ └── SequenceTest.java │ │ ├── event │ │ ├── After.java │ │ ├── AfterImpl.java │ │ ├── Before.java │ │ ├── BeforeImpl.java │ │ ├── SaveEvent.java │ │ ├── TestEvents.java │ │ ├── TestEventsParallel.java │ │ └── TestModule.java │ │ ├── file │ │ ├── AbstractBaseFile.java │ │ ├── FsStoreTest.java │ │ ├── S3CacheTest.java │ │ ├── S3StoreTest.java │ │ └── TempFileTest.java │ │ ├── i18n │ │ └── I18nTest.java │ │ ├── inject │ │ └── logger │ │ │ ├── TestLogger.java │ │ │ └── TestLoggerService.java │ │ ├── mail │ │ ├── AbstractMailTest.java │ │ ├── MailBuilderTest.java │ │ ├── MailParserTest.java │ │ ├── MailReaderTest.java │ │ └── MailSenderTest.java │ │ ├── meta │ │ ├── MetaTest.java │ │ ├── TestActionExport.java │ │ ├── TestActionWS.java │ │ ├── TestActions.java │ │ ├── TestFiles.java │ │ ├── TestScheduler.java │ │ ├── loader │ │ │ ├── TestComputedViews.java │ │ │ ├── TestLoader.java │ │ │ ├── TestMenu.java │ │ │ ├── TestModuleResolver.java │ │ │ └── TestViews.java │ │ └── web │ │ │ └── Hello.java │ │ ├── report │ │ ├── MyModule.java │ │ └── ReportTest.java │ │ ├── rpc │ │ ├── RequestTest.java │ │ ├── ResourceTest.java │ │ └── RpcTest.java │ │ ├── script │ │ ├── ScriptTest.java │ │ ├── TestContext.java │ │ ├── TestEL.java │ │ ├── TestGroovy.java │ │ ├── TestJavaScript.java │ │ ├── TestJsonContext.java │ │ ├── TestScriptPolicy.java │ │ └── policy │ │ │ ├── AllowedByAnnotation.java │ │ │ ├── AllowedByConfiguration.java │ │ │ ├── DeniedByConfiguration.java │ │ │ ├── DeniedByDefault.java │ │ │ ├── MyOtherService.java │ │ │ ├── MyOtherServiceImpl.java │ │ │ ├── MyOtherServiceImpl2.java │ │ │ ├── MyScriptPolicyConfigurator.java │ │ │ ├── MyService.java │ │ │ ├── MyServiceImpl.java │ │ │ ├── MyServiceImpl2.java │ │ │ ├── MyYetAnotherService.java │ │ │ ├── MyYetAnotherServiceImpl.java │ │ │ ├── ScriptAppSettings.java │ │ │ ├── SubAllowedByAnnotation.java │ │ │ └── SubAllowedByConfiguration.java │ │ ├── test │ │ └── db │ │ │ └── repo │ │ │ ├── ContactRepository.java │ │ │ ├── ContactRepositoryEx.java │ │ │ └── PersonRepository.java │ │ └── text │ │ ├── GroovyTemplateTest.java │ │ ├── STTemplateTest.java │ │ └── TemplateScriptTest.java │ └── resources │ ├── META-INF │ └── persistence.xml │ ├── axelor-config.properties │ ├── com │ └── axelor │ │ ├── files │ │ └── Logo_Axelor.png │ │ ├── mail │ │ ├── test-file.txt │ │ └── test-image.png │ │ ├── meta │ │ ├── Address.xml │ │ ├── Charts.xml │ │ ├── Contact.xml │ │ ├── Include.xml │ │ ├── Menu.xml │ │ ├── Search.xml │ │ ├── WSTest.xml │ │ ├── Welcome.xml │ │ └── extends │ │ │ ├── Base.xml │ │ │ └── Extends.xml │ │ └── text │ │ ├── include-test.tmpl │ │ ├── nested1.tmpl │ │ └── nested2.tmpl │ ├── configs │ ├── ext-config.properties │ ├── ext-config.yml │ ├── test-encrypted.properties │ └── test-encryptor-key │ ├── data │ └── ws-test │ │ ├── export-sale-order.tmpl │ │ └── ws-CountryInfoService.tmpl │ ├── db │ └── migration │ │ ├── V1__initialize.sql │ │ └── V2__alter.sql │ ├── domains │ ├── Address.xml │ ├── AuditCheck.xml │ ├── Circle.xml │ ├── Contact.xml │ ├── Country.xml │ ├── Currency.xml │ ├── EnumCheck.xml │ ├── EnumStatus.xml │ ├── EnumStatusNumber.xml │ ├── FieldTypes.xml │ ├── Invoice.xml │ ├── Move.xml │ ├── MoveLine.xml │ ├── Person.xml │ ├── Product.xml │ ├── ProductConfig.xml │ ├── Title.xml │ └── TypeCheck.xml │ ├── fixtures │ ├── demo-data.yml │ ├── demo-field-types.yml │ ├── sequence-data.yml │ └── users-data.yml │ ├── json │ ├── add.json │ ├── add2.json │ ├── find.json │ ├── find2.json │ └── find3.json │ ├── logback.xml │ ├── redisson.yaml │ ├── reports │ └── contacts.rptdesign │ ├── test.ics │ └── test.ldif ├── axelor-front ├── .editorconfig ├── .env ├── .gitignore ├── .nvmrc ├── README.md ├── build.gradle ├── eslint.config.js ├── index.html ├── package.json ├── patches │ └── bootstrap-sass@2.3.2.patch ├── pnpm-lock.yaml ├── scripts │ └── flags │ │ ├── README.md │ │ ├── combine_svg.py │ │ ├── download_image.py │ │ ├── extract_country_codes.py │ │ ├── generate_combined_flags_and_css.sh │ │ ├── generate_css.py │ │ ├── rename_svg.py │ │ └── to_twemoji_url.py ├── src │ ├── App.tsx │ ├── assets │ │ ├── axelor-dark.svg │ │ ├── axelor-icon.svg │ │ ├── axelor.svg │ │ └── flags.svg │ ├── components │ │ ├── alerts │ │ │ ├── alerts.module.css │ │ │ ├── alerts.tsx │ │ │ └── index.ts │ │ ├── app-logo │ │ │ ├── app-logo.tsx │ │ │ └── index.ts │ │ ├── dialogs │ │ │ ├── dialogs.module.css │ │ │ ├── dialogs.tsx │ │ │ └── index.ts │ │ ├── error-box │ │ │ ├── error-box.tsx │ │ │ ├── errorbox.module.scss │ │ │ └── index.ts │ │ ├── http-watch │ │ │ ├── http-watch.module.scss │ │ │ ├── http-watch.tsx │ │ │ ├── index.ts │ │ │ ├── use-block.ts │ │ │ └── use-watch.ts │ │ ├── icon │ │ │ ├── icon.tsx │ │ │ └── index.ts │ │ ├── loader │ │ │ ├── loader.module.scss │ │ │ └── loader.tsx │ │ ├── loading-button │ │ │ ├── index.ts │ │ │ └── loading-button.tsx │ │ ├── login-form │ │ │ ├── index.ts │ │ │ ├── login-form.module.scss │ │ │ └── login-form.tsx │ │ ├── mfa-form │ │ │ ├── index.ts │ │ │ ├── mfa-form.module.scss │ │ │ └── mfa-form.tsx │ │ ├── overflow-menu │ │ │ ├── overflow-menu.module.scss │ │ │ └── overflow-menu.tsx │ │ ├── page-text │ │ │ ├── index.ts │ │ │ ├── page-text.module.scss │ │ │ └── page-text.tsx │ │ ├── scheduler │ │ │ ├── index.ts │ │ │ ├── scheduler.module.scss │ │ │ └── scheduler.tsx │ │ ├── select │ │ │ ├── index.ts │ │ │ ├── select.module.scss │ │ │ └── select.tsx │ │ ├── tag │ │ │ ├── index.ts │ │ │ ├── relational-tag.module.scss │ │ │ ├── relational-tag.tsx │ │ │ ├── tag.module.scss │ │ │ └── tag.tsx │ │ ├── text-link │ │ │ ├── index.ts │ │ │ └── text-link.tsx │ │ ├── theme-builder │ │ │ ├── index.ts │ │ │ ├── scope.tsx │ │ │ ├── theme-builder.module.scss │ │ │ ├── theme-builder.tsx │ │ │ ├── theme-editor.module.scss │ │ │ ├── theme-editor.tsx │ │ │ ├── theme-elements.ts │ │ │ └── utils.ts │ │ └── tooltip │ │ │ ├── index.ts │ │ │ ├── tooltip.module.scss │ │ │ └── tooltip.tsx │ ├── declare.d.ts │ ├── hooks │ │ ├── use-app-head │ │ │ ├── index.ts │ │ │ └── use-app-head.ts │ │ ├── use-app-lang │ │ │ ├── index.ts │ │ │ └── use-app-lang.tsx │ │ ├── use-app-settings │ │ │ ├── index.ts │ │ │ └── use-app-settings.ts │ │ ├── use-app-theme │ │ │ ├── index.ts │ │ │ ├── themes │ │ │ │ ├── dark.json │ │ │ │ └── default.json │ │ │ ├── use-app-theme-options.ts │ │ │ └── use-app-theme.ts │ │ ├── use-async-effect │ │ │ ├── index.ts │ │ │ └── use-async-effect.ts │ │ ├── use-async │ │ │ ├── index.ts │ │ │ ├── use-async.test.tsx │ │ │ └── use-async.ts │ │ ├── use-button │ │ │ ├── index.ts │ │ │ └── use-button-single-click.ts │ │ ├── use-container-query │ │ │ ├── index.ts │ │ │ └── use-container-query.ts │ │ ├── use-data-store │ │ │ ├── index.ts │ │ │ └── use-data-store.ts │ │ ├── use-disable-wheel-scroll │ │ │ ├── index.ts │ │ │ └── use-disable-wheel-scroll.tsx │ │ ├── use-media-query │ │ │ ├── index.ts │ │ │ └── use-media-query.ts │ │ ├── use-menu │ │ │ ├── index.ts │ │ │ └── use-menu.ts │ │ ├── use-parser │ │ │ ├── constants.ts │ │ │ ├── context │ │ │ │ ├── eval-context.ts │ │ │ │ ├── index.ts │ │ │ │ └── script-context.ts │ │ │ ├── hooks.ts │ │ │ ├── index.js │ │ │ ├── parser.jsx │ │ │ ├── parser.test.tsx │ │ │ ├── template-legacy.jsx │ │ │ ├── template-react.jsx │ │ │ └── utils.js │ │ ├── use-permitted │ │ │ ├── index.ts │ │ │ └── use-permitted.ts │ │ ├── use-perms │ │ │ ├── index.ts │ │ │ └── use-perms.ts │ │ ├── use-relation │ │ │ ├── index.ts │ │ │ ├── use-before-select.tsx │ │ │ ├── use-completion.ts │ │ │ ├── use-creator.tsx │ │ │ ├── use-editor.tsx │ │ │ ├── use-ensure-related.ts │ │ │ ├── use-selector.module.scss │ │ │ └── use-selector.tsx │ │ ├── use-resize-detector │ │ │ ├── index.ts │ │ │ └── use-resize-detector.ts │ │ ├── use-responsive │ │ │ ├── index.ts │ │ │ └── use-responsive.ts │ │ ├── use-route │ │ │ ├── index.ts │ │ │ └── use-route.ts │ │ ├── use-search-translate │ │ │ ├── index.ts │ │ │ └── use-search-translate.ts │ │ ├── use-session │ │ │ ├── index.ts │ │ │ ├── use-session.test.tsx │ │ │ └── use-session.ts │ │ ├── use-shortcut │ │ │ ├── index.ts │ │ │ └── use-shortcut.ts │ │ ├── use-tabs │ │ │ ├── index.ts │ │ │ └── use-tabs.ts │ │ └── use-tags │ │ │ ├── index.ts │ │ │ └── use-tags.ts │ ├── layout │ │ ├── index.ts │ │ ├── layout.module.scss │ │ ├── layout.tsx │ │ ├── nav-drawer │ │ │ ├── hook.ts │ │ │ ├── index.ts │ │ │ ├── nav-drawer.module.scss │ │ │ └── nav-drawer.tsx │ │ ├── nav-header │ │ │ ├── index.ts │ │ │ ├── nav-header.module.scss │ │ │ ├── nav-header.tsx │ │ │ └── utils.ts │ │ ├── nav-tabs │ │ │ ├── index.ts │ │ │ ├── nav-tabs.module.scss │ │ │ ├── nav-tabs.tsx │ │ │ └── utils.ts │ │ └── nav-tags │ │ │ ├── index.ts │ │ │ └── nav-tags.tsx │ ├── main.tsx │ ├── routes │ │ ├── about │ │ │ ├── about.module.scss │ │ │ ├── about.tsx │ │ │ └── index.ts │ │ ├── change-password │ │ │ ├── change-password.module.scss │ │ │ ├── change-password.tsx │ │ │ └── index.ts │ │ ├── error │ │ │ ├── error.tsx │ │ │ └── index.ts │ │ ├── forgot-password │ │ │ ├── forgot-password.module.scss │ │ │ ├── forgot-password.tsx │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── login │ │ │ ├── index.ts │ │ │ ├── login.module.scss │ │ │ └── login.tsx │ │ ├── mfa │ │ │ ├── index.ts │ │ │ ├── mfa.module.scss │ │ │ └── mfa.tsx │ │ ├── reset-password │ │ │ ├── index.ts │ │ │ ├── reset-password.tsx │ │ │ └── utils.ts │ │ ├── root │ │ │ ├── index.ts │ │ │ └── root.tsx │ │ ├── routes.tsx │ │ ├── shortcuts │ │ │ ├── index.ts │ │ │ ├── shortcuts.module.scss │ │ │ └── shortcuts.tsx │ │ ├── swagger │ │ │ ├── index.ts │ │ │ ├── swagger.module.scss │ │ │ └── swagger.tsx │ │ ├── system │ │ │ ├── index.ts │ │ │ ├── system.module.scss │ │ │ └── system.tsx │ │ └── view │ │ │ ├── index.ts │ │ │ └── view.tsx │ ├── services │ │ ├── client │ │ │ ├── client.ts │ │ │ ├── data-store.ts │ │ │ ├── data-utils.ts │ │ │ ├── data.test.ts │ │ │ ├── data.ts │ │ │ ├── data.types.ts │ │ │ ├── i18n.ts │ │ │ ├── l10n.ts │ │ │ ├── meta-cache.ts │ │ │ ├── meta-utils.ts │ │ │ ├── meta.test.ts │ │ │ ├── meta.ts │ │ │ ├── meta.types.ts │ │ │ ├── mfa.ts │ │ │ ├── mock │ │ │ │ ├── data │ │ │ │ │ ├── actions │ │ │ │ │ │ ├── calculate-amount.json │ │ │ │ │ │ ├── contact.all.json │ │ │ │ │ │ ├── sale.orders.json │ │ │ │ │ │ └── sale.product.json │ │ │ │ │ ├── app │ │ │ │ │ │ ├── info.json │ │ │ │ │ │ ├── menu-all.json │ │ │ │ │ │ ├── menu-fav.json │ │ │ │ │ │ └── menu-quick.json │ │ │ │ │ ├── fields │ │ │ │ │ │ ├── Address.json │ │ │ │ │ │ ├── Circle.json │ │ │ │ │ │ ├── Contact.json │ │ │ │ │ │ ├── Country.json │ │ │ │ │ │ ├── Email.json │ │ │ │ │ │ ├── Group.json │ │ │ │ │ │ ├── MetaAction.json │ │ │ │ │ │ ├── MetaMenu.json │ │ │ │ │ │ ├── MetaPermission.json │ │ │ │ │ │ ├── MetaPermissionRule.json │ │ │ │ │ │ ├── Order.json │ │ │ │ │ │ ├── OrderLine.json │ │ │ │ │ │ ├── Permission.json │ │ │ │ │ │ ├── Phone.json │ │ │ │ │ │ ├── Product.json │ │ │ │ │ │ ├── ProductCategory.json │ │ │ │ │ │ ├── Role.json │ │ │ │ │ │ ├── Tax.json │ │ │ │ │ │ ├── Title.json │ │ │ │ │ │ ├── User.json │ │ │ │ │ │ └── ViewCustomizationPermission.json │ │ │ │ │ ├── filters │ │ │ │ │ │ └── filter-sales.json │ │ │ │ │ ├── records │ │ │ │ │ │ ├── Address.json │ │ │ │ │ │ ├── Circle.json │ │ │ │ │ │ ├── Company.json │ │ │ │ │ │ ├── Contact.json │ │ │ │ │ │ ├── Country.json │ │ │ │ │ │ ├── Group.json │ │ │ │ │ │ ├── Order.json │ │ │ │ │ │ ├── OrderLine.json │ │ │ │ │ │ ├── Permission.json │ │ │ │ │ │ ├── Product.json │ │ │ │ │ │ ├── ProductCategory.json │ │ │ │ │ │ ├── Role.json │ │ │ │ │ │ ├── Tax.json │ │ │ │ │ │ ├── Title.json │ │ │ │ │ │ └── User.json │ │ │ │ │ └── views │ │ │ │ │ │ ├── cards │ │ │ │ │ │ └── Contact.json │ │ │ │ │ │ ├── form │ │ │ │ │ │ ├── Address.json │ │ │ │ │ │ ├── Circle.json │ │ │ │ │ │ ├── Contact.json │ │ │ │ │ │ ├── Country.json │ │ │ │ │ │ ├── Group.json │ │ │ │ │ │ ├── Order.json │ │ │ │ │ │ ├── OrderLine.json │ │ │ │ │ │ ├── Permission.json │ │ │ │ │ │ ├── Product.json │ │ │ │ │ │ ├── Role.json │ │ │ │ │ │ ├── Tax.json │ │ │ │ │ │ ├── Title.json │ │ │ │ │ │ └── User.json │ │ │ │ │ │ └── grid │ │ │ │ │ │ ├── Address.json │ │ │ │ │ │ ├── Circle.json │ │ │ │ │ │ ├── Contact.json │ │ │ │ │ │ ├── Country.json │ │ │ │ │ │ ├── Group.json │ │ │ │ │ │ ├── Order.json │ │ │ │ │ │ ├── OrderLine.json │ │ │ │ │ │ ├── Permission.json │ │ │ │ │ │ ├── Product.json │ │ │ │ │ │ ├── Role.json │ │ │ │ │ │ ├── Tax.json │ │ │ │ │ │ ├── Title.json │ │ │ │ │ │ └── User.json │ │ │ │ ├── fetcher.ts │ │ │ │ └── setup.ts │ │ │ ├── reject.tsx │ │ │ ├── session.test.ts │ │ │ ├── session.ts │ │ │ └── socket.ts │ │ └── http │ │ │ ├── http-fetch.ts │ │ │ ├── http.test.ts │ │ │ ├── http.ts │ │ │ └── index.ts │ ├── store │ │ ├── index.ts │ │ └── store.ts │ ├── styles │ │ ├── common.module.scss │ │ ├── common.ts │ │ ├── common │ │ │ └── _responsive.scss │ │ ├── global.scss │ │ ├── global │ │ │ ├── _scrollbar.scss │ │ │ └── _vars.scss │ │ ├── legacy.module.scss │ │ ├── legacy.ts │ │ └── legacy │ │ │ ├── _alert.scss │ │ │ ├── _badge.scss │ │ │ ├── _bootstrap.scss │ │ │ ├── _btn.scss │ │ │ ├── _colors.module.scss │ │ │ ├── _colors.scss │ │ │ ├── _extra.scss │ │ │ ├── _label.scss │ │ │ └── _styles.scss │ ├── test-setup.ts │ ├── utils │ │ ├── app-settings.ts │ │ ├── arrays.test.ts │ │ ├── arrays.ts │ │ ├── atoms.ts │ │ ├── cache.ts │ │ ├── convert.ts │ │ ├── data-record.ts │ │ ├── date.ts │ │ ├── device.ts │ │ ├── download.ts │ │ ├── files.ts │ │ ├── format.ts │ │ ├── globals.ts │ │ ├── names.ts │ │ ├── objects.test.ts │ │ ├── objects.ts │ │ ├── sanitize.ts │ │ ├── schema.ts │ │ ├── sort.ts │ │ ├── types.ts │ │ ├── unique-id.ts │ │ └── validate.ts │ ├── view-containers │ │ ├── action │ │ │ ├── executor.ts │ │ │ ├── handler.ts │ │ │ ├── index.ts │ │ │ ├── queue.ts │ │ │ └── types.ts │ │ ├── advance-search │ │ │ ├── advance-search.module.scss │ │ │ ├── advance-search.tsx │ │ │ ├── editor │ │ │ │ ├── components.module.css │ │ │ │ ├── components.tsx │ │ │ │ ├── criteria.module.scss │ │ │ │ ├── criteria.tsx │ │ │ │ ├── editor.module.scss │ │ │ │ ├── editor.tsx │ │ │ │ ├── index.ts │ │ │ │ └── utils.ts │ │ │ ├── filter-list.tsx │ │ │ ├── index.ts │ │ │ ├── types.ts │ │ │ └── utils.ts │ │ ├── view-dashlet │ │ │ ├── handler.ts │ │ │ ├── index.ts │ │ │ └── view-dashlet.tsx │ │ ├── view-popup │ │ │ ├── handler.ts │ │ │ ├── index.ts │ │ │ ├── popups.tsx │ │ │ ├── view-popper.module.scss │ │ │ ├── view-popper.tsx │ │ │ ├── view-popup.module.scss │ │ │ └── view-popup.tsx │ │ ├── view-toolbar │ │ │ ├── index.ts │ │ │ ├── view-toolbar.module.scss │ │ │ └── view-toolbar.tsx │ │ └── views │ │ │ ├── index.ts │ │ │ ├── scope.ts │ │ │ └── views.tsx │ ├── views │ │ ├── calendar │ │ │ ├── calendar.module.scss │ │ │ ├── calendar.tsx │ │ │ ├── colors.ts │ │ │ ├── event.module.scss │ │ │ ├── filters.tsx │ │ │ ├── index.ts │ │ │ ├── popover.module.scss │ │ │ ├── popover.tsx │ │ │ └── utils.tsx │ │ ├── cards │ │ │ ├── card-template.tsx │ │ │ ├── card.module.scss │ │ │ ├── card.tsx │ │ │ ├── cards.module.scss │ │ │ ├── cards.tsx │ │ │ ├── index.ts │ │ │ └── use-card-classname.ts │ │ ├── chart │ │ │ ├── builder │ │ │ │ ├── chart.module.scss │ │ │ │ ├── chart.tsx │ │ │ │ ├── echarts.module.scss │ │ │ │ ├── echarts.tsx │ │ │ │ ├── hooks.ts │ │ │ │ ├── index.ts │ │ │ │ ├── types.ts │ │ │ │ └── utils.ts │ │ │ ├── chart.module.scss │ │ │ ├── chart.tsx │ │ │ ├── index.ts │ │ │ └── widgets │ │ │ │ ├── area │ │ │ │ └── index.ts │ │ │ │ ├── bar │ │ │ │ ├── bar-group.module.scss │ │ │ │ ├── bar-group.tsx │ │ │ │ ├── bar.tsx │ │ │ │ └── index.ts │ │ │ │ ├── donut │ │ │ │ ├── donut.tsx │ │ │ │ └── index.ts │ │ │ │ ├── funnel │ │ │ │ ├── funnel.tsx │ │ │ │ └── index.ts │ │ │ │ ├── gauge │ │ │ │ ├── gauge.tsx │ │ │ │ └── index.ts │ │ │ │ ├── hbar │ │ │ │ ├── hbar.tsx │ │ │ │ └── index.ts │ │ │ │ ├── line │ │ │ │ ├── index.ts │ │ │ │ └── line.tsx │ │ │ │ ├── pie │ │ │ │ ├── index.ts │ │ │ │ └── pie.tsx │ │ │ │ ├── radar │ │ │ │ ├── index.ts │ │ │ │ └── radar.tsx │ │ │ │ ├── scatter │ │ │ │ ├── index.ts │ │ │ │ └── scatter.tsx │ │ │ │ └── text │ │ │ │ ├── index.ts │ │ │ │ └── text.tsx │ │ ├── custom │ │ │ ├── custom.module.scss │ │ │ ├── custom.tsx │ │ │ ├── index.ts │ │ │ └── widgets │ │ │ │ ├── report-box │ │ │ │ ├── index.ts │ │ │ │ └── report-box.tsx │ │ │ │ └── report-table │ │ │ │ ├── index.ts │ │ │ │ └── report-table.tsx │ │ ├── dashboard │ │ │ ├── dashboard-search.module.scss │ │ │ ├── dashboard-search.tsx │ │ │ ├── dashboard.module.scss │ │ │ ├── dashboard.tsx │ │ │ ├── index.ts │ │ │ ├── react-grid-layout.css │ │ │ └── scope.ts │ │ ├── dms │ │ │ ├── builder │ │ │ │ ├── dms-details.module.scss │ │ │ │ ├── dms-details.tsx │ │ │ │ ├── dms-drag-layer.module.scss │ │ │ │ ├── dms-drag-layer.tsx │ │ │ │ ├── dms-overlay.module.scss │ │ │ │ ├── dms-overlay.tsx │ │ │ │ ├── dms-tree.module.scss │ │ │ │ ├── dms-tree.tsx │ │ │ │ ├── dms-upload.module.scss │ │ │ │ ├── dms-upload.tsx │ │ │ │ ├── handler.ts │ │ │ │ ├── hooks.tsx │ │ │ │ ├── index.ts │ │ │ │ ├── scope.ts │ │ │ │ ├── types.ts │ │ │ │ └── utils.ts │ │ │ ├── dms.module.scss │ │ │ ├── dms.tsx │ │ │ └── index.ts │ │ ├── form │ │ │ ├── builder │ │ │ │ ├── atoms.ts │ │ │ │ ├── dotted.tsx │ │ │ │ ├── form-editors.module.scss │ │ │ │ ├── form-editors.tsx │ │ │ │ ├── form-field.module.css │ │ │ │ ├── form-field.tsx │ │ │ │ ├── form-layouts.module.scss │ │ │ │ ├── form-layouts.tsx │ │ │ │ ├── form-providers.tsx │ │ │ │ ├── form-viewers.module.scss │ │ │ │ ├── form-viewers.tsx │ │ │ │ ├── form-widget.tsx │ │ │ │ ├── form.tsx │ │ │ │ ├── hooks.ts │ │ │ │ ├── index.ts │ │ │ │ ├── scope.ts │ │ │ │ ├── types.ts │ │ │ │ └── utils.ts │ │ │ ├── form.module.scss │ │ │ ├── form.tsx │ │ │ ├── index.ts │ │ │ └── widgets │ │ │ │ ├── barcode │ │ │ │ ├── barcode.tsx │ │ │ │ └── index.ts │ │ │ │ ├── binary-link │ │ │ │ ├── binary-link.module.scss │ │ │ │ ├── binary-link.tsx │ │ │ │ └── index.ts │ │ │ │ ├── binary │ │ │ │ ├── binary.tsx │ │ │ │ └── index.ts │ │ │ │ ├── boolean-radio │ │ │ │ ├── boolean-radio.tsx │ │ │ │ └── index.ts │ │ │ │ ├── boolean-select │ │ │ │ ├── boolean-select.tsx │ │ │ │ └── index.ts │ │ │ │ ├── boolean-switch │ │ │ │ ├── boolean-switch.tsx │ │ │ │ └── index.ts │ │ │ │ ├── boolean │ │ │ │ ├── boolean.module.scss │ │ │ │ ├── boolean.tsx │ │ │ │ └── index.ts │ │ │ │ ├── button-group │ │ │ │ ├── button-group.module.scss │ │ │ │ ├── button-group.tsx │ │ │ │ └── index.ts │ │ │ │ ├── button │ │ │ │ ├── button.module.scss │ │ │ │ ├── button.tsx │ │ │ │ ├── hooks.ts │ │ │ │ └── index.ts │ │ │ │ ├── checkbox-select │ │ │ │ └── index.ts │ │ │ │ ├── code-editor │ │ │ │ ├── code-editor.module.scss │ │ │ │ ├── code-editor.tsx │ │ │ │ └── index.ts │ │ │ │ ├── collaboration │ │ │ │ ├── collaboration.module.scss │ │ │ │ ├── collaboration.service.ts │ │ │ │ ├── collaboration.tsx │ │ │ │ └── index.ts │ │ │ │ ├── color-picker │ │ │ │ ├── color-picker.module.scss │ │ │ │ ├── color-picker.tsx │ │ │ │ └── index.ts │ │ │ │ ├── dashlet │ │ │ │ ├── dashlet-actions.module.scss │ │ │ │ ├── dashlet-actions.tsx │ │ │ │ ├── dashlet.module.scss │ │ │ │ ├── dashlet.tsx │ │ │ │ └── index.ts │ │ │ │ ├── date │ │ │ │ ├── date-input.tsx │ │ │ │ ├── date.tsx │ │ │ │ ├── index.ts │ │ │ │ ├── mask-input.tsx │ │ │ │ ├── picker.scss │ │ │ │ ├── picker.tsx │ │ │ │ ├── time-input.tsx │ │ │ │ └── time-unit.module.scss │ │ │ │ ├── datetime │ │ │ │ └── index.ts │ │ │ │ ├── decimal │ │ │ │ ├── decimal.module.scss │ │ │ │ ├── decimal.tsx │ │ │ │ ├── hooks.ts │ │ │ │ └── index.ts │ │ │ │ ├── drawing │ │ │ │ ├── drawing-canvas.module.scss │ │ │ │ ├── drawing-canvas.tsx │ │ │ │ ├── drawing.module.scss │ │ │ │ ├── drawing.tsx │ │ │ │ └── index.ts │ │ │ │ ├── duration │ │ │ │ ├── duration.tsx │ │ │ │ └── index.ts │ │ │ │ ├── email │ │ │ │ ├── email.module.scss │ │ │ │ ├── email.tsx │ │ │ │ └── index.ts │ │ │ │ ├── eval-ref-select │ │ │ │ ├── eval-ref-select.tsx │ │ │ │ └── index.ts │ │ │ │ ├── help │ │ │ │ ├── help.module.scss │ │ │ │ ├── help.tsx │ │ │ │ └── index.ts │ │ │ │ ├── html │ │ │ │ ├── editor.jsx │ │ │ │ ├── editor.scss │ │ │ │ ├── html.module.scss │ │ │ │ ├── html.tsx │ │ │ │ ├── index.ts │ │ │ │ ├── popup │ │ │ │ │ ├── base.jsx │ │ │ │ │ ├── color-palette.jsx │ │ │ │ │ ├── create-image.jsx │ │ │ │ │ ├── create-link.jsx │ │ │ │ │ ├── dropdown.jsx │ │ │ │ │ └── index.js │ │ │ │ ├── utils.jsx │ │ │ │ ├── viewer.jsx │ │ │ │ └── viewer.module.css │ │ │ │ ├── image-link │ │ │ │ ├── image-link.module.scss │ │ │ │ ├── image-link.tsx │ │ │ │ └── index.ts │ │ │ │ ├── image-select │ │ │ │ ├── image-select-value.tsx │ │ │ │ ├── image-select.module.scss │ │ │ │ ├── image-select.tsx │ │ │ │ └── index.ts │ │ │ │ ├── image │ │ │ │ ├── image.module.scss │ │ │ │ ├── image.tsx │ │ │ │ ├── index.ts │ │ │ │ └── utils.ts │ │ │ │ ├── index.ts │ │ │ │ ├── info-button │ │ │ │ ├── index.ts │ │ │ │ ├── info-button.module.scss │ │ │ │ └── info-button.tsx │ │ │ │ ├── inline-checkbox │ │ │ │ └── index.ts │ │ │ │ ├── integer │ │ │ │ └── index.ts │ │ │ │ ├── json-raw │ │ │ │ ├── index.ts │ │ │ │ ├── json-raw.module.scss │ │ │ │ └── json-raw.tsx │ │ │ │ ├── label │ │ │ │ ├── index.ts │ │ │ │ └── label.tsx │ │ │ │ ├── long │ │ │ │ └── index.ts │ │ │ │ ├── mail-followers │ │ │ │ ├── index.ts │ │ │ │ ├── mail-followers.module.scss │ │ │ │ ├── mail-followers.tsx │ │ │ │ └── utils.ts │ │ │ │ ├── mail-messages │ │ │ │ ├── avatar │ │ │ │ │ ├── avatar.module.scss │ │ │ │ │ ├── avatar.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── utils.ts │ │ │ │ ├── index.ts │ │ │ │ ├── mail-messages.tsx │ │ │ │ ├── message │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── message-files.module.scss │ │ │ │ │ ├── message-files.tsx │ │ │ │ │ ├── message-form.tsx │ │ │ │ │ ├── message-input.module.scss │ │ │ │ │ ├── message-input.tsx │ │ │ │ │ ├── message-menu.module.scss │ │ │ │ │ ├── message-menu.tsx │ │ │ │ │ ├── message-track.module.scss │ │ │ │ │ ├── message-track.tsx │ │ │ │ │ ├── message.module.scss │ │ │ │ │ ├── message.tsx │ │ │ │ │ ├── types.ts │ │ │ │ │ └── utils.ts │ │ │ │ └── utils.ts │ │ │ │ ├── many-to-many │ │ │ │ └── index.ts │ │ │ │ ├── many-to-one │ │ │ │ ├── index.ts │ │ │ │ ├── many-to-one.module.css │ │ │ │ ├── many-to-one.tsx │ │ │ │ └── utils.ts │ │ │ │ ├── master-detail │ │ │ │ ├── index.ts │ │ │ │ └── master-detail.tsx │ │ │ │ ├── multi-select │ │ │ │ ├── index.ts │ │ │ │ ├── multi-select.module.scss │ │ │ │ └── multi-select.tsx │ │ │ │ ├── nav-select │ │ │ │ ├── index.ts │ │ │ │ ├── nav-select.module.scss │ │ │ │ └── nav-select.tsx │ │ │ │ ├── one-to-many │ │ │ │ ├── index.ts │ │ │ │ ├── one-to-many.details.module.scss │ │ │ │ ├── one-to-many.details.tsx │ │ │ │ ├── one-to-many.edit.module.scss │ │ │ │ ├── one-to-many.edit.tsx │ │ │ │ ├── one-to-many.module.scss │ │ │ │ └── one-to-many.tsx │ │ │ │ ├── one-to-one │ │ │ │ └── index.ts │ │ │ │ ├── panel-json │ │ │ │ ├── index.ts │ │ │ │ └── panel-json.tsx │ │ │ │ ├── panel-mail │ │ │ │ ├── index.ts │ │ │ │ └── panel-mail.tsx │ │ │ │ ├── panel-related │ │ │ │ ├── index.ts │ │ │ │ └── panel-related.tsx │ │ │ │ ├── panel-stack │ │ │ │ ├── index.ts │ │ │ │ └── panel-stack.tsx │ │ │ │ ├── panel-tabs │ │ │ │ ├── index.ts │ │ │ │ ├── panel-tabs.module.scss │ │ │ │ └── panel-tabs.tsx │ │ │ │ ├── panel │ │ │ │ ├── index.ts │ │ │ │ ├── panel.module.scss │ │ │ │ └── panel.tsx │ │ │ │ ├── password │ │ │ │ ├── index.ts │ │ │ │ ├── password.module.scss │ │ │ │ └── password.tsx │ │ │ │ ├── phone │ │ │ │ ├── flags.module.scss │ │ │ │ ├── index.ts │ │ │ │ ├── phone.module.scss │ │ │ │ ├── phone.tsx │ │ │ │ └── utils.ts │ │ │ │ ├── progress │ │ │ │ ├── index.ts │ │ │ │ ├── progress.module.scss │ │ │ │ └── progress.tsx │ │ │ │ ├── qr-code │ │ │ │ ├── index.ts │ │ │ │ └── qr-code.tsx │ │ │ │ ├── radio-select │ │ │ │ ├── index.ts │ │ │ │ ├── radio-select.module.scss │ │ │ │ └── radio-select.tsx │ │ │ │ ├── rating │ │ │ │ ├── index.ts │ │ │ │ └── rating.tsx │ │ │ │ ├── ref-select │ │ │ │ ├── index.ts │ │ │ │ └── ref-select.tsx │ │ │ │ ├── ref-text │ │ │ │ ├── index.ts │ │ │ │ └── ref-text.tsx │ │ │ │ ├── relative-time │ │ │ │ ├── index.ts │ │ │ │ └── relative-time.tsx │ │ │ │ ├── selection │ │ │ │ ├── hooks.ts │ │ │ │ ├── index.ts │ │ │ │ ├── selection.module.scss │ │ │ │ ├── selection.tsx │ │ │ │ └── utils.ts │ │ │ │ ├── separator │ │ │ │ ├── index.ts │ │ │ │ └── separator.tsx │ │ │ │ ├── single-select │ │ │ │ ├── index.ts │ │ │ │ └── single-select.tsx │ │ │ │ ├── slider │ │ │ │ ├── index.ts │ │ │ │ ├── slider-tooltip.tsx │ │ │ │ ├── slider.module.scss │ │ │ │ └── slider.tsx │ │ │ │ ├── spacer │ │ │ │ ├── index.ts │ │ │ │ └── spacer.tsx │ │ │ │ ├── static │ │ │ │ ├── index.ts │ │ │ │ └── static.tsx │ │ │ │ ├── stepper │ │ │ │ ├── index.ts │ │ │ │ ├── step.module.scss │ │ │ │ ├── step.tsx │ │ │ │ └── stepper.tsx │ │ │ │ ├── string │ │ │ │ ├── index.ts │ │ │ │ ├── string.module.scss │ │ │ │ ├── string.tsx │ │ │ │ ├── translatable.module.scss │ │ │ │ ├── translatable.tsx │ │ │ │ └── viewer.tsx │ │ │ │ ├── suggest-box │ │ │ │ ├── index.ts │ │ │ │ └── suggest-box.tsx │ │ │ │ ├── switch-select │ │ │ │ ├── index.ts │ │ │ │ ├── switch-select.module.scss │ │ │ │ └── switch-select.tsx │ │ │ │ ├── tag-select │ │ │ │ └── index.ts │ │ │ │ ├── tag │ │ │ │ ├── index.ts │ │ │ │ └── tag.tsx │ │ │ │ ├── tags │ │ │ │ ├── index.ts │ │ │ │ └── tags.tsx │ │ │ │ ├── text │ │ │ │ ├── index.ts │ │ │ │ ├── text.edit.module.css │ │ │ │ ├── text.edit.tsx │ │ │ │ ├── text.module.scss │ │ │ │ └── text.tsx │ │ │ │ ├── theme-builder │ │ │ │ ├── index.ts │ │ │ │ └── theme-builder.tsx │ │ │ │ ├── theme-select │ │ │ │ ├── index.ts │ │ │ │ └── theme-select.tsx │ │ │ │ ├── time │ │ │ │ ├── index.ts │ │ │ │ └── time.tsx │ │ │ │ ├── toggle │ │ │ │ ├── index.ts │ │ │ │ ├── toggle.module.scss │ │ │ │ └── toggle.tsx │ │ │ │ ├── url │ │ │ │ ├── index.ts │ │ │ │ ├── url.module.scss │ │ │ │ ├── url.tsx │ │ │ │ └── utils.ts │ │ │ │ ├── widget-select │ │ │ │ ├── index.ts │ │ │ │ └── widget-select.tsx │ │ │ │ └── wkf-status │ │ │ │ ├── index.ts │ │ │ │ ├── wkf-status.module.css │ │ │ │ └── wkf-status.tsx │ │ ├── gantt │ │ │ ├── gantt.module.scss │ │ │ ├── gantt.tsx │ │ │ ├── index.ts │ │ │ └── utils.ts │ │ ├── grid │ │ │ ├── builder │ │ │ │ ├── customize-selector.tsx │ │ │ │ ├── customize.module.scss │ │ │ │ ├── customize.tsx │ │ │ │ ├── details.module.scss │ │ │ │ ├── details.tsx │ │ │ │ ├── expandable.module.scss │ │ │ │ ├── expandable.tsx │ │ │ │ ├── grid.tsx │ │ │ │ ├── index.ts │ │ │ │ ├── mass-update.module.scss │ │ │ │ ├── mass-update.tsx │ │ │ │ ├── scope.tsx │ │ │ │ ├── types.ts │ │ │ │ └── utils.ts │ │ │ ├── grid.module.scss │ │ │ ├── grid.tsx │ │ │ ├── index.ts │ │ │ ├── renderers │ │ │ │ ├── cell │ │ │ │ │ ├── cell.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── form │ │ │ │ │ ├── form.module.scss │ │ │ │ │ ├── form.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── row │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── row.module.css │ │ │ │ │ └── row.tsx │ │ │ │ └── search │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── search-column.module.scss │ │ │ │ │ ├── search-column.tsx │ │ │ │ │ ├── types.ts │ │ │ │ │ └── utils.ts │ │ │ └── widgets │ │ │ │ ├── binary-link │ │ │ │ ├── binary-link.tsx │ │ │ │ └── index.ts │ │ │ │ ├── boolean │ │ │ │ ├── boolean.module.scss │ │ │ │ ├── boolean.tsx │ │ │ │ └── index.ts │ │ │ │ ├── button │ │ │ │ ├── button.module.scss │ │ │ │ ├── button.tsx │ │ │ │ ├── index.ts │ │ │ │ └── utils.ts │ │ │ │ ├── color-picker │ │ │ │ ├── color-picker.tsx │ │ │ │ └── index.ts │ │ │ │ ├── delete-icon │ │ │ │ ├── delete-icon.tsx │ │ │ │ └── index.ts │ │ │ │ ├── edit-icon │ │ │ │ ├── edit-icon.tsx │ │ │ │ └── index.ts │ │ │ │ ├── email │ │ │ │ ├── email.tsx │ │ │ │ └── index.ts │ │ │ │ ├── html │ │ │ │ ├── html.tsx │ │ │ │ └── index.ts │ │ │ │ ├── icon │ │ │ │ ├── icon.tsx │ │ │ │ └── index.ts │ │ │ │ ├── image-select │ │ │ │ ├── image-select.tsx │ │ │ │ └── index.ts │ │ │ │ ├── image │ │ │ │ ├── image.module.css │ │ │ │ ├── image.tsx │ │ │ │ ├── index.ts │ │ │ │ └── utils.tsx │ │ │ │ ├── index.ts │ │ │ │ ├── many-to-one │ │ │ │ ├── index.ts │ │ │ │ └── many-to-one.tsx │ │ │ │ ├── multi-select │ │ │ │ ├── index.ts │ │ │ │ └── multi-select.tsx │ │ │ │ ├── new-icon │ │ │ │ ├── index.ts │ │ │ │ └── new-icon.tsx │ │ │ │ ├── phone │ │ │ │ ├── index.ts │ │ │ │ ├── phone.module.scss │ │ │ │ └── phone.tsx │ │ │ │ ├── progress │ │ │ │ ├── index.ts │ │ │ │ └── progress.tsx │ │ │ │ ├── rating │ │ │ │ ├── index.ts │ │ │ │ └── rating.tsx │ │ │ │ ├── single-select │ │ │ │ ├── index.ts │ │ │ │ ├── single-select-value.tsx │ │ │ │ └── single-select.tsx │ │ │ │ ├── tag-select │ │ │ │ └── index.ts │ │ │ │ ├── tag │ │ │ │ └── index.ts │ │ │ │ ├── tags │ │ │ │ ├── index.ts │ │ │ │ └── tags.tsx │ │ │ │ └── url │ │ │ │ ├── index.ts │ │ │ │ └── url.tsx │ │ ├── html │ │ │ ├── html.module.scss │ │ │ ├── html.tsx │ │ │ └── index.ts │ │ ├── kanban │ │ │ ├── index.ts │ │ │ ├── kanban-board.module.scss │ │ │ ├── kanban-board.tsx │ │ │ ├── kanban.module.scss │ │ │ ├── kanban.tsx │ │ │ ├── types.ts │ │ │ └── utils.ts │ │ ├── search │ │ │ ├── index.ts │ │ │ ├── search-objects.module.scss │ │ │ ├── search-objects.tsx │ │ │ ├── search.module.scss │ │ │ ├── search.tsx │ │ │ └── utils.ts │ │ ├── tree │ │ │ ├── hooks.ts │ │ │ ├── index.ts │ │ │ ├── renderers │ │ │ │ ├── node-text │ │ │ │ │ ├── index.ts │ │ │ │ │ └── node-text.tsx │ │ │ │ └── node │ │ │ │ │ ├── index.ts │ │ │ │ │ └── node.tsx │ │ │ ├── tree.module.scss │ │ │ ├── tree.tsx │ │ │ ├── types.ts │ │ │ ├── utils.ts │ │ │ └── widgets │ │ │ │ ├── button │ │ │ │ ├── button.module.scss │ │ │ │ ├── button.tsx │ │ │ │ └── index.ts │ │ │ │ └── image-select │ │ │ │ ├── image-select.tsx │ │ │ │ └── index.ts │ │ └── types.ts │ └── vite-env.d.ts ├── tsconfig.json ├── tsconfig.node.json ├── vite-dev.config.ts ├── vite-staging.config.ts ├── vite.config.ts └── vitest.config.ts ├── axelor-gradle ├── build.gradle └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── axelor │ │ │ └── gradle │ │ │ ├── AxelorExtension.java │ │ │ ├── AxelorPlugin.java │ │ │ ├── AxelorUtils.java │ │ │ ├── ChangelogExtension.java │ │ │ ├── I18nExtension.java │ │ │ ├── support │ │ │ ├── AbstractSupport.java │ │ │ ├── ChangelogSupport.java │ │ │ ├── CliSupport.java │ │ │ ├── DependenciesSupport.java │ │ │ ├── DuplicatedClassSupport.java │ │ │ ├── EclipseSupport.java │ │ │ ├── IdeaSupport.java │ │ │ ├── JavaSupport.java │ │ │ ├── PublishSupport.java │ │ │ ├── TomcatSupport.java │ │ │ └── WarSupport.java │ │ │ └── tasks │ │ │ ├── AbstractEncryptTask.java │ │ │ ├── AbstractRunTask.java │ │ │ ├── CheckDuplicateClassesTask.java │ │ │ ├── CopyWebapp.java │ │ │ ├── EncryptFileTask.java │ │ │ ├── EncryptTextTask.java │ │ │ ├── GenerateChangelog.java │ │ │ ├── GenerateCode.java │ │ │ ├── I18nTask.java │ │ │ ├── TomcatRun.java │ │ │ └── UpdateVersion.java │ └── resources │ │ └── com │ │ └── axelor │ │ └── app │ │ └── README.txt │ └── test │ └── resources │ └── logback.xml ├── axelor-test ├── build.gradle └── src │ ├── main │ └── java │ │ └── com │ │ └── axelor │ │ └── test │ │ ├── GuiceExtension.java │ │ ├── GuiceJunit5Test.java │ │ ├── GuiceModules.java │ │ ├── WebServer.java │ │ └── fixture │ │ ├── Fixture.java │ │ └── FixtureMapper.java │ └── test │ ├── java │ └── com │ │ └── axelor │ │ └── test │ │ ├── BoundTest.java │ │ ├── FixtureTest.java │ │ └── InjectedTest.java │ └── resources │ ├── fixture-test.yaml │ └── logback.xml ├── axelor-tomcat ├── build.gradle └── src │ └── main │ └── java │ └── com │ └── axelor │ ├── app │ └── Launcher.java │ └── tomcat │ ├── TomcatOptions.java │ ├── TomcatRunner.java │ └── TomcatServer.java ├── axelor-tools ├── build.gradle └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── axelor │ │ │ └── tools │ │ │ ├── changelog │ │ │ ├── ChangelogEntry.java │ │ │ ├── ChangelogEntryConstants.java │ │ │ ├── ChangelogEntryParser.java │ │ │ ├── Release.java │ │ │ ├── ReleaseGenerator.java │ │ │ └── ReleaseProcessor.java │ │ │ ├── code │ │ │ ├── JavaAnnotable.java │ │ │ ├── JavaAnnotation.java │ │ │ ├── JavaCode.java │ │ │ ├── JavaCodeUtils.java │ │ │ ├── JavaContext.java │ │ │ ├── JavaDoc.java │ │ │ ├── JavaElement.java │ │ │ ├── JavaEnumConstant.java │ │ │ ├── JavaField.java │ │ │ ├── JavaFile.java │ │ │ ├── JavaMethod.java │ │ │ ├── JavaParam.java │ │ │ ├── JavaType.java │ │ │ ├── JavaWriter.java │ │ │ └── entity │ │ │ │ ├── EntityGenerator.java │ │ │ │ ├── EntityParser.java │ │ │ │ └── model │ │ │ │ ├── BaseType.java │ │ │ │ ├── DomainModels.java │ │ │ │ ├── Entity.java │ │ │ │ ├── EntityListener.java │ │ │ │ ├── EnumItem.java │ │ │ │ ├── EnumType.java │ │ │ │ ├── Finder.java │ │ │ │ ├── Index.java │ │ │ │ ├── Namespace.java │ │ │ │ ├── Naming.java │ │ │ │ ├── Overridable.java │ │ │ │ ├── Property.java │ │ │ │ ├── PropertyAttribute.java │ │ │ │ ├── PropertyType.java │ │ │ │ ├── Track.java │ │ │ │ ├── TrackEvent.java │ │ │ │ ├── TrackField.java │ │ │ │ ├── TrackMessage.java │ │ │ │ ├── TrackTag.java │ │ │ │ ├── UniqueConstraint.java │ │ │ │ ├── Utils.java │ │ │ │ └── package-info.java │ │ │ ├── encryption │ │ │ └── StringEncryption.java │ │ │ └── i18n │ │ │ └── I18nExtractor.java │ └── resources │ │ └── com │ │ └── axelor │ │ └── tools │ │ └── code │ │ └── entity │ │ └── model │ │ └── jaxb.properties │ └── test │ ├── java │ └── com │ │ └── axelor │ │ └── tools │ │ ├── changelog │ │ └── ChangelogTest.java │ │ ├── code │ │ ├── TestJavaAnnotation.java │ │ ├── TestJavaClass.java │ │ ├── TestJavaCode.java │ │ ├── TestJavaContext.java │ │ ├── TestJavaEnum.java │ │ ├── TestJavaField.java │ │ ├── TestJavaInterface.java │ │ ├── TestJavaMethod.java │ │ ├── TestMergeFields.java │ │ └── entity │ │ │ └── EntityGeneratorTest.java │ │ └── i18n │ │ └── I18nExtractorTest.java │ └── resources │ ├── changelogs │ ├── EXPECTED_CHANGELOG.md │ └── entries │ │ ├── security.yml │ │ ├── simple.yml │ │ ├── withCode.yml │ │ └── withDescription.yml │ ├── domains │ ├── User.xml │ ├── domains.xml │ └── namespace.xml │ ├── logback.xml │ ├── merging │ ├── module1 │ │ ├── MyEntity.xml │ │ ├── MyName.xml │ │ └── MyOtherName.xml │ └── module2 │ │ ├── MyEntityOverride.xml │ │ ├── MyName.xml │ │ └── MyOtherName.xml │ └── search │ └── User.xml ├── axelor-web ├── build.gradle └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── axelor │ │ │ └── web │ │ │ ├── AppContextListener.java │ │ │ ├── AppServletModule.java │ │ │ ├── AppStartup.java │ │ │ ├── ObjectMapperResolver.java │ │ │ ├── openapi │ │ │ ├── AxelorOpenApiScanner.java │ │ │ └── OpenApiModule.java │ │ │ ├── service │ │ │ ├── AboutService.java │ │ │ ├── AbstractService.java │ │ │ ├── ActionService.java │ │ │ ├── DmsService.java │ │ │ ├── FileService.java │ │ │ ├── InfoResource.java │ │ │ ├── InfoService.java │ │ │ ├── InputPartFilter.java │ │ │ ├── MFAEmailService.java │ │ │ ├── MaintenanceService.java │ │ │ ├── MaintenanceServiceNever.java │ │ │ ├── MessageService.java │ │ │ ├── PasswordResetResource.java │ │ │ ├── ResourceService.java │ │ │ ├── RestService.java │ │ │ ├── SearchService.java │ │ │ └── ViewService.java │ │ │ ├── servlet │ │ │ ├── CacheAssetsFilter.java │ │ │ ├── CorsFilter.java │ │ │ ├── I18nServlet.java │ │ │ ├── MaintenanceFilter.java │ │ │ ├── NoCacheFilter.java │ │ │ └── ProxyFilter.java │ │ │ └── socket │ │ │ ├── Channel.java │ │ │ ├── Message.java │ │ │ ├── MessageDecoder.java │ │ │ ├── MessageEncoder.java │ │ │ ├── MessageType.java │ │ │ ├── WebSocketEndpoint.java │ │ │ ├── channels │ │ │ └── TagsChannel.java │ │ │ └── inject │ │ │ ├── WebSocketConfigurator.java │ │ │ ├── WebSocketModule.java │ │ │ ├── WebSocketSecurity.java │ │ │ └── WebSocketSecurityInterceptor.java │ ├── resources │ │ └── i18n │ │ │ ├── custom_fr.csv │ │ │ ├── messages.csv │ │ │ ├── messages_en.csv │ │ │ └── messages_fr.csv │ └── webapp │ │ ├── WEB-INF │ │ └── web.xml │ │ ├── error-503.html │ │ ├── ico │ │ └── favicon.ico │ │ └── img │ │ ├── axelor-dark.png │ │ └── axelor.png │ └── test │ ├── java │ └── com │ │ └── axelor │ │ └── web │ │ ├── AbstractTest.java │ │ ├── OpenAPIScannerTest.java │ │ ├── ResourceTest.java │ │ ├── TestModule.java │ │ ├── WebTestModule.java │ │ └── db │ │ ├── Address.java │ │ ├── Contact.java │ │ ├── Repository.java │ │ └── Title.java │ └── resources │ ├── META-INF │ └── persistence.xml │ ├── axelor-config.properties │ └── logback.xml ├── changelogs ├── README.md └── unreleased │ └── .gitkeep ├── documentation ├── README.md ├── antora-playbook-local.yml ├── antora.yml └── modules │ ├── ROOT │ ├── _attributes.adoc │ ├── nav.adoc │ └── pages │ │ ├── _attributes.adoc │ │ ├── index.adoc │ │ ├── migrations.adoc │ │ ├── migrations │ │ ├── migration-6.0.adoc │ │ ├── migration-6.1.adoc │ │ ├── migration-7.0.adoc │ │ ├── migration-7.1.adoc │ │ ├── migration-7.2.adoc │ │ ├── migration-7.3.adoc │ │ ├── migration-7.4.adoc │ │ └── migration-8.0.adoc │ │ └── news.adoc │ ├── dev-guide │ ├── _attributes.adoc │ ├── assets │ │ └── images │ │ │ ├── collaboration-user-edit.png │ │ │ ├── collaboration-user-idle.png │ │ │ ├── collaboration-user-save.png │ │ │ ├── contextual-search-popup.png │ │ │ ├── contextual-search-result.png │ │ │ ├── custom-fields-form.png │ │ │ ├── custom-fields-grid.png │ │ │ ├── custom-model-form.png │ │ │ ├── custom-model-grid.png │ │ │ ├── custom-models-form.png │ │ │ ├── custom-models-grid.png │ │ │ ├── custom-view-report-box.png │ │ │ ├── custom-view-report-table.png │ │ │ ├── quick-menus.png │ │ │ ├── translation-dialog.png │ │ │ ├── translation-icon.png │ │ │ ├── view-attribute.png │ │ │ └── widgets │ │ │ ├── barcode-2.png │ │ │ ├── barcode-3.png │ │ │ ├── barcode.png │ │ │ ├── binary-link.png │ │ │ ├── binary.png │ │ │ ├── boolean-radio.png │ │ │ ├── boolean-select.png │ │ │ ├── boolean-switch.png │ │ │ ├── boolean.png │ │ │ ├── button-2.png │ │ │ ├── button.png │ │ │ ├── checkbox-select.png │ │ │ ├── code-editor.png │ │ │ ├── color-picker-2.png │ │ │ ├── color-picker.png │ │ │ ├── date-time.png │ │ │ ├── date.png │ │ │ ├── decimal.png │ │ │ ├── drawing-2.png │ │ │ ├── drawing.png │ │ │ ├── duration.png │ │ │ ├── email.png │ │ │ ├── eval-ref-select.png │ │ │ ├── expandable.png │ │ │ ├── help-2.png │ │ │ ├── help-3.png │ │ │ ├── help-4.png │ │ │ ├── help.png │ │ │ ├── html-2.png │ │ │ ├── html.png │ │ │ ├── image-link-2.png │ │ │ ├── image-link.png │ │ │ ├── image-select.png │ │ │ ├── image.png │ │ │ ├── info-button-2.png │ │ │ ├── info-button.png │ │ │ ├── inline-checkbox.png │ │ │ ├── integer.png │ │ │ ├── label.png │ │ │ ├── many-to-one-2.png │ │ │ ├── many-to-one.png │ │ │ ├── master-detail.png │ │ │ ├── multi-select.png │ │ │ ├── nav-select.png │ │ │ ├── one-to-many-2.png │ │ │ ├── one-to-many-3.png │ │ │ ├── one-to-many.png │ │ │ ├── password.png │ │ │ ├── phone.png │ │ │ ├── progress.png │ │ │ ├── qrcode.png │ │ │ ├── radio-select.png │ │ │ ├── rating-2.png │ │ │ ├── rating.png │ │ │ ├── ref-link.png │ │ │ ├── ref-select-2.png │ │ │ ├── ref-select.png │ │ │ ├── ref-text.png │ │ │ ├── relative-time.png │ │ │ ├── select-progress-2.png │ │ │ ├── select-progress.png │ │ │ ├── single-select.png │ │ │ ├── slider-2.png │ │ │ ├── slider.png │ │ │ ├── static.png │ │ │ ├── stepper-2.png │ │ │ ├── stepper.png │ │ │ ├── string.png │ │ │ ├── suggest-box.png │ │ │ ├── switch-select-2.png │ │ │ ├── switch-select.png │ │ │ ├── tag.png │ │ │ ├── tags.png │ │ │ ├── text.png │ │ │ ├── time.png │ │ │ ├── toggle-2.png │ │ │ ├── toggle.png │ │ │ ├── tree-grid.png │ │ │ └── url.png │ ├── examples │ │ └── axelor-config.properties │ ├── nav.adoc │ └── pages │ │ ├── _attributes.adoc │ │ ├── actions │ │ ├── action-attrs.adoc │ │ ├── action-condition.adoc │ │ ├── action-export.adoc │ │ ├── action-group.adoc │ │ ├── action-import.adoc │ │ ├── action-method.adoc │ │ ├── action-record.adoc │ │ ├── action-script.adoc │ │ ├── action-validate.adoc │ │ ├── action-view.adoc │ │ ├── action-ws.adoc │ │ └── index.adoc │ │ ├── application │ │ ├── cache.adoc │ │ ├── cli.adoc │ │ ├── config.adoc │ │ ├── develop.adoc │ │ ├── file-storage.adoc │ │ ├── index.adoc │ │ ├── logging.adoc │ │ ├── multi-tenancy.adoc │ │ └── scripting-policy.adoc │ │ ├── data-import │ │ ├── adapters.adoc │ │ ├── csv-import.adoc │ │ ├── index.adoc │ │ ├── integration.adoc │ │ ├── scripting.adoc │ │ ├── soap-import.adoc │ │ └── xml-import.adoc │ │ ├── index.adoc │ │ ├── models │ │ ├── custom-fields.adoc │ │ ├── custom-models.adoc │ │ ├── index.adoc │ │ ├── models.adoc │ │ ├── repositories.adoc │ │ └── sequences.adoc │ │ ├── modules │ │ ├── coding.adoc │ │ ├── events.adoc │ │ ├── hibernate-listeners.adoc │ │ ├── i18n.adoc │ │ ├── index.adoc │ │ ├── kotlin.adoc │ │ ├── messaging.adoc │ │ ├── reports.adoc │ │ ├── scala.adoc │ │ ├── scheduler.adoc │ │ └── security.adoc │ │ ├── views │ │ ├── calendar.adoc │ │ ├── cards.adoc │ │ ├── charts.adoc │ │ ├── custom.adoc │ │ ├── dashboard.adoc │ │ ├── details.adoc │ │ ├── extensions.adoc │ │ ├── form.adoc │ │ ├── gantt.adoc │ │ ├── grid.adoc │ │ ├── index.adoc │ │ ├── kanban.adoc │ │ ├── search.adoc │ │ └── tree.adoc │ │ ├── web-client │ │ ├── advanced.adoc │ │ ├── collaboration.adoc │ │ ├── index.adoc │ │ ├── quick-menu.adoc │ │ ├── shortcuts.adoc │ │ ├── themes.adoc │ │ ├── view-attributes.adoc │ │ ├── view-processor.adoc │ │ ├── views.adoc │ │ └── widgets.adoc │ │ └── web-services │ │ ├── advanced.adoc │ │ ├── auth.adoc │ │ ├── dms.adoc │ │ ├── index.adoc │ │ ├── meta.adoc │ │ └── rest.adoc │ ├── getting-started │ ├── _attributes.adoc │ ├── nav.adoc │ └── pages │ │ ├── _attributes.adoc │ │ ├── closing.adoc │ │ ├── eclipse.adoc │ │ ├── idea.adoc │ │ ├── index.adoc │ │ ├── install.adoc │ │ └── vscode.adoc │ └── tutorial │ ├── _attributes.adoc │ ├── nav.adoc │ └── pages │ ├── _attributes.adoc │ ├── index.adoc │ ├── step1.adoc │ ├── step2.adoc │ ├── step3.adoc │ ├── step4.adoc │ ├── step5.adoc │ ├── step6.adoc │ └── step7.adoc ├── gradle.properties ├── gradle ├── common.gradle ├── deps-versions.gradle ├── jacoco.gradle ├── javadoc.gradle ├── libs.gradle ├── license │ ├── header-xml.txt │ └── header.txt ├── repos.gradle ├── style.gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle ├── version.gradle └── version.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/SECURITY.md -------------------------------------------------------------------------------- /axelor-common/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-common/build.gradle -------------------------------------------------------------------------------- /axelor-common/src/test/resources/grades.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-common/src/test/resources/grades.csv -------------------------------------------------------------------------------- /axelor-common/src/test/resources/grades_bom.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-common/src/test/resources/grades_bom.csv -------------------------------------------------------------------------------- /axelor-common/src/test/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-common/src/test/resources/logback.xml -------------------------------------------------------------------------------- /axelor-common/src/test/resources/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-common/src/test/resources/test.html -------------------------------------------------------------------------------- /axelor-common/src/test/resources/test.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-common/src/test/resources/test.pdf -------------------------------------------------------------------------------- /axelor-common/src/test/resources/test.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-common/src/test/resources/test.properties -------------------------------------------------------------------------------- /axelor-common/src/test/resources/test.txt: -------------------------------------------------------------------------------- 1 | Test... 2 | -------------------------------------------------------------------------------- /axelor-common/src/test/resources/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-common/src/test/resources/test.yaml -------------------------------------------------------------------------------- /axelor-core/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/build.gradle -------------------------------------------------------------------------------- /axelor-core/src/main/java/com/axelor/app/AppConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/java/com/axelor/app/AppConfig.java -------------------------------------------------------------------------------- /axelor-core/src/main/java/com/axelor/app/AppModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/java/com/axelor/app/AppModule.java -------------------------------------------------------------------------------- /axelor-core/src/main/java/com/axelor/app/AppSettings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/java/com/axelor/app/AppSettings.java -------------------------------------------------------------------------------- /axelor-core/src/main/java/com/axelor/auth/AuthModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/java/com/axelor/auth/AuthModule.java -------------------------------------------------------------------------------- /axelor-core/src/main/java/com/axelor/auth/AuthRealm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/java/com/axelor/auth/AuthRealm.java -------------------------------------------------------------------------------- /axelor-core/src/main/java/com/axelor/auth/AuthUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/java/com/axelor/auth/AuthUtils.java -------------------------------------------------------------------------------- /axelor-core/src/main/java/com/axelor/auth/MFAService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/java/com/axelor/auth/MFAService.java -------------------------------------------------------------------------------- /axelor-core/src/main/java/com/axelor/cache/CacheType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/java/com/axelor/cache/CacheType.java -------------------------------------------------------------------------------- /axelor-core/src/main/java/com/axelor/data/ImportTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/java/com/axelor/data/ImportTask.java -------------------------------------------------------------------------------- /axelor-core/src/main/java/com/axelor/data/Importer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/java/com/axelor/data/Importer.java -------------------------------------------------------------------------------- /axelor-core/src/main/java/com/axelor/data/Listener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/java/com/axelor/data/Listener.java -------------------------------------------------------------------------------- /axelor-core/src/main/java/com/axelor/db/EntityHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/java/com/axelor/db/EntityHelper.java -------------------------------------------------------------------------------- /axelor-core/src/main/java/com/axelor/db/JPA.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/java/com/axelor/db/JPA.java -------------------------------------------------------------------------------- /axelor-core/src/main/java/com/axelor/db/JpaModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/java/com/axelor/db/JpaModel.java -------------------------------------------------------------------------------- /axelor-core/src/main/java/com/axelor/db/JpaModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/java/com/axelor/db/JpaModule.java -------------------------------------------------------------------------------- /axelor-core/src/main/java/com/axelor/db/JpaScanner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/java/com/axelor/db/JpaScanner.java -------------------------------------------------------------------------------- /axelor-core/src/main/java/com/axelor/db/JpaSecurity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/java/com/axelor/db/JpaSecurity.java -------------------------------------------------------------------------------- /axelor-core/src/main/java/com/axelor/db/JpaSequence.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/java/com/axelor/db/JpaSequence.java -------------------------------------------------------------------------------- /axelor-core/src/main/java/com/axelor/db/JpaSupport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/java/com/axelor/db/JpaSupport.java -------------------------------------------------------------------------------- /axelor-core/src/main/java/com/axelor/db/Model.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/java/com/axelor/db/Model.java -------------------------------------------------------------------------------- /axelor-core/src/main/java/com/axelor/db/Query.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/java/com/axelor/db/Query.java -------------------------------------------------------------------------------- /axelor-core/src/main/java/com/axelor/db/QueryBinder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/java/com/axelor/db/QueryBinder.java -------------------------------------------------------------------------------- /axelor-core/src/main/java/com/axelor/db/Repository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/java/com/axelor/db/Repository.java -------------------------------------------------------------------------------- /axelor-core/src/main/java/com/axelor/db/ValueEnum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/java/com/axelor/db/ValueEnum.java -------------------------------------------------------------------------------- /axelor-core/src/main/java/com/axelor/event/Event.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/java/com/axelor/event/Event.java -------------------------------------------------------------------------------- /axelor-core/src/main/java/com/axelor/event/EventBus.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/java/com/axelor/event/EventBus.java -------------------------------------------------------------------------------- /axelor-core/src/main/java/com/axelor/event/EventImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/java/com/axelor/event/EventImpl.java -------------------------------------------------------------------------------- /axelor-core/src/main/java/com/axelor/event/Observer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/java/com/axelor/event/Observer.java -------------------------------------------------------------------------------- /axelor-core/src/main/java/com/axelor/event/Observes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/java/com/axelor/event/Observes.java -------------------------------------------------------------------------------- /axelor-core/src/main/java/com/axelor/events/PreLogin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/java/com/axelor/events/PreLogin.java -------------------------------------------------------------------------------- /axelor-core/src/main/java/com/axelor/i18n/I18n.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/java/com/axelor/i18n/I18n.java -------------------------------------------------------------------------------- /axelor-core/src/main/java/com/axelor/i18n/L10n.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/java/com/axelor/i18n/L10n.java -------------------------------------------------------------------------------- /axelor-core/src/main/java/com/axelor/inject/Beans.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/java/com/axelor/inject/Beans.java -------------------------------------------------------------------------------- /axelor-core/src/main/java/com/axelor/rpc/Context.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/java/com/axelor/rpc/Context.java -------------------------------------------------------------------------------- /axelor-core/src/main/java/com/axelor/rpc/Criteria.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/java/com/axelor/rpc/Criteria.java -------------------------------------------------------------------------------- /axelor-core/src/main/java/com/axelor/rpc/Request.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/java/com/axelor/rpc/Request.java -------------------------------------------------------------------------------- /axelor-core/src/main/java/com/axelor/rpc/Resource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/java/com/axelor/rpc/Resource.java -------------------------------------------------------------------------------- /axelor-core/src/main/java/com/axelor/rpc/Response.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/java/com/axelor/rpc/Response.java -------------------------------------------------------------------------------- /axelor-core/src/main/java/com/axelor/text/Renderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/java/com/axelor/text/Renderer.java -------------------------------------------------------------------------------- /axelor-core/src/main/java/com/axelor/text/Template.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/java/com/axelor/text/Template.java -------------------------------------------------------------------------------- /axelor-core/src/main/java/com/axelor/ui/QuickMenu.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/java/com/axelor/ui/QuickMenu.java -------------------------------------------------------------------------------- /axelor-core/src/main/resources/META-INF/validation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/resources/META-INF/validation.xml -------------------------------------------------------------------------------- /axelor-core/src/main/resources/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/resources/application.conf -------------------------------------------------------------------------------- /axelor-core/src/main/resources/data-demo/input/auth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/resources/data-demo/input/auth.xml -------------------------------------------------------------------------------- /axelor-core/src/main/resources/data-import.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/resources/data-import.xsd -------------------------------------------------------------------------------- /axelor-core/src/main/resources/data-init/input/auth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/resources/data-init/input/auth.xml -------------------------------------------------------------------------------- /axelor-core/src/main/resources/data-init/input/jobs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/resources/data-init/input/jobs.xml -------------------------------------------------------------------------------- /axelor-core/src/main/resources/domain-models.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/resources/domain-models.xsd -------------------------------------------------------------------------------- /axelor-core/src/main/resources/domains/DMS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/resources/domains/DMS.xml -------------------------------------------------------------------------------- /axelor-core/src/main/resources/domains/Group.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/resources/domains/Group.xml -------------------------------------------------------------------------------- /axelor-core/src/main/resources/domains/MFA.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/resources/domains/MFA.xml -------------------------------------------------------------------------------- /axelor-core/src/main/resources/domains/Mail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/resources/domains/Mail.xml -------------------------------------------------------------------------------- /axelor-core/src/main/resources/domains/Meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/resources/domains/Meta.xml -------------------------------------------------------------------------------- /axelor-core/src/main/resources/domains/MetaFilter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/resources/domains/MetaFilter.xml -------------------------------------------------------------------------------- /axelor-core/src/main/resources/domains/MetaJson.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/resources/domains/MetaJson.xml -------------------------------------------------------------------------------- /axelor-core/src/main/resources/domains/MetaSchedule.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/resources/domains/MetaSchedule.xml -------------------------------------------------------------------------------- /axelor-core/src/main/resources/domains/MetaSequence.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/resources/domains/MetaSequence.xml -------------------------------------------------------------------------------- /axelor-core/src/main/resources/domains/MetaTheme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/resources/domains/MetaTheme.xml -------------------------------------------------------------------------------- /axelor-core/src/main/resources/domains/Permission.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/resources/domains/Permission.xml -------------------------------------------------------------------------------- /axelor-core/src/main/resources/domains/Role.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/resources/domains/Role.xml -------------------------------------------------------------------------------- /axelor-core/src/main/resources/domains/Team.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/resources/domains/Team.xml -------------------------------------------------------------------------------- /axelor-core/src/main/resources/domains/User.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/resources/domains/User.xml -------------------------------------------------------------------------------- /axelor-core/src/main/resources/domains/UserToken.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/resources/domains/UserToken.xml -------------------------------------------------------------------------------- /axelor-core/src/main/resources/i18n/messages.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/resources/i18n/messages.csv -------------------------------------------------------------------------------- /axelor-core/src/main/resources/i18n/messages_en.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/resources/i18n/messages_en.csv -------------------------------------------------------------------------------- /axelor-core/src/main/resources/i18n/messages_fr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/resources/i18n/messages_fr.csv -------------------------------------------------------------------------------- /axelor-core/src/main/resources/object-views.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/resources/object-views.xsd -------------------------------------------------------------------------------- /axelor-core/src/main/resources/views/DMS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/resources/views/DMS.xml -------------------------------------------------------------------------------- /axelor-core/src/main/resources/views/Group.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/resources/views/Group.xml -------------------------------------------------------------------------------- /axelor-core/src/main/resources/views/MFA.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/resources/views/MFA.xml -------------------------------------------------------------------------------- /axelor-core/src/main/resources/views/Mail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/resources/views/Mail.xml -------------------------------------------------------------------------------- /axelor-core/src/main/resources/views/Menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/resources/views/Menu.xml -------------------------------------------------------------------------------- /axelor-core/src/main/resources/views/Meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/resources/views/Meta.xml -------------------------------------------------------------------------------- /axelor-core/src/main/resources/views/MetaJson.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/resources/views/MetaJson.xml -------------------------------------------------------------------------------- /axelor-core/src/main/resources/views/MetaPermission.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/resources/views/MetaPermission.xml -------------------------------------------------------------------------------- /axelor-core/src/main/resources/views/MetaTheme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/resources/views/MetaTheme.xml -------------------------------------------------------------------------------- /axelor-core/src/main/resources/views/Permission.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/resources/views/Permission.xml -------------------------------------------------------------------------------- /axelor-core/src/main/resources/views/Role.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/resources/views/Role.xml -------------------------------------------------------------------------------- /axelor-core/src/main/resources/views/Schedules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/resources/views/Schedules.xml -------------------------------------------------------------------------------- /axelor-core/src/main/resources/views/Team.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/resources/views/Team.xml -------------------------------------------------------------------------------- /axelor-core/src/main/resources/views/User.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/resources/views/User.xml -------------------------------------------------------------------------------- /axelor-core/src/main/resources/views/UserToken.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/main/resources/views/UserToken.xml -------------------------------------------------------------------------------- /axelor-core/src/test/java/com/axelor/AbstractTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/test/java/com/axelor/AbstractTest.java -------------------------------------------------------------------------------- /axelor-core/src/test/java/com/axelor/JpaTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/test/java/com/axelor/JpaTest.java -------------------------------------------------------------------------------- /axelor-core/src/test/java/com/axelor/JpaTestModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/test/java/com/axelor/JpaTestModule.java -------------------------------------------------------------------------------- /axelor-core/src/test/java/com/axelor/TestModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/test/java/com/axelor/TestModule.java -------------------------------------------------------------------------------- /axelor-core/src/test/java/com/axelor/auth/AuthTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/test/java/com/axelor/auth/AuthTest.java -------------------------------------------------------------------------------- /axelor-core/src/test/java/com/axelor/auth/LdapTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/test/java/com/axelor/auth/LdapTest.java -------------------------------------------------------------------------------- /axelor-core/src/test/java/com/axelor/db/AuditTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/test/java/com/axelor/db/AuditTest.java -------------------------------------------------------------------------------- /axelor-core/src/test/java/com/axelor/db/CrudTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/test/java/com/axelor/db/CrudTest.java -------------------------------------------------------------------------------- /axelor-core/src/test/java/com/axelor/db/DateTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/test/java/com/axelor/db/DateTest.java -------------------------------------------------------------------------------- /axelor-core/src/test/java/com/axelor/db/EnumTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/test/java/com/axelor/db/EnumTest.java -------------------------------------------------------------------------------- /axelor-core/src/test/java/com/axelor/db/MapperTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/test/java/com/axelor/db/MapperTest.java -------------------------------------------------------------------------------- /axelor-core/src/test/java/com/axelor/db/QueryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/test/java/com/axelor/db/QueryTest.java -------------------------------------------------------------------------------- /axelor-core/src/test/java/com/axelor/event/After.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/test/java/com/axelor/event/After.java -------------------------------------------------------------------------------- /axelor-core/src/test/java/com/axelor/event/Before.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/test/java/com/axelor/event/Before.java -------------------------------------------------------------------------------- /axelor-core/src/test/java/com/axelor/i18n/I18nTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/test/java/com/axelor/i18n/I18nTest.java -------------------------------------------------------------------------------- /axelor-core/src/test/java/com/axelor/meta/MetaTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/test/java/com/axelor/meta/MetaTest.java -------------------------------------------------------------------------------- /axelor-core/src/test/java/com/axelor/rpc/RpcTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/test/java/com/axelor/rpc/RpcTest.java -------------------------------------------------------------------------------- /axelor-core/src/test/java/com/axelor/script/TestEL.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/test/java/com/axelor/script/TestEL.java -------------------------------------------------------------------------------- /axelor-core/src/test/resources/META-INF/persistence.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/test/resources/META-INF/persistence.xml -------------------------------------------------------------------------------- /axelor-core/src/test/resources/axelor-config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/test/resources/axelor-config.properties -------------------------------------------------------------------------------- /axelor-core/src/test/resources/com/axelor/mail/test-file.txt: -------------------------------------------------------------------------------- 1 | Hello... -------------------------------------------------------------------------------- /axelor-core/src/test/resources/com/axelor/meta/Menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/test/resources/com/axelor/meta/Menu.xml -------------------------------------------------------------------------------- /axelor-core/src/test/resources/com/axelor/text/nested2.tmpl: -------------------------------------------------------------------------------- 1 | This is nested 2: ${message} -------------------------------------------------------------------------------- /axelor-core/src/test/resources/configs/ext-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/test/resources/configs/ext-config.yml -------------------------------------------------------------------------------- /axelor-core/src/test/resources/configs/test-encryptor-key: -------------------------------------------------------------------------------- 1 | MySecureKey -------------------------------------------------------------------------------- /axelor-core/src/test/resources/db/migration/V2__alter.sql: -------------------------------------------------------------------------------- 1 | alter table foo add column notes varchar(255); 2 | -------------------------------------------------------------------------------- /axelor-core/src/test/resources/domains/Address.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/test/resources/domains/Address.xml -------------------------------------------------------------------------------- /axelor-core/src/test/resources/domains/AuditCheck.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/test/resources/domains/AuditCheck.xml -------------------------------------------------------------------------------- /axelor-core/src/test/resources/domains/Circle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/test/resources/domains/Circle.xml -------------------------------------------------------------------------------- /axelor-core/src/test/resources/domains/Contact.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/test/resources/domains/Contact.xml -------------------------------------------------------------------------------- /axelor-core/src/test/resources/domains/Country.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/test/resources/domains/Country.xml -------------------------------------------------------------------------------- /axelor-core/src/test/resources/domains/Currency.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/test/resources/domains/Currency.xml -------------------------------------------------------------------------------- /axelor-core/src/test/resources/domains/EnumCheck.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/test/resources/domains/EnumCheck.xml -------------------------------------------------------------------------------- /axelor-core/src/test/resources/domains/EnumStatus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/test/resources/domains/EnumStatus.xml -------------------------------------------------------------------------------- /axelor-core/src/test/resources/domains/FieldTypes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/test/resources/domains/FieldTypes.xml -------------------------------------------------------------------------------- /axelor-core/src/test/resources/domains/Invoice.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/test/resources/domains/Invoice.xml -------------------------------------------------------------------------------- /axelor-core/src/test/resources/domains/Move.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/test/resources/domains/Move.xml -------------------------------------------------------------------------------- /axelor-core/src/test/resources/domains/MoveLine.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/test/resources/domains/MoveLine.xml -------------------------------------------------------------------------------- /axelor-core/src/test/resources/domains/Person.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/test/resources/domains/Person.xml -------------------------------------------------------------------------------- /axelor-core/src/test/resources/domains/Product.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/test/resources/domains/Product.xml -------------------------------------------------------------------------------- /axelor-core/src/test/resources/domains/Title.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/test/resources/domains/Title.xml -------------------------------------------------------------------------------- /axelor-core/src/test/resources/domains/TypeCheck.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/test/resources/domains/TypeCheck.xml -------------------------------------------------------------------------------- /axelor-core/src/test/resources/fixtures/demo-data.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/test/resources/fixtures/demo-data.yml -------------------------------------------------------------------------------- /axelor-core/src/test/resources/fixtures/users-data.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/test/resources/fixtures/users-data.yml -------------------------------------------------------------------------------- /axelor-core/src/test/resources/json/add.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/test/resources/json/add.json -------------------------------------------------------------------------------- /axelor-core/src/test/resources/json/add2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/test/resources/json/add2.json -------------------------------------------------------------------------------- /axelor-core/src/test/resources/json/find.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/test/resources/json/find.json -------------------------------------------------------------------------------- /axelor-core/src/test/resources/json/find2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/test/resources/json/find2.json -------------------------------------------------------------------------------- /axelor-core/src/test/resources/json/find3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/test/resources/json/find3.json -------------------------------------------------------------------------------- /axelor-core/src/test/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/test/resources/logback.xml -------------------------------------------------------------------------------- /axelor-core/src/test/resources/redisson.yaml: -------------------------------------------------------------------------------- 1 | singleServerConfig: 2 | address: "redis://127.0.0.1:6379" -------------------------------------------------------------------------------- /axelor-core/src/test/resources/test.ics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/test/resources/test.ics -------------------------------------------------------------------------------- /axelor-core/src/test/resources/test.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-core/src/test/resources/test.ldif -------------------------------------------------------------------------------- /axelor-front/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/.editorconfig -------------------------------------------------------------------------------- /axelor-front/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/.env -------------------------------------------------------------------------------- /axelor-front/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/.gitignore -------------------------------------------------------------------------------- /axelor-front/.nvmrc: -------------------------------------------------------------------------------- 1 | 22.17 2 | -------------------------------------------------------------------------------- /axelor-front/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/README.md -------------------------------------------------------------------------------- /axelor-front/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/build.gradle -------------------------------------------------------------------------------- /axelor-front/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/eslint.config.js -------------------------------------------------------------------------------- /axelor-front/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/index.html -------------------------------------------------------------------------------- /axelor-front/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/package.json -------------------------------------------------------------------------------- /axelor-front/patches/bootstrap-sass@2.3.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/patches/bootstrap-sass@2.3.2.patch -------------------------------------------------------------------------------- /axelor-front/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/pnpm-lock.yaml -------------------------------------------------------------------------------- /axelor-front/scripts/flags/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/scripts/flags/README.md -------------------------------------------------------------------------------- /axelor-front/scripts/flags/combine_svg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/scripts/flags/combine_svg.py -------------------------------------------------------------------------------- /axelor-front/scripts/flags/download_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/scripts/flags/download_image.py -------------------------------------------------------------------------------- /axelor-front/scripts/flags/extract_country_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/scripts/flags/extract_country_codes.py -------------------------------------------------------------------------------- /axelor-front/scripts/flags/generate_css.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/scripts/flags/generate_css.py -------------------------------------------------------------------------------- /axelor-front/scripts/flags/rename_svg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/scripts/flags/rename_svg.py -------------------------------------------------------------------------------- /axelor-front/scripts/flags/to_twemoji_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/scripts/flags/to_twemoji_url.py -------------------------------------------------------------------------------- /axelor-front/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/App.tsx -------------------------------------------------------------------------------- /axelor-front/src/assets/axelor-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/assets/axelor-dark.svg -------------------------------------------------------------------------------- /axelor-front/src/assets/axelor-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/assets/axelor-icon.svg -------------------------------------------------------------------------------- /axelor-front/src/assets/axelor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/assets/axelor.svg -------------------------------------------------------------------------------- /axelor-front/src/assets/flags.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/assets/flags.svg -------------------------------------------------------------------------------- /axelor-front/src/components/alerts/alerts.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/components/alerts/alerts.module.css -------------------------------------------------------------------------------- /axelor-front/src/components/alerts/alerts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/components/alerts/alerts.tsx -------------------------------------------------------------------------------- /axelor-front/src/components/alerts/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./alerts"; 2 | 3 | -------------------------------------------------------------------------------- /axelor-front/src/components/app-logo/app-logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/components/app-logo/app-logo.tsx -------------------------------------------------------------------------------- /axelor-front/src/components/app-logo/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./app-logo"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/components/dialogs/dialogs.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/components/dialogs/dialogs.module.css -------------------------------------------------------------------------------- /axelor-front/src/components/dialogs/dialogs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/components/dialogs/dialogs.tsx -------------------------------------------------------------------------------- /axelor-front/src/components/dialogs/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./dialogs"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/components/error-box/error-box.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/components/error-box/error-box.tsx -------------------------------------------------------------------------------- /axelor-front/src/components/error-box/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./error-box"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/components/http-watch/http-watch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/components/http-watch/http-watch.tsx -------------------------------------------------------------------------------- /axelor-front/src/components/http-watch/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./http-watch"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/components/http-watch/use-block.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/components/http-watch/use-block.ts -------------------------------------------------------------------------------- /axelor-front/src/components/http-watch/use-watch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/components/http-watch/use-watch.ts -------------------------------------------------------------------------------- /axelor-front/src/components/icon/icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/components/icon/icon.tsx -------------------------------------------------------------------------------- /axelor-front/src/components/icon/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./icon"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/components/loader/loader.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/components/loader/loader.module.scss -------------------------------------------------------------------------------- /axelor-front/src/components/loader/loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/components/loader/loader.tsx -------------------------------------------------------------------------------- /axelor-front/src/components/loading-button/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./loading-button"; -------------------------------------------------------------------------------- /axelor-front/src/components/login-form/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./login-form"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/components/login-form/login-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/components/login-form/login-form.tsx -------------------------------------------------------------------------------- /axelor-front/src/components/mfa-form/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./mfa-form"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/components/mfa-form/mfa-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/components/mfa-form/mfa-form.tsx -------------------------------------------------------------------------------- /axelor-front/src/components/page-text/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./page-text"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/components/page-text/page-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/components/page-text/page-text.tsx -------------------------------------------------------------------------------- /axelor-front/src/components/scheduler/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./scheduler"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/components/scheduler/scheduler.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/components/scheduler/scheduler.tsx -------------------------------------------------------------------------------- /axelor-front/src/components/select/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./select"; -------------------------------------------------------------------------------- /axelor-front/src/components/select/select.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/components/select/select.module.scss -------------------------------------------------------------------------------- /axelor-front/src/components/select/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/components/select/select.tsx -------------------------------------------------------------------------------- /axelor-front/src/components/tag/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/components/tag/index.ts -------------------------------------------------------------------------------- /axelor-front/src/components/tag/relational-tag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/components/tag/relational-tag.tsx -------------------------------------------------------------------------------- /axelor-front/src/components/tag/tag.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/components/tag/tag.module.scss -------------------------------------------------------------------------------- /axelor-front/src/components/tag/tag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/components/tag/tag.tsx -------------------------------------------------------------------------------- /axelor-front/src/components/text-link/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./text-link"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/components/text-link/text-link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/components/text-link/text-link.tsx -------------------------------------------------------------------------------- /axelor-front/src/components/theme-builder/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./theme-builder"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/components/theme-builder/scope.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/components/theme-builder/scope.tsx -------------------------------------------------------------------------------- /axelor-front/src/components/theme-builder/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/components/theme-builder/utils.ts -------------------------------------------------------------------------------- /axelor-front/src/components/tooltip/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./tooltip"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/components/tooltip/tooltip.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/components/tooltip/tooltip.module.scss -------------------------------------------------------------------------------- /axelor-front/src/components/tooltip/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/components/tooltip/tooltip.tsx -------------------------------------------------------------------------------- /axelor-front/src/declare.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/declare.d.ts -------------------------------------------------------------------------------- /axelor-front/src/hooks/use-app-head/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./use-app-head"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/hooks/use-app-head/use-app-head.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/hooks/use-app-head/use-app-head.ts -------------------------------------------------------------------------------- /axelor-front/src/hooks/use-app-lang/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./use-app-lang"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/hooks/use-app-lang/use-app-lang.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/hooks/use-app-lang/use-app-lang.tsx -------------------------------------------------------------------------------- /axelor-front/src/hooks/use-app-settings/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./use-app-settings"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/hooks/use-app-theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/hooks/use-app-theme/index.ts -------------------------------------------------------------------------------- /axelor-front/src/hooks/use-app-theme/themes/dark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/hooks/use-app-theme/themes/dark.json -------------------------------------------------------------------------------- /axelor-front/src/hooks/use-app-theme/use-app-theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/hooks/use-app-theme/use-app-theme.ts -------------------------------------------------------------------------------- /axelor-front/src/hooks/use-async-effect/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./use-async-effect"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/hooks/use-async/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./use-async"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/hooks/use-async/use-async.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/hooks/use-async/use-async.test.tsx -------------------------------------------------------------------------------- /axelor-front/src/hooks/use-async/use-async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/hooks/use-async/use-async.ts -------------------------------------------------------------------------------- /axelor-front/src/hooks/use-button/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./use-button-single-click"; -------------------------------------------------------------------------------- /axelor-front/src/hooks/use-container-query/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./use-container-query"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/hooks/use-data-store/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./use-data-store"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/hooks/use-data-store/use-data-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/hooks/use-data-store/use-data-store.ts -------------------------------------------------------------------------------- /axelor-front/src/hooks/use-disable-wheel-scroll/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./use-disable-wheel-scroll"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/hooks/use-media-query/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./use-media-query"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/hooks/use-menu/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./use-menu"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/hooks/use-menu/use-menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/hooks/use-menu/use-menu.ts -------------------------------------------------------------------------------- /axelor-front/src/hooks/use-parser/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/hooks/use-parser/constants.ts -------------------------------------------------------------------------------- /axelor-front/src/hooks/use-parser/context/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/hooks/use-parser/context/index.ts -------------------------------------------------------------------------------- /axelor-front/src/hooks/use-parser/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/hooks/use-parser/hooks.ts -------------------------------------------------------------------------------- /axelor-front/src/hooks/use-parser/index.js: -------------------------------------------------------------------------------- 1 | export * from "./hooks"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/hooks/use-parser/parser.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/hooks/use-parser/parser.jsx -------------------------------------------------------------------------------- /axelor-front/src/hooks/use-parser/parser.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/hooks/use-parser/parser.test.tsx -------------------------------------------------------------------------------- /axelor-front/src/hooks/use-parser/template-legacy.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/hooks/use-parser/template-legacy.jsx -------------------------------------------------------------------------------- /axelor-front/src/hooks/use-parser/template-react.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/hooks/use-parser/template-react.jsx -------------------------------------------------------------------------------- /axelor-front/src/hooks/use-parser/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/hooks/use-parser/utils.js -------------------------------------------------------------------------------- /axelor-front/src/hooks/use-permitted/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./use-permitted"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/hooks/use-permitted/use-permitted.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/hooks/use-permitted/use-permitted.ts -------------------------------------------------------------------------------- /axelor-front/src/hooks/use-perms/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./use-perms"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/hooks/use-perms/use-perms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/hooks/use-perms/use-perms.ts -------------------------------------------------------------------------------- /axelor-front/src/hooks/use-relation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/hooks/use-relation/index.ts -------------------------------------------------------------------------------- /axelor-front/src/hooks/use-relation/use-completion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/hooks/use-relation/use-completion.ts -------------------------------------------------------------------------------- /axelor-front/src/hooks/use-relation/use-creator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/hooks/use-relation/use-creator.tsx -------------------------------------------------------------------------------- /axelor-front/src/hooks/use-relation/use-editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/hooks/use-relation/use-editor.tsx -------------------------------------------------------------------------------- /axelor-front/src/hooks/use-relation/use-selector.module.scss: -------------------------------------------------------------------------------- 1 | .header { 2 | padding: 0.45rem 1rem; 3 | } 4 | -------------------------------------------------------------------------------- /axelor-front/src/hooks/use-relation/use-selector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/hooks/use-relation/use-selector.tsx -------------------------------------------------------------------------------- /axelor-front/src/hooks/use-resize-detector/index.ts: -------------------------------------------------------------------------------- 1 | export * from './use-resize-detector'; -------------------------------------------------------------------------------- /axelor-front/src/hooks/use-responsive/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./use-responsive"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/hooks/use-responsive/use-responsive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/hooks/use-responsive/use-responsive.ts -------------------------------------------------------------------------------- /axelor-front/src/hooks/use-route/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./use-route"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/hooks/use-route/use-route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/hooks/use-route/use-route.ts -------------------------------------------------------------------------------- /axelor-front/src/hooks/use-search-translate/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./use-search-translate"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/hooks/use-session/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./use-session"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/hooks/use-session/use-session.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/hooks/use-session/use-session.test.tsx -------------------------------------------------------------------------------- /axelor-front/src/hooks/use-session/use-session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/hooks/use-session/use-session.ts -------------------------------------------------------------------------------- /axelor-front/src/hooks/use-shortcut/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./use-shortcut"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/hooks/use-shortcut/use-shortcut.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/hooks/use-shortcut/use-shortcut.ts -------------------------------------------------------------------------------- /axelor-front/src/hooks/use-tabs/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./use-tabs"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/hooks/use-tabs/use-tabs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/hooks/use-tabs/use-tabs.ts -------------------------------------------------------------------------------- /axelor-front/src/hooks/use-tags/index.ts: -------------------------------------------------------------------------------- 1 | export * from './use-tags'; -------------------------------------------------------------------------------- /axelor-front/src/hooks/use-tags/use-tags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/hooks/use-tags/use-tags.ts -------------------------------------------------------------------------------- /axelor-front/src/layout/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./layout"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/layout/layout.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/layout/layout.module.scss -------------------------------------------------------------------------------- /axelor-front/src/layout/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/layout/layout.tsx -------------------------------------------------------------------------------- /axelor-front/src/layout/nav-drawer/hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/layout/nav-drawer/hook.ts -------------------------------------------------------------------------------- /axelor-front/src/layout/nav-drawer/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./nav-drawer"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/layout/nav-drawer/nav-drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/layout/nav-drawer/nav-drawer.tsx -------------------------------------------------------------------------------- /axelor-front/src/layout/nav-header/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./nav-header"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/layout/nav-header/nav-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/layout/nav-header/nav-header.tsx -------------------------------------------------------------------------------- /axelor-front/src/layout/nav-header/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/layout/nav-header/utils.ts -------------------------------------------------------------------------------- /axelor-front/src/layout/nav-tabs/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./nav-tabs"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/layout/nav-tabs/nav-tabs.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/layout/nav-tabs/nav-tabs.module.scss -------------------------------------------------------------------------------- /axelor-front/src/layout/nav-tabs/nav-tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/layout/nav-tabs/nav-tabs.tsx -------------------------------------------------------------------------------- /axelor-front/src/layout/nav-tabs/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/layout/nav-tabs/utils.ts -------------------------------------------------------------------------------- /axelor-front/src/layout/nav-tags/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./nav-tags"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/layout/nav-tags/nav-tags.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/layout/nav-tags/nav-tags.tsx -------------------------------------------------------------------------------- /axelor-front/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/main.tsx -------------------------------------------------------------------------------- /axelor-front/src/routes/about/about.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/routes/about/about.module.scss -------------------------------------------------------------------------------- /axelor-front/src/routes/about/about.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/routes/about/about.tsx -------------------------------------------------------------------------------- /axelor-front/src/routes/about/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./about"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/routes/change-password/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./change-password"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/routes/error/error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/routes/error/error.tsx -------------------------------------------------------------------------------- /axelor-front/src/routes/error/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./error"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/routes/forgot-password/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./forgot-password"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/routes/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./routes"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/routes/login/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./login"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/routes/login/login.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/routes/login/login.module.scss -------------------------------------------------------------------------------- /axelor-front/src/routes/login/login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/routes/login/login.tsx -------------------------------------------------------------------------------- /axelor-front/src/routes/mfa/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./mfa"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/routes/mfa/mfa.module.scss: -------------------------------------------------------------------------------- 1 | .main { 2 | max-width: 400px; 3 | } 4 | -------------------------------------------------------------------------------- /axelor-front/src/routes/mfa/mfa.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/routes/mfa/mfa.tsx -------------------------------------------------------------------------------- /axelor-front/src/routes/reset-password/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./reset-password"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/routes/reset-password/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/routes/reset-password/utils.ts -------------------------------------------------------------------------------- /axelor-front/src/routes/root/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./root"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/routes/root/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/routes/root/root.tsx -------------------------------------------------------------------------------- /axelor-front/src/routes/routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/routes/routes.tsx -------------------------------------------------------------------------------- /axelor-front/src/routes/shortcuts/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./shortcuts"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/routes/shortcuts/shortcuts.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/routes/shortcuts/shortcuts.module.scss -------------------------------------------------------------------------------- /axelor-front/src/routes/shortcuts/shortcuts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/routes/shortcuts/shortcuts.tsx -------------------------------------------------------------------------------- /axelor-front/src/routes/swagger/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./swagger"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/routes/swagger/swagger.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/routes/swagger/swagger.module.scss -------------------------------------------------------------------------------- /axelor-front/src/routes/swagger/swagger.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/routes/swagger/swagger.tsx -------------------------------------------------------------------------------- /axelor-front/src/routes/system/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./system"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/routes/system/system.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/routes/system/system.module.scss -------------------------------------------------------------------------------- /axelor-front/src/routes/system/system.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/routes/system/system.tsx -------------------------------------------------------------------------------- /axelor-front/src/routes/view/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./view"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/routes/view/view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/routes/view/view.tsx -------------------------------------------------------------------------------- /axelor-front/src/services/client/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/services/client/client.ts -------------------------------------------------------------------------------- /axelor-front/src/services/client/data-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/services/client/data-store.ts -------------------------------------------------------------------------------- /axelor-front/src/services/client/data-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/services/client/data-utils.ts -------------------------------------------------------------------------------- /axelor-front/src/services/client/data.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/services/client/data.test.ts -------------------------------------------------------------------------------- /axelor-front/src/services/client/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/services/client/data.ts -------------------------------------------------------------------------------- /axelor-front/src/services/client/data.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/services/client/data.types.ts -------------------------------------------------------------------------------- /axelor-front/src/services/client/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/services/client/i18n.ts -------------------------------------------------------------------------------- /axelor-front/src/services/client/l10n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/services/client/l10n.ts -------------------------------------------------------------------------------- /axelor-front/src/services/client/meta-cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/services/client/meta-cache.ts -------------------------------------------------------------------------------- /axelor-front/src/services/client/meta-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/services/client/meta-utils.ts -------------------------------------------------------------------------------- /axelor-front/src/services/client/meta.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/services/client/meta.test.ts -------------------------------------------------------------------------------- /axelor-front/src/services/client/meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/services/client/meta.ts -------------------------------------------------------------------------------- /axelor-front/src/services/client/meta.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/services/client/meta.types.ts -------------------------------------------------------------------------------- /axelor-front/src/services/client/mfa.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/services/client/mfa.ts -------------------------------------------------------------------------------- /axelor-front/src/services/client/mock/fetcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/services/client/mock/fetcher.ts -------------------------------------------------------------------------------- /axelor-front/src/services/client/mock/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/services/client/mock/setup.ts -------------------------------------------------------------------------------- /axelor-front/src/services/client/reject.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/services/client/reject.tsx -------------------------------------------------------------------------------- /axelor-front/src/services/client/session.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/services/client/session.test.ts -------------------------------------------------------------------------------- /axelor-front/src/services/client/session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/services/client/session.ts -------------------------------------------------------------------------------- /axelor-front/src/services/client/socket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/services/client/socket.ts -------------------------------------------------------------------------------- /axelor-front/src/services/http/http-fetch.ts: -------------------------------------------------------------------------------- 1 | export default fetch; 2 | -------------------------------------------------------------------------------- /axelor-front/src/services/http/http.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/services/http/http.test.ts -------------------------------------------------------------------------------- /axelor-front/src/services/http/http.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/services/http/http.ts -------------------------------------------------------------------------------- /axelor-front/src/services/http/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./http"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/store/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./store"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/store/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/store/store.ts -------------------------------------------------------------------------------- /axelor-front/src/styles/common.module.scss: -------------------------------------------------------------------------------- 1 | @import "./common/responsive"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/styles/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/styles/common.ts -------------------------------------------------------------------------------- /axelor-front/src/styles/common/_responsive.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/styles/common/_responsive.scss -------------------------------------------------------------------------------- /axelor-front/src/styles/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/styles/global.scss -------------------------------------------------------------------------------- /axelor-front/src/styles/global/_scrollbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/styles/global/_scrollbar.scss -------------------------------------------------------------------------------- /axelor-front/src/styles/global/_vars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/styles/global/_vars.scss -------------------------------------------------------------------------------- /axelor-front/src/styles/legacy.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/styles/legacy.module.scss -------------------------------------------------------------------------------- /axelor-front/src/styles/legacy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/styles/legacy.ts -------------------------------------------------------------------------------- /axelor-front/src/styles/legacy/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/styles/legacy/_alert.scss -------------------------------------------------------------------------------- /axelor-front/src/styles/legacy/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/styles/legacy/_badge.scss -------------------------------------------------------------------------------- /axelor-front/src/styles/legacy/_bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/styles/legacy/_bootstrap.scss -------------------------------------------------------------------------------- /axelor-front/src/styles/legacy/_btn.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/styles/legacy/_btn.scss -------------------------------------------------------------------------------- /axelor-front/src/styles/legacy/_colors.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/styles/legacy/_colors.module.scss -------------------------------------------------------------------------------- /axelor-front/src/styles/legacy/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/styles/legacy/_colors.scss -------------------------------------------------------------------------------- /axelor-front/src/styles/legacy/_extra.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/styles/legacy/_extra.scss -------------------------------------------------------------------------------- /axelor-front/src/styles/legacy/_label.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/styles/legacy/_label.scss -------------------------------------------------------------------------------- /axelor-front/src/styles/legacy/_styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/styles/legacy/_styles.scss -------------------------------------------------------------------------------- /axelor-front/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/test-setup.ts -------------------------------------------------------------------------------- /axelor-front/src/utils/app-settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/utils/app-settings.ts -------------------------------------------------------------------------------- /axelor-front/src/utils/arrays.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/utils/arrays.test.ts -------------------------------------------------------------------------------- /axelor-front/src/utils/arrays.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/utils/arrays.ts -------------------------------------------------------------------------------- /axelor-front/src/utils/atoms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/utils/atoms.ts -------------------------------------------------------------------------------- /axelor-front/src/utils/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/utils/cache.ts -------------------------------------------------------------------------------- /axelor-front/src/utils/convert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/utils/convert.ts -------------------------------------------------------------------------------- /axelor-front/src/utils/data-record.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/utils/data-record.ts -------------------------------------------------------------------------------- /axelor-front/src/utils/date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/utils/date.ts -------------------------------------------------------------------------------- /axelor-front/src/utils/device.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/utils/device.ts -------------------------------------------------------------------------------- /axelor-front/src/utils/download.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/utils/download.ts -------------------------------------------------------------------------------- /axelor-front/src/utils/files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/utils/files.ts -------------------------------------------------------------------------------- /axelor-front/src/utils/format.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/utils/format.ts -------------------------------------------------------------------------------- /axelor-front/src/utils/globals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/utils/globals.ts -------------------------------------------------------------------------------- /axelor-front/src/utils/names.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/utils/names.ts -------------------------------------------------------------------------------- /axelor-front/src/utils/objects.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/utils/objects.test.ts -------------------------------------------------------------------------------- /axelor-front/src/utils/objects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/utils/objects.ts -------------------------------------------------------------------------------- /axelor-front/src/utils/sanitize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/utils/sanitize.ts -------------------------------------------------------------------------------- /axelor-front/src/utils/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/utils/schema.ts -------------------------------------------------------------------------------- /axelor-front/src/utils/sort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/utils/sort.ts -------------------------------------------------------------------------------- /axelor-front/src/utils/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/utils/types.ts -------------------------------------------------------------------------------- /axelor-front/src/utils/unique-id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/utils/unique-id.ts -------------------------------------------------------------------------------- /axelor-front/src/utils/validate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/utils/validate.ts -------------------------------------------------------------------------------- /axelor-front/src/view-containers/action/executor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/view-containers/action/executor.ts -------------------------------------------------------------------------------- /axelor-front/src/view-containers/action/handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/view-containers/action/handler.ts -------------------------------------------------------------------------------- /axelor-front/src/view-containers/action/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/view-containers/action/index.ts -------------------------------------------------------------------------------- /axelor-front/src/view-containers/action/queue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/view-containers/action/queue.ts -------------------------------------------------------------------------------- /axelor-front/src/view-containers/action/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/view-containers/action/types.ts -------------------------------------------------------------------------------- /axelor-front/src/view-containers/advance-search/editor/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./editor"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/view-containers/advance-search/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./advance-search"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/view-containers/view-dashlet/index.ts: -------------------------------------------------------------------------------- 1 | export * from './view-dashlet'; -------------------------------------------------------------------------------- /axelor-front/src/view-containers/view-popup/handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/view-containers/view-popup/handler.ts -------------------------------------------------------------------------------- /axelor-front/src/view-containers/view-popup/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/view-containers/view-popup/index.ts -------------------------------------------------------------------------------- /axelor-front/src/view-containers/view-popup/popups.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/view-containers/view-popup/popups.tsx -------------------------------------------------------------------------------- /axelor-front/src/view-containers/view-popup/view-popper.module.scss: -------------------------------------------------------------------------------- 1 | .viewPopper { 2 | z-index: 0; 3 | } 4 | -------------------------------------------------------------------------------- /axelor-front/src/view-containers/view-toolbar/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./view-toolbar"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/view-containers/views/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./views"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/view-containers/views/scope.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/view-containers/views/scope.ts -------------------------------------------------------------------------------- /axelor-front/src/view-containers/views/views.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/view-containers/views/views.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/calendar/calendar.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/calendar/calendar.module.scss -------------------------------------------------------------------------------- /axelor-front/src/views/calendar/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/calendar/calendar.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/calendar/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/calendar/colors.ts -------------------------------------------------------------------------------- /axelor-front/src/views/calendar/event.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/calendar/event.module.scss -------------------------------------------------------------------------------- /axelor-front/src/views/calendar/filters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/calendar/filters.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/calendar/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./calendar"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/calendar/popover.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/calendar/popover.module.scss -------------------------------------------------------------------------------- /axelor-front/src/views/calendar/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/calendar/popover.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/calendar/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/calendar/utils.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/cards/card-template.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/cards/card-template.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/cards/card.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/cards/card.module.scss -------------------------------------------------------------------------------- /axelor-front/src/views/cards/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/cards/card.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/cards/cards.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/cards/cards.module.scss -------------------------------------------------------------------------------- /axelor-front/src/views/cards/cards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/cards/cards.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/cards/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./cards"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/cards/use-card-classname.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/cards/use-card-classname.ts -------------------------------------------------------------------------------- /axelor-front/src/views/chart/builder/chart.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/chart/builder/chart.module.scss -------------------------------------------------------------------------------- /axelor-front/src/views/chart/builder/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/chart/builder/chart.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/chart/builder/echarts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/chart/builder/echarts.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/chart/builder/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/chart/builder/hooks.ts -------------------------------------------------------------------------------- /axelor-front/src/views/chart/builder/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/chart/builder/index.ts -------------------------------------------------------------------------------- /axelor-front/src/views/chart/builder/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/chart/builder/types.ts -------------------------------------------------------------------------------- /axelor-front/src/views/chart/builder/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/chart/builder/utils.ts -------------------------------------------------------------------------------- /axelor-front/src/views/chart/chart.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/chart/chart.module.scss -------------------------------------------------------------------------------- /axelor-front/src/views/chart/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/chart/chart.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/chart/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./chart"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/chart/widgets/area/index.ts: -------------------------------------------------------------------------------- 1 | 2 | export { Line as Area } from "../line" -------------------------------------------------------------------------------- /axelor-front/src/views/chart/widgets/bar/bar-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/chart/widgets/bar/bar-group.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/chart/widgets/bar/bar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/chart/widgets/bar/bar.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/chart/widgets/bar/index.ts: -------------------------------------------------------------------------------- 1 | export * from './bar'; -------------------------------------------------------------------------------- /axelor-front/src/views/chart/widgets/donut/donut.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/chart/widgets/donut/donut.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/chart/widgets/donut/index.ts: -------------------------------------------------------------------------------- 1 | export * from './donut'; -------------------------------------------------------------------------------- /axelor-front/src/views/chart/widgets/funnel/funnel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/chart/widgets/funnel/funnel.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/chart/widgets/funnel/index.ts: -------------------------------------------------------------------------------- 1 | export * from './funnel'; -------------------------------------------------------------------------------- /axelor-front/src/views/chart/widgets/gauge/gauge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/chart/widgets/gauge/gauge.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/chart/widgets/gauge/index.ts: -------------------------------------------------------------------------------- 1 | export * from './gauge'; -------------------------------------------------------------------------------- /axelor-front/src/views/chart/widgets/hbar/hbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/chart/widgets/hbar/hbar.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/chart/widgets/hbar/index.ts: -------------------------------------------------------------------------------- 1 | export * from './hbar'; -------------------------------------------------------------------------------- /axelor-front/src/views/chart/widgets/line/index.ts: -------------------------------------------------------------------------------- 1 | export * from './line'; -------------------------------------------------------------------------------- /axelor-front/src/views/chart/widgets/line/line.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/chart/widgets/line/line.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/chart/widgets/pie/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./pie"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/chart/widgets/pie/pie.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/chart/widgets/pie/pie.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/chart/widgets/radar/index.ts: -------------------------------------------------------------------------------- 1 | export * from './radar'; -------------------------------------------------------------------------------- /axelor-front/src/views/chart/widgets/radar/radar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/chart/widgets/radar/radar.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/chart/widgets/scatter/index.ts: -------------------------------------------------------------------------------- 1 | export * from './scatter'; -------------------------------------------------------------------------------- /axelor-front/src/views/chart/widgets/text/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./text"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/chart/widgets/text/text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/chart/widgets/text/text.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/custom/custom.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/custom/custom.module.scss -------------------------------------------------------------------------------- /axelor-front/src/views/custom/custom.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/custom/custom.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/custom/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./custom"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/custom/widgets/report-box/index.ts: -------------------------------------------------------------------------------- 1 | export * from './report-box'; -------------------------------------------------------------------------------- /axelor-front/src/views/custom/widgets/report-table/index.ts: -------------------------------------------------------------------------------- 1 | export * from './report-table'; -------------------------------------------------------------------------------- /axelor-front/src/views/dashboard/dashboard-search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/dashboard/dashboard-search.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/dashboard/dashboard.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/dashboard/dashboard.module.scss -------------------------------------------------------------------------------- /axelor-front/src/views/dashboard/dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/dashboard/dashboard.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/dashboard/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./dashboard"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/dashboard/react-grid-layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/dashboard/react-grid-layout.css -------------------------------------------------------------------------------- /axelor-front/src/views/dashboard/scope.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/dashboard/scope.ts -------------------------------------------------------------------------------- /axelor-front/src/views/dms/builder/dms-details.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/dms/builder/dms-details.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/dms/builder/dms-drag-layer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/dms/builder/dms-drag-layer.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/dms/builder/dms-overlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/dms/builder/dms-overlay.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/dms/builder/dms-tree.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/dms/builder/dms-tree.module.scss -------------------------------------------------------------------------------- /axelor-front/src/views/dms/builder/dms-tree.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/dms/builder/dms-tree.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/dms/builder/dms-upload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/dms/builder/dms-upload.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/dms/builder/handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/dms/builder/handler.ts -------------------------------------------------------------------------------- /axelor-front/src/views/dms/builder/hooks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/dms/builder/hooks.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/dms/builder/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/dms/builder/index.ts -------------------------------------------------------------------------------- /axelor-front/src/views/dms/builder/scope.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/dms/builder/scope.ts -------------------------------------------------------------------------------- /axelor-front/src/views/dms/builder/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/dms/builder/types.ts -------------------------------------------------------------------------------- /axelor-front/src/views/dms/builder/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/dms/builder/utils.ts -------------------------------------------------------------------------------- /axelor-front/src/views/dms/dms.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/dms/dms.module.scss -------------------------------------------------------------------------------- /axelor-front/src/views/dms/dms.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/dms/dms.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/dms/index.ts: -------------------------------------------------------------------------------- 1 | export * from './dms'; -------------------------------------------------------------------------------- /axelor-front/src/views/form/builder/atoms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/builder/atoms.ts -------------------------------------------------------------------------------- /axelor-front/src/views/form/builder/dotted.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/builder/dotted.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/form/builder/form-editors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/builder/form-editors.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/form/builder/form-field.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/builder/form-field.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/form/builder/form-layouts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/builder/form-layouts.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/form/builder/form-providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/builder/form-providers.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/form/builder/form-viewers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/builder/form-viewers.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/form/builder/form-widget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/builder/form-widget.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/form/builder/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/builder/form.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/form/builder/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/builder/hooks.ts -------------------------------------------------------------------------------- /axelor-front/src/views/form/builder/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/builder/index.ts -------------------------------------------------------------------------------- /axelor-front/src/views/form/builder/scope.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/builder/scope.ts -------------------------------------------------------------------------------- /axelor-front/src/views/form/builder/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/builder/types.ts -------------------------------------------------------------------------------- /axelor-front/src/views/form/builder/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/builder/utils.ts -------------------------------------------------------------------------------- /axelor-front/src/views/form/form.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/form.module.scss -------------------------------------------------------------------------------- /axelor-front/src/views/form/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/form.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/form/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./form"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/barcode/barcode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/widgets/barcode/barcode.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/barcode/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./barcode"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/binary-link/index.ts: -------------------------------------------------------------------------------- 1 | export * from './binary-link'; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/binary/binary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/widgets/binary/binary.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/binary/index.ts: -------------------------------------------------------------------------------- 1 | export * from './binary'; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/boolean-radio/index.ts: -------------------------------------------------------------------------------- 1 | export * from './boolean-radio'; -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/boolean-select/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./boolean-select"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/boolean-switch/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./boolean-switch"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/boolean/boolean.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/widgets/boolean/boolean.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/boolean/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./boolean"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/button/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/widgets/button/button.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/button/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/widgets/button/hooks.ts -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/button/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./button"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/code-editor/index.ts: -------------------------------------------------------------------------------- 1 | export * from './code-editor'; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/collaboration/index.ts: -------------------------------------------------------------------------------- 1 | export * from './collaboration'; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/color-picker/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./color-picker"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/dashlet/dashlet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/widgets/dashlet/dashlet.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/dashlet/index.ts: -------------------------------------------------------------------------------- 1 | export * from './dashlet'; -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/date/date-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/widgets/date/date-input.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/date/date.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/widgets/date/date.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/date/index.ts: -------------------------------------------------------------------------------- 1 | export * from './date'; -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/date/mask-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/widgets/date/mask-input.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/date/picker.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/widgets/date/picker.scss -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/date/picker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/widgets/date/picker.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/date/time-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/widgets/date/time-input.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/datetime/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/widgets/datetime/index.ts -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/decimal/decimal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/widgets/decimal/decimal.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/decimal/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/widgets/decimal/hooks.ts -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/decimal/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./decimal"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/drawing/drawing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/widgets/drawing/drawing.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/drawing/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./drawing"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/duration/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./duration"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/email/email.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/widgets/email/email.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/email/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./email"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/eval-ref-select/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./eval-ref-select"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/help/help.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/widgets/help/help.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/help/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./help"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/html/editor.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/widgets/html/editor.jsx -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/html/editor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/widgets/html/editor.scss -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/html/html.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/widgets/html/html.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/html/index.ts: -------------------------------------------------------------------------------- 1 | export * from './html'; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/html/popup/base.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/widgets/html/popup/base.jsx -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/html/popup/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/widgets/html/popup/index.js -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/html/utils.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/widgets/html/utils.jsx -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/html/viewer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/widgets/html/viewer.jsx -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/html/viewer.module.css: -------------------------------------------------------------------------------- 1 | .content { 2 | min-height: 80px; 3 | width: 100%; 4 | } 5 | -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/image-link/index.ts: -------------------------------------------------------------------------------- 1 | export * from './image-link'; -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/image/image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/widgets/image/image.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/image/index.ts: -------------------------------------------------------------------------------- 1 | export * from './image'; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/image/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/widgets/image/utils.ts -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/widgets/index.ts -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/info-button/index.ts: -------------------------------------------------------------------------------- 1 | export * from './info-button'; -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/integer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/widgets/integer/index.ts -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/json-raw/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./json-raw"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/label/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./label"; -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/label/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/widgets/label/label.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/long/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/widgets/long/index.ts -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/mail-followers/index.ts: -------------------------------------------------------------------------------- 1 | export * from './mail-followers'; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/mail-messages/avatar/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './avatar'; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/mail-messages/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./mail-messages" -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/mail-messages/message/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./message"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/many-to-one/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./many-to-one"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/master-detail/index.ts: -------------------------------------------------------------------------------- 1 | export * from './master-detail'; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/multi-select/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./multi-select"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/nav-select/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./nav-select"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/one-to-one/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/widgets/one-to-one/index.ts -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/panel-json/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./panel-json"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/panel-mail/index.ts: -------------------------------------------------------------------------------- 1 | export * from './panel-mail' -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/panel-related/index.ts: -------------------------------------------------------------------------------- 1 | export * from './panel-related'; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/panel-stack/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./panel-stack"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/panel-tabs/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./panel-tabs"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/panel/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./panel"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/panel/panel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/widgets/panel/panel.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/password/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./password"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/phone/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./phone"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/phone/phone.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/widgets/phone/phone.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/phone/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/widgets/phone/utils.ts -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/progress/index.ts: -------------------------------------------------------------------------------- 1 | export * from './progress'; -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/qr-code/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./qr-code"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/qr-code/qr-code.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/widgets/qr-code/qr-code.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/radio-select/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./radio-select"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/rating/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./rating"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/rating/rating.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/widgets/rating/rating.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/ref-select/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/widgets/ref-select/index.ts -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/ref-text/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./ref-text"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/relative-time/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./relative-time"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/selection/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/widgets/selection/hooks.ts -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/selection/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./selection"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/selection/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/widgets/selection/utils.ts -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/separator/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./separator"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/single-select/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./single-select"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/slider/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./slider"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/slider/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/widgets/slider/slider.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/spacer/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./spacer"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/spacer/spacer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/widgets/spacer/spacer.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/static/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./static"; -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/static/static.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/widgets/static/static.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/stepper/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./stepper"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/stepper/step.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/widgets/stepper/step.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/stepper/stepper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/widgets/stepper/stepper.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/string/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./string"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/string/string.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/widgets/string/string.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/string/viewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/widgets/string/viewer.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/suggest-box/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./suggest-box"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/switch-select/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./switch-select"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/tag-select/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/widgets/tag-select/index.ts -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/tag/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./tag"; -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/tag/tag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/widgets/tag/tag.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/tags/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./tags"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/tags/tags.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/widgets/tags/tags.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/text/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/widgets/text/index.ts -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/text/text.edit.module.css: -------------------------------------------------------------------------------- 1 | .input > * { 2 | width: 100%; 3 | } 4 | -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/text/text.edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/widgets/text/text.edit.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/text/text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/widgets/text/text.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/theme-builder/index.ts: -------------------------------------------------------------------------------- 1 | export * from './theme-builder'; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/theme-select/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./theme-select"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/time/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./time"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/time/time.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/widgets/time/time.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/toggle/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./toggle"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/toggle/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/widgets/toggle/toggle.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/url/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./url"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/url/url.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/widgets/url/url.module.scss -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/url/url.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/widgets/url/url.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/url/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/form/widgets/url/utils.ts -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/widget-select/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./widget-select"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/form/widgets/wkf-status/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./wkf-status"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/gantt/gantt.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/gantt/gantt.module.scss -------------------------------------------------------------------------------- /axelor-front/src/views/gantt/gantt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/gantt/gantt.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/gantt/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./gantt"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/gantt/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/gantt/utils.ts -------------------------------------------------------------------------------- /axelor-front/src/views/grid/builder/customize.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/grid/builder/customize.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/grid/builder/details.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/grid/builder/details.module.scss -------------------------------------------------------------------------------- /axelor-front/src/views/grid/builder/details.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/grid/builder/details.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/grid/builder/expandable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/grid/builder/expandable.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/grid/builder/grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/grid/builder/grid.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/grid/builder/index.ts: -------------------------------------------------------------------------------- 1 | export * from './grid'; -------------------------------------------------------------------------------- /axelor-front/src/views/grid/builder/mass-update.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/grid/builder/mass-update.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/grid/builder/scope.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/grid/builder/scope.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/grid/builder/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/grid/builder/types.ts -------------------------------------------------------------------------------- /axelor-front/src/views/grid/builder/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/grid/builder/utils.ts -------------------------------------------------------------------------------- /axelor-front/src/views/grid/grid.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/grid/grid.module.scss -------------------------------------------------------------------------------- /axelor-front/src/views/grid/grid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/grid/grid.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/grid/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./grid"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/grid/renderers/cell/cell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/grid/renderers/cell/cell.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/grid/renderers/cell/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./cell"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/grid/renderers/form/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/grid/renderers/form/form.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/grid/renderers/form/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./form"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/grid/renderers/row/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./row"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/grid/renderers/row/row.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/grid/renderers/row/row.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/grid/renderers/search/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/grid/renderers/search/index.ts -------------------------------------------------------------------------------- /axelor-front/src/views/grid/renderers/search/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/grid/renderers/search/types.ts -------------------------------------------------------------------------------- /axelor-front/src/views/grid/renderers/search/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/grid/renderers/search/utils.ts -------------------------------------------------------------------------------- /axelor-front/src/views/grid/widgets/binary-link/index.ts: -------------------------------------------------------------------------------- 1 | export * from './binary-link'; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/grid/widgets/boolean/boolean.module.scss: -------------------------------------------------------------------------------- 1 | .checkbox { 2 | pointer-events: none; 3 | } -------------------------------------------------------------------------------- /axelor-front/src/views/grid/widgets/boolean/boolean.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/grid/widgets/boolean/boolean.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/grid/widgets/boolean/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./boolean"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/grid/widgets/button/button.module.scss: -------------------------------------------------------------------------------- 1 | .readonly { 2 | opacity: 0.45; 3 | } -------------------------------------------------------------------------------- /axelor-front/src/views/grid/widgets/button/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/grid/widgets/button/button.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/grid/widgets/button/index.ts: -------------------------------------------------------------------------------- 1 | export * from './button'; -------------------------------------------------------------------------------- /axelor-front/src/views/grid/widgets/button/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/grid/widgets/button/utils.ts -------------------------------------------------------------------------------- /axelor-front/src/views/grid/widgets/color-picker/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./color-picker"; -------------------------------------------------------------------------------- /axelor-front/src/views/grid/widgets/delete-icon/index.ts: -------------------------------------------------------------------------------- 1 | export * from './delete-icon'; -------------------------------------------------------------------------------- /axelor-front/src/views/grid/widgets/edit-icon/index.ts: -------------------------------------------------------------------------------- 1 | export * from './edit-icon'; -------------------------------------------------------------------------------- /axelor-front/src/views/grid/widgets/email/email.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/grid/widgets/email/email.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/grid/widgets/email/index.ts: -------------------------------------------------------------------------------- 1 | export * from './email'; -------------------------------------------------------------------------------- /axelor-front/src/views/grid/widgets/html/html.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/grid/widgets/html/html.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/grid/widgets/html/index.ts: -------------------------------------------------------------------------------- 1 | export * from './html'; -------------------------------------------------------------------------------- /axelor-front/src/views/grid/widgets/icon/icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/grid/widgets/icon/icon.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/grid/widgets/icon/index.ts: -------------------------------------------------------------------------------- 1 | export * from './icon'; -------------------------------------------------------------------------------- /axelor-front/src/views/grid/widgets/image-select/index.ts: -------------------------------------------------------------------------------- 1 | export * from './image-select'; -------------------------------------------------------------------------------- /axelor-front/src/views/grid/widgets/image/image.module.css: -------------------------------------------------------------------------------- 1 | .image { 2 | max-height: 100%; 3 | width: auto; 4 | } 5 | -------------------------------------------------------------------------------- /axelor-front/src/views/grid/widgets/image/image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/grid/widgets/image/image.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/grid/widgets/image/index.ts: -------------------------------------------------------------------------------- 1 | export * from './image'; -------------------------------------------------------------------------------- /axelor-front/src/views/grid/widgets/image/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/grid/widgets/image/utils.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/grid/widgets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/grid/widgets/index.ts -------------------------------------------------------------------------------- /axelor-front/src/views/grid/widgets/many-to-one/index.ts: -------------------------------------------------------------------------------- 1 | export * from './many-to-one'; -------------------------------------------------------------------------------- /axelor-front/src/views/grid/widgets/multi-select/index.ts: -------------------------------------------------------------------------------- 1 | export * from './multi-select'; -------------------------------------------------------------------------------- /axelor-front/src/views/grid/widgets/new-icon/index.ts: -------------------------------------------------------------------------------- 1 | export * from './new-icon'; -------------------------------------------------------------------------------- /axelor-front/src/views/grid/widgets/phone/index.ts: -------------------------------------------------------------------------------- 1 | export * from './phone'; -------------------------------------------------------------------------------- /axelor-front/src/views/grid/widgets/phone/phone.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/grid/widgets/phone/phone.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/grid/widgets/progress/index.ts: -------------------------------------------------------------------------------- 1 | export * from './progress'; -------------------------------------------------------------------------------- /axelor-front/src/views/grid/widgets/rating/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./rating"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/grid/widgets/rating/rating.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/grid/widgets/rating/rating.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/grid/widgets/single-select/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./single-select"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/grid/widgets/tag-select/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/grid/widgets/tag-select/index.ts -------------------------------------------------------------------------------- /axelor-front/src/views/grid/widgets/tag/index.ts: -------------------------------------------------------------------------------- 1 | export { ManyToOne as Tag } from "../many-to-one"; -------------------------------------------------------------------------------- /axelor-front/src/views/grid/widgets/tags/index.ts: -------------------------------------------------------------------------------- 1 | export * from './tags'; -------------------------------------------------------------------------------- /axelor-front/src/views/grid/widgets/tags/tags.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/grid/widgets/tags/tags.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/grid/widgets/url/index.ts: -------------------------------------------------------------------------------- 1 | export * from './url'; -------------------------------------------------------------------------------- /axelor-front/src/views/grid/widgets/url/url.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/grid/widgets/url/url.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/html/html.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/html/html.module.scss -------------------------------------------------------------------------------- /axelor-front/src/views/html/html.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/html/html.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/html/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./html"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/kanban/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./kanban"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/kanban/kanban-board.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/kanban/kanban-board.module.scss -------------------------------------------------------------------------------- /axelor-front/src/views/kanban/kanban-board.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/kanban/kanban-board.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/kanban/kanban.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/kanban/kanban.module.scss -------------------------------------------------------------------------------- /axelor-front/src/views/kanban/kanban.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/kanban/kanban.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/kanban/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/kanban/types.ts -------------------------------------------------------------------------------- /axelor-front/src/views/kanban/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/kanban/utils.ts -------------------------------------------------------------------------------- /axelor-front/src/views/search/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./search"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/search/search-objects.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/search/search-objects.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/search/search.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/search/search.module.scss -------------------------------------------------------------------------------- /axelor-front/src/views/search/search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/search/search.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/search/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/search/utils.ts -------------------------------------------------------------------------------- /axelor-front/src/views/tree/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/tree/hooks.ts -------------------------------------------------------------------------------- /axelor-front/src/views/tree/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./tree"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/tree/renderers/node-text/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./node-text"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/tree/renderers/node/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./node"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/tree/renderers/node/node.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/tree/renderers/node/node.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/tree/tree.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/tree/tree.module.scss -------------------------------------------------------------------------------- /axelor-front/src/views/tree/tree.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/tree/tree.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/tree/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/tree/types.ts -------------------------------------------------------------------------------- /axelor-front/src/views/tree/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/tree/utils.ts -------------------------------------------------------------------------------- /axelor-front/src/views/tree/widgets/button/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/tree/widgets/button/button.tsx -------------------------------------------------------------------------------- /axelor-front/src/views/tree/widgets/button/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./button"; 2 | -------------------------------------------------------------------------------- /axelor-front/src/views/tree/widgets/image-select/index.ts: -------------------------------------------------------------------------------- 1 | export * from './image-select'; -------------------------------------------------------------------------------- /axelor-front/src/views/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/src/views/types.ts -------------------------------------------------------------------------------- /axelor-front/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /axelor-front/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/tsconfig.json -------------------------------------------------------------------------------- /axelor-front/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/tsconfig.node.json -------------------------------------------------------------------------------- /axelor-front/vite-dev.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/vite-dev.config.ts -------------------------------------------------------------------------------- /axelor-front/vite-staging.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/vite-staging.config.ts -------------------------------------------------------------------------------- /axelor-front/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/vite.config.ts -------------------------------------------------------------------------------- /axelor-front/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-front/vitest.config.ts -------------------------------------------------------------------------------- /axelor-gradle/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-gradle/build.gradle -------------------------------------------------------------------------------- /axelor-gradle/src/test/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-gradle/src/test/resources/logback.xml -------------------------------------------------------------------------------- /axelor-test/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-test/build.gradle -------------------------------------------------------------------------------- /axelor-test/src/test/resources/fixture-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-test/src/test/resources/fixture-test.yaml -------------------------------------------------------------------------------- /axelor-test/src/test/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-test/src/test/resources/logback.xml -------------------------------------------------------------------------------- /axelor-tomcat/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-tomcat/build.gradle -------------------------------------------------------------------------------- /axelor-tools/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-tools/build.gradle -------------------------------------------------------------------------------- /axelor-tools/src/test/resources/changelogs/entries/security.yml: -------------------------------------------------------------------------------- 1 | --- 2 | title: Fix a bug 3 | type: security 4 | -------------------------------------------------------------------------------- /axelor-tools/src/test/resources/domains/User.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-tools/src/test/resources/domains/User.xml -------------------------------------------------------------------------------- /axelor-tools/src/test/resources/domains/domains.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-tools/src/test/resources/domains/domains.xml -------------------------------------------------------------------------------- /axelor-tools/src/test/resources/domains/namespace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-tools/src/test/resources/domains/namespace.xml -------------------------------------------------------------------------------- /axelor-tools/src/test/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-tools/src/test/resources/logback.xml -------------------------------------------------------------------------------- /axelor-tools/src/test/resources/search/User.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-tools/src/test/resources/search/User.xml -------------------------------------------------------------------------------- /axelor-web/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-web/build.gradle -------------------------------------------------------------------------------- /axelor-web/src/main/java/com/axelor/web/AppStartup.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-web/src/main/java/com/axelor/web/AppStartup.java -------------------------------------------------------------------------------- /axelor-web/src/main/resources/i18n/custom_fr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-web/src/main/resources/i18n/custom_fr.csv -------------------------------------------------------------------------------- /axelor-web/src/main/resources/i18n/messages.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-web/src/main/resources/i18n/messages.csv -------------------------------------------------------------------------------- /axelor-web/src/main/resources/i18n/messages_en.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-web/src/main/resources/i18n/messages_en.csv -------------------------------------------------------------------------------- /axelor-web/src/main/resources/i18n/messages_fr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-web/src/main/resources/i18n/messages_fr.csv -------------------------------------------------------------------------------- /axelor-web/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-web/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /axelor-web/src/main/webapp/error-503.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-web/src/main/webapp/error-503.html -------------------------------------------------------------------------------- /axelor-web/src/main/webapp/ico/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-web/src/main/webapp/ico/favicon.ico -------------------------------------------------------------------------------- /axelor-web/src/main/webapp/img/axelor-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-web/src/main/webapp/img/axelor-dark.png -------------------------------------------------------------------------------- /axelor-web/src/main/webapp/img/axelor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-web/src/main/webapp/img/axelor.png -------------------------------------------------------------------------------- /axelor-web/src/test/java/com/axelor/web/TestModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-web/src/test/java/com/axelor/web/TestModule.java -------------------------------------------------------------------------------- /axelor-web/src/test/java/com/axelor/web/db/Address.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-web/src/test/java/com/axelor/web/db/Address.java -------------------------------------------------------------------------------- /axelor-web/src/test/java/com/axelor/web/db/Contact.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-web/src/test/java/com/axelor/web/db/Contact.java -------------------------------------------------------------------------------- /axelor-web/src/test/java/com/axelor/web/db/Title.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-web/src/test/java/com/axelor/web/db/Title.java -------------------------------------------------------------------------------- /axelor-web/src/test/resources/META-INF/persistence.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-web/src/test/resources/META-INF/persistence.xml -------------------------------------------------------------------------------- /axelor-web/src/test/resources/axelor-config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-web/src/test/resources/axelor-config.properties -------------------------------------------------------------------------------- /axelor-web/src/test/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/axelor-web/src/test/resources/logback.xml -------------------------------------------------------------------------------- /changelogs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/changelogs/README.md -------------------------------------------------------------------------------- /changelogs/unreleased/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /documentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/documentation/README.md -------------------------------------------------------------------------------- /documentation/antora-playbook-local.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/documentation/antora-playbook-local.yml -------------------------------------------------------------------------------- /documentation/antora.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/documentation/antora.yml -------------------------------------------------------------------------------- /documentation/modules/ROOT/_attributes.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/documentation/modules/ROOT/_attributes.adoc -------------------------------------------------------------------------------- /documentation/modules/ROOT/nav.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/documentation/modules/ROOT/nav.adoc -------------------------------------------------------------------------------- /documentation/modules/ROOT/pages/_attributes.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/documentation/modules/ROOT/pages/_attributes.adoc -------------------------------------------------------------------------------- /documentation/modules/ROOT/pages/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/documentation/modules/ROOT/pages/index.adoc -------------------------------------------------------------------------------- /documentation/modules/ROOT/pages/migrations.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/documentation/modules/ROOT/pages/migrations.adoc -------------------------------------------------------------------------------- /documentation/modules/ROOT/pages/news.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/documentation/modules/ROOT/pages/news.adoc -------------------------------------------------------------------------------- /documentation/modules/dev-guide/_attributes.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/documentation/modules/dev-guide/_attributes.adoc -------------------------------------------------------------------------------- /documentation/modules/dev-guide/nav.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/documentation/modules/dev-guide/nav.adoc -------------------------------------------------------------------------------- /documentation/modules/dev-guide/pages/_attributes.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/documentation/modules/dev-guide/pages/_attributes.adoc -------------------------------------------------------------------------------- /documentation/modules/dev-guide/pages/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/documentation/modules/dev-guide/pages/index.adoc -------------------------------------------------------------------------------- /documentation/modules/dev-guide/pages/models/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/documentation/modules/dev-guide/pages/models/index.adoc -------------------------------------------------------------------------------- /documentation/modules/dev-guide/pages/modules/i18n.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/documentation/modules/dev-guide/pages/modules/i18n.adoc -------------------------------------------------------------------------------- /documentation/modules/dev-guide/pages/views/cards.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/documentation/modules/dev-guide/pages/views/cards.adoc -------------------------------------------------------------------------------- /documentation/modules/dev-guide/pages/views/charts.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/documentation/modules/dev-guide/pages/views/charts.adoc -------------------------------------------------------------------------------- /documentation/modules/dev-guide/pages/views/custom.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/documentation/modules/dev-guide/pages/views/custom.adoc -------------------------------------------------------------------------------- /documentation/modules/dev-guide/pages/views/form.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/documentation/modules/dev-guide/pages/views/form.adoc -------------------------------------------------------------------------------- /documentation/modules/dev-guide/pages/views/gantt.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/documentation/modules/dev-guide/pages/views/gantt.adoc -------------------------------------------------------------------------------- /documentation/modules/dev-guide/pages/views/grid.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/documentation/modules/dev-guide/pages/views/grid.adoc -------------------------------------------------------------------------------- /documentation/modules/dev-guide/pages/views/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/documentation/modules/dev-guide/pages/views/index.adoc -------------------------------------------------------------------------------- /documentation/modules/dev-guide/pages/views/kanban.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/documentation/modules/dev-guide/pages/views/kanban.adoc -------------------------------------------------------------------------------- /documentation/modules/dev-guide/pages/views/search.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/documentation/modules/dev-guide/pages/views/search.adoc -------------------------------------------------------------------------------- /documentation/modules/dev-guide/pages/views/tree.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/documentation/modules/dev-guide/pages/views/tree.adoc -------------------------------------------------------------------------------- /documentation/modules/getting-started/_attributes.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/documentation/modules/getting-started/_attributes.adoc -------------------------------------------------------------------------------- /documentation/modules/getting-started/nav.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/documentation/modules/getting-started/nav.adoc -------------------------------------------------------------------------------- /documentation/modules/getting-started/pages/idea.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/documentation/modules/getting-started/pages/idea.adoc -------------------------------------------------------------------------------- /documentation/modules/getting-started/pages/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/documentation/modules/getting-started/pages/index.adoc -------------------------------------------------------------------------------- /documentation/modules/getting-started/pages/vscode.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/documentation/modules/getting-started/pages/vscode.adoc -------------------------------------------------------------------------------- /documentation/modules/tutorial/_attributes.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/documentation/modules/tutorial/_attributes.adoc -------------------------------------------------------------------------------- /documentation/modules/tutorial/nav.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/documentation/modules/tutorial/nav.adoc -------------------------------------------------------------------------------- /documentation/modules/tutorial/pages/_attributes.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/documentation/modules/tutorial/pages/_attributes.adoc -------------------------------------------------------------------------------- /documentation/modules/tutorial/pages/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/documentation/modules/tutorial/pages/index.adoc -------------------------------------------------------------------------------- /documentation/modules/tutorial/pages/step1.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/documentation/modules/tutorial/pages/step1.adoc -------------------------------------------------------------------------------- /documentation/modules/tutorial/pages/step2.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/documentation/modules/tutorial/pages/step2.adoc -------------------------------------------------------------------------------- /documentation/modules/tutorial/pages/step3.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/documentation/modules/tutorial/pages/step3.adoc -------------------------------------------------------------------------------- /documentation/modules/tutorial/pages/step4.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/documentation/modules/tutorial/pages/step4.adoc -------------------------------------------------------------------------------- /documentation/modules/tutorial/pages/step5.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/documentation/modules/tutorial/pages/step5.adoc -------------------------------------------------------------------------------- /documentation/modules/tutorial/pages/step6.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/documentation/modules/tutorial/pages/step6.adoc -------------------------------------------------------------------------------- /documentation/modules/tutorial/pages/step7.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/documentation/modules/tutorial/pages/step7.adoc -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.parallel=true 2 | -------------------------------------------------------------------------------- /gradle/common.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/gradle/common.gradle -------------------------------------------------------------------------------- /gradle/deps-versions.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/gradle/deps-versions.gradle -------------------------------------------------------------------------------- /gradle/jacoco.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/gradle/jacoco.gradle -------------------------------------------------------------------------------- /gradle/javadoc.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/gradle/javadoc.gradle -------------------------------------------------------------------------------- /gradle/libs.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/gradle/libs.gradle -------------------------------------------------------------------------------- /gradle/license/header-xml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/gradle/license/header-xml.txt -------------------------------------------------------------------------------- /gradle/license/header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/gradle/license/header.txt -------------------------------------------------------------------------------- /gradle/repos.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/gradle/repos.gradle -------------------------------------------------------------------------------- /gradle/style.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/gradle/style.gradle -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/settings.gradle -------------------------------------------------------------------------------- /version.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axelor/axelor-open-platform/HEAD/version.gradle -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | 8.0.1 2 | --------------------------------------------------------------------------------