akeyless-client-commons 1.1.4 → 1.1.6
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.d.mts +13 -8
- package/dist/components/index.d.ts +13 -8
- package/dist/components/index.js +48 -4
- package/dist/components/index.mjs +277 -237
- package/dist/types/index.d.mts +2 -2
- package/dist/types/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/types/index.d.mts
CHANGED
|
@@ -287,8 +287,8 @@ interface DurationValues {
|
|
|
287
287
|
type DurationInputOption = keyof DurationValues;
|
|
288
288
|
interface DurationInputProps extends BaseElementProps {
|
|
289
289
|
type?: "duration";
|
|
290
|
-
value?:
|
|
291
|
-
onChange?: (
|
|
290
|
+
value?: number;
|
|
291
|
+
onChange?: (seconds: number) => void;
|
|
292
292
|
hideLabels?: boolean;
|
|
293
293
|
options?: DurationInputOption[];
|
|
294
294
|
}
|
package/dist/types/index.d.ts
CHANGED
|
@@ -287,8 +287,8 @@ interface DurationValues {
|
|
|
287
287
|
type DurationInputOption = keyof DurationValues;
|
|
288
288
|
interface DurationInputProps extends BaseElementProps {
|
|
289
289
|
type?: "duration";
|
|
290
|
-
value?:
|
|
291
|
-
onChange?: (
|
|
290
|
+
value?: number;
|
|
291
|
+
onChange?: (seconds: number) => void;
|
|
292
292
|
hideLabels?: boolean;
|
|
293
293
|
options?: DurationInputOption[];
|
|
294
294
|
}
|