Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
rdlabo committed Jun 26, 2024
1 parent 1d1213f commit e34b48c
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import {
IonToolbar,
ModalController,
} from '@ionic/angular/standalone';
import { IPhotoEditorDismiss, IPhotoViewerDismiss, PhotoFileService, PhotoViewerPage, PhotoEditorPage } from 'photo-editor';
import { IPhotoEditorDismiss, IPhotoViewerDismiss, PhotoEditorPage, PhotoFileService, PhotoViewerPage } from 'photo-editor';
import { addIcons } from 'ionicons';
import { planetOutline } from 'ionicons/icons';

Expand Down
4 changes: 2 additions & 2 deletions projects/demo/src/app/tabs/tabs.page.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Component, EnvironmentInjector, inject } from '@angular/core';
import { IonTabs, IonTabBar, IonTabButton, IonIcon, IonLabel } from '@ionic/angular/standalone';
import { IonIcon, IonLabel, IonTabBar, IonTabButton, IonTabs } from '@ionic/angular/standalone';
import { addIcons } from 'ionicons';
import { triangle, ellipse, square } from 'ionicons/icons';
import { ellipse, square, triangle } from 'ionicons/icons';

@Component({
selector: 'app-tabs',
Expand Down
2 changes: 1 addition & 1 deletion projects/photo-editor/src/lib/pages/photo-editor.page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import ImageEditor from 'tui-image-editor';
import { filterPreset } from '../filter-preset';
import { Subscription } from 'rxjs';
import { toObservable } from '@angular/core/rxjs-interop';
import { IDictionaryForEditor, IPhotoEditorDismiss, IFilter, ISize } from '../types';
import { IDictionaryForEditor, IFilter, IPhotoEditorDismiss, ISize } from '../types';
import { HelperService } from '../service/helper.service';
import { ionComponents } from '../ion-components';
import { dictionaryForEditor } from '../dictionaries';
Expand Down
12 changes: 1 addition & 11 deletions projects/photo-editor/src/lib/pages/photo-viewer.page.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,4 @@
import {
Component,
CUSTOM_ELEMENTS_SCHEMA,
ElementRef,
inject,
Input,
OnDestroy,
OnInit,
ViewChild,
ViewEncapsulation,
} from '@angular/core';
import { Component, CUSTOM_ELEMENTS_SCHEMA, ElementRef, inject, Input, OnDestroy, OnInit, ViewChild } from '@angular/core';
import { IonicSlides, ModalController } from '@ionic/angular/standalone';
import { Navigation, Zoom } from 'swiper/modules';
import { fromEvent, Subscription, throttleTime, withLatestFrom, zipWith } from 'rxjs';
Expand Down
2 changes: 1 addition & 1 deletion projects/photo-editor/src/lib/service/helper.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ import {
cropOutline,
expandOutline,
refreshOutline,
removeOutline,
send,
squareOutline,
sunnyOutline,
tabletLandscapeOutline,
removeOutline,
} from 'ionicons/icons';

@Injectable()
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { inject, Injectable, signal } from '@angular/core';
import { ActionSheetController, Platform } from '@ionic/angular/standalone';
import { Camera, CameraResultType, CameraSource, ImageOptions } from '@capacitor/camera';
import { GalleryPhotos } from '@capacitor/camera/dist/esm/definitions';
import ImageEditor from 'tui-image-editor';
import { PhotoEditorErrors } from '../photoEditorErrors';
import { dictionaryForService } from '../dictionaries';
Expand Down

0 comments on commit e34b48c

Please sign in to comment.