Skip to content

Commit

Permalink
馃敡 chore(docs): fix sandbox for angular (#1381)
Browse files Browse the repository at this point in the history
fix sandbox
  • Loading branch information
hirsch88 committed Apr 15, 2024
1 parent f92a1eb commit 0f7cae7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/public/assets/code/angular/package.json
Expand Up @@ -20,7 +20,7 @@
"@angular/platform-browser": "15.2.1",
"@angular/platform-browser-dynamic": "15.2.1",
"@angular/router": "15.2.1",
"@baloise/ds-angular": "latest",
"@baloise/ds-angular-module": "latest",
"@baloise/ds-styles": "latest",
"core-js": "3.26.1",
"rxjs": "7.6.0",
Expand Down
Expand Up @@ -2,7 +2,7 @@ import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'
import { FormsModule } from '@angular/forms'
import { BrowserModule } from '@angular/platform-browser'

import { BaloiseDesignSystemModule } from '@baloise/ds-angular'
import { BaloiseDesignSystemModule } from '@baloise/ds-angular-module'

import { AppComponent } from './app.component'

Expand Down
2 changes: 1 addition & 1 deletion docs/public/assets/code/angular/src/app/app.module.ts
Expand Up @@ -2,7 +2,7 @@ import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'
import { FormsModule } from '@angular/forms'
import { BrowserModule } from '@angular/platform-browser'

import { BaloiseDesignSystemModule } from '@baloise/ds-angular'
import { BaloiseDesignSystemModule } from '@baloise/ds-angular-module'

import { AppComponent } from './app.component'
import { ExampleComponent } from './example.component'
Expand Down
@@ -1,6 +1,6 @@
import { CommonModule } from '@angular/common'
import { Component, CUSTOM_ELEMENTS_SCHEMA, ChangeDetectionStrategy } from '@angular/core'
import { BaloiseDesignSystemModule } from '@baloise/ds-angular'
import { BaloiseDesignSystemModule } from '@baloise/ds-angular-module'
/** PLACEHOLDER FOR DESIGN SYSTEM IMPORTS */

@Component({
Expand Down

0 comments on commit 0f7cae7

Please sign in to comment.