docs(examples): update code samples and example pages
This commit is contained in:
Родитель
ccb492e0e9
Коммит
23761014cd
|
@ -156,7 +156,7 @@ These settings can be changed through the [`ignoreCase`]({% slug api_ddl_kendoui
|
|||
ReactDOM.render(
|
||||
<div>
|
||||
<p>Focus the component and use the keyboard to navigate between items</p>
|
||||
<KendoReactDropdowns.DropDownList data={data} delay={1000} ignoreCase={false} index={0} />
|
||||
<KendoReactDropdowns.DropDownList data={data} delay={1000} index={0} />
|
||||
</div>,
|
||||
document.getElementById('app')
|
||||
);
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import * as React from 'react';
|
||||
import ReactDOM from 'react-dom';
|
||||
import { ComboBox } from '../src/bundle';
|
||||
import { ComboBox } from '../src/main';
|
||||
|
||||
const data = [
|
||||
{ text: "Albania", value: "Alb" },
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import React from 'react';
|
||||
import ReactDOM from 'react-dom';
|
||||
import { DropDownList } from '../src/bundle';
|
||||
import { DropDownList } from '../src/main';
|
||||
|
||||
const colors = [
|
||||
{ text: "Blue", value: "#00007f" },
|
||||
|
|
Загрузка…
Ссылка в новой задаче