Skip to content

Commit

Permalink
fix: Internal import paths and themes public export paths (#1451)
Browse files Browse the repository at this point in the history
  • Loading branch information
rkaraivanov authored Oct 28, 2024
1 parent 497e022 commit 03e40b7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]
### Fixed
- Library - internal import path for styles and public exports for themes

## [5.1.0] - 2024-10-25
### Added
- Carousel component [#1226](https://github.com/IgniteUI/igniteui-webcomponents/issues/1226)
Expand Down
3 changes: 2 additions & 1 deletion scripts/_package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
".": {
"types": "./index.d.ts",
"default": "./index.js"
}
},
"./themes/*.css": "./themes/*.css"
},
"type": "module",
"sideEffects": false,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { registerComponent } from '../common/definitions/register.js';
import type { IgcFormControl } from '../common/mixins/forms/types.js';
import { isEmpty, partNameMap, toKebabCase } from '../common/util.js';
import IgcIconComponent from '../icon/icon.js';
import { styles as shared } from './themes/shared/validator.common.css';
import { styles as shared } from './themes/shared/validator.common.css.js';
import { all } from './themes/themes.js';
import { styles } from './themes/validator.base.css.js';

Expand Down

0 comments on commit 03e40b7

Please sign in to comment.