akeyless-client-commons 1.1.97 → 1.1.99
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 +94 -38
- package/dist/components/index.css.map +1 -1
- package/dist/components/index.d.mts +7 -3
- package/dist/components/index.d.ts +7 -3
- package/dist/components/index.js +161 -146
- package/dist/components/index.mjs +160 -145
- package/dist/types/index.d.mts +5 -1
- package/dist/types/index.d.ts +5 -1
- package/package.json +1 -1
package/dist/types/index.d.mts
CHANGED
|
@@ -183,8 +183,10 @@ interface DateInputElement extends BaseElementProps {
|
|
|
183
183
|
value?: string;
|
|
184
184
|
placeholder?: string;
|
|
185
185
|
props?: React.InputHTMLAttributes<HTMLInputElement>;
|
|
186
|
-
|
|
186
|
+
calendarClassName?: string;
|
|
187
187
|
inputClassName?: string;
|
|
188
|
+
selectedDayClassName?: string;
|
|
189
|
+
todayDayClassName?: string;
|
|
188
190
|
}
|
|
189
191
|
interface TextAreaElement extends BaseElementProps {
|
|
190
192
|
type: "textarea";
|
|
@@ -360,6 +362,8 @@ interface DatePickerProps {
|
|
|
360
362
|
toText?: string;
|
|
361
363
|
buttonText?: string;
|
|
362
364
|
calendarClassName?: string;
|
|
365
|
+
selectedDayClassName?: string;
|
|
366
|
+
todayDayClassName?: string;
|
|
363
367
|
}
|
|
364
368
|
|
|
365
369
|
export type { AppName, BaseElementProps, CheckboxContainerProps, ConfirmFormProps, CustomElementProps, DateInputContainerProps, DateInputElement, DatePickerProps, Direction, DurationInputOption, DurationInputProps, DurationValues, FormElement, FormSeparatorProps, 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
|
@@ -183,8 +183,10 @@ interface DateInputElement extends BaseElementProps {
|
|
|
183
183
|
value?: string;
|
|
184
184
|
placeholder?: string;
|
|
185
185
|
props?: React.InputHTMLAttributes<HTMLInputElement>;
|
|
186
|
-
|
|
186
|
+
calendarClassName?: string;
|
|
187
187
|
inputClassName?: string;
|
|
188
|
+
selectedDayClassName?: string;
|
|
189
|
+
todayDayClassName?: string;
|
|
188
190
|
}
|
|
189
191
|
interface TextAreaElement extends BaseElementProps {
|
|
190
192
|
type: "textarea";
|
|
@@ -360,6 +362,8 @@ interface DatePickerProps {
|
|
|
360
362
|
toText?: string;
|
|
361
363
|
buttonText?: string;
|
|
362
364
|
calendarClassName?: string;
|
|
365
|
+
selectedDayClassName?: string;
|
|
366
|
+
todayDayClassName?: string;
|
|
363
367
|
}
|
|
364
368
|
|
|
365
369
|
export type { AppName, BaseElementProps, CheckboxContainerProps, ConfirmFormProps, CustomElementProps, DateInputContainerProps, DateInputElement, DatePickerProps, Direction, DurationInputOption, DurationInputProps, DurationValues, FormElement, FormSeparatorProps, InputContainerProps, InputElement, InternationalInputProps, LoginOption, ModularFormProps, ModularPopUp, MultiSelectProps, OnSnapshotCallback, OnSnapshotConfig, OnSnapshotConfigDocument, OnSnapshotParsers, SelectContainerProps, SelectElement, SelectWithSearchProps, SetState, Snapshot, SnapshotDocument, SnapshotResult, TextAreaContainerProps, TextAreaElement, WhereCondition };
|