@bcts/components 1.0.0-alpha.16 → 1.0.0-alpha.17
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/dist/index.cjs +6 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +12 -8
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts +12 -8
- package/dist/index.d.mts.map +1 -1
- package/dist/index.iife.js +6 -0
- package/dist/index.iife.js.map +1 -1
- package/dist/index.mjs +6 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +8 -8
package/dist/index.cjs
CHANGED
|
@@ -2081,6 +2081,12 @@ var ARID = class ARID {
|
|
|
2081
2081
|
const ur = _bcts_uniform_resources.UR.fromURString(urString);
|
|
2082
2082
|
return ARID.fromUR(ur);
|
|
2083
2083
|
}
|
|
2084
|
+
/**
|
|
2085
|
+
* Alias for fromURString for Rust API compatibility.
|
|
2086
|
+
*/
|
|
2087
|
+
static fromUrString(urString) {
|
|
2088
|
+
return ARID.fromURString(urString);
|
|
2089
|
+
}
|
|
2084
2090
|
};
|
|
2085
2091
|
|
|
2086
2092
|
//#endregion
|