Skip to content

Commit 0e27baa

Browse files
committed
chore: project update
1 parent ea27f60 commit 0e27baa

File tree

3 files changed

+5
-10
lines changed

3 files changed

+5
-10
lines changed

demo-ng

package.json

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -67,10 +67,5 @@
6767
"demo.vue.ios": "Runs the Vue demo on iOS.",
6868
"watch": "Watch for changes in the plugin source and re-build."
6969
}
70-
},
71-
"dependenciesMeta": {
72-
"@nativescript-community/plugin-seed-tools": {
73-
"injected": true
74-
}
7570
}
7671
}

packages/checkbox/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ Run the following command from the root of your project:
123123
```XML
124124
<Page
125125
xmlns="http://schemas.nativescript.org/tns.xsd"
126-
xmlns:CheckBox="@nstudio/nativescript-checkbox" loaded="pageLoaded">
126+
xmlns:CheckBox="@nativecript-community/ui-checkbox" loaded="pageLoaded">
127127
<ActionBar title="Native Checkbox" />
128128
<StackLayout>
129129
<CheckBox:CheckBox checked="checkProp" text="myCheckText" fillColor="myCheckColor" id="myCheckbox" />
@@ -136,7 +136,7 @@ Run the following command from the root of your project:
136136

137137
```typescript
138138

139-
import { CheckBox } from '@nstudio/nativescript-checkbox';
139+
import { CheckBox } from '@nativecript-community/ui-checkbox';
140140
import { topmost } from '@nativescript/core/ui/frame';
141141

142142
public toggleCheck() {
@@ -154,7 +154,7 @@ public getCheckProp() {
154154
### Angular Usage Sample:
155155

156156
```typescript
157-
import { TNSCheckBoxModule } from '@nstudio/nativescript-checkbox/angular';
157+
import { TNSCheckBoxModule } from '@nativecript-community/ui-checkbox/angular';
158158

159159
@NgModule({
160160
imports: [TNSCheckBoxModule]
@@ -193,7 +193,7 @@ In your `main.js` (The file where the root Vue instance is created) register the
193193
```js
194194
Vue.registerElement(
195195
'CheckBox',
196-
() => require('@nstudio/nativescript-checkbox').CheckBox,
196+
() => require('@nativecript-community/ui-checkbox').CheckBox,
197197
{
198198
model: {
199199
prop: 'checked',

0 commit comments

Comments
 (0)