Skip to content

Commit 92d3cae

Browse files
committed
Merge branch 'master' of github.com:nativescript-community/nativescript-checkbox
# Conflicts: # .gitignore # .yarnrc.yml # docs/assets/main.js # docs/assets/search.js # docs/assets/style.css # docs/classes/CheckBox.html # docs/index.html # docs/interfaces/CheckBoxInterface.html # docs/modules.html # lerna.json # package.json # yarn.lock
2 parents 94eb7ad + 4d78654 commit 92d3cae

File tree

6 files changed

+25
-3
lines changed

6 files changed

+25
-3
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [2.0.9](https://github.com/@nativescript-community/ui-checkbox/compare/v2.0.8...v2.0.9) (2023-05-24)
7+
8+
9+
### Bug Fixes
10+
11+
* added css class for CheckBox ([248dad7](https://github.com/@nativescript-community/ui-checkbox/commit/248dad7e5e9ecd51113670000a5b206254067e93))
12+
13+
14+
15+
16+
617
## [2.0.8](https://github.com/@nativescript-community/ui-checkbox/compare/v2.0.7...v2.0.8) (2022-05-19)
718

819

demo-snippets/package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
{
22
"name": "@nativescript-community/template-snippet",
3+
"private": true,
34
"version": "0.0.1",
45
"private": true,
56
"dependencies": {
6-
"@nativescript-community/ui-checkbox": "file:../packages/checkbox"
7+
"@nativescript-community/ui-checkbox": "*"
78
}
89
}

docs/.nojekyll

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
TypeDoc added this file to prevent GitHub Pages from using Jekyll. You can turn off this behavior by setting the `githubPages` option to false.

packages/checkbox/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [2.0.9](https://github.com/nativescript-community/ui-checkbox/compare/v2.0.8...v2.0.9) (2023-05-24)
7+
8+
**Note:** Version bump only for package @nativescript-community/ui-checkbox
9+
10+
11+
12+
13+
614
## [2.0.8](https://github.com/nativescript-community/ui-checkbox/compare/v2.0.7...v2.0.8) (2022-05-19)
715

816

packages/checkbox/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nativescript-community/ui-checkbox",
3-
"version": "2.0.8",
3+
"version": "2.0.9",
44
"description": "NativeScript plugin for checkbox.",
55
"main": "./index",
66
"sideEffects": false,

src/checkbox/common.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Button, Color, CssProperty, Property, Style, booleanConverter } from '@nativescript/core';
1+
import { Button, Color, CSSType, CssProperty, Property, Style, booleanConverter } from '@nativescript/core';
22
import { CheckBoxInterface } from '.';
33
export enum BoxType {
44
circle = 'circle',
@@ -37,6 +37,7 @@ export const checkedProperty = new Property<CheckBoxBase, boolean>({
3737
// valueChanged: onCheckedPropertyChanged
3838
});
3939

40+
@CSSType('CheckBox')
4041
export abstract class CheckBoxBase extends Button implements CheckBoxInterface {
4142
checked: boolean;
4243
boxType: any;

0 commit comments

Comments
 (0)