Skip to content

Commit

Permalink
Merge branch 'development' into WRPD-enhancement-325
Browse files Browse the repository at this point in the history
  • Loading branch information
PritamIT2023 authored Aug 24, 2024
2 parents 06eeb5f + 5ac23c6 commit c7b8937
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 10 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

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.523](https://github.com/wrappid/core/compare/v0.0.522...v0.0.523) (2024-08-24)


### Bug Fixes

* **global:** :bug: fix validProps of oreCheckbox ([c4ecaad](https://github.com/wrappid/core/commit/c4ecaad08999ce40047b3560abd80224bb86d835)), closes [#323](https://github.com/wrappid/core/issues/323)

### [0.0.522](https://github.com/wrappid/core/compare/v0.0.521...v0.0.522) (2024-08-24)


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.522",
"version": "0.0.523",
"description": "Multi platform app builder core package.",
"main": "index.js",
"scripts": {
Expand Down
14 changes: 10 additions & 4 deletions package/components/inputs/CoreCheckbox.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ CoreCheckbox.validProps = [
{
description: "The icon to display when the component is checked.",
name : "checkedIcon",
types : [{ default: <CoreIcon>check_box</CoreIcon>, type: "object" }],
types : [{ default: <CoreIcon>check_box</CoreIcon>, type: "node" }],
},

{
Expand Down Expand Up @@ -66,7 +66,7 @@ CoreCheckbox.validProps = [
{
description: "The icon to display when the component is unchecked.",
name : "icon",
types : [{ default: <CoreIcon>check_box_outline_blank</CoreIcon>, type: "object" }],
types : [{ default: <CoreIcon>check_box_outline_blank</CoreIcon>, type: "node" }],
},
{
description: "The id of the input element.",
Expand All @@ -93,7 +93,7 @@ CoreCheckbox.validProps = [
{
description: "The icon to display when the component is indeterminate.",
name : "indeterminateIcon",
types : [{ default: <CoreIcon>indeterminate_check_box</CoreIcon>, type: "object" }],
types : [{ default: <CoreIcon>indeterminate_check_box</CoreIcon>, type: "node" }],
},
{
description: "Attributes applied to the input element.",
Expand All @@ -120,7 +120,13 @@ CoreCheckbox.validProps = [
description:
"The size of the component. small is equivalent to the dense checkbox styling.",
name : "size",
types: [{ default: "medium'", type: "medium'| 'small'| string" }],
types: [
{
default : "medium",
type : "string",
validValues: ["medium", "small"],
},
]
},
{
description: "The value of the component. The DOM API casts this to a string. The browser uses \"on\" as the default value.",
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.522",
"version": "0.0.523",
"description": "Multi platform app builder core package.",
"main": "index.js",
"scripts": {},
Expand Down

0 comments on commit c7b8937

Please sign in to comment.