easy-navigation 2.1.282 → 2.1.283
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/.aiignore +12 -0
- package/.swcrc +4 -3
- package/example.js +782 -3560
- 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 +1 -1
|
@@ -8,121 +8,24 @@ Object.defineProperty(exports, "default", {
|
|
|
8
8
|
return InputsArticle;
|
|
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 InputsArticle extends _article.default {
|
|
20
|
+
childElements() {
|
|
21
|
+
return /*#__PURE__*/ React.createElement("div", null, /*#__PURE__*/ React.createElement("h1", null, "Inputs"));
|
|
83
22
|
}
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
return o;
|
|
23
|
+
static uri = _uris.inputsURI;
|
|
24
|
+
static path = _paths.inputsPath;
|
|
25
|
+
static title = "Inputs";
|
|
26
|
+
static defaultProperties = {
|
|
27
|
+
className: "inputs"
|
|
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 InputsArticle = /*#__PURE__*/ function(Article) {
|
|
106
|
-
_inherits(InputsArticle, Article);
|
|
107
|
-
function InputsArticle() {
|
|
108
|
-
_class_call_check(this, InputsArticle);
|
|
109
|
-
return _call_super(this, InputsArticle, arguments);
|
|
110
|
-
}
|
|
111
|
-
_create_class(InputsArticle, [
|
|
112
|
-
{
|
|
113
|
-
key: "childElements",
|
|
114
|
-
value: function childElements() {
|
|
115
|
-
return /*#__PURE__*/ React.createElement("div", null, /*#__PURE__*/ React.createElement("h1", null, "Inputs"));
|
|
116
|
-
}
|
|
117
|
-
}
|
|
118
|
-
]);
|
|
119
|
-
return InputsArticle;
|
|
120
|
-
}(_article.default);
|
|
121
|
-
_define_property(InputsArticle, "uri", _uris.inputsURI);
|
|
122
|
-
_define_property(InputsArticle, "path", _paths.inputsPath);
|
|
123
|
-
_define_property(InputsArticle, "title", "Inputs");
|
|
124
|
-
_define_property(InputsArticle, "defaultProperties", {
|
|
125
|
-
className: "inputs"
|
|
126
|
-
});
|
|
127
30
|
|
|
128
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9leGFtcGxlL2FydGljbGUvaW5wdXRzLmpzIl0sInNvdXJjZXNDb250ZW50IjpbIlwidXNlIHN0cmljdFwiO1xuXG5pbXBvcnQgQXJ0aWNsZSBmcm9tIFwiLi4vYXJ0aWNsZVwiO1xuXG5pbXBvcnQgeyBpbnB1dHNVUkkgfSBmcm9tIFwiLi4vdXJpc1wiO1xuaW1wb3J0IHsgaW5wdXRzUGF0aCB9IGZyb20gXCIuLi9wYXRoc1wiO1xuXG5leHBvcnQgZGVmYXVsdCBjbGFzcyBJbnB1dHNBcnRpY2xlIGV4dGVuZHMgQXJ0aWNsZSB7XG4gIGNoaWxkRWxlbWVudHMoKSB7XG4gICAgcmV0dXJuIChcblxuICAgICAgPGRpdj5cbiAgICAgICAgPGgxPlxuICAgICAgICAgIElucHV0c1xuICAgICAgICA8L2gxPlxuICAgICAgPC9kaXY+
|
|
31
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9leGFtcGxlL2FydGljbGUvaW5wdXRzLmpzIl0sInNvdXJjZXNDb250ZW50IjpbIlwidXNlIHN0cmljdFwiO1xuXG5pbXBvcnQgQXJ0aWNsZSBmcm9tIFwiLi4vYXJ0aWNsZVwiO1xuXG5pbXBvcnQgeyBpbnB1dHNVUkkgfSBmcm9tIFwiLi4vdXJpc1wiO1xuaW1wb3J0IHsgaW5wdXRzUGF0aCB9IGZyb20gXCIuLi9wYXRoc1wiO1xuXG5leHBvcnQgZGVmYXVsdCBjbGFzcyBJbnB1dHNBcnRpY2xlIGV4dGVuZHMgQXJ0aWNsZSB7XG4gIGNoaWxkRWxlbWVudHMoKSB7XG4gICAgcmV0dXJuIChcblxuICAgICAgPGRpdj5cbiAgICAgICAgPGgxPlxuICAgICAgICAgIElucHV0c1xuICAgICAgICA8L2gxPlxuICAgICAgPC9kaXY+XG5cbiAgICApO1xuICB9XG5cbiAgc3RhdGljIHVyaSA9IGlucHV0c1VSSTtcblxuICBzdGF0aWMgcGF0aCA9IGlucHV0c1BhdGg7XG5cbiAgc3RhdGljIHRpdGxlID0gXCJJbnB1dHNcIjtcblxuICBzdGF0aWMgZGVmYXVsdFByb3BlcnRpZXMgPSB7XG4gICAgY2xhc3NOYW1lOiBcImlucHV0c1wiXG4gIH07XG59XG4iXSwibmFtZXMiOlsiSW5wdXRzQXJ0aWNsZSIsIkFydGljbGUiLCJjaGlsZEVsZW1lbnRzIiwiZGl2IiwiaDEiLCJ1cmkiLCJpbnB1dHNVUkkiLCJwYXRoIiwiaW5wdXRzUGF0aCIsInRpdGxlIiwiZGVmYXVsdFByb3BlcnRpZXMiLCJjbGFzc05hbWUiXSwibWFwcGluZ3MiOiJBQUFBOzs7OytCQU9BOzs7ZUFBcUJBOzs7Z0VBTEQ7c0JBRU07dUJBQ0M7Ozs7OztBQUVaLE1BQU1BLHNCQUFzQkMsZ0JBQU87SUFDaERDLGdCQUFnQjtRQUNkLHFCQUVFLG9CQUFDQywyQkFDQyxvQkFBQ0MsWUFBRztJQU1WO0lBRUEsT0FBT0MsTUFBTUMsZUFBUyxDQUFDO0lBRXZCLE9BQU9DLE9BQU9DLGlCQUFVLENBQUM7SUFFekIsT0FBT0MsUUFBUSxTQUFTO0lBRXhCLE9BQU9DLG9CQUFvQjtRQUN6QkMsV0FBVztJQUNiLEVBQUU7QUFDSiJ9
|
|
@@ -8,121 +8,24 @@ Object.defineProperty(exports, "default", {
|
|
|
8
8
|
return LinksArticle;
|
|
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 LinksArticle extends _article.default {
|
|
20
|
+
childElements() {
|
|
21
|
+
return /*#__PURE__*/ React.createElement("div", null, /*#__PURE__*/ React.createElement("h1", null, "Links"));
|
|
83
22
|
}
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
return o;
|
|
23
|
+
static uri = _uris.linksURI;
|
|
24
|
+
static path = _paths.linksPath;
|
|
25
|
+
static title = "Links";
|
|
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 LinksArticle = /*#__PURE__*/ function(Article) {
|
|
106
|
-
_inherits(LinksArticle, Article);
|
|
107
|
-
function LinksArticle() {
|
|
108
|
-
_class_call_check(this, LinksArticle);
|
|
109
|
-
return _call_super(this, LinksArticle, arguments);
|
|
110
|
-
}
|
|
111
|
-
_create_class(LinksArticle, [
|
|
112
|
-
{
|
|
113
|
-
key: "childElements",
|
|
114
|
-
value: function childElements() {
|
|
115
|
-
return /*#__PURE__*/ React.createElement("div", null, /*#__PURE__*/ React.createElement("h1", null, "Links"));
|
|
116
|
-
}
|
|
117
|
-
}
|
|
118
|
-
]);
|
|
119
|
-
return LinksArticle;
|
|
120
|
-
}(_article.default);
|
|
121
|
-
_define_property(LinksArticle, "uri", _uris.linksURI);
|
|
122
|
-
_define_property(LinksArticle, "path", _paths.linksPath);
|
|
123
|
-
_define_property(LinksArticle, "title", "Links");
|
|
124
|
-
_define_property(LinksArticle, "defaultProperties", {
|
|
125
|
-
className: "code"
|
|
126
|
-
});
|
|
127
30
|
|
|
128
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9leGFtcGxlL2FydGljbGUvbGlua3MuanMiXSwic291cmNlc0NvbnRlbnQiOlsiXCJ1c2Ugc3RyaWN0XCI7XG5cbmltcG9ydCBBcnRpY2xlIGZyb20gXCIuLi9hcnRpY2xlXCI7XG5cbmltcG9ydCB7IGxpbmtzVVJJIH0gZnJvbSBcIi4uL3VyaXNcIjtcbmltcG9ydCB7IGxpbmtzUGF0aCB9IGZyb20gXCIuLi9wYXRoc1wiO1xuXG5leHBvcnQgZGVmYXVsdCBjbGFzcyBMaW5rc0FydGljbGUgZXh0ZW5kcyBBcnRpY2xlIHtcbiAgY2hpbGRFbGVtZW50cygpIHtcbiAgICByZXR1cm4gKFxuXG4gICAgICA8ZGl2PlxuICAgICAgICA8aDE+
|
|
31
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9leGFtcGxlL2FydGljbGUvbGlua3MuanMiXSwic291cmNlc0NvbnRlbnQiOlsiXCJ1c2Ugc3RyaWN0XCI7XG5cbmltcG9ydCBBcnRpY2xlIGZyb20gXCIuLi9hcnRpY2xlXCI7XG5cbmltcG9ydCB7IGxpbmtzVVJJIH0gZnJvbSBcIi4uL3VyaXNcIjtcbmltcG9ydCB7IGxpbmtzUGF0aCB9IGZyb20gXCIuLi9wYXRoc1wiO1xuXG5leHBvcnQgZGVmYXVsdCBjbGFzcyBMaW5rc0FydGljbGUgZXh0ZW5kcyBBcnRpY2xlIHtcbiAgY2hpbGRFbGVtZW50cygpIHtcbiAgICByZXR1cm4gKFxuXG4gICAgICA8ZGl2PlxuICAgICAgICA8aDE+XG4gICAgICAgICAgTGlua3NcbiAgICAgICAgPC9oMT5cbiAgICAgIDwvZGl2PlxuXG4gICAgKTtcbiAgfVxuXG4gIHN0YXRpYyB1cmkgPSBsaW5rc1VSSTtcblxuICBzdGF0aWMgcGF0aCA9IGxpbmtzUGF0aDtcblxuICBzdGF0aWMgdGl0bGUgPSBcIkxpbmtzXCI7XG5cbiAgc3RhdGljIGRlZmF1bHRQcm9wZXJ0aWVzID0ge1xuICAgIGNsYXNzTmFtZTogXCJjb2RlXCJcbiAgfTtcbn1cbiJdLCJuYW1lcyI6WyJMaW5rc0FydGljbGUiLCJBcnRpY2xlIiwiY2hpbGRFbGVtZW50cyIsImRpdiIsImgxIiwidXJpIiwibGlua3NVUkkiLCJwYXRoIiwibGlua3NQYXRoIiwidGl0bGUiLCJkZWZhdWx0UHJvcGVydGllcyIsImNsYXNzTmFtZSJdLCJtYXBwaW5ncyI6IkFBQUE7Ozs7K0JBT0E7OztlQUFxQkE7OztnRUFMRDtzQkFFSzt1QkFDQzs7Ozs7O0FBRVgsTUFBTUEscUJBQXFCQyxnQkFBTztJQUMvQ0MsZ0JBQWdCO1FBQ2QscUJBRUUsb0JBQUNDLDJCQUNDLG9CQUFDQyxZQUFHO0lBTVY7SUFFQSxPQUFPQyxNQUFNQyxjQUFRLENBQUM7SUFFdEIsT0FBT0MsT0FBT0MsZ0JBQVMsQ0FBQztJQUV4QixPQUFPQyxRQUFRLFFBQVE7SUFFdkIsT0FBT0Msb0JBQW9CO1FBQ3pCQyxXQUFXO0lBQ2IsRUFBRTtBQUNKIn0=
|
|
@@ -8,121 +8,24 @@ Object.defineProperty(exports, "default", {
|
|
|
8
8
|
return SectionsArticle;
|
|
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 SectionsArticle extends _article.default {
|
|
20
|
+
childElements() {
|
|
21
|
+
return /*#__PURE__*/ React.createElement("div", null, /*#__PURE__*/ React.createElement("h1", null, "Sections"));
|
|
83
22
|
}
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
return o;
|
|
23
|
+
static uri = _uris.sectionsURI;
|
|
24
|
+
static path = _paths.sectionsPath;
|
|
25
|
+
static title = "Sections";
|
|
26
|
+
static defaultProperties = {
|
|
27
|
+
className: "sections"
|
|
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 SectionsArticle = /*#__PURE__*/ function(Article) {
|
|
106
|
-
_inherits(SectionsArticle, Article);
|
|
107
|
-
function SectionsArticle() {
|
|
108
|
-
_class_call_check(this, SectionsArticle);
|
|
109
|
-
return _call_super(this, SectionsArticle, arguments);
|
|
110
|
-
}
|
|
111
|
-
_create_class(SectionsArticle, [
|
|
112
|
-
{
|
|
113
|
-
key: "childElements",
|
|
114
|
-
value: function childElements() {
|
|
115
|
-
return /*#__PURE__*/ React.createElement("div", null, /*#__PURE__*/ React.createElement("h1", null, "Sections"));
|
|
116
|
-
}
|
|
117
|
-
}
|
|
118
|
-
]);
|
|
119
|
-
return SectionsArticle;
|
|
120
|
-
}(_article.default);
|
|
121
|
-
_define_property(SectionsArticle, "uri", _uris.sectionsURI);
|
|
122
|
-
_define_property(SectionsArticle, "path", _paths.sectionsPath);
|
|
123
|
-
_define_property(SectionsArticle, "title", "Sections");
|
|
124
|
-
_define_property(SectionsArticle, "defaultProperties", {
|
|
125
|
-
className: "sections"
|
|
126
|
-
});
|
|
127
30
|
|
|
128
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9leGFtcGxlL2FydGljbGUvc2VjdGlvbnMuanMiXSwic291cmNlc0NvbnRlbnQiOlsiXCJ1c2Ugc3RyaWN0XCI7XG5cbmltcG9ydCBBcnRpY2xlIGZyb20gXCIuLi9hcnRpY2xlXCI7XG5cbmltcG9ydCB7IHNlY3Rpb25zVVJJIH0gZnJvbSBcIi4uL3VyaXNcIjtcbmltcG9ydCB7IHNlY3Rpb25zUGF0aCB9IGZyb20gXCIuLi9wYXRoc1wiO1xuXG5leHBvcnQgZGVmYXVsdCBjbGFzcyBTZWN0aW9uc0FydGljbGUgZXh0ZW5kcyBBcnRpY2xlIHtcbiAgY2hpbGRFbGVtZW50cygpIHtcbiAgICByZXR1cm4gKFxuXG4gICAgICA8ZGl2PlxuICAgICAgICA8aDE+
|
|
31
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9leGFtcGxlL2FydGljbGUvc2VjdGlvbnMuanMiXSwic291cmNlc0NvbnRlbnQiOlsiXCJ1c2Ugc3RyaWN0XCI7XG5cbmltcG9ydCBBcnRpY2xlIGZyb20gXCIuLi9hcnRpY2xlXCI7XG5cbmltcG9ydCB7IHNlY3Rpb25zVVJJIH0gZnJvbSBcIi4uL3VyaXNcIjtcbmltcG9ydCB7IHNlY3Rpb25zUGF0aCB9IGZyb20gXCIuLi9wYXRoc1wiO1xuXG5leHBvcnQgZGVmYXVsdCBjbGFzcyBTZWN0aW9uc0FydGljbGUgZXh0ZW5kcyBBcnRpY2xlIHtcbiAgY2hpbGRFbGVtZW50cygpIHtcbiAgICByZXR1cm4gKFxuXG4gICAgICA8ZGl2PlxuICAgICAgICA8aDE+XG4gICAgICAgICAgU2VjdGlvbnNcbiAgICAgICAgPC9oMT5cbiAgICAgIDwvZGl2PlxuXG4gICAgKTtcbiAgfVxuXG4gIHN0YXRpYyB1cmkgPSBzZWN0aW9uc1VSSTtcblxuICBzdGF0aWMgcGF0aCA9IHNlY3Rpb25zUGF0aDtcblxuICBzdGF0aWMgdGl0bGUgPSBcIlNlY3Rpb25zXCI7XG5cbiAgc3RhdGljIGRlZmF1bHRQcm9wZXJ0aWVzID0ge1xuICAgIGNsYXNzTmFtZTogXCJzZWN0aW9uc1wiXG4gIH07XG59XG4iXSwibmFtZXMiOlsiU2VjdGlvbnNBcnRpY2xlIiwiQXJ0aWNsZSIsImNoaWxkRWxlbWVudHMiLCJkaXYiLCJoMSIsInVyaSIsInNlY3Rpb25zVVJJIiwicGF0aCIsInNlY3Rpb25zUGF0aCIsInRpdGxlIiwiZGVmYXVsdFByb3BlcnRpZXMiLCJjbGFzc05hbWUiXSwibWFwcGluZ3MiOiJBQUFBOzs7OytCQU9BOzs7ZUFBcUJBOzs7Z0VBTEQ7c0JBRVE7dUJBQ0M7Ozs7OztBQUVkLE1BQU1BLHdCQUF3QkMsZ0JBQU87SUFDbERDLGdCQUFnQjtRQUNkLHFCQUVFLG9CQUFDQywyQkFDQyxvQkFBQ0MsWUFBRztJQU1WO0lBRUEsT0FBT0MsTUFBTUMsaUJBQVcsQ0FBQztJQUV6QixPQUFPQyxPQUFPQyxtQkFBWSxDQUFDO0lBRTNCLE9BQU9DLFFBQVEsV0FBVztJQUUxQixPQUFPQyxvQkFBb0I7UUFDekJDLFdBQVc7SUFDYixFQUFFO0FBQ0oifQ==
|
package/lib/example/article.js
CHANGED
|
@@ -8,159 +8,38 @@ Object.defineProperty(exports, "default", {
|
|
|
8
8
|
return _default;
|
|
9
9
|
}
|
|
10
10
|
});
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
function _assert_this_initialized(self) {
|
|
14
|
-
if (self === void 0) {
|
|
15
|
-
throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
16
|
-
}
|
|
17
|
-
return self;
|
|
18
|
-
}
|
|
19
|
-
function _call_super(_this, derived, args) {
|
|
20
|
-
derived = _get_prototype_of(derived);
|
|
21
|
-
return _possible_constructor_return(_this, _is_native_reflect_construct() ? Reflect.construct(derived, args || [], _get_prototype_of(_this).constructor) : derived.apply(_this, args));
|
|
22
|
-
}
|
|
23
|
-
function _class_call_check(instance, Constructor) {
|
|
24
|
-
if (!(instance instanceof Constructor)) {
|
|
25
|
-
throw new TypeError("Cannot call a class as a function");
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
function _construct(Parent, args, Class) {
|
|
29
|
-
if (_is_native_reflect_construct()) {
|
|
30
|
-
_construct = Reflect.construct;
|
|
31
|
-
} else {
|
|
32
|
-
_construct = function construct(Parent, args, Class) {
|
|
33
|
-
var a = [
|
|
34
|
-
null
|
|
35
|
-
];
|
|
36
|
-
a.push.apply(a, args);
|
|
37
|
-
var Constructor = Function.bind.apply(Parent, a);
|
|
38
|
-
var instance = new Constructor();
|
|
39
|
-
if (Class) _set_prototype_of(instance, Class.prototype);
|
|
40
|
-
return instance;
|
|
41
|
-
};
|
|
42
|
-
}
|
|
43
|
-
return _construct.apply(null, arguments);
|
|
44
|
-
}
|
|
45
|
-
function _define_property(obj, key, value) {
|
|
46
|
-
if (key in obj) {
|
|
47
|
-
Object.defineProperty(obj, key, {
|
|
48
|
-
value: value,
|
|
49
|
-
enumerable: true,
|
|
50
|
-
configurable: true,
|
|
51
|
-
writable: true
|
|
52
|
-
});
|
|
53
|
-
} else {
|
|
54
|
-
obj[key] = value;
|
|
55
|
-
}
|
|
56
|
-
return obj;
|
|
57
|
-
}
|
|
58
|
-
function _get_prototype_of(o) {
|
|
59
|
-
_get_prototype_of = Object.setPrototypeOf ? Object.getPrototypeOf : function getPrototypeOf(o) {
|
|
60
|
-
return o.__proto__ || Object.getPrototypeOf(o);
|
|
61
|
-
};
|
|
62
|
-
return _get_prototype_of(o);
|
|
63
|
-
}
|
|
64
|
-
function _inherits(subClass, superClass) {
|
|
65
|
-
if (typeof superClass !== "function" && superClass !== null) {
|
|
66
|
-
throw new TypeError("Super expression must either be null or a function");
|
|
67
|
-
}
|
|
68
|
-
subClass.prototype = Object.create(superClass && superClass.prototype, {
|
|
69
|
-
constructor: {
|
|
70
|
-
value: subClass,
|
|
71
|
-
writable: true,
|
|
72
|
-
configurable: true
|
|
73
|
-
}
|
|
74
|
-
});
|
|
75
|
-
if (superClass) _set_prototype_of(subClass, superClass);
|
|
76
|
-
}
|
|
11
|
+
const _easywithstyle = /*#__PURE__*/ _interop_require_default(require("easy-with-style"));
|
|
12
|
+
const _easy = require("easy");
|
|
77
13
|
function _interop_require_default(obj) {
|
|
78
14
|
return obj && obj.__esModule ? obj : {
|
|
79
15
|
default: obj
|
|
80
16
|
};
|
|
81
17
|
}
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
}
|
|
85
|
-
function _possible_constructor_return(self, call) {
|
|
86
|
-
if (call && (_type_of(call) === "object" || typeof call === "function")) {
|
|
87
|
-
return call;
|
|
88
|
-
}
|
|
89
|
-
return _assert_this_initialized(self);
|
|
18
|
+
class Article extends _easy.Element {
|
|
19
|
+
static tagName = "article";
|
|
90
20
|
}
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
_wrap_native_super = function wrapNativeSuper(Class) {
|
|
115
|
-
if (Class === null || !_is_native_function(Class)) return Class;
|
|
116
|
-
if (typeof Class !== "function") {
|
|
117
|
-
throw new TypeError("Super expression must either be null or a function");
|
|
118
|
-
}
|
|
119
|
-
if (typeof _cache !== "undefined") {
|
|
120
|
-
if (_cache.has(Class)) return _cache.get(Class);
|
|
121
|
-
_cache.set(Class, Wrapper);
|
|
122
|
-
}
|
|
123
|
-
function Wrapper() {
|
|
124
|
-
return _construct(Class, arguments, _get_prototype_of(this).constructor);
|
|
125
|
-
}
|
|
126
|
-
Wrapper.prototype = Object.create(Class.prototype, {
|
|
127
|
-
constructor: {
|
|
128
|
-
value: Wrapper,
|
|
129
|
-
enumerable: false,
|
|
130
|
-
writable: true,
|
|
131
|
-
configurable: true
|
|
132
|
-
}
|
|
133
|
-
});
|
|
134
|
-
return _set_prototype_of(Wrapper, Class);
|
|
135
|
-
};
|
|
136
|
-
return _wrap_native_super(Class);
|
|
137
|
-
}
|
|
138
|
-
function _is_native_reflect_construct() {
|
|
139
|
-
try {
|
|
140
|
-
var result = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
141
|
-
} catch (_) {}
|
|
142
|
-
return (_is_native_reflect_construct = function() {
|
|
143
|
-
return !!result;
|
|
144
|
-
})();
|
|
145
|
-
}
|
|
146
|
-
function _templateObject() {
|
|
147
|
-
var data = _tagged_template_literal([
|
|
148
|
-
"\n\n padding: 2rem;\n \n :not(:first-of-type) {\n\n border-top: 1px solid black;\n \n }\n\n @media (min-width: 800px) {\n \n padding: 0;\n \n :not(:first-of-type) {\n \n border-top: none;\n \n }\n \n }\n \n"
|
|
149
|
-
]);
|
|
150
|
-
_templateObject = function _templateObject() {
|
|
151
|
-
return data;
|
|
152
|
-
};
|
|
153
|
-
return data;
|
|
154
|
-
}
|
|
155
|
-
var Article = /*#__PURE__*/ function(Element) {
|
|
156
|
-
_inherits(Article, Element);
|
|
157
|
-
function Article() {
|
|
158
|
-
_class_call_check(this, Article);
|
|
159
|
-
return _call_super(this, Article, arguments);
|
|
160
|
-
}
|
|
161
|
-
return Article;
|
|
162
|
-
}(_wrap_native_super(_easy.Element));
|
|
163
|
-
_define_property(Article, "tagName", "article");
|
|
164
|
-
var _default = (0, _easywithstyle.default)(Article)(_templateObject());
|
|
21
|
+
const _default = (0, _easywithstyle.default)(Article)`
|
|
22
|
+
|
|
23
|
+
padding: 2rem;
|
|
24
|
+
|
|
25
|
+
:not(:first-of-type) {
|
|
26
|
+
|
|
27
|
+
border-top: 1px solid black;
|
|
28
|
+
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
@media (min-width: 800px) {
|
|
32
|
+
|
|
33
|
+
padding: 0;
|
|
34
|
+
|
|
35
|
+
:not(:first-of-type) {
|
|
36
|
+
|
|
37
|
+
border-top: none;
|
|
38
|
+
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
`;
|
|
165
44
|
|
|
166
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
45
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9leGFtcGxlL2FydGljbGUuanMiXSwic291cmNlc0NvbnRlbnQiOlsiXCJ1c2Ugc3RyaWN0XCI7XG5cbmltcG9ydCB3aXRoU3R5bGUgZnJvbSBcImVhc3ktd2l0aC1zdHlsZVwiOyAgLy8vXG5cbmltcG9ydCB7IEVsZW1lbnQgfSBmcm9tIFwiZWFzeVwiO1xuXG5jbGFzcyBBcnRpY2xlIGV4dGVuZHMgRWxlbWVudCB7XG4gIHN0YXRpYyB0YWdOYW1lID0gXCJhcnRpY2xlXCI7XG59XG5cbmV4cG9ydCBkZWZhdWx0IHdpdGhTdHlsZShBcnRpY2xlKWBcblxuICBwYWRkaW5nOiAycmVtO1xuICBcbiAgOm5vdCg6Zmlyc3Qtb2YtdHlwZSkge1xuXG4gICAgYm9yZGVyLXRvcDogMXB4IHNvbGlkIGJsYWNrO1xuICAgIFxuICB9XG5cbiAgQG1lZGlhIChtaW4td2lkdGg6IDgwMHB4KSB7XG4gIFxuICAgIHBhZGRpbmc6IDA7XG4gICAgXG4gICAgOm5vdCg6Zmlyc3Qtb2YtdHlwZSkge1xuICBcbiAgICAgIGJvcmRlci10b3A6IG5vbmU7XG4gICAgICBcbiAgICB9XG4gIFxuICB9XG4gIFxuYDtcbiJdLCJuYW1lcyI6WyJBcnRpY2xlIiwiRWxlbWVudCIsInRhZ05hbWUiLCJ3aXRoU3R5bGUiXSwibWFwcGluZ3MiOiJBQUFBOzs7OytCQVVBOzs7ZUFBQTs7O3NFQVJzQjtzQkFFRTs7Ozs7O0FBRXhCLE1BQU1BLGdCQUFnQkMsYUFBTztJQUMzQixPQUFPQyxVQUFVLFVBQVU7QUFDN0I7TUFFQSxXQUFlQyxJQUFBQSxzQkFBUyxFQUFDSCxRQUFRLENBQUM7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7QUFzQmxDLENBQUMifQ==
|
|
@@ -8,19 +8,19 @@ Object.defineProperty(exports, "default", {
|
|
|
8
8
|
return _default;
|
|
9
9
|
}
|
|
10
10
|
});
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
11
|
+
const _home = /*#__PURE__*/ _interop_require_default(require("./article/home"));
|
|
12
|
+
const _links = /*#__PURE__*/ _interop_require_default(require("./article/links"));
|
|
13
|
+
const _codes = /*#__PURE__*/ _interop_require_default(require("./article/codes"));
|
|
14
|
+
const _inputs = /*#__PURE__*/ _interop_require_default(require("./article/inputs"));
|
|
15
|
+
const _buttons = /*#__PURE__*/ _interop_require_default(require("./article/buttons"));
|
|
16
|
+
const _sections = /*#__PURE__*/ _interop_require_default(require("./article/sections"));
|
|
17
|
+
const _headings = /*#__PURE__*/ _interop_require_default(require("./article/headings"));
|
|
18
18
|
function _interop_require_default(obj) {
|
|
19
19
|
return obj && obj.__esModule ? obj : {
|
|
20
20
|
default: obj
|
|
21
21
|
};
|
|
22
22
|
}
|
|
23
|
-
|
|
23
|
+
const ArticlesArray = [
|
|
24
24
|
[
|
|
25
25
|
_home.default,
|
|
26
26
|
_links.default,
|
|
@@ -31,6 +31,6 @@ var ArticlesArray = [
|
|
|
31
31
|
_inputs.default,
|
|
32
32
|
_sections.default
|
|
33
33
|
];
|
|
34
|
-
|
|
34
|
+
const _default = ArticlesArray;
|
|
35
35
|
|
|
36
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
36
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9leGFtcGxlL2FydGljbGVzQXJyYXkuanMiXSwic291cmNlc0NvbnRlbnQiOlsiXCJ1c2Ugc3RyaWN0XCI7XG5cbmltcG9ydCBIb21lQXJ0aWNsZSBmcm9tIFwiLi9hcnRpY2xlL2hvbWVcIlxuaW1wb3J0IExpbmtzQXJ0aWNsZSBmcm9tIFwiLi9hcnRpY2xlL2xpbmtzXCJcbmltcG9ydCBDb2Rlc0FydGljbGUgZnJvbSBcIi4vYXJ0aWNsZS9jb2Rlc1wiXG5pbXBvcnQgSW5wdXRzQXJ0aWNsZSBmcm9tIFwiLi9hcnRpY2xlL2lucHV0c1wiXG5pbXBvcnQgQnV0dG9uc0FydGljbGUgZnJvbSBcIi4vYXJ0aWNsZS9idXR0b25zXCI7XG5pbXBvcnQgU2VjdGlvbnNBcnRpY2xlIGZyb20gXCIuL2FydGljbGUvc2VjdGlvbnNcIlxuaW1wb3J0IEhlYWRpbmdzQXJ0aWNsZSBmcm9tIFwiLi9hcnRpY2xlL2hlYWRpbmdzXCI7XG5cbmNvbnN0IEFydGljbGVzQXJyYXkgPSBbIC8vL1xuICBbIEhvbWVBcnRpY2xlLCBMaW5rc0FydGljbGUsIEJ1dHRvbnNBcnRpY2xlLCBIZWFkaW5nc0FydGljbGUgXSxcbiAgQ29kZXNBcnRpY2xlLFxuICBJbnB1dHNBcnRpY2xlLFxuICBTZWN0aW9uc0FydGljbGVcbl07XG5cbmV4cG9ydCBkZWZhdWx0IEFydGljbGVzQXJyYXk7XG4iXSwibmFtZXMiOlsiQXJ0aWNsZXNBcnJheSIsIkhvbWVBcnRpY2xlIiwiTGlua3NBcnRpY2xlIiwiQnV0dG9uc0FydGljbGUiLCJIZWFkaW5nc0FydGljbGUiLCJDb2Rlc0FydGljbGUiLCJJbnB1dHNBcnRpY2xlIiwiU2VjdGlvbnNBcnRpY2xlIl0sIm1hcHBpbmdzIjoiQUFBQTs7OzsrQkFpQkE7OztlQUFBOzs7NkRBZndCOzhEQUNDOzhEQUNBOytEQUNDO2dFQUNDO2lFQUNDO2lFQUNBOzs7Ozs7QUFFNUIsTUFBTUEsZ0JBQWdCO0lBQ3BCO1FBQUVDLGFBQVc7UUFBRUMsY0FBWTtRQUFFQyxnQkFBYztRQUFFQyxpQkFBZTtLQUFFO0lBQzlEQyxjQUFZO0lBQ1pDLGVBQWE7SUFDYkMsaUJBQWU7Q0FDaEI7TUFFRCxXQUFlUCJ9
|