@pinerohit11/testwidget 0.1.8 → 0.1.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/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +5 -4
- package/dist/index.mjs +4 -3
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
@@ -30,16 +30,17 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
30
30
|
// src/app/index.ts
|
31
31
|
var app_exports = {};
|
32
32
|
__export(app_exports, {
|
33
|
-
|
33
|
+
PaywithFractal: () => PaywithFractal
|
34
34
|
});
|
35
35
|
module.exports = __toCommonJS(app_exports);
|
36
36
|
|
37
37
|
// src/app/components/Greet.tsx
|
38
38
|
var import_react = __toESM(require("react"));
|
39
|
-
function
|
40
|
-
|
39
|
+
function PaywithFractal({ name }) {
|
40
|
+
console.log(name, "name");
|
41
|
+
return /* @__PURE__ */ import_react.default.createElement("button", null, "Pay");
|
41
42
|
}
|
42
43
|
// Annotate the CommonJS export names for ESM import in node:
|
43
44
|
0 && (module.exports = {
|
44
|
-
|
45
|
+
PaywithFractal
|
45
46
|
});
|
package/dist/index.mjs
CHANGED
@@ -1,8 +1,9 @@
|
|
1
1
|
// src/app/components/Greet.tsx
|
2
2
|
import React from "react";
|
3
|
-
function
|
4
|
-
|
3
|
+
function PaywithFractal({ name }) {
|
4
|
+
console.log(name, "name");
|
5
|
+
return /* @__PURE__ */ React.createElement("button", null, "Pay");
|
5
6
|
}
|
6
7
|
export {
|
7
|
-
|
8
|
+
PaywithFractal
|
8
9
|
};
|