Skip to content

Commit

Permalink
update formio to version for angular 14
Browse files Browse the repository at this point in the history
  • Loading branch information
kbeyro committed Feb 15, 2024
1 parent 0b9fa28 commit d59be9c
Show file tree
Hide file tree
Showing 7 changed files with 646 additions and 1,225 deletions.
1,858 changes: 639 additions & 1,219 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@
"@angular/platform-browser-dynamic": "14.3.0",
"@angular/router": "14.3.0",
"@auth0/angular-jwt": "^5.0.2",
"@formio/angular": "^5.4.0-rc.2",
"@ngx-translate/core": "^13.0.0",
"@ngx-translate/http-loader": "^6.0.0",
"@types/semver": "^7.3.8",
"@types/zxcvbn": "^4.4.1",
"ajv": "^6.12.6",
"angular-formio": "^4.11.5",
"angular-password-strength-meter": "3.0.1",
"bootstrap": "^3.4.1",
"document-register-element": "^1.14.10",
Expand Down
2 changes: 1 addition & 1 deletion src/app/appmarket/appinstance/appinstance.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ import {AppAbortModalComponent} from './modals/app-abort-modal';
import {AppUpgradeModalComponent} from './modals/app-upgrade-modal';
import {TranslateModule} from '@ngx-translate/core';
import {NgxPaginationModule} from 'ngx-pagination';
import {FormioAppConfig, FormioModule} from 'angular-formio';
import {AppConfig} from '../../../formio-config';
import {AccessMethodsModalComponent} from './modals/access-methods-modal/access-methods-modal.component';
import {SshShellComponent} from './ssh-shell/ssh-shell.component';
Expand All @@ -35,6 +34,7 @@ import {DropdownModule} from 'primeng/dropdown';
import {TimelineModule} from 'primeng/timeline';
import {ButtonModule} from 'primeng/button';
import {AppLogAccessComponent} from './app-log-access/app-log-access.component';
import {FormioAppConfig, FormioModule} from '@formio/angular';

@NgModule({
declarations: [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {TranslateFakeLoader, TranslateLoader, TranslateModule, TranslateService}
import {AppConfigService, AppImagesService, AppInstanceService, AppsService, DomainService} from '../../../service';
import {AuthService} from '../../../auth/auth.service';
import {of} from 'rxjs';
import {FormioModule} from 'angular-formio';
import {FormioModule} from '@formio/angular';
import {AppInstanceProgressComponent} from '../appinstanceprogress';
import {PipesModule} from '../../../pipe/pipes.module';
import {NgxPaginationModule} from 'ngx-pagination';
Expand Down
2 changes: 1 addition & 1 deletion src/app/appmarket/appmanagement/app-management.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {StepsModule} from 'primeng/steps';
import {BrowserAnimationsModule} from '@angular/platform-browser/animations';
import {AppCreateWizardComponent} from './app-create-wizard/app-create-wizard.component';
import {InternationalizationService} from '../../service/internationalization.service';
import {FormioAppConfig, FormioModule} from 'angular-formio';
import {FormioAppConfig, FormioModule} from '@formio/angular';
import {ConfigTemplateService} from '../../service/configtemplate.service';
import {AppChangeStateModalComponent} from './app-change-state-modal/appchangestatemodal.component';
import {AppPreviewComponent} from './app-preview/apppreview.component';
Expand Down
2 changes: 1 addition & 1 deletion src/app/shared/contact/contact.component.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {TranslateFakeLoader, TranslateLoader, TranslateModule} from '@ngx-transl
import {ReCaptchaV3Service} from 'ng-recaptcha';
import {NotificationService} from '../../service/notification.service';
import {of, ReplaySubject} from 'rxjs';
import {FormioModule} from 'angular-formio';
import {FormioModule} from '@formio/angular';
import {ContactFormService} from '../../service/contact-form.service';
import {EventEmitter} from '@angular/core';
import {FormsModule, ReactiveFormsModule} from '@angular/forms';
Expand Down
3 changes: 2 additions & 1 deletion src/app/shared/shared.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ import {SshKeysComponent} from './users/ssh-keys/ssh-keys.component';
import {NewSshKeyComponent} from './users/new-ssh-key/new-ssh-key.component';
import {ModalProvideSshKeyComponent} from './modal/modal-provide-ssh-key/modal-provide-ssh-key.component';
import { ContactComponent } from './contact/contact.component';
import {FormioModule} from 'angular-formio';
import {FormioAppConfig, FormioModule} from '@formio/angular';
import { PreferencesComponent } from './users/preferences/preferences.component';
import {TooltipModule} from 'primeng/tooltip';
import {DropdownModule} from 'primeng/dropdown';
Expand All @@ -75,6 +75,7 @@ import {InputTextModule} from 'primeng/inputtext';
TooltipModule,
DropdownModule,
InputTextModule,
FormioModule,
],
declarations: [
RateComponent,
Expand Down

0 comments on commit d59be9c

Please sign in to comment.