@lunit/oui 1.0.1-alpha.11 → 1.0.1-alpha.13

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/dist/index.js CHANGED
@@ -1,6 +1,5 @@
1
1
  import theme from './theme';
2
- import * as icons from './icons';
3
2
  export { theme };
4
- export { icons };
5
3
  export * from './components';
4
+ export * from './icons';
6
5
  //# sourceMappingURL=index.js.map
@@ -1,5 +1,4 @@
1
1
  import theme from './theme';
2
- import * as icons from './icons';
3
2
  export { theme };
4
- export { icons };
5
3
  export * from './components';
4
+ export * from './icons';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lunit/oui",
3
- "version": "1.0.1-alpha.11",
3
+ "version": "1.0.1-alpha.13",
4
4
  "validate-branch-name": {
5
5
  "pattern": "^(main|develop)|(feature|fix|release|hotfix|qe)/.+$",
6
6
  "errorMsg": "The branch name is not correct. Please check the pattern. (ex. feature/add-something)"
@@ -198,8 +198,19 @@
198
198
  "description": "Lunit Oncology UI components",
199
199
  "main": "dist/index.js",
200
200
  "module": "dist/index.js",
201
+ "types": "dist/types/index.d.ts",
201
202
  "sideEffects": false,
202
203
  "exports": {
204
+ ".": {
205
+ "import": "./dist/index.js",
206
+ "module": "./dist/index.js",
207
+ "default": "./dist/index.js"
208
+ },
209
+ "./*": {
210
+ "import": "./dist/components/*/index.js",
211
+ "module": "./dist/components/*/index.js",
212
+ "default": "./dist/components/*/index.js"
213
+ },
203
214
  "./icons": {
204
215
  "import": "./dist/icons/index.js",
205
216
  "module": "./dist/icons/index.js",
@@ -207,11 +218,11 @@
207
218
  "types": "./dist/types/icons/index.d.ts"
208
219
  }
209
220
  },
210
- "types": "dist/types/index.d.ts",
211
221
  "typesVersions": {
212
222
  "*": {
213
223
  "*": [
214
224
  "dist/types/components/*/index.d.ts",
225
+ "dist/types/icons/*/index.d.ts",
215
226
  "dist/types/index.d.ts"
216
227
  ]
217
228
  }