@willphan1712000/frontend 1.4.1 → 1.4.2

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 CHANGED
@@ -161,6 +161,7 @@ interface Props$4 {
161
161
  *
162
162
  * @param value value of input
163
163
  * @param setValue set value function
164
+ * @param label set label
164
165
  * @param options options object containing focusColor property -> color when input is focused
165
166
  *
166
167
  * @example
@@ -186,6 +187,7 @@ interface Props$3 {
186
187
  *
187
188
  * @param value value of input
188
189
  * @param setValue set value function
190
+ * @param label set label
189
191
  * @param options options object containing focusColor property -> color when input is focused
190
192
  *
191
193
  * @example
@@ -534,7 +536,7 @@ declare const SessionProvider: ({ value, children, }: {
534
536
  * @example
535
537
  *
536
538
  * const authClient = new auth() // auth class implements AuthInterface
537
- * const { isLoading, session } = useAuthClient(authClient) // auth is an auth object
539
+ * const { isLoading, session, auth } = useAuthClient(authClient) // auth is an auth object
538
540
  *
539
541
  */
540
542
  declare const useAuthClient: (auth: AuthInterface<SessionType>) => SessionContextType;
package/dist/index.d.ts CHANGED
@@ -161,6 +161,7 @@ interface Props$4 {
161
161
  *
162
162
  * @param value value of input
163
163
  * @param setValue set value function
164
+ * @param label set label
164
165
  * @param options options object containing focusColor property -> color when input is focused
165
166
  *
166
167
  * @example
@@ -186,6 +187,7 @@ interface Props$3 {
186
187
  *
187
188
  * @param value value of input
188
189
  * @param setValue set value function
190
+ * @param label set label
189
191
  * @param options options object containing focusColor property -> color when input is focused
190
192
  *
191
193
  * @example
@@ -534,7 +536,7 @@ declare const SessionProvider: ({ value, children, }: {
534
536
  * @example
535
537
  *
536
538
  * const authClient = new auth() // auth class implements AuthInterface
537
- * const { isLoading, session } = useAuthClient(authClient) // auth is an auth object
539
+ * const { isLoading, session, auth } = useAuthClient(authClient) // auth is an auth object
538
540
  *
539
541
  */
540
542
  declare const useAuthClient: (auth: AuthInterface<SessionType>) => SessionContextType;
package/dist/index.js CHANGED
@@ -1774,7 +1774,7 @@ var others = {
1774
1774
  };
1775
1775
  var button = {
1776
1776
  fontSize: "0.8rem",
1777
- border: "none",
1777
+ border: "solid 1px black",
1778
1778
  borderRadius: "15px",
1779
1779
  padding: "3%",
1780
1780
  display: "flex",
@@ -1782,7 +1782,8 @@ var button = {
1782
1782
  justifyContent: "center",
1783
1783
  alignItems: "center",
1784
1784
  cursor: "pointer",
1785
- position: "absolute"
1785
+ position: "absolute",
1786
+ backgroundColor: "white"
1786
1787
  };
1787
1788
  var styles8 = {
1788
1789
  container: {
package/dist/index.mjs CHANGED
@@ -1646,7 +1646,7 @@ var others = {
1646
1646
  };
1647
1647
  var button = {
1648
1648
  fontSize: "0.8rem",
1649
- border: "none",
1649
+ border: "solid 1px black",
1650
1650
  borderRadius: "15px",
1651
1651
  padding: "3%",
1652
1652
  display: "flex",
@@ -1654,7 +1654,8 @@ var button = {
1654
1654
  justifyContent: "center",
1655
1655
  alignItems: "center",
1656
1656
  cursor: "pointer",
1657
- position: "absolute"
1657
+ position: "absolute",
1658
+ backgroundColor: "white"
1658
1659
  };
1659
1660
  var styles8 = {
1660
1661
  container: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@willphan1712000/frontend",
3
- "version": "1.4.1",
3
+ "version": "1.4.2",
4
4
  "description": "Frontend Library",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",