@abdellatifui/react 3.2.80 → 3.2.81
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 +1 -1
- package/dist/nextgen.js +1 -1
- package/package.json +1 -1
package/dist/nextgen.d.ts
CHANGED
|
@@ -429,7 +429,7 @@ export declare interface FrequencyProps {
|
|
|
429
429
|
*/
|
|
430
430
|
export declare function getRandomColor(): string;
|
|
431
431
|
|
|
432
|
-
export declare const GetRandomStr: (options
|
|
432
|
+
export declare const GetRandomStr: (options?: {}) => string;
|
|
433
433
|
|
|
434
434
|
export declare const getWholeSpectrum: () => any[];
|
|
435
435
|
|
package/dist/nextgen.js
CHANGED
|
@@ -6374,7 +6374,7 @@ const ModelContext = createContext({});
|
|
|
6374
6374
|
const useRandomId = (length = 8) => {
|
|
6375
6375
|
return "css-" + Math.random().toString(36).substr(2, length);
|
|
6376
6376
|
};
|
|
6377
|
-
const GetRandomStr = (options2) => {
|
|
6377
|
+
const GetRandomStr = (options2 = {}) => {
|
|
6378
6378
|
const {
|
|
6379
6379
|
length = 512,
|
|
6380
6380
|
str = true
|