Skip to content

Commit

Permalink
Merge branch 'main' into fix/editContainedButtonHeight
Browse files Browse the repository at this point in the history
  • Loading branch information
wallypark710 authored Mar 8, 2024
2 parents 4b3db69 + d56e91a commit f89648f
Show file tree
Hide file tree
Showing 23 changed files with 42 additions and 15 deletions.
2 changes: 2 additions & 0 deletions packages/utils-eslint-config/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).

### [0.89.8](https://github.com/pedaling/opensource/compare/utils-eslint-config-0.89.7...utils-eslint-config-0.89.8) (2024-03-07)

### [0.89.7](https://github.com/pedaling/opensource/compare/utils-eslint-config-0.89.6...utils-eslint-config-0.89.7) (2024-03-06)

### [0.89.6](https://github.com/pedaling/opensource/compare/utils-eslint-config-0.89.5...utils-eslint-config-0.89.6) (2024-02-29)
Expand Down
2 changes: 1 addition & 1 deletion packages/utils-eslint-config/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@class101/eslint-config",
"version": "0.89.7",
"version": "0.89.8",
"private": false,
"sideEffects": false,
"main": "src/index.js",
Expand Down
2 changes: 2 additions & 0 deletions packages/vibrant-components-web/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).

### [0.92.8](https://github.com/pedaling/opensource/compare/vibrant-components-web-0.92.7...vibrant-components-web-0.92.8) (2024-03-07)

### [0.92.7](https://github.com/pedaling/opensource/compare/vibrant-components-web-0.92.6...vibrant-components-web-0.92.7) (2024-03-06)

### [0.92.6](https://github.com/pedaling/opensource/compare/vibrant-components-web-0.92.5...vibrant-components-web-0.92.6) (2024-02-29)
Expand Down
2 changes: 1 addition & 1 deletion packages/vibrant-components-web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vibrant-ui/components-web",
"version": "0.92.7",
"version": "0.92.8",
"private": false,
"sideEffects": false,
"peerDependencies": {
Expand Down
2 changes: 2 additions & 0 deletions packages/vibrant-components/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).

### [0.92.8](https://github.com/pedaling/opensource/compare/vibrant-components-0.92.7...vibrant-components-0.92.8) (2024-03-07)

### [0.92.7](https://github.com/pedaling/opensource/compare/vibrant-components-0.92.6...vibrant-components-0.92.7) (2024-03-06)


Expand Down
2 changes: 1 addition & 1 deletion packages/vibrant-components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vibrant-ui/components",
"version": "0.92.7",
"version": "0.92.8",
"private": false,
"sideEffects": false,
"peerDependencies": {
Expand Down
7 changes: 7 additions & 0 deletions packages/vibrant-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).

### [0.92.8](https://github.com/pedaling/opensource/compare/vibrant-core-0.92.7...vibrant-core-0.92.8) (2024-03-07)


### Bug Fixes

* 이미지 key가 중복되는 문제를 해결한다 ([#946](https://github.com/pedaling/opensource/issues/946)) ([482d296](https://github.com/pedaling/opensource/commit/482d296606743433ce3db66299b7686e09c664de))

### [0.92.7](https://github.com/pedaling/opensource/compare/vibrant-core-0.92.6...vibrant-core-0.92.7) (2024-03-06)

### [0.92.6](https://github.com/pedaling/opensource/compare/vibrant-core-0.92.5...vibrant-core-0.92.6) (2024-02-29)
Expand Down
2 changes: 1 addition & 1 deletion packages/vibrant-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vibrant-ui/core",
"version": "0.92.7",
"version": "0.92.8",
"private": false,
"sideEffects": false,
"react-native": "index.native",
Expand Down
8 changes: 4 additions & 4 deletions packages/vibrant-core/src/lib/Image/Image.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ export const Image = withImageVariation(
if (ImageComponent) {
return (
<>
{imageProps.map(({ src, display }) => (
{imageProps.map(({ src, display }, index) => (
<ImageComponent
key={src}
key={`${src}_${index}`}
data-testid={testId}
ref={innerRef}
loading={loading}
Expand All @@ -41,12 +41,12 @@ export const Image = withImageVariation(

return (
<>
{imageProps.map(({ src, display }) => (
{imageProps.map(({ src, display }, index) => (
<Box
key={`${src}_${index}`}
as="img"
data-testid={testId}
ref={innerRef}
key={src}
loading={loading}
alt={alt}
src={src}
Expand Down
2 changes: 2 additions & 0 deletions packages/vibrant-forms/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).

### [0.92.8](https://github.com/pedaling/opensource/compare/vibrant-forms-0.92.7...vibrant-forms-0.92.8) (2024-03-07)

### [0.92.7](https://github.com/pedaling/opensource/compare/vibrant-forms-0.92.6...vibrant-forms-0.92.7) (2024-03-06)

### [0.92.6](https://github.com/pedaling/opensource/compare/vibrant-forms-0.92.5...vibrant-forms-0.92.6) (2024-02-29)
Expand Down
2 changes: 1 addition & 1 deletion packages/vibrant-forms/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vibrant-ui/forms",
"version": "0.92.7",
"version": "0.92.8",
"private": false,
"sideEffects": false,
"peerDependencies": {
Expand Down
2 changes: 2 additions & 0 deletions packages/vibrant-icons/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).

### [0.92.8](https://github.com/pedaling/opensource/compare/vibrant-icons-0.92.7...vibrant-icons-0.92.8) (2024-03-07)

### [0.92.7](https://github.com/pedaling/opensource/compare/vibrant-icons-0.92.6...vibrant-icons-0.92.7) (2024-03-06)

### [0.92.6](https://github.com/pedaling/opensource/compare/vibrant-icons-0.92.5...vibrant-icons-0.92.6) (2024-02-29)
Expand Down
2 changes: 1 addition & 1 deletion packages/vibrant-icons/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vibrant-ui/icons",
"version": "0.92.7",
"version": "0.92.8",
"private": false,
"sideEffects": false,
"peerDependencies": {
Expand Down
2 changes: 2 additions & 0 deletions packages/vibrant-layouts/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).

### [0.92.8](https://github.com/pedaling/opensource/compare/vibrant-layouts-0.92.7...vibrant-layouts-0.92.8) (2024-03-07)

### [0.92.7](https://github.com/pedaling/opensource/compare/vibrant-layouts-0.92.6...vibrant-layouts-0.92.7) (2024-03-06)

### [0.92.6](https://github.com/pedaling/opensource/compare/vibrant-layouts-0.92.5...vibrant-layouts-0.92.6) (2024-02-29)
Expand Down
2 changes: 1 addition & 1 deletion packages/vibrant-layouts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vibrant-ui/layouts",
"version": "0.92.7",
"version": "0.92.8",
"private": false,
"sideEffects": false,
"react-native": "index.native",
Expand Down
2 changes: 2 additions & 0 deletions packages/vibrant-motion/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).

### [0.92.8](https://github.com/pedaling/opensource/compare/vibrant-motion-0.92.7...vibrant-motion-0.92.8) (2024-03-07)

### [0.92.7](https://github.com/pedaling/opensource/compare/vibrant-motion-0.92.6...vibrant-motion-0.92.7) (2024-03-06)

### [0.92.6](https://github.com/pedaling/opensource/compare/vibrant-motion-0.92.5...vibrant-motion-0.92.6) (2024-02-29)
Expand Down
2 changes: 1 addition & 1 deletion packages/vibrant-motion/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vibrant-ui/motion",
"version": "0.92.7",
"version": "0.92.8",
"private": false,
"sideEffects": false,
"react-native": "index.native",
Expand Down
2 changes: 2 additions & 0 deletions packages/vibrant-theme/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).

### [0.92.8](https://github.com/pedaling/opensource/compare/vibrant-theme-0.92.7...vibrant-theme-0.92.8) (2024-03-07)

### [0.92.7](https://github.com/pedaling/opensource/compare/vibrant-theme-0.92.6...vibrant-theme-0.92.7) (2024-03-06)

### [0.92.6](https://github.com/pedaling/opensource/compare/vibrant-theme-0.92.5...vibrant-theme-0.92.6) (2024-02-29)
Expand Down
2 changes: 1 addition & 1 deletion packages/vibrant-theme/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vibrant-ui/theme",
"version": "0.92.7",
"version": "0.92.8",
"private": false,
"sideEffects": false,
"peerDependencies": {
Expand Down
2 changes: 2 additions & 0 deletions packages/vibrant-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).

### [0.92.8](https://github.com/pedaling/opensource/compare/vibrant-utils-0.92.7...vibrant-utils-0.92.8) (2024-03-07)

### [0.92.7](https://github.com/pedaling/opensource/compare/vibrant-utils-0.92.6...vibrant-utils-0.92.7) (2024-03-06)

### [0.92.6](https://github.com/pedaling/opensource/compare/vibrant-utils-0.92.5...vibrant-utils-0.92.6) (2024-02-29)
Expand Down
2 changes: 1 addition & 1 deletion packages/vibrant-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vibrant-ui/utils",
"version": "0.92.7",
"version": "0.92.8",
"private": false,
"sideEffects": false,
"peerDependencies": {
Expand Down
2 changes: 2 additions & 0 deletions packages/workspace-plugin/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).

### [0.71.8](https://github.com/pedaling/opensource/compare/workspace-plugin-0.71.7...workspace-plugin-0.71.8) (2024-03-07)

### [0.71.7](https://github.com/pedaling/opensource/compare/workspace-plugin-0.71.6...workspace-plugin-0.71.7) (2024-03-06)

### [0.71.6](https://github.com/pedaling/opensource/compare/workspace-plugin-0.71.5...workspace-plugin-0.71.6) (2024-02-29)
Expand Down
2 changes: 1 addition & 1 deletion packages/workspace-plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@class101/workspace-plugin",
"version": "0.71.7",
"version": "0.71.8",
"main": "src/index.js",
"generators": "./generators.json",
"executors": "./executors.json"
Expand Down

0 comments on commit f89648f

Please sign in to comment.