elab_components 0.0.0

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.
Files changed (70) hide show
  1. package/README.md +46 -0
  2. package/dist/App.d.ts +5 -0
  3. package/dist/App.test.d.ts +1 -0
  4. package/dist/components/Button/index.d.ts +6 -0
  5. package/dist/components/Button/props.d.ts +19 -0
  6. package/dist/components/ButtonGroup/index.d.ts +6 -0
  7. package/dist/components/ButtonGroup/props.d.ts +61 -0
  8. package/dist/components/Chart/index.d.ts +6 -0
  9. package/dist/components/Chart/props.d.ts +48 -0
  10. package/dist/components/DateInputs/Calendar/index.d.ts +6 -0
  11. package/dist/components/DateInputs/Calendar/props.d.ts +21 -0
  12. package/dist/components/DateInputs/DateInput/index.d.ts +6 -0
  13. package/dist/components/DateInputs/DateInput/props.d.ts +24 -0
  14. package/dist/components/DateInputs/DatePicker/index.d.ts +6 -0
  15. package/dist/components/DateInputs/DatePicker/props.d.ts +27 -0
  16. package/dist/components/DateInputs/DateRangePicker/index.d.ts +6 -0
  17. package/dist/components/DateInputs/DateRangePicker/props.d.ts +17 -0
  18. package/dist/components/DateInputs/DateTimePicker/index.d.ts +6 -0
  19. package/dist/components/DateInputs/DateTimePicker/props.d.ts +17 -0
  20. package/dist/components/DateInputs/MultiViewCalendar/index.d.ts +6 -0
  21. package/dist/components/DateInputs/MultiViewCalendar/props.d.ts +10 -0
  22. package/dist/components/DateInputs/TimePicker/index.d.ts +6 -0
  23. package/dist/components/DateInputs/TimePicker/props.d.ts +19 -0
  24. package/dist/components/Dialogs/Dialog/index.d.ts +6 -0
  25. package/dist/components/Dialogs/Dialog/props.d.ts +6 -0
  26. package/dist/components/Dialogs/Window/index.d.ts +6 -0
  27. package/dist/components/Dialogs/Window/props.d.ts +6 -0
  28. package/dist/components/Drawer/index.d.ts +6 -0
  29. package/dist/components/DropDownButton/index.d.ts +6 -0
  30. package/dist/components/DropDownButton/props.d.ts +22 -0
  31. package/dist/components/DropDowns/AutoComplete/index.d.ts +6 -0
  32. package/dist/components/DropDowns/AutoComplete/props.d.ts +4 -0
  33. package/dist/components/DropDowns/ComboBox/index.d.ts +6 -0
  34. package/dist/components/DropDowns/ComboBox/props.d.ts +4 -0
  35. package/dist/components/DropDowns/DropDownList/index.d.ts +6 -0
  36. package/dist/components/DropDowns/DropDownList/props.d.ts +4 -0
  37. package/dist/components/DropDowns/MultiSelect/index.d.ts +6 -0
  38. package/dist/components/DropDowns/MultiSelect/props.d.ts +4 -0
  39. package/dist/components/Editor/index.d.ts +6 -0
  40. package/dist/components/Editor/props.d.ts +8 -0
  41. package/dist/components/Gauges/ArcGauge/index.d.ts +6 -0
  42. package/dist/components/Gauges/ArcGauge/props.d.ts +12 -0
  43. package/dist/components/Grid/GridFormInlineEditor.d.ts +4 -0
  44. package/dist/components/Grid/RunQueries.d.ts +4 -0
  45. package/dist/components/Grid/index.d.ts +50 -0
  46. package/dist/components/Grid/props.d.ts +36 -0
  47. package/dist/components/Inputs/Input/index.d.ts +6 -0
  48. package/dist/components/Inputs/Input/props.d.ts +7 -0
  49. package/dist/components/Inputs/MaskedTextBox/index.d.ts +6 -0
  50. package/dist/components/Inputs/MaskedTextBox/props.d.ts +7 -0
  51. package/dist/components/Inputs/NumericTextBox/index.d.ts +6 -0
  52. package/dist/components/Inputs/NumericTextBox/props.d.ts +7 -0
  53. package/dist/components/Inputs/Switch/index.d.ts +6 -0
  54. package/dist/components/Inputs/Switch/props.d.ts +7 -0
  55. package/dist/components/SplitButton/index.d.ts +6 -0
  56. package/dist/components/SplitButton/props.d.ts +42 -0
  57. package/dist/components/Toolbar/index.d.ts +6 -0
  58. package/dist/components/Toolbar/props.d.ts +7 -0
  59. package/dist/components/TreeView/index.d.ts +6 -0
  60. package/dist/components/TreeView/props.d.ts +17 -0
  61. package/dist/index.d.ts +2 -0
  62. package/dist/index.esm.js +658 -0
  63. package/dist/index.esm.js.map +1 -0
  64. package/dist/index.js +666 -0
  65. package/dist/index.js.map +1 -0
  66. package/dist/reportWebVitals.d.ts +0 -0
  67. package/dist/setupTests.d.ts +1 -0
  68. package/dist/utils/icons.d.ts +1 -0
  69. package/dist/utils/locale.d.ts +4 -0
  70. package/package.json +199 -0
package/README.md ADDED
@@ -0,0 +1,46 @@
1
+ # Getting Started with Create React App
2
+
3
+ This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
4
+
5
+ ## Available Scripts
6
+
7
+ In the project directory, you can run:
8
+
9
+ ### `npm start`
10
+
11
+ Runs the app in the development mode.\
12
+ Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
13
+
14
+ The page will reload if you make edits.\
15
+ You will also see any lint errors in the console.
16
+
17
+ ### `npm test`
18
+
19
+ Launches the test runner in the interactive watch mode.\
20
+ See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
21
+
22
+ ### `npm run build`
23
+
24
+ Builds the app for production to the `build` folder.\
25
+ It correctly bundles React in production mode and optimizes the build for the best performance.
26
+
27
+ The build is minified and the filenames include the hashes.\
28
+ Your app is ready to be deployed!
29
+
30
+ See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
31
+
32
+ ### `npm run eject`
33
+
34
+ **Note: this is a one-way operation. Once you `eject`, you can’t go back!**
35
+
36
+ If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
37
+
38
+ Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.
39
+
40
+ You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.
41
+
42
+ ## Learn More
43
+
44
+ You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
45
+
46
+ To learn React, check out the [React documentation](https://reactjs.org/).
package/dist/App.d.ts ADDED
@@ -0,0 +1,5 @@
1
+ /** @format */
2
+ import React from 'react';
3
+ import './App.css';
4
+ declare function App(): React.JSX.Element;
5
+ export default App;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ import { ButtonProps } from "@progress/kendo-react-buttons";
3
+ interface IButton extends ButtonProps {
4
+ }
5
+ declare const OkButton: ({ ...props }: IButton) => React.JSX.Element;
6
+ export { OkButton };
@@ -0,0 +1,19 @@
1
+ declare const props: () => {
2
+ disabled: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
3
+ look: "default" | "flat" | "bare" | "outline";
4
+ icon: string;
5
+ iconClass: string;
6
+ imageAlt: string;
7
+ imageUrl: string;
8
+ primary: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
9
+ onAbort: import("@storybook/addon-actions").HandlerFunction;
10
+ onAbortCapture: import("@storybook/addon-actions").HandlerFunction;
11
+ onAnimationEnd: import("@storybook/addon-actions").HandlerFunction;
12
+ onAnimationEndCapture: import("@storybook/addon-actions").HandlerFunction;
13
+ onAnimationIteration: import("@storybook/addon-actions").HandlerFunction;
14
+ onClick: import("@storybook/addon-actions").HandlerFunction;
15
+ selected: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
16
+ title: string;
17
+ togglable: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
18
+ };
19
+ export default props;
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ import { ButtonProps } from '@progress/kendo-react-buttons';
3
+ interface IButton extends ButtonProps {
4
+ }
5
+ declare const OkButtonGroup: ({ ...props }: IButton) => React.JSX.Element;
6
+ export { OkButtonGroup };
@@ -0,0 +1,61 @@
1
+ declare const props: () => {
2
+ className: string;
3
+ dir: "auto" | "rtl" | "ltr";
4
+ disabled: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
5
+ width: string;
6
+ };
7
+ export declare const buttonOneProps: () => {
8
+ disabled: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
9
+ look: "default" | "flat" | "bare" | "outline";
10
+ icon: string;
11
+ iconClass: string;
12
+ imageAlt: string;
13
+ imageUrl: string;
14
+ primary: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
15
+ onAbort: import("@storybook/addon-actions").HandlerFunction;
16
+ onAbortCapture: import("@storybook/addon-actions").HandlerFunction;
17
+ onAnimationEnd: import("@storybook/addon-actions").HandlerFunction;
18
+ onAnimationEndCapture: import("@storybook/addon-actions").HandlerFunction;
19
+ onAnimationIteration: import("@storybook/addon-actions").HandlerFunction;
20
+ onClick: import("@storybook/addon-actions").HandlerFunction;
21
+ selected: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
22
+ title: string;
23
+ togglable: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
24
+ };
25
+ export declare const buttonTwoProps: () => {
26
+ disabled: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
27
+ look: "default" | "flat" | "bare" | "outline";
28
+ icon: string;
29
+ iconClass: string;
30
+ imageAlt: string;
31
+ imageUrl: string;
32
+ primary: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
33
+ onAbort: import("@storybook/addon-actions").HandlerFunction;
34
+ onAbortCapture: import("@storybook/addon-actions").HandlerFunction;
35
+ onAnimationEnd: import("@storybook/addon-actions").HandlerFunction;
36
+ onAnimationEndCapture: import("@storybook/addon-actions").HandlerFunction;
37
+ onAnimationIteration: import("@storybook/addon-actions").HandlerFunction;
38
+ onClick: import("@storybook/addon-actions").HandlerFunction;
39
+ selected: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
40
+ title: string;
41
+ togglable: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
42
+ };
43
+ export declare const buttonThreeProps: () => {
44
+ disabled: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
45
+ look: "default" | "flat" | "bare" | "outline";
46
+ icon: string;
47
+ iconClass: string;
48
+ imageAlt: string;
49
+ imageUrl: string;
50
+ primary: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
51
+ onAbort: import("@storybook/addon-actions").HandlerFunction;
52
+ onAbortCapture: import("@storybook/addon-actions").HandlerFunction;
53
+ onAnimationEnd: import("@storybook/addon-actions").HandlerFunction;
54
+ onAnimationEndCapture: import("@storybook/addon-actions").HandlerFunction;
55
+ onAnimationIteration: import("@storybook/addon-actions").HandlerFunction;
56
+ onClick: import("@storybook/addon-actions").HandlerFunction;
57
+ selected: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
58
+ title: string;
59
+ togglable: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
60
+ };
61
+ export default props;
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ import { ChartProps } from '@progress/kendo-react-charts';
3
+ interface Ichart extends ChartProps {
4
+ }
5
+ declare const OkChart: ({ ...props }: Ichart) => React.JSX.Element;
6
+ export { OkChart };
@@ -0,0 +1,48 @@
1
+ declare const chartProps: () => {
2
+ dir: "auto" | "rtl" | "ltr";
3
+ onAxisLabelClick: import("@storybook/addon-actions").HandlerFunction;
4
+ onDrag: import("@storybook/addon-actions").HandlerFunction;
5
+ onDragEnd: import("@storybook/addon-actions").HandlerFunction;
6
+ onDragStart: import("@storybook/addon-actions").HandlerFunction;
7
+ onLegendItemClick: import("@storybook/addon-actions").HandlerFunction;
8
+ onLegendItemHover: import("@storybook/addon-actions").HandlerFunction;
9
+ onNoteClick: import("@storybook/addon-actions").HandlerFunction;
10
+ onNoteHover: import("@storybook/addon-actions").HandlerFunction;
11
+ onPlotAreaClick: import("@storybook/addon-actions").HandlerFunction;
12
+ onPlotAreaHover: import("@storybook/addon-actions").HandlerFunction;
13
+ onRender: import("@storybook/addon-actions").HandlerFunction;
14
+ onSelect: import("@storybook/addon-actions").HandlerFunction;
15
+ onSelectEnd: import("@storybook/addon-actions").HandlerFunction;
16
+ onSelectStart: import("@storybook/addon-actions").HandlerFunction;
17
+ onSeriesClick: import("@storybook/addon-actions").HandlerFunction;
18
+ onSeriesHover: import("@storybook/addon-actions").HandlerFunction;
19
+ onZoom: import("@storybook/addon-actions").HandlerFunction;
20
+ onZoomEnd: import("@storybook/addon-actions").HandlerFunction;
21
+ onZoomStart: import("@storybook/addon-actions").HandlerFunction;
22
+ pannable: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
23
+ renderAs: "canvas" | "svg";
24
+ style: {
25
+ width: number;
26
+ };
27
+ transitions: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
28
+ zoomable: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
29
+ };
30
+ export declare const chartTitleProps: () => {
31
+ align: "center" | "left" | "right";
32
+ background: string;
33
+ color: string;
34
+ font: string;
35
+ margin: number;
36
+ padding: number;
37
+ position: "top" | "bottom";
38
+ text: string;
39
+ visible: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
40
+ };
41
+ export declare const chartAreaProps: () => {
42
+ background: string;
43
+ height: number;
44
+ margin: number;
45
+ opacity: number;
46
+ width: number;
47
+ };
48
+ export default chartProps;
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ import { CalendarProps } from "@progress/kendo-react-dateinputs";
3
+ interface Icalender extends CalendarProps {
4
+ }
5
+ declare const OkCalender: ({ ...props }: Icalender) => React.JSX.Element;
6
+ export { OkCalender };
@@ -0,0 +1,21 @@
1
+ declare const props: () => {
2
+ bottomView: "month" | "year" | "decade" | "century";
3
+ className: string;
4
+ defaultActiveView: "month" | "year" | "decade" | "century";
5
+ defaultValue: Date;
6
+ disabled: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
7
+ focusedDate: Date;
8
+ id: string;
9
+ max: Date;
10
+ min: Date;
11
+ navigation: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
12
+ onBlur: import("@storybook/addon-actions").HandlerFunction;
13
+ onChange: import("@storybook/addon-actions").HandlerFunction;
14
+ onFocus: import("@storybook/addon-actions").HandlerFunction;
15
+ smoothScroll: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
16
+ tabIndex: number;
17
+ topView: "month" | "year" | "decade" | "century";
18
+ value: Date;
19
+ weekNumber: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
20
+ };
21
+ export default props;
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ import { DateInputProps } from "@progress/kendo-react-dateinputs";
3
+ interface IdateInput extends DateInputProps {
4
+ }
5
+ declare const OkDateInput: ({ ...props }: IdateInput) => React.JSX.Element;
6
+ export { OkDateInput };
@@ -0,0 +1,24 @@
1
+ declare const dateInputProps: () => {
2
+ className: string;
3
+ defaultValue: Date;
4
+ dir: "auto" | "rtl" | "ltr";
5
+ disabled: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
6
+ format: string;
7
+ formatPlaceholder: "wide" | "narrow" | "short" | "formatPattern";
8
+ id: string;
9
+ label: string;
10
+ max: Date;
11
+ min: Date;
12
+ name: string;
13
+ onChange: import("@storybook/addon-actions").HandlerFunction;
14
+ required: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
15
+ spinners: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
16
+ tabIndex: number;
17
+ title: string;
18
+ valid: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
19
+ validationMessage: string;
20
+ validityStyles: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
21
+ value: Date;
22
+ width: string;
23
+ };
24
+ export default dateInputProps;
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ import { DatePickerProps } from "@progress/kendo-react-dateinputs";
3
+ interface IdatePicker extends DatePickerProps {
4
+ }
5
+ declare const OkDatePicker: ({ ...props }: IdatePicker) => React.JSX.Element;
6
+ export { OkDatePicker };
@@ -0,0 +1,27 @@
1
+ declare const props: () => {
2
+ className: string;
3
+ defaultShow: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
4
+ defaultValue: Date;
5
+ disabled: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
6
+ focusedDate: Date;
7
+ format: string;
8
+ formatPlaceholder: "wide" | "narrow" | "short" | "formatPattern";
9
+ id: string;
10
+ max: Date;
11
+ min: Date;
12
+ name: string;
13
+ onBlur: import("@storybook/addon-actions").HandlerFunction;
14
+ onChange: import("@storybook/addon-actions").HandlerFunction;
15
+ onFocus: import("@storybook/addon-actions").HandlerFunction;
16
+ required: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
17
+ show: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
18
+ tabIndex: number;
19
+ title: string;
20
+ valid: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
21
+ validationMessage: string;
22
+ validityStyles: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
23
+ value: Date;
24
+ weekNumber: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
25
+ width: string;
26
+ };
27
+ export default props;
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ import { DateRangePickerProps } from "@progress/kendo-react-dateinputs";
3
+ interface IdateRangePicker extends DateRangePickerProps {
4
+ }
5
+ declare const OkDateRangePicker: ({ ...props }: IdateRangePicker) => React.JSX.Element;
6
+ export { OkDateRangePicker };
@@ -0,0 +1,17 @@
1
+ declare const props: () => {
2
+ allowReverse: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
3
+ className: string;
4
+ defaultShow: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
5
+ disabled: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
6
+ focusedDate: Date;
7
+ id: string;
8
+ max: Date;
9
+ min: Date;
10
+ onBlur: import("@storybook/addon-actions").HandlerFunction;
11
+ onChange: import("@storybook/addon-actions").HandlerFunction;
12
+ onFocus: import("@storybook/addon-actions").HandlerFunction;
13
+ show: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
14
+ swapButton: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
15
+ tabIndex: number;
16
+ };
17
+ export default props;
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ import { DateTimePickerProps } from "@progress/kendo-react-dateinputs";
3
+ interface IdateTimePicker extends DateTimePickerProps {
4
+ }
5
+ declare const OkDateTimePicker: ({ ...props }: IdateTimePicker) => React.JSX.Element;
6
+ export { OkDateTimePicker };
@@ -0,0 +1,17 @@
1
+ declare const props: () => {
2
+ allowReverse: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
3
+ className: string;
4
+ defaultShow: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
5
+ disabled: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
6
+ focusedDate: Date;
7
+ id: string;
8
+ max: Date;
9
+ min: Date;
10
+ onBlur: import("@storybook/addon-actions").HandlerFunction;
11
+ onChange: import("@storybook/addon-actions").HandlerFunction;
12
+ onFocus: import("@storybook/addon-actions").HandlerFunction;
13
+ show: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
14
+ swapButton: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
15
+ tabIndex: number;
16
+ };
17
+ export default props;
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ import { MultiViewCalendarProps } from "@progress/kendo-react-dateinputs";
3
+ interface ImultiViewCalendar extends MultiViewCalendarProps {
4
+ }
5
+ declare const OkMultiViewCalendar: ({ ...props }: ImultiViewCalendar) => React.JSX.Element;
6
+ export { OkMultiViewCalendar };
@@ -0,0 +1,10 @@
1
+ declare const props: () => {
2
+ activeRangeEnd: "start" | "end";
3
+ allowReverse: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
4
+ bottomView: "month" | "year" | "decade" | "century";
5
+ defaultActiveView: "month" | "year" | "decade" | "century";
6
+ mode: "single" | "multiple" | "range";
7
+ topView: "month" | "year" | "decade" | "century";
8
+ views: number;
9
+ };
10
+ export default props;
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ import { TimePickerProps } from "@progress/kendo-react-dateinputs";
3
+ interface ItimePicker extends TimePickerProps {
4
+ }
5
+ declare const OkTimePicker: ({ ...props }: ItimePicker) => React.JSX.Element;
6
+ export { OkTimePicker };
@@ -0,0 +1,19 @@
1
+ declare const props: () => {
2
+ className: string;
3
+ defaultValue: Date;
4
+ disabled: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
5
+ id: string;
6
+ max: Date;
7
+ min: Date;
8
+ name: string;
9
+ nowButton: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
10
+ onBlur: import("@storybook/addon-actions").HandlerFunction;
11
+ onChange: import("@storybook/addon-actions").HandlerFunction;
12
+ onFocus: import("@storybook/addon-actions").HandlerFunction;
13
+ required: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
14
+ show: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
15
+ smoothScroll: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
16
+ tabIndex: number;
17
+ value: Date;
18
+ };
19
+ export default props;
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ import { DialogProps } from '@progress/kendo-react-dialogs';
3
+ interface Idialog extends DialogProps {
4
+ }
5
+ declare const OkDialog: ({ ...props }: Idialog) => React.JSX.Element;
6
+ export { OkDialog };
@@ -0,0 +1,6 @@
1
+ declare const props: () => {
2
+ height: number;
3
+ title: string;
4
+ width: number;
5
+ };
6
+ export default props;
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ import { WindowProps } from '@progress/kendo-react-dialogs';
3
+ interface Iwindow extends WindowProps {
4
+ }
5
+ declare const OkWindow: ({ ...props }: Iwindow) => React.JSX.Element;
6
+ export { OkWindow };
@@ -0,0 +1,6 @@
1
+ declare const props: () => {
2
+ draggable: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
3
+ height: number;
4
+ title: string;
5
+ };
6
+ export default props;
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ import { DrawerProps, DrawerContent } from "@progress/kendo-react-layout";
3
+ interface IDrawer extends DrawerProps {
4
+ }
5
+ declare const OkDrawer: ({ ...props }: IDrawer) => React.JSX.Element;
6
+ export { OkDrawer, DrawerContent as OkDrawerContent };
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ import { DropDownButtonProps } from '@progress/kendo-react-buttons';
3
+ interface IDropDownButton extends DropDownButtonProps {
4
+ }
5
+ declare const OkDropDownButton: ({ ...props }: IDropDownButton) => React.JSX.Element;
6
+ export { OkDropDownButton };
@@ -0,0 +1,22 @@
1
+ declare const props: () => {
2
+ buttonClass: string;
3
+ className: string;
4
+ dir: "auto" | "rtl" | "ltr";
5
+ disabled: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
6
+ look: "default" | "flat" | "bare" | "outline";
7
+ icon: string;
8
+ iconClass: string;
9
+ imageAlt: string;
10
+ imageUrl: string;
11
+ items: string[];
12
+ onBlur: import("@storybook/addon-actions").HandlerFunction;
13
+ onClose: import("@storybook/addon-actions").HandlerFunction;
14
+ onFocus: import("@storybook/addon-actions").HandlerFunction;
15
+ onItemClick: import("@storybook/addon-actions").HandlerFunction;
16
+ onOpen: import("@storybook/addon-actions").HandlerFunction;
17
+ primary: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
18
+ selected: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
19
+ text: string;
20
+ textField: string;
21
+ };
22
+ export default props;
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ import { AutoCompleteProps } from '@progress/kendo-react-dropdowns';
3
+ interface IautoComplete extends AutoCompleteProps {
4
+ }
5
+ declare const OkAutoComplete: ({ ...props }: IautoComplete) => React.JSX.Element;
6
+ export { OkAutoComplete };
@@ -0,0 +1,4 @@
1
+ declare const props: () => {
2
+ disabled: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
3
+ };
4
+ export default props;
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ import { ComboBoxProps } from '@progress/kendo-react-dropdowns';
3
+ interface IcomboBox extends ComboBoxProps {
4
+ }
5
+ declare const OkComboBox: ({ ...props }: IcomboBox) => React.JSX.Element;
6
+ export { OkComboBox };
@@ -0,0 +1,4 @@
1
+ declare const props: () => {
2
+ disabled: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
3
+ };
4
+ export default props;
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ import { DropDownListProps } from '@progress/kendo-react-dropdowns';
3
+ interface IdropDownList extends DropDownListProps {
4
+ }
5
+ declare const OkDropDownList: ({ ...props }: IdropDownList) => React.JSX.Element;
6
+ export { OkDropDownList };
@@ -0,0 +1,4 @@
1
+ declare const props: () => {
2
+ disabled: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
3
+ };
4
+ export default props;
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ import { MultiSelectProps } from '@progress/kendo-react-dropdowns';
3
+ interface IMultiSelect extends MultiSelectProps {
4
+ }
5
+ declare const OkMultiSelect: ({ ...props }: IMultiSelect) => React.JSX.Element;
6
+ export { OkMultiSelect };
@@ -0,0 +1,4 @@
1
+ declare const props: () => {
2
+ disabled: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
3
+ };
4
+ export default props;
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ import { EditorProps } from '@progress/kendo-react-editor';
3
+ interface Ieditor extends EditorProps {
4
+ }
5
+ declare const OkEditor: ({ ...props }: Ieditor) => React.JSX.Element;
6
+ export { OkEditor };
@@ -0,0 +1,8 @@
1
+ import { EditorTools } from "@progress/kendo-react-editor";
2
+ export declare const props: () => {
3
+ tools: (typeof EditorTools.Bold)[];
4
+ style: {
5
+ width: number;
6
+ };
7
+ };
8
+ export default props;
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ import { ArcGaugeProps } from '@progress/kendo-react-gauges';
3
+ interface IarcGauge extends ArcGaugeProps {
4
+ }
5
+ declare const OkArcGauge: ({ ...props }: IarcGauge) => React.JSX.Element;
6
+ export { OkArcGauge };
@@ -0,0 +1,12 @@
1
+ export declare const emptyProps: () => {
2
+ value: number;
3
+ };
4
+ declare const props: () => {
5
+ color: string;
6
+ disabled: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
7
+ opacity: number;
8
+ renderAs: "canvas" | "svg";
9
+ transitions: import("@storybook/addon-knobs/dist/type-defs").Mutable<boolean>;
10
+ value: number;
11
+ };
12
+ export default props;
@@ -0,0 +1,4 @@
1
+ /** @format */
2
+ import React from 'react';
3
+ declare function GridFormInlineEditor(): React.JSX.Element;
4
+ export default GridFormInlineEditor;
@@ -0,0 +1,4 @@
1
+ /** @format */
2
+ import React from 'react';
3
+ declare const RunQueries: ({ allColumnsField, setRunQueries }: any) => React.JSX.Element;
4
+ export default RunQueries;