easy-navigation 2.1.282 → 2.1.284
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/lib/accordion.js +50 -263
- package/lib/button/accordion.js +55 -164
- package/lib/button/navigation/accordion.js +55 -158
- package/lib/constants.js +3 -3
- package/lib/div/accordion.js +72 -309
- package/lib/example/accordion.js +19 -104
- package/lib/example/article/buttons.js +12 -109
- package/lib/example/article/codes.js +12 -109
- package/lib/example/article/headings.js +12 -109
- package/lib/example/article/home.js +20 -123
- package/lib/example/article/inputs.js +12 -109
- package/lib/example/article/links.js +12 -109
- package/lib/example/article/sections.js +12 -109
- package/lib/example/article.js +28 -149
- package/lib/example/articlesArray.js +10 -10
- package/lib/example/button/accordion.js +12 -23
- package/lib/example/button/link.js +28 -104
- package/lib/example/createMethods.js +3 -4
- package/lib/example/item/accordion.js +6 -84
- package/lib/example/navigation/accordion.js +16 -23
- package/lib/example/paths.js +8 -8
- package/lib/example/preamble.js +2 -2
- package/lib/example/uris.js +8 -8
- package/lib/example/view.js +45 -200
- package/lib/example.js +9 -9
- package/lib/index.js +9 -9
- package/lib/item/accordion.js +100 -324
- package/lib/item/navigation/accordion.js +22 -226
- package/lib/list/navigation/accordion.js +46 -213
- package/lib/navigation/accordion.js +14 -157
- package/lib/utilities/array.js +2 -9
- package/package.json +5 -1
- package/.swcrc +0 -11
- package/bin/main.js +0 -17
- package/example.js +0 -37856
- package/index.html +0 -46
|
@@ -8,121 +8,24 @@ Object.defineProperty(exports, "default", {
|
|
|
8
8
|
return ButtonsArticle;
|
|
9
9
|
}
|
|
10
10
|
});
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
function _assert_this_initialized(self) {
|
|
15
|
-
if (self === void 0) {
|
|
16
|
-
throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
17
|
-
}
|
|
18
|
-
return self;
|
|
19
|
-
}
|
|
20
|
-
function _call_super(_this, derived, args) {
|
|
21
|
-
derived = _get_prototype_of(derived);
|
|
22
|
-
return _possible_constructor_return(_this, _is_native_reflect_construct() ? Reflect.construct(derived, args || [], _get_prototype_of(_this).constructor) : derived.apply(_this, args));
|
|
23
|
-
}
|
|
24
|
-
function _class_call_check(instance, Constructor) {
|
|
25
|
-
if (!(instance instanceof Constructor)) {
|
|
26
|
-
throw new TypeError("Cannot call a class as a function");
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
function _defineProperties(target, props) {
|
|
30
|
-
for(var i = 0; i < props.length; i++){
|
|
31
|
-
var descriptor = props[i];
|
|
32
|
-
descriptor.enumerable = descriptor.enumerable || false;
|
|
33
|
-
descriptor.configurable = true;
|
|
34
|
-
if ("value" in descriptor) descriptor.writable = true;
|
|
35
|
-
Object.defineProperty(target, descriptor.key, descriptor);
|
|
36
|
-
}
|
|
37
|
-
}
|
|
38
|
-
function _create_class(Constructor, protoProps, staticProps) {
|
|
39
|
-
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
|
|
40
|
-
if (staticProps) _defineProperties(Constructor, staticProps);
|
|
41
|
-
return Constructor;
|
|
42
|
-
}
|
|
43
|
-
function _define_property(obj, key, value) {
|
|
44
|
-
if (key in obj) {
|
|
45
|
-
Object.defineProperty(obj, key, {
|
|
46
|
-
value: value,
|
|
47
|
-
enumerable: true,
|
|
48
|
-
configurable: true,
|
|
49
|
-
writable: true
|
|
50
|
-
});
|
|
51
|
-
} else {
|
|
52
|
-
obj[key] = value;
|
|
53
|
-
}
|
|
54
|
-
return obj;
|
|
55
|
-
}
|
|
56
|
-
function _get_prototype_of(o) {
|
|
57
|
-
_get_prototype_of = Object.setPrototypeOf ? Object.getPrototypeOf : function getPrototypeOf(o) {
|
|
58
|
-
return o.__proto__ || Object.getPrototypeOf(o);
|
|
59
|
-
};
|
|
60
|
-
return _get_prototype_of(o);
|
|
61
|
-
}
|
|
62
|
-
function _inherits(subClass, superClass) {
|
|
63
|
-
if (typeof superClass !== "function" && superClass !== null) {
|
|
64
|
-
throw new TypeError("Super expression must either be null or a function");
|
|
65
|
-
}
|
|
66
|
-
subClass.prototype = Object.create(superClass && superClass.prototype, {
|
|
67
|
-
constructor: {
|
|
68
|
-
value: subClass,
|
|
69
|
-
writable: true,
|
|
70
|
-
configurable: true
|
|
71
|
-
}
|
|
72
|
-
});
|
|
73
|
-
if (superClass) _set_prototype_of(subClass, superClass);
|
|
74
|
-
}
|
|
11
|
+
const _article = /*#__PURE__*/ _interop_require_default(require("../article"));
|
|
12
|
+
const _uris = require("../uris");
|
|
13
|
+
const _paths = require("../paths");
|
|
75
14
|
function _interop_require_default(obj) {
|
|
76
15
|
return obj && obj.__esModule ? obj : {
|
|
77
16
|
default: obj
|
|
78
17
|
};
|
|
79
18
|
}
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
return
|
|
19
|
+
class ButtonsArticle extends _article.default {
|
|
20
|
+
childElements() {
|
|
21
|
+
return /*#__PURE__*/ React.createElement("div", null, /*#__PURE__*/ React.createElement("h1", null, "Buttons"));
|
|
83
22
|
}
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
return o;
|
|
23
|
+
static uri = _uris.buttonsURI;
|
|
24
|
+
static path = _paths.buttonsPath;
|
|
25
|
+
static title = "Buttons";
|
|
26
|
+
static defaultProperties = {
|
|
27
|
+
className: "buttons"
|
|
90
28
|
};
|
|
91
|
-
return _set_prototype_of(o, p);
|
|
92
29
|
}
|
|
93
|
-
function _type_of(obj) {
|
|
94
|
-
"@swc/helpers - typeof";
|
|
95
|
-
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
96
|
-
}
|
|
97
|
-
function _is_native_reflect_construct() {
|
|
98
|
-
try {
|
|
99
|
-
var result = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
100
|
-
} catch (_) {}
|
|
101
|
-
return (_is_native_reflect_construct = function() {
|
|
102
|
-
return !!result;
|
|
103
|
-
})();
|
|
104
|
-
}
|
|
105
|
-
var ButtonsArticle = /*#__PURE__*/ function(Article) {
|
|
106
|
-
_inherits(ButtonsArticle, Article);
|
|
107
|
-
function ButtonsArticle() {
|
|
108
|
-
_class_call_check(this, ButtonsArticle);
|
|
109
|
-
return _call_super(this, ButtonsArticle, arguments);
|
|
110
|
-
}
|
|
111
|
-
_create_class(ButtonsArticle, [
|
|
112
|
-
{
|
|
113
|
-
key: "childElements",
|
|
114
|
-
value: function childElements() {
|
|
115
|
-
return /*#__PURE__*/ React.createElement("div", null, /*#__PURE__*/ React.createElement("h1", null, "Buttons"));
|
|
116
|
-
}
|
|
117
|
-
}
|
|
118
|
-
]);
|
|
119
|
-
return ButtonsArticle;
|
|
120
|
-
}(_article.default);
|
|
121
|
-
_define_property(ButtonsArticle, "uri", _uris.buttonsURI);
|
|
122
|
-
_define_property(ButtonsArticle, "path", _paths.buttonsPath);
|
|
123
|
-
_define_property(ButtonsArticle, "title", "Buttons");
|
|
124
|
-
_define_property(ButtonsArticle, "defaultProperties", {
|
|
125
|
-
className: "buttons"
|
|
126
|
-
});
|
|
127
30
|
|
|
128
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9leGFtcGxlL2FydGljbGUvYnV0dG9ucy5qcyJdLCJzb3VyY2VzQ29udGVudCI6WyJcInVzZSBzdHJpY3RcIjtcblxuaW1wb3J0IEFydGljbGUgZnJvbSBcIi4uL2FydGljbGVcIjtcblxuaW1wb3J0IHsgYnV0dG9uc1VSSSB9IGZyb20gXCIuLi91cmlzXCI7XG5pbXBvcnQgeyBidXR0b25zUGF0aCB9IGZyb20gXCIuLi9wYXRoc1wiO1xuXG5leHBvcnQgZGVmYXVsdCBjbGFzcyBCdXR0b25zQXJ0aWNsZSBleHRlbmRzIEFydGljbGUge1xuICBjaGlsZEVsZW1lbnRzKCkge1xuICAgIHJldHVybiAoXG5cbiAgICAgIDxkaXY+XG4gICAgICAgIDxoMT5cbiAgICAgICAgICBCdXR0b25zXG4gICAgICAgIDwvaDE+
|
|
31
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9leGFtcGxlL2FydGljbGUvYnV0dG9ucy5qcyJdLCJzb3VyY2VzQ29udGVudCI6WyJcInVzZSBzdHJpY3RcIjtcblxuaW1wb3J0IEFydGljbGUgZnJvbSBcIi4uL2FydGljbGVcIjtcblxuaW1wb3J0IHsgYnV0dG9uc1VSSSB9IGZyb20gXCIuLi91cmlzXCI7XG5pbXBvcnQgeyBidXR0b25zUGF0aCB9IGZyb20gXCIuLi9wYXRoc1wiO1xuXG5leHBvcnQgZGVmYXVsdCBjbGFzcyBCdXR0b25zQXJ0aWNsZSBleHRlbmRzIEFydGljbGUge1xuICBjaGlsZEVsZW1lbnRzKCkge1xuICAgIHJldHVybiAoXG5cbiAgICAgIDxkaXY+XG4gICAgICAgIDxoMT5cbiAgICAgICAgICBCdXR0b25zXG4gICAgICAgIDwvaDE+XG4gICAgICA8L2Rpdj5cblxuICAgICk7XG4gIH1cblxuICBzdGF0aWMgdXJpID0gYnV0dG9uc1VSSTtcblxuICBzdGF0aWMgcGF0aCA9IGJ1dHRvbnNQYXRoO1xuXG4gIHN0YXRpYyB0aXRsZSA9IFwiQnV0dG9uc1wiO1xuXG4gIHN0YXRpYyBkZWZhdWx0UHJvcGVydGllcyA9IHtcbiAgICBjbGFzc05hbWU6IFwiYnV0dG9uc1wiXG4gIH07XG59XG4iXSwibmFtZXMiOlsiQnV0dG9uc0FydGljbGUiLCJBcnRpY2xlIiwiY2hpbGRFbGVtZW50cyIsImRpdiIsImgxIiwidXJpIiwiYnV0dG9uc1VSSSIsInBhdGgiLCJidXR0b25zUGF0aCIsInRpdGxlIiwiZGVmYXVsdFByb3BlcnRpZXMiLCJjbGFzc05hbWUiXSwibWFwcGluZ3MiOiJBQUFBOzs7OytCQU9BOzs7ZUFBcUJBOzs7Z0VBTEQ7c0JBRU87dUJBQ0M7Ozs7OztBQUViLE1BQU1BLHVCQUF1QkMsZ0JBQU87SUFDakRDLGdCQUFnQjtRQUNkLHFCQUVFLG9CQUFDQywyQkFDQyxvQkFBQ0MsWUFBRztJQU1WO0lBRUEsT0FBT0MsTUFBTUMsZ0JBQVUsQ0FBQztJQUV4QixPQUFPQyxPQUFPQyxrQkFBVyxDQUFDO0lBRTFCLE9BQU9DLFFBQVEsVUFBVTtJQUV6QixPQUFPQyxvQkFBb0I7UUFDekJDLFdBQVc7SUFDYixFQUFFO0FBQ0oifQ==
|
|
@@ -8,121 +8,24 @@ Object.defineProperty(exports, "default", {
|
|
|
8
8
|
return CodesArticle;
|
|
9
9
|
}
|
|
10
10
|
});
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
function _assert_this_initialized(self) {
|
|
15
|
-
if (self === void 0) {
|
|
16
|
-
throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
17
|
-
}
|
|
18
|
-
return self;
|
|
19
|
-
}
|
|
20
|
-
function _call_super(_this, derived, args) {
|
|
21
|
-
derived = _get_prototype_of(derived);
|
|
22
|
-
return _possible_constructor_return(_this, _is_native_reflect_construct() ? Reflect.construct(derived, args || [], _get_prototype_of(_this).constructor) : derived.apply(_this, args));
|
|
23
|
-
}
|
|
24
|
-
function _class_call_check(instance, Constructor) {
|
|
25
|
-
if (!(instance instanceof Constructor)) {
|
|
26
|
-
throw new TypeError("Cannot call a class as a function");
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
function _defineProperties(target, props) {
|
|
30
|
-
for(var i = 0; i < props.length; i++){
|
|
31
|
-
var descriptor = props[i];
|
|
32
|
-
descriptor.enumerable = descriptor.enumerable || false;
|
|
33
|
-
descriptor.configurable = true;
|
|
34
|
-
if ("value" in descriptor) descriptor.writable = true;
|
|
35
|
-
Object.defineProperty(target, descriptor.key, descriptor);
|
|
36
|
-
}
|
|
37
|
-
}
|
|
38
|
-
function _create_class(Constructor, protoProps, staticProps) {
|
|
39
|
-
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
|
|
40
|
-
if (staticProps) _defineProperties(Constructor, staticProps);
|
|
41
|
-
return Constructor;
|
|
42
|
-
}
|
|
43
|
-
function _define_property(obj, key, value) {
|
|
44
|
-
if (key in obj) {
|
|
45
|
-
Object.defineProperty(obj, key, {
|
|
46
|
-
value: value,
|
|
47
|
-
enumerable: true,
|
|
48
|
-
configurable: true,
|
|
49
|
-
writable: true
|
|
50
|
-
});
|
|
51
|
-
} else {
|
|
52
|
-
obj[key] = value;
|
|
53
|
-
}
|
|
54
|
-
return obj;
|
|
55
|
-
}
|
|
56
|
-
function _get_prototype_of(o) {
|
|
57
|
-
_get_prototype_of = Object.setPrototypeOf ? Object.getPrototypeOf : function getPrototypeOf(o) {
|
|
58
|
-
return o.__proto__ || Object.getPrototypeOf(o);
|
|
59
|
-
};
|
|
60
|
-
return _get_prototype_of(o);
|
|
61
|
-
}
|
|
62
|
-
function _inherits(subClass, superClass) {
|
|
63
|
-
if (typeof superClass !== "function" && superClass !== null) {
|
|
64
|
-
throw new TypeError("Super expression must either be null or a function");
|
|
65
|
-
}
|
|
66
|
-
subClass.prototype = Object.create(superClass && superClass.prototype, {
|
|
67
|
-
constructor: {
|
|
68
|
-
value: subClass,
|
|
69
|
-
writable: true,
|
|
70
|
-
configurable: true
|
|
71
|
-
}
|
|
72
|
-
});
|
|
73
|
-
if (superClass) _set_prototype_of(subClass, superClass);
|
|
74
|
-
}
|
|
11
|
+
const _article = /*#__PURE__*/ _interop_require_default(require("../article"));
|
|
12
|
+
const _uris = require("../uris");
|
|
13
|
+
const _paths = require("../paths");
|
|
75
14
|
function _interop_require_default(obj) {
|
|
76
15
|
return obj && obj.__esModule ? obj : {
|
|
77
16
|
default: obj
|
|
78
17
|
};
|
|
79
18
|
}
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
return
|
|
19
|
+
class CodesArticle extends _article.default {
|
|
20
|
+
childElements() {
|
|
21
|
+
return /*#__PURE__*/ React.createElement("div", null, /*#__PURE__*/ React.createElement("h1", null, "Codes"));
|
|
83
22
|
}
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
return o;
|
|
23
|
+
static uri = _uris.codesURI;
|
|
24
|
+
static path = _paths.codesPath;
|
|
25
|
+
static title = "Codes";
|
|
26
|
+
static defaultProperties = {
|
|
27
|
+
className: "code"
|
|
90
28
|
};
|
|
91
|
-
return _set_prototype_of(o, p);
|
|
92
29
|
}
|
|
93
|
-
function _type_of(obj) {
|
|
94
|
-
"@swc/helpers - typeof";
|
|
95
|
-
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
96
|
-
}
|
|
97
|
-
function _is_native_reflect_construct() {
|
|
98
|
-
try {
|
|
99
|
-
var result = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
100
|
-
} catch (_) {}
|
|
101
|
-
return (_is_native_reflect_construct = function() {
|
|
102
|
-
return !!result;
|
|
103
|
-
})();
|
|
104
|
-
}
|
|
105
|
-
var CodesArticle = /*#__PURE__*/ function(Article) {
|
|
106
|
-
_inherits(CodesArticle, Article);
|
|
107
|
-
function CodesArticle() {
|
|
108
|
-
_class_call_check(this, CodesArticle);
|
|
109
|
-
return _call_super(this, CodesArticle, arguments);
|
|
110
|
-
}
|
|
111
|
-
_create_class(CodesArticle, [
|
|
112
|
-
{
|
|
113
|
-
key: "childElements",
|
|
114
|
-
value: function childElements() {
|
|
115
|
-
return /*#__PURE__*/ React.createElement("div", null, /*#__PURE__*/ React.createElement("h1", null, "Codes"));
|
|
116
|
-
}
|
|
117
|
-
}
|
|
118
|
-
]);
|
|
119
|
-
return CodesArticle;
|
|
120
|
-
}(_article.default);
|
|
121
|
-
_define_property(CodesArticle, "uri", _uris.codesURI);
|
|
122
|
-
_define_property(CodesArticle, "path", _paths.codesPath);
|
|
123
|
-
_define_property(CodesArticle, "title", "Codes");
|
|
124
|
-
_define_property(CodesArticle, "defaultProperties", {
|
|
125
|
-
className: "code"
|
|
126
|
-
});
|
|
127
30
|
|
|
128
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9leGFtcGxlL2FydGljbGUvY29kZXMuanMiXSwic291cmNlc0NvbnRlbnQiOlsiXCJ1c2Ugc3RyaWN0XCI7XG5cbmltcG9ydCBBcnRpY2xlIGZyb20gXCIuLi9hcnRpY2xlXCI7XG5cbmltcG9ydCB7IGNvZGVzVVJJIH0gZnJvbSBcIi4uL3VyaXNcIjtcbmltcG9ydCB7IGNvZGVzUGF0aCB9IGZyb20gXCIuLi9wYXRoc1wiO1xuXG5leHBvcnQgZGVmYXVsdCBjbGFzcyBDb2Rlc0FydGljbGUgZXh0ZW5kcyBBcnRpY2xlIHtcbiAgY2hpbGRFbGVtZW50cygpIHtcbiAgICByZXR1cm4gKFxuXG4gICAgICA8ZGl2PlxuICAgICAgICA8aDE+
|
|
31
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9leGFtcGxlL2FydGljbGUvY29kZXMuanMiXSwic291cmNlc0NvbnRlbnQiOlsiXCJ1c2Ugc3RyaWN0XCI7XG5cbmltcG9ydCBBcnRpY2xlIGZyb20gXCIuLi9hcnRpY2xlXCI7XG5cbmltcG9ydCB7IGNvZGVzVVJJIH0gZnJvbSBcIi4uL3VyaXNcIjtcbmltcG9ydCB7IGNvZGVzUGF0aCB9IGZyb20gXCIuLi9wYXRoc1wiO1xuXG5leHBvcnQgZGVmYXVsdCBjbGFzcyBDb2Rlc0FydGljbGUgZXh0ZW5kcyBBcnRpY2xlIHtcbiAgY2hpbGRFbGVtZW50cygpIHtcbiAgICByZXR1cm4gKFxuXG4gICAgICA8ZGl2PlxuICAgICAgICA8aDE+XG4gICAgICAgICAgQ29kZXNcbiAgICAgICAgPC9oMT5cbiAgICAgIDwvZGl2PlxuXG4gICAgKTtcbiAgfVxuXG4gIHN0YXRpYyB1cmkgPSBjb2Rlc1VSSTtcblxuICBzdGF0aWMgcGF0aCA9IGNvZGVzUGF0aDtcblxuICBzdGF0aWMgdGl0bGUgPSBcIkNvZGVzXCI7XG5cbiAgc3RhdGljIGRlZmF1bHRQcm9wZXJ0aWVzID0ge1xuICAgIGNsYXNzTmFtZTogXCJjb2RlXCJcbiAgfTtcbn1cbiJdLCJuYW1lcyI6WyJDb2Rlc0FydGljbGUiLCJBcnRpY2xlIiwiY2hpbGRFbGVtZW50cyIsImRpdiIsImgxIiwidXJpIiwiY29kZXNVUkkiLCJwYXRoIiwiY29kZXNQYXRoIiwidGl0bGUiLCJkZWZhdWx0UHJvcGVydGllcyIsImNsYXNzTmFtZSJdLCJtYXBwaW5ncyI6IkFBQUE7Ozs7K0JBT0E7OztlQUFxQkE7OztnRUFMRDtzQkFFSzt1QkFDQzs7Ozs7O0FBRVgsTUFBTUEscUJBQXFCQyxnQkFBTztJQUMvQ0MsZ0JBQWdCO1FBQ2QscUJBRUUsb0JBQUNDLDJCQUNDLG9CQUFDQyxZQUFHO0lBTVY7SUFFQSxPQUFPQyxNQUFNQyxjQUFRLENBQUM7SUFFdEIsT0FBT0MsT0FBT0MsZ0JBQVMsQ0FBQztJQUV4QixPQUFPQyxRQUFRLFFBQVE7SUFFdkIsT0FBT0Msb0JBQW9CO1FBQ3pCQyxXQUFXO0lBQ2IsRUFBRTtBQUNKIn0=
|
|
@@ -8,121 +8,24 @@ Object.defineProperty(exports, "default", {
|
|
|
8
8
|
return HeadingsArticle;
|
|
9
9
|
}
|
|
10
10
|
});
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
function _assert_this_initialized(self) {
|
|
15
|
-
if (self === void 0) {
|
|
16
|
-
throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
17
|
-
}
|
|
18
|
-
return self;
|
|
19
|
-
}
|
|
20
|
-
function _call_super(_this, derived, args) {
|
|
21
|
-
derived = _get_prototype_of(derived);
|
|
22
|
-
return _possible_constructor_return(_this, _is_native_reflect_construct() ? Reflect.construct(derived, args || [], _get_prototype_of(_this).constructor) : derived.apply(_this, args));
|
|
23
|
-
}
|
|
24
|
-
function _class_call_check(instance, Constructor) {
|
|
25
|
-
if (!(instance instanceof Constructor)) {
|
|
26
|
-
throw new TypeError("Cannot call a class as a function");
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
function _defineProperties(target, props) {
|
|
30
|
-
for(var i = 0; i < props.length; i++){
|
|
31
|
-
var descriptor = props[i];
|
|
32
|
-
descriptor.enumerable = descriptor.enumerable || false;
|
|
33
|
-
descriptor.configurable = true;
|
|
34
|
-
if ("value" in descriptor) descriptor.writable = true;
|
|
35
|
-
Object.defineProperty(target, descriptor.key, descriptor);
|
|
36
|
-
}
|
|
37
|
-
}
|
|
38
|
-
function _create_class(Constructor, protoProps, staticProps) {
|
|
39
|
-
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
|
|
40
|
-
if (staticProps) _defineProperties(Constructor, staticProps);
|
|
41
|
-
return Constructor;
|
|
42
|
-
}
|
|
43
|
-
function _define_property(obj, key, value) {
|
|
44
|
-
if (key in obj) {
|
|
45
|
-
Object.defineProperty(obj, key, {
|
|
46
|
-
value: value,
|
|
47
|
-
enumerable: true,
|
|
48
|
-
configurable: true,
|
|
49
|
-
writable: true
|
|
50
|
-
});
|
|
51
|
-
} else {
|
|
52
|
-
obj[key] = value;
|
|
53
|
-
}
|
|
54
|
-
return obj;
|
|
55
|
-
}
|
|
56
|
-
function _get_prototype_of(o) {
|
|
57
|
-
_get_prototype_of = Object.setPrototypeOf ? Object.getPrototypeOf : function getPrototypeOf(o) {
|
|
58
|
-
return o.__proto__ || Object.getPrototypeOf(o);
|
|
59
|
-
};
|
|
60
|
-
return _get_prototype_of(o);
|
|
61
|
-
}
|
|
62
|
-
function _inherits(subClass, superClass) {
|
|
63
|
-
if (typeof superClass !== "function" && superClass !== null) {
|
|
64
|
-
throw new TypeError("Super expression must either be null or a function");
|
|
65
|
-
}
|
|
66
|
-
subClass.prototype = Object.create(superClass && superClass.prototype, {
|
|
67
|
-
constructor: {
|
|
68
|
-
value: subClass,
|
|
69
|
-
writable: true,
|
|
70
|
-
configurable: true
|
|
71
|
-
}
|
|
72
|
-
});
|
|
73
|
-
if (superClass) _set_prototype_of(subClass, superClass);
|
|
74
|
-
}
|
|
11
|
+
const _article = /*#__PURE__*/ _interop_require_default(require("../article"));
|
|
12
|
+
const _uris = require("../uris");
|
|
13
|
+
const _paths = require("../paths");
|
|
75
14
|
function _interop_require_default(obj) {
|
|
76
15
|
return obj && obj.__esModule ? obj : {
|
|
77
16
|
default: obj
|
|
78
17
|
};
|
|
79
18
|
}
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
return
|
|
19
|
+
class HeadingsArticle extends _article.default {
|
|
20
|
+
childElements() {
|
|
21
|
+
return /*#__PURE__*/ React.createElement("div", null, /*#__PURE__*/ React.createElement("h1", null, "Headings"));
|
|
83
22
|
}
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
return o;
|
|
23
|
+
static uri = _uris.headingsURI;
|
|
24
|
+
static path = _paths.headingsPath;
|
|
25
|
+
static title = "Headings";
|
|
26
|
+
static defaultProperties = {
|
|
27
|
+
className: "headings"
|
|
90
28
|
};
|
|
91
|
-
return _set_prototype_of(o, p);
|
|
92
29
|
}
|
|
93
|
-
function _type_of(obj) {
|
|
94
|
-
"@swc/helpers - typeof";
|
|
95
|
-
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
96
|
-
}
|
|
97
|
-
function _is_native_reflect_construct() {
|
|
98
|
-
try {
|
|
99
|
-
var result = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
100
|
-
} catch (_) {}
|
|
101
|
-
return (_is_native_reflect_construct = function() {
|
|
102
|
-
return !!result;
|
|
103
|
-
})();
|
|
104
|
-
}
|
|
105
|
-
var HeadingsArticle = /*#__PURE__*/ function(Article) {
|
|
106
|
-
_inherits(HeadingsArticle, Article);
|
|
107
|
-
function HeadingsArticle() {
|
|
108
|
-
_class_call_check(this, HeadingsArticle);
|
|
109
|
-
return _call_super(this, HeadingsArticle, arguments);
|
|
110
|
-
}
|
|
111
|
-
_create_class(HeadingsArticle, [
|
|
112
|
-
{
|
|
113
|
-
key: "childElements",
|
|
114
|
-
value: function childElements() {
|
|
115
|
-
return /*#__PURE__*/ React.createElement("div", null, /*#__PURE__*/ React.createElement("h1", null, "Headings"));
|
|
116
|
-
}
|
|
117
|
-
}
|
|
118
|
-
]);
|
|
119
|
-
return HeadingsArticle;
|
|
120
|
-
}(_article.default);
|
|
121
|
-
_define_property(HeadingsArticle, "uri", _uris.headingsURI);
|
|
122
|
-
_define_property(HeadingsArticle, "path", _paths.headingsPath);
|
|
123
|
-
_define_property(HeadingsArticle, "title", "Headings");
|
|
124
|
-
_define_property(HeadingsArticle, "defaultProperties", {
|
|
125
|
-
className: "headings"
|
|
126
|
-
});
|
|
127
30
|
|
|
128
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9leGFtcGxlL2FydGljbGUvaGVhZGluZ3MuanMiXSwic291cmNlc0NvbnRlbnQiOlsiXCJ1c2Ugc3RyaWN0XCI7XG5cbmltcG9ydCBBcnRpY2xlIGZyb20gXCIuLi9hcnRpY2xlXCI7XG5cbmltcG9ydCB7IGhlYWRpbmdzVVJJIH0gZnJvbSBcIi4uL3VyaXNcIjtcbmltcG9ydCB7IGhlYWRpbmdzUGF0aCB9IGZyb20gXCIuLi9wYXRoc1wiO1xuXG5leHBvcnQgZGVmYXVsdCBjbGFzcyBIZWFkaW5nc0FydGljbGUgZXh0ZW5kcyBBcnRpY2xlIHtcbiAgY2hpbGRFbGVtZW50cygpIHtcbiAgICByZXR1cm4gKFxuXG4gICAgICA8ZGl2PlxuICAgICAgICA8aDE+
|
|
31
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9leGFtcGxlL2FydGljbGUvaGVhZGluZ3MuanMiXSwic291cmNlc0NvbnRlbnQiOlsiXCJ1c2Ugc3RyaWN0XCI7XG5cbmltcG9ydCBBcnRpY2xlIGZyb20gXCIuLi9hcnRpY2xlXCI7XG5cbmltcG9ydCB7IGhlYWRpbmdzVVJJIH0gZnJvbSBcIi4uL3VyaXNcIjtcbmltcG9ydCB7IGhlYWRpbmdzUGF0aCB9IGZyb20gXCIuLi9wYXRoc1wiO1xuXG5leHBvcnQgZGVmYXVsdCBjbGFzcyBIZWFkaW5nc0FydGljbGUgZXh0ZW5kcyBBcnRpY2xlIHtcbiAgY2hpbGRFbGVtZW50cygpIHtcbiAgICByZXR1cm4gKFxuXG4gICAgICA8ZGl2PlxuICAgICAgICA8aDE+XG4gICAgICAgICAgSGVhZGluZ3NcbiAgICAgICAgPC9oMT5cbiAgICAgIDwvZGl2PlxuXG4gICAgKTtcbiAgfVxuXG4gIHN0YXRpYyB1cmkgPSBoZWFkaW5nc1VSSTtcblxuICBzdGF0aWMgcGF0aCA9IGhlYWRpbmdzUGF0aDtcblxuICBzdGF0aWMgdGl0bGUgPSBcIkhlYWRpbmdzXCI7XG5cbiAgc3RhdGljIGRlZmF1bHRQcm9wZXJ0aWVzID0ge1xuICAgIGNsYXNzTmFtZTogXCJoZWFkaW5nc1wiXG4gIH07XG59XG4iXSwibmFtZXMiOlsiSGVhZGluZ3NBcnRpY2xlIiwiQXJ0aWNsZSIsImNoaWxkRWxlbWVudHMiLCJkaXYiLCJoMSIsInVyaSIsImhlYWRpbmdzVVJJIiwicGF0aCIsImhlYWRpbmdzUGF0aCIsInRpdGxlIiwiZGVmYXVsdFByb3BlcnRpZXMiLCJjbGFzc05hbWUiXSwibWFwcGluZ3MiOiJBQUFBOzs7OytCQU9BOzs7ZUFBcUJBOzs7Z0VBTEQ7c0JBRVE7dUJBQ0M7Ozs7OztBQUVkLE1BQU1BLHdCQUF3QkMsZ0JBQU87SUFDbERDLGdCQUFnQjtRQUNkLHFCQUVFLG9CQUFDQywyQkFDQyxvQkFBQ0MsWUFBRztJQU1WO0lBRUEsT0FBT0MsTUFBTUMsaUJBQVcsQ0FBQztJQUV6QixPQUFPQyxPQUFPQyxtQkFBWSxDQUFDO0lBRTNCLE9BQU9DLFFBQVEsV0FBVztJQUUxQixPQUFPQyxvQkFBb0I7UUFDekJDLFdBQVc7SUFDYixFQUFFO0FBQ0oifQ==
|
|
@@ -8,134 +8,31 @@ Object.defineProperty(exports, "default", {
|
|
|
8
8
|
return HomeArticle;
|
|
9
9
|
}
|
|
10
10
|
});
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
function _assert_this_initialized(self) {
|
|
16
|
-
if (self === void 0) {
|
|
17
|
-
throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
18
|
-
}
|
|
19
|
-
return self;
|
|
20
|
-
}
|
|
21
|
-
function _call_super(_this, derived, args) {
|
|
22
|
-
derived = _get_prototype_of(derived);
|
|
23
|
-
return _possible_constructor_return(_this, _is_native_reflect_construct() ? Reflect.construct(derived, args || [], _get_prototype_of(_this).constructor) : derived.apply(_this, args));
|
|
24
|
-
}
|
|
25
|
-
function _class_call_check(instance, Constructor) {
|
|
26
|
-
if (!(instance instanceof Constructor)) {
|
|
27
|
-
throw new TypeError("Cannot call a class as a function");
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
function _defineProperties(target, props) {
|
|
31
|
-
for(var i = 0; i < props.length; i++){
|
|
32
|
-
var descriptor = props[i];
|
|
33
|
-
descriptor.enumerable = descriptor.enumerable || false;
|
|
34
|
-
descriptor.configurable = true;
|
|
35
|
-
if ("value" in descriptor) descriptor.writable = true;
|
|
36
|
-
Object.defineProperty(target, descriptor.key, descriptor);
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
function _create_class(Constructor, protoProps, staticProps) {
|
|
40
|
-
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
|
|
41
|
-
if (staticProps) _defineProperties(Constructor, staticProps);
|
|
42
|
-
return Constructor;
|
|
43
|
-
}
|
|
44
|
-
function _define_property(obj, key, value) {
|
|
45
|
-
if (key in obj) {
|
|
46
|
-
Object.defineProperty(obj, key, {
|
|
47
|
-
value: value,
|
|
48
|
-
enumerable: true,
|
|
49
|
-
configurable: true,
|
|
50
|
-
writable: true
|
|
51
|
-
});
|
|
52
|
-
} else {
|
|
53
|
-
obj[key] = value;
|
|
54
|
-
}
|
|
55
|
-
return obj;
|
|
56
|
-
}
|
|
57
|
-
function _get_prototype_of(o) {
|
|
58
|
-
_get_prototype_of = Object.setPrototypeOf ? Object.getPrototypeOf : function getPrototypeOf(o) {
|
|
59
|
-
return o.__proto__ || Object.getPrototypeOf(o);
|
|
60
|
-
};
|
|
61
|
-
return _get_prototype_of(o);
|
|
62
|
-
}
|
|
63
|
-
function _inherits(subClass, superClass) {
|
|
64
|
-
if (typeof superClass !== "function" && superClass !== null) {
|
|
65
|
-
throw new TypeError("Super expression must either be null or a function");
|
|
66
|
-
}
|
|
67
|
-
subClass.prototype = Object.create(superClass && superClass.prototype, {
|
|
68
|
-
constructor: {
|
|
69
|
-
value: subClass,
|
|
70
|
-
writable: true,
|
|
71
|
-
configurable: true
|
|
72
|
-
}
|
|
73
|
-
});
|
|
74
|
-
if (superClass) _set_prototype_of(subClass, superClass);
|
|
75
|
-
}
|
|
11
|
+
const _article = /*#__PURE__*/ _interop_require_default(require("../article"));
|
|
12
|
+
const _link = /*#__PURE__*/ _interop_require_default(require("../button/link"));
|
|
13
|
+
const _paths = require("../paths");
|
|
14
|
+
const _uris = require("../uris");
|
|
76
15
|
function _interop_require_default(obj) {
|
|
77
16
|
return obj && obj.__esModule ? obj : {
|
|
78
17
|
default: obj
|
|
79
18
|
};
|
|
80
19
|
}
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
return
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
20
|
+
class HomeArticle extends _article.default {
|
|
21
|
+
childElements() {
|
|
22
|
+
return /*#__PURE__*/ React.createElement("div", null, /*#__PURE__*/ React.createElement("h1", null, "Home"), /*#__PURE__*/ React.createElement("ul", null, /*#__PURE__*/ React.createElement("li", null, /*#__PURE__*/ React.createElement(_link.default, {
|
|
23
|
+
onClick: (event, element)=>controller.showArticle(_uris.linksURI)
|
|
24
|
+
}, "Links")), /*#__PURE__*/ React.createElement("li", null, /*#__PURE__*/ React.createElement(_link.default, {
|
|
25
|
+
onClick: (event, element)=>controller.showArticle(_uris.buttonsURI)
|
|
26
|
+
}, "Buttons")), /*#__PURE__*/ React.createElement("li", null, /*#__PURE__*/ React.createElement(_link.default, {
|
|
27
|
+
onClick: (event, element)=>controller.showArticle(_uris.headingsURI)
|
|
28
|
+
}, "Headings"))));
|
|
29
|
+
}
|
|
30
|
+
static uri = _uris.homeURI;
|
|
31
|
+
static path = _paths.homePath;
|
|
32
|
+
static title = "Home";
|
|
33
|
+
static defaultProperties = {
|
|
34
|
+
className: "home"
|
|
91
35
|
};
|
|
92
|
-
return _set_prototype_of(o, p);
|
|
93
|
-
}
|
|
94
|
-
function _type_of(obj) {
|
|
95
|
-
"@swc/helpers - typeof";
|
|
96
|
-
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
97
|
-
}
|
|
98
|
-
function _is_native_reflect_construct() {
|
|
99
|
-
try {
|
|
100
|
-
var result = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
101
|
-
} catch (_) {}
|
|
102
|
-
return (_is_native_reflect_construct = function() {
|
|
103
|
-
return !!result;
|
|
104
|
-
})();
|
|
105
36
|
}
|
|
106
|
-
var HomeArticle = /*#__PURE__*/ function(Article) {
|
|
107
|
-
_inherits(HomeArticle, Article);
|
|
108
|
-
function HomeArticle() {
|
|
109
|
-
_class_call_check(this, HomeArticle);
|
|
110
|
-
return _call_super(this, HomeArticle, arguments);
|
|
111
|
-
}
|
|
112
|
-
_create_class(HomeArticle, [
|
|
113
|
-
{
|
|
114
|
-
key: "childElements",
|
|
115
|
-
value: function childElements() {
|
|
116
|
-
return /*#__PURE__*/ React.createElement("div", null, /*#__PURE__*/ React.createElement("h1", null, "Home"), /*#__PURE__*/ React.createElement("ul", null, /*#__PURE__*/ React.createElement("li", null, /*#__PURE__*/ React.createElement(_link.default, {
|
|
117
|
-
onClick: function(event, element) {
|
|
118
|
-
return controller.showArticle(_uris.linksURI);
|
|
119
|
-
}
|
|
120
|
-
}, "Links")), /*#__PURE__*/ React.createElement("li", null, /*#__PURE__*/ React.createElement(_link.default, {
|
|
121
|
-
onClick: function(event, element) {
|
|
122
|
-
return controller.showArticle(_uris.buttonsURI);
|
|
123
|
-
}
|
|
124
|
-
}, "Buttons")), /*#__PURE__*/ React.createElement("li", null, /*#__PURE__*/ React.createElement(_link.default, {
|
|
125
|
-
onClick: function(event, element) {
|
|
126
|
-
return controller.showArticle(_uris.headingsURI);
|
|
127
|
-
}
|
|
128
|
-
}, "Headings"))));
|
|
129
|
-
}
|
|
130
|
-
}
|
|
131
|
-
]);
|
|
132
|
-
return HomeArticle;
|
|
133
|
-
}(_article.default);
|
|
134
|
-
_define_property(HomeArticle, "uri", _uris.homeURI);
|
|
135
|
-
_define_property(HomeArticle, "path", _paths.homePath);
|
|
136
|
-
_define_property(HomeArticle, "title", "Home");
|
|
137
|
-
_define_property(HomeArticle, "defaultProperties", {
|
|
138
|
-
className: "home"
|
|
139
|
-
});
|
|
140
37
|
|
|
141
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9leGFtcGxlL2FydGljbGUvaG9tZS5qcyJdLCJzb3VyY2VzQ29udGVudCI6WyJcInVzZSBzdHJpY3RcIjtcblxuaW1wb3J0IEFydGljbGUgZnJvbSBcIi4uL2FydGljbGVcIjtcblxuaW1wb3J0IExpbmtCdXR0b24gZnJvbSBcIi4uL2J1dHRvbi9saW5rXCI7XG5cbmltcG9ydCB7IGhvbWVQYXRoIH0gZnJvbSBcIi4uL3BhdGhzXCI7XG5pbXBvcnQgeyBob21lVVJJLCBsaW5rc1VSSSwgYnV0dG9uc1VSSSwgaGVhZGluZ3NVUkkgfSBmcm9tIFwiLi4vdXJpc1wiO1xuXG5leHBvcnQgZGVmYXVsdCBjbGFzcyBIb21lQXJ0aWNsZSBleHRlbmRzIEFydGljbGUge1xuICBjaGlsZEVsZW1lbnRzKCkge1xuICAgIHJldHVybiAoXG5cbiAgICAgIDxkaXY+XG4gICAgICAgIDxoMT5cbiAgICAgICAgICBIb21lXG4gICAgICAgIDwvaDE+XG4gICAgICAgIDx1bD5cbiAgICAgICAgICA8bGk+XG4gICAgICAgICAgICA8TGlua0J1dHRvbiBvbkNsaWNrPXsoZXZlbnQsIGVsZW1lbnQpID0+IGNvbnRyb2xsZXIuc2hvd0FydGljbGUobGlua3NVUkkpfT5cbiAgICAgICAgICAgICAgTGlua3NcbiAgICAgICAgICAgIDwvTGlua0J1dHRvbj5cbiAgICAgICAgICA8L2xpPlxuICAgICAgICAgIDxsaT5cbiAgICAgICAgICAgIDxMaW5rQnV0dG9uIG9uQ2xpY2s9eyhldmVudCwgZWxlbWVudCkgPT4gY29udHJvbGxlci5zaG93QXJ0aWNsZShidXR0b25zVVJJKX0+XG4gICAgICAgICAgICAgIEJ1dHRvbnNcbiAgICAgICAgICAgIDwvTGlua0J1dHRvbj5cbiAgICAgICAgICA8L2xpPlxuICAgICAgICAgIDxsaT5cbiAgICAgICAgICAgIDxMaW5rQnV0dG9uIG9uQ2xpY2s9eyhldmVudCwgZWxlbWVudCkgPT4gY29udHJvbGxlci5zaG93QXJ0aWNsZShoZWFkaW5nc1VSSSl9PlxuICAgICAgICAgICAgICBIZWFkaW5nc1xuICAgICAgICAgICAgPC9MaW5rQnV0dG9uPlxuICAgICAgICAgIDwvbGk+XG4gICAgICAgIDwvdWw+
|
|
38
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9leGFtcGxlL2FydGljbGUvaG9tZS5qcyJdLCJzb3VyY2VzQ29udGVudCI6WyJcInVzZSBzdHJpY3RcIjtcblxuaW1wb3J0IEFydGljbGUgZnJvbSBcIi4uL2FydGljbGVcIjtcblxuaW1wb3J0IExpbmtCdXR0b24gZnJvbSBcIi4uL2J1dHRvbi9saW5rXCI7XG5cbmltcG9ydCB7IGhvbWVQYXRoIH0gZnJvbSBcIi4uL3BhdGhzXCI7XG5pbXBvcnQgeyBob21lVVJJLCBsaW5rc1VSSSwgYnV0dG9uc1VSSSwgaGVhZGluZ3NVUkkgfSBmcm9tIFwiLi4vdXJpc1wiO1xuXG5leHBvcnQgZGVmYXVsdCBjbGFzcyBIb21lQXJ0aWNsZSBleHRlbmRzIEFydGljbGUge1xuICBjaGlsZEVsZW1lbnRzKCkge1xuICAgIHJldHVybiAoXG5cbiAgICAgIDxkaXY+XG4gICAgICAgIDxoMT5cbiAgICAgICAgICBIb21lXG4gICAgICAgIDwvaDE+XG4gICAgICAgIDx1bD5cbiAgICAgICAgICA8bGk+XG4gICAgICAgICAgICA8TGlua0J1dHRvbiBvbkNsaWNrPXsoZXZlbnQsIGVsZW1lbnQpID0+IGNvbnRyb2xsZXIuc2hvd0FydGljbGUobGlua3NVUkkpfT5cbiAgICAgICAgICAgICAgTGlua3NcbiAgICAgICAgICAgIDwvTGlua0J1dHRvbj5cbiAgICAgICAgICA8L2xpPlxuICAgICAgICAgIDxsaT5cbiAgICAgICAgICAgIDxMaW5rQnV0dG9uIG9uQ2xpY2s9eyhldmVudCwgZWxlbWVudCkgPT4gY29udHJvbGxlci5zaG93QXJ0aWNsZShidXR0b25zVVJJKX0+XG4gICAgICAgICAgICAgIEJ1dHRvbnNcbiAgICAgICAgICAgIDwvTGlua0J1dHRvbj5cbiAgICAgICAgICA8L2xpPlxuICAgICAgICAgIDxsaT5cbiAgICAgICAgICAgIDxMaW5rQnV0dG9uIG9uQ2xpY2s9eyhldmVudCwgZWxlbWVudCkgPT4gY29udHJvbGxlci5zaG93QXJ0aWNsZShoZWFkaW5nc1VSSSl9PlxuICAgICAgICAgICAgICBIZWFkaW5nc1xuICAgICAgICAgICAgPC9MaW5rQnV0dG9uPlxuICAgICAgICAgIDwvbGk+XG4gICAgICAgIDwvdWw+XG4gICAgICA8L2Rpdj5cblxuICAgICk7XG4gIH1cblxuICBzdGF0aWMgdXJpID0gaG9tZVVSSTtcblxuICBzdGF0aWMgcGF0aCA9IGhvbWVQYXRoO1xuXG4gIHN0YXRpYyB0aXRsZSA9IFwiSG9tZVwiO1xuXG4gIHN0YXRpYyBkZWZhdWx0UHJvcGVydGllcyA9IHtcbiAgICBjbGFzc05hbWU6IFwiaG9tZVwiXG4gIH07XG59XG4iXSwibmFtZXMiOlsiSG9tZUFydGljbGUiLCJBcnRpY2xlIiwiY2hpbGRFbGVtZW50cyIsImRpdiIsImgxIiwidWwiLCJsaSIsIkxpbmtCdXR0b24iLCJvbkNsaWNrIiwiZXZlbnQiLCJlbGVtZW50IiwiY29udHJvbGxlciIsInNob3dBcnRpY2xlIiwibGlua3NVUkkiLCJidXR0b25zVVJJIiwiaGVhZGluZ3NVUkkiLCJ1cmkiLCJob21lVVJJIiwicGF0aCIsImhvbWVQYXRoIiwidGl0bGUiLCJkZWZhdWx0UHJvcGVydGllcyIsImNsYXNzTmFtZSJdLCJtYXBwaW5ncyI6IkFBQUE7Ozs7K0JBU0E7OztlQUFxQkE7OztnRUFQRDs2REFFRzt1QkFFRTtzQkFDa0M7Ozs7OztBQUU1QyxNQUFNQSxvQkFBb0JDLGdCQUFPO0lBQzlDQyxnQkFBZ0I7UUFDZCxxQkFFRSxvQkFBQ0MsMkJBQ0Msb0JBQUNDLFlBQUcsdUJBR0osb0JBQUNDLDBCQUNDLG9CQUFDQywwQkFDQyxvQkFBQ0MsYUFBVTtZQUFDQyxTQUFTLENBQUNDLE9BQU9DLFVBQVlDLFdBQVdDLFdBQVcsQ0FBQ0MsY0FBUTtXQUFHLHlCQUk3RSxvQkFBQ1AsMEJBQ0Msb0JBQUNDLGFBQVU7WUFBQ0MsU0FBUyxDQUFDQyxPQUFPQyxVQUFZQyxXQUFXQyxXQUFXLENBQUNFLGdCQUFVO1dBQUcsMkJBSS9FLG9CQUFDUiwwQkFDQyxvQkFBQ0MsYUFBVTtZQUFDQyxTQUFTLENBQUNDLE9BQU9DLFVBQVlDLFdBQVdDLFdBQVcsQ0FBQ0csaUJBQVc7V0FBRztJQVF4RjtJQUVBLE9BQU9DLE1BQU1DLGFBQU8sQ0FBQztJQUVyQixPQUFPQyxPQUFPQyxlQUFRLENBQUM7SUFFdkIsT0FBT0MsUUFBUSxPQUFPO0lBRXRCLE9BQU9DLG9CQUFvQjtRQUN6QkMsV0FBVztJQUNiLEVBQUU7QUFDSiJ9
|