@elice/material-runbox 1.260825.0-runboxusability.3 → 1.260825.0-runboxusability.5

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 (85) hide show
  1. package/cjs/_virtual/_rollupPluginBabelHelpers.js +0 -98
  2. package/cjs/assets/runbox-loading.gif.js +7 -0
  3. package/cjs/components/material-runbox/MaterialRunboxContent.js +3 -2
  4. package/cjs/components/material-runbox/MaterialRunboxHeader.js +25 -10
  5. package/cjs/components/material-runbox/actions/MaterialRunboxActionDisconnect.js +25 -0
  6. package/cjs/components/material-runbox/actions/MaterialRunboxActionDisconnectMenuItem.d.ts +6 -0
  7. package/cjs/components/material-runbox/actions/MaterialRunboxActionDisconnectMenuItem.js +96 -0
  8. package/cjs/components/material-runbox/actions/MaterialRunboxActionMenu.d.ts +1 -0
  9. package/cjs/components/material-runbox/actions/MaterialRunboxActionMenu.js +7 -1
  10. package/cjs/components/material-runbox/disk/MaterialRunboxDiskUsageAlert.d.ts +3 -1
  11. package/cjs/components/material-runbox/disk/MaterialRunboxDiskUsageAlert.js +6 -4
  12. package/cjs/components/material-runbox/disk/MaterialRunboxEnvResetButton.d.ts +1 -7
  13. package/cjs/components/material-runbox/disk/MaterialRunboxEnvResetButton.js +3 -7
  14. package/cjs/components/material-runbox/hooks/useRunboxEnvReset.d.ts +2 -9
  15. package/cjs/components/material-runbox/hooks/useRunboxEnvReset.js +30 -67
  16. package/cjs/components/material-runbox/locales/en.json.js +1 -1
  17. package/cjs/components/material-runbox/locales/ja.json.js +1 -1
  18. package/cjs/components/material-runbox/locales/ko.json.js +1 -1
  19. package/cjs/components/material-runbox/locales/th.json.js +1 -1
  20. package/cjs/components/material-runbox/runtime/Runtime.js +2 -1
  21. package/cjs/components/material-runbox/runtime/RuntimeOverlayAssigned.d.ts +2 -3
  22. package/cjs/components/material-runbox/runtime/RuntimeOverlayAssigned.js +5 -52
  23. package/cjs/components/material-runbox/runtime/RuntimeOverlayLoading.d.ts +7 -0
  24. package/cjs/components/material-runbox/runtime/RuntimeOverlayLoading.js +241 -0
  25. package/cjs/components/material-runbox/runtime/RuntimeOverlayQueued.d.ts +2 -3
  26. package/cjs/components/material-runbox/runtime/RuntimeOverlayQueued.js +5 -62
  27. package/cjs/components/material-runbox/runtime/RuntimeOverlayTerminated.d.ts +3 -1
  28. package/cjs/components/material-runbox/runtime/RuntimeOverlayTerminated.js +4 -2
  29. package/cjs/components/material-runbox/status/MaterialRunboxStatusButton.d.ts +3 -1
  30. package/cjs/components/material-runbox/status/MaterialRunboxStatusButton.js +9 -5
  31. package/cjs/components/material-runbox/status/MaterialRunboxStatusPopover.d.ts +3 -1
  32. package/cjs/components/material-runbox/status/MaterialRunboxStatusPopover.js +6 -4
  33. package/cjs/components/material-runbox/timer/MaterialRunboxTimer.js +3 -1
  34. package/cjs/components/shared/hooks/index.d.ts +1 -0
  35. package/cjs/components/shared/hooks/index.js +7 -0
  36. package/cjs/components/shared/hooks/useBreakpoint.d.ts +4 -0
  37. package/cjs/components/shared/hooks/useBreakpoint.js +12 -0
  38. package/cjs/utils/index.d.ts +0 -1
  39. package/cjs/utils/index.js +0 -3
  40. package/es/_virtual/_rollupPluginBabelHelpers.js +1 -87
  41. package/es/assets/runbox-loading.gif.js +3 -0
  42. package/es/components/material-runbox/MaterialRunboxContent.js +3 -2
  43. package/es/components/material-runbox/MaterialRunboxHeader.js +26 -11
  44. package/es/components/material-runbox/actions/MaterialRunboxActionDisconnect.js +26 -1
  45. package/es/components/material-runbox/actions/MaterialRunboxActionDisconnectMenuItem.d.ts +6 -0
  46. package/es/components/material-runbox/actions/MaterialRunboxActionDisconnectMenuItem.js +88 -0
  47. package/es/components/material-runbox/actions/MaterialRunboxActionMenu.d.ts +1 -0
  48. package/es/components/material-runbox/actions/MaterialRunboxActionMenu.js +7 -1
  49. package/es/components/material-runbox/disk/MaterialRunboxDiskUsageAlert.d.ts +3 -1
  50. package/es/components/material-runbox/disk/MaterialRunboxDiskUsageAlert.js +6 -4
  51. package/es/components/material-runbox/disk/MaterialRunboxEnvResetButton.d.ts +1 -7
  52. package/es/components/material-runbox/disk/MaterialRunboxEnvResetButton.js +3 -7
  53. package/es/components/material-runbox/hooks/useRunboxEnvReset.d.ts +2 -9
  54. package/es/components/material-runbox/hooks/useRunboxEnvReset.js +30 -67
  55. package/es/components/material-runbox/locales/en.json.js +1 -1
  56. package/es/components/material-runbox/locales/ja.json.js +1 -1
  57. package/es/components/material-runbox/locales/ko.json.js +1 -1
  58. package/es/components/material-runbox/locales/th.json.js +1 -1
  59. package/es/components/material-runbox/runtime/Runtime.js +2 -1
  60. package/es/components/material-runbox/runtime/RuntimeOverlayAssigned.d.ts +2 -3
  61. package/es/components/material-runbox/runtime/RuntimeOverlayAssigned.js +6 -53
  62. package/es/components/material-runbox/runtime/RuntimeOverlayLoading.d.ts +7 -0
  63. package/es/components/material-runbox/runtime/RuntimeOverlayLoading.js +237 -0
  64. package/es/components/material-runbox/runtime/RuntimeOverlayQueued.d.ts +2 -3
  65. package/es/components/material-runbox/runtime/RuntimeOverlayQueued.js +6 -63
  66. package/es/components/material-runbox/runtime/RuntimeOverlayTerminated.d.ts +3 -1
  67. package/es/components/material-runbox/runtime/RuntimeOverlayTerminated.js +4 -2
  68. package/es/components/material-runbox/status/MaterialRunboxStatusButton.d.ts +3 -1
  69. package/es/components/material-runbox/status/MaterialRunboxStatusButton.js +9 -5
  70. package/es/components/material-runbox/status/MaterialRunboxStatusPopover.d.ts +3 -1
  71. package/es/components/material-runbox/status/MaterialRunboxStatusPopover.js +6 -4
  72. package/es/components/material-runbox/timer/MaterialRunboxTimer.js +3 -1
  73. package/es/components/shared/hooks/index.d.ts +1 -0
  74. package/es/components/shared/hooks/index.js +1 -0
  75. package/es/components/shared/hooks/useBreakpoint.d.ts +4 -0
  76. package/es/components/shared/hooks/useBreakpoint.js +10 -0
  77. package/es/utils/index.d.ts +0 -1
  78. package/es/utils/index.js +0 -1
  79. package/package.json +5 -5
  80. package/cjs/assets/queue.gif.js +0 -7
  81. package/cjs/utils/polling.d.ts +0 -56
  82. package/cjs/utils/polling.js +0 -108
  83. package/es/assets/queue.gif.js +0 -3
  84. package/es/utils/polling.d.ts +0 -56
  85. package/es/utils/polling.js +0 -105
@@ -11,10 +11,6 @@ function _arrayWithHoles(r) {
11
11
  function _arrayWithoutHoles(r) {
12
12
  if (Array.isArray(r)) return _arrayLikeToArray(r);
13
13
  }
14
- function _assertThisInitialized(e) {
15
- if (void 0 === e) throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
16
- return e;
17
- }
18
14
  function asyncGeneratorStep(n, t, e, r, o, a, c) {
19
15
  try {
20
16
  var i = n[a](c),
@@ -40,24 +36,6 @@ function _asyncToGenerator(n) {
40
36
  });
41
37
  };
42
38
  }
43
- function _callSuper(t, o, e) {
44
- return o = _getPrototypeOf(o), _possibleConstructorReturn(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], _getPrototypeOf(t).constructor) : o.apply(t, e));
45
- }
46
- function _classCallCheck(a, n) {
47
- if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function");
48
- }
49
- function _construct(t, e, r) {
50
- if (_isNativeReflectConstruct()) return Reflect.construct.apply(null, arguments);
51
- var o = [null];
52
- o.push.apply(o, e);
53
- var p = new (t.bind.apply(t, o))();
54
- return r && _setPrototypeOf(p, r.prototype), p;
55
- }
56
- function _createClass(e, r, t) {
57
- return Object.defineProperty(e, "prototype", {
58
- writable: false
59
- }), e;
60
- }
61
39
  function _defineProperty(e, r, t) {
62
40
  return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, {
63
41
  value: t,
@@ -66,38 +44,6 @@ function _defineProperty(e, r, t) {
66
44
  writable: true
67
45
  }) : e[r] = t, e;
68
46
  }
69
- function _getPrototypeOf(t) {
70
- return _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function (t) {
71
- return t.__proto__ || Object.getPrototypeOf(t);
72
- }, _getPrototypeOf(t);
73
- }
74
- function _inherits(t, e) {
75
- if ("function" != typeof e && null !== e) throw new TypeError("Super expression must either be null or a function");
76
- t.prototype = Object.create(e && e.prototype, {
77
- constructor: {
78
- value: t,
79
- writable: true,
80
- configurable: true
81
- }
82
- }), Object.defineProperty(t, "prototype", {
83
- writable: false
84
- }), e && _setPrototypeOf(t, e);
85
- }
86
- function _isNativeFunction(t) {
87
- try {
88
- return -1 !== Function.toString.call(t).indexOf("[native code]");
89
- } catch (n) {
90
- return "function" == typeof t;
91
- }
92
- }
93
- function _isNativeReflectConstruct() {
94
- try {
95
- var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {}));
96
- } catch (t) {}
97
- return (_isNativeReflectConstruct = function () {
98
- return !!t;
99
- })();
100
- }
101
47
  function _iterableToArray(r) {
102
48
  if ("undefined" != typeof Symbol && null != r[Symbol.iterator] || null != r["@@iterator"]) return Array.from(r);
103
49
  }
@@ -134,11 +80,6 @@ function _nonIterableRest() {
134
80
  function _nonIterableSpread() {
135
81
  throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
136
82
  }
137
- function _possibleConstructorReturn(t, e) {
138
- if (e && ("object" == typeof e || "function" == typeof e)) return e;
139
- if (void 0 !== e) throw new TypeError("Derived constructors may only return object or undefined");
140
- return _assertThisInitialized(t);
141
- }
142
83
  function _regenerator() {
143
84
  /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/babel/babel/blob/main/packages/babel-helpers/LICENSE */
144
85
  var e,
@@ -247,11 +188,6 @@ function _regeneratorDefine(e, r, n, t) {
247
188
  }) : e[r] = n : (o("next", 0), o("throw", 1), o("return", 2));
248
189
  }, _regeneratorDefine(e, r, n, t);
249
190
  }
250
- function _setPrototypeOf(t, e) {
251
- return _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function (t, e) {
252
- return t.__proto__ = e, t;
253
- }, _setPrototypeOf(t, e);
254
- }
255
191
  function _slicedToArray(r, e) {
256
192
  return _arrayWithHoles(r) || _iterableToArrayLimit(r, e) || _unsupportedIterableToArray(r, e) || _nonIterableRest();
257
193
  }
@@ -286,55 +222,21 @@ function _unsupportedIterableToArray(r, a) {
286
222
  return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0;
287
223
  }
288
224
  }
289
- function _wrapNativeSuper(t) {
290
- var r = "function" == typeof Map ? new Map() : void 0;
291
- return _wrapNativeSuper = function (t) {
292
- if (null === t || !_isNativeFunction(t)) return t;
293
- if ("function" != typeof t) throw new TypeError("Super expression must either be null or a function");
294
- if (void 0 !== r) {
295
- if (r.has(t)) return r.get(t);
296
- r.set(t, Wrapper);
297
- }
298
- function Wrapper() {
299
- return _construct(t, arguments, _getPrototypeOf(this).constructor);
300
- }
301
- return Wrapper.prototype = Object.create(t.prototype, {
302
- constructor: {
303
- value: Wrapper,
304
- enumerable: false,
305
- writable: true,
306
- configurable: true
307
- }
308
- }), _setPrototypeOf(Wrapper, t);
309
- }, _wrapNativeSuper(t);
310
- }
311
225
 
312
226
  exports.arrayLikeToArray = _arrayLikeToArray;
313
227
  exports.arrayWithHoles = _arrayWithHoles;
314
228
  exports.arrayWithoutHoles = _arrayWithoutHoles;
315
- exports.assertThisInitialized = _assertThisInitialized;
316
229
  exports.asyncToGenerator = _asyncToGenerator;
317
- exports.callSuper = _callSuper;
318
- exports.classCallCheck = _classCallCheck;
319
- exports.construct = _construct;
320
- exports.createClass = _createClass;
321
230
  exports.defineProperty = _defineProperty;
322
- exports.getPrototypeOf = _getPrototypeOf;
323
- exports.inherits = _inherits;
324
- exports.isNativeFunction = _isNativeFunction;
325
- exports.isNativeReflectConstruct = _isNativeReflectConstruct;
326
231
  exports.iterableToArray = _iterableToArray;
327
232
  exports.iterableToArrayLimit = _iterableToArrayLimit;
328
233
  exports.nonIterableRest = _nonIterableRest;
329
234
  exports.nonIterableSpread = _nonIterableSpread;
330
- exports.possibleConstructorReturn = _possibleConstructorReturn;
331
235
  exports.regenerator = _regenerator;
332
236
  exports.regeneratorDefine = _regeneratorDefine;
333
- exports.setPrototypeOf = _setPrototypeOf;
334
237
  exports.slicedToArray = _slicedToArray;
335
238
  exports.taggedTemplateLiteral = _taggedTemplateLiteral;
336
239
  exports.toConsumableArray = _toConsumableArray;
337
240
  exports.toPrimitive = _toPrimitive;
338
241
  exports.toPropertyKey = _toPropertyKey;
339
242
  exports.unsupportedIterableToArray = _unsupportedIterableToArray;
340
- exports.wrapNativeSuper = _wrapNativeSuper;