File tree Expand file tree Collapse file tree 3 files changed +5
-10
lines changed Expand file tree Collapse file tree 3 files changed +5
-10
lines changed Original file line number Diff line number Diff line change 67
67
"demo.vue.ios" : " Runs the Vue demo on iOS." ,
68
68
"watch" : " Watch for changes in the plugin source and re-build."
69
69
}
70
- },
71
- "dependenciesMeta" : {
72
- "@nativescript-community/plugin-seed-tools" : {
73
- "injected" : true
74
- }
75
70
}
76
71
}
Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ Run the following command from the root of your project:
123
123
``` XML
124
124
<Page
125
125
xmlns =" http://schemas.nativescript.org/tns.xsd"
126
- xmlns : CheckBox =" @nstudio/nativescript -checkbox" loaded =" pageLoaded" >
126
+ xmlns : CheckBox =" @nativecript-community/ui -checkbox" loaded =" pageLoaded" >
127
127
<ActionBar title =" Native Checkbox" />
128
128
<StackLayout >
129
129
<CheckBox : CheckBox checked =" checkProp" text =" myCheckText" fillColor =" myCheckColor" id =" myCheckbox" />
@@ -136,7 +136,7 @@ Run the following command from the root of your project:
136
136
137
137
``` typescript
138
138
139
- import { CheckBox } from ' @nstudio/nativescript -checkbox' ;
139
+ import { CheckBox } from ' @nativecript-community/ui -checkbox' ;
140
140
import { topmost } from ' @nativescript/core/ui/frame' ;
141
141
142
142
public toggleCheck () {
@@ -154,7 +154,7 @@ public getCheckProp() {
154
154
### Angular Usage Sample:
155
155
156
156
``` typescript
157
- import { TNSCheckBoxModule } from ' @nstudio/nativescript -checkbox/angular' ;
157
+ import { TNSCheckBoxModule } from ' @nativecript-community/ui -checkbox/angular' ;
158
158
159
159
@NgModule ({
160
160
imports: [TNSCheckBoxModule ]
@@ -193,7 +193,7 @@ In your `main.js` (The file where the root Vue instance is created) register the
193
193
``` js
194
194
Vue .registerElement (
195
195
' CheckBox' ,
196
- () => require (' @nstudio/nativescript -checkbox' ).CheckBox ,
196
+ () => require (' @nativecript-community/ui -checkbox' ).CheckBox ,
197
197
{
198
198
model: {
199
199
prop: ' checked' ,
You can’t perform that action at this time.
0 commit comments