@willphan1712000/frontend 1.4.1 → 1.4.3

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
@@ -478,7 +478,8 @@ var styles = {
478
478
  padding: "5px",
479
479
  maxHeight: "300px",
480
480
  overflowY: "auto",
481
- backgroundColor: "white"
481
+ backgroundColor: "white",
482
+ zIndex: 99
482
483
  },
483
484
  search_border: {
484
485
  position: "sticky",
@@ -1774,7 +1775,7 @@ var others = {
1774
1775
  };
1775
1776
  var button = {
1776
1777
  fontSize: "0.8rem",
1777
- border: "none",
1778
+ border: "solid 1px black",
1778
1779
  borderRadius: "15px",
1779
1780
  padding: "3%",
1780
1781
  display: "flex",
@@ -1782,7 +1783,8 @@ var button = {
1782
1783
  justifyContent: "center",
1783
1784
  alignItems: "center",
1784
1785
  cursor: "pointer",
1785
- position: "absolute"
1786
+ position: "absolute",
1787
+ backgroundColor: "white"
1786
1788
  };
1787
1789
  var styles8 = {
1788
1790
  container: {
package/dist/index.mjs CHANGED
@@ -350,7 +350,8 @@ var styles = {
350
350
  padding: "5px",
351
351
  maxHeight: "300px",
352
352
  overflowY: "auto",
353
- backgroundColor: "white"
353
+ backgroundColor: "white",
354
+ zIndex: 99
354
355
  },
355
356
  search_border: {
356
357
  position: "sticky",
@@ -1646,7 +1647,7 @@ var others = {
1646
1647
  };
1647
1648
  var button = {
1648
1649
  fontSize: "0.8rem",
1649
- border: "none",
1650
+ border: "solid 1px black",
1650
1651
  borderRadius: "15px",
1651
1652
  padding: "3%",
1652
1653
  display: "flex",
@@ -1654,7 +1655,8 @@ var button = {
1654
1655
  justifyContent: "center",
1655
1656
  alignItems: "center",
1656
1657
  cursor: "pointer",
1657
- position: "absolute"
1658
+ position: "absolute",
1659
+ backgroundColor: "white"
1658
1660
  };
1659
1661
  var styles8 = {
1660
1662
  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.3",
4
4
  "description": "Frontend Library",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",