@hook-sdk/template 0.15.0 → 0.17.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.
- package/dist/index.cjs +7 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +5 -1
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.cjs
CHANGED
|
@@ -64,7 +64,8 @@ __export(index_exports, {
|
|
|
64
64
|
useResetForm: () => useResetForm,
|
|
65
65
|
useSignupForm: () => useSignupForm,
|
|
66
66
|
useSubscription: () => useSubscription,
|
|
67
|
-
useToast: () => useToast
|
|
67
|
+
useToast: () => useToast,
|
|
68
|
+
useTrackOnboardingStep: () => import_sdk19.useTrackOnboardingStep
|
|
68
69
|
});
|
|
69
70
|
module.exports = __toCommonJS(index_exports);
|
|
70
71
|
|
|
@@ -2820,6 +2821,9 @@ function useAuth() {
|
|
|
2820
2821
|
};
|
|
2821
2822
|
}
|
|
2822
2823
|
|
|
2824
|
+
// src/index.ts
|
|
2825
|
+
var import_sdk19 = require("@hook-sdk/sdk");
|
|
2826
|
+
|
|
2823
2827
|
// src/hooks/useSubscription.ts
|
|
2824
2828
|
var import_sdk16 = require("@hook-sdk/sdk");
|
|
2825
2829
|
function useSubscription() {
|
|
@@ -3073,6 +3077,7 @@ function useFeature(name) {
|
|
|
3073
3077
|
useResetForm,
|
|
3074
3078
|
useSignupForm,
|
|
3075
3079
|
useSubscription,
|
|
3076
|
-
useToast
|
|
3080
|
+
useToast,
|
|
3081
|
+
useTrackOnboardingStep
|
|
3077
3082
|
});
|
|
3078
3083
|
//# sourceMappingURL=index.cjs.map
|