@datawire-ai/busyfile-design-library 1.30.10 → 1.31.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.
Files changed (73) hide show
  1. package/dist/index100.js +4 -4
  2. package/dist/index101.js +2 -2
  3. package/dist/index102.js +2 -2
  4. package/dist/index103.js +13 -67
  5. package/dist/index104.js +8 -15
  6. package/dist/index105.js +50 -9
  7. package/dist/index106.js +219 -49
  8. package/dist/index107.js +29 -219
  9. package/dist/index108.js +15 -30
  10. package/dist/index109.js +10 -181
  11. package/dist/index110.js +3 -7
  12. package/dist/index111.js +12 -13
  13. package/dist/index112.js +3 -226
  14. package/dist/index113.js +46 -3
  15. package/dist/index114.js +13 -46
  16. package/dist/index115.js +221 -645
  17. package/dist/index116.js +648 -12
  18. package/dist/index12.js +150 -85
  19. package/dist/index121.js +12 -6
  20. package/dist/index122.js +204 -10
  21. package/dist/index123.js +20 -204
  22. package/dist/index124.js +399 -21
  23. package/dist/index125.js +6 -400
  24. package/dist/index126.js +25 -2
  25. package/dist/index127.js +29 -53
  26. package/dist/index128.js +5 -65
  27. package/dist/index129.js +2 -25
  28. package/dist/index130.js +53 -29
  29. package/dist/index131.js +65 -5
  30. package/dist/index200.js +5 -2
  31. package/dist/index201.js +3 -2
  32. package/dist/index202.js +24 -5
  33. package/dist/index203.js +110 -3
  34. package/dist/index204.js +15 -23
  35. package/dist/index205.js +518 -103
  36. package/dist/index206.js +126 -14
  37. package/dist/index207.js +125 -516
  38. package/dist/index208.js +2 -128
  39. package/dist/index209.js +2 -134
  40. package/dist/index26.js +31 -17
  41. package/dist/index268.js +69 -65
  42. package/dist/index269.js +8 -68
  43. package/dist/index270.js +14 -9
  44. package/dist/index271.js +66 -14
  45. package/dist/index272.js +64 -65
  46. package/dist/index42.js +5 -5
  47. package/dist/index44.js +8 -8
  48. package/dist/index46.js +6 -6
  49. package/dist/index49.js +7 -7
  50. package/dist/index52.js +6 -6
  51. package/dist/index53.js +17 -17
  52. package/dist/index59.js +4 -4
  53. package/dist/index63.js +1 -1
  54. package/dist/index74.js +1 -1
  55. package/dist/index75.js +6 -6
  56. package/dist/index80.js +2 -2
  57. package/dist/index82.js +14 -14
  58. package/dist/index85.js +8 -8
  59. package/dist/index86.js +2 -2
  60. package/dist/index87.js +4 -4
  61. package/dist/index91.js +6 -10
  62. package/dist/index92.js +52 -4
  63. package/dist/index93.js +5 -33
  64. package/dist/index94.js +24 -12
  65. package/dist/index95.js +68 -5
  66. package/dist/index96.js +33 -51
  67. package/dist/index97.js +181 -5
  68. package/dist/index98.js +7 -24
  69. package/dist/index99.js +1 -1
  70. package/dist/style.css +1 -1
  71. package/dist/theme.css +1 -1
  72. package/dist/types/index.d.ts +9 -4
  73. package/package.json +1 -1
package/dist/index206.js CHANGED
@@ -1,18 +1,130 @@
1
- import { __rest as o, __assign as d } from "./index129.js";
2
- import * as n from "react";
3
- var i = function(r) {
4
- var e = r.sideCar, a = o(r, ["sideCar"]);
5
- if (!e)
6
- throw new Error("Sidecar: please provide `sideCar` property to import the right car");
7
- var t = e.read();
8
- if (!t)
9
- throw new Error("Sidecar medium not found");
10
- return n.createElement(t, d({}, a));
1
+ const j = ["top", "right", "bottom", "left"], m = Math.min, p = Math.max, C = Math.round, L = Math.floor, E = (t) => ({
2
+ x: t,
3
+ y: t
4
+ }), h = {
5
+ left: "right",
6
+ right: "left",
7
+ bottom: "top",
8
+ top: "bottom"
9
+ }, x = {
10
+ start: "end",
11
+ end: "start"
11
12
  };
12
- i.isSideCarExport = !0;
13
- function p(r, e) {
14
- return r.useMedium(e), i;
13
+ function R(t, e, n) {
14
+ return p(t, m(e, n));
15
+ }
16
+ function T(t, e) {
17
+ return typeof t == "function" ? t(e) : t;
18
+ }
19
+ function g(t) {
20
+ return t.split("-")[0];
21
+ }
22
+ function a(t) {
23
+ return t.split("-")[1];
24
+ }
25
+ function b(t) {
26
+ return t === "x" ? "y" : "x";
27
+ }
28
+ function d(t) {
29
+ return t === "y" ? "height" : "width";
30
+ }
31
+ const A = /* @__PURE__ */ new Set(["top", "bottom"]);
32
+ function P(t) {
33
+ return A.has(g(t)) ? "y" : "x";
34
+ }
35
+ function y(t) {
36
+ return b(P(t));
37
+ }
38
+ function k(t, e, n) {
39
+ n === void 0 && (n = !1);
40
+ const r = a(t), i = y(t), o = d(i);
41
+ let c = i === "x" ? r === (n ? "end" : "start") ? "right" : "left" : r === "start" ? "bottom" : "top";
42
+ return e.reference[o] > e.floating[o] && (c = f(c)), [c, f(c)];
43
+ }
44
+ function q(t) {
45
+ const e = f(t);
46
+ return [s(t), e, s(e)];
47
+ }
48
+ function s(t) {
49
+ return t.replace(/start|end/g, (e) => x[e]);
50
+ }
51
+ const u = ["left", "right"], l = ["right", "left"], M = ["top", "bottom"], O = ["bottom", "top"];
52
+ function S(t, e, n) {
53
+ switch (t) {
54
+ case "top":
55
+ case "bottom":
56
+ return n ? e ? l : u : e ? u : l;
57
+ case "left":
58
+ case "right":
59
+ return e ? M : O;
60
+ default:
61
+ return [];
62
+ }
63
+ }
64
+ function z(t, e, n, r) {
65
+ const i = a(t);
66
+ let o = S(g(t), n === "start", r);
67
+ return i && (o = o.map((c) => c + "-" + i), e && (o = o.concat(o.map(s)))), o;
68
+ }
69
+ function f(t) {
70
+ return t.replace(/left|right|bottom|top/g, (e) => h[e]);
71
+ }
72
+ function w(t) {
73
+ return {
74
+ top: 0,
75
+ right: 0,
76
+ bottom: 0,
77
+ left: 0,
78
+ ...t
79
+ };
80
+ }
81
+ function B(t) {
82
+ return typeof t != "number" ? w(t) : {
83
+ top: t,
84
+ right: t,
85
+ bottom: t,
86
+ left: t
87
+ };
88
+ }
89
+ function D(t) {
90
+ const {
91
+ x: e,
92
+ y: n,
93
+ width: r,
94
+ height: i
95
+ } = t;
96
+ return {
97
+ width: r,
98
+ height: i,
99
+ top: n,
100
+ left: e,
101
+ right: e + r,
102
+ bottom: n + i,
103
+ x: e,
104
+ y: n
105
+ };
15
106
  }
16
107
  export {
17
- p as exportSidecar
108
+ R as clamp,
109
+ E as createCoords,
110
+ T as evaluate,
111
+ w as expandPaddingObject,
112
+ L as floor,
113
+ a as getAlignment,
114
+ y as getAlignmentAxis,
115
+ k as getAlignmentSides,
116
+ d as getAxisLength,
117
+ q as getExpandedPlacements,
118
+ s as getOppositeAlignmentPlacement,
119
+ b as getOppositeAxis,
120
+ z as getOppositeAxisPlacements,
121
+ f as getOppositePlacement,
122
+ B as getPaddingObject,
123
+ g as getSide,
124
+ P as getSideAxis,
125
+ p as max,
126
+ m as min,
127
+ D as rectToClientRect,
128
+ C as round,
129
+ j as sides
18
130
  };