@revolist/revogrid 3.2.13 → 3.2.16

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 (62) hide show
  1. package/custom-element/_baseIteratee.js +2070 -0
  2. package/custom-element/columnService.js +743 -0
  3. package/custom-element/consts.js +46 -0
  4. package/custom-element/data.store.js +545 -0
  5. package/custom-element/debounce.js +217 -0
  6. package/custom-element/dimension.helpers.js +340 -0
  7. package/custom-element/each.js +180 -0
  8. package/custom-element/filter.button.js +36 -0
  9. package/custom-element/identity.js +26 -0
  10. package/custom-element/index.d.ts +15 -98
  11. package/custom-element/index.js +15 -29221
  12. package/custom-element/isSymbol.js +220 -0
  13. package/custom-element/keys.js +561 -0
  14. package/custom-element/localScrollService.js +86 -0
  15. package/custom-element/revo-grid.d.ts +11 -0
  16. package/custom-element/revo-grid.js +3662 -0
  17. package/custom-element/revogr-clipboard.d.ts +11 -0
  18. package/custom-element/revogr-clipboard.js +72 -0
  19. package/custom-element/revogr-data.d.ts +11 -0
  20. package/custom-element/revogr-data.js +9 -0
  21. package/custom-element/revogr-data2.js +171 -0
  22. package/custom-element/revogr-edit.d.ts +11 -0
  23. package/custom-element/revogr-edit.js +9 -0
  24. package/custom-element/revogr-edit2.js +402 -0
  25. package/custom-element/revogr-filter-panel.d.ts +11 -0
  26. package/custom-element/revogr-filter-panel.js +308 -0
  27. package/custom-element/revogr-focus.d.ts +11 -0
  28. package/custom-element/revogr-focus.js +9 -0
  29. package/custom-element/revogr-focus2.js +64 -0
  30. package/custom-element/revogr-header.d.ts +11 -0
  31. package/custom-element/revogr-header.js +9 -0
  32. package/custom-element/revogr-header2.js +591 -0
  33. package/custom-element/revogr-order-editor.d.ts +11 -0
  34. package/custom-element/revogr-order-editor.js +9 -0
  35. package/custom-element/revogr-order-editor2.js +190 -0
  36. package/custom-element/revogr-overlay-selection.d.ts +11 -0
  37. package/custom-element/revogr-overlay-selection.js +9 -0
  38. package/custom-element/revogr-overlay-selection2.js +741 -0
  39. package/custom-element/revogr-row-headers.d.ts +11 -0
  40. package/custom-element/revogr-row-headers.js +9 -0
  41. package/custom-element/revogr-row-headers2.js +403 -0
  42. package/custom-element/revogr-scroll-virtual.d.ts +11 -0
  43. package/custom-element/revogr-scroll-virtual.js +9 -0
  44. package/custom-element/revogr-scroll-virtual2.js +135 -0
  45. package/custom-element/revogr-temp-range.d.ts +11 -0
  46. package/custom-element/revogr-temp-range.js +9 -0
  47. package/custom-element/revogr-temp-range2.js +17275 -0
  48. package/custom-element/revogr-viewport-scroll.d.ts +11 -0
  49. package/custom-element/revogr-viewport-scroll.js +9 -0
  50. package/custom-element/revogr-viewport-scroll2.js +367 -0
  51. package/custom-element/selection.utils.js +106 -0
  52. package/custom-element/toInteger.js +107 -0
  53. package/custom-element/toNumber.js +105 -0
  54. package/custom-element/utils.js +69 -0
  55. package/dist/cjs/revo-grid_11.cjs.entry.js +1 -1
  56. package/dist/collection/plugins/filter/filter.plugin.js +1 -1
  57. package/dist/collection/utilsExternal/generate-data.js +1 -0
  58. package/dist/esm/revo-grid_11.entry.js +1 -1
  59. package/dist/esm-es5/revo-grid_11.entry.js +1 -1
  60. package/dist/revo-grid/revo-grid_11.entry.js +1 -1
  61. package/dist/revo-grid/revo-grid_11.system.entry.js +1 -1
  62. package/package.json +2 -2
@@ -0,0 +1,220 @@
1
+ /*!
2
+ * Built by Revolist
3
+ */
4
+ var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
5
+
6
+ function createCommonjsModule(fn, basedir, module) {
7
+ return module = {
8
+ path: basedir,
9
+ exports: {},
10
+ require: function (path, base) {
11
+ return commonjsRequire();
12
+ }
13
+ }, fn(module, module.exports), module.exports;
14
+ }
15
+
16
+ function commonjsRequire () {
17
+ throw new Error('Dynamic requires are not currently supported by @rollup/plugin-commonjs');
18
+ }
19
+
20
+ /** Detect free variable `global` from Node.js. */
21
+ var freeGlobal = typeof commonjsGlobal == 'object' && commonjsGlobal && commonjsGlobal.Object === Object && commonjsGlobal;
22
+
23
+ var _freeGlobal = freeGlobal;
24
+
25
+ /** Detect free variable `self`. */
26
+ var freeSelf = typeof self == 'object' && self && self.Object === Object && self;
27
+
28
+ /** Used as a reference to the global object. */
29
+ var root = _freeGlobal || freeSelf || Function('return this')();
30
+
31
+ var _root = root;
32
+
33
+ /** Built-in value references. */
34
+ var Symbol = _root.Symbol;
35
+
36
+ var _Symbol = Symbol;
37
+
38
+ /** Used for built-in method references. */
39
+ var objectProto$1 = Object.prototype;
40
+
41
+ /** Used to check objects for own properties. */
42
+ var hasOwnProperty = objectProto$1.hasOwnProperty;
43
+
44
+ /**
45
+ * Used to resolve the
46
+ * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring)
47
+ * of values.
48
+ */
49
+ var nativeObjectToString$1 = objectProto$1.toString;
50
+
51
+ /** Built-in value references. */
52
+ var symToStringTag$1 = _Symbol ? _Symbol.toStringTag : undefined;
53
+
54
+ /**
55
+ * A specialized version of `baseGetTag` which ignores `Symbol.toStringTag` values.
56
+ *
57
+ * @private
58
+ * @param {*} value The value to query.
59
+ * @returns {string} Returns the raw `toStringTag`.
60
+ */
61
+ function getRawTag(value) {
62
+ var isOwn = hasOwnProperty.call(value, symToStringTag$1),
63
+ tag = value[symToStringTag$1];
64
+
65
+ try {
66
+ value[symToStringTag$1] = undefined;
67
+ var unmasked = true;
68
+ } catch (e) {}
69
+
70
+ var result = nativeObjectToString$1.call(value);
71
+ if (unmasked) {
72
+ if (isOwn) {
73
+ value[symToStringTag$1] = tag;
74
+ } else {
75
+ delete value[symToStringTag$1];
76
+ }
77
+ }
78
+ return result;
79
+ }
80
+
81
+ var _getRawTag = getRawTag;
82
+
83
+ /** Used for built-in method references. */
84
+ var objectProto = Object.prototype;
85
+
86
+ /**
87
+ * Used to resolve the
88
+ * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring)
89
+ * of values.
90
+ */
91
+ var nativeObjectToString = objectProto.toString;
92
+
93
+ /**
94
+ * Converts `value` to a string using `Object.prototype.toString`.
95
+ *
96
+ * @private
97
+ * @param {*} value The value to convert.
98
+ * @returns {string} Returns the converted string.
99
+ */
100
+ function objectToString(value) {
101
+ return nativeObjectToString.call(value);
102
+ }
103
+
104
+ var _objectToString = objectToString;
105
+
106
+ /** `Object#toString` result references. */
107
+ var nullTag = '[object Null]',
108
+ undefinedTag = '[object Undefined]';
109
+
110
+ /** Built-in value references. */
111
+ var symToStringTag = _Symbol ? _Symbol.toStringTag : undefined;
112
+
113
+ /**
114
+ * The base implementation of `getTag` without fallbacks for buggy environments.
115
+ *
116
+ * @private
117
+ * @param {*} value The value to query.
118
+ * @returns {string} Returns the `toStringTag`.
119
+ */
120
+ function baseGetTag(value) {
121
+ if (value == null) {
122
+ return value === undefined ? undefinedTag : nullTag;
123
+ }
124
+ return (symToStringTag && symToStringTag in Object(value))
125
+ ? _getRawTag(value)
126
+ : _objectToString(value);
127
+ }
128
+
129
+ var _baseGetTag = baseGetTag;
130
+
131
+ /**
132
+ * Checks if `value` is object-like. A value is object-like if it's not `null`
133
+ * and has a `typeof` result of "object".
134
+ *
135
+ * @static
136
+ * @memberOf _
137
+ * @since 4.0.0
138
+ * @category Lang
139
+ * @param {*} value The value to check.
140
+ * @returns {boolean} Returns `true` if `value` is object-like, else `false`.
141
+ * @example
142
+ *
143
+ * _.isObjectLike({});
144
+ * // => true
145
+ *
146
+ * _.isObjectLike([1, 2, 3]);
147
+ * // => true
148
+ *
149
+ * _.isObjectLike(_.noop);
150
+ * // => false
151
+ *
152
+ * _.isObjectLike(null);
153
+ * // => false
154
+ */
155
+ function isObjectLike(value) {
156
+ return value != null && typeof value == 'object';
157
+ }
158
+
159
+ var isObjectLike_1 = isObjectLike;
160
+
161
+ /**
162
+ * Checks if `value` is the
163
+ * [language type](http://www.ecma-international.org/ecma-262/7.0/#sec-ecmascript-language-types)
164
+ * of `Object`. (e.g. arrays, functions, objects, regexes, `new Number(0)`, and `new String('')`)
165
+ *
166
+ * @static
167
+ * @memberOf _
168
+ * @since 0.1.0
169
+ * @category Lang
170
+ * @param {*} value The value to check.
171
+ * @returns {boolean} Returns `true` if `value` is an object, else `false`.
172
+ * @example
173
+ *
174
+ * _.isObject({});
175
+ * // => true
176
+ *
177
+ * _.isObject([1, 2, 3]);
178
+ * // => true
179
+ *
180
+ * _.isObject(_.noop);
181
+ * // => true
182
+ *
183
+ * _.isObject(null);
184
+ * // => false
185
+ */
186
+ function isObject(value) {
187
+ var type = typeof value;
188
+ return value != null && (type == 'object' || type == 'function');
189
+ }
190
+
191
+ var isObject_1 = isObject;
192
+
193
+ /** `Object#toString` result references. */
194
+ var symbolTag = '[object Symbol]';
195
+
196
+ /**
197
+ * Checks if `value` is classified as a `Symbol` primitive or object.
198
+ *
199
+ * @static
200
+ * @memberOf _
201
+ * @since 4.0.0
202
+ * @category Lang
203
+ * @param {*} value The value to check.
204
+ * @returns {boolean} Returns `true` if `value` is a symbol, else `false`.
205
+ * @example
206
+ *
207
+ * _.isSymbol(Symbol.iterator);
208
+ * // => true
209
+ *
210
+ * _.isSymbol('abc');
211
+ * // => false
212
+ */
213
+ function isSymbol(value) {
214
+ return typeof value == 'symbol' ||
215
+ (isObjectLike_1(value) && _baseGetTag(value) == symbolTag);
216
+ }
217
+
218
+ var isSymbol_1 = isSymbol;
219
+
220
+ export { _baseGetTag as _, commonjsGlobal as a, isObject_1 as b, createCommonjsModule as c, isSymbol_1 as d, _root as e, _Symbol as f, _freeGlobal as g, isObjectLike_1 as i };