@verifiedinc-public/shared-ui-elements 3.18.0 → 3.18.2-beta.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.
@@ -4,3 +4,5 @@ export * from './phone';
4
4
  export * from './masks/index';
5
5
  export * from './omitProperty';
6
6
  export * from './ssn';
7
+ export * from './uuidColor';
8
+ export * from './string';
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Converts a kebab-case string to a pretty format with proper capitalization
3
+ * Example: "one-click-auth" becomes "One Click Auth"
4
+ */
5
+ export declare const kebabCaseToPretty: (str: string) => string;
@@ -1,2 +1,3 @@
1
1
  export * from './toCapitalize';
2
2
  export * from './toSentenceCase';
3
+ export * from './formatKebabToPretty';
@@ -1 +1 @@
1
- "use strict";function a(e){return e.split(" ").map(t=>`${t.charAt(0).toUpperCase()}${t.slice(1).toLowerCase()}`).join(" ")}function o(e){return`${e.charAt(0).toUpperCase()}${e.slice(1).toLowerCase()}`}export{a as toCapitalize,o as toSentenceCase};
1
+ "use strict";function a(e){return e.split(" ").map(t=>`${t.charAt(0).toUpperCase()}${t.slice(1).toLowerCase()}`).join(" ")}function o(e){return`${e.charAt(0).toUpperCase()}${e.slice(1).toLowerCase()}`}const s=e=>e?e.split("-").map(t=>t.charAt(0).toUpperCase()+t.slice(1).toLowerCase()).join(" "):"";export{s as kebabCaseToPretty,a as toCapitalize,o as toSentenceCase};
@@ -0,0 +1,6 @@
1
+ /**
2
+ * Converts a UUID to a HEX color using a more distributed hash approach
3
+ * @param uuid - UUID string
4
+ * @returns HEX color string (e.g., #ff0000)
5
+ */
6
+ export declare const uuidToHashedColor: (uuid: string) => string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@verifiedinc-public/shared-ui-elements",
3
- "version": "3.18.0",
3
+ "version": "3.18.2-beta.0",
4
4
  "description": "A set of UI components, utilities that is shareable with the core apps.",
5
5
  "private": false,
6
6
  "keywords": [],