akeyless-client-commons 1.0.127 → 1.0.129
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/components/index.d.mts +11 -7
- package/dist/components/index.d.ts +11 -7
- package/dist/components/index.js +253 -242
- package/dist/components/index.mjs +192 -181
- package/dist/components/index.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -10,12 +10,16 @@ import * as ProgressPrimitive from '@radix-ui/react-progress';
|
|
|
10
10
|
|
|
11
11
|
interface CheckBoxProps {
|
|
12
12
|
id: string;
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
13
|
+
rotate?: boolean;
|
|
14
|
+
circleClassName?: string;
|
|
15
|
+
containerClassName?: string;
|
|
16
|
+
elementClassName?: string;
|
|
17
|
+
setChecked?: (v: boolean) => void;
|
|
18
|
+
checked?: boolean;
|
|
19
|
+
className?: string;
|
|
20
|
+
name?: string;
|
|
17
21
|
}
|
|
18
|
-
declare const Checkbox: ({ id, checked, setChecked, rotate,
|
|
22
|
+
declare const Checkbox: ({ id, checked, setChecked, rotate, className, circleClassName, containerClassName, elementClassName, name, }: CheckBoxProps) => react_jsx_runtime.JSX.Element;
|
|
19
23
|
|
|
20
24
|
interface ErrorBoundaryProps {
|
|
21
25
|
fallback?: React__default.ReactNode;
|
|
@@ -30,7 +34,7 @@ declare class ErrorBoundary extends React__default.Component<ErrorBoundaryProps,
|
|
|
30
34
|
constructor(props: ErrorBoundaryProps);
|
|
31
35
|
static getDerivedStateFromError(error: Error): Partial<ErrorBoundaryState>;
|
|
32
36
|
componentDidCatch(error: Error, errorInfo: React__default.ErrorInfo): void;
|
|
33
|
-
render(): string | number | boolean | react_jsx_runtime.JSX.Element
|
|
37
|
+
render(): string | number | boolean | Iterable<React__default.ReactNode> | react_jsx_runtime.JSX.Element;
|
|
34
38
|
}
|
|
35
39
|
|
|
36
40
|
interface LoaderProps {
|
|
@@ -511,7 +515,7 @@ interface BooleanUIProps {
|
|
|
511
515
|
trueUi?: ReactNode;
|
|
512
516
|
falseUi?: ReactNode;
|
|
513
517
|
}
|
|
514
|
-
declare const BooleanUi: ({ value, size, className, falseUi, trueUi }: BooleanUIProps) => string | number | boolean | react_jsx_runtime.JSX.Element
|
|
518
|
+
declare const BooleanUi: ({ value, size, className, falseUi, trueUi }: BooleanUIProps) => string | number | boolean | Iterable<React__default.ReactNode> | react_jsx_runtime.JSX.Element;
|
|
515
519
|
interface GeoUiProps {
|
|
516
520
|
value: Partial<Geo> & {
|
|
517
521
|
latitude?: number;
|
|
@@ -10,12 +10,16 @@ import * as ProgressPrimitive from '@radix-ui/react-progress';
|
|
|
10
10
|
|
|
11
11
|
interface CheckBoxProps {
|
|
12
12
|
id: string;
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
13
|
+
rotate?: boolean;
|
|
14
|
+
circleClassName?: string;
|
|
15
|
+
containerClassName?: string;
|
|
16
|
+
elementClassName?: string;
|
|
17
|
+
setChecked?: (v: boolean) => void;
|
|
18
|
+
checked?: boolean;
|
|
19
|
+
className?: string;
|
|
20
|
+
name?: string;
|
|
17
21
|
}
|
|
18
|
-
declare const Checkbox: ({ id, checked, setChecked, rotate,
|
|
22
|
+
declare const Checkbox: ({ id, checked, setChecked, rotate, className, circleClassName, containerClassName, elementClassName, name, }: CheckBoxProps) => react_jsx_runtime.JSX.Element;
|
|
19
23
|
|
|
20
24
|
interface ErrorBoundaryProps {
|
|
21
25
|
fallback?: React__default.ReactNode;
|
|
@@ -30,7 +34,7 @@ declare class ErrorBoundary extends React__default.Component<ErrorBoundaryProps,
|
|
|
30
34
|
constructor(props: ErrorBoundaryProps);
|
|
31
35
|
static getDerivedStateFromError(error: Error): Partial<ErrorBoundaryState>;
|
|
32
36
|
componentDidCatch(error: Error, errorInfo: React__default.ErrorInfo): void;
|
|
33
|
-
render(): string | number | boolean | react_jsx_runtime.JSX.Element
|
|
37
|
+
render(): string | number | boolean | Iterable<React__default.ReactNode> | react_jsx_runtime.JSX.Element;
|
|
34
38
|
}
|
|
35
39
|
|
|
36
40
|
interface LoaderProps {
|
|
@@ -511,7 +515,7 @@ interface BooleanUIProps {
|
|
|
511
515
|
trueUi?: ReactNode;
|
|
512
516
|
falseUi?: ReactNode;
|
|
513
517
|
}
|
|
514
|
-
declare const BooleanUi: ({ value, size, className, falseUi, trueUi }: BooleanUIProps) => string | number | boolean | react_jsx_runtime.JSX.Element
|
|
518
|
+
declare const BooleanUi: ({ value, size, className, falseUi, trueUi }: BooleanUIProps) => string | number | boolean | Iterable<React__default.ReactNode> | react_jsx_runtime.JSX.Element;
|
|
515
519
|
interface GeoUiProps {
|
|
516
520
|
value: Partial<Geo> & {
|
|
517
521
|
latitude?: number;
|