ods-component-lib 1.18.30 → 1.18.33
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/components/antd/datepicker/OdsDatepicker.d.ts +3 -3
- package/dist/components/antd/timepicker/OdsTimepicker.d.ts +1 -1
- package/dist/components/antd/timepicker/OdsTimepicker.styled.d.ts +1 -1
- package/dist/components/antd/typography/OdsLink.d.ts +3 -3
- package/dist/components/antd/typography/OdsParagraph.d.ts +1 -1
- package/dist/components/devextreme/OdsRemoteDataGrid.d.ts +1 -0
- package/dist/index.d.ts +0 -4
- package/dist/index.js +30 -123
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +32 -123
- package/dist/index.modern.js.map +1 -1
- package/dist/stories/OdsRemoteDataGrid/OdsRemoteDataGrid.Constants.d.ts +17 -0
- package/dist/stories/OdsRemoteDataGrid/OdsRemoteDataGrid.MockData.d.ts +5 -0
- package/package.json +1 -1
- /package/dist/components/antd/datepicker/{OdsDateRangepicker.d.ts → OdsDateRangePicker.d.ts} +0 -0
package/dist/index.modern.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Alert, AutoComplete, Button, Dropdown, Calendar, Card as Card$1, Checkbox, DatePicker, Divider,
|
|
1
|
+
import { Alert, AutoComplete, Button, Dropdown, Calendar, Card as Card$1, Checkbox, DatePicker, Divider, Image, Input, InputNumber, List, Modal, notification, Radio, Rate, Select, Space, Spin, Switch, Tabs, Table, Tag, Timeline, TimePicker, Typography, Form, theme, Tooltip } from 'antd';
|
|
2
2
|
import styled, { ThemeProvider } from 'styled-components';
|
|
3
3
|
import React, { useState, useRef, useEffect, useMemo, useCallback } from 'react';
|
|
4
4
|
import Marquee from 'react-fast-marquee';
|
|
@@ -6,7 +6,6 @@ import Card from 'antd/es/card/Card';
|
|
|
6
6
|
import { EyeTwoTone, EyeInvisibleOutlined, FrownOutlined, MehOutlined, SmileOutlined, HeartOutlined, UserOutlined, LockOutlined, InfoCircleOutlined } from '@ant-design/icons';
|
|
7
7
|
import 'react-phone-input-2/lib/style.css';
|
|
8
8
|
import PhoneInput from 'react-phone-input-2';
|
|
9
|
-
import message from 'antd/es/message';
|
|
10
9
|
import Parser from 'html-react-parser';
|
|
11
10
|
import { locale, loadMessages } from 'devextreme/localization';
|
|
12
11
|
import DataGrid$1, { DataGrid, LoadPanel, Paging, Pager, SearchPanel, FilterRow, FilterPanel, HeaderFilter, ColumnChooser, Position, ColumnChooserSearch, ColumnChooserSelection, Selection, Editing, Popup, Form as Form$1, Scrolling, Export, Column, RequiredRule, Button as Button$1, Toolbar, Item as Item$1, Summary, TotalItem, StateStoring, Sorting } from 'devextreme-react/data-grid';
|
|
@@ -492,8 +491,8 @@ function OdsDateRangePicker(props) {
|
|
|
492
491
|
}))));
|
|
493
492
|
}
|
|
494
493
|
|
|
495
|
-
function
|
|
496
|
-
var _useState = useState(
|
|
494
|
+
function StyledOdsDatepicker(props) {
|
|
495
|
+
var _useState = useState("middle"),
|
|
497
496
|
size = _useState[0];
|
|
498
497
|
return React.createElement(React.Fragment, null, React.createElement(ThemeProvider, {
|
|
499
498
|
theme: lightTheme
|
|
@@ -501,6 +500,9 @@ function OdsDatepicker(props) {
|
|
|
501
500
|
size: size
|
|
502
501
|
}))));
|
|
503
502
|
}
|
|
503
|
+
var OdsDatepicker = function OdsDatepicker(props) {
|
|
504
|
+
return React.createElement(StyledOdsDatepicker, Object.assign({}, props));
|
|
505
|
+
};
|
|
504
506
|
|
|
505
507
|
var _templateObject$7;
|
|
506
508
|
var StyledDivider = styled(Divider)(_templateObject$7 || (_templateObject$7 = _taggedTemplateLiteralLoose(["\n //\n"])));
|
|
@@ -527,55 +529,6 @@ function OdsCollapse(props) {
|
|
|
527
529
|
}, props.children)));
|
|
528
530
|
}
|
|
529
531
|
|
|
530
|
-
var _templateObject$9;
|
|
531
|
-
var StyledInput = styled(Input)(_templateObject$9 || (_templateObject$9 = _taggedTemplateLiteralLoose(["\n //\n"])));
|
|
532
|
-
|
|
533
|
-
function OdsInput(props) {
|
|
534
|
-
return React.createElement(React.Fragment, null, React.createElement(ThemeProvider, {
|
|
535
|
-
theme: lightTheme
|
|
536
|
-
}, React.createElement(StyledInput, Object.assign({}, props), props === null || props === void 0 ? void 0 : props.children)));
|
|
537
|
-
}
|
|
538
|
-
|
|
539
|
-
var layout = {
|
|
540
|
-
labelCol: {
|
|
541
|
-
span: 8
|
|
542
|
-
},
|
|
543
|
-
wrapperCol: {
|
|
544
|
-
span: 16
|
|
545
|
-
}
|
|
546
|
-
};
|
|
547
|
-
function renderElement(type) {
|
|
548
|
-
switch (type) {
|
|
549
|
-
case 'text':
|
|
550
|
-
return React.createElement(OdsInput, null);
|
|
551
|
-
default:
|
|
552
|
-
return React.createElement(OdsInput, null);
|
|
553
|
-
}
|
|
554
|
-
}
|
|
555
|
-
function OdsBasicForm(props) {
|
|
556
|
-
var onFinish = function onFinish(values) {
|
|
557
|
-
console.log('Received values:', values);
|
|
558
|
-
};
|
|
559
|
-
var onFinishFailed = function onFinishFailed(errorInfo) {
|
|
560
|
-
console.log('Failed:', errorInfo);
|
|
561
|
-
};
|
|
562
|
-
return React.createElement(Form, Object.assign({
|
|
563
|
-
onFinish: onFinish,
|
|
564
|
-
onFinishFailed: onFinishFailed
|
|
565
|
-
}, layout), props.formItems.map(function (formItem) {
|
|
566
|
-
return React.createElement(Form.Item, {
|
|
567
|
-
label: formItem.label,
|
|
568
|
-
name: formItem.name,
|
|
569
|
-
rules: formItem.rules
|
|
570
|
-
}, renderElement(formItem.formItemType));
|
|
571
|
-
}), props.formButtons.map(function (formButton) {
|
|
572
|
-
React.createElement(Form.Item, null, React.createElement(OdsButton, {
|
|
573
|
-
type: formButton.type,
|
|
574
|
-
htmlType: formButton.htmlType
|
|
575
|
-
}, formButton.children));
|
|
576
|
-
}));
|
|
577
|
-
}
|
|
578
|
-
|
|
579
532
|
function OdsImagePreviewGroup() {
|
|
580
533
|
var _useState = useState(false),
|
|
581
534
|
visible = _useState[0],
|
|
@@ -614,6 +567,15 @@ function OdsImage(props) {
|
|
|
614
567
|
return React.createElement(React.Fragment, null, isMultiple ? React.createElement(Image, Object.assign({}, props)) : React.createElement(OdsImagePreviewGroup, Object.assign({}, props)));
|
|
615
568
|
}
|
|
616
569
|
|
|
570
|
+
var _templateObject$9;
|
|
571
|
+
var StyledInput = styled(Input)(_templateObject$9 || (_templateObject$9 = _taggedTemplateLiteralLoose(["\n //\n"])));
|
|
572
|
+
|
|
573
|
+
function OdsInput(props) {
|
|
574
|
+
return React.createElement(React.Fragment, null, React.createElement(ThemeProvider, {
|
|
575
|
+
theme: lightTheme
|
|
576
|
+
}, React.createElement(StyledInput, Object.assign({}, props), props === null || props === void 0 ? void 0 : props.children)));
|
|
577
|
+
}
|
|
578
|
+
|
|
617
579
|
function OdsPassword(props) {
|
|
618
580
|
return React.createElement(React.Fragment, null, React.createElement(ThemeProvider, {
|
|
619
581
|
theme: lightTheme
|
|
@@ -679,68 +641,6 @@ function OdsList(props) {
|
|
|
679
641
|
}, props.children)));
|
|
680
642
|
}
|
|
681
643
|
|
|
682
|
-
function OdsMessage(type, content, duration) {
|
|
683
|
-
if (duration === void 0) {
|
|
684
|
-
duration = 10;
|
|
685
|
-
}
|
|
686
|
-
var _message$useMessage = message.useMessage(),
|
|
687
|
-
messageApi = _message$useMessage[0];
|
|
688
|
-
var success = function success() {
|
|
689
|
-
messageApi.open({
|
|
690
|
-
type: 'success',
|
|
691
|
-
content: content,
|
|
692
|
-
duration: duration
|
|
693
|
-
});
|
|
694
|
-
};
|
|
695
|
-
var error = function error() {
|
|
696
|
-
messageApi.open({
|
|
697
|
-
type: 'error',
|
|
698
|
-
content: content,
|
|
699
|
-
duration: duration
|
|
700
|
-
});
|
|
701
|
-
};
|
|
702
|
-
var warning = function warning() {
|
|
703
|
-
messageApi.open({
|
|
704
|
-
type: 'warning',
|
|
705
|
-
content: content,
|
|
706
|
-
duration: duration
|
|
707
|
-
});
|
|
708
|
-
};
|
|
709
|
-
var info = function info() {
|
|
710
|
-
messageApi.open({
|
|
711
|
-
type: 'info',
|
|
712
|
-
content: content,
|
|
713
|
-
duration: duration
|
|
714
|
-
});
|
|
715
|
-
};
|
|
716
|
-
var loading = function loading() {
|
|
717
|
-
messageApi.open({
|
|
718
|
-
type: 'loading',
|
|
719
|
-
content: content,
|
|
720
|
-
duration: duration
|
|
721
|
-
});
|
|
722
|
-
};
|
|
723
|
-
var contentt;
|
|
724
|
-
switch (type) {
|
|
725
|
-
case "info":
|
|
726
|
-
contentt = React.createElement("div", null, info);
|
|
727
|
-
break;
|
|
728
|
-
case "error":
|
|
729
|
-
contentt = React.createElement("div", null, error);
|
|
730
|
-
break;
|
|
731
|
-
case "warning":
|
|
732
|
-
contentt = React.createElement("div", null, warning);
|
|
733
|
-
break;
|
|
734
|
-
case "loading":
|
|
735
|
-
contentt = React.createElement("div", null, loading);
|
|
736
|
-
break;
|
|
737
|
-
case "success":
|
|
738
|
-
contentt = React.createElement("div", null, success);
|
|
739
|
-
break;
|
|
740
|
-
}
|
|
741
|
-
return React.createElement(React.Fragment, null, contentt);
|
|
742
|
-
}
|
|
743
|
-
|
|
744
644
|
function OdsModal(props) {
|
|
745
645
|
return React.createElement(React.Fragment, null, React.createElement(Modal, Object.assign({}, props, {
|
|
746
646
|
open: props.open,
|
|
@@ -1200,25 +1100,34 @@ var dayjs_min = createCommonjsModule(function (module, exports) {
|
|
|
1200
1100
|
!function(t,e){module.exports=e();}(commonjsGlobal,(function(){var t=1e3,e=6e4,n=36e5,r="millisecond",i="second",s="minute",u="hour",a="day",o="week",c="month",f="quarter",h="year",d="date",l="Invalid Date",$=/^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[Tt\s]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/,y=/\[([^\]]+)]|Y{1,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g,M={name:"en",weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),ordinal:function(t){var e=["th","st","nd","rd"],n=t%100;return "["+t+(e[(n-20)%10]||e[n]||e[0])+"]"}},m=function(t,e,n){var r=String(t);return !r||r.length>=e?t:""+Array(e+1-r.length).join(n)+t},v={s:m,z:function(t){var e=-t.utcOffset(),n=Math.abs(e),r=Math.floor(n/60),i=n%60;return (e<=0?"+":"-")+m(r,2,"0")+":"+m(i,2,"0")},m:function t(e,n){if(e.date()<n.date())return -t(n,e);var r=12*(n.year()-e.year())+(n.month()-e.month()),i=e.clone().add(r,c),s=n-i<0,u=e.clone().add(r+(s?-1:1),c);return +(-(r+(n-i)/(s?i-u:u-i))||0)},a:function(t){return t<0?Math.ceil(t)||0:Math.floor(t)},p:function(t){return {M:c,y:h,w:o,d:a,D:d,h:u,m:s,s:i,ms:r,Q:f}[t]||String(t||"").toLowerCase().replace(/s$/,"")},u:function(t){return void 0===t}},g="en",D={};D[g]=M;var p="$isDayjsObject",S=function(t){return t instanceof _||!(!t||!t[p])},w=function t(e,n,r){var i;if(!e)return g;if("string"==typeof e){var s=e.toLowerCase();D[s]&&(i=s),n&&(D[s]=n,i=s);var u=e.split("-");if(!i&&u.length>1)return t(u[0])}else {var a=e.name;D[a]=e,i=a;}return !r&&i&&(g=i),i||!r&&g},O=function(t,e){if(S(t))return t.clone();var n="object"==typeof e?e:{};return n.date=t,n.args=arguments,new _(n)},b=v;b.l=w,b.i=S,b.w=function(t,e){return O(t,{locale:e.$L,utc:e.$u,x:e.$x,$offset:e.$offset})};var _=function(){function M(t){this.$L=w(t.locale,null,!0),this.parse(t),this.$x=this.$x||t.x||{},this[p]=!0;}var m=M.prototype;return m.parse=function(t){this.$d=function(t){var e=t.date,n=t.utc;if(null===e)return new Date(NaN);if(b.u(e))return new Date;if(e instanceof Date)return new Date(e);if("string"==typeof e&&!/Z$/i.test(e)){var r=e.match($);if(r){var i=r[2]-1||0,s=(r[7]||"0").substring(0,3);return n?new Date(Date.UTC(r[1],i,r[3]||1,r[4]||0,r[5]||0,r[6]||0,s)):new Date(r[1],i,r[3]||1,r[4]||0,r[5]||0,r[6]||0,s)}}return new Date(e)}(t),this.init();},m.init=function(){var t=this.$d;this.$y=t.getFullYear(),this.$M=t.getMonth(),this.$D=t.getDate(),this.$W=t.getDay(),this.$H=t.getHours(),this.$m=t.getMinutes(),this.$s=t.getSeconds(),this.$ms=t.getMilliseconds();},m.$utils=function(){return b},m.isValid=function(){return !(this.$d.toString()===l)},m.isSame=function(t,e){var n=O(t);return this.startOf(e)<=n&&n<=this.endOf(e)},m.isAfter=function(t,e){return O(t)<this.startOf(e)},m.isBefore=function(t,e){return this.endOf(e)<O(t)},m.$g=function(t,e,n){return b.u(t)?this[e]:this.set(n,t)},m.unix=function(){return Math.floor(this.valueOf()/1e3)},m.valueOf=function(){return this.$d.getTime()},m.startOf=function(t,e){var n=this,r=!!b.u(e)||e,f=b.p(t),l=function(t,e){var i=b.w(n.$u?Date.UTC(n.$y,e,t):new Date(n.$y,e,t),n);return r?i:i.endOf(a)},$=function(t,e){return b.w(n.toDate()[t].apply(n.toDate("s"),(r?[0,0,0,0]:[23,59,59,999]).slice(e)),n)},y=this.$W,M=this.$M,m=this.$D,v="set"+(this.$u?"UTC":"");switch(f){case h:return r?l(1,0):l(31,11);case c:return r?l(1,M):l(0,M+1);case o:var g=this.$locale().weekStart||0,D=(y<g?y+7:y)-g;return l(r?m-D:m+(6-D),M);case a:case d:return $(v+"Hours",0);case u:return $(v+"Minutes",1);case s:return $(v+"Seconds",2);case i:return $(v+"Milliseconds",3);default:return this.clone()}},m.endOf=function(t){return this.startOf(t,!1)},m.$set=function(t,e){var n,o=b.p(t),f="set"+(this.$u?"UTC":""),l=(n={},n[a]=f+"Date",n[d]=f+"Date",n[c]=f+"Month",n[h]=f+"FullYear",n[u]=f+"Hours",n[s]=f+"Minutes",n[i]=f+"Seconds",n[r]=f+"Milliseconds",n)[o],$=o===a?this.$D+(e-this.$W):e;if(o===c||o===h){var y=this.clone().set(d,1);y.$d[l]($),y.init(),this.$d=y.set(d,Math.min(this.$D,y.daysInMonth())).$d;}else l&&this.$d[l]($);return this.init(),this},m.set=function(t,e){return this.clone().$set(t,e)},m.get=function(t){return this[b.p(t)]()},m.add=function(r,f){var d,l=this;r=Number(r);var $=b.p(f),y=function(t){var e=O(l);return b.w(e.date(e.date()+Math.round(t*r)),l)};if($===c)return this.set(c,this.$M+r);if($===h)return this.set(h,this.$y+r);if($===a)return y(1);if($===o)return y(7);var M=(d={},d[s]=e,d[u]=n,d[i]=t,d)[$]||1,m=this.$d.getTime()+r*M;return b.w(m,this)},m.subtract=function(t,e){return this.add(-1*t,e)},m.format=function(t){var e=this,n=this.$locale();if(!this.isValid())return n.invalidDate||l;var r=t||"YYYY-MM-DDTHH:mm:ssZ",i=b.z(this),s=this.$H,u=this.$m,a=this.$M,o=n.weekdays,c=n.months,f=n.meridiem,h=function(t,n,i,s){return t&&(t[n]||t(e,r))||i[n].slice(0,s)},d=function(t){return b.s(s%12||12,t,"0")},$=f||function(t,e,n){var r=t<12?"AM":"PM";return n?r.toLowerCase():r};return r.replace(y,(function(t,r){return r||function(t){switch(t){case"YY":return String(e.$y).slice(-2);case"YYYY":return b.s(e.$y,4,"0");case"M":return a+1;case"MM":return b.s(a+1,2,"0");case"MMM":return h(n.monthsShort,a,c,3);case"MMMM":return h(c,a);case"D":return e.$D;case"DD":return b.s(e.$D,2,"0");case"d":return String(e.$W);case"dd":return h(n.weekdaysMin,e.$W,o,2);case"ddd":return h(n.weekdaysShort,e.$W,o,3);case"dddd":return o[e.$W];case"H":return String(s);case"HH":return b.s(s,2,"0");case"h":return d(1);case"hh":return d(2);case"a":return $(s,u,!0);case"A":return $(s,u,!1);case"m":return String(u);case"mm":return b.s(u,2,"0");case"s":return String(e.$s);case"ss":return b.s(e.$s,2,"0");case"SSS":return b.s(e.$ms,3,"0");case"Z":return i}return null}(t)||i.replace(":","")}))},m.utcOffset=function(){return 15*-Math.round(this.$d.getTimezoneOffset()/15)},m.diff=function(r,d,l){var $,y=this,M=b.p(d),m=O(r),v=(m.utcOffset()-this.utcOffset())*e,g=this-m,D=function(){return b.m(y,m)};switch(M){case h:$=D()/12;break;case c:$=D();break;case f:$=D()/3;break;case o:$=(g-v)/6048e5;break;case a:$=(g-v)/864e5;break;case u:$=g/n;break;case s:$=g/e;break;case i:$=g/t;break;default:$=g;}return l?$:b.a($)},m.daysInMonth=function(){return this.endOf(c).$D},m.$locale=function(){return D[this.$L]},m.locale=function(t,e){if(!t)return this.$L;var n=this.clone(),r=w(t,e,!0);return r&&(n.$L=r),n},m.clone=function(){return b.w(this.$d,this)},m.toDate=function(){return new Date(this.valueOf())},m.toJSON=function(){return this.isValid()?this.toISOString():null},m.toISOString=function(){return this.$d.toISOString()},m.toString=function(){return this.$d.toUTCString()},M}(),k=_.prototype;return O.prototype=k,[["$ms",r],["$s",i],["$m",s],["$H",u],["$W",a],["$M",c],["$y",h],["$D",d]].forEach((function(t){k[t[1]]=function(e){return this.$g(e,t[0],t[1])};})),O.extend=function(t,e){return t.$i||(t(e,_,O),t.$i=!0),O},O.locale=w,O.isDayjs=S,O.unix=function(t){return O(1e3*t)},O.en=D[g],O.Ls=D,O.p={},O}));
|
|
1201
1101
|
});
|
|
1202
1102
|
|
|
1203
|
-
function
|
|
1204
|
-
var format =
|
|
1103
|
+
function StyledOdsTimepicker(props) {
|
|
1104
|
+
var format = "HH:mm";
|
|
1205
1105
|
return React.createElement(React.Fragment, null, React.createElement(StyledTimepicker, Object.assign({}, props, {
|
|
1206
|
-
defaultValue: dayjs_min(
|
|
1106
|
+
defaultValue: dayjs_min("00:00", format)
|
|
1207
1107
|
})));
|
|
1208
1108
|
}
|
|
1109
|
+
var OdsTimepicker = function OdsTimepicker(props) {
|
|
1110
|
+
return React.createElement(StyledOdsTimepicker, Object.assign({}, props));
|
|
1111
|
+
};
|
|
1209
1112
|
|
|
1210
1113
|
var _templateObject$m;
|
|
1211
1114
|
var StyledtTypography = styled(Typography)(_templateObject$m || (_templateObject$m = _taggedTemplateLiteralLoose(["\n //\n"])));
|
|
1212
1115
|
|
|
1213
|
-
function
|
|
1116
|
+
function StyledOdsLink(props) {
|
|
1214
1117
|
return React.createElement(React.Fragment, null, React.createElement(StyledtTypography, Object.assign({}, props), props === null || props === void 0 ? void 0 : props.Link));
|
|
1215
1118
|
}
|
|
1119
|
+
var OdsLink = function OdsLink(props) {
|
|
1120
|
+
return React.createElement(StyledOdsLink, Object.assign({}, props));
|
|
1121
|
+
};
|
|
1216
1122
|
|
|
1217
|
-
function
|
|
1123
|
+
function StyledOdsParagraph(props) {
|
|
1218
1124
|
return React.createElement(React.Fragment, null, React.createElement(ThemeProvider, {
|
|
1219
1125
|
theme: lightTheme
|
|
1220
1126
|
}, React.createElement(StyledtTypography.Paragraph, Object.assign({}, props), props)));
|
|
1221
1127
|
}
|
|
1128
|
+
var OdsParagraph = function OdsParagraph(props) {
|
|
1129
|
+
return React.createElement(StyledOdsParagraph, Object.assign({}, props));
|
|
1130
|
+
};
|
|
1222
1131
|
|
|
1223
1132
|
function OdsText(props) {
|
|
1224
1133
|
return React.createElement(React.Fragment, null, React.createElement(ThemeProvider, {
|
|
@@ -17287,8 +17196,8 @@ var OdsRemoteDataGrid = function OdsRemoteDataGrid(props) {
|
|
|
17287
17196
|
e.editorOptions.onFocusIn = disableScrolling;
|
|
17288
17197
|
e.editorOptions.onFocusOut = enableScrolling;
|
|
17289
17198
|
}
|
|
17290
|
-
if (props.
|
|
17291
|
-
props.
|
|
17199
|
+
if (props.handleEditorPreparing) {
|
|
17200
|
+
props.handleEditorPreparing(e);
|
|
17292
17201
|
}
|
|
17293
17202
|
}
|
|
17294
17203
|
if (e.editorOptions && e.rowType === 'data' && e.parentType === 'dataRow') {
|
|
@@ -17658,5 +17567,5 @@ var OdsRemoteDataGrid = function OdsRemoteDataGrid(props) {
|
|
|
17658
17567
|
})));
|
|
17659
17568
|
};
|
|
17660
17569
|
|
|
17661
|
-
export { DxTreeList, DxTreeView, OdsAlert, OdsAutoComplete, OdsBannerAlert,
|
|
17570
|
+
export { DxTreeList, DxTreeView, OdsAlert, OdsAutoComplete, OdsBannerAlert, OdsBasicTable, OdsButton, OdsCalendar, OdsCard, OdsCheckbox, OdsCheckboxGroup, OdsCollapse, OdsCustomMultiSelect, OdsDataGrid, OdsDataGridNew, OdsDateRangePicker, OdsDatepicker, OdsDisplayGrid, OdsDivider, OdsCollapse as OdsDropdown, OdsDropdownButton, OdsImage, OdsInput, OdsInputNumber, OdsLink, OdsList, OdsLogin, OdsModal, OdsNotification, OdsParagraph, OdsPassword, OdsPhoneInput, OdsProfDataGrid, OdsRadio, OdsRadioGroup, OdsRangeTimepicker, OdsRate, OdsRemoteDataGrid, OdsSearch, OdsSelect, OdsSelectableTable, OdsSpin, OdsSwitch, OdsTab, OdsBasicTable as OdsTable, OdsTag, OdsText, OdsTextArea, OdsTimeline, OdsTimepicker, OdsTitle };
|
|
17662
17571
|
//# sourceMappingURL=index.modern.js.map
|