Skip to content

Commit

Permalink
Merge branch 'development' into WRPD-bugfix-336
Browse files Browse the repository at this point in the history
  • Loading branch information
techoneel authored Aug 29, 2024
2 parents 6dbdb11 + a52ddbd commit 693cb85
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 13 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [0.0.527](https://github.com/wrappid/core/compare/v0.0.526...v0.0.527) (2024-08-29)


### Bug Fixes

* **global:** :bug: fix CoreBackDrop validProps ([387e383](https://github.com/wrappid/core/commit/387e3834cecbc52dfcbf7caea0b36c4d7c152864)), closes [#333](https://github.com/wrappid/core/issues/333)
* **global:** :bug: fix validProps in CoreBackdrop ([d03ebdc](https://github.com/wrappid/core/commit/d03ebdc7450dc3a29f1e648ed93d052b0f575dfd)), closes [#333](https://github.com/wrappid/core/issues/333)

### [0.0.526](https://github.com/wrappid/core/compare/v0.0.525...v0.0.526) (2024-08-29)


Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@wrappid/core",
"version": "0.0.526",
"version": "0.0.527",
"description": "Multi platform app builder core package.",
"main": "index.js",
"scripts": {
Expand Down
9 changes: 2 additions & 7 deletions package/components/feedback/CoreBackdrop.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,14 +105,9 @@ CoreBackdrop.validProps = [
]
},
{
description: "The duration for the transition, in milliseconds. You may specify a single timeout for all transitions, or individually with an object.",
description: "The duration for the transition, in milliseconds. You may specify a single timeout for all transitions, or individually with an object like {appear?: number, enter?: number, exit?: number }.",
name : "transitionDuration",
types : [
{
default: "Fade",
type : "elementType",
}
]
types : [{ type: "number" }, { type: "object" }]
},

];
Expand Down
4 changes: 2 additions & 2 deletions package/package-lock.json

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

2 changes: 1 addition & 1 deletion package/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@wrappid/core",
"version": "0.0.526",
"version": "0.0.527",
"description": "Multi platform app builder core package.",
"main": "index.js",
"scripts": {},
Expand Down

0 comments on commit 693cb85

Please sign in to comment.