@keeper-security/keeper-js-ui 0.15.0 → 0.16.0
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/CHANGELOG.md +8 -0
- package/dist/index.es.d.ts +12 -2
- package/dist/index.es.js +4123 -4255
- package/dist/index.umd.js +11 -27
- package/dist/style.css +1 -1
- package/package.json +24 -19
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.16.0](https://github.com/Keeper-Security/keeper-js-ui/compare/v0.15.0...v0.16.0) (2025-12-03)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* **DropdownMenuItemText:** make available to library ([#376](https://github.com/Keeper-Security/keeper-js-ui/issues/376)) ([422464e](https://github.com/Keeper-Security/keeper-js-ui/commit/422464eb0e85e63c4a01eaee6ccac3835173b2c0))
|
|
9
|
+
* **Icon:** add xs size to Icon options ([#361](https://github.com/Keeper-Security/keeper-js-ui/issues/361)) ([b65270a](https://github.com/Keeper-Security/keeper-js-ui/commit/b65270ab815ec9c98833798d4cfda5640bd62050))
|
|
10
|
+
|
|
3
11
|
## [0.15.0](https://github.com/Keeper-Security/keeper-js-ui/compare/v0.14.0...v0.15.0) (2025-11-04)
|
|
4
12
|
|
|
5
13
|
|
package/dist/index.es.d.ts
CHANGED
|
@@ -554,6 +554,16 @@ export declare const DropdownMenuItem: React_2.ForwardRefExoticComponent<Omit<Dr
|
|
|
554
554
|
inset?: boolean | null | undefined;
|
|
555
555
|
} & ClassProp) | undefined) => string> & React_2.RefAttributes<HTMLDivElement>>;
|
|
556
556
|
|
|
557
|
+
/**
|
|
558
|
+
* -----------------------------------------------------------------------------
|
|
559
|
+
* DropdownMenuItemText
|
|
560
|
+
* -----------------------------------------------------------------------------
|
|
561
|
+
*/
|
|
562
|
+
export declare const DropdownMenuItemText: React_2.ForwardRefExoticComponent<Omit<React_2.DetailedHTMLProps<React_2.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
563
|
+
primary: React_2.ReactNode;
|
|
564
|
+
secondary?: React_2.ReactNode;
|
|
565
|
+
} & React_2.RefAttributes<HTMLDivElement>>;
|
|
566
|
+
|
|
557
567
|
/**
|
|
558
568
|
* -----------------------------------------------------------------------------
|
|
559
569
|
* DropdownMenuLabel
|
|
@@ -825,7 +835,7 @@ declare interface IconProps extends Omit<React_2.ComponentPropsWithoutRef<'svg'>
|
|
|
825
835
|
|
|
826
836
|
declare const iconVariants: (props?: ({
|
|
827
837
|
color?: "current" | "neutral" | "primary" | "secondary" | "success" | "destructive" | null | undefined;
|
|
828
|
-
size?: "sm" | "md" | "lg" | "xl" | null | undefined;
|
|
838
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | null | undefined;
|
|
829
839
|
} & ClassProp) | undefined) => string;
|
|
830
840
|
|
|
831
841
|
export declare const IdCard2Icon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
@@ -969,7 +979,7 @@ declare interface LoaderProps extends Omit<React_2.ComponentProps<'svg'>, 'color
|
|
|
969
979
|
declare const loaderVariants: (props?: ({
|
|
970
980
|
color?: "current" | "neutral" | "primary" | "secondary" | "success" | "destructive" | null | undefined;
|
|
971
981
|
loading?: boolean | null | undefined;
|
|
972
|
-
size?: "
|
|
982
|
+
size?: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | null | undefined;
|
|
973
983
|
} & ClassProp) | undefined) => string;
|
|
974
984
|
|
|
975
985
|
export declare const LockCheckCircleXIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|