xenopomp-essentials 0.0.1-beta.8 → 0.0.1-beta.9

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/index.d.mts CHANGED
@@ -1,5 +1,6 @@
1
1
  import { ElementType, ComponentProps, FC, ReactNode, Dispatch, SetStateAction } from 'react';
2
2
  import { Jsonifiable } from 'type-fest';
3
+ export { transliterate } from 'transliteration';
3
4
 
4
5
  /**
5
6
  * Matches any object but not arrays, class instances etc.
package/index.d.ts CHANGED
@@ -1,5 +1,6 @@
1
1
  import { ElementType, ComponentProps, FC, ReactNode, Dispatch, SetStateAction } from 'react';
2
2
  import { Jsonifiable } from 'type-fest';
3
+ export { transliterate } from 'transliteration';
3
4
 
4
5
  /**
5
6
  * Matches any object but not arrays, class instances etc.
package/index.mjs CHANGED
@@ -1 +1 @@
1
- function n(t){function r(e){return t(e)}return r.pipe=e=>n(i=>e(t(i))),r}function a(t){return t.charAt(0).toUpperCase()+t.slice(1)}function c(t){return t.charAt(0).toLowerCase()+t.slice(1)}const o=t=>{const r=t.match(/(\d\.){2}\d/gi)?.at(0)||null,e=t.match(/(?<=-)\w+(?=\.\d)/gi)?.at(0),i=t.match(/(?<=((\d\.){2}\d-\w+\.))\d+/gi)?.at(0);return{version:r,preid:e,prerelease:i}};export{a as capitalize,o as parseVersion,n as pipe,c as uncapitalize};
1
+ export{transliterate}from"transliteration";function n(t){function e(r){return t(r)}return e.pipe=r=>n(i=>r(t(i))),e}function a(t){return t.charAt(0).toUpperCase()+t.slice(1)}function c(t){return t.charAt(0).toLowerCase()+t.slice(1)}const o=t=>{const e=t.match(/(\d\.){2}\d/gi)?.at(0)||null,r=t.match(/(?<=-)\w+(?=\.\d)/gi)?.at(0),i=t.match(/(?<=((\d\.){2}\d-\w+\.))\d+/gi)?.at(0);return{version:e,preid:r,prerelease:i}};export{a as capitalize,o as parseVersion,n as pipe,c as uncapitalize};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "xenopomp-essentials",
3
- "version": "0.0.1-beta.8",
3
+ "version": "0.0.1-beta.9",
4
4
  "author": "XenoPOMP <101574433+XenoPOMP@users.noreply.github.com>",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -37,6 +37,7 @@
37
37
  "@types/react": "^19.0.8",
38
38
  "next": "^15.1.6",
39
39
  "react": "^19.0.0",
40
+ "transliteration": "^2.3.5",
40
41
  "type-fest": "^4.33.0",
41
42
  "typescript": "^5.7.3"
42
43
  },