akeyless-client-commons 1.0.4 → 1.0.5
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 +12 -3
- package/dist/components/index.d.ts +12 -3
- package/dist/components/index.js +332 -279
- package/dist/components/index.mjs +330 -281
- package/package.json +1 -1
|
@@ -8,6 +8,15 @@ import * as class_variance_authority_dist_types from 'class-variance-authority/d
|
|
|
8
8
|
import { VariantProps } from 'class-variance-authority';
|
|
9
9
|
import * as ProgressPrimitive from '@radix-ui/react-progress';
|
|
10
10
|
|
|
11
|
+
interface CheckBoxProps {
|
|
12
|
+
id: string;
|
|
13
|
+
checked: boolean;
|
|
14
|
+
setChecked: (v: boolean) => void;
|
|
15
|
+
style?: React__default.CSSProperties;
|
|
16
|
+
rotate: boolean;
|
|
17
|
+
}
|
|
18
|
+
declare const Checkbox: ({ id, checked, setChecked, rotate, style }: CheckBoxProps) => react_jsx_runtime.JSX.Element;
|
|
19
|
+
|
|
11
20
|
interface ErrorBoundaryProps {
|
|
12
21
|
fallback?: React__default.ReactNode;
|
|
13
22
|
children: React__default.ReactNode;
|
|
@@ -21,7 +30,7 @@ declare class ErrorBoundary extends React__default.Component<ErrorBoundaryProps,
|
|
|
21
30
|
constructor(props: ErrorBoundaryProps);
|
|
22
31
|
static getDerivedStateFromError(error: Error): Partial<ErrorBoundaryState>;
|
|
23
32
|
componentDidCatch(error: Error, errorInfo: React__default.ErrorInfo): void;
|
|
24
|
-
render(): string | number | boolean | Iterable<React__default.ReactNode
|
|
33
|
+
render(): string | number | boolean | react_jsx_runtime.JSX.Element | Iterable<React__default.ReactNode>;
|
|
25
34
|
}
|
|
26
35
|
|
|
27
36
|
interface LoaderProps {
|
|
@@ -451,7 +460,7 @@ interface BooleanUIProps {
|
|
|
451
460
|
trueUi?: ReactNode;
|
|
452
461
|
falseUi?: ReactNode;
|
|
453
462
|
}
|
|
454
|
-
declare const BooleanUi: ({ value, size, className, falseUi, trueUi }: BooleanUIProps) => string | number | boolean | Iterable<React__default.ReactNode
|
|
463
|
+
declare const BooleanUi: ({ value, size, className, falseUi, trueUi }: BooleanUIProps) => string | number | boolean | react_jsx_runtime.JSX.Element | Iterable<React__default.ReactNode>;
|
|
455
464
|
interface GeoUiProps {
|
|
456
465
|
value: Partial<Geo> & {
|
|
457
466
|
latitude?: number;
|
|
@@ -499,4 +508,4 @@ interface CodeInputProps {
|
|
|
499
508
|
}
|
|
500
509
|
declare function CodeInput({ codeValue, setCodeValue, className, slotContainerClassName }: CodeInputProps): react_jsx_runtime.JSX.Element;
|
|
501
510
|
|
|
502
|
-
export { Badge, type BadgeProps, BooleanUi, Button, CodeInput, ConfirmForm, DatePicker, DurationUI, ElementLabel, ErrorBoundary, ExportToExcel, Filter, type FilterProps, GeoUi, type GeoUiProps, Input, InputContainer, InternationalPhonePicker, Loader, MaxRowsLabel, ModularForm, MultiSelect, type MultipleSelectorOption, type MultipleSelectorProps, type MultipleSelectorRef, NumberUI, type NumberUIProps, PhoneUI, ProgressComponent, Search, type SearchSelectOptions, type SearchSelectProps, SelectContainer, SelectWithSearch, Summary, Table, TableBody, TableButton, TableCell, TableContext, TableHead, type TableProps, TableProvider, type TableProviderType, TableRow, TextAreaContainer, TimesUI, type UseFilterProps, Version, badgeVariants, buttonVariants, getFixedNumber, useDebounce, useSortValues };
|
|
511
|
+
export { Badge, type BadgeProps, BooleanUi, Button, Checkbox, CodeInput, ConfirmForm, DatePicker, DurationUI, ElementLabel, ErrorBoundary, ExportToExcel, Filter, type FilterProps, GeoUi, type GeoUiProps, Input, InputContainer, InternationalPhonePicker, Loader, MaxRowsLabel, ModularForm, MultiSelect, type MultipleSelectorOption, type MultipleSelectorProps, type MultipleSelectorRef, NumberUI, type NumberUIProps, PhoneUI, ProgressComponent, Search, type SearchSelectOptions, type SearchSelectProps, SelectContainer, SelectWithSearch, Summary, Table, TableBody, TableButton, TableCell, TableContext, TableHead, type TableProps, TableProvider, type TableProviderType, TableRow, TextAreaContainer, TimesUI, type UseFilterProps, Version, badgeVariants, buttonVariants, getFixedNumber, useDebounce, useSortValues };
|
|
@@ -8,6 +8,15 @@ import * as class_variance_authority_dist_types from 'class-variance-authority/d
|
|
|
8
8
|
import { VariantProps } from 'class-variance-authority';
|
|
9
9
|
import * as ProgressPrimitive from '@radix-ui/react-progress';
|
|
10
10
|
|
|
11
|
+
interface CheckBoxProps {
|
|
12
|
+
id: string;
|
|
13
|
+
checked: boolean;
|
|
14
|
+
setChecked: (v: boolean) => void;
|
|
15
|
+
style?: React__default.CSSProperties;
|
|
16
|
+
rotate: boolean;
|
|
17
|
+
}
|
|
18
|
+
declare const Checkbox: ({ id, checked, setChecked, rotate, style }: CheckBoxProps) => react_jsx_runtime.JSX.Element;
|
|
19
|
+
|
|
11
20
|
interface ErrorBoundaryProps {
|
|
12
21
|
fallback?: React__default.ReactNode;
|
|
13
22
|
children: React__default.ReactNode;
|
|
@@ -21,7 +30,7 @@ declare class ErrorBoundary extends React__default.Component<ErrorBoundaryProps,
|
|
|
21
30
|
constructor(props: ErrorBoundaryProps);
|
|
22
31
|
static getDerivedStateFromError(error: Error): Partial<ErrorBoundaryState>;
|
|
23
32
|
componentDidCatch(error: Error, errorInfo: React__default.ErrorInfo): void;
|
|
24
|
-
render(): string | number | boolean | Iterable<React__default.ReactNode
|
|
33
|
+
render(): string | number | boolean | react_jsx_runtime.JSX.Element | Iterable<React__default.ReactNode>;
|
|
25
34
|
}
|
|
26
35
|
|
|
27
36
|
interface LoaderProps {
|
|
@@ -451,7 +460,7 @@ interface BooleanUIProps {
|
|
|
451
460
|
trueUi?: ReactNode;
|
|
452
461
|
falseUi?: ReactNode;
|
|
453
462
|
}
|
|
454
|
-
declare const BooleanUi: ({ value, size, className, falseUi, trueUi }: BooleanUIProps) => string | number | boolean | Iterable<React__default.ReactNode
|
|
463
|
+
declare const BooleanUi: ({ value, size, className, falseUi, trueUi }: BooleanUIProps) => string | number | boolean | react_jsx_runtime.JSX.Element | Iterable<React__default.ReactNode>;
|
|
455
464
|
interface GeoUiProps {
|
|
456
465
|
value: Partial<Geo> & {
|
|
457
466
|
latitude?: number;
|
|
@@ -499,4 +508,4 @@ interface CodeInputProps {
|
|
|
499
508
|
}
|
|
500
509
|
declare function CodeInput({ codeValue, setCodeValue, className, slotContainerClassName }: CodeInputProps): react_jsx_runtime.JSX.Element;
|
|
501
510
|
|
|
502
|
-
export { Badge, type BadgeProps, BooleanUi, Button, CodeInput, ConfirmForm, DatePicker, DurationUI, ElementLabel, ErrorBoundary, ExportToExcel, Filter, type FilterProps, GeoUi, type GeoUiProps, Input, InputContainer, InternationalPhonePicker, Loader, MaxRowsLabel, ModularForm, MultiSelect, type MultipleSelectorOption, type MultipleSelectorProps, type MultipleSelectorRef, NumberUI, type NumberUIProps, PhoneUI, ProgressComponent, Search, type SearchSelectOptions, type SearchSelectProps, SelectContainer, SelectWithSearch, Summary, Table, TableBody, TableButton, TableCell, TableContext, TableHead, type TableProps, TableProvider, type TableProviderType, TableRow, TextAreaContainer, TimesUI, type UseFilterProps, Version, badgeVariants, buttonVariants, getFixedNumber, useDebounce, useSortValues };
|
|
511
|
+
export { Badge, type BadgeProps, BooleanUi, Button, Checkbox, CodeInput, ConfirmForm, DatePicker, DurationUI, ElementLabel, ErrorBoundary, ExportToExcel, Filter, type FilterProps, GeoUi, type GeoUiProps, Input, InputContainer, InternationalPhonePicker, Loader, MaxRowsLabel, ModularForm, MultiSelect, type MultipleSelectorOption, type MultipleSelectorProps, type MultipleSelectorRef, NumberUI, type NumberUIProps, PhoneUI, ProgressComponent, Search, type SearchSelectOptions, type SearchSelectProps, SelectContainer, SelectWithSearch, Summary, Table, TableBody, TableButton, TableCell, TableContext, TableHead, type TableProps, TableProvider, type TableProviderType, TableRow, TextAreaContainer, TimesUI, type UseFilterProps, Version, badgeVariants, buttonVariants, getFixedNumber, useDebounce, useSortValues };
|