@economic/taco 2.54.1 → 2.54.3
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/taco.js +19 -42
- package/dist/taco.js.map +1 -1
- package/dist/taco.umd.cjs +19 -42
- package/dist/taco.umd.cjs.map +1 -1
- package/package.json +5 -6
- package/tailwind.config.js +550 -0
package/dist/taco.js
CHANGED
@@ -12718,40 +12718,17 @@ function $e698a72e93240346$var$getState(checked) {
|
|
12718
12718
|
}
|
12719
12719
|
const $e698a72e93240346$export$be92b6f5f03c0fe9 = $e698a72e93240346$export$48513f6b9f8ce62d;
|
12720
12720
|
const $e698a72e93240346$export$adb584737d712b70 = $e698a72e93240346$export$59aad738f51d1c05;
|
12721
|
-
|
12722
|
-
|
12723
|
-
|
12724
|
-
|
12725
|
-
|
12726
|
-
|
12727
|
-
throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");
|
12728
|
-
}
|
12721
|
+
const urlAlphabet = "useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict";
|
12722
|
+
let nanoid = (size2 = 21) => {
|
12723
|
+
let id2 = "";
|
12724
|
+
let bytes = crypto.getRandomValues(new Uint8Array(size2 |= 0));
|
12725
|
+
while (size2--) {
|
12726
|
+
id2 += urlAlphabet[bytes[size2] & 63];
|
12729
12727
|
}
|
12730
|
-
return
|
12731
|
-
}
|
12732
|
-
const byteToHex = [];
|
12733
|
-
for (let i3 = 0; i3 < 256; ++i3) {
|
12734
|
-
byteToHex.push((i3 + 256).toString(16).slice(1));
|
12735
|
-
}
|
12736
|
-
function unsafeStringify(arr, offset2 = 0) {
|
12737
|
-
return byteToHex[arr[offset2 + 0]] + byteToHex[arr[offset2 + 1]] + byteToHex[arr[offset2 + 2]] + byteToHex[arr[offset2 + 3]] + "-" + byteToHex[arr[offset2 + 4]] + byteToHex[arr[offset2 + 5]] + "-" + byteToHex[arr[offset2 + 6]] + byteToHex[arr[offset2 + 7]] + "-" + byteToHex[arr[offset2 + 8]] + byteToHex[arr[offset2 + 9]] + "-" + byteToHex[arr[offset2 + 10]] + byteToHex[arr[offset2 + 11]] + byteToHex[arr[offset2 + 12]] + byteToHex[arr[offset2 + 13]] + byteToHex[arr[offset2 + 14]] + byteToHex[arr[offset2 + 15]];
|
12738
|
-
}
|
12739
|
-
const randomUUID = typeof crypto !== "undefined" && crypto.randomUUID && crypto.randomUUID.bind(crypto);
|
12740
|
-
const native = {
|
12741
|
-
randomUUID
|
12728
|
+
return id2;
|
12742
12729
|
};
|
12743
|
-
function v4(options, buf, offset2) {
|
12744
|
-
if (native.randomUUID && true && !options) {
|
12745
|
-
return native.randomUUID();
|
12746
|
-
}
|
12747
|
-
options = options || {};
|
12748
|
-
const rnds = options.random || (options.rng || rng)();
|
12749
|
-
rnds[6] = rnds[6] & 15 | 64;
|
12750
|
-
rnds[8] = rnds[8] & 63 | 128;
|
12751
|
-
return unsafeStringify(rnds);
|
12752
|
-
}
|
12753
12730
|
const useId$1 = (nativeId) => {
|
12754
|
-
return React__default.useMemo(() => nativeId ??
|
12731
|
+
return React__default.useMemo(() => nativeId ?? nanoid(), []);
|
12755
12732
|
};
|
12756
12733
|
const Spinner = React__default.forwardRef(function Spinner2(props, ref) {
|
12757
12734
|
const { delay = 350, label, ...otherProps } = props;
|
@@ -13943,7 +13920,7 @@ const useCombobox = ({
|
|
13943
13920
|
const buttonRef = React.useRef(null);
|
13944
13921
|
const listRef = React.useRef(null);
|
13945
13922
|
const [open, setOpen] = React.useState(false);
|
13946
|
-
const listId = React.useMemo(() =>
|
13923
|
+
const listId = React.useMemo(() => nanoid(), []);
|
13947
13924
|
const [inputValue, setInputValue] = React.useState(convertToInputValue(value));
|
13948
13925
|
const shouldFilterData = !onSearch && (!inline || inline && inputValue !== convertToInputValue(value));
|
13949
13926
|
const flattenedData = useFlattenedData(unfilteredData);
|
@@ -24963,7 +24940,7 @@ const useListbox = ({
|
|
24963
24940
|
...otherProps
|
24964
24941
|
}, ref) => {
|
24965
24942
|
const data = useFlattenedData(emptyValue !== void 0 ? [{ text: "", value: emptyValue }, ...externalData] : externalData);
|
24966
|
-
const id2 = React.useMemo(() => nativeId ||
|
24943
|
+
const id2 = React.useMemo(() => nativeId || nanoid(), [nativeId]);
|
24967
24944
|
const inputRef = useMergedRef(ref);
|
24968
24945
|
const currentIndex = value !== void 0 ? getIndexFromValue(data, value) : void 0;
|
24969
24946
|
const { getNextIndex: getNextIndex2 } = useTypeahead({ data, currentIndex });
|
@@ -25069,7 +25046,7 @@ const useMultiListbox = ({
|
|
25069
25046
|
...otherProps
|
25070
25047
|
}, ref) => {
|
25071
25048
|
const { texts } = useLocalization();
|
25072
|
-
const id2 = React.useMemo(() => nativeId ||
|
25049
|
+
const id2 = React.useMemo(() => nativeId || nanoid(), [nativeId]);
|
25073
25050
|
const inputRef = useMergedRef(ref);
|
25074
25051
|
const data = React.useMemo(() => {
|
25075
25052
|
return [{ text: texts.listbox.allOption, value: "#ALL-OPTIONS#" }, ...externalData];
|
@@ -27412,7 +27389,7 @@ const useSelect = ({
|
|
27412
27389
|
const flattenedData = useFlattenedData(data);
|
27413
27390
|
const listboxInputRef = useMergedRef(ref);
|
27414
27391
|
const [open, setOpen] = React.useState(false);
|
27415
|
-
const id2 = React.useMemo(() => nativeId || `select_${
|
27392
|
+
const id2 = React.useMemo(() => nativeId || `select_${nanoid()}`, [nativeId]);
|
27416
27393
|
const inputRef = React.useRef(null);
|
27417
27394
|
const buttonId = `${id2}-button`;
|
27418
27395
|
const [lastValue, setLastValue] = React.useState(value);
|
@@ -27876,7 +27853,7 @@ const ToastProvider = ({ children, ...props }) => {
|
|
27876
27853
|
setToasts((currentToasts) => currentToasts.filter((toast) => toast.id !== id2));
|
27877
27854
|
};
|
27878
27855
|
const toaster = React.useCallback((content, options) => {
|
27879
|
-
const id2 =
|
27856
|
+
const id2 = nanoid();
|
27880
27857
|
const close = () => handleClose(id2);
|
27881
27858
|
setToasts((currentToasts) => insertToastWithoutDuplicates(currentToasts, id2, content, options, close));
|
27882
27859
|
const update2 = (content2, options2) => {
|
@@ -27887,7 +27864,7 @@ const ToastProvider = ({ children, ...props }) => {
|
|
27887
27864
|
}
|
27888
27865
|
return toast.id !== id2;
|
27889
27866
|
});
|
27890
|
-
return insertToastWithoutDuplicates(nextToasts,
|
27867
|
+
return insertToastWithoutDuplicates(nextToasts, nanoid(), content2, options2, close);
|
27891
27868
|
});
|
27892
27869
|
};
|
27893
27870
|
const success = (content2, options2) => {
|
@@ -43090,7 +43067,7 @@ function requireReactTable_production_min() {
|
|
43090
43067
|
});
|
43091
43068
|
var g5 = e6[u5], v3 = d5(i5, g5);
|
43092
43069
|
return Object.entries(v3).map(function(r3, i6) {
|
43093
|
-
var d6 = r3[0],
|
43070
|
+
var d6 = r3[0], v4 = r3[1], h5 = g5 + ":" + d6, y6 = o4(v4, u5 + 1, h5 = p4 ? p4 + ">" + h5 : h5), w4 = u5 ? G2(v4, "leafRows") : v4, R5 = function(t5, n5, o5) {
|
43094
43071
|
var r4 = {};
|
43095
43072
|
return s5.forEach(function(i7) {
|
43096
43073
|
if (e6.includes(i7.id)) r4[i7.id] = n5[0] ? n5[0].values[i7.id] : null;
|
@@ -43115,7 +43092,7 @@ function requireReactTable_production_min() {
|
|
43115
43092
|
}
|
43116
43093
|
}
|
43117
43094
|
}), r4;
|
43118
|
-
}(w4,
|
43095
|
+
}(w4, v4, u5), b5 = { id: h5, isGrouped: true, groupByID: g5, groupByVal: d6, values: R5, subRows: y6, leafRows: w4, depth: u5, index: i6 };
|
43119
43096
|
return y6.forEach(function(e7) {
|
43120
43097
|
t4.push(e7), n4[e7.id] = e7, e7.isGrouped ? (l3.push(e7), a6[e7.id] = e7) : (c5.push(e7), f3[e7.id] = e7);
|
43121
43098
|
}), b5;
|
@@ -50468,7 +50445,7 @@ const useTableRowCreation = (data, tableRef) => {
|
|
50468
50445
|
}
|
50469
50446
|
}, [JSON.stringify(data)]);
|
50470
50447
|
const create = (rowIndexPath = void 0, values = {}) => {
|
50471
|
-
const _createKey =
|
50448
|
+
const _createKey = nanoid();
|
50472
50449
|
const [nexTRow, newRowIndexPath] = insertChildTableRow(internalData, rowIndexPath, { ...values, _createKey });
|
50473
50450
|
setActiveRowIndexPath(newRowIndexPath);
|
50474
50451
|
setInternalData(nexTRow);
|
@@ -51870,7 +51847,7 @@ function usePendingChangesState(handleSave, handleChange, handleDiscard, rowIden
|
|
51870
51847
|
});
|
51871
51848
|
}
|
51872
51849
|
function insertTemporaryRow(data, rowIndex) {
|
51873
|
-
const newRowId = `${TEMPORARY_ROW_ID_PREFIX}${
|
51850
|
+
const newRowId = `${TEMPORARY_ROW_ID_PREFIX}${nanoid()}`;
|
51874
51851
|
const value = {
|
51875
51852
|
...data,
|
51876
51853
|
[rowIdentityAccessor]: newRowId
|
@@ -84946,7 +84923,7 @@ function useTableDataLoader2(fetchPage, fetchAll, options = { pageSize: DEFAULT_
|
|
84946
84923
|
if (data.cache[pageIndex] && data.cache[pageIndex][0] && !hasChangedData && !reset) {
|
84947
84924
|
return;
|
84948
84925
|
}
|
84949
|
-
const requestId =
|
84926
|
+
const requestId = nanoid();
|
84950
84927
|
_pendingPageRequests.current[pageIndex] = true;
|
84951
84928
|
try {
|
84952
84929
|
_lastRequestId.current = requestId;
|