acsi-core 0.1.39 → 0.1.40
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/CoreTooltip/index.d.ts +12 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/index.css +6 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +48 -17
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +48 -18
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import React, { ReactNode } from "react";
|
|
2
|
+
interface IProps {
|
|
3
|
+
id: string;
|
|
4
|
+
content: string | ReactNode;
|
|
5
|
+
children: ReactNode;
|
|
6
|
+
placement?: "left" | "top" | "bottom" | "right";
|
|
7
|
+
isDelay?: boolean;
|
|
8
|
+
timeDelay?: number;
|
|
9
|
+
innerClassName?: string;
|
|
10
|
+
}
|
|
11
|
+
declare const CoreTooltip: (props: IProps) => React.JSX.Element;
|
|
12
|
+
export default CoreTooltip;
|
|
@@ -11,3 +11,4 @@ export { default as CoreSearch } from "./CoreSearch";
|
|
|
11
11
|
export { default as CoreSelectCompact } from "./CoreSelectCompact";
|
|
12
12
|
export { default as CoreInputCompact } from "./CoreInputCompact";
|
|
13
13
|
export { default as CoreTitleInput } from "./CoreTitleInput";
|
|
14
|
+
export { default as CoreTooltip } from "./CoreTooltip";
|
package/dist/index.css
CHANGED
|
@@ -225,7 +225,8 @@
|
|
|
225
225
|
._2sg12 ._1-XBo {
|
|
226
226
|
font-size: 13px;
|
|
227
227
|
font-weight: 600;
|
|
228
|
-
margin-bottom: 4px;
|
|
228
|
+
margin-bottom: 4px;
|
|
229
|
+
color: #585869; }
|
|
229
230
|
._2sg12 label {
|
|
230
231
|
font-weight: 400 !important;
|
|
231
232
|
color: #212126 !important;
|
|
@@ -236,7 +237,7 @@
|
|
|
236
237
|
align-items: center; }
|
|
237
238
|
._3HY4f label {
|
|
238
239
|
font-size: 14px;
|
|
239
|
-
font-weight:
|
|
240
|
+
font-weight: 400; }
|
|
240
241
|
._3HY4f input {
|
|
241
242
|
width: 16px;
|
|
242
243
|
height: 16px;
|
|
@@ -449,3 +450,6 @@
|
|
|
449
450
|
font-size: 18px;
|
|
450
451
|
font-weight: 700;
|
|
451
452
|
line-height: 24.55px; }
|
|
453
|
+
|
|
454
|
+
._1Bmhs {
|
|
455
|
+
cursor: pointer; }
|
package/dist/index.d.ts
CHANGED
|
@@ -15,11 +15,11 @@ import { ToastContainer, toast } from "react-toastify";
|
|
|
15
15
|
import { Role } from "./containers/Login/configs/constants";
|
|
16
16
|
import CustomPagination from "./components/Paginations/CustomPagination";
|
|
17
17
|
import useGoogleSignOut from "./utils/hooks/useGoogleSignOut";
|
|
18
|
-
import { CoreButton, CoreInput, CoreSelect, CoreCheckbox, CoreRadio, CoreError, CoreModal, CoreRange, CoreTextArea, CoreSearch, CoreSelectCompact, CoreInputCompact, CoreTitleInput } from "./components";
|
|
18
|
+
import { CoreButton, CoreInput, CoreSelect, CoreCheckbox, CoreRadio, CoreError, CoreModal, CoreRange, CoreTextArea, CoreSearch, CoreSelectCompact, CoreInputCompact, CoreTitleInput, CoreTooltip } from "./components";
|
|
19
19
|
import { getErrorMessage } from "./utils/getErrorMessage";
|
|
20
20
|
import { GoogleOAuthProvider } from '@react-oauth/google';
|
|
21
21
|
import CustomSelect from "./components/Selects/CustomSelect";
|
|
22
22
|
import CustomAsyncSelect from "./components/Selects/CustomAsyncSelect";
|
|
23
23
|
import CustomCreatable from "./components/Selects/CustomCreatable";
|
|
24
24
|
import CustomSelectOption from "./components/Selects/CustomSelectOption";
|
|
25
|
-
export { setLoading, setLoadingPage, BASE_URL, OPENSALT_BASE_URL, ACCESS_TOKEN, DATE_TIME_MIN_VALUE, ORGANIZATION_TEAM, ORGANIZATION_TENANT, firstCheckToken, Login, getAccessToken, store, historyCore, setAlert, setUser, setTenant, setAddTenant, setTeam, setMenuCollapse, setIsRefetchSidebar, Loading, NotFound, LayoutContext, api, apiUpload, ConfirmDialog, CommonDialog, ToastContainer, toast, Role, CustomPagination, useGoogleSignOut, CoreButton, CoreInput, CoreSelect, CoreCheckbox, CoreRadio, CoreError, CoreModal, CoreRange, CoreTextArea, CoreSearch, CoreSelectCompact, CoreInputCompact, CoreTitleInput, getErrorMessage, CustomSelect, CustomAsyncSelect, CustomCreatable, CustomSelectOption, GoogleOAuthProvider };
|
|
25
|
+
export { setLoading, setLoadingPage, BASE_URL, OPENSALT_BASE_URL, ACCESS_TOKEN, DATE_TIME_MIN_VALUE, ORGANIZATION_TEAM, ORGANIZATION_TENANT, firstCheckToken, Login, getAccessToken, store, historyCore, setAlert, setUser, setTenant, setAddTenant, setTeam, setMenuCollapse, setIsRefetchSidebar, Loading, NotFound, LayoutContext, api, apiUpload, ConfirmDialog, CommonDialog, ToastContainer, toast, Role, CustomPagination, useGoogleSignOut, CoreButton, CoreInput, CoreSelect, CoreCheckbox, CoreRadio, CoreError, CoreModal, CoreRange, CoreTextArea, CoreSearch, CoreSelectCompact, CoreInputCompact, CoreTitleInput, CoreTooltip, getErrorMessage, CustomSelect, CustomAsyncSelect, CustomCreatable, CustomSelectOption, GoogleOAuthProvider };
|
package/dist/index.js
CHANGED
|
@@ -355,22 +355,6 @@ var Login = function Login(props) {
|
|
|
355
355
|
}));
|
|
356
356
|
};
|
|
357
357
|
|
|
358
|
-
var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
|
|
359
|
-
|
|
360
|
-
function unwrapExports (x) {
|
|
361
|
-
return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, 'default') ? x['default'] : x;
|
|
362
|
-
}
|
|
363
|
-
|
|
364
|
-
function createCommonjsModule(fn, module) {
|
|
365
|
-
return module = { exports: {} }, fn(module, module.exports), module.exports;
|
|
366
|
-
}
|
|
367
|
-
|
|
368
|
-
var reduxLogger = createCommonjsModule(function (module, exports) {
|
|
369
|
-
!function(e,t){t(exports);}(commonjsGlobal,function(e){function t(e,t){e.super_=t,e.prototype=Object.create(t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}});}function r(e,t){Object.defineProperty(this,"kind",{value:e,enumerable:!0}),t&&t.length&&Object.defineProperty(this,"path",{value:t,enumerable:!0});}function n(e,t,r){n.super_.call(this,"E",e),Object.defineProperty(this,"lhs",{value:t,enumerable:!0}),Object.defineProperty(this,"rhs",{value:r,enumerable:!0});}function o(e,t){o.super_.call(this,"N",e),Object.defineProperty(this,"rhs",{value:t,enumerable:!0});}function i(e,t){i.super_.call(this,"D",e),Object.defineProperty(this,"lhs",{value:t,enumerable:!0});}function a(e,t,r){a.super_.call(this,"A",e),Object.defineProperty(this,"index",{value:t,enumerable:!0}),Object.defineProperty(this,"item",{value:r,enumerable:!0});}function f(e,t,r){var n=e.slice((r||t)+1||e.length);return e.length=t<0?e.length+t:t,e.push.apply(e,n),e}function u(e){var t="undefined"==typeof e?"undefined":N(e);return "object"!==t?t:e===Math?"math":null===e?"null":Array.isArray(e)?"array":"[object Date]"===Object.prototype.toString.call(e)?"date":"function"==typeof e.toString&&/^\/.*\//.test(e.toString())?"regexp":"object"}function l(e,t,r,c,s,d,p){s=s||[],p=p||[];var g=s.slice(0);if("undefined"!=typeof d){if(c){if("function"==typeof c&&c(g,d))return;if("object"===("undefined"==typeof c?"undefined":N(c))){if(c.prefilter&&c.prefilter(g,d))return;if(c.normalize){var h=c.normalize(g,d,e,t);h&&(e=h[0],t=h[1]);}}}g.push(d);}"regexp"===u(e)&&"regexp"===u(t)&&(e=e.toString(),t=t.toString());var y="undefined"==typeof e?"undefined":N(e),v="undefined"==typeof t?"undefined":N(t),b="undefined"!==y||p&&p[p.length-1].lhs&&p[p.length-1].lhs.hasOwnProperty(d),m="undefined"!==v||p&&p[p.length-1].rhs&&p[p.length-1].rhs.hasOwnProperty(d);if(!b&&m)r(new o(g,t));else if(!m&&b)r(new i(g,e));else if(u(e)!==u(t))r(new n(g,e,t));else if("date"===u(e)&&e-t!==0)r(new n(g,e,t));else if("object"===y&&null!==e&&null!==t)if(p.filter(function(t){return t.lhs===e}).length)e!==t&&r(new n(g,e,t));else {if(p.push({lhs:e,rhs:t}),Array.isArray(e)){var w;for(w=0;w<e.length;w++)w>=t.length?r(new a(g,w,new i(void 0,e[w]))):l(e[w],t[w],r,c,g,w,p);for(;w<t.length;)r(new a(g,w,new o(void 0,t[w++])));}else {var x=Object.keys(e),S=Object.keys(t);x.forEach(function(n,o){var i=S.indexOf(n);i>=0?(l(e[n],t[n],r,c,g,n,p),S=f(S,i)):l(e[n],void 0,r,c,g,n,p);}),S.forEach(function(e){l(void 0,t[e],r,c,g,e,p);});}p.length=p.length-1;}else e!==t&&("number"===y&&isNaN(e)&&isNaN(t)||r(new n(g,e,t)));}function c(e,t,r,n){return n=n||[],l(e,t,function(e){e&&n.push(e);},r),n.length?n:void 0}function s(e,t,r){if(r.path&&r.path.length){var n,o=e[t],i=r.path.length-1;for(n=0;n<i;n++)o=o[r.path[n]];switch(r.kind){case"A":s(o[r.path[n]],r.index,r.item);break;case"D":delete o[r.path[n]];break;case"E":case"N":o[r.path[n]]=r.rhs;}}else switch(r.kind){case"A":s(e[t],r.index,r.item);break;case"D":e=f(e,t);break;case"E":case"N":e[t]=r.rhs;}return e}function d(e,t,r){if(e&&t&&r&&r.kind){for(var n=e,o=-1,i=r.path?r.path.length-1:0;++o<i;)"undefined"==typeof n[r.path[o]]&&(n[r.path[o]]="number"==typeof r.path[o]?[]:{}),n=n[r.path[o]];switch(r.kind){case"A":s(r.path?n[r.path[o]]:n,r.index,r.item);break;case"D":delete n[r.path[o]];break;case"E":case"N":n[r.path[o]]=r.rhs;}}}function p(e,t,r){if(r.path&&r.path.length){var n,o=e[t],i=r.path.length-1;for(n=0;n<i;n++)o=o[r.path[n]];switch(r.kind){case"A":p(o[r.path[n]],r.index,r.item);break;case"D":o[r.path[n]]=r.lhs;break;case"E":o[r.path[n]]=r.lhs;break;case"N":delete o[r.path[n]];}}else switch(r.kind){case"A":p(e[t],r.index,r.item);break;case"D":e[t]=r.lhs;break;case"E":e[t]=r.lhs;break;case"N":e=f(e,t);}return e}function g(e,t,r){if(e&&t&&r&&r.kind){var n,o,i=e;for(o=r.path.length-1,n=0;n<o;n++)"undefined"==typeof i[r.path[n]]&&(i[r.path[n]]={}),i=i[r.path[n]];switch(r.kind){case"A":p(i[r.path[n]],r.index,r.item);break;case"D":i[r.path[n]]=r.lhs;break;case"E":i[r.path[n]]=r.lhs;break;case"N":delete i[r.path[n]];}}}function h(e,t,r){if(e&&t){var n=function(n){r&&!r(e,t,n)||d(e,t,n);};l(e,t,n);}}function y(e){return "color: "+F[e].color+"; font-weight: bold"}function v(e){var t=e.kind,r=e.path,n=e.lhs,o=e.rhs,i=e.index,a=e.item;switch(t){case"E":return [r.join("."),n,"→",o];case"N":return [r.join("."),o];case"D":return [r.join(".")];case"A":return [r.join(".")+"["+i+"]",a];default:return []}}function b(e,t,r,n){var o=c(e,t);try{n?r.groupCollapsed("diff"):r.group("diff");}catch(e){r.log("diff");}o?o.forEach(function(e){var t=e.kind,n=v(e);r.log.apply(r,["%c "+F[t].text,y(t)].concat(P(n)));}):r.log("—— no diff ——");try{r.groupEnd();}catch(e){r.log("—— diff end —— ");}}function m(e,t,r,n){switch("undefined"==typeof e?"undefined":N(e)){case"object":return "function"==typeof e[n]?e[n].apply(e,P(r)):e[n];case"function":return e(t);default:return e}}function w(e){var t=e.timestamp,r=e.duration;return function(e,n,o){var i=["action"];return i.push("%c"+String(e.type)),t&&i.push("%c@ "+n),r&&i.push("%c(in "+o.toFixed(2)+" ms)"),i.join(" ")}}function x(e,t){var r=t.logger,n=t.actionTransformer,o=t.titleFormatter,i=void 0===o?w(t):o,a=t.collapsed,f=t.colors,u=t.level,l=t.diff,c="undefined"==typeof t.titleFormatter;e.forEach(function(o,s){var d=o.started,p=o.startedTime,g=o.action,h=o.prevState,y=o.error,v=o.took,w=o.nextState,x=e[s+1];x&&(w=x.prevState,v=x.started-d);var S=n(g),k="function"==typeof a?a(function(){return w},g,o):a,j=D(p),E=f.title?"color: "+f.title(S)+";":"",A=["color: gray; font-weight: lighter;"];A.push(E),t.timestamp&&A.push("color: gray; font-weight: lighter;"),t.duration&&A.push("color: gray; font-weight: lighter;");var O=i(S,j,v);try{k?f.title&&c?r.groupCollapsed.apply(r,["%c "+O].concat(A)):r.groupCollapsed(O):f.title&&c?r.group.apply(r,["%c "+O].concat(A)):r.group(O);}catch(e){r.log(O);}var N=m(u,S,[h],"prevState"),P=m(u,S,[S],"action"),C=m(u,S,[y,h],"error"),F=m(u,S,[w],"nextState");if(N)if(f.prevState){var L="color: "+f.prevState(h)+"; font-weight: bold";r[N]("%c prev state",L,h);}else r[N]("prev state",h);if(P)if(f.action){var T="color: "+f.action(S)+"; font-weight: bold";r[P]("%c action ",T,S);}else r[P]("action ",S);if(y&&C)if(f.error){var M="color: "+f.error(y,h)+"; font-weight: bold;";r[C]("%c error ",M,y);}else r[C]("error ",y);if(F)if(f.nextState){var _="color: "+f.nextState(w)+"; font-weight: bold";r[F]("%c next state",_,w);}else r[F]("next state",w);l&&b(h,w,r,k);try{r.groupEnd();}catch(e){r.log("—— log end ——");}});}function S(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=Object.assign({},L,e),r=t.logger,n=t.stateTransformer,o=t.errorTransformer,i=t.predicate,a=t.logErrors,f=t.diffPredicate;if("undefined"==typeof r)return function(){return function(e){return function(t){return e(t)}}};if(e.getState&&e.dispatch)return console.error("[redux-logger] redux-logger not installed. Make sure to pass logger instance as middleware:\n// Logger with default options\nimport { logger } from 'redux-logger'\nconst store = createStore(\n reducer,\n applyMiddleware(logger)\n)\n// Or you can create your own logger with custom options http://bit.ly/redux-logger-options\nimport createLogger from 'redux-logger'\nconst logger = createLogger({\n // ...options\n});\nconst store = createStore(\n reducer,\n applyMiddleware(logger)\n)\n"),function(){return function(e){return function(t){return e(t)}}};var u=[];return function(e){var r=e.getState;return function(e){return function(l){if("function"==typeof i&&!i(r,l))return e(l);var c={};u.push(c),c.started=O.now(),c.startedTime=new Date,c.prevState=n(r()),c.action=l;var s=void 0;if(a)try{s=e(l);}catch(e){c.error=o(e);}else s=e(l);c.took=O.now()-c.started,c.nextState=n(r());var d=t.diff&&"function"==typeof f?f(r,l):t.diff;if(x(u,Object.assign({},t,{diff:d})),u.length=0,c.error)throw c.error;return s}}}}var k,j,E=function(e,t){return new Array(t+1).join(e)},A=function(e,t){return E("0",t-e.toString().length)+e},D=function(e){return A(e.getHours(),2)+":"+A(e.getMinutes(),2)+":"+A(e.getSeconds(),2)+"."+A(e.getMilliseconds(),3)},O="undefined"!=typeof performance&&null!==performance&&"function"==typeof performance.now?performance:Date,N="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},P=function(e){if(Array.isArray(e)){for(var t=0,r=Array(e.length);t<e.length;t++)r[t]=e[t];return r}return Array.from(e)},C=[];k="object"===("undefined"==typeof commonjsGlobal?"undefined":N(commonjsGlobal))&&commonjsGlobal?commonjsGlobal:"undefined"!=typeof window?window:{},j=k.DeepDiff,j&&C.push(function(){"undefined"!=typeof j&&k.DeepDiff===c&&(k.DeepDiff=j,j=void 0);}),t(n,r),t(o,r),t(i,r),t(a,r),Object.defineProperties(c,{diff:{value:c,enumerable:!0},observableDiff:{value:l,enumerable:!0},applyDiff:{value:h,enumerable:!0},applyChange:{value:d,enumerable:!0},revertChange:{value:g,enumerable:!0},isConflict:{value:function(){return "undefined"!=typeof j},enumerable:!0},noConflict:{value:function(){return C&&(C.forEach(function(e){e();}),C=null),c},enumerable:!0}});var F={E:{color:"#2196F3",text:"CHANGED:"},N:{color:"#4CAF50",text:"ADDED:"},D:{color:"#F44336",text:"DELETED:"},A:{color:"#2196F3",text:"ARRAY:"}},L={level:"log",logger:console,logErrors:!0,collapsed:void 0,predicate:void 0,duration:!1,timestamp:!0,stateTransformer:function(e){return e},actionTransformer:function(e){return e},errorTransformer:function(e){return e},colors:{title:function(){return "inherit"},prevState:function(){return "#9E9E9E"},action:function(){return "#03A9F4"},nextState:function(){return "#4CAF50"},error:function(){return "#F20404"}},diff:!1,diffPredicate:void 0,transformer:void 0},T=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=e.dispatch,r=e.getState;return "function"==typeof t||"function"==typeof r?S()({dispatch:t,getState:r}):void console.error("\n[redux-logger v3] BREAKING CHANGE\n[redux-logger v3] Since 3.0.0 redux-logger exports by default logger with default settings.\n[redux-logger v3] Change\n[redux-logger v3] import createLogger from 'redux-logger'\n[redux-logger v3] to\n[redux-logger v3] import { createLogger } from 'redux-logger'\n")};e.defaults=L,e.createLogger=S,e.logger=T,e.default=T,Object.defineProperty(e,"__esModule",{value:!0});});
|
|
370
|
-
});
|
|
371
|
-
|
|
372
|
-
var logger = unwrapExports(reduxLogger);
|
|
373
|
-
|
|
374
358
|
// src/utils/formatProdErrorMessage.ts
|
|
375
359
|
function formatProdErrorMessage(code) {
|
|
376
360
|
return `Minified Redux error #${code}; visit https://redux.js.org/Errors?code=${code} for the full message or use the non-minified dev environment for full errors. `;
|
|
@@ -597,7 +581,7 @@ var store = toolkit.configureStore({
|
|
|
597
581
|
middleware: function middleware(getDefaultMiddleware) {
|
|
598
582
|
return getDefaultMiddleware({
|
|
599
583
|
serializableCheck: false
|
|
600
|
-
})
|
|
584
|
+
});
|
|
601
585
|
}
|
|
602
586
|
});
|
|
603
587
|
|
|
@@ -1883,6 +1867,52 @@ var CoreTitleInput = function CoreTitleInput(props) {
|
|
|
1883
1867
|
}));
|
|
1884
1868
|
};
|
|
1885
1869
|
|
|
1870
|
+
var styles$d = {"core-tooltip":"_1Bmhs"};
|
|
1871
|
+
|
|
1872
|
+
var CoreTooltip = function CoreTooltip(props) {
|
|
1873
|
+
var id = props.id,
|
|
1874
|
+
content = props.content,
|
|
1875
|
+
children = props.children,
|
|
1876
|
+
placement = props.placement,
|
|
1877
|
+
isDelay = props.isDelay,
|
|
1878
|
+
_props$timeDelay = props.timeDelay,
|
|
1879
|
+
timeDelay = _props$timeDelay === void 0 ? 1500 : _props$timeDelay,
|
|
1880
|
+
innerClassName = props.innerClassName;
|
|
1881
|
+
var timeoutRef = React.useRef(null);
|
|
1882
|
+
var _useState = React.useState(false),
|
|
1883
|
+
isOpenTooltip = _useState[0],
|
|
1884
|
+
setIsOpenTooltip = _useState[1];
|
|
1885
|
+
var handleMouseEnter = function handleMouseEnter() {
|
|
1886
|
+
if (isDelay) {
|
|
1887
|
+
timeoutRef.current = setTimeout(function () {
|
|
1888
|
+
setIsOpenTooltip(true);
|
|
1889
|
+
}, timeDelay);
|
|
1890
|
+
} else {
|
|
1891
|
+
setIsOpenTooltip(true);
|
|
1892
|
+
}
|
|
1893
|
+
};
|
|
1894
|
+
var handleMouseLeave = function handleMouseLeave() {
|
|
1895
|
+
if (timeoutRef.current) {
|
|
1896
|
+
clearTimeout(timeoutRef.current);
|
|
1897
|
+
timeoutRef.current = null;
|
|
1898
|
+
}
|
|
1899
|
+
setIsOpenTooltip(false);
|
|
1900
|
+
};
|
|
1901
|
+
return React__default.createElement("div", {
|
|
1902
|
+
id: id,
|
|
1903
|
+
className: styles$d["core-tooltip"],
|
|
1904
|
+
onMouseEnter: handleMouseEnter,
|
|
1905
|
+
onMouseLeave: handleMouseLeave
|
|
1906
|
+
}, React__default.createElement("div", {
|
|
1907
|
+
className: styles$d["icon"]
|
|
1908
|
+
}, children), content && React__default.createElement(reactstrap.Tooltip, {
|
|
1909
|
+
target: id,
|
|
1910
|
+
isOpen: isOpenTooltip,
|
|
1911
|
+
placement: placement,
|
|
1912
|
+
innerClassName: innerClassName
|
|
1913
|
+
}, content));
|
|
1914
|
+
};
|
|
1915
|
+
|
|
1886
1916
|
var getErrorMessage = function getErrorMessage(error, defaultErrorMessage) {
|
|
1887
1917
|
var _error$response, _error$response$data, _error$response2, _error$response3, _error$response3$data;
|
|
1888
1918
|
var errorMessage = error === null || error === void 0 ? void 0 : (_error$response = error.response) === null || _error$response === void 0 ? void 0 : (_error$response$data = _error$response.data) === null || _error$response$data === void 0 ? void 0 : _error$response$data.title;
|
|
@@ -2120,6 +2150,7 @@ exports.CoreSelect = CoreSelect;
|
|
|
2120
2150
|
exports.CoreSelectCompact = CoreSelectCompact;
|
|
2121
2151
|
exports.CoreTextArea = CoreTextArea;
|
|
2122
2152
|
exports.CoreTitleInput = CoreTitleInput;
|
|
2153
|
+
exports.CoreTooltip = CoreTooltip;
|
|
2123
2154
|
exports.CustomAsyncSelect = CustomAsyncSelect;
|
|
2124
2155
|
exports.CustomCreatable = CustomCreatable;
|
|
2125
2156
|
exports.CustomPagination = CustomPagination;
|