git-truck 0.0.0-e598cba → 0.0.0-ec3aecd

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 (3) hide show
  1. package/build/index.js +860 -2
  2. package/cli.js +1 -1
  3. package/package.json +1 -1
package/build/index.js CHANGED
@@ -2696,6 +2696,847 @@ var require_dist = __commonJS({
2696
2696
  }
2697
2697
  });
2698
2698
 
2699
+ // node_modules/react-is/cjs/react-is.production.min.js
2700
+ var require_react_is_production_min = __commonJS({
2701
+ "node_modules/react-is/cjs/react-is.production.min.js"(exports) {
2702
+ "use strict";
2703
+ var b = Symbol.for("react.element"), c = Symbol.for("react.portal"), d = Symbol.for("react.fragment"), e = Symbol.for("react.strict_mode"), f = Symbol.for("react.profiler"), g = Symbol.for("react.provider"), h = Symbol.for("react.context"), k = Symbol.for("react.server_context"), l = Symbol.for("react.forward_ref"), m = Symbol.for("react.suspense"), n = Symbol.for("react.suspense_list"), p = Symbol.for("react.memo"), q = Symbol.for("react.lazy"), t = Symbol.for("react.offscreen"), u;
2704
+ u = Symbol.for("react.module.reference");
2705
+ function v(a) {
2706
+ if (typeof a == "object" && a !== null) {
2707
+ var r = a.$$typeof;
2708
+ switch (r) {
2709
+ case b:
2710
+ switch (a = a.type, a) {
2711
+ case d:
2712
+ case f:
2713
+ case e:
2714
+ case m:
2715
+ case n:
2716
+ return a;
2717
+ default:
2718
+ switch (a = a && a.$$typeof, a) {
2719
+ case k:
2720
+ case h:
2721
+ case l:
2722
+ case q:
2723
+ case p:
2724
+ case g:
2725
+ return a;
2726
+ default:
2727
+ return r;
2728
+ }
2729
+ }
2730
+ case c:
2731
+ return r;
2732
+ }
2733
+ }
2734
+ }
2735
+ exports.ContextConsumer = h;
2736
+ exports.ContextProvider = g;
2737
+ exports.Element = b;
2738
+ exports.ForwardRef = l;
2739
+ exports.Fragment = d;
2740
+ exports.Lazy = q;
2741
+ exports.Memo = p;
2742
+ exports.Portal = c;
2743
+ exports.Profiler = f;
2744
+ exports.StrictMode = e;
2745
+ exports.Suspense = m;
2746
+ exports.SuspenseList = n;
2747
+ exports.isAsyncMode = function() {
2748
+ return !1;
2749
+ };
2750
+ exports.isConcurrentMode = function() {
2751
+ return !1;
2752
+ };
2753
+ exports.isContextConsumer = function(a) {
2754
+ return v(a) === h;
2755
+ };
2756
+ exports.isContextProvider = function(a) {
2757
+ return v(a) === g;
2758
+ };
2759
+ exports.isElement = function(a) {
2760
+ return typeof a == "object" && a !== null && a.$$typeof === b;
2761
+ };
2762
+ exports.isForwardRef = function(a) {
2763
+ return v(a) === l;
2764
+ };
2765
+ exports.isFragment = function(a) {
2766
+ return v(a) === d;
2767
+ };
2768
+ exports.isLazy = function(a) {
2769
+ return v(a) === q;
2770
+ };
2771
+ exports.isMemo = function(a) {
2772
+ return v(a) === p;
2773
+ };
2774
+ exports.isPortal = function(a) {
2775
+ return v(a) === c;
2776
+ };
2777
+ exports.isProfiler = function(a) {
2778
+ return v(a) === f;
2779
+ };
2780
+ exports.isStrictMode = function(a) {
2781
+ return v(a) === e;
2782
+ };
2783
+ exports.isSuspense = function(a) {
2784
+ return v(a) === m;
2785
+ };
2786
+ exports.isSuspenseList = function(a) {
2787
+ return v(a) === n;
2788
+ };
2789
+ exports.isValidElementType = function(a) {
2790
+ return typeof a == "string" || typeof a == "function" || a === d || a === f || a === e || a === m || a === n || a === t || typeof a == "object" && a !== null && (a.$$typeof === q || a.$$typeof === p || a.$$typeof === g || a.$$typeof === h || a.$$typeof === l || a.$$typeof === u || a.getModuleId !== void 0);
2791
+ };
2792
+ exports.typeOf = v;
2793
+ }
2794
+ });
2795
+
2796
+ // node_modules/react-is/index.js
2797
+ var require_react_is = __commonJS({
2798
+ "node_modules/react-is/index.js"(exports, module2) {
2799
+ "use strict";
2800
+ module2.exports = require_react_is_production_min();
2801
+ }
2802
+ });
2803
+
2804
+ // node_modules/shallowequal/index.js
2805
+ var require_shallowequal = __commonJS({
2806
+ "node_modules/shallowequal/index.js"(exports, module2) {
2807
+ module2.exports = function(objA, objB, compare2, compareContext) {
2808
+ var ret = compare2 ? compare2.call(compareContext, objA, objB) : void 0;
2809
+ if (ret !== void 0)
2810
+ return !!ret;
2811
+ if (objA === objB)
2812
+ return !0;
2813
+ if (typeof objA != "object" || !objA || typeof objB != "object" || !objB)
2814
+ return !1;
2815
+ var keysA = Object.keys(objA), keysB = Object.keys(objB);
2816
+ if (keysA.length !== keysB.length)
2817
+ return !1;
2818
+ for (var bHasOwnProperty = Object.prototype.hasOwnProperty.bind(objB), idx = 0; idx < keysA.length; idx++) {
2819
+ var key = keysA[idx];
2820
+ if (!bHasOwnProperty(key))
2821
+ return !1;
2822
+ var valueA = objA[key], valueB = objB[key];
2823
+ if (ret = compare2 ? compare2.call(compareContext, valueA, valueB, key) : void 0, ret === !1 || ret === void 0 && valueA !== valueB)
2824
+ return !1;
2825
+ }
2826
+ return !0;
2827
+ };
2828
+ }
2829
+ });
2830
+
2831
+ // node_modules/@emotion/stylis/dist/stylis.cjs.prod.js
2832
+ var require_stylis_cjs_prod = __commonJS({
2833
+ "node_modules/@emotion/stylis/dist/stylis.cjs.prod.js"(exports) {
2834
+ "use strict";
2835
+ function stylis_min(W) {
2836
+ function X(d, c, e) {
2837
+ var h = c.trim().split(ia);
2838
+ c = h;
2839
+ var a = h.length, m = d.length;
2840
+ switch (m) {
2841
+ case 0:
2842
+ case 1:
2843
+ var b = 0;
2844
+ for (d = m === 0 ? "" : d[0] + " "; b < a; ++b)
2845
+ c[b] = Z(d, c[b], e).trim();
2846
+ break;
2847
+ default:
2848
+ var v = b = 0;
2849
+ for (c = []; b < a; ++b)
2850
+ for (var n = 0; n < m; ++n)
2851
+ c[v++] = Z(d[n] + " ", h[b], e).trim();
2852
+ }
2853
+ return c;
2854
+ }
2855
+ function Z(d, c, e) {
2856
+ var h = c.charCodeAt(0);
2857
+ switch (33 > h && (h = (c = c.trim()).charCodeAt(0)), h) {
2858
+ case 38:
2859
+ return c.replace(F, "$1" + d.trim());
2860
+ case 58:
2861
+ return d.trim() + c.replace(F, "$1" + d.trim());
2862
+ default:
2863
+ if (0 < 1 * e && 0 < c.indexOf("\f"))
2864
+ return c.replace(F, (d.charCodeAt(0) === 58 ? "" : "$1") + d.trim());
2865
+ }
2866
+ return d + c;
2867
+ }
2868
+ function P(d, c, e, h) {
2869
+ var a = d + ";", m = 2 * c + 3 * e + 4 * h;
2870
+ if (m === 944) {
2871
+ d = a.indexOf(":", 9) + 1;
2872
+ var b = a.substring(d, a.length - 1).trim();
2873
+ return b = a.substring(0, d).trim() + b + ";", w === 1 || w === 2 && L(b, 1) ? "-webkit-" + b + b : b;
2874
+ }
2875
+ if (w === 0 || w === 2 && !L(a, 1))
2876
+ return a;
2877
+ switch (m) {
2878
+ case 1015:
2879
+ return a.charCodeAt(10) === 97 ? "-webkit-" + a + a : a;
2880
+ case 951:
2881
+ return a.charCodeAt(3) === 116 ? "-webkit-" + a + a : a;
2882
+ case 963:
2883
+ return a.charCodeAt(5) === 110 ? "-webkit-" + a + a : a;
2884
+ case 1009:
2885
+ if (a.charCodeAt(4) !== 100)
2886
+ break;
2887
+ case 969:
2888
+ case 942:
2889
+ return "-webkit-" + a + a;
2890
+ case 978:
2891
+ return "-webkit-" + a + "-moz-" + a + a;
2892
+ case 1019:
2893
+ case 983:
2894
+ return "-webkit-" + a + "-moz-" + a + "-ms-" + a + a;
2895
+ case 883:
2896
+ if (a.charCodeAt(8) === 45)
2897
+ return "-webkit-" + a + a;
2898
+ if (0 < a.indexOf("image-set(", 11))
2899
+ return a.replace(ja, "$1-webkit-$2") + a;
2900
+ break;
2901
+ case 932:
2902
+ if (a.charCodeAt(4) === 45)
2903
+ switch (a.charCodeAt(5)) {
2904
+ case 103:
2905
+ return "-webkit-box-" + a.replace("-grow", "") + "-webkit-" + a + "-ms-" + a.replace("grow", "positive") + a;
2906
+ case 115:
2907
+ return "-webkit-" + a + "-ms-" + a.replace("shrink", "negative") + a;
2908
+ case 98:
2909
+ return "-webkit-" + a + "-ms-" + a.replace("basis", "preferred-size") + a;
2910
+ }
2911
+ return "-webkit-" + a + "-ms-" + a + a;
2912
+ case 964:
2913
+ return "-webkit-" + a + "-ms-flex-" + a + a;
2914
+ case 1023:
2915
+ if (a.charCodeAt(8) !== 99)
2916
+ break;
2917
+ return "-webkit-box-pack" + (b = a.substring(a.indexOf(":", 15)).replace("flex-", "").replace("space-between", "justify")) + "-webkit-" + a + "-ms-flex-pack" + b + a;
2918
+ case 1005:
2919
+ return ka.test(a) ? a.replace(aa, ":-webkit-") + a.replace(aa, ":-moz-") + a : a;
2920
+ case 1e3:
2921
+ switch (c = (b = a.substring(13).trim()).indexOf("-") + 1, b.charCodeAt(0) + b.charCodeAt(c)) {
2922
+ case 226:
2923
+ b = a.replace(G2, "tb");
2924
+ break;
2925
+ case 232:
2926
+ b = a.replace(G2, "tb-rl");
2927
+ break;
2928
+ case 220:
2929
+ b = a.replace(G2, "lr");
2930
+ break;
2931
+ default:
2932
+ return a;
2933
+ }
2934
+ return "-webkit-" + a + "-ms-" + b + a;
2935
+ case 1017:
2936
+ if (a.indexOf("sticky", 9) === -1)
2937
+ break;
2938
+ case 975:
2939
+ switch (c = (a = d).length - 10, m = (b = (a.charCodeAt(c) === 33 ? a.substring(0, c) : a).substring(d.indexOf(":", 7) + 1).trim()).charCodeAt(0) + (0 | b.charCodeAt(7))) {
2940
+ case 203:
2941
+ if (111 > b.charCodeAt(8))
2942
+ break;
2943
+ case 115:
2944
+ a = a.replace(b, "-webkit-" + b) + ";" + a;
2945
+ break;
2946
+ case 207:
2947
+ case 102:
2948
+ a = a.replace(b, "-webkit-" + (102 < m ? "inline-" : "") + "box") + ";" + a.replace(b, "-webkit-" + b) + ";" + a.replace(b, "-ms-" + b + "box") + ";" + a;
2949
+ }
2950
+ return a + ";";
2951
+ case 938:
2952
+ if (a.charCodeAt(5) === 45)
2953
+ switch (a.charCodeAt(6)) {
2954
+ case 105:
2955
+ return b = a.replace("-items", ""), "-webkit-" + a + "-webkit-box-" + b + "-ms-flex-" + b + a;
2956
+ case 115:
2957
+ return "-webkit-" + a + "-ms-flex-item-" + a.replace(ba, "") + a;
2958
+ default:
2959
+ return "-webkit-" + a + "-ms-flex-line-pack" + a.replace("align-content", "").replace(ba, "") + a;
2960
+ }
2961
+ break;
2962
+ case 973:
2963
+ case 989:
2964
+ if (a.charCodeAt(3) !== 45 || a.charCodeAt(4) === 122)
2965
+ break;
2966
+ case 931:
2967
+ case 953:
2968
+ if (la.test(d) === !0)
2969
+ return (b = d.substring(d.indexOf(":") + 1)).charCodeAt(0) === 115 ? P(d.replace("stretch", "fill-available"), c, e, h).replace(":fill-available", ":stretch") : a.replace(b, "-webkit-" + b) + a.replace(b, "-moz-" + b.replace("fill-", "")) + a;
2970
+ break;
2971
+ case 962:
2972
+ if (a = "-webkit-" + a + (a.charCodeAt(5) === 102 ? "-ms-" + a : "") + a, e + h === 211 && a.charCodeAt(13) === 105 && 0 < a.indexOf("transform", 10))
2973
+ return a.substring(0, a.indexOf(";", 27) + 1).replace(ma, "$1-webkit-$2") + a;
2974
+ }
2975
+ return a;
2976
+ }
2977
+ function L(d, c) {
2978
+ var e = d.indexOf(c === 1 ? ":" : "{"), h = d.substring(0, c !== 3 ? e : 10);
2979
+ return e = d.substring(e + 1, d.length - 1), R(c !== 2 ? h : h.replace(na, "$1"), e, c);
2980
+ }
2981
+ function ea(d, c) {
2982
+ var e = P(c, c.charCodeAt(0), c.charCodeAt(1), c.charCodeAt(2));
2983
+ return e !== c + ";" ? e.replace(oa, " or ($1)").substring(4) : "(" + c + ")";
2984
+ }
2985
+ function H(d, c, e, h, a, m, b, v, n, q) {
2986
+ for (var w2, g = 0, x = c; g < A; ++g)
2987
+ switch (w2 = S[g].call(B, d, x, e, h, a, m, b, v, n, q)) {
2988
+ case void 0:
2989
+ case !1:
2990
+ case !0:
2991
+ case null:
2992
+ break;
2993
+ default:
2994
+ x = w2;
2995
+ }
2996
+ if (x !== c)
2997
+ return x;
2998
+ }
2999
+ function U(d) {
3000
+ return (d = d.prefix) !== void 0 && (R = null, d ? typeof d != "function" ? w = 1 : (w = 2, R = d) : w = 0), U;
3001
+ }
3002
+ function B(d, c) {
3003
+ var e = d;
3004
+ if (33 > e.charCodeAt(0) && (e = e.trim()), e = [e], 0 < A) {
3005
+ var h = H(-1, c, e, e, D, z, 0, 0, 0, 0);
3006
+ h !== void 0 && typeof h == "string" && (c = h);
3007
+ }
3008
+ var a = function M(d2, c2, e2, h2, a2) {
3009
+ for (var q, g, k, y, C, m = 0, b = 0, v = 0, n = 0, x = 0, K = 0, u = k = q = 0, l = 0, r = 0, I = 0, t = 0, B2 = e2.length, J = B2 - 1, f = "", p = "", F2 = "", G3 = ""; l < B2; ) {
3010
+ if (g = e2.charCodeAt(l), l === J && b + n + v + m !== 0 && (b !== 0 && (g = b === 47 ? 10 : 47), n = v = m = 0, B2++, J++), b + n + v + m === 0) {
3011
+ if (l === J && (0 < r && (f = f.replace(N, "")), 0 < f.trim().length)) {
3012
+ switch (g) {
3013
+ case 32:
3014
+ case 9:
3015
+ case 59:
3016
+ case 13:
3017
+ case 10:
3018
+ break;
3019
+ default:
3020
+ f += e2.charAt(l);
3021
+ }
3022
+ g = 59;
3023
+ }
3024
+ switch (g) {
3025
+ case 123:
3026
+ for (q = (f = f.trim()).charCodeAt(0), k = 1, t = ++l; l < B2; ) {
3027
+ switch (g = e2.charCodeAt(l)) {
3028
+ case 123:
3029
+ k++;
3030
+ break;
3031
+ case 125:
3032
+ k--;
3033
+ break;
3034
+ case 47:
3035
+ switch (g = e2.charCodeAt(l + 1)) {
3036
+ case 42:
3037
+ case 47:
3038
+ a: {
3039
+ for (u = l + 1; u < J; ++u)
3040
+ switch (e2.charCodeAt(u)) {
3041
+ case 47:
3042
+ if (g === 42 && e2.charCodeAt(u - 1) === 42 && l + 2 !== u) {
3043
+ l = u + 1;
3044
+ break a;
3045
+ }
3046
+ break;
3047
+ case 10:
3048
+ if (g === 47) {
3049
+ l = u + 1;
3050
+ break a;
3051
+ }
3052
+ }
3053
+ l = u;
3054
+ }
3055
+ }
3056
+ break;
3057
+ case 91:
3058
+ g++;
3059
+ case 40:
3060
+ g++;
3061
+ case 34:
3062
+ case 39:
3063
+ for (; l++ < J && e2.charCodeAt(l) !== g; )
3064
+ ;
3065
+ }
3066
+ if (k === 0)
3067
+ break;
3068
+ l++;
3069
+ }
3070
+ switch (k = e2.substring(t, l), q === 0 && (q = (f = f.replace(ca, "").trim()).charCodeAt(0)), q) {
3071
+ case 64:
3072
+ switch (0 < r && (f = f.replace(N, "")), g = f.charCodeAt(1)) {
3073
+ case 100:
3074
+ case 109:
3075
+ case 115:
3076
+ case 45:
3077
+ r = c2;
3078
+ break;
3079
+ default:
3080
+ r = O;
3081
+ }
3082
+ if (t = (k = M(c2, r, k, g, a2 + 1)).length, 0 < A && (C = H(3, k, r = X(O, f, I), c2, D, z, t, g, a2, h2), f = r.join(""), C !== void 0 && (t = (k = C.trim()).length) === 0 && (g = 0, k = "")), 0 < t)
3083
+ switch (g) {
3084
+ case 115:
3085
+ f = f.replace(da, ea);
3086
+ case 100:
3087
+ case 109:
3088
+ case 45:
3089
+ k = f + "{" + k + "}";
3090
+ break;
3091
+ case 107:
3092
+ k = (f = f.replace(fa, "$1 $2")) + "{" + k + "}", k = w === 1 || w === 2 && L("@" + k, 3) ? "@-webkit-" + k + "@" + k : "@" + k;
3093
+ break;
3094
+ default:
3095
+ k = f + k, h2 === 112 && (p += k, k = "");
3096
+ }
3097
+ else
3098
+ k = "";
3099
+ break;
3100
+ default:
3101
+ k = M(c2, X(c2, f, I), k, h2, a2 + 1);
3102
+ }
3103
+ F2 += k, k = I = r = u = q = 0, f = "", g = e2.charCodeAt(++l);
3104
+ break;
3105
+ case 125:
3106
+ case 59:
3107
+ if (1 < (t = (f = (0 < r ? f.replace(N, "") : f).trim()).length))
3108
+ switch (u === 0 && (q = f.charCodeAt(0), q === 45 || 96 < q && 123 > q) && (t = (f = f.replace(" ", ":")).length), 0 < A && (C = H(1, f, c2, d2, D, z, p.length, h2, a2, h2)) !== void 0 && (t = (f = C.trim()).length) === 0 && (f = "\0\0"), q = f.charCodeAt(0), g = f.charCodeAt(1), q) {
3109
+ case 0:
3110
+ break;
3111
+ case 64:
3112
+ if (g === 105 || g === 99) {
3113
+ G3 += f + e2.charAt(l);
3114
+ break;
3115
+ }
3116
+ default:
3117
+ f.charCodeAt(t - 1) !== 58 && (p += P(f, q, g, f.charCodeAt(2)));
3118
+ }
3119
+ I = r = u = q = 0, f = "", g = e2.charCodeAt(++l);
3120
+ }
3121
+ }
3122
+ switch (g) {
3123
+ case 13:
3124
+ case 10:
3125
+ b === 47 ? b = 0 : 1 + q === 0 && h2 !== 107 && 0 < f.length && (r = 1, f += "\0"), 0 < A * Y && H(0, f, c2, d2, D, z, p.length, h2, a2, h2), z = 1, D++;
3126
+ break;
3127
+ case 59:
3128
+ case 125:
3129
+ if (b + n + v + m === 0) {
3130
+ z++;
3131
+ break;
3132
+ }
3133
+ default:
3134
+ switch (z++, y = e2.charAt(l), g) {
3135
+ case 9:
3136
+ case 32:
3137
+ if (n + m + b === 0)
3138
+ switch (x) {
3139
+ case 44:
3140
+ case 58:
3141
+ case 9:
3142
+ case 32:
3143
+ y = "";
3144
+ break;
3145
+ default:
3146
+ g !== 32 && (y = " ");
3147
+ }
3148
+ break;
3149
+ case 0:
3150
+ y = "\\0";
3151
+ break;
3152
+ case 12:
3153
+ y = "\\f";
3154
+ break;
3155
+ case 11:
3156
+ y = "\\v";
3157
+ break;
3158
+ case 38:
3159
+ n + b + m === 0 && (r = I = 1, y = "\f" + y);
3160
+ break;
3161
+ case 108:
3162
+ if (n + b + m + E === 0 && 0 < u)
3163
+ switch (l - u) {
3164
+ case 2:
3165
+ x === 112 && e2.charCodeAt(l - 3) === 58 && (E = x);
3166
+ case 8:
3167
+ K === 111 && (E = K);
3168
+ }
3169
+ break;
3170
+ case 58:
3171
+ n + b + m === 0 && (u = l);
3172
+ break;
3173
+ case 44:
3174
+ b + v + n + m === 0 && (r = 1, y += "\r");
3175
+ break;
3176
+ case 34:
3177
+ case 39:
3178
+ b === 0 && (n = n === g ? 0 : n === 0 ? g : n);
3179
+ break;
3180
+ case 91:
3181
+ n + b + v === 0 && m++;
3182
+ break;
3183
+ case 93:
3184
+ n + b + v === 0 && m--;
3185
+ break;
3186
+ case 41:
3187
+ n + b + m === 0 && v--;
3188
+ break;
3189
+ case 40:
3190
+ if (n + b + m === 0) {
3191
+ if (q === 0)
3192
+ switch (2 * x + 3 * K) {
3193
+ case 533:
3194
+ break;
3195
+ default:
3196
+ q = 1;
3197
+ }
3198
+ v++;
3199
+ }
3200
+ break;
3201
+ case 64:
3202
+ b + v + n + m + u + k === 0 && (k = 1);
3203
+ break;
3204
+ case 42:
3205
+ case 47:
3206
+ if (!(0 < n + m + v))
3207
+ switch (b) {
3208
+ case 0:
3209
+ switch (2 * g + 3 * e2.charCodeAt(l + 1)) {
3210
+ case 235:
3211
+ b = 47;
3212
+ break;
3213
+ case 220:
3214
+ t = l, b = 42;
3215
+ }
3216
+ break;
3217
+ case 42:
3218
+ g === 47 && x === 42 && t + 2 !== l && (e2.charCodeAt(t + 2) === 33 && (p += e2.substring(t, l + 1)), y = "", b = 0);
3219
+ }
3220
+ }
3221
+ b === 0 && (f += y);
3222
+ }
3223
+ K = x, x = g, l++;
3224
+ }
3225
+ if (0 < (t = p.length)) {
3226
+ if (r = c2, 0 < A && (C = H(2, p, r, d2, D, z, t, h2, a2, h2)) !== void 0 && (p = C).length === 0)
3227
+ return G3 + p + F2;
3228
+ if (p = r.join(",") + "{" + p + "}", w * E != 0) {
3229
+ switch (w !== 2 || L(p, 2) || (E = 0), E) {
3230
+ case 111:
3231
+ p = p.replace(ha, ":-moz-$1") + p;
3232
+ break;
3233
+ case 112:
3234
+ p = p.replace(Q, "::-webkit-input-$1") + p.replace(Q, "::-moz-$1") + p.replace(Q, ":-ms-input-$1") + p;
3235
+ }
3236
+ E = 0;
3237
+ }
3238
+ }
3239
+ return G3 + p + F2;
3240
+ }(O, e, c, 0, 0);
3241
+ return 0 < A && (h = H(-2, a, e, e, D, z, a.length, 0, 0, 0)) !== void 0 && (a = h), E = 0, z = D = 1, a;
3242
+ }
3243
+ var ca = /^\0+/g, N = /[\0\r\f]/g, aa = /: */g, ka = /zoo|gra/, ma = /([,: ])(transform)/g, ia = /,\r+?/g, F = /([\t\r\n ])*\f?&/g, fa = /@(k\w+)\s*(\S*)\s*/, Q = /::(place)/g, ha = /:(read-only)/g, G2 = /[svh]\w+-[tblr]{2}/, da = /\(\s*(.*)\s*\)/g, oa = /([\s\S]*?);/g, ba = /-self|flex-/g, na = /[^]*?(:[rp][el]a[\w-]+)[^]*/, la = /stretch|:\s*\w+\-(?:conte|avail)/, ja = /([^-])(image-set\()/, z = 1, D = 1, E = 0, w = 1, O = [], S = [], A = 0, R = null, Y = 0;
3244
+ return B.use = function T(d) {
3245
+ switch (d) {
3246
+ case void 0:
3247
+ case null:
3248
+ A = S.length = 0;
3249
+ break;
3250
+ default:
3251
+ if (typeof d == "function")
3252
+ S[A++] = d;
3253
+ else if (typeof d == "object")
3254
+ for (var c = 0, e = d.length; c < e; ++c)
3255
+ T(d[c]);
3256
+ else
3257
+ Y = 0 | !!d;
3258
+ }
3259
+ return T;
3260
+ }, B.set = U, W !== void 0 && U(W), B;
3261
+ }
3262
+ Object.defineProperty(exports, "__esModule", {
3263
+ value: !0
3264
+ }), exports.default = stylis_min;
3265
+ }
3266
+ });
3267
+
3268
+ // node_modules/@emotion/stylis/dist/stylis.cjs.js
3269
+ var require_stylis_cjs = __commonJS({
3270
+ "node_modules/@emotion/stylis/dist/stylis.cjs.js"(exports, module2) {
3271
+ "use strict";
3272
+ module2.exports = require_stylis_cjs_prod();
3273
+ }
3274
+ });
3275
+
3276
+ // node_modules/@emotion/unitless/dist/unitless.cjs.prod.js
3277
+ var require_unitless_cjs_prod = __commonJS({
3278
+ "node_modules/@emotion/unitless/dist/unitless.cjs.prod.js"(exports) {
3279
+ "use strict";
3280
+ Object.defineProperty(exports, "__esModule", {
3281
+ value: !0
3282
+ });
3283
+ var unitlessKeys = {
3284
+ animationIterationCount: 1,
3285
+ borderImageOutset: 1,
3286
+ borderImageSlice: 1,
3287
+ borderImageWidth: 1,
3288
+ boxFlex: 1,
3289
+ boxFlexGroup: 1,
3290
+ boxOrdinalGroup: 1,
3291
+ columnCount: 1,
3292
+ columns: 1,
3293
+ flex: 1,
3294
+ flexGrow: 1,
3295
+ flexPositive: 1,
3296
+ flexShrink: 1,
3297
+ flexNegative: 1,
3298
+ flexOrder: 1,
3299
+ gridRow: 1,
3300
+ gridRowEnd: 1,
3301
+ gridRowSpan: 1,
3302
+ gridRowStart: 1,
3303
+ gridColumn: 1,
3304
+ gridColumnEnd: 1,
3305
+ gridColumnSpan: 1,
3306
+ gridColumnStart: 1,
3307
+ msGridRow: 1,
3308
+ msGridRowSpan: 1,
3309
+ msGridColumn: 1,
3310
+ msGridColumnSpan: 1,
3311
+ fontWeight: 1,
3312
+ lineHeight: 1,
3313
+ opacity: 1,
3314
+ order: 1,
3315
+ orphans: 1,
3316
+ tabSize: 1,
3317
+ widows: 1,
3318
+ zIndex: 1,
3319
+ zoom: 1,
3320
+ WebkitLineClamp: 1,
3321
+ fillOpacity: 1,
3322
+ floodOpacity: 1,
3323
+ stopOpacity: 1,
3324
+ strokeDasharray: 1,
3325
+ strokeDashoffset: 1,
3326
+ strokeMiterlimit: 1,
3327
+ strokeOpacity: 1,
3328
+ strokeWidth: 1
3329
+ };
3330
+ exports.default = unitlessKeys;
3331
+ }
3332
+ });
3333
+
3334
+ // node_modules/@emotion/unitless/dist/unitless.cjs.js
3335
+ var require_unitless_cjs = __commonJS({
3336
+ "node_modules/@emotion/unitless/dist/unitless.cjs.js"(exports, module2) {
3337
+ "use strict";
3338
+ module2.exports = require_unitless_cjs_prod();
3339
+ }
3340
+ });
3341
+
3342
+ // node_modules/@emotion/is-prop-valid/dist/emotion-is-prop-valid.cjs.prod.js
3343
+ var require_emotion_is_prop_valid_cjs_prod = __commonJS({
3344
+ "node_modules/@emotion/is-prop-valid/dist/emotion-is-prop-valid.cjs.prod.js"(exports) {
3345
+ "use strict";
3346
+ Object.defineProperty(exports, "__esModule", { value: !0 });
3347
+ var memoize = require("@emotion/memoize");
3348
+ function _interopDefault(e) {
3349
+ return e && e.__esModule ? e : { default: e };
3350
+ }
3351
+ var memoize__default = /* @__PURE__ */ _interopDefault(memoize), reactPropsRegex = /^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|abbr|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|download|draggable|encType|enterKeyHint|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|translate|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|incremental|fallback|inert|itemProp|itemScope|itemType|itemID|itemRef|on|option|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/, isPropValid = /* @__PURE__ */ memoize__default.default(
3352
+ function(prop) {
3353
+ return reactPropsRegex.test(prop) || prop.charCodeAt(0) === 111 && prop.charCodeAt(1) === 110 && prop.charCodeAt(2) < 91;
3354
+ }
3355
+ );
3356
+ exports.default = isPropValid;
3357
+ }
3358
+ });
3359
+
3360
+ // node_modules/@emotion/is-prop-valid/dist/emotion-is-prop-valid.cjs.js
3361
+ var require_emotion_is_prop_valid_cjs = __commonJS({
3362
+ "node_modules/@emotion/is-prop-valid/dist/emotion-is-prop-valid.cjs.js"(exports, module2) {
3363
+ "use strict";
3364
+ module2.exports = require_emotion_is_prop_valid_cjs_prod();
3365
+ }
3366
+ });
3367
+
3368
+ // node_modules/hoist-non-react-statics/node_modules/react-is/cjs/react-is.production.min.js
3369
+ var require_react_is_production_min2 = __commonJS({
3370
+ "node_modules/hoist-non-react-statics/node_modules/react-is/cjs/react-is.production.min.js"(exports) {
3371
+ "use strict";
3372
+ var b = typeof Symbol == "function" && Symbol.for, c = b ? Symbol.for("react.element") : 60103, d = b ? Symbol.for("react.portal") : 60106, e = b ? Symbol.for("react.fragment") : 60107, f = b ? Symbol.for("react.strict_mode") : 60108, g = b ? Symbol.for("react.profiler") : 60114, h = b ? Symbol.for("react.provider") : 60109, k = b ? Symbol.for("react.context") : 60110, l = b ? Symbol.for("react.async_mode") : 60111, m = b ? Symbol.for("react.concurrent_mode") : 60111, n = b ? Symbol.for("react.forward_ref") : 60112, p = b ? Symbol.for("react.suspense") : 60113, q = b ? Symbol.for("react.suspense_list") : 60120, r = b ? Symbol.for("react.memo") : 60115, t = b ? Symbol.for("react.lazy") : 60116, v = b ? Symbol.for("react.block") : 60121, w = b ? Symbol.for("react.fundamental") : 60117, x = b ? Symbol.for("react.responder") : 60118, y = b ? Symbol.for("react.scope") : 60119;
3373
+ function z(a) {
3374
+ if (typeof a == "object" && a !== null) {
3375
+ var u = a.$$typeof;
3376
+ switch (u) {
3377
+ case c:
3378
+ switch (a = a.type, a) {
3379
+ case l:
3380
+ case m:
3381
+ case e:
3382
+ case g:
3383
+ case f:
3384
+ case p:
3385
+ return a;
3386
+ default:
3387
+ switch (a = a && a.$$typeof, a) {
3388
+ case k:
3389
+ case n:
3390
+ case t:
3391
+ case r:
3392
+ case h:
3393
+ return a;
3394
+ default:
3395
+ return u;
3396
+ }
3397
+ }
3398
+ case d:
3399
+ return u;
3400
+ }
3401
+ }
3402
+ }
3403
+ function A(a) {
3404
+ return z(a) === m;
3405
+ }
3406
+ exports.AsyncMode = l;
3407
+ exports.ConcurrentMode = m;
3408
+ exports.ContextConsumer = k;
3409
+ exports.ContextProvider = h;
3410
+ exports.Element = c;
3411
+ exports.ForwardRef = n;
3412
+ exports.Fragment = e;
3413
+ exports.Lazy = t;
3414
+ exports.Memo = r;
3415
+ exports.Portal = d;
3416
+ exports.Profiler = g;
3417
+ exports.StrictMode = f;
3418
+ exports.Suspense = p;
3419
+ exports.isAsyncMode = function(a) {
3420
+ return A(a) || z(a) === l;
3421
+ };
3422
+ exports.isConcurrentMode = A;
3423
+ exports.isContextConsumer = function(a) {
3424
+ return z(a) === k;
3425
+ };
3426
+ exports.isContextProvider = function(a) {
3427
+ return z(a) === h;
3428
+ };
3429
+ exports.isElement = function(a) {
3430
+ return typeof a == "object" && a !== null && a.$$typeof === c;
3431
+ };
3432
+ exports.isForwardRef = function(a) {
3433
+ return z(a) === n;
3434
+ };
3435
+ exports.isFragment = function(a) {
3436
+ return z(a) === e;
3437
+ };
3438
+ exports.isLazy = function(a) {
3439
+ return z(a) === t;
3440
+ };
3441
+ exports.isMemo = function(a) {
3442
+ return z(a) === r;
3443
+ };
3444
+ exports.isPortal = function(a) {
3445
+ return z(a) === d;
3446
+ };
3447
+ exports.isProfiler = function(a) {
3448
+ return z(a) === g;
3449
+ };
3450
+ exports.isStrictMode = function(a) {
3451
+ return z(a) === f;
3452
+ };
3453
+ exports.isSuspense = function(a) {
3454
+ return z(a) === p;
3455
+ };
3456
+ exports.isValidElementType = function(a) {
3457
+ return typeof a == "string" || typeof a == "function" || a === e || a === m || a === g || a === f || a === p || a === q || typeof a == "object" && a !== null && (a.$$typeof === t || a.$$typeof === r || a.$$typeof === h || a.$$typeof === k || a.$$typeof === n || a.$$typeof === w || a.$$typeof === x || a.$$typeof === y || a.$$typeof === v);
3458
+ };
3459
+ exports.typeOf = z;
3460
+ }
3461
+ });
3462
+
3463
+ // node_modules/hoist-non-react-statics/node_modules/react-is/index.js
3464
+ var require_react_is2 = __commonJS({
3465
+ "node_modules/hoist-non-react-statics/node_modules/react-is/index.js"(exports, module2) {
3466
+ "use strict";
3467
+ module2.exports = require_react_is_production_min2();
3468
+ }
3469
+ });
3470
+
3471
+ // node_modules/hoist-non-react-statics/dist/hoist-non-react-statics.cjs.js
3472
+ var require_hoist_non_react_statics_cjs = __commonJS({
3473
+ "node_modules/hoist-non-react-statics/dist/hoist-non-react-statics.cjs.js"(exports, module2) {
3474
+ "use strict";
3475
+ var reactIs = require_react_is2(), REACT_STATICS = {
3476
+ childContextTypes: !0,
3477
+ contextType: !0,
3478
+ contextTypes: !0,
3479
+ defaultProps: !0,
3480
+ displayName: !0,
3481
+ getDefaultProps: !0,
3482
+ getDerivedStateFromError: !0,
3483
+ getDerivedStateFromProps: !0,
3484
+ mixins: !0,
3485
+ propTypes: !0,
3486
+ type: !0
3487
+ }, KNOWN_STATICS = {
3488
+ name: !0,
3489
+ length: !0,
3490
+ prototype: !0,
3491
+ caller: !0,
3492
+ callee: !0,
3493
+ arguments: !0,
3494
+ arity: !0
3495
+ }, FORWARD_REF_STATICS = {
3496
+ $$typeof: !0,
3497
+ render: !0,
3498
+ defaultProps: !0,
3499
+ displayName: !0,
3500
+ propTypes: !0
3501
+ }, MEMO_STATICS = {
3502
+ $$typeof: !0,
3503
+ compare: !0,
3504
+ defaultProps: !0,
3505
+ displayName: !0,
3506
+ propTypes: !0,
3507
+ type: !0
3508
+ }, TYPE_STATICS = {};
3509
+ TYPE_STATICS[reactIs.ForwardRef] = FORWARD_REF_STATICS;
3510
+ TYPE_STATICS[reactIs.Memo] = MEMO_STATICS;
3511
+ function getStatics(component) {
3512
+ return reactIs.isMemo(component) ? MEMO_STATICS : TYPE_STATICS[component.$$typeof] || REACT_STATICS;
3513
+ }
3514
+ var defineProperty = Object.defineProperty, getOwnPropertyNames = Object.getOwnPropertyNames, getOwnPropertySymbols = Object.getOwnPropertySymbols, getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor, getPrototypeOf = Object.getPrototypeOf, objectPrototype = Object.prototype;
3515
+ function hoistNonReactStatics(targetComponent, sourceComponent, blacklist) {
3516
+ if (typeof sourceComponent != "string") {
3517
+ if (objectPrototype) {
3518
+ var inheritedComponent = getPrototypeOf(sourceComponent);
3519
+ inheritedComponent && inheritedComponent !== objectPrototype && hoistNonReactStatics(targetComponent, inheritedComponent, blacklist);
3520
+ }
3521
+ var keys = getOwnPropertyNames(sourceComponent);
3522
+ getOwnPropertySymbols && (keys = keys.concat(getOwnPropertySymbols(sourceComponent)));
3523
+ for (var targetStatics = getStatics(targetComponent), sourceStatics = getStatics(sourceComponent), i = 0; i < keys.length; ++i) {
3524
+ var key = keys[i];
3525
+ if (!KNOWN_STATICS[key] && !(blacklist && blacklist[key]) && !(sourceStatics && sourceStatics[key]) && !(targetStatics && targetStatics[key])) {
3526
+ var descriptor = getOwnPropertyDescriptor(sourceComponent, key);
3527
+ try {
3528
+ defineProperty(targetComponent, key, descriptor);
3529
+ } catch {
3530
+ }
3531
+ }
3532
+ }
3533
+ }
3534
+ return targetComponent;
3535
+ }
3536
+ module2.exports = hoistNonReactStatics;
3537
+ }
3538
+ });
3539
+
2699
3540
  // node_modules/styled-components/dist/styled-components.cjs.js
2700
3541
  var require_styled_components_cjs = __commonJS({
2701
3542
  "node_modules/styled-components/dist/styled-components.cjs.js"(exports) {
@@ -2704,7 +3545,7 @@ var require_styled_components_cjs = __commonJS({
2704
3545
  return e2 && typeof e2 == "object" && "default" in e2 ? e2.default : e2;
2705
3546
  }
2706
3547
  Object.defineProperty(exports, "__esModule", { value: !0 });
2707
- var t = require("react-is"), n = require("react"), r = e(n), o = e(require("shallowequal")), s = e(require("@emotion/stylis")), i = e(require("@emotion/unitless")), a = e(require("@emotion/is-prop-valid")), c = e(require("hoist-non-react-statics"));
3548
+ var t = require_react_is(), n = require("react"), r = e(n), o = e(require_shallowequal()), s = e(require_stylis_cjs()), i = e(require_unitless_cjs()), a = e(require_emotion_is_prop_valid_cjs()), c = e(require_hoist_non_react_statics_cjs());
2708
3549
  function u() {
2709
3550
  return (u = Object.assign || function(e2) {
2710
3551
  for (var t2 = 1; t2 < arguments.length; t2++) {
@@ -128150,7 +128991,7 @@ var import_perf_hooks = require("perf_hooks"), import_path2 = require("path");
128150
128991
  // package.json
128151
128992
  var package_default = {
128152
128993
  name: "git-truck",
128153
- version: "0.0.0-e598cba",
128994
+ version: "0.0.0-ec3aecd",
128154
128995
  private: !1,
128155
128996
  description: "Visualizing a Git repository",
128156
128997
  license: "MIT",
@@ -132933,6 +133774,15 @@ var assetsBuildDirectory = "public\\build", publicPath = "/build/", entry = { mo
132933
133774
  * Copyright (c) 2016, Contributors
132934
133775
  * SPDX-License-Identifier: ISC
132935
133776
  */
133777
+ /**
133778
+ * @license React
133779
+ * react-is.production.min.js
133780
+ *
133781
+ * Copyright (c) Facebook, Inc. and its affiliates.
133782
+ *
133783
+ * This source code is licensed under the MIT license found in the
133784
+ * LICENSE file in the root directory of this source tree.
133785
+ */
132936
133786
  /**
132937
133787
  * @remix-run/react v1.7.2
132938
133788
  *
@@ -132953,3 +133803,11 @@ var assetsBuildDirectory = "public\\build", publicPath = "/build/", entry = { mo
132953
133803
  *
132954
133804
  * @license MIT
132955
133805
  */
133806
+ /** @license React v16.13.1
133807
+ * react-is.production.min.js
133808
+ *
133809
+ * Copyright (c) Facebook, Inc. and its affiliates.
133810
+ *
133811
+ * This source code is licensed under the MIT license found in the
133812
+ * LICENSE file in the root directory of this source tree.
133813
+ */
package/cli.js CHANGED
@@ -215355,7 +215355,7 @@ var import_path5 = __toESM(require("path"));
215355
215355
  // package.json
215356
215356
  var package_default = {
215357
215357
  name: "git-truck",
215358
- version: "0.0.0-e598cba",
215358
+ version: "0.0.0-ec3aecd",
215359
215359
  private: false,
215360
215360
  description: "Visualizing a Git repository",
215361
215361
  license: "MIT",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "git-truck",
3
- "version": "0.0.0-e598cba",
3
+ "version": "0.0.0-ec3aecd",
4
4
  "private": false,
5
5
  "description": "Visualizing a Git repository",
6
6
  "license": "MIT",