akeyless-client-commons 1.0.66 → 1.0.68
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.css.map +1 -1
- package/dist/components/index.js +28 -28
- package/dist/components/index.mjs +19 -19
- package/dist/helpers/index.d.mts +6 -2
- package/dist/helpers/index.d.ts +6 -2
- package/dist/helpers/index.js +205 -191
- package/dist/helpers/index.mjs +191 -181
- package/dist/hooks/index.js +58 -58
- package/dist/hooks/index.mjs +49 -49
- package/dist/types/index.d.mts +3 -1
- package/dist/types/index.d.ts +3 -1
- package/package.json +1 -1
package/dist/types/index.d.mts
CHANGED
|
@@ -73,6 +73,8 @@ type ModularPopUp = null | {
|
|
|
73
73
|
right?: string;
|
|
74
74
|
background?: string;
|
|
75
75
|
};
|
|
76
|
+
type AppName = "installer" | "toolbox" | "dashboard";
|
|
77
|
+
type LoginOption = "google" | "phone";
|
|
76
78
|
|
|
77
79
|
type OnSnapshotCallback = (documents: any[], config: OnSnapshotConfig) => void;
|
|
78
80
|
interface OnSnapshotParsers {
|
|
@@ -269,4 +271,4 @@ interface DatePickerProps {
|
|
|
269
271
|
buttonText?: string;
|
|
270
272
|
}
|
|
271
273
|
|
|
272
|
-
export type { BaseElementProps, ConfirmFormProps, CustomElementProps, DatePickerProps, Direction, FormElement, InputContainerProps, InputElement, InternationalInputProps, ModularFormProps, ModularPopUp, MultiSelectProps, OnSnapshotCallback, OnSnapshotConfig, OnSnapshotConfigDocument, OnSnapshotParsers, SelectContainerProps, SelectElement, SelectWithSearchProps, SetState, Snapshot, SnapshotDocument, SnapshotResult, TextAreaContainerProps, TextAreaElement, WhereCondition };
|
|
274
|
+
export type { AppName, BaseElementProps, ConfirmFormProps, CustomElementProps, DatePickerProps, Direction, FormElement, InputContainerProps, InputElement, InternationalInputProps, LoginOption, ModularFormProps, ModularPopUp, MultiSelectProps, OnSnapshotCallback, OnSnapshotConfig, OnSnapshotConfigDocument, OnSnapshotParsers, SelectContainerProps, SelectElement, SelectWithSearchProps, SetState, Snapshot, SnapshotDocument, SnapshotResult, TextAreaContainerProps, TextAreaElement, WhereCondition };
|
package/dist/types/index.d.ts
CHANGED
|
@@ -73,6 +73,8 @@ type ModularPopUp = null | {
|
|
|
73
73
|
right?: string;
|
|
74
74
|
background?: string;
|
|
75
75
|
};
|
|
76
|
+
type AppName = "installer" | "toolbox" | "dashboard";
|
|
77
|
+
type LoginOption = "google" | "phone";
|
|
76
78
|
|
|
77
79
|
type OnSnapshotCallback = (documents: any[], config: OnSnapshotConfig) => void;
|
|
78
80
|
interface OnSnapshotParsers {
|
|
@@ -269,4 +271,4 @@ interface DatePickerProps {
|
|
|
269
271
|
buttonText?: string;
|
|
270
272
|
}
|
|
271
273
|
|
|
272
|
-
export type { BaseElementProps, ConfirmFormProps, CustomElementProps, DatePickerProps, Direction, FormElement, InputContainerProps, InputElement, InternationalInputProps, ModularFormProps, ModularPopUp, MultiSelectProps, OnSnapshotCallback, OnSnapshotConfig, OnSnapshotConfigDocument, OnSnapshotParsers, SelectContainerProps, SelectElement, SelectWithSearchProps, SetState, Snapshot, SnapshotDocument, SnapshotResult, TextAreaContainerProps, TextAreaElement, WhereCondition };
|
|
274
|
+
export type { AppName, BaseElementProps, ConfirmFormProps, CustomElementProps, DatePickerProps, Direction, FormElement, InputContainerProps, InputElement, InternationalInputProps, LoginOption, ModularFormProps, ModularPopUp, MultiSelectProps, OnSnapshotCallback, OnSnapshotConfig, OnSnapshotConfigDocument, OnSnapshotParsers, SelectContainerProps, SelectElement, SelectWithSearchProps, SetState, Snapshot, SnapshotDocument, SnapshotResult, TextAreaContainerProps, TextAreaElement, WhereCondition };
|