Skip to content

Commit 03e40b7

Browse files
authored
fix: Internal import paths and themes public export paths (#1451)
1 parent 497e022 commit 03e40b7

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
66

7+
## [Unreleased]
8+
### Fixed
9+
- Library - internal import path for styles and public exports for themes
10+
711
## [5.1.0] - 2024-10-25
812
### Added
913
- Carousel component [#1226](https://github.com/IgniteUI/igniteui-webcomponents/issues/1226)

scripts/_package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
".": {
1010
"types": "./index.d.ts",
1111
"default": "./index.js"
12-
}
12+
},
13+
"./themes/*.css": "./themes/*.css"
1314
},
1415
"type": "module",
1516
"sideEffects": false,

src/components/validation-container/validation-container.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { registerComponent } from '../common/definitions/register.js';
66
import type { IgcFormControl } from '../common/mixins/forms/types.js';
77
import { isEmpty, partNameMap, toKebabCase } from '../common/util.js';
88
import IgcIconComponent from '../icon/icon.js';
9-
import { styles as shared } from './themes/shared/validator.common.css';
9+
import { styles as shared } from './themes/shared/validator.common.css.js';
1010
import { all } from './themes/themes.js';
1111
import { styles } from './themes/validator.base.css.js';
1212

0 commit comments

Comments
 (0)