@mmb-digital/ds-lilly 0.10.13 → 0.10.15
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/0.ds-lilly.js +9402 -0
- package/dist/Alert.ds-lilly.js +3285 -0
- package/dist/Avatar.ds-lilly.js +3289 -0
- package/dist/Badge.ds-lilly.js +227 -0
- package/dist/Button.ds-lilly.js +3419 -0
- package/dist/ButtonTooltip.ds-lilly.js +6145 -0
- package/dist/Card.ds-lilly.js +3447 -0
- package/dist/Collapse.ds-lilly.js +3470 -0
- package/dist/Divider.ds-lilly.js +226 -0
- package/dist/Dropdown.ds-lilly.js +5960 -0
- package/dist/Icon.ds-lilly.js +3257 -0
- package/dist/IconList.ds-lilly.js +3307 -0
- package/dist/Image.ds-lilly.js +226 -0
- package/dist/Link.ds-lilly.js +3340 -0
- package/dist/List.ds-lilly.js +240 -0
- package/dist/Loader.ds-lilly.js +271 -0
- package/dist/Modal.ds-lilly.js +3938 -0
- package/dist/Pills.ds-lilly.js +400 -0
- package/dist/Tag.ds-lilly.js +3282 -0
- package/dist/Tile.ds-lilly.js +3294 -0
- package/dist/Tooltip.ds-lilly.js +2966 -0
- package/dist/UserAuth.ds-lilly.js +9552 -0
- package/dist/comps.ds-lilly.js +95598 -0
- package/dist/ds-lilly.css +1 -1
- package/dist/ds-lilly.js +6 -6
- package/dist/main.ds-lilly.js +95048 -0
- package/dist/types/src/components/Components/CompactButtons/CompactButtons.d.ts +7 -2
- package/dist/types/src/components/Form/Toggle/Toggle.d.ts +6 -2
- package/dist/types/src/utils/classBinder.d.ts +5 -1
- package/package.json +1 -1
|
@@ -0,0 +1,240 @@
|
|
|
1
|
+
(function webpackUniversalModuleDefinition(root, factory) {
|
|
2
|
+
if(typeof exports === 'object' && typeof module === 'object')
|
|
3
|
+
module.exports = factory(require("react"));
|
|
4
|
+
else if(typeof define === 'function' && define.amd)
|
|
5
|
+
define(["react"], factory);
|
|
6
|
+
else if(typeof exports === 'object')
|
|
7
|
+
exports["${FILENAME}"] = factory(require("react"));
|
|
8
|
+
else
|
|
9
|
+
root["${FILENAME}"] = factory(root["React"]);
|
|
10
|
+
})(window, function(__WEBPACK_EXTERNAL_MODULE__0__) {
|
|
11
|
+
return /******/ (function(modules) { // webpackBootstrap
|
|
12
|
+
/******/ // The module cache
|
|
13
|
+
/******/ var installedModules = {};
|
|
14
|
+
/******/
|
|
15
|
+
/******/ // The require function
|
|
16
|
+
/******/ function __webpack_require__(moduleId) {
|
|
17
|
+
/******/
|
|
18
|
+
/******/ // Check if module is in cache
|
|
19
|
+
/******/ if(installedModules[moduleId]) {
|
|
20
|
+
/******/ return installedModules[moduleId].exports;
|
|
21
|
+
/******/ }
|
|
22
|
+
/******/ // Create a new module (and put it into the cache)
|
|
23
|
+
/******/ var module = installedModules[moduleId] = {
|
|
24
|
+
/******/ i: moduleId,
|
|
25
|
+
/******/ l: false,
|
|
26
|
+
/******/ exports: {}
|
|
27
|
+
/******/ };
|
|
28
|
+
/******/
|
|
29
|
+
/******/ // Execute the module function
|
|
30
|
+
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
|
31
|
+
/******/
|
|
32
|
+
/******/ // Flag the module as loaded
|
|
33
|
+
/******/ module.l = true;
|
|
34
|
+
/******/
|
|
35
|
+
/******/ // Return the exports of the module
|
|
36
|
+
/******/ return module.exports;
|
|
37
|
+
/******/ }
|
|
38
|
+
/******/
|
|
39
|
+
/******/
|
|
40
|
+
/******/ // expose the modules object (__webpack_modules__)
|
|
41
|
+
/******/ __webpack_require__.m = modules;
|
|
42
|
+
/******/
|
|
43
|
+
/******/ // expose the module cache
|
|
44
|
+
/******/ __webpack_require__.c = installedModules;
|
|
45
|
+
/******/
|
|
46
|
+
/******/ // define getter function for harmony exports
|
|
47
|
+
/******/ __webpack_require__.d = function(exports, name, getter) {
|
|
48
|
+
/******/ if(!__webpack_require__.o(exports, name)) {
|
|
49
|
+
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
|
50
|
+
/******/ }
|
|
51
|
+
/******/ };
|
|
52
|
+
/******/
|
|
53
|
+
/******/ // define __esModule on exports
|
|
54
|
+
/******/ __webpack_require__.r = function(exports) {
|
|
55
|
+
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
|
56
|
+
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
57
|
+
/******/ }
|
|
58
|
+
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
|
59
|
+
/******/ };
|
|
60
|
+
/******/
|
|
61
|
+
/******/ // create a fake namespace object
|
|
62
|
+
/******/ // mode & 1: value is a module id, require it
|
|
63
|
+
/******/ // mode & 2: merge all properties of value into the ns
|
|
64
|
+
/******/ // mode & 4: return value when already ns object
|
|
65
|
+
/******/ // mode & 8|1: behave like require
|
|
66
|
+
/******/ __webpack_require__.t = function(value, mode) {
|
|
67
|
+
/******/ if(mode & 1) value = __webpack_require__(value);
|
|
68
|
+
/******/ if(mode & 8) return value;
|
|
69
|
+
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
|
70
|
+
/******/ var ns = Object.create(null);
|
|
71
|
+
/******/ __webpack_require__.r(ns);
|
|
72
|
+
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
|
73
|
+
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
|
74
|
+
/******/ return ns;
|
|
75
|
+
/******/ };
|
|
76
|
+
/******/
|
|
77
|
+
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
|
78
|
+
/******/ __webpack_require__.n = function(module) {
|
|
79
|
+
/******/ var getter = module && module.__esModule ?
|
|
80
|
+
/******/ function getDefault() { return module['default']; } :
|
|
81
|
+
/******/ function getModuleExports() { return module; };
|
|
82
|
+
/******/ __webpack_require__.d(getter, 'a', getter);
|
|
83
|
+
/******/ return getter;
|
|
84
|
+
/******/ };
|
|
85
|
+
/******/
|
|
86
|
+
/******/ // Object.prototype.hasOwnProperty.call
|
|
87
|
+
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
|
88
|
+
/******/
|
|
89
|
+
/******/ // __webpack_public_path__
|
|
90
|
+
/******/ __webpack_require__.p = "";
|
|
91
|
+
/******/
|
|
92
|
+
/******/
|
|
93
|
+
/******/ // Load entry module and return exports
|
|
94
|
+
/******/ return __webpack_require__(__webpack_require__.s = 521);
|
|
95
|
+
/******/ })
|
|
96
|
+
/************************************************************************/
|
|
97
|
+
/******/ ({
|
|
98
|
+
|
|
99
|
+
/***/ 0:
|
|
100
|
+
/***/ (function(module, exports) {
|
|
101
|
+
|
|
102
|
+
module.exports = __WEBPACK_EXTERNAL_MODULE__0__;
|
|
103
|
+
|
|
104
|
+
/***/ }),
|
|
105
|
+
|
|
106
|
+
/***/ 15:
|
|
107
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
108
|
+
|
|
109
|
+
// extracted by mini-css-extract-plugin
|
|
110
|
+
|
|
111
|
+
/***/ }),
|
|
112
|
+
|
|
113
|
+
/***/ 3:
|
|
114
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
115
|
+
|
|
116
|
+
"use strict";
|
|
117
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return cx; });
|
|
118
|
+
/* harmony import */ var classnames__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(7);
|
|
119
|
+
/* harmony import */ var classnames__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(classnames__WEBPACK_IMPORTED_MODULE_0__);
|
|
120
|
+
/* harmony import */ var _scss_styles_scss__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(15);
|
|
121
|
+
/* harmony import */ var _scss_styles_scss__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_scss_styles_scss__WEBPACK_IMPORTED_MODULE_1__);
|
|
122
|
+
|
|
123
|
+
|
|
124
|
+
var cx = classnames__WEBPACK_IMPORTED_MODULE_0___default.a.bind(_scss_styles_scss__WEBPACK_IMPORTED_MODULE_1___default.a);
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
/***/ }),
|
|
128
|
+
|
|
129
|
+
/***/ 521:
|
|
130
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
131
|
+
|
|
132
|
+
"use strict";
|
|
133
|
+
// ESM COMPAT FLAG
|
|
134
|
+
__webpack_require__.r(__webpack_exports__);
|
|
135
|
+
|
|
136
|
+
// EXPORTS
|
|
137
|
+
__webpack_require__.d(__webpack_exports__, "List", function() { return /* reexport */ List_List; });
|
|
138
|
+
__webpack_require__.d(__webpack_exports__, "ListItem", function() { return /* reexport */ List_ListItem; });
|
|
139
|
+
|
|
140
|
+
// EXTERNAL MODULE: external {"root":"React","commonjs2":"react","commonjs":"react","amd":"react","umd":"react"}
|
|
141
|
+
var external_root_React_commonjs2_react_commonjs_react_amd_react_umd_react_ = __webpack_require__(0);
|
|
142
|
+
var external_root_React_commonjs2_react_commonjs_react_amd_react_umd_react_default = /*#__PURE__*/__webpack_require__.n(external_root_React_commonjs2_react_commonjs_react_amd_react_umd_react_);
|
|
143
|
+
|
|
144
|
+
// EXTERNAL MODULE: ./src/utils/classBinder.ts
|
|
145
|
+
var classBinder = __webpack_require__(3);
|
|
146
|
+
|
|
147
|
+
// CONCATENATED MODULE: ./src/components/Components/List/List.tsx
|
|
148
|
+
|
|
149
|
+
|
|
150
|
+
var List = function (_a) {
|
|
151
|
+
var _b;
|
|
152
|
+
var children = _a.children, _c = _a.hasNoDividers, hasNoDividers = _c === void 0 ? false : _c, _d = _a.isLarge, isLarge = _d === void 0 ? false : _d, theme = _a.theme;
|
|
153
|
+
return (external_root_React_commonjs2_react_commonjs_react_amd_react_umd_react_default.a.createElement("ul", { className: Object(classBinder["a" /* cx */])('c-list', (_b = {}, _b['c-list--noBorder'] = hasNoDividers, _b['c-list--large'] = isLarge, _b), theme) }, children));
|
|
154
|
+
};
|
|
155
|
+
/* harmony default export */ var List_List = (List);
|
|
156
|
+
|
|
157
|
+
// CONCATENATED MODULE: ./src/components/Components/List/ListItem.tsx
|
|
158
|
+
|
|
159
|
+
|
|
160
|
+
var ListItem = function (_a) {
|
|
161
|
+
var children = _a.children, label = _a.label, theme = _a.theme;
|
|
162
|
+
return (external_root_React_commonjs2_react_commonjs_react_amd_react_umd_react_default.a.createElement("li", { className: Object(classBinder["a" /* cx */])('c-list__item', theme) },
|
|
163
|
+
label && external_root_React_commonjs2_react_commonjs_react_amd_react_umd_react_default.a.createElement("div", { className: Object(classBinder["a" /* cx */])('c-list__label') }, label),
|
|
164
|
+
external_root_React_commonjs2_react_commonjs_react_amd_react_umd_react_default.a.createElement("div", { className: Object(classBinder["a" /* cx */])('c-list__content') }, children)));
|
|
165
|
+
};
|
|
166
|
+
/* harmony default export */ var List_ListItem = (ListItem);
|
|
167
|
+
|
|
168
|
+
// CONCATENATED MODULE: ./src/components/Components/List/index.ts
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
|
|
172
|
+
|
|
173
|
+
/***/ }),
|
|
174
|
+
|
|
175
|
+
/***/ 7:
|
|
176
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
177
|
+
|
|
178
|
+
var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*!
|
|
179
|
+
Copyright (c) 2018 Jed Watson.
|
|
180
|
+
Licensed under the MIT License (MIT), see
|
|
181
|
+
http://jedwatson.github.io/classnames
|
|
182
|
+
*/
|
|
183
|
+
/* global define */
|
|
184
|
+
|
|
185
|
+
(function () {
|
|
186
|
+
'use strict';
|
|
187
|
+
|
|
188
|
+
var hasOwn = {}.hasOwnProperty;
|
|
189
|
+
|
|
190
|
+
function classNames() {
|
|
191
|
+
var classes = [];
|
|
192
|
+
|
|
193
|
+
for (var i = 0; i < arguments.length; i++) {
|
|
194
|
+
var arg = arguments[i];
|
|
195
|
+
if (!arg) continue;
|
|
196
|
+
|
|
197
|
+
var argType = typeof arg;
|
|
198
|
+
|
|
199
|
+
if (argType === 'string' || argType === 'number') {
|
|
200
|
+
classes.push(arg);
|
|
201
|
+
} else if (Array.isArray(arg)) {
|
|
202
|
+
if (arg.length) {
|
|
203
|
+
var inner = classNames.apply(null, arg);
|
|
204
|
+
if (inner) {
|
|
205
|
+
classes.push(inner);
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
} else if (argType === 'object') {
|
|
209
|
+
if (arg.toString === Object.prototype.toString) {
|
|
210
|
+
for (var key in arg) {
|
|
211
|
+
if (hasOwn.call(arg, key) && arg[key]) {
|
|
212
|
+
classes.push(key);
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
} else {
|
|
216
|
+
classes.push(arg.toString());
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
return classes.join(' ');
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
if ( true && module.exports) {
|
|
225
|
+
classNames.default = classNames;
|
|
226
|
+
module.exports = classNames;
|
|
227
|
+
} else if (true) {
|
|
228
|
+
// register as 'classnames', consistent with npm package name
|
|
229
|
+
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [], __WEBPACK_AMD_DEFINE_RESULT__ = (function () {
|
|
230
|
+
return classNames;
|
|
231
|
+
}).apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__),
|
|
232
|
+
__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
|
|
233
|
+
} else {}
|
|
234
|
+
}());
|
|
235
|
+
|
|
236
|
+
|
|
237
|
+
/***/ })
|
|
238
|
+
|
|
239
|
+
/******/ });
|
|
240
|
+
});
|
|
@@ -0,0 +1,271 @@
|
|
|
1
|
+
(function webpackUniversalModuleDefinition(root, factory) {
|
|
2
|
+
if(typeof exports === 'object' && typeof module === 'object')
|
|
3
|
+
module.exports = factory(require("react"));
|
|
4
|
+
else if(typeof define === 'function' && define.amd)
|
|
5
|
+
define(["react"], factory);
|
|
6
|
+
else if(typeof exports === 'object')
|
|
7
|
+
exports["${FILENAME}"] = factory(require("react"));
|
|
8
|
+
else
|
|
9
|
+
root["${FILENAME}"] = factory(root["React"]);
|
|
10
|
+
})(window, function(__WEBPACK_EXTERNAL_MODULE__0__) {
|
|
11
|
+
return /******/ (function(modules) { // webpackBootstrap
|
|
12
|
+
/******/ // The module cache
|
|
13
|
+
/******/ var installedModules = {};
|
|
14
|
+
/******/
|
|
15
|
+
/******/ // The require function
|
|
16
|
+
/******/ function __webpack_require__(moduleId) {
|
|
17
|
+
/******/
|
|
18
|
+
/******/ // Check if module is in cache
|
|
19
|
+
/******/ if(installedModules[moduleId]) {
|
|
20
|
+
/******/ return installedModules[moduleId].exports;
|
|
21
|
+
/******/ }
|
|
22
|
+
/******/ // Create a new module (and put it into the cache)
|
|
23
|
+
/******/ var module = installedModules[moduleId] = {
|
|
24
|
+
/******/ i: moduleId,
|
|
25
|
+
/******/ l: false,
|
|
26
|
+
/******/ exports: {}
|
|
27
|
+
/******/ };
|
|
28
|
+
/******/
|
|
29
|
+
/******/ // Execute the module function
|
|
30
|
+
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
|
31
|
+
/******/
|
|
32
|
+
/******/ // Flag the module as loaded
|
|
33
|
+
/******/ module.l = true;
|
|
34
|
+
/******/
|
|
35
|
+
/******/ // Return the exports of the module
|
|
36
|
+
/******/ return module.exports;
|
|
37
|
+
/******/ }
|
|
38
|
+
/******/
|
|
39
|
+
/******/
|
|
40
|
+
/******/ // expose the modules object (__webpack_modules__)
|
|
41
|
+
/******/ __webpack_require__.m = modules;
|
|
42
|
+
/******/
|
|
43
|
+
/******/ // expose the module cache
|
|
44
|
+
/******/ __webpack_require__.c = installedModules;
|
|
45
|
+
/******/
|
|
46
|
+
/******/ // define getter function for harmony exports
|
|
47
|
+
/******/ __webpack_require__.d = function(exports, name, getter) {
|
|
48
|
+
/******/ if(!__webpack_require__.o(exports, name)) {
|
|
49
|
+
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
|
50
|
+
/******/ }
|
|
51
|
+
/******/ };
|
|
52
|
+
/******/
|
|
53
|
+
/******/ // define __esModule on exports
|
|
54
|
+
/******/ __webpack_require__.r = function(exports) {
|
|
55
|
+
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
|
56
|
+
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
57
|
+
/******/ }
|
|
58
|
+
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
|
59
|
+
/******/ };
|
|
60
|
+
/******/
|
|
61
|
+
/******/ // create a fake namespace object
|
|
62
|
+
/******/ // mode & 1: value is a module id, require it
|
|
63
|
+
/******/ // mode & 2: merge all properties of value into the ns
|
|
64
|
+
/******/ // mode & 4: return value when already ns object
|
|
65
|
+
/******/ // mode & 8|1: behave like require
|
|
66
|
+
/******/ __webpack_require__.t = function(value, mode) {
|
|
67
|
+
/******/ if(mode & 1) value = __webpack_require__(value);
|
|
68
|
+
/******/ if(mode & 8) return value;
|
|
69
|
+
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
|
70
|
+
/******/ var ns = Object.create(null);
|
|
71
|
+
/******/ __webpack_require__.r(ns);
|
|
72
|
+
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
|
73
|
+
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
|
74
|
+
/******/ return ns;
|
|
75
|
+
/******/ };
|
|
76
|
+
/******/
|
|
77
|
+
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
|
78
|
+
/******/ __webpack_require__.n = function(module) {
|
|
79
|
+
/******/ var getter = module && module.__esModule ?
|
|
80
|
+
/******/ function getDefault() { return module['default']; } :
|
|
81
|
+
/******/ function getModuleExports() { return module; };
|
|
82
|
+
/******/ __webpack_require__.d(getter, 'a', getter);
|
|
83
|
+
/******/ return getter;
|
|
84
|
+
/******/ };
|
|
85
|
+
/******/
|
|
86
|
+
/******/ // Object.prototype.hasOwnProperty.call
|
|
87
|
+
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
|
88
|
+
/******/
|
|
89
|
+
/******/ // __webpack_public_path__
|
|
90
|
+
/******/ __webpack_require__.p = "";
|
|
91
|
+
/******/
|
|
92
|
+
/******/
|
|
93
|
+
/******/ // Load entry module and return exports
|
|
94
|
+
/******/ return __webpack_require__(__webpack_require__.s = 510);
|
|
95
|
+
/******/ })
|
|
96
|
+
/************************************************************************/
|
|
97
|
+
/******/ ({
|
|
98
|
+
|
|
99
|
+
/***/ 0:
|
|
100
|
+
/***/ (function(module, exports) {
|
|
101
|
+
|
|
102
|
+
module.exports = __WEBPACK_EXTERNAL_MODULE__0__;
|
|
103
|
+
|
|
104
|
+
/***/ }),
|
|
105
|
+
|
|
106
|
+
/***/ 15:
|
|
107
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
108
|
+
|
|
109
|
+
// extracted by mini-css-extract-plugin
|
|
110
|
+
|
|
111
|
+
/***/ }),
|
|
112
|
+
|
|
113
|
+
/***/ 24:
|
|
114
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
115
|
+
|
|
116
|
+
"use strict";
|
|
117
|
+
__webpack_require__.r(__webpack_exports__);
|
|
118
|
+
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(0);
|
|
119
|
+
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
|
|
120
|
+
function _extends() { _extends = Object.assign || 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); }
|
|
121
|
+
|
|
122
|
+
|
|
123
|
+
|
|
124
|
+
function SvgLogo(props) {
|
|
125
|
+
return /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("svg", _extends({
|
|
126
|
+
viewBox: "0 0 57 66"
|
|
127
|
+
}, props), /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("defs", null, /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("linearGradient", {
|
|
128
|
+
x1: "0%",
|
|
129
|
+
y1: "50%",
|
|
130
|
+
x2: "100%",
|
|
131
|
+
y2: "50%",
|
|
132
|
+
id: "logo_svg__a"
|
|
133
|
+
}, /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("stop", {
|
|
134
|
+
stopColor: "#2D005A",
|
|
135
|
+
offset: "0%"
|
|
136
|
+
}), /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("stop", {
|
|
137
|
+
stopColor: "#7A113F",
|
|
138
|
+
offset: "100%"
|
|
139
|
+
}))), /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__["createElement"]("path", {
|
|
140
|
+
d: "M6.877 17.176l16.1 15.629-16.1 15.71v-31.34zM56.632.08L28.235 27.677.081.326v64.958l27.993-27.27 5.42-5.21 16.1-15.628v31.258l-10.841-10.5-5.259 5.128 23.381 22.792V.081h-.243z",
|
|
141
|
+
fill: "url(#logo_svg__a)"
|
|
142
|
+
}));
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
/* harmony default export */ __webpack_exports__["default"] = (SvgLogo);
|
|
146
|
+
|
|
147
|
+
/***/ }),
|
|
148
|
+
|
|
149
|
+
/***/ 3:
|
|
150
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
151
|
+
|
|
152
|
+
"use strict";
|
|
153
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return cx; });
|
|
154
|
+
/* harmony import */ var classnames__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(7);
|
|
155
|
+
/* harmony import */ var classnames__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(classnames__WEBPACK_IMPORTED_MODULE_0__);
|
|
156
|
+
/* harmony import */ var _scss_styles_scss__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(15);
|
|
157
|
+
/* harmony import */ var _scss_styles_scss__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_scss_styles_scss__WEBPACK_IMPORTED_MODULE_1__);
|
|
158
|
+
|
|
159
|
+
|
|
160
|
+
var cx = classnames__WEBPACK_IMPORTED_MODULE_0___default.a.bind(_scss_styles_scss__WEBPACK_IMPORTED_MODULE_1___default.a);
|
|
161
|
+
|
|
162
|
+
|
|
163
|
+
/***/ }),
|
|
164
|
+
|
|
165
|
+
/***/ 461:
|
|
166
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
167
|
+
|
|
168
|
+
"use strict";
|
|
169
|
+
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(0);
|
|
170
|
+
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
|
|
171
|
+
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(3);
|
|
172
|
+
/* harmony import */ var _Icon_parts_Logo__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(24);
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
176
|
+
// @ts-ignore
|
|
177
|
+
|
|
178
|
+
var Loader = function (_a) {
|
|
179
|
+
var _b, _c;
|
|
180
|
+
var children = _a.children, isContentPulsing = _a.isContentPulsing, size = _a.size, theme = _a.theme;
|
|
181
|
+
var isSizeSmall = size === 'small';
|
|
182
|
+
return (react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div", { className: Object(_utils__WEBPACK_IMPORTED_MODULE_1__[/* cx */ "a"])('c-loader', (_b = {}, _b['c-loader--small'] = isSizeSmall, _b), theme) },
|
|
183
|
+
react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div", { className: Object(_utils__WEBPACK_IMPORTED_MODULE_1__[/* cx */ "a"])('c-loader__sonar1') }),
|
|
184
|
+
react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div", { className: Object(_utils__WEBPACK_IMPORTED_MODULE_1__[/* cx */ "a"])('c-loader__sonar2') }),
|
|
185
|
+
react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div", { className: Object(_utils__WEBPACK_IMPORTED_MODULE_1__[/* cx */ "a"])('c-loader__sonar3') }),
|
|
186
|
+
react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div", { className: Object(_utils__WEBPACK_IMPORTED_MODULE_1__[/* cx */ "a"])('c-loader__content', (_c = {}, _c['c-loader__content--pulse'] = isContentPulsing, _c)) }, children || react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement(_Icon_parts_Logo__WEBPACK_IMPORTED_MODULE_2__["default"], { className: Object(_utils__WEBPACK_IMPORTED_MODULE_1__[/* cx */ "a"])('c-loader__image') }))));
|
|
187
|
+
};
|
|
188
|
+
/* harmony default export */ __webpack_exports__["a"] = (Loader);
|
|
189
|
+
|
|
190
|
+
|
|
191
|
+
/***/ }),
|
|
192
|
+
|
|
193
|
+
/***/ 510:
|
|
194
|
+
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
195
|
+
|
|
196
|
+
"use strict";
|
|
197
|
+
__webpack_require__.r(__webpack_exports__);
|
|
198
|
+
/* harmony import */ var _Loader__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(461);
|
|
199
|
+
/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "Loader", function() { return _Loader__WEBPACK_IMPORTED_MODULE_0__["a"]; });
|
|
200
|
+
|
|
201
|
+
|
|
202
|
+
|
|
203
|
+
|
|
204
|
+
/***/ }),
|
|
205
|
+
|
|
206
|
+
/***/ 7:
|
|
207
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
208
|
+
|
|
209
|
+
var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*!
|
|
210
|
+
Copyright (c) 2018 Jed Watson.
|
|
211
|
+
Licensed under the MIT License (MIT), see
|
|
212
|
+
http://jedwatson.github.io/classnames
|
|
213
|
+
*/
|
|
214
|
+
/* global define */
|
|
215
|
+
|
|
216
|
+
(function () {
|
|
217
|
+
'use strict';
|
|
218
|
+
|
|
219
|
+
var hasOwn = {}.hasOwnProperty;
|
|
220
|
+
|
|
221
|
+
function classNames() {
|
|
222
|
+
var classes = [];
|
|
223
|
+
|
|
224
|
+
for (var i = 0; i < arguments.length; i++) {
|
|
225
|
+
var arg = arguments[i];
|
|
226
|
+
if (!arg) continue;
|
|
227
|
+
|
|
228
|
+
var argType = typeof arg;
|
|
229
|
+
|
|
230
|
+
if (argType === 'string' || argType === 'number') {
|
|
231
|
+
classes.push(arg);
|
|
232
|
+
} else if (Array.isArray(arg)) {
|
|
233
|
+
if (arg.length) {
|
|
234
|
+
var inner = classNames.apply(null, arg);
|
|
235
|
+
if (inner) {
|
|
236
|
+
classes.push(inner);
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
} else if (argType === 'object') {
|
|
240
|
+
if (arg.toString === Object.prototype.toString) {
|
|
241
|
+
for (var key in arg) {
|
|
242
|
+
if (hasOwn.call(arg, key) && arg[key]) {
|
|
243
|
+
classes.push(key);
|
|
244
|
+
}
|
|
245
|
+
}
|
|
246
|
+
} else {
|
|
247
|
+
classes.push(arg.toString());
|
|
248
|
+
}
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
return classes.join(' ');
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
if ( true && module.exports) {
|
|
256
|
+
classNames.default = classNames;
|
|
257
|
+
module.exports = classNames;
|
|
258
|
+
} else if (true) {
|
|
259
|
+
// register as 'classnames', consistent with npm package name
|
|
260
|
+
!(__WEBPACK_AMD_DEFINE_ARRAY__ = [], __WEBPACK_AMD_DEFINE_RESULT__ = (function () {
|
|
261
|
+
return classNames;
|
|
262
|
+
}).apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__),
|
|
263
|
+
__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
|
|
264
|
+
} else {}
|
|
265
|
+
}());
|
|
266
|
+
|
|
267
|
+
|
|
268
|
+
/***/ })
|
|
269
|
+
|
|
270
|
+
/******/ });
|
|
271
|
+
});
|