Skip to content

Commit 698d771

Browse files
Integrated latest changes at 07-05-2024 7:30:09 AM
1 parent 3aad4da commit 698d771

File tree

43 files changed

+192
-84
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+192
-84
lines changed

ej2-vue/code-snippet/list-box/getting-started/getting-started-cs17/app.vue

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,17 @@
66
</div>
77
</template>
88
<script>
9-
import { ListBoxComponent } from "@syncfusion/ej2-vue-dropdowns";
9+
import { ListBoxComponent, CheckBoxSelection } from "@syncfusion/ej2-vue-dropdowns";
1010
1111
export default {
1212
name: "App",
1313
components: {
1414
"ejs-listbox": ListBoxComponent
1515
},
16+
provide: {
17+
// Injecting CheckBoxSelection module
18+
listbox: [CheckBoxSelection]
19+
},
1620
data() {
1721
return {
1822
data: [
@@ -27,7 +31,7 @@ export default {
2731
{ text: 'McLaren P1', id: 'list-09' },
2832
{ text: 'Ferrari LaFerrari', id: 'list-10' },
2933
],
30-
selectionSettings: { mode: "Single" }
34+
selectionSettings: { showCheckbox: true, mode: "Single" }
3135
}
3236
}
3337
}

ej2-vue/code-snippet/list-box/getting-started/getting-started-cs17/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ new Vue({
2929
{ text: 'McLaren P1', id: 'list-09' },
3030
{ text: 'Ferrari LaFerrari', id: 'list-10' },
3131
];
32-
selectionSettings: { mode: "Single" }
32+
selectionSettings: { showCheckbox: true, mode: "Single" }
3333
}
3434
}
3535

ej2-vue/code-snippet/list-box/getting-started/getting-started-cs18/app.vue

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ export default {
1313
components: {
1414
"ejs-listbox": ListBoxComponent
1515
},
16+
provide: {
17+
// Injecting CheckBoxSelection module
18+
listbox: [CheckBoxSelection]
19+
},
1620
data() {
1721
return {
1822
data: [
@@ -27,7 +31,7 @@ export default {
2731
{ text: 'McLaren P1', id: 'list-09' },
2832
{ text: 'Ferrari LaFerrari', id: 'list-10' },
2933
];
30-
selectionSettings: { mode: "Multiple" }
34+
selectionSettings: { showCheckbox: true, mode: "Multiple" }
3135
}
3236
}
3337
}

ej2-vue/code-snippet/list-box/getting-started/getting-started-cs18/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ new Vue({
2929
{ text: 'McLaren P1', id: 'list-09' },
3030
{ text: 'Ferrari LaFerrari', id: 'list-10' },
3131
];
32-
selectionSettings: { mode: "Multiple" }
32+
selectionSettings: { showCheckbox: true, mode: "Multiple" }
3333
}
3434
}
3535

ej2-vue/code-snippet/listview/nested-list-cs1/app-composition.vue

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<div class="control-section">
33
<!-- ListView element -->
44
<ejs-listview id='listview' :dataSource='continent' :fields='fields' :headerTitle='headerTitle'
5-
showHeader='true'></ejs-listview>
5+
showHeader='true' :animation='animation' ></ejs-listview>
66
</div>
77
</template>
88
<script setup>
@@ -239,6 +239,7 @@
239239
];
240240
const fields = { tooltip: 'text' };
241241
const headerTitle = 'Continent';
242+
const animation: { duration:0 };
242243
243244
</script>
244245
<style>
@@ -248,4 +249,4 @@
248249
border: 1px solid #dddddd;
249250
border-radius: 3px;
250251
}
251-
</style>
252+
</style>

ej2-vue/code-snippet/otp-input/accessibility/ariaLabels/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11

22
import Vue from 'vue';
3-
import { OTPInputPlugin } from "@syncfusion/ej2-vue-inputs";
3+
import { OtpInputPlugin } from "@syncfusion/ej2-vue-inputs";
44
import { enableRipple } from '@syncfusion/ej2-base';
55
enableRipple(true);
6-
Vue.use(OTPInputPlugin);
6+
Vue.use(OtpInputPlugin);
77

88

99
new Vue({

ej2-vue/code-snippet/otp-input/accessibility/ariaLabels/systemjs.config.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,13 @@ vue: "https://unpkg.com/vue@2.6.14/dist/vue.min.js",
1818
"@syncfusion/ej2-base": "syncfusion:ej2-base/dist/ej2-base.umd.min.js",
1919
"@syncfusion/ej2-inputs": "syncfusion:ej2-inputs/dist/ej2-inputs.umd.min.js",
2020
"@syncfusion/ej2-vue-base": "syncfusion:ej2-vue-base/dist/ej2-vue-base.umd.min.js",
21-
"@syncfusion/ej2-vue-inputs": "syncfusion:ej2-vue-inputs/dist/ej2-vue-inputs.umd.min.js"
21+
"@syncfusion/ej2-vue-inputs": "syncfusion:ej2-vue-inputs/dist/ej2-vue-inputs.umd.min.js",
22+
"@syncfusion/ej2-popups": "syncfusion:ej2-popups/dist/ej2-popups.umd.min.js",
23+
"@syncfusion/ej2-splitbuttons": "syncfusion:ej2-splitbuttons/dist/ej2-splitbuttons.umd.min.js",
24+
"@syncfusion/ej2-buttons": "syncfusion:ej2-buttons/dist/ej2-buttons.umd.min.js",
25+
"@syncfusion/ej2-vue-popups": "syncfusion:ej2-vue-popups/dist/ej2-vue-popups.umd.min.js",
26+
"@syncfusion/ej2-vue-buttons": "syncfusion:ej2-vue-buttons/dist/ej2-vue-buttons.umd.min.js",
27+
"@syncfusion/ej2-vue-splitbuttons": "syncfusion:ej2-vue-splitbuttons/dist/ej2-vue-splitbuttons.umd.min.js"
2228
}
2329
});
2430

ej2-vue/code-snippet/otp-input/accessibility/htmlAttributes/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11

22
import Vue from 'vue';
3-
import { OTPInputPlugin } from "@syncfusion/ej2-vue-inputs";
3+
import { OtpInputPlugin } from "@syncfusion/ej2-vue-inputs";
44
import { enableRipple } from '@syncfusion/ej2-base';
55
enableRipple(true);
6-
Vue.use(OTPInputPlugin);
6+
Vue.use(OtpInputPlugin);
77

88

99
new Vue({

ej2-vue/code-snippet/otp-input/accessibility/htmlAttributes/systemjs.config.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,13 @@ vue: "https://unpkg.com/vue@2.6.14/dist/vue.min.js",
1818
"@syncfusion/ej2-base": "syncfusion:ej2-base/dist/ej2-base.umd.min.js",
1919
"@syncfusion/ej2-inputs": "syncfusion:ej2-inputs/dist/ej2-inputs.umd.min.js",
2020
"@syncfusion/ej2-vue-base": "syncfusion:ej2-vue-base/dist/ej2-vue-base.umd.min.js",
21-
"@syncfusion/ej2-vue-inputs": "syncfusion:ej2-vue-inputs/dist/ej2-vue-inputs.umd.min.js"
21+
"@syncfusion/ej2-vue-inputs": "syncfusion:ej2-vue-inputs/dist/ej2-vue-inputs.umd.min.js",
22+
"@syncfusion/ej2-popups": "syncfusion:ej2-popups/dist/ej2-popups.umd.min.js",
23+
"@syncfusion/ej2-splitbuttons": "syncfusion:ej2-splitbuttons/dist/ej2-splitbuttons.umd.min.js",
24+
"@syncfusion/ej2-buttons": "syncfusion:ej2-buttons/dist/ej2-buttons.umd.min.js",
25+
"@syncfusion/ej2-vue-popups": "syncfusion:ej2-vue-popups/dist/ej2-vue-popups.umd.min.js",
26+
"@syncfusion/ej2-vue-buttons": "syncfusion:ej2-vue-buttons/dist/ej2-vue-buttons.umd.min.js",
27+
"@syncfusion/ej2-vue-splitbuttons": "syncfusion:ej2-vue-splitbuttons/dist/ej2-vue-splitbuttons.umd.min.js"
2228
}
2329
});
2430

ej2-vue/code-snippet/otp-input/appearance/cssClass/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11

22
import Vue from 'vue';
3-
import { OTPInputPlugin } from "@syncfusion/ej2-vue-inputs";
3+
import { OtpInputPlugin } from "@syncfusion/ej2-vue-inputs";
44
import { enableRipple } from '@syncfusion/ej2-base';
55
enableRipple(true);
6-
Vue.use(OTPInputPlugin);
6+
Vue.use(OtpInputPlugin);
77

88

99
new Vue({

ej2-vue/code-snippet/otp-input/appearance/cssClass/systemjs.config.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,13 @@ vue: "https://unpkg.com/vue@2.6.14/dist/vue.min.js",
1818
"@syncfusion/ej2-base": "syncfusion:ej2-base/dist/ej2-base.umd.min.js",
1919
"@syncfusion/ej2-inputs": "syncfusion:ej2-inputs/dist/ej2-inputs.umd.min.js",
2020
"@syncfusion/ej2-vue-base": "syncfusion:ej2-vue-base/dist/ej2-vue-base.umd.min.js",
21-
"@syncfusion/ej2-vue-inputs": "syncfusion:ej2-vue-inputs/dist/ej2-vue-inputs.umd.min.js"
21+
"@syncfusion/ej2-vue-inputs": "syncfusion:ej2-vue-inputs/dist/ej2-vue-inputs.umd.min.js",
22+
"@syncfusion/ej2-popups": "syncfusion:ej2-popups/dist/ej2-popups.umd.min.js",
23+
"@syncfusion/ej2-splitbuttons": "syncfusion:ej2-splitbuttons/dist/ej2-splitbuttons.umd.min.js",
24+
"@syncfusion/ej2-buttons": "syncfusion:ej2-buttons/dist/ej2-buttons.umd.min.js",
25+
"@syncfusion/ej2-vue-popups": "syncfusion:ej2-vue-popups/dist/ej2-vue-popups.umd.min.js",
26+
"@syncfusion/ej2-vue-buttons": "syncfusion:ej2-vue-buttons/dist/ej2-vue-buttons.umd.min.js",
27+
"@syncfusion/ej2-vue-splitbuttons": "syncfusion:ej2-vue-splitbuttons/dist/ej2-vue-splitbuttons.umd.min.js"
2228
}
2329
});
2430

ej2-vue/code-snippet/otp-input/appearance/disabled/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11

22
import Vue from 'vue';
3-
import { OTPInputPlugin } from "@syncfusion/ej2-vue-inputs";
3+
import { OtpInputPlugin } from "@syncfusion/ej2-vue-inputs";
44
import { enableRipple } from '@syncfusion/ej2-base';
55
enableRipple(true);
6-
Vue.use(OTPInputPlugin);
6+
Vue.use(OtpInputPlugin);
77

88

99
new Vue({

ej2-vue/code-snippet/otp-input/appearance/disabled/systemjs.config.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,13 @@ vue: "https://unpkg.com/vue@2.6.14/dist/vue.min.js",
1818
"@syncfusion/ej2-base": "syncfusion:ej2-base/dist/ej2-base.umd.min.js",
1919
"@syncfusion/ej2-inputs": "syncfusion:ej2-inputs/dist/ej2-inputs.umd.min.js",
2020
"@syncfusion/ej2-vue-base": "syncfusion:ej2-vue-base/dist/ej2-vue-base.umd.min.js",
21-
"@syncfusion/ej2-vue-inputs": "syncfusion:ej2-vue-inputs/dist/ej2-vue-inputs.umd.min.js"
21+
"@syncfusion/ej2-vue-inputs": "syncfusion:ej2-vue-inputs/dist/ej2-vue-inputs.umd.min.js",
22+
"@syncfusion/ej2-popups": "syncfusion:ej2-popups/dist/ej2-popups.umd.min.js",
23+
"@syncfusion/ej2-splitbuttons": "syncfusion:ej2-splitbuttons/dist/ej2-splitbuttons.umd.min.js",
24+
"@syncfusion/ej2-buttons": "syncfusion:ej2-buttons/dist/ej2-buttons.umd.min.js",
25+
"@syncfusion/ej2-vue-popups": "syncfusion:ej2-vue-popups/dist/ej2-vue-popups.umd.min.js",
26+
"@syncfusion/ej2-vue-buttons": "syncfusion:ej2-vue-buttons/dist/ej2-vue-buttons.umd.min.js",
27+
"@syncfusion/ej2-vue-splitbuttons": "syncfusion:ej2-vue-splitbuttons/dist/ej2-vue-splitbuttons.umd.min.js"
2228
}
2329
});
2430

ej2-vue/code-snippet/otp-input/appearance/length/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11

22
import Vue from 'vue';
3-
import { OTPInputPlugin } from "@syncfusion/ej2-vue-inputs";
3+
import { OtpInputPlugin } from "@syncfusion/ej2-vue-inputs";
44
import { enableRipple } from '@syncfusion/ej2-base';
55
enableRipple(true);
6-
Vue.use(OTPInputPlugin);
6+
Vue.use(OtpInputPlugin);
77

88

99
new Vue({

ej2-vue/code-snippet/otp-input/appearance/length/systemjs.config.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,13 @@ vue: "https://unpkg.com/vue@2.6.14/dist/vue.min.js",
1818
"@syncfusion/ej2-base": "syncfusion:ej2-base/dist/ej2-base.umd.min.js",
1919
"@syncfusion/ej2-inputs": "syncfusion:ej2-inputs/dist/ej2-inputs.umd.min.js",
2020
"@syncfusion/ej2-vue-base": "syncfusion:ej2-vue-base/dist/ej2-vue-base.umd.min.js",
21-
"@syncfusion/ej2-vue-inputs": "syncfusion:ej2-vue-inputs/dist/ej2-vue-inputs.umd.min.js"
21+
"@syncfusion/ej2-vue-inputs": "syncfusion:ej2-vue-inputs/dist/ej2-vue-inputs.umd.min.js",
22+
"@syncfusion/ej2-popups": "syncfusion:ej2-popups/dist/ej2-popups.umd.min.js",
23+
"@syncfusion/ej2-splitbuttons": "syncfusion:ej2-splitbuttons/dist/ej2-splitbuttons.umd.min.js",
24+
"@syncfusion/ej2-buttons": "syncfusion:ej2-buttons/dist/ej2-buttons.umd.min.js",
25+
"@syncfusion/ej2-vue-popups": "syncfusion:ej2-vue-popups/dist/ej2-vue-popups.umd.min.js",
26+
"@syncfusion/ej2-vue-buttons": "syncfusion:ej2-vue-buttons/dist/ej2-vue-buttons.umd.min.js",
27+
"@syncfusion/ej2-vue-splitbuttons": "syncfusion:ej2-vue-splitbuttons/dist/ej2-vue-splitbuttons.umd.min.js"
2228
}
2329
});
2430

ej2-vue/code-snippet/otp-input/events/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11

22
import Vue from 'vue';
3-
import { OTPInputPlugin } from "@syncfusion/ej2-vue-inputs";
3+
import { OtpInputPlugin } from "@syncfusion/ej2-vue-inputs";
44
import { enableRipple } from '@syncfusion/ej2-base';
55
enableRipple(true);
6-
Vue.use(OTPInputPlugin);
6+
Vue.use(OtpInputPlugin);
77

88

99
new Vue({

ej2-vue/code-snippet/otp-input/events/systemjs.config.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,13 @@ vue: "https://unpkg.com/vue@2.6.14/dist/vue.min.js",
1818
"@syncfusion/ej2-base": "syncfusion:ej2-base/dist/ej2-base.umd.min.js",
1919
"@syncfusion/ej2-inputs": "syncfusion:ej2-inputs/dist/ej2-inputs.umd.min.js",
2020
"@syncfusion/ej2-vue-base": "syncfusion:ej2-vue-base/dist/ej2-vue-base.umd.min.js",
21-
"@syncfusion/ej2-vue-inputs": "syncfusion:ej2-vue-inputs/dist/ej2-vue-inputs.umd.min.js"
21+
"@syncfusion/ej2-vue-inputs": "syncfusion:ej2-vue-inputs/dist/ej2-vue-inputs.umd.min.js",
22+
"@syncfusion/ej2-popups": "syncfusion:ej2-popups/dist/ej2-popups.umd.min.js",
23+
"@syncfusion/ej2-splitbuttons": "syncfusion:ej2-splitbuttons/dist/ej2-splitbuttons.umd.min.js",
24+
"@syncfusion/ej2-buttons": "syncfusion:ej2-buttons/dist/ej2-buttons.umd.min.js",
25+
"@syncfusion/ej2-vue-popups": "syncfusion:ej2-vue-popups/dist/ej2-vue-popups.umd.min.js",
26+
"@syncfusion/ej2-vue-buttons": "syncfusion:ej2-vue-buttons/dist/ej2-vue-buttons.umd.min.js",
27+
"@syncfusion/ej2-vue-splitbuttons": "syncfusion:ej2-vue-splitbuttons/dist/ej2-vue-splitbuttons.umd.min.js"
2228
}
2329
});
2430

ej2-vue/code-snippet/otp-input/getting-started-cs1/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import Vue from 'vue';
2-
import { OTPInputPlugin } from "@syncfusion/ej2-vue-inputs";
2+
import { OtpInputPlugin } from "@syncfusion/ej2-vue-inputs";
33
import { enableRipple } from '@syncfusion/ej2-base';
44
enableRipple(true);
5-
Vue.use(OTPInputPlugin);
5+
Vue.use(OtpInputPlugin);
66

77
new Vue({
88
el: '#app',

ej2-vue/code-snippet/otp-input/getting-started-cs1/systemjs.config.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,13 @@ vue: "https://unpkg.com/vue@2.6.14/dist/vue.min.js",
1818
"@syncfusion/ej2-base": "syncfusion:ej2-base/dist/ej2-base.umd.min.js",
1919
"@syncfusion/ej2-inputs": "syncfusion:ej2-inputs/dist/ej2-inputs.umd.min.js",
2020
"@syncfusion/ej2-vue-base": "syncfusion:ej2-vue-base/dist/ej2-vue-base.umd.min.js",
21-
"@syncfusion/ej2-vue-inputs": "syncfusion:ej2-vue-inputs/dist/ej2-vue-inputs.umd.min.js"
21+
"@syncfusion/ej2-vue-inputs": "syncfusion:ej2-vue-inputs/dist/ej2-vue-inputs.umd.min.js",
22+
"@syncfusion/ej2-popups": "syncfusion:ej2-popups/dist/ej2-popups.umd.min.js",
23+
"@syncfusion/ej2-splitbuttons": "syncfusion:ej2-splitbuttons/dist/ej2-splitbuttons.umd.min.js",
24+
"@syncfusion/ej2-buttons": "syncfusion:ej2-buttons/dist/ej2-buttons.umd.min.js",
25+
"@syncfusion/ej2-vue-popups": "syncfusion:ej2-vue-popups/dist/ej2-vue-popups.umd.min.js",
26+
"@syncfusion/ej2-vue-buttons": "syncfusion:ej2-vue-buttons/dist/ej2-vue-buttons.umd.min.js",
27+
"@syncfusion/ej2-vue-splitbuttons": "syncfusion:ej2-vue-splitbuttons/dist/ej2-vue-splitbuttons.umd.min.js"
2228
}
2329
});
2430

ej2-vue/code-snippet/otp-input/inputTypes/number/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11

22
import Vue from 'vue';
3-
import { OTPInputPlugin } from "@syncfusion/ej2-vue-inputs";
3+
import { OtpInputPlugin } from "@syncfusion/ej2-vue-inputs";
44
import { enableRipple } from '@syncfusion/ej2-base';
55
enableRipple(true);
6-
Vue.use(OTPInputPlugin);
6+
Vue.use(OtpInputPlugin);
77

88

99
new Vue({

ej2-vue/code-snippet/otp-input/inputTypes/number/systemjs.config.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,13 @@ vue: "https://unpkg.com/vue@2.6.14/dist/vue.min.js",
1818
"@syncfusion/ej2-base": "syncfusion:ej2-base/dist/ej2-base.umd.min.js",
1919
"@syncfusion/ej2-inputs": "syncfusion:ej2-inputs/dist/ej2-inputs.umd.min.js",
2020
"@syncfusion/ej2-vue-base": "syncfusion:ej2-vue-base/dist/ej2-vue-base.umd.min.js",
21-
"@syncfusion/ej2-vue-inputs": "syncfusion:ej2-vue-inputs/dist/ej2-vue-inputs.umd.min.js"
21+
"@syncfusion/ej2-vue-inputs": "syncfusion:ej2-vue-inputs/dist/ej2-vue-inputs.umd.min.js",
22+
"@syncfusion/ej2-popups": "syncfusion:ej2-popups/dist/ej2-popups.umd.min.js",
23+
"@syncfusion/ej2-splitbuttons": "syncfusion:ej2-splitbuttons/dist/ej2-splitbuttons.umd.min.js",
24+
"@syncfusion/ej2-buttons": "syncfusion:ej2-buttons/dist/ej2-buttons.umd.min.js",
25+
"@syncfusion/ej2-vue-popups": "syncfusion:ej2-vue-popups/dist/ej2-vue-popups.umd.min.js",
26+
"@syncfusion/ej2-vue-buttons": "syncfusion:ej2-vue-buttons/dist/ej2-vue-buttons.umd.min.js",
27+
"@syncfusion/ej2-vue-splitbuttons": "syncfusion:ej2-vue-splitbuttons/dist/ej2-vue-splitbuttons.umd.min.js"
2228
}
2329
});
2430

ej2-vue/code-snippet/otp-input/inputTypes/password/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11

22
import Vue from 'vue';
3-
import { OTPInputPlugin } from "@syncfusion/ej2-vue-inputs";
3+
import { OtpInputPlugin } from "@syncfusion/ej2-vue-inputs";
44
import { enableRipple } from '@syncfusion/ej2-base';
55
enableRipple(true);
6-
Vue.use(OTPInputPlugin);
6+
Vue.use(OtpInputPlugin);
77

88

99
new Vue({

ej2-vue/code-snippet/otp-input/inputTypes/password/systemjs.config.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,13 @@ vue: "https://unpkg.com/vue@2.6.14/dist/vue.min.js",
1818
"@syncfusion/ej2-base": "syncfusion:ej2-base/dist/ej2-base.umd.min.js",
1919
"@syncfusion/ej2-inputs": "syncfusion:ej2-inputs/dist/ej2-inputs.umd.min.js",
2020
"@syncfusion/ej2-vue-base": "syncfusion:ej2-vue-base/dist/ej2-vue-base.umd.min.js",
21-
"@syncfusion/ej2-vue-inputs": "syncfusion:ej2-vue-inputs/dist/ej2-vue-inputs.umd.min.js"
21+
"@syncfusion/ej2-vue-inputs": "syncfusion:ej2-vue-inputs/dist/ej2-vue-inputs.umd.min.js",
22+
"@syncfusion/ej2-popups": "syncfusion:ej2-popups/dist/ej2-popups.umd.min.js",
23+
"@syncfusion/ej2-splitbuttons": "syncfusion:ej2-splitbuttons/dist/ej2-splitbuttons.umd.min.js",
24+
"@syncfusion/ej2-buttons": "syncfusion:ej2-buttons/dist/ej2-buttons.umd.min.js",
25+
"@syncfusion/ej2-vue-popups": "syncfusion:ej2-vue-popups/dist/ej2-vue-popups.umd.min.js",
26+
"@syncfusion/ej2-vue-buttons": "syncfusion:ej2-vue-buttons/dist/ej2-vue-buttons.umd.min.js",
27+
"@syncfusion/ej2-vue-splitbuttons": "syncfusion:ej2-vue-splitbuttons/dist/ej2-vue-splitbuttons.umd.min.js"
2228
}
2329
});
2430

ej2-vue/code-snippet/otp-input/inputTypes/text/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11

22
import Vue from 'vue';
3-
import { OTPInputPlugin } from "@syncfusion/ej2-vue-inputs";
3+
import { OtpInputPlugin } from "@syncfusion/ej2-vue-inputs";
44
import { enableRipple } from '@syncfusion/ej2-base';
55
enableRipple(true);
6-
Vue.use(OTPInputPlugin);
6+
Vue.use(OtpInputPlugin);
77

88

99
new Vue({

ej2-vue/code-snippet/otp-input/inputTypes/text/systemjs.config.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,13 @@ vue: "https://unpkg.com/vue@2.6.14/dist/vue.min.js",
1818
"@syncfusion/ej2-base": "syncfusion:ej2-base/dist/ej2-base.umd.min.js",
1919
"@syncfusion/ej2-inputs": "syncfusion:ej2-inputs/dist/ej2-inputs.umd.min.js",
2020
"@syncfusion/ej2-vue-base": "syncfusion:ej2-vue-base/dist/ej2-vue-base.umd.min.js",
21-
"@syncfusion/ej2-vue-inputs": "syncfusion:ej2-vue-inputs/dist/ej2-vue-inputs.umd.min.js"
21+
"@syncfusion/ej2-vue-inputs": "syncfusion:ej2-vue-inputs/dist/ej2-vue-inputs.umd.min.js",
22+
"@syncfusion/ej2-popups": "syncfusion:ej2-popups/dist/ej2-popups.umd.min.js",
23+
"@syncfusion/ej2-splitbuttons": "syncfusion:ej2-splitbuttons/dist/ej2-splitbuttons.umd.min.js",
24+
"@syncfusion/ej2-buttons": "syncfusion:ej2-buttons/dist/ej2-buttons.umd.min.js",
25+
"@syncfusion/ej2-vue-popups": "syncfusion:ej2-vue-popups/dist/ej2-vue-popups.umd.min.js",
26+
"@syncfusion/ej2-vue-buttons": "syncfusion:ej2-vue-buttons/dist/ej2-vue-buttons.umd.min.js",
27+
"@syncfusion/ej2-vue-splitbuttons": "syncfusion:ej2-vue-splitbuttons/dist/ej2-vue-splitbuttons.umd.min.js"
2228
}
2329
});
2430

ej2-vue/code-snippet/otp-input/inputTypes/value/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11

22
import Vue from 'vue';
3-
import { OTPInputPlugin } from "@syncfusion/ej2-vue-inputs";
3+
import { OtpInputPlugin } from "@syncfusion/ej2-vue-inputs";
44
import { enableRipple } from '@syncfusion/ej2-base';
55
enableRipple(true);
6-
Vue.use(OTPInputPlugin);
6+
Vue.use(OtpInputPlugin);
77

88

99
new Vue({

ej2-vue/code-snippet/otp-input/inputTypes/value/systemjs.config.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,13 @@ vue: "https://unpkg.com/vue@2.6.14/dist/vue.min.js",
1818
"@syncfusion/ej2-base": "syncfusion:ej2-base/dist/ej2-base.umd.min.js",
1919
"@syncfusion/ej2-inputs": "syncfusion:ej2-inputs/dist/ej2-inputs.umd.min.js",
2020
"@syncfusion/ej2-vue-base": "syncfusion:ej2-vue-base/dist/ej2-vue-base.umd.min.js",
21-
"@syncfusion/ej2-vue-inputs": "syncfusion:ej2-vue-inputs/dist/ej2-vue-inputs.umd.min.js"
21+
"@syncfusion/ej2-vue-inputs": "syncfusion:ej2-vue-inputs/dist/ej2-vue-inputs.umd.min.js",
22+
"@syncfusion/ej2-popups": "syncfusion:ej2-popups/dist/ej2-popups.umd.min.js",
23+
"@syncfusion/ej2-splitbuttons": "syncfusion:ej2-splitbuttons/dist/ej2-splitbuttons.umd.min.js",
24+
"@syncfusion/ej2-buttons": "syncfusion:ej2-buttons/dist/ej2-buttons.umd.min.js",
25+
"@syncfusion/ej2-vue-popups": "syncfusion:ej2-vue-popups/dist/ej2-vue-popups.umd.min.js",
26+
"@syncfusion/ej2-vue-buttons": "syncfusion:ej2-vue-buttons/dist/ej2-vue-buttons.umd.min.js",
27+
"@syncfusion/ej2-vue-splitbuttons": "syncfusion:ej2-vue-splitbuttons/dist/ej2-vue-splitbuttons.umd.min.js"
2228
}
2329
});
2430

ej2-vue/code-snippet/otp-input/placeholder/placeholder_char/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11

22
import Vue from 'vue';
3-
import { OTPInputPlugin } from "@syncfusion/ej2-vue-inputs";
3+
import { OtpInputPlugin } from "@syncfusion/ej2-vue-inputs";
44
import { enableRipple } from '@syncfusion/ej2-base';
55
enableRipple(true);
6-
Vue.use(OTPInputPlugin);
6+
Vue.use(OtpInputPlugin);
77

88

99
new Vue({

0 commit comments

Comments
 (0)