jy-headless 0.0.9 → 0.0.10
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.esm.js +1 -7
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +3 -7
- package/dist/index.js.map +1 -1
- package/dist/src/index.d.ts +2 -6
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -116,11 +116,5 @@ var HomeIcon = function (_a) {
|
|
|
116
116
|
// AUTHOR: Ankush Syal
|
|
117
117
|
// https://www.svgrepo.com/svg/520794/home-20
|
|
118
118
|
|
|
119
|
-
|
|
120
|
-
CloseIcon: CloseIcon,
|
|
121
|
-
HomeIcon: HomeIcon,
|
|
122
|
-
CallIcon: CallIcon,
|
|
123
|
-
};
|
|
124
|
-
|
|
125
|
-
export { Button, Icons, Input };
|
|
119
|
+
export { Button, CallIcon, CloseIcon, HomeIcon, Input };
|
|
126
120
|
//# sourceMappingURL=index.esm.js.map
|
package/dist/index.esm.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.esm.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.esm.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
package/dist/index.js
CHANGED
|
@@ -118,13 +118,9 @@ var HomeIcon = function (_a) {
|
|
|
118
118
|
// AUTHOR: Ankush Syal
|
|
119
119
|
// https://www.svgrepo.com/svg/520794/home-20
|
|
120
120
|
|
|
121
|
-
var Icons = {
|
|
122
|
-
CloseIcon: CloseIcon,
|
|
123
|
-
HomeIcon: HomeIcon,
|
|
124
|
-
CallIcon: CallIcon,
|
|
125
|
-
};
|
|
126
|
-
|
|
127
121
|
exports.Button = Button;
|
|
128
|
-
exports.
|
|
122
|
+
exports.CallIcon = CallIcon;
|
|
123
|
+
exports.CloseIcon = CloseIcon;
|
|
124
|
+
exports.HomeIcon = HomeIcon;
|
|
129
125
|
exports.Input = Input;
|
|
130
126
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
package/dist/src/index.d.ts
CHANGED
|
@@ -1,8 +1,4 @@
|
|
|
1
1
|
import Button from './components/button/Button';
|
|
2
2
|
import Input from './components/input/Input';
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
HomeIcon: import("react").FC<import("./components/icons").IconProps>;
|
|
6
|
-
CallIcon: import("react").FC<import("./components/icons").IconProps>;
|
|
7
|
-
};
|
|
8
|
-
export { Button, Input, Icons };
|
|
3
|
+
import { CallIcon, CloseIcon, HomeIcon } from './components/icons';
|
|
4
|
+
export { Button, Input, CallIcon, CloseIcon, HomeIcon };
|