@lumx/core 3.15.1 → 3.15.2-alpha.1

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.
@@ -1,150 +1,50 @@
1
- /******/ (function(modules) { // webpackBootstrap
2
- /******/ // The module cache
3
- /******/ var installedModules = {};
4
- /******/
5
- /******/ // The require function
6
- /******/ function __webpack_require__(moduleId) {
7
- /******/
8
- /******/ // Check if module is in cache
9
- /******/ if(installedModules[moduleId]) {
10
- /******/ return installedModules[moduleId].exports;
11
- /******/ }
12
- /******/ // Create a new module (and put it into the cache)
13
- /******/ var module = installedModules[moduleId] = {
14
- /******/ i: moduleId,
15
- /******/ l: false,
16
- /******/ exports: {}
17
- /******/ };
18
- /******/
19
- /******/ // Execute the module function
20
- /******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
21
- /******/
22
- /******/ // Flag the module as loaded
23
- /******/ module.l = true;
24
- /******/
25
- /******/ // Return the exports of the module
26
- /******/ return module.exports;
27
- /******/ }
28
- /******/
29
- /******/
30
- /******/ // expose the modules object (__webpack_modules__)
31
- /******/ __webpack_require__.m = modules;
32
- /******/
33
- /******/ // expose the module cache
34
- /******/ __webpack_require__.c = installedModules;
35
- /******/
36
- /******/ // define getter function for harmony exports
37
- /******/ __webpack_require__.d = function(exports, name, getter) {
38
- /******/ if(!__webpack_require__.o(exports, name)) {
39
- /******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
40
- /******/ }
41
- /******/ };
42
- /******/
43
- /******/ // define __esModule on exports
44
- /******/ __webpack_require__.r = function(exports) {
45
- /******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
46
- /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
47
- /******/ }
48
- /******/ Object.defineProperty(exports, '__esModule', { value: true });
49
- /******/ };
50
- /******/
51
- /******/ // create a fake namespace object
52
- /******/ // mode & 1: value is a module id, require it
53
- /******/ // mode & 2: merge all properties of value into the ns
54
- /******/ // mode & 4: return value when already ns object
55
- /******/ // mode & 8|1: behave like require
56
- /******/ __webpack_require__.t = function(value, mode) {
57
- /******/ if(mode & 1) value = __webpack_require__(value);
58
- /******/ if(mode & 8) return value;
59
- /******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
60
- /******/ var ns = Object.create(null);
61
- /******/ __webpack_require__.r(ns);
62
- /******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
63
- /******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
64
- /******/ return ns;
65
- /******/ };
66
- /******/
67
- /******/ // getDefaultExport function for compatibility with non-harmony modules
68
- /******/ __webpack_require__.n = function(module) {
69
- /******/ var getter = module && module.__esModule ?
70
- /******/ function getDefault() { return module['default']; } :
71
- /******/ function getModuleExports() { return module; };
72
- /******/ __webpack_require__.d(getter, 'a', getter);
73
- /******/ return getter;
74
- /******/ };
75
- /******/
76
- /******/ // Object.prototype.hasOwnProperty.call
77
- /******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
78
- /******/
79
- /******/ // __webpack_public_path__
80
- /******/ __webpack_require__.p = "";
81
- /******/
82
- /******/
83
- /******/ // Load entry module and return exports
84
- /******/ return __webpack_require__(__webpack_require__.s = 61);
85
- /******/ })
86
- /************************************************************************/
87
- /******/ ({
1
+ 'use strict';
88
2
 
89
- /***/ 61:
90
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
3
+ Object.defineProperty(exports, '__esModule', { value: true });
91
4
 
92
- "use strict";
93
- __webpack_require__.r(__webpack_exports__);
94
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "DOWN_KEY_CODE", function() { return DOWN_KEY_CODE; });
95
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ENTER_KEY_CODE", function() { return ENTER_KEY_CODE; });
96
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "SPACE_KEY_CODE", function() { return SPACE_KEY_CODE; });
97
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ESCAPE_KEY_CODE", function() { return ESCAPE_KEY_CODE; });
98
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "LEFT_KEY_CODE", function() { return LEFT_KEY_CODE; });
99
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "RIGHT_KEY_CODE", function() { return RIGHT_KEY_CODE; });
100
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "TAB_KEY_CODE", function() { return TAB_KEY_CODE; });
101
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "UP_KEY_CODE", function() { return UP_KEY_CODE; });
102
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "BACKSPACE_KEY_CODE", function() { return BACKSPACE_KEY_CODE; });
103
5
  /**
104
6
  * The down key code.
105
7
  */
106
- var DOWN_KEY_CODE = 40;
107
-
8
+ const DOWN_KEY_CODE = 40;
108
9
  /**
109
10
  * The enter/return key code.
110
11
  */
111
- var ENTER_KEY_CODE = 13;
112
-
12
+ const ENTER_KEY_CODE = 13;
113
13
  /**
114
14
  * The space key code.
115
15
  */
116
- var SPACE_KEY_CODE = 32;
117
-
16
+ const SPACE_KEY_CODE = 32;
118
17
  /**
119
18
  * The escape key code.
120
19
  */
121
- var ESCAPE_KEY_CODE = 27;
122
-
20
+ const ESCAPE_KEY_CODE = 27;
123
21
  /**
124
22
  * The left key code.
125
23
  */
126
- var LEFT_KEY_CODE = 37;
127
-
24
+ const LEFT_KEY_CODE = 37;
128
25
  /**
129
26
  * The right key code.
130
27
  */
131
- var RIGHT_KEY_CODE = 39;
132
-
28
+ const RIGHT_KEY_CODE = 39;
133
29
  /**
134
30
  * The tab key code.
135
31
  */
136
- var TAB_KEY_CODE = 9;
137
-
32
+ const TAB_KEY_CODE = 9;
138
33
  /**
139
34
  * The up key code.
140
35
  */
141
- var UP_KEY_CODE = 38;
142
-
36
+ const UP_KEY_CODE = 38;
143
37
  /**
144
38
  * The up key code.
145
39
  */
146
- var BACKSPACE_KEY_CODE = 8;
147
-
148
- /***/ })
149
-
150
- /******/ });
40
+ const BACKSPACE_KEY_CODE = 8;
41
+
42
+ exports.BACKSPACE_KEY_CODE = BACKSPACE_KEY_CODE;
43
+ exports.DOWN_KEY_CODE = DOWN_KEY_CODE;
44
+ exports.ENTER_KEY_CODE = ENTER_KEY_CODE;
45
+ exports.ESCAPE_KEY_CODE = ESCAPE_KEY_CODE;
46
+ exports.LEFT_KEY_CODE = LEFT_KEY_CODE;
47
+ exports.RIGHT_KEY_CODE = RIGHT_KEY_CODE;
48
+ exports.SPACE_KEY_CODE = SPACE_KEY_CODE;
49
+ exports.TAB_KEY_CODE = TAB_KEY_CODE;
50
+ exports.UP_KEY_CODE = UP_KEY_CODE;
@@ -1,2 +1 @@
1
- !function(n){function t(r){if(e[r])return e[r].exports;var u=e[r]={i:r,l:!1,exports:{}};return n[r].call(u.exports,u,u.exports,t),u.l=!0,u.exports}var e={};t.m=n,t.c=e,t.d=function(n,e,r){t.o(n,e)||Object.defineProperty(n,e,{enumerable:!0,get:r})},t.r=function(n){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(n,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(n,"__esModule",{value:!0})},t.t=function(n,e){if(1&e&&(n=t(n)),8&e)return n;if(4&e&&"object"==typeof n&&n&&n.__esModule)return n;var r=Object.create(null);if(t.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:n}),2&e&&"string"!=typeof n)for(var u in n)t.d(r,u,function(t){return n[t]}.bind(null,u));return r},t.n=function(n){var e=n&&n.__esModule?function(){return n.default}:function(){return n};return t.d(e,"a",e),e},t.o=function(n,t){return Object.prototype.hasOwnProperty.call(n,t)},t.p="",t(t.s=61)}({61:function(n,t,e){"use strict";e.r(t),e.d(t,"DOWN_KEY_CODE",(function(){return r})),e.d(t,"ENTER_KEY_CODE",(function(){return u})),e.d(t,"SPACE_KEY_CODE",(function(){return o})),e.d(t,"ESCAPE_KEY_CODE",(function(){return i})),e.d(t,"LEFT_KEY_CODE",(function(){return f})),e.d(t,"RIGHT_KEY_CODE",(function(){return c})),e.d(t,"TAB_KEY_CODE",(function(){return d})),e.d(t,"UP_KEY_CODE",(function(){return E})),e.d(t,"BACKSPACE_KEY_CODE",(function(){return l}));var r=40,u=13,o=32,i=27,f=37,c=39,d=9,E=38,l=8}});
2
- //# sourceMappingURL=keycodes.min.js.map
1
+ "use strict";Object.defineProperty(exports,"__esModule",{value:!0});exports.BACKSPACE_KEY_CODE=8,exports.DOWN_KEY_CODE=40,exports.ENTER_KEY_CODE=13,exports.ESCAPE_KEY_CODE=27,exports.LEFT_KEY_CODE=37,exports.RIGHT_KEY_CODE=39,exports.SPACE_KEY_CODE=32,exports.TAB_KEY_CODE=9,exports.UP_KEY_CODE=38;