@sikka/hawa 0.0.38 → 0.0.42

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.
Files changed (37) hide show
  1. package/.github/workflows/hawa-publish-push.yml +4 -3
  2. package/.github/workflows/hawa-publish.yml +3 -1
  3. package/README.md +1 -0
  4. package/es/index.es.js +1 -1
  5. package/lib/index.js +1 -1
  6. package/package.json +14 -5
  7. package/src/Hooks.js +61 -0
  8. package/src/blocks/Account/UserProfileForm.js +39 -1
  9. package/src/blocks/AuthForms/CodeConfirmation.js +94 -0
  10. package/src/blocks/AuthForms/SignInForm.js +1 -1
  11. package/src/blocks/AuthForms/SignInPhone.js +43 -0
  12. package/src/blocks/AuthForms/SignUpForm.js +2 -0
  13. package/src/blocks/AuthForms/index.js +2 -0
  14. package/src/blocks/Misc/NotFound.js +47 -0
  15. package/src/blocks/Misc/index.js +1 -0
  16. package/src/blocks/Pricing/PricingPlans.js +3 -3
  17. package/src/elements/AdaptiveButton.js +1 -1
  18. package/src/elements/HawaChip.js +6 -0
  19. package/src/elements/{HawaRadio.js → HawaPanelTabs.js} +3 -2
  20. package/src/elements/HawaPhoneInput.js +48 -0
  21. package/src/elements/HawaSettingsRow.js +2 -2
  22. package/src/elements/PinInput.js +9 -1
  23. package/src/elements/index.js +3 -3
  24. package/src/index.js +1 -0
  25. package/src/layout/HawaAppBar.js +0 -1
  26. package/src/styles.css +54 -3
  27. package/src/theme/HawaTheme.js +51 -31
  28. package/storybook-static/iframe.html +1 -1
  29. package/storybook-static/main.73b8ca43.iframe.bundle.js +1 -0
  30. package/storybook-static/project.json +1 -1
  31. package/storybook-static/{vendors~main.826e89a1.iframe.bundle.js → vendors~main.55d84da5.iframe.bundle.js} +3 -3
  32. package/storybook-static/{vendors~main.826e89a1.iframe.bundle.js.LICENSE.txt → vendors~main.55d84da5.iframe.bundle.js.LICENSE.txt} +6 -0
  33. package/storybook-static/vendors~main.55d84da5.iframe.bundle.js.map +1 -0
  34. package/src/elements/HawaInputLabel.js +0 -9
  35. package/src/elements/HawaTextArea.js +0 -26
  36. package/storybook-static/main.2a7fa838.iframe.bundle.js +0 -1
  37. package/storybook-static/vendors~main.826e89a1.iframe.bundle.js.map +0 -1
@@ -4,6 +4,12 @@ object-assign
4
4
  @license MIT
5
5
  */
6
6
 
7
+ /*!
8
+ Copyright (c) 2017 Jed Watson.
9
+ Licensed under the MIT License (MIT), see
10
+ http://jedwatson.github.io/classnames
11
+ */
12
+
7
13
  /*!
8
14
  * The buffer module from node.js, for the browser.
9
15
  *
@@ -0,0 +1 @@
1
+ {"version":3,"file":"vendors~main.55d84da5.iframe.bundle.js","sources":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;A","sourceRoot":""}
@@ -1,9 +0,0 @@
1
- import InputLabel from "@mui/material/InputLabel";
2
-
3
- export const HawaInputLabel = (props) => {
4
- return (
5
- <InputLabel>
6
- <div style={{ fontSize: 15 }}>{props.label}</div>
7
- </InputLabel>
8
- );
9
- };
@@ -1,26 +0,0 @@
1
- import { useTheme } from "@mui/system";
2
- import React from "react";
3
-
4
- export const HawaTextArea = (props) => {
5
- const theme = useTheme();
6
- console.log("theme is ", theme);
7
- return (
8
- <label>
9
- {/* {inputLabel ? <StyledInputLabel label={inputLabel} /> : null} */}
10
- <textarea
11
- style={{
12
- color: "black",
13
- backgroundColor: props.bgColor || "white",
14
- borderBottom: "none",
15
- border: "none",
16
- width: "100%",
17
- padding: 0,
18
- margin: 0,
19
- marginBottom: 0,
20
- resize: props.resize || "vertical"
21
- }}
22
- // value={field.value ?? ""}
23
- />
24
- </label>
25
- );
26
- };