Skip to content

Commit 03427d2

Browse files
committed
Revert "feat: update package versions and adjust import paths for local development"
This reverts commit e73fbe1.
1 parent e73fbe1 commit 03427d2

File tree

4 files changed

+22
-32
lines changed

4 files changed

+22
-32
lines changed

package-lock.json

Lines changed: 18 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

showcases/angular-showcase/src/app/components/breadcrumb/breadcrumb.component.ts

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
import { Component, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
2-
import { DBIcon, DBTooltip } from '../../../../../../output/angular/src';
3-
// TODO: Uncomment after proper breadcrumb component integration
4-
// import {
5-
// DBBreadcrumb,
6-
// DBBreadcrumbItem
7-
// } from '../../../../../../output/angular/src';
2+
// TODO: Uncomment after build-outputs: import { DBBreadcrumb } from '../../../../../../output/angular/src';
3+
import { DBIcon, DBTooltip } from '@db-ux/ngx-core-components/src';
84
import defaultComponentVariants from '../../../../../shared/breadcrumb.json';
95
import { DefaultComponent } from '../default.component';
106

showcases/angular-showcase/src/app/components/default.component.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ import {
88
type TemplateRef
99
} from '@angular/core';
1010
import { ActivatedRoute } from '@angular/router';
11-
// Import from output/angular for local development - this path is mapped in tsconfig.json
1211
import {
1312
COLOR,
1413
COLOR_CONST,
@@ -17,7 +16,7 @@ import {
1716
DBLink,
1817
DENSITY,
1918
DENSITY_CONST
20-
} from '../../../../../output/angular/src';
19+
} from '@db-ux/ngx-core-components/src';
2120
import type {
2221
DefaultComponentProps,
2322
DefaultComponentVariants

showcases/angular-showcase/tsconfig.json

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,7 @@
2020
"target": "ES2022",
2121
"module": "ES2022",
2222
"useDefineForClassFields": false,
23-
"lib": ["ES2022", "dom"],
24-
// Path mappings for local development - maps @db-ux/ngx-core-components to the output/angular directory
25-
"paths": {
26-
"@db-ux/ngx-core-components": ["../../output/angular/src/index.ts"],
27-
"@db-ux/ngx-core-components/*": ["../../output/angular/src/*"]
28-
}
23+
"lib": ["ES2022", "dom"]
2924
},
3025
"angularCompilerOptions": {
3126
"enableI18nLegacyMessageIdFormat": false,

0 commit comments

Comments
 (0)