Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 2.0.2 #291

Merged
merged 9 commits into from
Nov 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,31 @@
## [2.0.2-next.4](https://github.com/warp-ds/react/compare/v2.0.2-next.3...v2.0.2-next.4) (2024-11-11)


### Bug Fixes

* **tab:** set border on selected tab to fix SSR ([#290](https://github.com/warp-ds/react/issues/290)) ([ee904e9](https://github.com/warp-ds/react/commit/ee904e90d08809f4a43c04c4162b0d5588a22244))

## [2.0.2-next.3](https://github.com/warp-ds/react/compare/v2.0.2-next.2...v2.0.2-next.3) (2024-10-28)


### Bug Fixes

* Minify eik assets ([3e7d09c](https://github.com/warp-ds/react/commit/3e7d09c714675ddd22824c55d4d6fb6c37463a3b))

## [2.0.2-next.2](https://github.com/warp-ds/react/compare/v2.0.2-next.1...v2.0.2-next.2) (2024-10-21)


### Bug Fixes

* **attention:** bump to latest version of @warp-ds/core dependency ([#287](https://github.com/warp-ds/react/issues/287)) ([99ee9a9](https://github.com/warp-ds/react/commit/99ee9a9155b9789eaa058bf9ef7ef94a8c26ad33))

## [2.0.2-next.1](https://github.com/warp-ds/react/compare/v2.0.1...v2.0.2-next.1) (2024-10-18)


### Bug Fixes

* Release fix for nextjs export ordering ([c41ea3b](https://github.com/warp-ds/react/commit/c41ea3b088627d22e881a5ded8d5d545d370117d))

## [2.0.1](https://github.com/warp-ds/react/compare/v2.0.0...v2.0.1) (2024-08-20)


Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ pnpm add @warp-ds/react

#### Using a direct link to Eik
```html
<script src="https://assets.finn.no/pkg/@warp-ds/react/v1"></script>
<script src="https://assets.finn.no/pkg/@warp-ds/react/v2"></script>
```
### Testing

Expand Down
4 changes: 2 additions & 2 deletions esbuild.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ if (version === '17') {
format: 'esm',
sourcemap: true,
target: 'es2017',
minify: false,
minify: true,
});
}

Expand All @@ -40,5 +40,5 @@ await esbuild.build({
format: 'esm',
sourcemap: true,
target: 'es2017',
minify: false,
minify: true,
});
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "@warp-ds/react",
"version": "2.0.1",
"version": "2.0.2-next.4",
"type": "module",
"repository": "[email protected]:warp-ds/react.git",
"license": "Apache-2.0",
"exports": {
".": {
"default": "./dist/npm/index.js",
"import": "./dist/npm/index.js",
"require": "./dist/npm/index.cjs"
"require": "./dist/npm/index.cjs",
"default": "./dist/npm/index.js"
},
"./cjs": "./dist/npm/index.cjs",
"./components/alert": "./dist/npm/packages/alert/index.js",
Expand Down Expand Up @@ -136,8 +136,8 @@
"dependencies": {
"@chbphone55/classnames": "2.0.0",
"@lingui/core": "4.11.2",
"@warp-ds/core": "1.1.5",
"@warp-ds/css": "2.0.0",
"@warp-ds/core": "1.1.7",
"@warp-ds/css": "2.0.1",
"@warp-ds/icons": "2.1.0",
"react-focus-lock": "2.12.1",
"resize-observer-polyfill": "1.5.1",
Expand Down
6 changes: 3 additions & 3 deletions packages/attention/stories/Attention.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export function Callout() {
<Box info>
<h1 aria-details="callout-bubbletext">I am a box full of info</h1>
</Box>
<Attention callout placement="right" isShowing={true} className="ml-8">
<Attention callout placement="right" isShowing={true}>
<p id="callout-bubbletext" style={{ width: 200 }}>
I'm a callout because that box over there is new or something
</p>
Expand All @@ -29,7 +29,7 @@ export function CalloutResettingRoleAndAriaLabel() {
<Box info>
<h1 aria-details="callout-reset-bubbletext">I am a box full of info</h1>
</Box>
<Attention callout role="" aria-label="" placement="right" isShowing={true} className="ml-8">
<Attention callout role="" aria-label="" placement="right" isShowing={true}>
<p id="callout-reset-bubbletext" role="img" style={{ width: 200 }}>
I'm a callout speech bubble with resetted role and aria-label attributes pointing left.
</p>
Expand Down Expand Up @@ -213,7 +213,7 @@ export function PopoverIconAsTargetEl() {
popover
placement="bottom-end"
distance={0}
skidding={2}
skidding={10}
targetEl={targetEl}
isShowing={show}
id="popover-icon-target-el-attention-example">
Expand Down
20 changes: 10 additions & 10 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading