@ztwoint/z-ui 0.1.73 → 0.1.75
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/dist/components/table/table.js +16 -16
- package/dist/components/table-filter/table-filter-button.js +1 -1
- package/dist/css/styles/tailwind.css +1 -1
- package/dist/node_modules/@atlaskit/pragmatic-drag-and-drop/dist/esm/ledger/dispatch-consumer-event.js +2 -2
- package/dist/node_modules/@atlaskit/pragmatic-drag-and-drop/dist/esm/util/detect-broken-drag.js +2 -2
- package/dist/node_modules/bind-event-listener/dist/index.js +2 -2
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import p from "../../../../../raf-schd/dist/raf-schd.esm.js";
|
|
2
2
|
var s = p(function(a) {
|
|
3
3
|
return a();
|
|
4
|
-
}), d = /* @__PURE__ */ function() {
|
|
4
|
+
}), d = /* @__PURE__ */ (function() {
|
|
5
5
|
var a = null;
|
|
6
6
|
function n(l) {
|
|
7
7
|
var o = requestAnimationFrame(function() {
|
|
@@ -19,7 +19,7 @@ var s = p(function(a) {
|
|
|
19
19
|
schedule: n,
|
|
20
20
|
flush: t
|
|
21
21
|
};
|
|
22
|
-
}();
|
|
22
|
+
})();
|
|
23
23
|
function g(a) {
|
|
24
24
|
var n = a.source, t = a.initial, l = a.dispatchEvent, o = {
|
|
25
25
|
dropTargets: []
|
package/dist/node_modules/@atlaskit/pragmatic-drag-and-drop/dist/esm/util/detect-broken-drag.js
CHANGED
|
@@ -21,7 +21,7 @@ function o(e) {
|
|
|
21
21
|
// The most I've seen is 3
|
|
22
22
|
{
|
|
23
23
|
type: "pointermove",
|
|
24
|
-
listener: /* @__PURE__ */ function() {
|
|
24
|
+
listener: /* @__PURE__ */ (function() {
|
|
25
25
|
var r = 0;
|
|
26
26
|
return function() {
|
|
27
27
|
if (r < 20) {
|
|
@@ -30,7 +30,7 @@ function o(e) {
|
|
|
30
30
|
}
|
|
31
31
|
n();
|
|
32
32
|
};
|
|
33
|
-
}()
|
|
33
|
+
})()
|
|
34
34
|
},
|
|
35
35
|
// ### Second detection: "pointerdown" events
|
|
36
36
|
// If we receive this event then we know that a drag operation has finished
|
|
@@ -3,7 +3,7 @@ import { __require as u } from "./bind.js";
|
|
|
3
3
|
import { __require as d } from "./bind-all.js";
|
|
4
4
|
var i;
|
|
5
5
|
function _() {
|
|
6
|
-
return i ? r : (i = 1, function(e) {
|
|
6
|
+
return i ? r : (i = 1, (function(e) {
|
|
7
7
|
Object.defineProperty(e, "__esModule", { value: !0 }), e.bindAll = e.bind = void 0;
|
|
8
8
|
var n = /* @__PURE__ */ u();
|
|
9
9
|
Object.defineProperty(e, "bind", { enumerable: !0, get: function() {
|
|
@@ -13,7 +13,7 @@ function _() {
|
|
|
13
13
|
Object.defineProperty(e, "bindAll", { enumerable: !0, get: function() {
|
|
14
14
|
return t.bindAll;
|
|
15
15
|
} });
|
|
16
|
-
}(r), r);
|
|
16
|
+
})(r), r);
|
|
17
17
|
}
|
|
18
18
|
export {
|
|
19
19
|
_ as __require
|