@sparkstudio/accounts-ui 1.1.78 → 1.1.80
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 +1 -1
- package/dist/index.d.cts +1 -4
- package/dist/index.d.ts +1 -4
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -138,7 +138,7 @@ ${err?.message ?? err}`);
|
|
|
138
138
|
|
|
139
139
|
// src/views/HomeView.tsx
|
|
140
140
|
var import_jsx_runtime2 = require("react/jsx-runtime");
|
|
141
|
-
function HomeView(
|
|
141
|
+
function HomeView() {
|
|
142
142
|
return /* @__PURE__ */ (0, import_jsx_runtime2.jsx)("div", { className: "container text-center mt-5", children: /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(TestButton, {}) });
|
|
143
143
|
}
|
|
144
144
|
// Annotate the CommonJS export names for ESM import in node:
|
package/dist/index.d.cts
CHANGED
|
@@ -66,9 +66,6 @@ interface TestButtonProps {
|
|
|
66
66
|
}
|
|
67
67
|
declare function TestButton({ className }: TestButtonProps): react_jsx_runtime.JSX.Element;
|
|
68
68
|
|
|
69
|
-
|
|
70
|
-
onTestClick?: () => void;
|
|
71
|
-
}
|
|
72
|
-
declare function HomeView({ onTestClick }: HomeViewProps): react_jsx_runtime.JSX.Element;
|
|
69
|
+
declare function HomeView(): react_jsx_runtime.JSX.Element;
|
|
73
70
|
|
|
74
71
|
export { AuthResponseDTO, Home, HomeView, type IAuthResponseDTO, type IUserDTO, SparkStudioAccountsSDK, TestButton, type TestButtonProps, UserDTO, Users };
|
package/dist/index.d.ts
CHANGED
|
@@ -66,9 +66,6 @@ interface TestButtonProps {
|
|
|
66
66
|
}
|
|
67
67
|
declare function TestButton({ className }: TestButtonProps): react_jsx_runtime.JSX.Element;
|
|
68
68
|
|
|
69
|
-
|
|
70
|
-
onTestClick?: () => void;
|
|
71
|
-
}
|
|
72
|
-
declare function HomeView({ onTestClick }: HomeViewProps): react_jsx_runtime.JSX.Element;
|
|
69
|
+
declare function HomeView(): react_jsx_runtime.JSX.Element;
|
|
73
70
|
|
|
74
71
|
export { AuthResponseDTO, Home, HomeView, type IAuthResponseDTO, type IUserDTO, SparkStudioAccountsSDK, TestButton, type TestButtonProps, UserDTO, Users };
|
package/dist/index.js
CHANGED
|
@@ -106,7 +106,7 @@ ${err?.message ?? err}`);
|
|
|
106
106
|
|
|
107
107
|
// src/views/HomeView.tsx
|
|
108
108
|
import { jsx as jsx2 } from "react/jsx-runtime";
|
|
109
|
-
function HomeView(
|
|
109
|
+
function HomeView() {
|
|
110
110
|
return /* @__PURE__ */ jsx2("div", { className: "container text-center mt-5", children: /* @__PURE__ */ jsx2(TestButton, {}) });
|
|
111
111
|
}
|
|
112
112
|
export {
|