@mirai/core 0.4.49 → 0.4.50
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/build/components/Chat/Chat.ButtonAvatar.js +97 -0
- package/build/components/Chat/Chat.ButtonAvatar.js.map +1 -0
- package/build/components/Chat/Chat.Header.js +63 -0
- package/build/components/Chat/Chat.Header.js.map +1 -0
- package/build/components/Chat/Chat.constants.js +12 -15
- package/build/components/Chat/Chat.constants.js.map +1 -1
- package/build/components/Chat/Chat.js +50 -88
- package/build/components/Chat/Chat.js.map +1 -1
- package/build/components/Chat/Chat.module.css +52 -11
- package/build/components/Chat/components/InputRich/InputRich.js +2 -3
- package/build/components/Chat/components/InputRich/InputRich.js.map +1 -1
- package/build/components/Chat/components/InputRich/InputRich.module.css +9 -2
- package/build/components/Chat/components/Message/Message.constants.js +7 -3
- package/build/components/Chat/components/Message/Message.constants.js.map +1 -1
- package/build/components/Chat/components/Message/Message.module.css +1 -0
- package/build/components/Chat/components/Message/components/Booking.js +11 -18
- package/build/components/Chat/components/Message/components/Booking.js.map +1 -1
- package/build/components/Chat/components/Message/components/Booking.module.css +1 -9
- package/build/components/Chat/components/Message/components/Typewriter.js +51 -0
- package/build/components/Chat/components/Message/components/Typewriter.js.map +1 -0
- package/build/components/Chat/components/Message/intents/index.js +2 -13
- package/build/components/Chat/components/Message/intents/index.js.map +1 -1
- package/build/components/Chat/components/index.js +2 -13
- package/build/components/Chat/components/index.js.map +1 -1
- package/build/components/Chat/helpers/audioNotification.js +13 -0
- package/build/components/Chat/helpers/audioNotification.js.map +1 -0
- package/build/components/Chat/helpers/index.js +13 -2
- package/build/components/Chat/helpers/index.js.map +1 -1
- package/build/components/Session/Session.Login.js +12 -2
- package/build/components/Session/Session.Login.js.map +1 -1
- package/build/theme.css +5 -4
- package/package.json +1 -1
- package/build/components/Chat/components/Message/components/Booking.l10n.js +0 -15
- package/build/components/Chat/components/Message/components/Booking.l10n.js.map +0 -1
- package/build/components/Chat/components/Message/intents/Book.js +0 -62
- package/build/components/Chat/components/Message/intents/Book.js.map +0 -1
- package/build/components/Chat/components/Offline/Offline.js +0 -26
- package/build/components/Chat/components/Offline/Offline.js.map +0 -1
- package/build/components/Chat/components/Offline/Offline.module.css +0 -3
- package/build/components/Chat/components/Offline/index.js +0 -20
- package/build/components/Chat/components/Offline/index.js.map +0 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new e.Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="
|
|
2
|
+
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new e.Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="4a83ebec-ff24-5bd7-bdc6-ccc334ebb76a")}catch(e){}}();
|
|
3
3
|
|
|
4
4
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", {
|
|
@@ -37,6 +37,16 @@ const Login = _ref => {
|
|
|
37
37
|
}
|
|
38
38
|
} = (0, _dataSources.useStore)();
|
|
39
39
|
const [modal, setModal] = (0, _react.useState)(false);
|
|
40
|
+
(0, _react.useEffect)(() => {
|
|
41
|
+
const callback = function () {
|
|
42
|
+
let {
|
|
43
|
+
visible = true
|
|
44
|
+
} = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
|
45
|
+
return setModal(visible);
|
|
46
|
+
};
|
|
47
|
+
_dataSources.Event.subscribe(_helpers.EVENT.LOGIN, callback);
|
|
48
|
+
return () => _dataSources.Event.unsubscribe(_helpers.EVENT.LOGIN, callback);
|
|
49
|
+
}, []);
|
|
40
50
|
const handlePress = () => {
|
|
41
51
|
const {
|
|
42
52
|
authentication: {
|
|
@@ -82,4 +92,4 @@ Login.propTypes = {
|
|
|
82
92
|
skeleton: _propTypes.default.bool
|
|
83
93
|
};
|
|
84
94
|
//# sourceMappingURL=Session.Login.js.map
|
|
85
|
-
//# debugId=
|
|
95
|
+
//# debugId=4a83ebec-ff24-5bd7-bdc6-ccc334ebb76a
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Session.Login.js","sources":["../../../src/components/Session/Session.Login.jsx"],"sourcesContent":["import { useStore } from '@mirai/data-sources';\nimport { useLocale } from '@mirai/locale';\nimport { Icon, Pressable, Text, View } from '@mirai/ui';\nimport PropTypes from 'prop-types';\nimport React, { useState } from 'react';\n\nimport { ENDPOINT } from './Session.constants';\nimport { L10N } from './Session.l10n';\nimport { Modal } from './Session.Login.Modal';\nimport * as style from './Session.module.css';\nimport { AUTH_TYPE } from '../../Core.constants';\nimport { ICON, template, toUrlParams } from '../helpers';\n\nconst Login = ({ ghost, skeleton, ...others }) => {\n const { translate } = useLocale();\n const {\n value: { club = {}, id, language },\n } = useStore();\n\n const [modal, setModal] = useState(false);\n\n const handlePress = () => {\n const { authentication: { type = AUTH_TYPE.MIRAI } = {} } = club;\n if (type === AUTH_TYPE.MIRAI) return setModal(true);\n\n const url = `${process.env.SERVICE_USER}/${ENDPOINT.EXTERNAL_LOGIN}${toUrlParams({\n idtokenprovider: id,\n domain: document.location.href,\n lang: language,\n })}`;\n document.location.href = url;\n };\n\n return (\n <>\n <Pressable\n role=\"login\"\n onPress={handlePress}\n dangerouslySetInnerHTML={ghost ? { __html: template(ghost.outerHTML, undefined, translate) } : undefined}\n testId=\"show-login\"\n >\n {!ghost ? (\n <View row className={style.login}>\n <Icon role=\"content\" value={ICON.ACCOUNT} />\n <Text medium role=\"content\">\n {translate(L10N.ACTION_MODAL)}\n </Text>\n </View>\n ) : undefined}\n </Pressable>\n\n {!skeleton && (\n <Modal\n testId={others.testId}\n visible={modal}\n onClose={() => setModal(false)}\n onVisible={() => setModal(true)}\n className={others.className}\n />\n )}\n </>\n );\n};\n\nLogin.displayName = 'Mirai:Core:Session:Login';\n\nLogin.propTypes = {\n ghost: PropTypes.any,\n skeleton: PropTypes.bool,\n};\n\nexport { Login };\n"],"names":["_dataSources","require","_locale","_ui","_propTypes","_interopRequireDefault","_react","_interopRequireWildcard","_Session","_Session2","_SessionLogin","style","_Core","_helpers","_getRequireWildcardCache","e","WeakMap","r","t","__esModule","default","has","get","n","__proto__","a","Object","defineProperty","getOwnPropertyDescriptor","u","prototype","hasOwnProperty","call","i","set","obj","Login","_ref","ghost","skeleton","others","translate","useLocale","value","club","id","language","useStore","modal","setModal","useState","handlePress","authentication","type","AUTH_TYPE","MIRAI","url","concat","process","env","SERVICE_USER","ENDPOINT","EXTERNAL_LOGIN","toUrlParams","idtokenprovider","domain","document","location","href","lang","createElement","Fragment","Pressable","role","onPress","dangerouslySetInnerHTML","__html","template","outerHTML","
|
|
1
|
+
{"version":3,"file":"Session.Login.js","sources":["../../../src/components/Session/Session.Login.jsx"],"sourcesContent":["import { Event, useStore } from '@mirai/data-sources';\nimport { useLocale } from '@mirai/locale';\nimport { Icon, Pressable, Text, View } from '@mirai/ui';\nimport PropTypes from 'prop-types';\nimport React, { useEffect, useState } from 'react';\n\nimport { ENDPOINT } from './Session.constants';\nimport { L10N } from './Session.l10n';\nimport { Modal } from './Session.Login.Modal';\nimport * as style from './Session.module.css';\nimport { AUTH_TYPE } from '../../Core.constants';\nimport { EVENT, ICON, template, toUrlParams } from '../helpers';\n\nconst Login = ({ ghost, skeleton, ...others }) => {\n const { translate } = useLocale();\n const {\n value: { club = {}, id, language },\n } = useStore();\n\n const [modal, setModal] = useState(false);\n\n useEffect(() => {\n const callback = ({ visible = true } = {}) => setModal(visible);\n\n Event.subscribe(EVENT.LOGIN, callback);\n return () => Event.unsubscribe(EVENT.LOGIN, callback);\n }, []);\n\n const handlePress = () => {\n const { authentication: { type = AUTH_TYPE.MIRAI } = {} } = club;\n if (type === AUTH_TYPE.MIRAI) return setModal(true);\n\n const url = `${process.env.SERVICE_USER}/${ENDPOINT.EXTERNAL_LOGIN}${toUrlParams({\n idtokenprovider: id,\n domain: document.location.href,\n lang: language,\n })}`;\n document.location.href = url;\n };\n\n return (\n <>\n <Pressable\n role=\"login\"\n onPress={handlePress}\n dangerouslySetInnerHTML={ghost ? { __html: template(ghost.outerHTML, undefined, translate) } : undefined}\n testId=\"show-login\"\n >\n {!ghost ? (\n <View row className={style.login}>\n <Icon role=\"content\" value={ICON.ACCOUNT} />\n <Text medium role=\"content\">\n {translate(L10N.ACTION_MODAL)}\n </Text>\n </View>\n ) : undefined}\n </Pressable>\n\n {!skeleton && (\n <Modal\n testId={others.testId}\n visible={modal}\n onClose={() => setModal(false)}\n onVisible={() => setModal(true)}\n className={others.className}\n />\n )}\n </>\n );\n};\n\nLogin.displayName = 'Mirai:Core:Session:Login';\n\nLogin.propTypes = {\n ghost: PropTypes.any,\n skeleton: PropTypes.bool,\n};\n\nexport { Login };\n"],"names":["_dataSources","require","_locale","_ui","_propTypes","_interopRequireDefault","_react","_interopRequireWildcard","_Session","_Session2","_SessionLogin","style","_Core","_helpers","_getRequireWildcardCache","e","WeakMap","r","t","__esModule","default","has","get","n","__proto__","a","Object","defineProperty","getOwnPropertyDescriptor","u","prototype","hasOwnProperty","call","i","set","obj","Login","_ref","ghost","skeleton","others","translate","useLocale","value","club","id","language","useStore","modal","setModal","useState","useEffect","callback","visible","arguments","length","undefined","Event","subscribe","EVENT","LOGIN","unsubscribe","handlePress","authentication","type","AUTH_TYPE","MIRAI","url","concat","process","env","SERVICE_USER","ENDPOINT","EXTERNAL_LOGIN","toUrlParams","idtokenprovider","domain","document","location","href","lang","createElement","Fragment","Pressable","role","onPress","dangerouslySetInnerHTML","__html","template","outerHTML","testId","View","row","className","login","Icon","ICON","ACCOUNT","Text","medium","L10N","ACTION_MODAL","Modal","onClose","onVisible","exports","displayName","propTypes","PropTypes","any","bool"],"mappings":"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","debug_id":"4a83ebec-ff24-5bd7-bdc6-ccc334ebb76a"}
|
package/build/theme.css
CHANGED
|
@@ -28,16 +28,17 @@
|
|
|
28
28
|
--mirai-chat-text-accent-color: rgba(255, 255, 255, 0.95);
|
|
29
29
|
--mirai-chat-text-color: #222;
|
|
30
30
|
--mirai-chat-text-color-light: #999;
|
|
31
|
+
--mirai-chat-text-font: var(--mirai-ui-font-medium);
|
|
31
32
|
--mirai-chat-text-font-size: var(--mirai-ui-font-size-action);
|
|
32
|
-
--mirai-chat-text-font-weight:
|
|
33
|
+
--mirai-chat-text-font-weight: var(--mirai-ui-font-medium-weight);
|
|
33
34
|
--mirai-chat-text-line-height: var(--mirai-ui-line-height-action);
|
|
34
35
|
|
|
35
36
|
--mirai-chat-base: var(--mirai-ui-base);
|
|
36
|
-
--mirai-chat-base-opacity: rgba(255, 255, 255, 0.
|
|
37
|
+
--mirai-chat-base-opacity: rgba(255, 255, 255, 0.85);
|
|
37
38
|
--mirai-chat-box-shadow: 0 0 var(--mirai-ui-space-S) rgba(0, 0, 0, 0.1);
|
|
38
|
-
--mirai-chat-height:
|
|
39
|
+
--mirai-chat-height: 70svh;
|
|
39
40
|
--mirai-chat-layer: var(--mirai-ui-layer-XL);
|
|
40
|
-
--mirai-chat-max-height:
|
|
41
|
+
--mirai-chat-max-height: calc(100svh - calc(var(--mirai-chat-space) * 2));
|
|
41
42
|
--mirai-chat-width: calc(var(--mirai-ui-breakpoint-S) - var(--mirai-ui-space-XXL));
|
|
42
43
|
|
|
43
44
|
--mirai-chat-header-height: calc(var(--mirai-ui-space-XL) + var(--mirai-ui-space-M));
|
package/package.json
CHANGED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new e.Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="d99c14ac-c2a5-5753-add6-f6e791e00a09")}catch(e){}}();
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
Object.defineProperty(exports, "__esModule", {
|
|
6
|
-
value: true
|
|
7
|
-
});
|
|
8
|
-
exports.L10N = void 0;
|
|
9
|
-
const L10N = exports.L10N = {
|
|
10
|
-
LABEL_CANCELLED: {
|
|
11
|
-
id: 'user.label.cancelled'
|
|
12
|
-
}
|
|
13
|
-
};
|
|
14
|
-
//# sourceMappingURL=Booking.l10n.js.map
|
|
15
|
-
//# debugId=d99c14ac-c2a5-5753-add6-f6e791e00a09
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Booking.l10n.js","sources":["../../../../../../src/components/Chat/components/Message/components/Booking.l10n.js"],"sourcesContent":["export const L10N = {\n LABEL_CANCELLED: { id: 'user.label.cancelled' },\n};\n"],"names":["L10N","exports","LABEL_CANCELLED","id"],"mappings":";;;;;;;;AAAO,MAAMA,IAAI,GAAAC,OAAA,CAAAD,IAAA,GAAG;EAClBE,eAAe,EAAE;IAAEC,EAAE,EAAE;EAAuB;AAChD,CAAC","debug_id":"d99c14ac-c2a5-5753-add6-f6e791e00a09"}
|
|
@@ -1,62 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new e.Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="cf3392f4-00c8-53a6-98e9-6e3bbb183a5d")}catch(e){}}();
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
Object.defineProperty(exports, "__esModule", {
|
|
6
|
-
value: true
|
|
7
|
-
});
|
|
8
|
-
exports.Book = void 0;
|
|
9
|
-
var _dataSources = require("@mirai/data-sources");
|
|
10
|
-
var _ui = require("@mirai/ui");
|
|
11
|
-
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
12
|
-
var _react = _interopRequireWildcard(require("react"));
|
|
13
|
-
var _Chat = require("../../../Chat.constants");
|
|
14
|
-
var _components = require("../components");
|
|
15
|
-
var style = _interopRequireWildcard(require("../Message.module.css"));
|
|
16
|
-
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
17
|
-
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
18
|
-
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
19
|
-
const Book = _ref => {
|
|
20
|
-
let {
|
|
21
|
-
disabled,
|
|
22
|
-
response: {
|
|
23
|
-
text,
|
|
24
|
-
requirements
|
|
25
|
-
} = {}
|
|
26
|
-
} = _ref;
|
|
27
|
-
const [inputResponse, setInputResponse] = (0, _react.useState)();
|
|
28
|
-
|
|
29
|
-
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
30
|
-
(0, _react.useEffect)(() => dispatchRequirement(), [requirements]);
|
|
31
|
-
const dispatchRequirement = () => {
|
|
32
|
-
setInputResponse();
|
|
33
|
-
requirements && _dataSources.Event.publish(_Chat.EVENT.INPUT_COMPONENT, {
|
|
34
|
-
onSubmit: setInputResponse
|
|
35
|
-
});
|
|
36
|
-
};
|
|
37
|
-
const [{
|
|
38
|
-
text: requirementText
|
|
39
|
-
} = {}] = Object.values(requirements || {});
|
|
40
|
-
return /*#__PURE__*/_react.default.createElement(_react.default.Fragment, null, text && /*#__PURE__*/_react.default.createElement(_ui.Text, {
|
|
41
|
-
action: true,
|
|
42
|
-
className: style.text
|
|
43
|
-
}, text), requirementText && /*#__PURE__*/_react.default.createElement(_components.Card, {
|
|
44
|
-
disabled: disabled,
|
|
45
|
-
option: false,
|
|
46
|
-
text: (inputResponse === null || inputResponse === void 0 ? void 0 : inputResponse.text) || requirementText,
|
|
47
|
-
onPress: dispatchRequirement
|
|
48
|
-
}));
|
|
49
|
-
};
|
|
50
|
-
exports.Book = Book;
|
|
51
|
-
Book.propTypes = {
|
|
52
|
-
disabled: _propTypes.default.bool,
|
|
53
|
-
locale: _propTypes.default.string,
|
|
54
|
-
response: _propTypes.default.shape({
|
|
55
|
-
requirements: _propTypes.default.any,
|
|
56
|
-
text: _propTypes.default.string,
|
|
57
|
-
value: _propTypes.default.any
|
|
58
|
-
}),
|
|
59
|
-
onAction: _propTypes.default.func
|
|
60
|
-
};
|
|
61
|
-
//# sourceMappingURL=Book.js.map
|
|
62
|
-
//# debugId=cf3392f4-00c8-53a6-98e9-6e3bbb183a5d
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Book.js","sources":["../../../../../../src/components/Chat/components/Message/intents/Book.jsx"],"sourcesContent":["import { Event } from '@mirai/data-sources';\nimport { Text } from '@mirai/ui';\nimport PropTypes from 'prop-types';\nimport React, { useEffect, useState } from 'react';\n\nimport { EVENT } from '../../../Chat.constants';\nimport { Card } from '../components';\nimport * as style from '../Message.module.css';\n\nconst Book = ({ disabled, response: { text, requirements } = {} }) => {\n const [inputResponse, setInputResponse] = useState();\n\n // eslint-disable-next-line react-hooks/exhaustive-deps\n useEffect(() => dispatchRequirement(), [requirements]);\n\n const dispatchRequirement = () => {\n setInputResponse();\n\n requirements && Event.publish(EVENT.INPUT_COMPONENT, { onSubmit: setInputResponse });\n };\n\n const [{ text: requirementText } = {}] = Object.values(requirements || {});\n\n return (\n <>\n {text && (\n <Text action className={style.text}>\n {text}\n </Text>\n )}\n {requirementText && (\n <Card\n disabled={disabled}\n option={false}\n text={inputResponse?.text || requirementText}\n onPress={dispatchRequirement}\n />\n )}\n </>\n );\n};\n\nBook.propTypes = {\n disabled: PropTypes.bool,\n locale: PropTypes.string,\n response: PropTypes.shape({\n requirements: PropTypes.any,\n text: PropTypes.string,\n value: PropTypes.any,\n }),\n onAction: PropTypes.func,\n};\n\nexport { Book };\n"],"names":["_dataSources","require","_ui","_propTypes","_interopRequireDefault","_react","_interopRequireWildcard","_Chat","_components","style","_getRequireWildcardCache","e","WeakMap","r","t","__esModule","default","has","get","n","__proto__","a","Object","defineProperty","getOwnPropertyDescriptor","u","prototype","hasOwnProperty","call","i","set","obj","Book","_ref","disabled","response","text","requirements","inputResponse","setInputResponse","useState","useEffect","dispatchRequirement","Event","publish","EVENT","INPUT_COMPONENT","onSubmit","requirementText","values","createElement","Fragment","Text","action","className","Card","option","onPress","exports","propTypes","PropTypes","bool","locale","string","shape","any","value","onAction","func"],"mappings":"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","debug_id":"cf3392f4-00c8-53a6-98e9-6e3bbb183a5d"}
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new e.Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="3fcb3ca9-97b1-57e5-90cf-c53540dfa4ad")}catch(e){}}();
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
Object.defineProperty(exports, "__esModule", {
|
|
6
|
-
value: true
|
|
7
|
-
});
|
|
8
|
-
exports.Offline = void 0;
|
|
9
|
-
var _ui = require("@mirai/ui");
|
|
10
|
-
var _react = _interopRequireDefault(require("react"));
|
|
11
|
-
var style = _interopRequireWildcard(require("./Offline.module.css"));
|
|
12
|
-
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
13
|
-
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
14
|
-
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
15
|
-
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
16
|
-
const Offline = others => {
|
|
17
|
-
return /*#__PURE__*/_react.default.createElement(_ui.Notification, _extends({}, others, {
|
|
18
|
-
error: true,
|
|
19
|
-
small: true,
|
|
20
|
-
className: (0, _ui.styles)(style.container, others.className)
|
|
21
|
-
}), "Lorem ipsum dolor sit amet consectetur adipisicing elit. Cum tempore ipsa inventore, sed corporis distinctio.");
|
|
22
|
-
};
|
|
23
|
-
exports.Offline = Offline;
|
|
24
|
-
Offline.propTypes = {};
|
|
25
|
-
//# sourceMappingURL=Offline.js.map
|
|
26
|
-
//# debugId=3fcb3ca9-97b1-57e5-90cf-c53540dfa4ad
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"Offline.js","sources":["../../../../../src/components/Chat/components/Offline/Offline.jsx"],"sourcesContent":["import { Notification, styles } from '@mirai/ui';\nimport React from 'react';\n\nimport * as style from './Offline.module.css';\n\nconst Offline = (others) => {\n return (\n <Notification {...others} error small className={styles(style.container, others.className)}>\n Lorem ipsum dolor sit amet consectetur adipisicing elit. Cum tempore ipsa inventore, sed corporis distinctio.\n </Notification>\n );\n};\n\nOffline.propTypes = {};\n\nexport { Offline };\n"],"names":["_ui","require","_react","_interopRequireDefault","style","_interopRequireWildcard","_getRequireWildcardCache","e","WeakMap","r","t","__esModule","default","has","get","n","__proto__","a","Object","defineProperty","getOwnPropertyDescriptor","u","prototype","hasOwnProperty","call","i","set","obj","_extends","assign","bind","target","arguments","length","source","key","apply","Offline","others","createElement","Notification","error","small","className","styles","container","exports","propTypes"],"mappings":";;;;;;;;AAAA,IAAAA,GAAA,GAAAC,OAAA;AACA,IAAAC,MAAA,GAAAC,sBAAA,CAAAF,OAAA;AAEA,IAAAG,KAAA,GAAAC,uBAAA,CAAAJ,OAAA;AAA8C,SAAAK,yBAAAC,CAAA,6BAAAC,OAAA,mBAAAC,CAAA,OAAAD,OAAA,IAAAE,CAAA,OAAAF,OAAA,YAAAF,wBAAA,YAAAA,CAAAC,CAAA,WAAAA,CAAA,GAAAG,CAAA,GAAAD,CAAA,KAAAF,CAAA;AAAA,SAAAF,wBAAAE,CAAA,EAAAE,CAAA,SAAAA,CAAA,IAAAF,CAAA,IAAAA,CAAA,CAAAI,UAAA,SAAAJ,CAAA,eAAAA,CAAA,uBAAAA,CAAA,yBAAAA,CAAA,WAAAK,OAAA,EAAAL,CAAA,QAAAG,CAAA,GAAAJ,wBAAA,CAAAG,CAAA,OAAAC,CAAA,IAAAA,CAAA,CAAAG,GAAA,CAAAN,CAAA,UAAAG,CAAA,CAAAI,GAAA,CAAAP,CAAA,OAAAQ,CAAA,KAAAC,SAAA,UAAAC,CAAA,GAAAC,MAAA,CAAAC,cAAA,IAAAD,MAAA,CAAAE,wBAAA,WAAAC,CAAA,IAAAd,CAAA,oBAAAc,CAAA,IAAAH,MAAA,CAAAI,SAAA,CAAAC,cAAA,CAAAC,IAAA,CAAAjB,CAAA,EAAAc,CAAA,SAAAI,CAAA,GAAAR,CAAA,GAAAC,MAAA,CAAAE,wBAAA,CAAAb,CAAA,EAAAc,CAAA,UAAAI,CAAA,KAAAA,CAAA,CAAAX,GAAA,IAAAW,CAAA,CAAAC,GAAA,IAAAR,MAAA,CAAAC,cAAA,CAAAJ,CAAA,EAAAM,CAAA,EAAAI,CAAA,IAAAV,CAAA,CAAAM,CAAA,IAAAd,CAAA,CAAAc,CAAA,YAAAN,CAAA,CAAAH,OAAA,GAAAL,CAAA,EAAAG,CAAA,IAAAA,CAAA,CAAAgB,GAAA,CAAAnB,CAAA,EAAAQ,CAAA,GAAAA,CAAA;AAAA,SAAAZ,uBAAAwB,GAAA,WAAAA,GAAA,IAAAA,GAAA,CAAAhB,UAAA,GAAAgB,GAAA,KAAAf,OAAA,EAAAe,GAAA;AAAA,SAAAC,SAAA,IAAAA,QAAA,GAAAV,MAAA,CAAAW,MAAA,GAAAX,MAAA,CAAAW,MAAA,CAAAC,IAAA,eAAAC,MAAA,aAAAN,CAAA,MAAAA,CAAA,GAAAO,SAAA,CAAAC,MAAA,EAAAR,CAAA,UAAAS,MAAA,GAAAF,SAAA,CAAAP,CAAA,YAAAU,GAAA,IAAAD,MAAA,QAAAhB,MAAA,CAAAI,SAAA,CAAAC,cAAA,CAAAC,IAAA,CAAAU,MAAA,EAAAC,GAAA,KAAAJ,MAAA,CAAAI,GAAA,IAAAD,MAAA,CAAAC,GAAA,gBAAAJ,MAAA,YAAAH,QAAA,CAAAQ,KAAA,OAAAJ,SAAA;AAE9C,MAAMK,OAAO,GAAIC,MAAM,IAAK;EAC1B,oBACEpC,MAAA,CAAAU,OAAA,CAAA2B,aAAA,CAACvC,GAAA,CAAAwC,YAAY,EAAAZ,QAAA,KAAKU,MAAM;IAAEG,KAAK;IAACC,KAAK;IAACC,SAAS,EAAE,IAAAC,UAAM,EAACxC,KAAK,CAACyC,SAAS,EAAEP,MAAM,CAACK,SAAS;EAAE,IAAC,+GAE9E,CAAC;AAEnB,CAAC;AAACG,OAAA,CAAAT,OAAA,GAAAA,OAAA;AAEFA,OAAO,CAACU,SAAS,GAAG,CAAC,CAAC","debug_id":"3fcb3ca9-97b1-57e5-90cf-c53540dfa4ad"}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new e.Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="e38e059d-456c-5cfc-b6da-8779be22e3f5")}catch(e){}}();
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
Object.defineProperty(exports, "__esModule", {
|
|
6
|
-
value: true
|
|
7
|
-
});
|
|
8
|
-
var _Offline = require("./Offline");
|
|
9
|
-
Object.keys(_Offline).forEach(function (key) {
|
|
10
|
-
if (key === "default" || key === "__esModule") return;
|
|
11
|
-
if (key in exports && exports[key] === _Offline[key]) return;
|
|
12
|
-
Object.defineProperty(exports, key, {
|
|
13
|
-
enumerable: true,
|
|
14
|
-
get: function () {
|
|
15
|
-
return _Offline[key];
|
|
16
|
-
}
|
|
17
|
-
});
|
|
18
|
-
});
|
|
19
|
-
//# sourceMappingURL=index.js.map
|
|
20
|
-
//# debugId=e38e059d-456c-5cfc-b6da-8779be22e3f5
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":["../../../../../src/components/Chat/components/Offline/index.js"],"sourcesContent":["export * from './Offline';\n"],"names":["_Offline","require","Object","keys","forEach","key","exports","defineProperty","enumerable","get"],"mappings":";;;;;;;AAAA,IAAAA,QAAA,GAAAC,OAAA;AAAAC,MAAA,CAAAC,IAAA,CAAAH,QAAA,EAAAI,OAAA,WAAAC,GAAA;EAAA,IAAAA,GAAA,kBAAAA,GAAA;EAAA,IAAAA,GAAA,IAAAC,OAAA,IAAAA,OAAA,CAAAD,GAAA,MAAAL,QAAA,CAAAK,GAAA;EAAAH,MAAA,CAAAK,cAAA,CAAAD,OAAA,EAAAD,GAAA;IAAAG,UAAA;IAAAC,GAAA,WAAAA,CAAA;MAAA,OAAAT,QAAA,CAAAK,GAAA;IAAA;EAAA;AAAA","debug_id":"e38e059d-456c-5cfc-b6da-8779be22e3f5"}
|