@whop/embedded-components-vanilla-js 0.0.0 → 0.0.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 +8 -0
- package/dist/lib/index.d.ts +1 -1
- package/dist/url.js +1 -1
- package/dist/url.mjs +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
ADDED
package/dist/lib/index.d.ts
CHANGED
|
@@ -69,7 +69,7 @@ type CSSVariableKeys =
|
|
|
69
69
|
type CSSValue = string;
|
|
70
70
|
type CSSProps = Record<string, CSSValue>;
|
|
71
71
|
type Classes = Record<string, CSSProps>;
|
|
72
|
-
type Variables = Record<CSSVariableKeys, string
|
|
72
|
+
type Variables = Partial<Record<CSSVariableKeys, string>>;
|
|
73
73
|
type Appearance = {
|
|
74
74
|
variables?: Variables | null;
|
|
75
75
|
classes?: Classes | null;
|
package/dist/url.js
CHANGED
|
@@ -22,6 +22,6 @@ __export(url_exports, {
|
|
|
22
22
|
SCRIPT_URL: () => SCRIPT_URL
|
|
23
23
|
});
|
|
24
24
|
module.exports = __toCommonJS(url_exports);
|
|
25
|
-
const ORIGIN = "https://0-0-
|
|
25
|
+
const ORIGIN = "https://0-0-1.elements.whop.com/";
|
|
26
26
|
const SCRIPT_URL = new URL(`/release/elements.js`, ORIGIN).toString();
|
|
27
27
|
//# sourceMappingURL=url.js.map
|
package/dist/url.mjs
CHANGED