@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.
- package/js/constants/design-tokens.js +2293 -5484
- package/js/constants/design-tokens.min.js +1 -2
- package/js/constants/index.js +30 -199
- package/js/constants/index.min.js +1 -2
- package/js/constants/keycodes.js +21 -121
- package/js/constants/keycodes.min.js +1 -2
- package/js/custom-colors.js +21 -1088
- package/js/custom-colors.min.js +1 -2
- package/js/date-picker.js +32 -2835
- package/js/date-picker.min.js +1 -2
- package/js/utils.js +229 -4290
- package/js/utils.min.js +1 -2
- package/lumx.css +13051 -1
- package/lumx.min.css +1 -1
- package/package.json +10 -34
- package/js/constants/design-tokens.min.js.map +0 -1
- package/js/constants/index.min.js.map +0 -1
- package/js/constants/keycodes.min.js.map +0 -1
- package/js/custom-colors.min.js.map +0 -1
- package/js/date-picker.min.js.map +0 -1
- package/js/utils.min.js.map +0 -1
package/js/constants/keycodes.js
CHANGED
|
@@ -1,150 +1,50 @@
|
|
|
1
|
-
|
|
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
|
-
|
|
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
|
-
|
|
107
|
-
|
|
8
|
+
const DOWN_KEY_CODE = 40;
|
|
108
9
|
/**
|
|
109
10
|
* The enter/return key code.
|
|
110
11
|
*/
|
|
111
|
-
|
|
112
|
-
|
|
12
|
+
const ENTER_KEY_CODE = 13;
|
|
113
13
|
/**
|
|
114
14
|
* The space key code.
|
|
115
15
|
*/
|
|
116
|
-
|
|
117
|
-
|
|
16
|
+
const SPACE_KEY_CODE = 32;
|
|
118
17
|
/**
|
|
119
18
|
* The escape key code.
|
|
120
19
|
*/
|
|
121
|
-
|
|
122
|
-
|
|
20
|
+
const ESCAPE_KEY_CODE = 27;
|
|
123
21
|
/**
|
|
124
22
|
* The left key code.
|
|
125
23
|
*/
|
|
126
|
-
|
|
127
|
-
|
|
24
|
+
const LEFT_KEY_CODE = 37;
|
|
128
25
|
/**
|
|
129
26
|
* The right key code.
|
|
130
27
|
*/
|
|
131
|
-
|
|
132
|
-
|
|
28
|
+
const RIGHT_KEY_CODE = 39;
|
|
133
29
|
/**
|
|
134
30
|
* The tab key code.
|
|
135
31
|
*/
|
|
136
|
-
|
|
137
|
-
|
|
32
|
+
const TAB_KEY_CODE = 9;
|
|
138
33
|
/**
|
|
139
34
|
* The up key code.
|
|
140
35
|
*/
|
|
141
|
-
|
|
142
|
-
|
|
36
|
+
const UP_KEY_CODE = 38;
|
|
143
37
|
/**
|
|
144
38
|
* The up key code.
|
|
145
39
|
*/
|
|
146
|
-
|
|
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
|
-
|
|
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;
|