@keeper-security/keeper-js-ui 0.23.1 → 0.25.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 CHANGED
@@ -1,5 +1,29 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.25.0](https://github.com/Keeper-Security/keeper-js-ui/compare/v0.24.0...v0.25.0) (2026-05-12)
4
+
5
+
6
+ ### Features
7
+
8
+ * **Icon:** add BreachwatchIcon ([#553](https://github.com/Keeper-Security/keeper-js-ui/issues/553)) ([c22363c](https://github.com/Keeper-Security/keeper-js-ui/commit/c22363cc60229db5aa079e23b5764006a62a652e))
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **Checkbox:** adjust dimensions and add new icon ([#554](https://github.com/Keeper-Security/keeper-js-ui/issues/554)) ([5703eeb](https://github.com/Keeper-Security/keeper-js-ui/commit/5703eeb9315c70d4e2cb726bf151102bca758fb9))
14
+
15
+ ## [0.24.0](https://github.com/Keeper-Security/keeper-js-ui/compare/v0.23.1...v0.24.0) (2026-05-05)
16
+
17
+
18
+ ### Features
19
+
20
+ * **Indicator:** add component to library ([#536](https://github.com/Keeper-Security/keeper-js-ui/issues/536)) ([f36e3a6](https://github.com/Keeper-Security/keeper-js-ui/commit/f36e3a6b5584f1c42d712146642a36d7f970d203))
21
+
22
+
23
+ ### Bug Fixes
24
+
25
+ * **ListItemText:** adjust font-size in compact density ([#547](https://github.com/Keeper-Security/keeper-js-ui/issues/547)) ([d895bd1](https://github.com/Keeper-Security/keeper-js-ui/commit/d895bd1bc7a1d72a4882f720479bc9a95e421872))
26
+
3
27
  ## [0.23.1](https://github.com/Keeper-Security/keeper-js-ui/compare/v0.23.0...v0.23.1) (2026-05-05)
4
28
 
5
29
 
package/README.md CHANGED
@@ -149,6 +149,22 @@ Your best bet is to use one of [Windows' High Contrast Themes](https://learn.mic
149
149
  4. Select `Emulate CSS forced-colors: active`.
150
150
  5. To deactivate, repeat the `Run` command but select `Do not emulate CSS forced-colors`.
151
151
 
152
+ ## Deprecating Components, Props, and Values
153
+
154
+ While we strive for stable APIs, mistakes happen. The goal of a deprecation
155
+ is to inform consumers that something has changed, provide an alternative,
156
+ and allow enough time for migration before removal.
157
+
158
+ ### Deprecating an Entire Component
159
+
160
+ ### Deprecating a Prop
161
+
162
+ ### Deprecating a Value
163
+
164
+ ### Runtime Warnings (Optional)
165
+
166
+ ### Commit, Changelog, and PR
167
+
152
168
  ## Adding Icons
153
169
 
154
170
  1. Create a `.tsx` file in `src/icons`.
@@ -507,30 +523,31 @@ A `dist` folder will be created at the root of the project. This folder is ignor
507
523
 
508
524
  Before publishing, you want to make sure that external projects have access to expected components and intellisense/autocomplete still works.
509
525
 
510
- [npm link](https://docs.npmjs.com/cli/v9/commands/npm-link) can be flakey, so the alternative would be run [npm pack](https://docs.npmjs.com/cli/v9/commands/npm-pack) to create a local \*.tgz file and install that file in your external project.
526
+ [npm link](https://docs.npmjs.com/cli/v9/commands/npm-link) can be flakey, so the alternative would be run [npm pack](https://docs.npmjs.com/cli/v9/commands/npm-pack) to create a local \*.tgz file in the library and install that file into the external project importing the library.
511
527
 
512
- 0. (Optional): Update your `package.json` version number, **_but don't commit it_**. This step is automated with the correct next version number.
513
- 1. Run:
528
+ 0. (Optional): Update the library's `package.json` version number, **_but don't commit it_**. This step is automated with the correct next version number.
529
+ 1. From the library, run:
514
530
 
515
531
  ```sh
516
532
  npm run build && npm pack
517
533
  ```
518
534
 
519
- 2. Copy the name and location of the new `*.tgz` file that was created.
520
- 3. Update your external project's `package.json` reference to the library.
535
+ 2. Copy the name and location of the new `*.tgz` file that was created at the root of the library.
536
+ 3. Switch over to the project that is importing the library (e.g. Browser Extension).
537
+ 4. Update that project's `package.json` reference to the library.
521
538
 
522
539
  ```diff
523
540
  - "@keeper-security/keeper-js-ui": "1.0.0",
524
541
  + "@keeper-security/keeper-js-ui": "file://../keeper-js-ui/keeper-security-keeper-js-ui-1.0.0.tgz",
525
542
  ```
526
543
 
527
- 4. Run:
544
+ 5. From the external project, run:
528
545
 
529
546
  ```sh
530
547
  npm install
531
548
  ```
532
549
 
533
- 5. After testing for component behavior and availability, as well as intellisense/autocomplete and TypeScript prop validation, undo your package reference changes to `package.json` & `package-lock.json`. **_Do not commit them into your external project._**
550
+ 6. After testing for component behavior and availability, as well as intellisense/autocomplete and TypeScript prop validation, undo your package reference changes to `package.json` & `package-lock.json`. **_Do not commit them into your external project._**
534
551
 
535
552
  ## Publishing an NPM Package
536
553