@flower-city-online/itinerary-lib 0.0.16 → 0.0.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,40 +1,40 @@
1
- {
2
- "name": "@flower-city-online/itinerary-lib",
3
- "version": "0.0.16",
4
- "scripts": {
5
- "build:css": "tailwindcss -i src/lib/styles/tailwind.scss -o dist/assets/my-lib.css --minify",
6
- "build": "ng-packagr -p ng-package.json && npm run build:css"
7
- },
8
- "peerDependencies": {
9
- "@angular/animations": "^17.3.12",
10
- "@angular/cdk": "^17.3.10",
11
- "@angular/common": "^17.3.12",
12
- "@angular/compiler": "^17.3.12",
13
- "@angular/core": "^17.3.12",
14
- "@angular/forms": "^17.3.12",
15
- "@angular/google-maps": "^17.3.12",
16
- "@angular/material": "^17.3.12",
17
- "@angular/material-moment-adapter": "^17.3.12",
18
- "@angular/platform-browser": "^17.3.12",
19
- "@angular/platform-browser-dynamic": "^17.3.12",
20
- "@angular/router": "^17.3.12",
21
- "@fortawesome/fontawesome-free": "^6.5.2",
22
- "@ionic/angular": "^8.7.3",
23
- "@ionic/core": "^8.7.3",
24
- "@ngx-translate/core": "^15.0.0",
25
- "@ngx-translate/http-loader": "^8.0.0",
26
- "d3": "^7.9.0",
27
- "moment": "^2.30.1",
28
- "@naniteninja/ionic-lib": "^1.0.206",
29
- "ngx-bootstrap": "^12.0.0",
30
- "ngx-quill": "^25.3.2",
31
- "rxjs": "^7.8.2",
32
- "swiper": "^11.2.10",
33
- "tslib": "^2.6.2",
34
- "zone.js": "~0.14.10"
35
- },
36
- "dependencies": {
37
- "tslib": "^2.3.0"
38
- },
39
- "sideEffects": false
40
- }
1
+ {
2
+ "name": "@flower-city-online/itinerary-lib",
3
+ "version": "0.0.18",
4
+ "scripts": {
5
+ "build:css": "tailwindcss -i src/lib/styles/tailwind.scss -o dist/assets/my-lib.css --minify",
6
+ "build": "ng-packagr -p ng-package.json && npm run build:css"
7
+ },
8
+ "peerDependencies": {
9
+ "@angular/animations": "^17.3.12",
10
+ "@angular/cdk": "^17.3.10",
11
+ "@angular/common": "^17.3.12",
12
+ "@angular/compiler": "^17.3.12",
13
+ "@angular/core": "^17.3.12",
14
+ "@angular/forms": "^17.3.12",
15
+ "@angular/google-maps": "^17.3.10",
16
+ "@angular/material": "^17.3.10",
17
+ "@angular/material-moment-adapter": "^17.3.10",
18
+ "@angular/platform-browser": "^17.3.12",
19
+ "@angular/platform-browser-dynamic": "^17.3.12",
20
+ "@angular/router": "^17.3.12",
21
+ "@fortawesome/fontawesome-free": "^6.5.2",
22
+ "@ionic/angular": "^8.7.3",
23
+ "@ionic/core": "^8.7.3",
24
+ "@ngx-translate/core": "^15.0.0",
25
+ "@ngx-translate/http-loader": "^8.0.0",
26
+ "d3": "^7.9.0",
27
+ "moment": "^2.30.1",
28
+ "@naniteninja/ionic-lib": "^1.0.206",
29
+ "ngx-bootstrap": "^12.0.0",
30
+ "ngx-quill": "^25.3.2",
31
+ "rxjs": "^7.8.2",
32
+ "swiper": "^11.2.10",
33
+ "tslib": "^2.6.2",
34
+ "zone.js": "~0.14.10"
35
+ },
36
+ "dependencies": {
37
+ "tslib": "^2.3.0"
38
+ },
39
+ "sideEffects": false
40
+ }
@@ -1,6 +1,6 @@
1
1
  import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
2
2
  import { FormsModule, ReactiveFormsModule } from '@angular/forms';
3
- import { TranslateLoader, TranslateModule } from '@ngx-translate/core';
3
+ import { TranslateModule } from '@ngx-translate/core';
4
4
  import { MatDialogModule } from '@angular/material/dialog';
5
5
  import {
6
6
  ButtonsModule,
@@ -10,39 +10,21 @@ import {
10
10
  } from '@naniteninja/ionic-lib';
11
11
  import { ItineraryLibRoutingModule } from './itinerary-lib-routing.module';
12
12
  import { ItineraryLibComponent } from './itinerary-lib.component';
13
- import { provideAnimationsAsync } from '@angular/platform-browser/animations/async';
14
- import { HttpBackend, HttpClient } from '@angular/common/http';
15
- import { TranslateHttpLoader } from '@ngx-translate/http-loader';
16
13
  import { UserModule } from './modules/user/user.module';
17
- import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
18
- import { BrowserModule } from '@angular/platform-browser';
19
14
  import { NextsapienComponentLibModule } from '@naniteninja/ionic-lib';
20
15
  import { IonicModule } from '@ionic/angular';
21
- import { provideIonicAngular } from '@ionic/angular/standalone';
22
-
23
- export const httpLoaderFactory = (http: HttpBackend): TranslateHttpLoader =>
24
- new TranslateHttpLoader(new HttpClient(http), './assets/i18n/', '.json');
25
16
 
26
17
  @NgModule({
27
18
  declarations: [ItineraryLibComponent],
28
19
  imports: [
29
- BrowserModule,
30
- TranslateModule.forRoot({
31
- defaultLanguage: 'en',
32
- loader: {
33
- provide: TranslateLoader,
34
- useFactory: httpLoaderFactory,
35
- deps: [HttpBackend],
36
- },
37
- }),
20
+ TranslateModule,
38
21
  ButtonsModule,
39
22
  FormsModule,
40
- IonicModule.forRoot(),
23
+ IonicModule,
41
24
  ReactiveFormsModule,
42
25
  LibModalModule,
43
26
  ToggleModule,
44
27
  RangeSelectorModule,
45
- BrowserAnimationsModule,
46
28
  MatDialogModule,
47
29
  UserModule,
48
30
  ItineraryLibRoutingModule,
@@ -50,6 +32,5 @@ export const httpLoaderFactory = (http: HttpBackend): TranslateHttpLoader =>
50
32
  ],
51
33
  exports: [ItineraryLibComponent, ItineraryLibRoutingModule],
52
34
  schemas: [CUSTOM_ELEMENTS_SCHEMA],
53
- providers: [provideAnimationsAsync(), provideIonicAngular()],
54
35
  })
55
36
  export class ItineraryLibModule { }