highmark-cli 0.0.174 → 0.0.176

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.
Files changed (95) hide show
  1. package/README.md +20 -2
  2. package/bin/abbreviations.js +6 -9
  3. package/bin/action/help.js +3 -3
  4. package/bin/action/publish.js +6 -9
  5. package/bin/action/server.js +2 -2
  6. package/bin/constants.js +2 -12
  7. package/bin/defaults.js +4 -6
  8. package/bin/main.js +7 -9
  9. package/bin/operation/copyClientFiles.js +19 -0
  10. package/bin/operation/copyFonts.js +5 -24
  11. package/bin/operation/html.js +5 -71
  12. package/bin/operation/server.js +1 -3
  13. package/bin/operation/watch.js +2 -4
  14. package/bin/options.js +4 -6
  15. package/package.json +2 -26
  16. package/.swcrc +0 -11
  17. package/bin/operation/copyCheckmark.js +0 -32
  18. package/bin/operation/copyClient.js +0 -51
  19. package/bin/utilities/client.js +0 -38
  20. package/checkmark.svg +0 -12
  21. package/client.js +0 -39623
  22. package/css/loading.css +0 -59
  23. package/lib/client.js +0 -74
  24. package/lib/constants.js +0 -70
  25. package/lib/createMethods.js +0 -84
  26. package/lib/customEventTypes.js +0 -74
  27. package/lib/localStorage.js +0 -41
  28. package/lib/migrate.js +0 -34
  29. package/lib/selectors.js +0 -26
  30. package/lib/state/version_1.js +0 -39
  31. package/lib/state.js +0 -153
  32. package/lib/styles.js +0 -82
  33. package/lib/utilities/element.js +0 -62
  34. package/lib/utilities/orientation.js +0 -39
  35. package/lib/versions.js +0 -13
  36. package/lib/view/button/closeMenu.js +0 -121
  37. package/lib/view/button/zoomMenuIn.js +0 -121
  38. package/lib/view/button/zoomMenuOut.js +0 -121
  39. package/lib/view/button.js +0 -160
  40. package/lib/view/checkbox.js +0 -193
  41. package/lib/view/div/buttons.js +0 -213
  42. package/lib/view/div/checkbox/fullScreen.js +0 -155
  43. package/lib/view/div/checkbox/invertColours.js +0 -154
  44. package/lib/view/div/checkbox/nativeGestures.js +0 -154
  45. package/lib/view/div/checkbox.js +0 -220
  46. package/lib/view/div/checkboxes.js +0 -213
  47. package/lib/view/div/menu.js +0 -301
  48. package/lib/view/div/overlay.js +0 -685
  49. package/lib/view/div/preloader.js +0 -204
  50. package/lib/view/div.js +0 -227
  51. package/lib/view/element.js +0 -164
  52. package/lib/view/span.js +0 -182
  53. package/lib/view/svg/closeMenu.js +0 -138
  54. package/lib/view/svg/zoomMenuIn.js +0 -146
  55. package/lib/view/svg/zoomMenuOut.js +0 -141
  56. package/lib/view/svg.js +0 -184
  57. package/lib/view.js +0 -247
  58. package/src/client.js +0 -70
  59. package/src/constants.js +0 -16
  60. package/src/createMethods.js +0 -105
  61. package/src/customEventTypes.js +0 -17
  62. package/src/localStorage.js +0 -40
  63. package/src/migrate.js +0 -19
  64. package/src/selectors.js +0 -5
  65. package/src/state/version_1.js +0 -32
  66. package/src/state.js +0 -152
  67. package/src/styles.js +0 -19
  68. package/src/utilities/element.js +0 -66
  69. package/src/utilities/orientation.js +0 -34
  70. package/src/versions.js +0 -3
  71. package/src/view/button/closeMenu.js +0 -16
  72. package/src/view/button/zoomMenuIn.js +0 -16
  73. package/src/view/button/zoomMenuOut.js +0 -16
  74. package/src/view/button.js +0 -38
  75. package/src/view/checkbox.js +0 -68
  76. package/src/view/div/buttons.js +0 -37
  77. package/src/view/div/checkbox/fullScreen.js +0 -40
  78. package/src/view/div/checkbox/invertColours.js +0 -37
  79. package/src/view/div/checkbox/nativeGestures.js +0 -38
  80. package/src/view/div/checkbox.js +0 -45
  81. package/src/view/div/checkboxes.js +0 -38
  82. package/src/view/div/menu.js +0 -88
  83. package/src/view/div/overlay.js +0 -602
  84. package/src/view/div/preloader.js +0 -25
  85. package/src/view/div.js +0 -47
  86. package/src/view/element.js +0 -16
  87. package/src/view/span.js +0 -20
  88. package/src/view/svg/closeMenu.js +0 -19
  89. package/src/view/svg/zoomMenuIn.js +0 -20
  90. package/src/view/svg/zoomMenuOut.js +0 -19
  91. package/src/view/svg.js +0 -24
  92. package/src/view.js +0 -64
  93. package/template/client.html +0 -4
  94. package/template/default.html +0 -71
  95. package/template/loading.html +0 -17
package/lib/view/span.js DELETED
@@ -1,182 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", {
3
- value: true
4
- });
5
- Object.defineProperty(exports, "default", {
6
- enumerable: true,
7
- get: function() {
8
- return _default;
9
- }
10
- });
11
- var _easywithstyle = /*#__PURE__*/ _interop_require_default(require("easy-with-style"));
12
- var _element = /*#__PURE__*/ _interop_require_default(require("./element"));
13
- var _styles = require("../styles");
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 _class_call_check(instance, Constructor) {
21
- if (!(instance instanceof Constructor)) {
22
- throw new TypeError("Cannot call a class as a function");
23
- }
24
- }
25
- function _construct(Parent, args, Class) {
26
- if (_is_native_reflect_construct()) {
27
- _construct = Reflect.construct;
28
- } else {
29
- _construct = function construct(Parent, args, Class) {
30
- var a = [
31
- null
32
- ];
33
- a.push.apply(a, args);
34
- var Constructor = Function.bind.apply(Parent, a);
35
- var instance = new Constructor();
36
- if (Class) _set_prototype_of(instance, Class.prototype);
37
- return instance;
38
- };
39
- }
40
- return _construct.apply(null, arguments);
41
- }
42
- function _define_property(obj, key, value) {
43
- if (key in obj) {
44
- Object.defineProperty(obj, key, {
45
- value: value,
46
- enumerable: true,
47
- configurable: true,
48
- writable: true
49
- });
50
- } else {
51
- obj[key] = value;
52
- }
53
- return obj;
54
- }
55
- function _get_prototype_of(o) {
56
- _get_prototype_of = Object.setPrototypeOf ? Object.getPrototypeOf : function getPrototypeOf(o) {
57
- return o.__proto__ || Object.getPrototypeOf(o);
58
- };
59
- return _get_prototype_of(o);
60
- }
61
- function _inherits(subClass, superClass) {
62
- if (typeof superClass !== "function" && superClass !== null) {
63
- throw new TypeError("Super expression must either be null or a function");
64
- }
65
- subClass.prototype = Object.create(superClass && superClass.prototype, {
66
- constructor: {
67
- value: subClass,
68
- writable: true,
69
- configurable: true
70
- }
71
- });
72
- if (superClass) _set_prototype_of(subClass, superClass);
73
- }
74
- function _interop_require_default(obj) {
75
- return obj && obj.__esModule ? obj : {
76
- default: obj
77
- };
78
- }
79
- function _is_native_function(fn) {
80
- return Function.toString.call(fn).indexOf("[native code]") !== -1;
81
- }
82
- function _possible_constructor_return(self, call) {
83
- if (call && (_type_of(call) === "object" || typeof call === "function")) {
84
- return call;
85
- }
86
- return _assert_this_initialized(self);
87
- }
88
- function _set_prototype_of(o, p) {
89
- _set_prototype_of = Object.setPrototypeOf || function setPrototypeOf(o, p) {
90
- o.__proto__ = p;
91
- return o;
92
- };
93
- return _set_prototype_of(o, p);
94
- }
95
- function _tagged_template_literal(strings, raw) {
96
- if (!raw) {
97
- raw = strings.slice(0);
98
- }
99
- return Object.freeze(Object.defineProperties(strings, {
100
- raw: {
101
- value: Object.freeze(raw)
102
- }
103
- }));
104
- }
105
- function _type_of(obj) {
106
- "@swc/helpers - typeof";
107
- return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
108
- }
109
- function _wrap_native_super(Class) {
110
- var _cache = typeof Map === "function" ? new Map() : undefined;
111
- _wrap_native_super = function wrapNativeSuper(Class) {
112
- if (Class === null || !_is_native_function(Class)) return Class;
113
- if (typeof Class !== "function") {
114
- throw new TypeError("Super expression must either be null or a function");
115
- }
116
- if (typeof _cache !== "undefined") {
117
- if (_cache.has(Class)) return _cache.get(Class);
118
- _cache.set(Class, Wrapper);
119
- }
120
- function Wrapper() {
121
- return _construct(Class, arguments, _get_prototype_of(this).constructor);
122
- }
123
- Wrapper.prototype = Object.create(Class.prototype, {
124
- constructor: {
125
- value: Wrapper,
126
- enumerable: false,
127
- writable: true,
128
- configurable: true
129
- }
130
- });
131
- return _set_prototype_of(Wrapper, Class);
132
- };
133
- return _wrap_native_super(Class);
134
- }
135
- function _is_native_reflect_construct() {
136
- if (typeof Reflect === "undefined" || !Reflect.construct) return false;
137
- if (Reflect.construct.sham) return false;
138
- if (typeof Proxy === "function") return true;
139
- try {
140
- Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
141
- return true;
142
- } catch (e) {
143
- return false;
144
- }
145
- }
146
- function _create_super(Derived) {
147
- var hasNativeReflectConstruct = _is_native_reflect_construct();
148
- return function _createSuperInternal() {
149
- var Super = _get_prototype_of(Derived), result;
150
- if (hasNativeReflectConstruct) {
151
- var NewTarget = _get_prototype_of(this).constructor;
152
- result = Reflect.construct(Super, arguments, NewTarget);
153
- } else {
154
- result = Super.apply(this, arguments);
155
- }
156
- return _possible_constructor_return(this, result);
157
- };
158
- }
159
- function _templateObject() {
160
- var data = _tagged_template_literal([
161
- "\n\n color: ",
162
- ";\n font-size: ",
163
- ";\n white-space: pre;\n font-family: serif;\n \n"
164
- ]);
165
- _templateObject = function _templateObject() {
166
- return data;
167
- };
168
- return data;
169
- }
170
- var Span = /*#__PURE__*/ function(Element) {
171
- _inherits(Span, Element);
172
- var _super = _create_super(Span);
173
- function Span() {
174
- _class_call_check(this, Span);
175
- return _super.apply(this, arguments);
176
- }
177
- return Span;
178
- }(_wrap_native_super(_element.default));
179
- _define_property(Span, "tagName", "span");
180
- var _default = (0, _easywithstyle.default)(Span)(_templateObject(), _styles.spanColour, _styles.spanFontSize);
181
-
182
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy92aWV3L3NwYW4uanMiXSwic291cmNlc0NvbnRlbnQiOlsiXCJ1c2Ugc3RyaWN0XCI7XG5cbmltcG9ydCB3aXRoU3R5bGUgZnJvbSBcImVhc3ktd2l0aC1zdHlsZVwiOyAgLy8vXG5cbmltcG9ydCBFbGVtZW50IGZyb20gXCIuL2VsZW1lbnRcIjtcblxuaW1wb3J0IHsgc3BhbkNvbG91ciwgc3BhbkZvbnRTaXplIH0gZnJvbSBcIi4uL3N0eWxlc1wiO1xuXG5jbGFzcyBTcGFuIGV4dGVuZHMgRWxlbWVudCB7XG4gIHN0YXRpYyB0YWdOYW1lID0gXCJzcGFuXCI7XG59XG5cbmV4cG9ydCBkZWZhdWx0IHdpdGhTdHlsZShTcGFuKWBcblxuICBjb2xvcjogJHtzcGFuQ29sb3VyfTtcbiAgZm9udC1zaXplOiAke3NwYW5Gb250U2l6ZX07XG4gIHdoaXRlLXNwYWNlOiBwcmU7XG4gIGZvbnQtZmFtaWx5OiBzZXJpZjtcbiAgXG5gO1xuIl0sIm5hbWVzIjpbIlNwYW4iLCJFbGVtZW50IiwidGFnTmFtZSIsIndpdGhTdHlsZSIsInNwYW5Db2xvdXIiLCJzcGFuRm9udFNpemUiXSwicmFuZ2VNYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7IiwibWFwcGluZ3MiOiJBQUFBOzs7OytCQVlBOzs7ZUFBQTs7O29FQVZzQjs4REFFRjtzQkFFcUI7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7QUFFekMsSUFBQSxBQUFNQSxxQkFBRCxBQUFMO2NBQU1BOytCQUFBQTthQUFBQTtnQ0FBQUE7OztXQUFBQTtxQkFBYUMsZ0JBQU87QUFDeEIsaUJBRElELE1BQ0dFLFdBQVU7SUFHbkIsV0FBZUMsSUFBQUEsc0JBQVMsRUFBQ0gseUJBRWRJLGtCQUFVLEVBQ05DLG9CQUFZIn0=
@@ -1,138 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", {
3
- value: true
4
- });
5
- Object.defineProperty(exports, "default", {
6
- enumerable: true,
7
- get: function() {
8
- return CloseMenuSVG;
9
- }
10
- });
11
- var _svg = /*#__PURE__*/ _interop_require_default(require("../svg"));
12
- function _assert_this_initialized(self) {
13
- if (self === void 0) {
14
- throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
15
- }
16
- return self;
17
- }
18
- function _class_call_check(instance, Constructor) {
19
- if (!(instance instanceof Constructor)) {
20
- throw new TypeError("Cannot call a class as a function");
21
- }
22
- }
23
- function _defineProperties(target, props) {
24
- for(var i = 0; i < props.length; i++){
25
- var descriptor = props[i];
26
- descriptor.enumerable = descriptor.enumerable || false;
27
- descriptor.configurable = true;
28
- if ("value" in descriptor) descriptor.writable = true;
29
- Object.defineProperty(target, descriptor.key, descriptor);
30
- }
31
- }
32
- function _create_class(Constructor, protoProps, staticProps) {
33
- if (protoProps) _defineProperties(Constructor.prototype, protoProps);
34
- if (staticProps) _defineProperties(Constructor, staticProps);
35
- return Constructor;
36
- }
37
- function _define_property(obj, key, value) {
38
- if (key in obj) {
39
- Object.defineProperty(obj, key, {
40
- value: value,
41
- enumerable: true,
42
- configurable: true,
43
- writable: true
44
- });
45
- } else {
46
- obj[key] = value;
47
- }
48
- return obj;
49
- }
50
- function _get_prototype_of(o) {
51
- _get_prototype_of = Object.setPrototypeOf ? Object.getPrototypeOf : function getPrototypeOf(o) {
52
- return o.__proto__ || Object.getPrototypeOf(o);
53
- };
54
- return _get_prototype_of(o);
55
- }
56
- function _inherits(subClass, superClass) {
57
- if (typeof superClass !== "function" && superClass !== null) {
58
- throw new TypeError("Super expression must either be null or a function");
59
- }
60
- subClass.prototype = Object.create(superClass && superClass.prototype, {
61
- constructor: {
62
- value: subClass,
63
- writable: true,
64
- configurable: true
65
- }
66
- });
67
- if (superClass) _set_prototype_of(subClass, superClass);
68
- }
69
- function _interop_require_default(obj) {
70
- return obj && obj.__esModule ? obj : {
71
- default: obj
72
- };
73
- }
74
- function _possible_constructor_return(self, call) {
75
- if (call && (_type_of(call) === "object" || typeof call === "function")) {
76
- return call;
77
- }
78
- return _assert_this_initialized(self);
79
- }
80
- function _set_prototype_of(o, p) {
81
- _set_prototype_of = Object.setPrototypeOf || function setPrototypeOf(o, p) {
82
- o.__proto__ = p;
83
- return o;
84
- };
85
- return _set_prototype_of(o, p);
86
- }
87
- function _type_of(obj) {
88
- "@swc/helpers - typeof";
89
- return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
90
- }
91
- function _is_native_reflect_construct() {
92
- if (typeof Reflect === "undefined" || !Reflect.construct) return false;
93
- if (Reflect.construct.sham) return false;
94
- if (typeof Proxy === "function") return true;
95
- try {
96
- Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
97
- return true;
98
- } catch (e) {
99
- return false;
100
- }
101
- }
102
- function _create_super(Derived) {
103
- var hasNativeReflectConstruct = _is_native_reflect_construct();
104
- return function _createSuperInternal() {
105
- var Super = _get_prototype_of(Derived), result;
106
- if (hasNativeReflectConstruct) {
107
- var NewTarget = _get_prototype_of(this).constructor;
108
- result = Reflect.construct(Super, arguments, NewTarget);
109
- } else {
110
- result = Super.apply(this, arguments);
111
- }
112
- return _possible_constructor_return(this, result);
113
- };
114
- }
115
- var CloseMenuSVG = /*#__PURE__*/ function(SVG) {
116
- _inherits(CloseMenuSVG, SVG);
117
- var _super = _create_super(CloseMenuSVG);
118
- function CloseMenuSVG() {
119
- _class_call_check(this, CloseMenuSVG);
120
- return _super.apply(this, arguments);
121
- }
122
- _create_class(CloseMenuSVG, [
123
- {
124
- key: "childElements",
125
- value: function childElements() {
126
- return /*#__PURE__*/ React.createElement("g", null, /*#__PURE__*/ React.createElement("path", {
127
- d: "M 18.156886,3.3074544 12.500012,8.9643288 6.8431375,3.3074544 3.307454,6.8431379 8.9643284,12.500012 3.3074544,18.156886 6.8431379,21.69257 12.500012,16.035696 18.156886,21.69257 21.69257,18.156886 16.035695,12.500012 21.69257,6.8431379 Z"
128
- }));
129
- }
130
- }
131
- ]);
132
- return CloseMenuSVG;
133
- }(_svg.default);
134
- _define_property(CloseMenuSVG, "defaultProperties", {
135
- className: "close-menu"
136
- });
137
-
138
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy92aWV3L3N2Zy9jbG9zZU1lbnUuanMiXSwic291cmNlc0NvbnRlbnQiOlsiXCJ1c2Ugc3RyaWN0XCI7XG5cbmltcG9ydCBTVkcgZnJvbSBcIi4uL3N2Z1wiO1xuXG5leHBvcnQgZGVmYXVsdCBjbGFzcyBDbG9zZU1lbnVTVkcgZXh0ZW5kcyBTVkcge1xuICBjaGlsZEVsZW1lbnRzKCkge1xuICAgIHJldHVybiAoXG5cbiAgICAgIDxnPlxuICAgICAgICA8cGF0aCBkPVwiTSAxOC4xNTY4ODYsMy4zMDc0NTQ0IDEyLjUwMDAxMiw4Ljk2NDMyODggNi44NDMxMzc1LDMuMzA3NDU0NCAzLjMwNzQ1NCw2Ljg0MzEzNzkgOC45NjQzMjg0LDEyLjUwMDAxMiAzLjMwNzQ1NDQsMTguMTU2ODg2IDYuODQzMTM3OSwyMS42OTI1NyAxMi41MDAwMTIsMTYuMDM1Njk2IDE4LjE1Njg4NiwyMS42OTI1NyAyMS42OTI1NywxOC4xNTY4ODYgMTYuMDM1Njk1LDEyLjUwMDAxMiAyMS42OTI1Nyw2Ljg0MzEzNzkgWlwiIC8+XG4gICAgICA8L2c+XG5cbiAgICApO1xuICB9XG5cbiAgc3RhdGljIGRlZmF1bHRQcm9wZXJ0aWVzID0ge1xuICAgIGNsYXNzTmFtZTogXCJjbG9zZS1tZW51XCJcbiAgfTtcbn1cbiJdLCJuYW1lcyI6WyJDbG9zZU1lbnVTVkciLCJjaGlsZEVsZW1lbnRzIiwiZyIsInBhdGgiLCJkIiwiU1ZHIiwiZGVmYXVsdFByb3BlcnRpZXMiLCJjbGFzc05hbWUiXSwicmFuZ2VNYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OyIsIm1hcHBpbmdzIjoiQUFBQTs7Ozs7OztlQUlxQkE7OzswREFGTDs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7QUFFRCxJQUFBLEFBQU1BLDZCQUFELEFBQUw7Y0FBTUE7K0JBQUFBO2FBQUFBO2dDQUFBQTs7O2tCQUFBQTs7WUFDbkJDLEtBQUFBO21CQUFBQSxTQUFBQTtnQkFDRSxxQkFFRSxvQkFBQ0MseUJBQ0Msb0JBQUNDO29CQUFLQyxHQUFFOztZQUlkOzs7V0FUbUJKO0VBQXFCSyxZQUFHO0FBVzNDLGlCQVhtQkwsY0FXWk0scUJBQW9CO0lBQ3pCQyxXQUFXO0FBQ2IifQ==
@@ -1,146 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", {
3
- value: true
4
- });
5
- Object.defineProperty(exports, "default", {
6
- enumerable: true,
7
- get: function() {
8
- return ZoomMenuInSVG;
9
- }
10
- });
11
- var _svg = /*#__PURE__*/ _interop_require_default(require("../svg"));
12
- function _assert_this_initialized(self) {
13
- if (self === void 0) {
14
- throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
15
- }
16
- return self;
17
- }
18
- function _class_call_check(instance, Constructor) {
19
- if (!(instance instanceof Constructor)) {
20
- throw new TypeError("Cannot call a class as a function");
21
- }
22
- }
23
- function _defineProperties(target, props) {
24
- for(var i = 0; i < props.length; i++){
25
- var descriptor = props[i];
26
- descriptor.enumerable = descriptor.enumerable || false;
27
- descriptor.configurable = true;
28
- if ("value" in descriptor) descriptor.writable = true;
29
- Object.defineProperty(target, descriptor.key, descriptor);
30
- }
31
- }
32
- function _create_class(Constructor, protoProps, staticProps) {
33
- if (protoProps) _defineProperties(Constructor.prototype, protoProps);
34
- if (staticProps) _defineProperties(Constructor, staticProps);
35
- return Constructor;
36
- }
37
- function _define_property(obj, key, value) {
38
- if (key in obj) {
39
- Object.defineProperty(obj, key, {
40
- value: value,
41
- enumerable: true,
42
- configurable: true,
43
- writable: true
44
- });
45
- } else {
46
- obj[key] = value;
47
- }
48
- return obj;
49
- }
50
- function _get_prototype_of(o) {
51
- _get_prototype_of = Object.setPrototypeOf ? Object.getPrototypeOf : function getPrototypeOf(o) {
52
- return o.__proto__ || Object.getPrototypeOf(o);
53
- };
54
- return _get_prototype_of(o);
55
- }
56
- function _inherits(subClass, superClass) {
57
- if (typeof superClass !== "function" && superClass !== null) {
58
- throw new TypeError("Super expression must either be null or a function");
59
- }
60
- subClass.prototype = Object.create(superClass && superClass.prototype, {
61
- constructor: {
62
- value: subClass,
63
- writable: true,
64
- configurable: true
65
- }
66
- });
67
- if (superClass) _set_prototype_of(subClass, superClass);
68
- }
69
- function _interop_require_default(obj) {
70
- return obj && obj.__esModule ? obj : {
71
- default: obj
72
- };
73
- }
74
- function _possible_constructor_return(self, call) {
75
- if (call && (_type_of(call) === "object" || typeof call === "function")) {
76
- return call;
77
- }
78
- return _assert_this_initialized(self);
79
- }
80
- function _set_prototype_of(o, p) {
81
- _set_prototype_of = Object.setPrototypeOf || function setPrototypeOf(o, p) {
82
- o.__proto__ = p;
83
- return o;
84
- };
85
- return _set_prototype_of(o, p);
86
- }
87
- function _type_of(obj) {
88
- "@swc/helpers - typeof";
89
- return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
90
- }
91
- function _is_native_reflect_construct() {
92
- if (typeof Reflect === "undefined" || !Reflect.construct) return false;
93
- if (Reflect.construct.sham) return false;
94
- if (typeof Proxy === "function") return true;
95
- try {
96
- Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
97
- return true;
98
- } catch (e) {
99
- return false;
100
- }
101
- }
102
- function _create_super(Derived) {
103
- var hasNativeReflectConstruct = _is_native_reflect_construct();
104
- return function _createSuperInternal() {
105
- var Super = _get_prototype_of(Derived), result;
106
- if (hasNativeReflectConstruct) {
107
- var NewTarget = _get_prototype_of(this).constructor;
108
- result = Reflect.construct(Super, arguments, NewTarget);
109
- } else {
110
- result = Super.apply(this, arguments);
111
- }
112
- return _possible_constructor_return(this, result);
113
- };
114
- }
115
- var ZoomMenuInSVG = /*#__PURE__*/ function(SVG) {
116
- _inherits(ZoomMenuInSVG, SVG);
117
- var _super = _create_super(ZoomMenuInSVG);
118
- function ZoomMenuInSVG() {
119
- _class_call_check(this, ZoomMenuInSVG);
120
- return _super.apply(this, arguments);
121
- }
122
- _create_class(ZoomMenuInSVG, [
123
- {
124
- key: "childElements",
125
- value: function childElements() {
126
- return /*#__PURE__*/ React.createElement("g", null, /*#__PURE__*/ React.createElement("rect", {
127
- x: "3",
128
- y: "10",
129
- width: "19",
130
- height: "5"
131
- }), /*#__PURE__*/ React.createElement("rect", {
132
- x: "10",
133
- y: "3",
134
- width: "5",
135
- height: "19"
136
- }));
137
- }
138
- }
139
- ]);
140
- return ZoomMenuInSVG;
141
- }(_svg.default);
142
- _define_property(ZoomMenuInSVG, "defaultProperties", {
143
- className: "zoom-menu-in"
144
- });
145
-
146
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy92aWV3L3N2Zy96b29tTWVudUluLmpzIl0sInNvdXJjZXNDb250ZW50IjpbIlwidXNlIHN0cmljdFwiO1xuXG5pbXBvcnQgU1ZHIGZyb20gXCIuLi9zdmdcIjtcblxuZXhwb3J0IGRlZmF1bHQgY2xhc3MgWm9vbU1lbnVJblNWRyBleHRlbmRzIFNWRyB7XG4gIGNoaWxkRWxlbWVudHMoKSB7XG4gICAgcmV0dXJuIChcblxuICAgICAgPGc+XG4gICAgICAgIDxyZWN0IHg9XCIzXCIgeT1cIjEwXCIgd2lkdGg9XCIxOVwiIGhlaWdodD1cIjVcIi8+XG4gICAgICAgIDxyZWN0IHg9XCIxMFwiIHk9XCIzXCIgd2lkdGg9XCI1XCIgaGVpZ2h0PVwiMTlcIi8+XG4gICAgICA8L2c+XG5cbiAgICApO1xuICB9XG5cbiAgc3RhdGljIGRlZmF1bHRQcm9wZXJ0aWVzID0ge1xuICAgIGNsYXNzTmFtZTogXCJ6b29tLW1lbnUtaW5cIlxuICB9O1xufVxuIl0sIm5hbWVzIjpbIlpvb21NZW51SW5TVkciLCJjaGlsZEVsZW1lbnRzIiwiZyIsInJlY3QiLCJ4IiwieSIsIndpZHRoIiwiaGVpZ2h0IiwiU1ZHIiwiZGVmYXVsdFByb3BlcnRpZXMiLCJjbGFzc05hbWUiXSwicmFuZ2VNYXBwaW5ncyI6Ijs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7IiwibWFwcGluZ3MiOiJBQUFBOzs7Ozs7O2VBSXFCQTs7OzBEQUZMOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztBQUVELElBQUEsQUFBTUEsOEJBQUQsQUFBTDtjQUFNQTsrQkFBQUE7YUFBQUE7Z0NBQUFBOzs7a0JBQUFBOztZQUNuQkMsS0FBQUE7bUJBQUFBLFNBQUFBO2dCQUNFLHFCQUVFLG9CQUFDQyx5QkFDQyxvQkFBQ0M7b0JBQUtDLEdBQUU7b0JBQUlDLEdBQUU7b0JBQUtDLE9BQU07b0JBQUtDLFFBQU87a0NBQ3JDLG9CQUFDSjtvQkFBS0MsR0FBRTtvQkFBS0MsR0FBRTtvQkFBSUMsT0FBTTtvQkFBSUMsUUFBTzs7WUFJMUM7OztXQVZtQlA7RUFBc0JRLFlBQUc7QUFZNUMsaUJBWm1CUixlQVlaUyxxQkFBb0I7SUFDekJDLFdBQVc7QUFDYiJ9
@@ -1,141 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", {
3
- value: true
4
- });
5
- Object.defineProperty(exports, "default", {
6
- enumerable: true,
7
- get: function() {
8
- return ZoomMenuOutSVG;
9
- }
10
- });
11
- var _svg = /*#__PURE__*/ _interop_require_default(require("../svg"));
12
- function _assert_this_initialized(self) {
13
- if (self === void 0) {
14
- throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
15
- }
16
- return self;
17
- }
18
- function _class_call_check(instance, Constructor) {
19
- if (!(instance instanceof Constructor)) {
20
- throw new TypeError("Cannot call a class as a function");
21
- }
22
- }
23
- function _defineProperties(target, props) {
24
- for(var i = 0; i < props.length; i++){
25
- var descriptor = props[i];
26
- descriptor.enumerable = descriptor.enumerable || false;
27
- descriptor.configurable = true;
28
- if ("value" in descriptor) descriptor.writable = true;
29
- Object.defineProperty(target, descriptor.key, descriptor);
30
- }
31
- }
32
- function _create_class(Constructor, protoProps, staticProps) {
33
- if (protoProps) _defineProperties(Constructor.prototype, protoProps);
34
- if (staticProps) _defineProperties(Constructor, staticProps);
35
- return Constructor;
36
- }
37
- function _define_property(obj, key, value) {
38
- if (key in obj) {
39
- Object.defineProperty(obj, key, {
40
- value: value,
41
- enumerable: true,
42
- configurable: true,
43
- writable: true
44
- });
45
- } else {
46
- obj[key] = value;
47
- }
48
- return obj;
49
- }
50
- function _get_prototype_of(o) {
51
- _get_prototype_of = Object.setPrototypeOf ? Object.getPrototypeOf : function getPrototypeOf(o) {
52
- return o.__proto__ || Object.getPrototypeOf(o);
53
- };
54
- return _get_prototype_of(o);
55
- }
56
- function _inherits(subClass, superClass) {
57
- if (typeof superClass !== "function" && superClass !== null) {
58
- throw new TypeError("Super expression must either be null or a function");
59
- }
60
- subClass.prototype = Object.create(superClass && superClass.prototype, {
61
- constructor: {
62
- value: subClass,
63
- writable: true,
64
- configurable: true
65
- }
66
- });
67
- if (superClass) _set_prototype_of(subClass, superClass);
68
- }
69
- function _interop_require_default(obj) {
70
- return obj && obj.__esModule ? obj : {
71
- default: obj
72
- };
73
- }
74
- function _possible_constructor_return(self, call) {
75
- if (call && (_type_of(call) === "object" || typeof call === "function")) {
76
- return call;
77
- }
78
- return _assert_this_initialized(self);
79
- }
80
- function _set_prototype_of(o, p) {
81
- _set_prototype_of = Object.setPrototypeOf || function setPrototypeOf(o, p) {
82
- o.__proto__ = p;
83
- return o;
84
- };
85
- return _set_prototype_of(o, p);
86
- }
87
- function _type_of(obj) {
88
- "@swc/helpers - typeof";
89
- return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
90
- }
91
- function _is_native_reflect_construct() {
92
- if (typeof Reflect === "undefined" || !Reflect.construct) return false;
93
- if (Reflect.construct.sham) return false;
94
- if (typeof Proxy === "function") return true;
95
- try {
96
- Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
97
- return true;
98
- } catch (e) {
99
- return false;
100
- }
101
- }
102
- function _create_super(Derived) {
103
- var hasNativeReflectConstruct = _is_native_reflect_construct();
104
- return function _createSuperInternal() {
105
- var Super = _get_prototype_of(Derived), result;
106
- if (hasNativeReflectConstruct) {
107
- var NewTarget = _get_prototype_of(this).constructor;
108
- result = Reflect.construct(Super, arguments, NewTarget);
109
- } else {
110
- result = Super.apply(this, arguments);
111
- }
112
- return _possible_constructor_return(this, result);
113
- };
114
- }
115
- var ZoomMenuOutSVG = /*#__PURE__*/ function(SVG) {
116
- _inherits(ZoomMenuOutSVG, SVG);
117
- var _super = _create_super(ZoomMenuOutSVG);
118
- function ZoomMenuOutSVG() {
119
- _class_call_check(this, ZoomMenuOutSVG);
120
- return _super.apply(this, arguments);
121
- }
122
- _create_class(ZoomMenuOutSVG, [
123
- {
124
- key: "childElements",
125
- value: function childElements() {
126
- return /*#__PURE__*/ React.createElement("g", null, /*#__PURE__*/ React.createElement("rect", {
127
- x: "3",
128
- y: "10",
129
- width: "19",
130
- height: "5"
131
- }));
132
- }
133
- }
134
- ]);
135
- return ZoomMenuOutSVG;
136
- }(_svg.default);
137
- _define_property(ZoomMenuOutSVG, "defaultProperties", {
138
- className: "zoom-menu-out"
139
- });
140
-
141
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy92aWV3L3N2Zy96b29tTWVudU91dC5qcyJdLCJzb3VyY2VzQ29udGVudCI6WyJcInVzZSBzdHJpY3RcIjtcblxuaW1wb3J0IFNWRyBmcm9tIFwiLi4vc3ZnXCI7XG5cbmV4cG9ydCBkZWZhdWx0IGNsYXNzIFpvb21NZW51T3V0U1ZHIGV4dGVuZHMgU1ZHIHtcbiAgY2hpbGRFbGVtZW50cygpIHtcbiAgICByZXR1cm4gKFxuXG4gICAgICA8Zz5cbiAgICAgICAgPHJlY3QgeD1cIjNcIiB5PVwiMTBcIiB3aWR0aD1cIjE5XCIgaGVpZ2h0PVwiNVwiLz5cbiAgICAgIDwvZz5cblxuICAgICk7XG4gIH1cblxuICBzdGF0aWMgZGVmYXVsdFByb3BlcnRpZXMgPSB7XG4gICAgY2xhc3NOYW1lOiBcInpvb20tbWVudS1vdXRcIlxuICB9O1xufVxuIl0sIm5hbWVzIjpbIlpvb21NZW51T3V0U1ZHIiwiY2hpbGRFbGVtZW50cyIsImciLCJyZWN0IiwieCIsInkiLCJ3aWR0aCIsImhlaWdodCIsIlNWRyIsImRlZmF1bHRQcm9wZXJ0aWVzIiwiY2xhc3NOYW1lIl0sInJhbmdlTWFwcGluZ3MiOiI7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OzsiLCJtYXBwaW5ncyI6IkFBQUE7Ozs7Ozs7ZUFJcUJBOzs7MERBRkw7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBRUQsSUFBQSxBQUFNQSwrQkFBRCxBQUFMO2NBQU1BOytCQUFBQTthQUFBQTtnQ0FBQUE7OztrQkFBQUE7O1lBQ25CQyxLQUFBQTttQkFBQUEsU0FBQUE7Z0JBQ0UscUJBRUUsb0JBQUNDLHlCQUNDLG9CQUFDQztvQkFBS0MsR0FBRTtvQkFBSUMsR0FBRTtvQkFBS0MsT0FBTTtvQkFBS0MsUUFBTzs7WUFJM0M7OztXQVRtQlA7RUFBdUJRLFlBQUc7QUFXN0MsaUJBWG1CUixnQkFXWlMscUJBQW9CO0lBQ3pCQyxXQUFXO0FBQ2IifQ==