elab_components 0.10.34 → 0.10.37
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/App.d.ts +1 -1
- package/dist/components/Grid/index.d.ts +2 -2
- package/dist/index.d.ts +25 -25
- package/dist/index.esm.js +129 -129
- package/dist/index.js +129 -129
- package/package.json +1 -1
package/dist/App.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/** @format */
|
|
2
|
-
import { JSX } from
|
|
3
|
-
import { GridColumn, GridCell, GridProps } from
|
|
2
|
+
import { JSX } from 'react';
|
|
3
|
+
import { GridColumn, GridCell, GridProps } from '@progress/kendo-react-grid';
|
|
4
4
|
declare const OkGrid: ({ ...props }: any) => JSX.Element;
|
|
5
5
|
export { OkGrid, GridColumn as OkGridColumn, GridCell as OkGridCell };
|
|
6
6
|
export type { GridProps };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,27 +1,27 @@
|
|
|
1
1
|
/** @format */
|
|
2
|
-
import
|
|
3
|
-
import { OkButton } from
|
|
4
|
-
import { OkWindow } from
|
|
5
|
-
import { OkDialog } from
|
|
6
|
-
import { OkDropDownButton } from
|
|
7
|
-
import { OkMultiSelect } from
|
|
8
|
-
import { OkDropDownList } from
|
|
9
|
-
import { OkEditor } from
|
|
10
|
-
import { OkGrid } from
|
|
11
|
-
import { OkSwitch } from
|
|
12
|
-
import { OkNumericTextBox } from
|
|
13
|
-
import { OkInput } from
|
|
14
|
-
import { OkMaskedTextBox } from
|
|
15
|
-
import { OkSplitButton } from
|
|
16
|
-
import { OkToolbar } from
|
|
17
|
-
import { OkTreeView } from
|
|
18
|
-
import { OkChart } from
|
|
19
|
-
import { OkTimePicker } from
|
|
20
|
-
import { OkMultiViewCalendar } from
|
|
21
|
-
import { OkCalender } from
|
|
22
|
-
import { OkDateInput } from
|
|
23
|
-
import { OkDateRangePicker } from
|
|
24
|
-
import { OkDateTimePicker } from
|
|
25
|
-
import { OkDrawer, OkDrawerContent } from
|
|
26
|
-
import { OkDateRangePickerCustom } from
|
|
2
|
+
import './index.css';
|
|
3
|
+
import { OkButton } from './components/Button';
|
|
4
|
+
import { OkWindow } from './components/Dialogs/Window';
|
|
5
|
+
import { OkDialog } from './components/Dialogs/Dialog';
|
|
6
|
+
import { OkDropDownButton } from './components/DropDownButton';
|
|
7
|
+
import { OkMultiSelect } from './components/DropDowns/MultiSelect';
|
|
8
|
+
import { OkDropDownList } from './components/DropDowns/DropDownList';
|
|
9
|
+
import { OkEditor } from './components/Editor';
|
|
10
|
+
import { OkGrid } from './components/Grid';
|
|
11
|
+
import { OkSwitch } from './components/Inputs/Switch';
|
|
12
|
+
import { OkNumericTextBox } from './components/Inputs/NumericTextBox';
|
|
13
|
+
import { OkInput } from './components/Inputs/Input';
|
|
14
|
+
import { OkMaskedTextBox } from './components/Inputs/MaskedTextBox';
|
|
15
|
+
import { OkSplitButton } from './components/SplitButton';
|
|
16
|
+
import { OkToolbar } from './components/Toolbar';
|
|
17
|
+
import { OkTreeView } from './components/TreeView';
|
|
18
|
+
import { OkChart } from './components/Chart';
|
|
19
|
+
import { OkTimePicker } from './components/DateInputs/TimePicker';
|
|
20
|
+
import { OkMultiViewCalendar } from './components/DateInputs/MultiViewCalendar';
|
|
21
|
+
import { OkCalender } from './components/DateInputs/Calendar';
|
|
22
|
+
import { OkDateInput } from './components/DateInputs/DateInput';
|
|
23
|
+
import { OkDateRangePicker } from './components/DateInputs/DateRangePicker';
|
|
24
|
+
import { OkDateTimePicker } from './components/DateInputs/DateTimePicker';
|
|
25
|
+
import { OkDrawer, OkDrawerContent } from './components/Drawer';
|
|
26
|
+
import { OkDateRangePickerCustom } from './components/DateRangePicker';
|
|
27
27
|
export { OkButton, OkCalender, OkChart, OkDateInput, OkDateRangePicker, OkDateTimePicker, OkDialog, OkDropDownButton, OkDropDownList, OkEditor, OkGrid, OkInput, OkMaskedTextBox, OkMultiSelect, OkMultiViewCalendar, OkNumericTextBox, OkSplitButton, OkSwitch, OkTimePicker, OkToolbar, OkTreeView, OkWindow, OkDrawer, OkDrawerContent, OkDateRangePickerCustom, };
|