@abdellatifui/react 3.2.201 → 3.2.203
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/nextgen.d.ts +4 -0
- package/dist/nextgen.js +5 -2
- package/package.json +1 -1
package/dist/nextgen.d.ts
CHANGED
|
@@ -1033,6 +1033,10 @@ declare interface PanelProps_2 {
|
|
|
1033
1033
|
minimizedHeader?: default_2.ReactNode;
|
|
1034
1034
|
}
|
|
1035
1035
|
|
|
1036
|
+
export declare function parseUrl(param: any): string | {
|
|
1037
|
+
[k: string]: string;
|
|
1038
|
+
};
|
|
1039
|
+
|
|
1036
1040
|
export declare interface PropertiesItemProps {
|
|
1037
1041
|
label: string;
|
|
1038
1042
|
value: any;
|
package/dist/nextgen.js
CHANGED
|
@@ -6031,7 +6031,7 @@ function rk(e, n, t = 1) {
|
|
|
6031
6031
|
const ok = (e) => Array.from({ length: e });
|
|
6032
6032
|
function qa(e) {
|
|
6033
6033
|
const n = new URLSearchParams(window.location.search);
|
|
6034
|
-
return Object.fromEntries(n.entries());
|
|
6034
|
+
return e ? n.get(e) : Object.fromEntries(n.entries());
|
|
6035
6035
|
}
|
|
6036
6036
|
const sk = () => {
|
|
6037
6037
|
const e = [];
|
|
@@ -16425,7 +16425,7 @@ const En = (e, n, t) => e == null ? "" : (n ? e : { [t]: e })[t]?.toString() ||
|
|
|
16425
16425
|
T(u);
|
|
16426
16426
|
}, [u]);
|
|
16427
16427
|
const j = se((_, D) => {
|
|
16428
|
-
S(D), _?.source !== "default " && t(_, D);
|
|
16428
|
+
S(D), _?.source !== "default " && t({ ..._, props: e, ref: g }, D);
|
|
16429
16429
|
}, [t]);
|
|
16430
16430
|
G(() => {
|
|
16431
16431
|
if (w && v) {
|
|
@@ -16450,6 +16450,8 @@ const En = (e, n, t) => e == null ? "" : (n ? e : { [t]: e })[t]?.toString() ||
|
|
|
16450
16450
|
filteredOptions: V,
|
|
16451
16451
|
unControlledValue: v,
|
|
16452
16452
|
nested: c,
|
|
16453
|
+
ref: g,
|
|
16454
|
+
props: e,
|
|
16453
16455
|
accessKey: p,
|
|
16454
16456
|
onChangeEvent: j,
|
|
16455
16457
|
setOpen: C
|
|
@@ -24021,6 +24023,7 @@ export {
|
|
|
24021
24023
|
sk as getWholeSpectrum,
|
|
24022
24024
|
zr as hex2rgb,
|
|
24023
24025
|
Cc as mapStyles,
|
|
24026
|
+
qa as parseUrl,
|
|
24024
24027
|
rk as range,
|
|
24025
24028
|
mk as throttle,
|
|
24026
24029
|
In as useAbuiContext,
|