@keeper-security/keeper-js-ui 0.12.0 → 0.13.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 +12 -0
- package/dist/index.es.d.ts +6 -0
- package/dist/index.es.js +1111 -1002
- package/dist/index.umd.js +5 -5
- package/dist/style.css +1 -1
- package/package.json +1 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.13.0](https://github.com/Keeper-Security/keeper-js-ui/compare/v0.12.0...v0.13.0) (2025-06-23)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* **Icons:** add missing icons to support BE Fill Tool ([#262](https://github.com/Keeper-Security/keeper-js-ui/issues/262)) ([509d9c1](https://github.com/Keeper-Security/keeper-js-ui/commit/509d9c1dbb2ae077b44ee80824a57af0118730b0))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **dark-mode:** tighten up styles to work regardless of inheritance ([#273](https://github.com/Keeper-Security/keeper-js-ui/issues/273)) ([be5e7eb](https://github.com/Keeper-Security/keeper-js-ui/commit/be5e7ebed74328d6d8e30a7a3a4b3f39e6eb8a9a))
|
|
14
|
+
|
|
3
15
|
## [0.12.0](https://github.com/Keeper-Security/keeper-js-ui/compare/v0.11.0...v0.12.0) (2025-06-03)
|
|
4
16
|
|
|
5
17
|
|
package/dist/index.es.d.ts
CHANGED
|
@@ -414,8 +414,12 @@ export declare const MessageSquarePenLineIcon: ForwardRefExoticComponent<IconPro
|
|
|
414
414
|
|
|
415
415
|
export declare const MonitorLayoutGridIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
416
416
|
|
|
417
|
+
export declare const MoonIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
418
|
+
|
|
417
419
|
export declare const NetworkIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
418
420
|
|
|
421
|
+
export declare const OctagonAlertIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
422
|
+
|
|
419
423
|
export declare const PaletteIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
420
424
|
|
|
421
425
|
export declare const PanelLandscapeIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
@@ -514,6 +518,8 @@ export declare function StringsProvider({ children }: {
|
|
|
514
518
|
children: React_2.ReactNode;
|
|
515
519
|
}): JSX_2.Element;
|
|
516
520
|
|
|
521
|
+
export declare const SunIcon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
522
|
+
|
|
517
523
|
export declare const Switch: React_2.ForwardRefExoticComponent<SwitchProps & React_2.RefAttributes<HTMLButtonElement>>;
|
|
518
524
|
|
|
519
525
|
declare type SwitchProps = AtLeastOneRequired<SwitchPropsA11y> & React_2.ComponentPropsWithoutRef<typeof SwitchPrimitives.Root>;
|