@sikka/hawa 0.0.174 → 0.0.175
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/es/blocks/AuthForms/SignInForm.d.ts +1 -0
- package/es/blocks/AuthForms/SignUpForm.d.ts +1 -0
- package/es/blocks/Misc/Newsletter.d.ts +1 -0
- package/es/elements/HawaPricingCard.d.ts +9 -6
- package/es/index.es.js +1 -1
- package/es/layout/HawaContainer.d.ts +1 -0
- package/lib/blocks/AuthForms/SignInForm.d.ts +1 -0
- package/lib/blocks/AuthForms/SignUpForm.d.ts +1 -0
- package/lib/blocks/Misc/Newsletter.d.ts +1 -0
- package/lib/elements/HawaPricingCard.d.ts +9 -6
- package/lib/index.js +1 -1
- package/lib/layout/HawaContainer.d.ts +1 -0
- package/package.json +1 -1
- package/src/blocks/AuthForms/SignInForm.tsx +2 -2
- package/src/blocks/AuthForms/SignUpForm.tsx +4 -3
- package/src/blocks/Misc/Newsletter.tsx +11 -4
- package/src/elements/HawaPricingCard.tsx +47 -49
- package/src/elements/HawaSpinner.tsx +1 -1
- package/src/layout/HawaAppLayout.tsx +1 -1
- package/src/layout/HawaContainer.tsx +3 -0
- package/src/layout/HawaSiteLayout.tsx +0 -1
- package/storybook-static/iframe.html +1 -1
- package/storybook-static/main.46fe6f33.iframe.bundle.js +1 -0
- package/storybook-static/project.json +1 -1
- package/tailwind.config.js +2 -14
- package/storybook-static/main.ea6f9b48.iframe.bundle.js +0 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"generatedAt":
|
|
1
|
+
{"generatedAt":1675063420545,"builder":{"name":"webpack5"},"hasCustomBabel":false,"hasCustomWebpack":true,"hasStaticDirs":false,"hasStorybookEslint":false,"refCount":0,"packageManager":{"type":"yarn","version":"1.22.19"},"storybookVersion":"6.5.15","language":"typescript","storybookPackages":{"@storybook/addon-actions":{"version":"6.5.15"},"@storybook/addons":{"version":"6.5.15"},"@storybook/builder-webpack5":{"version":"6.5.15"},"@storybook/manager-webpack5":{"version":"6.5.15"},"@storybook/react":{"version":"6.5.15"},"@storybook/storybook-deployer":{"version":"2.8.16"},"@storybook/theming":{"version":"6.5.15"}},"framework":{"name":"react"},"addons":{"storybook-tailwind-dark-mode":{"version":null},"@storybook/addon-links":{"version":"6.5.15"},"@storybook/addon-docs":{"version":"6.5.15"},"@storybook/addon-essentials":{"version":"6.5.15"},"@storybook/addon-postcss":{"options":{"cssLoaderOptions":{"importLoaders":1},"postcssLoaderOptions":{}},"version":"2.0.0"}}}
|
package/tailwind.config.js
CHANGED
|
@@ -1,12 +1,5 @@
|
|
|
1
1
|
/** @type {import('tailwindcss').Config} */
|
|
2
|
-
|
|
3
|
-
// TODO: figure out why adding the same variable and adding !important in global.css not working for buttons but working for layout
|
|
4
|
-
// const themeColors = {
|
|
5
|
-
// buttonPrimar
|
|
6
|
-
// }
|
|
7
|
-
// const alpha = (clr, val) => Color(clr).alpha(val).rgb().string();
|
|
8
|
-
// const lighten = (clr, val) => Color(clr).lighten(val).rgb().string();
|
|
9
|
-
// const darken = (clr, val) => Color(clr).darken(val).rgb().string();
|
|
2
|
+
|
|
10
3
|
const BUTTON_PRIMARY = "#C62E65";
|
|
11
4
|
const LAYOUT_PRIMARY = "#EEF7FC";
|
|
12
5
|
|
|
@@ -17,10 +10,6 @@ module.exports = {
|
|
|
17
10
|
fontFamily: {
|
|
18
11
|
plex: ["IBM Plex Sans Arabic"]
|
|
19
12
|
},
|
|
20
|
-
// colors: {
|
|
21
|
-
// buttonPrimary: "--button-primary",
|
|
22
|
-
// buttonSecondary: "rgb(var(--button-secondary) / <alpha-value>)"
|
|
23
|
-
// },
|
|
24
13
|
|
|
25
14
|
extend: {
|
|
26
15
|
boxShadow: {
|
|
@@ -71,7 +60,6 @@ module.exports = {
|
|
|
71
60
|
}
|
|
72
61
|
}
|
|
73
62
|
},
|
|
74
|
-
|
|
75
63
|
animation: {
|
|
76
64
|
collapse: "collapse",
|
|
77
65
|
expandDown: "expandDown 500ms ease-in-out",
|
|
@@ -111,7 +99,7 @@ module.exports = {
|
|
|
111
99
|
1000: "#C4DEFD"
|
|
112
100
|
},
|
|
113
101
|
inputPrimary: {
|
|
114
|
-
|
|
102
|
+
500: "#EEF7FC",
|
|
115
103
|
1000: "#C4DEFD"
|
|
116
104
|
}
|
|
117
105
|
}
|