@capillarytech/blaze-ui 2.5.0 → 2.5.1-beta.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,1116 @@
1
+ /******/ (() => { // webpackBootstrap
2
+ /******/ var __webpack_modules__ = ({
3
+
4
+ /***/ 540:
5
+ /***/ ((module) => {
6
+
7
+ "use strict";
8
+
9
+
10
+ /* istanbul ignore next */
11
+ function insertStyleElement(options) {
12
+ var element = document.createElement("style");
13
+ options.setAttributes(element, options.attributes);
14
+ options.insert(element, options.options);
15
+ return element;
16
+ }
17
+ module.exports = insertStyleElement;
18
+
19
+ /***/ }),
20
+
21
+ /***/ 1020:
22
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
23
+
24
+ "use strict";
25
+ /**
26
+ * @license React
27
+ * react-jsx-runtime.production.min.js
28
+ *
29
+ * Copyright (c) Facebook, Inc. and its affiliates.
30
+ *
31
+ * This source code is licensed under the MIT license found in the
32
+ * LICENSE file in the root directory of this source tree.
33
+ */
34
+ var f=__webpack_require__(9206),k=Symbol.for("react.element"),l=Symbol.for("react.fragment"),m=Object.prototype.hasOwnProperty,n=f.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,p={key:!0,ref:!0,__self:!0,__source:!0};
35
+ function q(c,a,g){var b,d={},e=null,h=null;void 0!==g&&(e=""+g);void 0!==a.key&&(e=""+a.key);void 0!==a.ref&&(h=a.ref);for(b in a)m.call(a,b)&&!p.hasOwnProperty(b)&&(d[b]=a[b]);if(c&&c.defaultProps)for(b in a=c.defaultProps,a)void 0===d[b]&&(d[b]=a[b]);return{$$typeof:k,type:c,key:e,ref:h,props:d,_owner:n.current}}exports.Fragment=l;exports.jsx=q;exports.jsxs=q;
36
+
37
+
38
+ /***/ }),
39
+
40
+ /***/ 1601:
41
+ /***/ ((module) => {
42
+
43
+ "use strict";
44
+
45
+
46
+ module.exports = function (i) {
47
+ return i[1];
48
+ };
49
+
50
+ /***/ }),
51
+
52
+ /***/ 2465:
53
+ /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
54
+
55
+ // Imports
56
+ var ___CSS_LOADER_API_NO_SOURCEMAP_IMPORT___ = __webpack_require__(1601);
57
+ var ___CSS_LOADER_API_IMPORT___ = __webpack_require__(6314);
58
+ var ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_NO_SOURCEMAP_IMPORT___);
59
+ // Module
60
+ ___CSS_LOADER_EXPORT___.push([module.id, `.blaze-ui-cap-app-not-enabled{display:flex;flex-direction:column;width:100%}.blaze-ui-cap-app-not-enabled .blaze-ui-cap-app-not-enabled-header{text-align:left}.blaze-ui-cap-app-not-enabled .blaze-ui-empty-state-container{width:32.143rem;margin:0 auto;margin-top:5.357rem;text-align:center}.blaze-ui-cap-app-not-enabled .blaze-ui-empty-state-container img{display:block;margin:0 auto}.blaze-ui-cap-app-not-enabled .blaze-ui-empty-state-container .blaze-ui-title{margin-top:2.429rem}.blaze-ui-cap-app-not-enabled .blaze-ui-empty-state-container .blaze-ui-description{margin-top:.571rem}`, ""]);
61
+ // Exports
62
+ ___CSS_LOADER_EXPORT___.locals = {
63
+ "cap-app-not-enabled": `blaze-ui-cap-app-not-enabled`,
64
+ "cap-app-not-enabled-header": `blaze-ui-cap-app-not-enabled-header`,
65
+ "empty-state-container": `blaze-ui-empty-state-container`,
66
+ "title": `blaze-ui-title`,
67
+ "description": `blaze-ui-description`
68
+ };
69
+ module.exports = ___CSS_LOADER_EXPORT___;
70
+
71
+
72
+ /***/ }),
73
+
74
+ /***/ 2657:
75
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
76
+
77
+ "use strict";
78
+
79
+
80
+ exports.__esModule = true;
81
+ exports["default"] = void 0;
82
+ var _classnames = _interopRequireDefault(__webpack_require__(6942));
83
+ var _react = _interopRequireDefault(__webpack_require__(9206));
84
+ var _styles = _interopRequireDefault(__webpack_require__(4939));
85
+ var _jsxRuntime = __webpack_require__(4848);
86
+ const _excluded = ["children", "type", "className", "style", "fontWeight", "lineHeight"],
87
+ _excluded2 = ["children", "type", "className", "style", "fontWeight", "lineHeight"];
88
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
89
+ function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
90
+ function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (-1 !== e.indexOf(n)) continue; t[n] = r[n]; } return t; }
91
+ const CapLabel = /*#__PURE__*/_react.default.forwardRef((_ref, ref) => {
92
+ let {
93
+ children,
94
+ type = 'label1',
95
+ className = '',
96
+ style = {},
97
+ fontWeight,
98
+ lineHeight
99
+ } = _ref,
100
+ rest = _objectWithoutPropertiesLoose(_ref, _excluded);
101
+ const labelStyle = _extends({}, fontWeight ? {
102
+ fontWeight
103
+ } : {}, lineHeight ? {
104
+ lineHeight
105
+ } : {}, style);
106
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", _extends({
107
+ ref: ref,
108
+ className: (0, _classnames.default)(_styles.default['cap-label'], _styles.default['cap-label-div'], _styles.default[type], className),
109
+ style: labelStyle
110
+ }, rest, {
111
+ children: children
112
+ }));
113
+ });
114
+ CapLabel.displayName = 'CapLabel';
115
+
116
+ // Static method for inline label
117
+
118
+ const CapLabelInline = /*#__PURE__*/_react.default.forwardRef((_ref2, ref) => {
119
+ let {
120
+ children,
121
+ type = 'label1',
122
+ className = '',
123
+ style = {},
124
+ fontWeight,
125
+ lineHeight
126
+ } = _ref2,
127
+ rest = _objectWithoutPropertiesLoose(_ref2, _excluded2);
128
+ const labelStyle = _extends({}, fontWeight ? {
129
+ fontWeight
130
+ } : {}, lineHeight ? {
131
+ lineHeight
132
+ } : {}, style);
133
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)("span", _extends({
134
+ ref: ref,
135
+ className: (0, _classnames.default)(_styles.default['cap-label'], _styles.default['cap-label-span'], _styles.default[type], className),
136
+ style: labelStyle
137
+ }, rest, {
138
+ children: children
139
+ }));
140
+ });
141
+ CapLabelInline.displayName = 'CapLabelInline';
142
+
143
+ // Extend the component type to include the static property
144
+
145
+ const CapLabelWithStatic = CapLabel;
146
+ CapLabelWithStatic.CapLabelInline = CapLabelInline;
147
+ var _default = exports["default"] = CapLabelWithStatic;
148
+
149
+ /***/ }),
150
+
151
+ /***/ 3737:
152
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
153
+
154
+ "use strict";
155
+
156
+
157
+ exports.__esModule = true;
158
+ exports["default"] = void 0;
159
+ var _CapLabel = _interopRequireDefault(__webpack_require__(2657));
160
+ exports["default"] = _CapLabel.default;
161
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
162
+
163
+ /***/ }),
164
+
165
+ /***/ 4116:
166
+ /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
167
+
168
+ // Imports
169
+ var ___CSS_LOADER_API_NO_SOURCEMAP_IMPORT___ = __webpack_require__(1601);
170
+ var ___CSS_LOADER_API_IMPORT___ = __webpack_require__(6314);
171
+ var ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_NO_SOURCEMAP_IMPORT___);
172
+ // Module
173
+ ___CSS_LOADER_EXPORT___.push([module.id, `.blaze-ui-cap-heading{font-family:"Roboto",sans-serif;margin:0;padding:0}.blaze-ui-cap-heading.blaze-ui-h0{font-size:2rem;color:#091e42;font-weight:500;line-height:2.571rem}.blaze-ui-cap-heading.blaze-ui-h1{font-size:1.714rem;color:#091e42;font-weight:500;line-height:2.286rem}.blaze-ui-cap-heading.blaze-ui-h2{font-size:1.429rem;color:#091e42;font-weight:500;line-height:2rem}.blaze-ui-cap-heading.blaze-ui-h3{font-size:1.143rem;color:#091e42;font-weight:500;line-height:1.714rem}.blaze-ui-cap-heading.blaze-ui-h4{font-size:1rem;color:#091e42;font-weight:500;line-height:1.429rem}.blaze-ui-cap-heading.blaze-ui-h5{font-size:1rem;color:#091e42;font-weight:400;line-height:1.429rem}.blaze-ui-cap-heading.blaze-ui-h6{font-size:1rem;color:#5e6c84;font-weight:400;line-height:1.429rem}.blaze-ui-cap-heading.blaze-ui-h7{font-size:1.429rem;color:#5e6c84;font-weight:500;line-height:2rem}.blaze-ui-cap-heading.blaze-ui-h8{font-size:1rem;color:#091e42;font-weight:400;line-height:1.429rem}.blaze-ui-cap-heading.blaze-ui-h9{font-size:1rem;color:#fff;font-weight:500;line-height:1.429rem}.blaze-ui-cap-heading.blaze-ui-h10{font-size:.857rem;color:#091e42;font-weight:500;line-height:1.143rem}.blaze-ui-cap-heading.blaze-ui-label1{font-size:.857rem;color:#5e6c84;font-weight:400;line-height:1.429rem}.blaze-ui-cap-heading.blaze-ui-label2{font-size:.857rem;color:#091e42;font-weight:400;line-height:1.429rem}.blaze-ui-cap-heading.blaze-ui-label3{font-size:.857rem;color:#97a0af;font-weight:400;line-height:1.429rem}.blaze-ui-cap-heading.blaze-ui-label4{font-size:.857rem;color:#5e6c84;font-weight:400;line-height:1.143rem}.blaze-ui-cap-heading.blaze-ui-label5{font-size:1.143rem;color:#5e6c84;font-weight:400;line-height:1.714rem}.blaze-ui-cap-heading.blaze-ui-label6{font-size:1.143rem;color:#091e42;font-weight:400;line-height:1.714rem}.blaze-ui-cap-heading-span{display:inline}`, ""]);
174
+ // Exports
175
+ ___CSS_LOADER_EXPORT___.locals = {
176
+ "cap-heading": `blaze-ui-cap-heading`,
177
+ "h0": `blaze-ui-h0`,
178
+ "h1": `blaze-ui-h1`,
179
+ "h2": `blaze-ui-h2`,
180
+ "h3": `blaze-ui-h3`,
181
+ "h4": `blaze-ui-h4`,
182
+ "h5": `blaze-ui-h5`,
183
+ "h6": `blaze-ui-h6`,
184
+ "h7": `blaze-ui-h7`,
185
+ "h8": `blaze-ui-h8`,
186
+ "h9": `blaze-ui-h9`,
187
+ "h10": `blaze-ui-h10`,
188
+ "label1": `blaze-ui-label1`,
189
+ "label2": `blaze-ui-label2`,
190
+ "label3": `blaze-ui-label3`,
191
+ "label4": `blaze-ui-label4`,
192
+ "label5": `blaze-ui-label5`,
193
+ "label6": `blaze-ui-label6`,
194
+ "cap-heading-span": `blaze-ui-cap-heading-span`
195
+ };
196
+ module.exports = ___CSS_LOADER_EXPORT___;
197
+
198
+
199
+ /***/ }),
200
+
201
+ /***/ 4191:
202
+ /***/ ((__unused_webpack_module, exports) => {
203
+
204
+ "use strict";
205
+
206
+
207
+ exports.__esModule = true;
208
+
209
+ /***/ }),
210
+
211
+ /***/ 4284:
212
+ /***/ ((module) => {
213
+
214
+ "use strict";
215
+
216
+
217
+ /* istanbul ignore next */
218
+ var replaceText = function replaceText() {
219
+ var textStore = [];
220
+ return function replace(index, replacement) {
221
+ textStore[index] = replacement;
222
+ return textStore.filter(Boolean).join("\n");
223
+ };
224
+ }();
225
+
226
+ /* istanbul ignore next */
227
+ function apply(styleElement, index, remove, obj) {
228
+ var css;
229
+ if (remove) {
230
+ css = "";
231
+ } else {
232
+ css = "";
233
+ if (obj.supports) {
234
+ css += "@supports (".concat(obj.supports, ") {");
235
+ }
236
+ if (obj.media) {
237
+ css += "@media ".concat(obj.media, " {");
238
+ }
239
+ var needLayer = typeof obj.layer !== "undefined";
240
+ if (needLayer) {
241
+ css += "@layer".concat(obj.layer.length > 0 ? " ".concat(obj.layer) : "", " {");
242
+ }
243
+ css += obj.css;
244
+ if (needLayer) {
245
+ css += "}";
246
+ }
247
+ if (obj.media) {
248
+ css += "}";
249
+ }
250
+ if (obj.supports) {
251
+ css += "}";
252
+ }
253
+ }
254
+
255
+ // For old IE
256
+ /* istanbul ignore if */
257
+ if (styleElement.styleSheet) {
258
+ styleElement.styleSheet.cssText = replaceText(index, css);
259
+ } else {
260
+ var cssNode = document.createTextNode(css);
261
+ var childNodes = styleElement.childNodes;
262
+ if (childNodes[index]) {
263
+ styleElement.removeChild(childNodes[index]);
264
+ }
265
+ if (childNodes.length) {
266
+ styleElement.insertBefore(cssNode, childNodes[index]);
267
+ } else {
268
+ styleElement.appendChild(cssNode);
269
+ }
270
+ }
271
+ }
272
+ var singletonData = {
273
+ singleton: null,
274
+ singletonCounter: 0
275
+ };
276
+
277
+ /* istanbul ignore next */
278
+ function domAPI(options) {
279
+ if (typeof document === "undefined") return {
280
+ update: function update() {},
281
+ remove: function remove() {}
282
+ };
283
+
284
+ // eslint-disable-next-line no-undef,no-use-before-define
285
+ var styleIndex = singletonData.singletonCounter++;
286
+ var styleElement =
287
+ // eslint-disable-next-line no-undef,no-use-before-define
288
+ singletonData.singleton || (
289
+ // eslint-disable-next-line no-undef,no-use-before-define
290
+ singletonData.singleton = options.insertStyleElement(options));
291
+ return {
292
+ update: function update(obj) {
293
+ apply(styleElement, styleIndex, false, obj);
294
+ },
295
+ remove: function remove(obj) {
296
+ apply(styleElement, styleIndex, true, obj);
297
+ }
298
+ };
299
+ }
300
+ module.exports = domAPI;
301
+
302
+ /***/ }),
303
+
304
+ /***/ 4483:
305
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
306
+
307
+ "use strict";
308
+ __webpack_require__.r(__webpack_exports__);
309
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
310
+ /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
311
+ /* harmony export */ });
312
+ /* harmony import */ var _node_modules_style_loader_dist_runtime_injectStylesIntoStyleTag_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(5072);
313
+ /* harmony import */ var _node_modules_style_loader_dist_runtime_injectStylesIntoStyleTag_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_style_loader_dist_runtime_injectStylesIntoStyleTag_js__WEBPACK_IMPORTED_MODULE_0__);
314
+ /* harmony import */ var _node_modules_style_loader_dist_runtime_singletonStyleDomAPI_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(4284);
315
+ /* harmony import */ var _node_modules_style_loader_dist_runtime_singletonStyleDomAPI_js__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_node_modules_style_loader_dist_runtime_singletonStyleDomAPI_js__WEBPACK_IMPORTED_MODULE_1__);
316
+ /* harmony import */ var _node_modules_style_loader_dist_runtime_insertBySelector_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(7659);
317
+ /* harmony import */ var _node_modules_style_loader_dist_runtime_insertBySelector_js__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_node_modules_style_loader_dist_runtime_insertBySelector_js__WEBPACK_IMPORTED_MODULE_2__);
318
+ /* harmony import */ var _node_modules_style_loader_dist_runtime_setAttributesWithoutAttributes_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(5056);
319
+ /* harmony import */ var _node_modules_style_loader_dist_runtime_setAttributesWithoutAttributes_js__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(_node_modules_style_loader_dist_runtime_setAttributesWithoutAttributes_js__WEBPACK_IMPORTED_MODULE_3__);
320
+ /* harmony import */ var _node_modules_style_loader_dist_runtime_insertStyleElement_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(540);
321
+ /* harmony import */ var _node_modules_style_loader_dist_runtime_insertStyleElement_js__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(_node_modules_style_loader_dist_runtime_insertStyleElement_js__WEBPACK_IMPORTED_MODULE_4__);
322
+ /* harmony import */ var _node_modules_css_loader_dist_cjs_js_ruleSet_1_rules_1_use_1_node_modules_sass_loader_dist_cjs_js_ruleSet_1_rules_1_use_2_styles_scss__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(4116);
323
+ /* harmony import */ var _node_modules_css_loader_dist_cjs_js_ruleSet_1_rules_1_use_1_node_modules_sass_loader_dist_cjs_js_ruleSet_1_rules_1_use_2_styles_scss__WEBPACK_IMPORTED_MODULE_5___default = /*#__PURE__*/__webpack_require__.n(_node_modules_css_loader_dist_cjs_js_ruleSet_1_rules_1_use_1_node_modules_sass_loader_dist_cjs_js_ruleSet_1_rules_1_use_2_styles_scss__WEBPACK_IMPORTED_MODULE_5__);
324
+ /* harmony reexport (unknown) */ var __WEBPACK_REEXPORT_OBJECT__ = {};
325
+ /* harmony reexport (unknown) */ for(const __WEBPACK_IMPORT_KEY__ in _node_modules_css_loader_dist_cjs_js_ruleSet_1_rules_1_use_1_node_modules_sass_loader_dist_cjs_js_ruleSet_1_rules_1_use_2_styles_scss__WEBPACK_IMPORTED_MODULE_5__) if(__WEBPACK_IMPORT_KEY__ !== "default") __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = () => _node_modules_css_loader_dist_cjs_js_ruleSet_1_rules_1_use_1_node_modules_sass_loader_dist_cjs_js_ruleSet_1_rules_1_use_2_styles_scss__WEBPACK_IMPORTED_MODULE_5__[__WEBPACK_IMPORT_KEY__]
326
+ /* harmony reexport (unknown) */ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
327
+
328
+
329
+
330
+
331
+
332
+
333
+
334
+
335
+
336
+
337
+
338
+ var options = {};
339
+
340
+ ;
341
+ options.setAttributes = (_node_modules_style_loader_dist_runtime_setAttributesWithoutAttributes_js__WEBPACK_IMPORTED_MODULE_3___default());
342
+ options.insert = _node_modules_style_loader_dist_runtime_insertBySelector_js__WEBPACK_IMPORTED_MODULE_2___default().bind(null, "head");
343
+ options.domAPI = (_node_modules_style_loader_dist_runtime_singletonStyleDomAPI_js__WEBPACK_IMPORTED_MODULE_1___default());
344
+ options.insertStyleElement = (_node_modules_style_loader_dist_runtime_insertStyleElement_js__WEBPACK_IMPORTED_MODULE_4___default());
345
+
346
+ var update = _node_modules_style_loader_dist_runtime_injectStylesIntoStyleTag_js__WEBPACK_IMPORTED_MODULE_0___default()((_node_modules_css_loader_dist_cjs_js_ruleSet_1_rules_1_use_1_node_modules_sass_loader_dist_cjs_js_ruleSet_1_rules_1_use_2_styles_scss__WEBPACK_IMPORTED_MODULE_5___default()), options);
347
+
348
+
349
+
350
+
351
+ /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ((_node_modules_css_loader_dist_cjs_js_ruleSet_1_rules_1_use_1_node_modules_sass_loader_dist_cjs_js_ruleSet_1_rules_1_use_2_styles_scss__WEBPACK_IMPORTED_MODULE_5___default()) && (_node_modules_css_loader_dist_cjs_js_ruleSet_1_rules_1_use_1_node_modules_sass_loader_dist_cjs_js_ruleSet_1_rules_1_use_2_styles_scss__WEBPACK_IMPORTED_MODULE_5___default().locals) ? (_node_modules_css_loader_dist_cjs_js_ruleSet_1_rules_1_use_1_node_modules_sass_loader_dist_cjs_js_ruleSet_1_rules_1_use_2_styles_scss__WEBPACK_IMPORTED_MODULE_5___default().locals) : undefined);
352
+
353
+
354
+ /***/ }),
355
+
356
+ /***/ 4848:
357
+ /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
358
+
359
+ "use strict";
360
+
361
+
362
+ if (true) {
363
+ module.exports = __webpack_require__(1020);
364
+ } else // removed by dead control flow
365
+ {}
366
+
367
+
368
+ /***/ }),
369
+
370
+ /***/ 4939:
371
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
372
+
373
+ "use strict";
374
+ __webpack_require__.r(__webpack_exports__);
375
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
376
+ /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
377
+ /* harmony export */ });
378
+ /* harmony import */ var _node_modules_style_loader_dist_runtime_injectStylesIntoStyleTag_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(5072);
379
+ /* harmony import */ var _node_modules_style_loader_dist_runtime_injectStylesIntoStyleTag_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_style_loader_dist_runtime_injectStylesIntoStyleTag_js__WEBPACK_IMPORTED_MODULE_0__);
380
+ /* harmony import */ var _node_modules_style_loader_dist_runtime_singletonStyleDomAPI_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(4284);
381
+ /* harmony import */ var _node_modules_style_loader_dist_runtime_singletonStyleDomAPI_js__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_node_modules_style_loader_dist_runtime_singletonStyleDomAPI_js__WEBPACK_IMPORTED_MODULE_1__);
382
+ /* harmony import */ var _node_modules_style_loader_dist_runtime_insertBySelector_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(7659);
383
+ /* harmony import */ var _node_modules_style_loader_dist_runtime_insertBySelector_js__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_node_modules_style_loader_dist_runtime_insertBySelector_js__WEBPACK_IMPORTED_MODULE_2__);
384
+ /* harmony import */ var _node_modules_style_loader_dist_runtime_setAttributesWithoutAttributes_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(5056);
385
+ /* harmony import */ var _node_modules_style_loader_dist_runtime_setAttributesWithoutAttributes_js__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(_node_modules_style_loader_dist_runtime_setAttributesWithoutAttributes_js__WEBPACK_IMPORTED_MODULE_3__);
386
+ /* harmony import */ var _node_modules_style_loader_dist_runtime_insertStyleElement_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(540);
387
+ /* harmony import */ var _node_modules_style_loader_dist_runtime_insertStyleElement_js__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(_node_modules_style_loader_dist_runtime_insertStyleElement_js__WEBPACK_IMPORTED_MODULE_4__);
388
+ /* harmony import */ var _node_modules_css_loader_dist_cjs_js_ruleSet_1_rules_1_use_1_node_modules_sass_loader_dist_cjs_js_ruleSet_1_rules_1_use_2_styles_scss__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(5216);
389
+ /* harmony import */ var _node_modules_css_loader_dist_cjs_js_ruleSet_1_rules_1_use_1_node_modules_sass_loader_dist_cjs_js_ruleSet_1_rules_1_use_2_styles_scss__WEBPACK_IMPORTED_MODULE_5___default = /*#__PURE__*/__webpack_require__.n(_node_modules_css_loader_dist_cjs_js_ruleSet_1_rules_1_use_1_node_modules_sass_loader_dist_cjs_js_ruleSet_1_rules_1_use_2_styles_scss__WEBPACK_IMPORTED_MODULE_5__);
390
+ /* harmony reexport (unknown) */ var __WEBPACK_REEXPORT_OBJECT__ = {};
391
+ /* harmony reexport (unknown) */ for(const __WEBPACK_IMPORT_KEY__ in _node_modules_css_loader_dist_cjs_js_ruleSet_1_rules_1_use_1_node_modules_sass_loader_dist_cjs_js_ruleSet_1_rules_1_use_2_styles_scss__WEBPACK_IMPORTED_MODULE_5__) if(__WEBPACK_IMPORT_KEY__ !== "default") __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = () => _node_modules_css_loader_dist_cjs_js_ruleSet_1_rules_1_use_1_node_modules_sass_loader_dist_cjs_js_ruleSet_1_rules_1_use_2_styles_scss__WEBPACK_IMPORTED_MODULE_5__[__WEBPACK_IMPORT_KEY__]
392
+ /* harmony reexport (unknown) */ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
393
+
394
+
395
+
396
+
397
+
398
+
399
+
400
+
401
+
402
+
403
+
404
+ var options = {};
405
+
406
+ ;
407
+ options.setAttributes = (_node_modules_style_loader_dist_runtime_setAttributesWithoutAttributes_js__WEBPACK_IMPORTED_MODULE_3___default());
408
+ options.insert = _node_modules_style_loader_dist_runtime_insertBySelector_js__WEBPACK_IMPORTED_MODULE_2___default().bind(null, "head");
409
+ options.domAPI = (_node_modules_style_loader_dist_runtime_singletonStyleDomAPI_js__WEBPACK_IMPORTED_MODULE_1___default());
410
+ options.insertStyleElement = (_node_modules_style_loader_dist_runtime_insertStyleElement_js__WEBPACK_IMPORTED_MODULE_4___default());
411
+
412
+ var update = _node_modules_style_loader_dist_runtime_injectStylesIntoStyleTag_js__WEBPACK_IMPORTED_MODULE_0___default()((_node_modules_css_loader_dist_cjs_js_ruleSet_1_rules_1_use_1_node_modules_sass_loader_dist_cjs_js_ruleSet_1_rules_1_use_2_styles_scss__WEBPACK_IMPORTED_MODULE_5___default()), options);
413
+
414
+
415
+
416
+
417
+ /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ((_node_modules_css_loader_dist_cjs_js_ruleSet_1_rules_1_use_1_node_modules_sass_loader_dist_cjs_js_ruleSet_1_rules_1_use_2_styles_scss__WEBPACK_IMPORTED_MODULE_5___default()) && (_node_modules_css_loader_dist_cjs_js_ruleSet_1_rules_1_use_1_node_modules_sass_loader_dist_cjs_js_ruleSet_1_rules_1_use_2_styles_scss__WEBPACK_IMPORTED_MODULE_5___default().locals) ? (_node_modules_css_loader_dist_cjs_js_ruleSet_1_rules_1_use_1_node_modules_sass_loader_dist_cjs_js_ruleSet_1_rules_1_use_2_styles_scss__WEBPACK_IMPORTED_MODULE_5___default().locals) : undefined);
418
+
419
+
420
+ /***/ }),
421
+
422
+ /***/ 5056:
423
+ /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
424
+
425
+ "use strict";
426
+
427
+
428
+ /* istanbul ignore next */
429
+ function setAttributesWithoutAttributes(styleElement) {
430
+ var nonce = true ? __webpack_require__.nc : 0;
431
+ if (nonce) {
432
+ styleElement.setAttribute("nonce", nonce);
433
+ }
434
+ }
435
+ module.exports = setAttributesWithoutAttributes;
436
+
437
+ /***/ }),
438
+
439
+ /***/ 5072:
440
+ /***/ ((module) => {
441
+
442
+ "use strict";
443
+
444
+
445
+ var stylesInDOM = [];
446
+ function getIndexByIdentifier(identifier) {
447
+ var result = -1;
448
+ for (var i = 0; i < stylesInDOM.length; i++) {
449
+ if (stylesInDOM[i].identifier === identifier) {
450
+ result = i;
451
+ break;
452
+ }
453
+ }
454
+ return result;
455
+ }
456
+ function modulesToDom(list, options) {
457
+ var idCountMap = {};
458
+ var identifiers = [];
459
+ for (var i = 0; i < list.length; i++) {
460
+ var item = list[i];
461
+ var id = options.base ? item[0] + options.base : item[0];
462
+ var count = idCountMap[id] || 0;
463
+ var identifier = "".concat(id, " ").concat(count);
464
+ idCountMap[id] = count + 1;
465
+ var indexByIdentifier = getIndexByIdentifier(identifier);
466
+ var obj = {
467
+ css: item[1],
468
+ media: item[2],
469
+ sourceMap: item[3],
470
+ supports: item[4],
471
+ layer: item[5]
472
+ };
473
+ if (indexByIdentifier !== -1) {
474
+ stylesInDOM[indexByIdentifier].references++;
475
+ stylesInDOM[indexByIdentifier].updater(obj);
476
+ } else {
477
+ var updater = addElementStyle(obj, options);
478
+ options.byIndex = i;
479
+ stylesInDOM.splice(i, 0, {
480
+ identifier: identifier,
481
+ updater: updater,
482
+ references: 1
483
+ });
484
+ }
485
+ identifiers.push(identifier);
486
+ }
487
+ return identifiers;
488
+ }
489
+ function addElementStyle(obj, options) {
490
+ var api = options.domAPI(options);
491
+ api.update(obj);
492
+ var updater = function updater(newObj) {
493
+ if (newObj) {
494
+ if (newObj.css === obj.css && newObj.media === obj.media && newObj.sourceMap === obj.sourceMap && newObj.supports === obj.supports && newObj.layer === obj.layer) {
495
+ return;
496
+ }
497
+ api.update(obj = newObj);
498
+ } else {
499
+ api.remove();
500
+ }
501
+ };
502
+ return updater;
503
+ }
504
+ module.exports = function (list, options) {
505
+ options = options || {};
506
+ list = list || [];
507
+ var lastIdentifiers = modulesToDom(list, options);
508
+ return function update(newList) {
509
+ newList = newList || [];
510
+ for (var i = 0; i < lastIdentifiers.length; i++) {
511
+ var identifier = lastIdentifiers[i];
512
+ var index = getIndexByIdentifier(identifier);
513
+ stylesInDOM[index].references--;
514
+ }
515
+ var newLastIdentifiers = modulesToDom(newList, options);
516
+ for (var _i = 0; _i < lastIdentifiers.length; _i++) {
517
+ var _identifier = lastIdentifiers[_i];
518
+ var _index = getIndexByIdentifier(_identifier);
519
+ if (stylesInDOM[_index].references === 0) {
520
+ stylesInDOM[_index].updater();
521
+ stylesInDOM.splice(_index, 1);
522
+ }
523
+ }
524
+ lastIdentifiers = newLastIdentifiers;
525
+ };
526
+ };
527
+
528
+ /***/ }),
529
+
530
+ /***/ 5216:
531
+ /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
532
+
533
+ // Imports
534
+ var ___CSS_LOADER_API_NO_SOURCEMAP_IMPORT___ = __webpack_require__(1601);
535
+ var ___CSS_LOADER_API_IMPORT___ = __webpack_require__(6314);
536
+ var ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(___CSS_LOADER_API_NO_SOURCEMAP_IMPORT___);
537
+ // Module
538
+ ___CSS_LOADER_EXPORT___.push([module.id, `.blaze-ui-cap-label{font-family:"Roboto",sans-serif}.blaze-ui-cap-label.blaze-ui-label1{font-size:.857rem;color:#5e6c84;font-weight:400;line-height:normal}.blaze-ui-cap-label.blaze-ui-label2{font-size:.857rem;color:#091e42;font-weight:400;line-height:normal}.blaze-ui-cap-label.blaze-ui-label3{font-size:.857rem;color:#97a0af;font-weight:400;line-height:normal}.blaze-ui-cap-label.blaze-ui-label4{font-size:.857rem;color:#091e42;font-weight:500;line-height:normal}.blaze-ui-cap-label.blaze-ui-label5{font-size:.714rem;color:#091e42;font-weight:400;line-height:normal}.blaze-ui-cap-label.blaze-ui-label6{font-size:.857rem;color:#b3bac5;font-weight:400;line-height:normal}.blaze-ui-cap-label.blaze-ui-label7{font-size:1rem;color:#5e6c84;font-weight:500;line-height:normal}.blaze-ui-cap-label.blaze-ui-label8{font-size:.857rem;color:#091e42;font-weight:500;line-height:normal}.blaze-ui-cap-label.blaze-ui-label9{font-size:.857rem;color:#091e42;font-weight:400;line-height:1.143rem}.blaze-ui-cap-label.blaze-ui-label10{font-size:.857rem;color:#fff;font-weight:400;line-height:1.143rem}.blaze-ui-cap-label.blaze-ui-label11{font-size:.714rem;color:#5e6c84;font-weight:400;line-height:normal}.blaze-ui-cap-label.blaze-ui-label12{font-size:.857rem;color:#fff;font-weight:400;line-height:normal}.blaze-ui-cap-label.blaze-ui-label13{font-size:.714rem;color:#97a0af;font-weight:400;line-height:normal}.blaze-ui-cap-label.blaze-ui-label14{font-size:1rem;color:#676e7c;font-weight:400;line-height:normal}.blaze-ui-cap-label.blaze-ui-label15{font-size:1rem;color:#091e42;font-weight:400;line-height:normal}.blaze-ui-cap-label.blaze-ui-label16{font-size:1rem;color:#091e42;font-weight:500;line-height:normal}.blaze-ui-cap-label.blaze-ui-label17{font-size:1.143rem;color:#091e42;font-weight:500;line-height:normal}.blaze-ui-cap-label.blaze-ui-label18{font-size:1rem;color:#5e6c84;font-weight:400;line-height:normal}.blaze-ui-cap-label.blaze-ui-label19{font-size:.857rem;color:rgba(0,0,0,.8705882353);font-weight:400;line-height:1.143rem}.blaze-ui-cap-label.blaze-ui-label20{font-size:1rem;color:#2466eb;font-weight:500;line-height:normal}.blaze-ui-cap-label.blaze-ui-label21{font-size:.857rem;color:#2466eb;font-weight:400;line-height:normal}.blaze-ui-cap-label.blaze-ui-label22{font-size:1.714rem;color:#5e6c84;font-weight:400;line-height:2rem}.blaze-ui-cap-label.blaze-ui-label23{font-size:1rem;color:#fff;font-weight:400;line-height:normal}.blaze-ui-cap-label.blaze-ui-label24{font-size:1rem;color:#5e6c84;font-weight:400;line-height:1.429rem}.blaze-ui-cap-label.blaze-ui-label25{font-size:1rem;color:#5e6c84;font-weight:500;line-height:1.429rem}.blaze-ui-cap-label.blaze-ui-label26{font-size:.714rem;color:#091e42;font-weight:400;line-height:.857rem}.blaze-ui-cap-label.blaze-ui-label27{font-size:.857rem;color:#2466eb;font-weight:500;line-height:1.143rem}.blaze-ui-cap-label.blaze-ui-label28{font-size:.857rem;color:#fff;font-weight:500;line-height:1.143rem}.blaze-ui-cap-label.blaze-ui-label29,.blaze-ui-cap-label.blaze-ui-label30{font-size:.714rem;color:#fff;font-weight:400;line-height:.857rem}.blaze-ui-cap-label.blaze-ui-label31{font-size:.857rem;color:#091e42;font-weight:400;line-height:1.143rem}.blaze-ui-cap-label.blaze-ui-label32{font-size:1rem;color:#fff;font-weight:500;line-height:1.429rem}.blaze-ui-cap-label.blaze-ui-label33{font-size:1rem;color:#2466eb;font-weight:500;line-height:1.429rem}.blaze-ui-cap-label-div,.blaze-ui-cap-label-span{font-family:"Roboto",sans-serif;margin:0;padding:0}`, ""]);
539
+ // Exports
540
+ ___CSS_LOADER_EXPORT___.locals = {
541
+ "cap-label": `blaze-ui-cap-label`,
542
+ "label1": `blaze-ui-label1`,
543
+ "label2": `blaze-ui-label2`,
544
+ "label3": `blaze-ui-label3`,
545
+ "label4": `blaze-ui-label4`,
546
+ "label5": `blaze-ui-label5`,
547
+ "label6": `blaze-ui-label6`,
548
+ "label7": `blaze-ui-label7`,
549
+ "label8": `blaze-ui-label8`,
550
+ "label9": `blaze-ui-label9`,
551
+ "label10": `blaze-ui-label10`,
552
+ "label11": `blaze-ui-label11`,
553
+ "label12": `blaze-ui-label12`,
554
+ "label13": `blaze-ui-label13`,
555
+ "label14": `blaze-ui-label14`,
556
+ "label15": `blaze-ui-label15`,
557
+ "label16": `blaze-ui-label16`,
558
+ "label17": `blaze-ui-label17`,
559
+ "label18": `blaze-ui-label18`,
560
+ "label19": `blaze-ui-label19`,
561
+ "label20": `blaze-ui-label20`,
562
+ "label21": `blaze-ui-label21`,
563
+ "label22": `blaze-ui-label22`,
564
+ "label23": `blaze-ui-label23`,
565
+ "label24": `blaze-ui-label24`,
566
+ "label25": `blaze-ui-label25`,
567
+ "label26": `blaze-ui-label26`,
568
+ "label27": `blaze-ui-label27`,
569
+ "label28": `blaze-ui-label28`,
570
+ "label29": `blaze-ui-label29`,
571
+ "label30": `blaze-ui-label30`,
572
+ "label31": `blaze-ui-label31`,
573
+ "label32": `blaze-ui-label32`,
574
+ "label33": `blaze-ui-label33`,
575
+ "cap-label-div": `blaze-ui-cap-label-div`,
576
+ "cap-label-span": `blaze-ui-cap-label-span`
577
+ };
578
+ module.exports = ___CSS_LOADER_EXPORT___;
579
+
580
+
581
+ /***/ }),
582
+
583
+ /***/ 5821:
584
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
585
+
586
+ "use strict";
587
+
588
+
589
+ exports.__esModule = true;
590
+ exports["default"] = void 0;
591
+ var _classnames = _interopRequireDefault(__webpack_require__(6942));
592
+ var _react = _interopRequireDefault(__webpack_require__(9206));
593
+ var _styles = _interopRequireDefault(__webpack_require__(4483));
594
+ var _jsxRuntime = __webpack_require__(4848);
595
+ const _excluded = ["children", "type", "className", "style"],
596
+ _excluded2 = ["children", "type", "className", "style"];
597
+ /**
598
+ * Valid heading types for CapHeading component
599
+ */
600
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
601
+ function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
602
+ function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (-1 !== e.indexOf(n)) continue; t[n] = r[n]; } return t; }
603
+ const CapHeading = /*#__PURE__*/_react.default.forwardRef((_ref, ref) => {
604
+ let {
605
+ children,
606
+ type = 'h5',
607
+ className = '',
608
+ style = {}
609
+ } = _ref,
610
+ rest = _objectWithoutPropertiesLoose(_ref, _excluded);
611
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", _extends({
612
+ ref: ref,
613
+ className: (0, _classnames.default)(_styles.default['cap-heading'], _styles.default[type], className),
614
+ style: style
615
+ }, rest, {
616
+ children: children
617
+ }));
618
+ });
619
+ CapHeading.displayName = 'CapHeading';
620
+
621
+ /**
622
+ * Props for the CapHeadingSpan sub-component
623
+ */
624
+
625
+ const CapHeadingSpan = /*#__PURE__*/_react.default.forwardRef((_ref2, ref) => {
626
+ let {
627
+ children,
628
+ type = 'h5',
629
+ className = '',
630
+ style = {}
631
+ } = _ref2,
632
+ rest = _objectWithoutPropertiesLoose(_ref2, _excluded2);
633
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)("span", _extends({
634
+ ref: ref,
635
+ className: (0, _classnames.default)(_styles.default['cap-heading'], _styles.default['cap-heading-span'], _styles.default[type], className),
636
+ style: style
637
+ }, rest, {
638
+ children: children
639
+ }));
640
+ });
641
+ CapHeadingSpan.displayName = 'CapHeadingSpan';
642
+
643
+ /**
644
+ * Extended CapHeading component type that includes the static CapHeadingSpan property
645
+ */
646
+
647
+ const CapHeadingWithStatic = CapHeading;
648
+ CapHeadingWithStatic.CapHeadingSpan = CapHeadingSpan;
649
+ var _default = exports["default"] = CapHeadingWithStatic;
650
+
651
+ /***/ }),
652
+
653
+ /***/ 6254:
654
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
655
+
656
+ "use strict";
657
+ __webpack_require__.r(__webpack_exports__);
658
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
659
+ /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
660
+ /* harmony export */ });
661
+ /* harmony import */ var _node_modules_style_loader_dist_runtime_injectStylesIntoStyleTag_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(5072);
662
+ /* harmony import */ var _node_modules_style_loader_dist_runtime_injectStylesIntoStyleTag_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_style_loader_dist_runtime_injectStylesIntoStyleTag_js__WEBPACK_IMPORTED_MODULE_0__);
663
+ /* harmony import */ var _node_modules_style_loader_dist_runtime_singletonStyleDomAPI_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(4284);
664
+ /* harmony import */ var _node_modules_style_loader_dist_runtime_singletonStyleDomAPI_js__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_node_modules_style_loader_dist_runtime_singletonStyleDomAPI_js__WEBPACK_IMPORTED_MODULE_1__);
665
+ /* harmony import */ var _node_modules_style_loader_dist_runtime_insertBySelector_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(7659);
666
+ /* harmony import */ var _node_modules_style_loader_dist_runtime_insertBySelector_js__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_node_modules_style_loader_dist_runtime_insertBySelector_js__WEBPACK_IMPORTED_MODULE_2__);
667
+ /* harmony import */ var _node_modules_style_loader_dist_runtime_setAttributesWithoutAttributes_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(5056);
668
+ /* harmony import */ var _node_modules_style_loader_dist_runtime_setAttributesWithoutAttributes_js__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(_node_modules_style_loader_dist_runtime_setAttributesWithoutAttributes_js__WEBPACK_IMPORTED_MODULE_3__);
669
+ /* harmony import */ var _node_modules_style_loader_dist_runtime_insertStyleElement_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(540);
670
+ /* harmony import */ var _node_modules_style_loader_dist_runtime_insertStyleElement_js__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(_node_modules_style_loader_dist_runtime_insertStyleElement_js__WEBPACK_IMPORTED_MODULE_4__);
671
+ /* harmony import */ var _node_modules_css_loader_dist_cjs_js_ruleSet_1_rules_1_use_1_node_modules_sass_loader_dist_cjs_js_ruleSet_1_rules_1_use_2_styles_scss__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(2465);
672
+ /* harmony import */ var _node_modules_css_loader_dist_cjs_js_ruleSet_1_rules_1_use_1_node_modules_sass_loader_dist_cjs_js_ruleSet_1_rules_1_use_2_styles_scss__WEBPACK_IMPORTED_MODULE_5___default = /*#__PURE__*/__webpack_require__.n(_node_modules_css_loader_dist_cjs_js_ruleSet_1_rules_1_use_1_node_modules_sass_loader_dist_cjs_js_ruleSet_1_rules_1_use_2_styles_scss__WEBPACK_IMPORTED_MODULE_5__);
673
+ /* harmony reexport (unknown) */ var __WEBPACK_REEXPORT_OBJECT__ = {};
674
+ /* harmony reexport (unknown) */ for(const __WEBPACK_IMPORT_KEY__ in _node_modules_css_loader_dist_cjs_js_ruleSet_1_rules_1_use_1_node_modules_sass_loader_dist_cjs_js_ruleSet_1_rules_1_use_2_styles_scss__WEBPACK_IMPORTED_MODULE_5__) if(__WEBPACK_IMPORT_KEY__ !== "default") __WEBPACK_REEXPORT_OBJECT__[__WEBPACK_IMPORT_KEY__] = () => _node_modules_css_loader_dist_cjs_js_ruleSet_1_rules_1_use_1_node_modules_sass_loader_dist_cjs_js_ruleSet_1_rules_1_use_2_styles_scss__WEBPACK_IMPORTED_MODULE_5__[__WEBPACK_IMPORT_KEY__]
675
+ /* harmony reexport (unknown) */ __webpack_require__.d(__webpack_exports__, __WEBPACK_REEXPORT_OBJECT__);
676
+
677
+
678
+
679
+
680
+
681
+
682
+
683
+
684
+
685
+
686
+
687
+ var options = {};
688
+
689
+ ;
690
+ options.setAttributes = (_node_modules_style_loader_dist_runtime_setAttributesWithoutAttributes_js__WEBPACK_IMPORTED_MODULE_3___default());
691
+ options.insert = _node_modules_style_loader_dist_runtime_insertBySelector_js__WEBPACK_IMPORTED_MODULE_2___default().bind(null, "head");
692
+ options.domAPI = (_node_modules_style_loader_dist_runtime_singletonStyleDomAPI_js__WEBPACK_IMPORTED_MODULE_1___default());
693
+ options.insertStyleElement = (_node_modules_style_loader_dist_runtime_insertStyleElement_js__WEBPACK_IMPORTED_MODULE_4___default());
694
+
695
+ var update = _node_modules_style_loader_dist_runtime_injectStylesIntoStyleTag_js__WEBPACK_IMPORTED_MODULE_0___default()((_node_modules_css_loader_dist_cjs_js_ruleSet_1_rules_1_use_1_node_modules_sass_loader_dist_cjs_js_ruleSet_1_rules_1_use_2_styles_scss__WEBPACK_IMPORTED_MODULE_5___default()), options);
696
+
697
+
698
+
699
+
700
+ /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ((_node_modules_css_loader_dist_cjs_js_ruleSet_1_rules_1_use_1_node_modules_sass_loader_dist_cjs_js_ruleSet_1_rules_1_use_2_styles_scss__WEBPACK_IMPORTED_MODULE_5___default()) && (_node_modules_css_loader_dist_cjs_js_ruleSet_1_rules_1_use_1_node_modules_sass_loader_dist_cjs_js_ruleSet_1_rules_1_use_2_styles_scss__WEBPACK_IMPORTED_MODULE_5___default().locals) ? (_node_modules_css_loader_dist_cjs_js_ruleSet_1_rules_1_use_1_node_modules_sass_loader_dist_cjs_js_ruleSet_1_rules_1_use_2_styles_scss__WEBPACK_IMPORTED_MODULE_5___default().locals) : undefined);
701
+
702
+
703
+ /***/ }),
704
+
705
+ /***/ 6314:
706
+ /***/ ((module) => {
707
+
708
+ "use strict";
709
+
710
+
711
+ /*
712
+ MIT License http://www.opensource.org/licenses/mit-license.php
713
+ Author Tobias Koppers @sokra
714
+ */
715
+ module.exports = function (cssWithMappingToString) {
716
+ var list = [];
717
+
718
+ // return the list of modules as css string
719
+ list.toString = function toString() {
720
+ return this.map(function (item) {
721
+ var content = "";
722
+ var needLayer = typeof item[5] !== "undefined";
723
+ if (item[4]) {
724
+ content += "@supports (".concat(item[4], ") {");
725
+ }
726
+ if (item[2]) {
727
+ content += "@media ".concat(item[2], " {");
728
+ }
729
+ if (needLayer) {
730
+ content += "@layer".concat(item[5].length > 0 ? " ".concat(item[5]) : "", " {");
731
+ }
732
+ content += cssWithMappingToString(item);
733
+ if (needLayer) {
734
+ content += "}";
735
+ }
736
+ if (item[2]) {
737
+ content += "}";
738
+ }
739
+ if (item[4]) {
740
+ content += "}";
741
+ }
742
+ return content;
743
+ }).join("");
744
+ };
745
+
746
+ // import a list of modules into the list
747
+ list.i = function i(modules, media, dedupe, supports, layer) {
748
+ if (typeof modules === "string") {
749
+ modules = [[null, modules, undefined]];
750
+ }
751
+ var alreadyImportedModules = {};
752
+ if (dedupe) {
753
+ for (var k = 0; k < this.length; k++) {
754
+ var id = this[k][0];
755
+ if (id != null) {
756
+ alreadyImportedModules[id] = true;
757
+ }
758
+ }
759
+ }
760
+ for (var _k = 0; _k < modules.length; _k++) {
761
+ var item = [].concat(modules[_k]);
762
+ if (dedupe && alreadyImportedModules[item[0]]) {
763
+ continue;
764
+ }
765
+ if (typeof layer !== "undefined") {
766
+ if (typeof item[5] === "undefined") {
767
+ item[5] = layer;
768
+ } else {
769
+ item[1] = "@layer".concat(item[5].length > 0 ? " ".concat(item[5]) : "", " {").concat(item[1], "}");
770
+ item[5] = layer;
771
+ }
772
+ }
773
+ if (media) {
774
+ if (!item[2]) {
775
+ item[2] = media;
776
+ } else {
777
+ item[1] = "@media ".concat(item[2], " {").concat(item[1], "}");
778
+ item[2] = media;
779
+ }
780
+ }
781
+ if (supports) {
782
+ if (!item[4]) {
783
+ item[4] = "".concat(supports);
784
+ } else {
785
+ item[1] = "@supports (".concat(item[4], ") {").concat(item[1], "}");
786
+ item[4] = supports;
787
+ }
788
+ }
789
+ list.push(item);
790
+ }
791
+ };
792
+ return list;
793
+ };
794
+
795
+ /***/ }),
796
+
797
+ /***/ 6942:
798
+ /***/ ((module, exports) => {
799
+
800
+ var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*!
801
+ Copyright (c) 2018 Jed Watson.
802
+ Licensed under the MIT License (MIT), see
803
+ http://jedwatson.github.io/classnames
804
+ */
805
+ /* global define */
806
+
807
+ (function () {
808
+ 'use strict';
809
+
810
+ var hasOwn = {}.hasOwnProperty;
811
+
812
+ function classNames () {
813
+ var classes = '';
814
+
815
+ for (var i = 0; i < arguments.length; i++) {
816
+ var arg = arguments[i];
817
+ if (arg) {
818
+ classes = appendClass(classes, parseValue(arg));
819
+ }
820
+ }
821
+
822
+ return classes;
823
+ }
824
+
825
+ function parseValue (arg) {
826
+ if (typeof arg === 'string' || typeof arg === 'number') {
827
+ return arg;
828
+ }
829
+
830
+ if (typeof arg !== 'object') {
831
+ return '';
832
+ }
833
+
834
+ if (Array.isArray(arg)) {
835
+ return classNames.apply(null, arg);
836
+ }
837
+
838
+ if (arg.toString !== Object.prototype.toString && !arg.toString.toString().includes('[native code]')) {
839
+ return arg.toString();
840
+ }
841
+
842
+ var classes = '';
843
+
844
+ for (var key in arg) {
845
+ if (hasOwn.call(arg, key) && arg[key]) {
846
+ classes = appendClass(classes, key);
847
+ }
848
+ }
849
+
850
+ return classes;
851
+ }
852
+
853
+ function appendClass (value, newClass) {
854
+ if (!newClass) {
855
+ return value;
856
+ }
857
+
858
+ if (value) {
859
+ return value + ' ' + newClass;
860
+ }
861
+
862
+ return value + newClass;
863
+ }
864
+
865
+ if ( true && module.exports) {
866
+ classNames.default = classNames;
867
+ module.exports = classNames;
868
+ } else if (true) {
869
+ // register as 'classnames', consistent with npm package name
870
+ !(__WEBPACK_AMD_DEFINE_ARRAY__ = [], __WEBPACK_AMD_DEFINE_RESULT__ = (function () {
871
+ return classNames;
872
+ }).apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__),
873
+ __WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));
874
+ } else // removed by dead control flow
875
+ {}
876
+ }());
877
+
878
+
879
+ /***/ }),
880
+
881
+ /***/ 7659:
882
+ /***/ ((module) => {
883
+
884
+ "use strict";
885
+
886
+
887
+ var memo = {};
888
+
889
+ /* istanbul ignore next */
890
+ function getTarget(target) {
891
+ if (typeof memo[target] === "undefined") {
892
+ var styleTarget = document.querySelector(target);
893
+
894
+ // Special case to return head of iframe instead of iframe itself
895
+ if (window.HTMLIFrameElement && styleTarget instanceof window.HTMLIFrameElement) {
896
+ try {
897
+ // This will throw an exception if access to iframe is blocked
898
+ // due to cross-origin restrictions
899
+ styleTarget = styleTarget.contentDocument.head;
900
+ } catch (e) {
901
+ // istanbul ignore next
902
+ styleTarget = null;
903
+ }
904
+ }
905
+ memo[target] = styleTarget;
906
+ }
907
+ return memo[target];
908
+ }
909
+
910
+ /* istanbul ignore next */
911
+ function insertBySelector(insert, style) {
912
+ var target = getTarget(insert);
913
+ if (!target) {
914
+ throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");
915
+ }
916
+ target.appendChild(style);
917
+ }
918
+ module.exports = insertBySelector;
919
+
920
+ /***/ }),
921
+
922
+ /***/ 8053:
923
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
924
+
925
+ "use strict";
926
+
927
+
928
+ exports.__esModule = true;
929
+ exports["default"] = void 0;
930
+ var _CapHeading = _interopRequireDefault(__webpack_require__(5821));
931
+ exports["default"] = _CapHeading.default;
932
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
933
+
934
+ /***/ }),
935
+
936
+ /***/ 8195:
937
+ /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
938
+
939
+ "use strict";
940
+ module.exports = __webpack_require__.p + "assets/feature-ui-disabled-illustration.svg";
941
+
942
+ /***/ }),
943
+
944
+ /***/ 8290:
945
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
946
+
947
+ "use strict";
948
+
949
+
950
+ exports.__esModule = true;
951
+ var _exportNames = {};
952
+ exports["default"] = void 0;
953
+ var _CapAppNotEnabled = _interopRequireDefault(__webpack_require__(9163));
954
+ exports["default"] = _CapAppNotEnabled.default;
955
+ var _CapAppNotEnabled2 = __webpack_require__(4191);
956
+ Object.keys(_CapAppNotEnabled2).forEach(function (key) {
957
+ if (key === "default" || key === "__esModule") return;
958
+ if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
959
+ if (key in exports && exports[key] === _CapAppNotEnabled2[key]) return;
960
+ exports[key] = _CapAppNotEnabled2[key];
961
+ });
962
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
963
+
964
+ /***/ }),
965
+
966
+ /***/ 9163:
967
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
968
+
969
+ "use strict";
970
+
971
+
972
+ exports.__esModule = true;
973
+ exports["default"] = void 0;
974
+ var _classnames = _interopRequireDefault(__webpack_require__(6942));
975
+ var _react = _interopRequireDefault(__webpack_require__(9206));
976
+ var _featureUiDisabledIllustration = _interopRequireDefault(__webpack_require__(8195));
977
+ var _CapHeading = _interopRequireDefault(__webpack_require__(8053));
978
+ var _CapLabel = _interopRequireDefault(__webpack_require__(3737));
979
+ var _styles = _interopRequireDefault(__webpack_require__(6254));
980
+ var _jsxRuntime = __webpack_require__(4848);
981
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
982
+ const CapAppNotEnabled = _ref => {
983
+ let {
984
+ headerText,
985
+ title,
986
+ description,
987
+ className,
988
+ style
989
+ } = _ref;
990
+ return /*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
991
+ className: (0, _classnames.default)(_styles.default['cap-app-not-enabled'], className),
992
+ style: style,
993
+ children: [headerText && /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
994
+ className: _styles.default['cap-app-not-enabled-header'],
995
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_CapHeading.default, {
996
+ type: "h1",
997
+ children: headerText
998
+ })
999
+ }), /*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
1000
+ className: _styles.default['empty-state-container'],
1001
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("img", {
1002
+ src: _featureUiDisabledIllustration.default,
1003
+ alt: ""
1004
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_CapHeading.default, {
1005
+ type: "h3",
1006
+ className: _styles.default['title'],
1007
+ children: title
1008
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_CapLabel.default, {
1009
+ type: "label15",
1010
+ className: _styles.default['description'],
1011
+ children: description
1012
+ })]
1013
+ })]
1014
+ });
1015
+ };
1016
+ CapAppNotEnabled.displayName = 'CapAppNotEnabled';
1017
+ var _default = exports["default"] = CapAppNotEnabled;
1018
+
1019
+ /***/ }),
1020
+
1021
+ /***/ 9206:
1022
+ /***/ ((module) => {
1023
+
1024
+ "use strict";
1025
+ module.exports = require("react");
1026
+
1027
+ /***/ })
1028
+
1029
+ /******/ });
1030
+ /************************************************************************/
1031
+ /******/ // The module cache
1032
+ /******/ var __webpack_module_cache__ = {};
1033
+ /******/
1034
+ /******/ // The require function
1035
+ /******/ function __webpack_require__(moduleId) {
1036
+ /******/ // Check if module is in cache
1037
+ /******/ var cachedModule = __webpack_module_cache__[moduleId];
1038
+ /******/ if (cachedModule !== undefined) {
1039
+ /******/ return cachedModule.exports;
1040
+ /******/ }
1041
+ /******/ // Create a new module (and put it into the cache)
1042
+ /******/ var module = __webpack_module_cache__[moduleId] = {
1043
+ /******/ id: moduleId,
1044
+ /******/ // no module.loaded needed
1045
+ /******/ exports: {}
1046
+ /******/ };
1047
+ /******/
1048
+ /******/ // Execute the module function
1049
+ /******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
1050
+ /******/
1051
+ /******/ // Return the exports of the module
1052
+ /******/ return module.exports;
1053
+ /******/ }
1054
+ /******/
1055
+ /************************************************************************/
1056
+ /******/ /* webpack/runtime/compat get default export */
1057
+ /******/ (() => {
1058
+ /******/ // getDefaultExport function for compatibility with non-harmony modules
1059
+ /******/ __webpack_require__.n = (module) => {
1060
+ /******/ var getter = module && module.__esModule ?
1061
+ /******/ () => (module['default']) :
1062
+ /******/ () => (module);
1063
+ /******/ __webpack_require__.d(getter, { a: getter });
1064
+ /******/ return getter;
1065
+ /******/ };
1066
+ /******/ })();
1067
+ /******/
1068
+ /******/ /* webpack/runtime/define property getters */
1069
+ /******/ (() => {
1070
+ /******/ // define getter functions for harmony exports
1071
+ /******/ __webpack_require__.d = (exports, definition) => {
1072
+ /******/ for(var key in definition) {
1073
+ /******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
1074
+ /******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
1075
+ /******/ }
1076
+ /******/ }
1077
+ /******/ };
1078
+ /******/ })();
1079
+ /******/
1080
+ /******/ /* webpack/runtime/hasOwnProperty shorthand */
1081
+ /******/ (() => {
1082
+ /******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
1083
+ /******/ })();
1084
+ /******/
1085
+ /******/ /* webpack/runtime/make namespace object */
1086
+ /******/ (() => {
1087
+ /******/ // define __esModule on exports
1088
+ /******/ __webpack_require__.r = (exports) => {
1089
+ /******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
1090
+ /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
1091
+ /******/ }
1092
+ /******/ Object.defineProperty(exports, '__esModule', { value: true });
1093
+ /******/ };
1094
+ /******/ })();
1095
+ /******/
1096
+ /******/ /* webpack/runtime/publicPath */
1097
+ /******/ (() => {
1098
+ /******/ __webpack_require__.p = "";
1099
+ /******/ })();
1100
+ /******/
1101
+ /******/ /* webpack/runtime/nonce */
1102
+ /******/ (() => {
1103
+ /******/ __webpack_require__.nc = undefined;
1104
+ /******/ })();
1105
+ /******/
1106
+ /************************************************************************/
1107
+ /******/
1108
+ /******/ // startup
1109
+ /******/ // Load entry module and return exports
1110
+ /******/ // This entry module is referenced by other modules so it can't be inlined
1111
+ /******/ var __webpack_exports__ = __webpack_require__(8290);
1112
+ /******/ module.exports = __webpack_exports__;
1113
+ /******/
1114
+ /******/ })()
1115
+ ;
1116
+ //# sourceMappingURL=index.js.map