Skip to content

Commit 7a05dce

Browse files
committed
fix: expose component types for use after bundling
1 parent 6f8d95b commit 7a05dce

29 files changed

Lines changed: 73 additions & 27 deletions

File tree

.changeset/hip-knives-sleep.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
'@sovryn/tailwindcss-config': patch
3+
'@sovryn/tsconfig': patch
4+
'@sovryn/ui': patch
5+
---
6+
7+
SOV-633: fix non exported packages and dependencies

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Release packages
22

33
on:
44
push:
5-
branches: [ "main" ]
5+
branches: [ "dev" ]
66

77
concurrency: ${{ github.workflow }}-${{ github.ref }}
88

packages/ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
"@rollup/plugin-typescript": "8.5.0",
2323
"@sovryn/eslint-config-custom": "*",
2424
"@sovryn/tsconfig": "*",
25+
"@sovryn/tailwindcss-config": "*",
2526
"@storybook/addon-actions": "6.5.9",
2627
"@storybook/addon-essentials": "6.5.9",
2728
"@storybook/addon-interactions": "6.5.9",
@@ -53,7 +54,6 @@
5354
"@fortawesome/fontawesome-svg-core": "6.2.0",
5455
"@fortawesome/free-solid-svg-icons": "6.2.0",
5556
"@fortawesome/react-fontawesome": "0.2.0",
56-
"@sovryn/tailwindcss-config": "*",
5757
"classnames": "2.3.1",
5858
"focus-trap-react": "10.0.0",
5959
"identity-obj-proxy": "3.0.0",
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
export * from './Badge';
2+
export * from './Badge.types';
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
export * from './Button';
2+
export * from './Button.types';
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
export * from './Heading';
2+
export * from './Heading.types';

packages/ui/src/1_atoms/Icon/Icon.types.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ export enum IconNames {
77
ARROW_DOWN = 'arrow-down',
88
ARROW_RIGHT = 'arrow-right',
99
ARROW_FORWARD = 'arrow-forward',
10+
ARROW_BACK = 'arrow-back',
1011
DEPOSIT = 'deposit',
1112
EDIT = 'edit',
1213
FAILED_TX = 'failed-tx',
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
export * from './Icon';
2+
export * from './Icon.types';
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
export * from './Input';
2+
export * from './Input.types';
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
export * from './Link';
2+
export * from './Link.types';

0 commit comments

Comments
 (0)