@abdellatifui/react 3.2.202 → 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 +2 -1
- 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 = [];
|
|
@@ -24023,6 +24023,7 @@ export {
|
|
|
24023
24023
|
sk as getWholeSpectrum,
|
|
24024
24024
|
zr as hex2rgb,
|
|
24025
24025
|
Cc as mapStyles,
|
|
24026
|
+
qa as parseUrl,
|
|
24026
24027
|
rk as range,
|
|
24027
24028
|
mk as throttle,
|
|
24028
24029
|
In as useAbuiContext,
|