@rebilly/revel 5.14.5 → 5.15.1

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,3 +1,17 @@
1
+ ## [5.15.1](https://github.com/Rebilly/rebilly/compare/revel-v5.15.0...revel-v5.15.1) (2023-11-14)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **risk-data-collector:** Update to Fingerprint to PRO version ([#2228](https://github.com/Rebilly/rebilly/issues/2228)) ([72f8c37](https://github.com/Rebilly/rebilly/commit/72f8c37266bd59da8b887cee5c3f9d86b0d4f7e5))
7
+
8
+ ## [5.15.0](https://github.com/Rebilly/rebilly/compare/revel-v5.14.5...revel-v5.15.0) (2023-10-31)
9
+
10
+
11
+ ### Features
12
+
13
+ * **revel:** Update toast to handle errors with 422 status code ([#2035](https://github.com/Rebilly/rebilly/issues/2035)) ([18ac60a](https://github.com/Rebilly/rebilly/commit/18ac60abe36beffcdc36206d4b0eec45dd19a836))
14
+
1
15
  ## [5.14.5](https://github.com/Rebilly/rebilly/compare/revel-v5.14.4...revel-v5.14.5) (2023-10-30)
2
16
 
3
17
 
package/README.md CHANGED
@@ -51,7 +51,7 @@ yarn && yarn docs:dev
51
51
  | `build:watch` | Build the library and rebuild on file changes. |
52
52
  | `playground:dev` | Run the playground dev server (see [Playground](#playground)). |
53
53
  | `lint:no-fix` | Run eslint. |
54
- | `lint:fix` | Run eslint and automatically fix issues. |
54
+ | `lint` | Run eslint and automatically fix issues. |
55
55
  | `test:unit` | Run the unit tests. |
56
56
  | `test:unit:watch` | Run the unit tests on changed files, in watch mode. |
57
57
 
@@ -5,4 +5,5 @@ import { formatDate } from './format-date';
5
5
  import { isKebabCase } from './is-kebab-case';
6
6
  import { isObject } from './is-object';
7
7
  import { kebabCase } from './kebab-case';
8
- export { capitalizeFirstLetter, debounce, deepClone, formatDate, isKebabCase, isObject, kebabCase, };
8
+ import { unCamelCase } from './un-camel-case';
9
+ export { capitalizeFirstLetter, debounce, deepClone, formatDate, isKebabCase, isObject, kebabCase, unCamelCase, };
@@ -0,0 +1 @@
1
+ export declare function unCamelCase(str: string): string;