@sikka/hawa 0.0.100 → 0.0.102
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/styles.css +60 -8
- package/es/elements/DraggableCard.d.ts +2 -2
- package/es/elements/HawaCheckbox.d.ts +4 -4
- package/es/elements/HawaChip.d.ts +3 -3
- package/es/elements/HawaColorPicker.d.ts +1 -1
- package/es/elements/HawaCopyrights.d.ts +4 -2
- package/es/elements/HawaDrawer.d.ts +18 -8
- package/es/elements/HawaMenu.d.ts +19 -11
- package/es/elements/HawaModal.d.ts +6 -7
- package/es/elements/HawaRange.d.ts +2 -0
- package/es/elements/HawaSettingsRow.d.ts +14 -1
- package/es/index.es.js +1 -1
- package/lib/elements/DraggableCard.d.ts +2 -2
- package/lib/elements/HawaCheckbox.d.ts +4 -4
- package/lib/elements/HawaChip.d.ts +3 -3
- package/lib/elements/HawaColorPicker.d.ts +1 -1
- package/lib/elements/HawaCopyrights.d.ts +4 -2
- package/lib/elements/HawaDrawer.d.ts +18 -8
- package/lib/elements/HawaMenu.d.ts +19 -11
- package/lib/elements/HawaModal.d.ts +6 -7
- package/lib/elements/HawaRange.d.ts +2 -0
- package/lib/elements/HawaSettingsRow.d.ts +14 -1
- package/lib/index.js +1 -1
- package/package.json +3 -2
- package/rollup.config.js +4 -0
- package/src/elements/DragDropImages.tsx +32 -26
- package/src/elements/DraggableCard.tsx +2 -2
- package/src/elements/HawaCheckbox.tsx +11 -6
- package/src/elements/HawaChip.tsx +3 -3
- package/src/elements/HawaColorPicker.tsx +2 -2
- package/src/elements/HawaCopyrights.tsx +8 -15
- package/src/elements/HawaDrawer.tsx +42 -23
- package/src/elements/HawaMenu.tsx +76 -53
- package/src/elements/HawaModal.tsx +20 -21
- package/src/elements/HawaRange.tsx +2 -0
- package/src/elements/HawaSettingsRow.tsx +29 -38
- package/src/elements/HawaTabs.tsx +1 -1
- package/src/styles.css +60 -8
- package/storybook-static/{733.8d2de9f8.iframe.bundle.js → 209.3141149a.iframe.bundle.js} +2 -2
- package/storybook-static/{733.8d2de9f8.iframe.bundle.js.LICENSE.txt → 209.3141149a.iframe.bundle.js.LICENSE.txt} +0 -0
- package/storybook-static/iframe.html +1 -1
- package/storybook-static/main.2fac3c3c.iframe.bundle.js +1 -0
- package/storybook-static/project.json +1 -1
- package/tailwind.config.js +26 -1
- package/storybook-static/main.71507dcb.iframe.bundle.js +0 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"generatedAt":
|
|
1
|
+
{"generatedAt":1669332854060,"builder":{"name":"webpack5"},"hasCustomBabel":false,"hasCustomWebpack":true,"hasStaticDirs":false,"hasStorybookEslint":false,"refCount":0,"packageManager":{"type":"npm","version":"8.15.0"},"storybookVersion":"6.5.13","language":"typescript","storybookPackages":{"@storybook/addon-actions":{"version":"6.5.13"},"@storybook/addons":{"version":"6.5.13"},"@storybook/builder-webpack5":{"version":"6.5.13"},"@storybook/manager-webpack5":{"version":"6.5.13"},"@storybook/react":{"version":"6.5.13"},"@storybook/storybook-deployer":{"version":"2.8.16"},"@storybook/theming":{"version":"6.5.13"}},"framework":{"name":"react"},"addons":{"@storybook/addon-links":{"version":"6.5.13"},"@storybook/addon-docs":{"version":"6.5.13"},"@storybook/addon-essentials":{"version":"6.5.13"},"@storybook/addon-postcss":{"options":{"cssLoaderOptions":{"importLoaders":1},"postcssLoaderOptions":{}},"version":"2.0.0"}}}
|
package/tailwind.config.js
CHANGED
|
@@ -23,10 +23,35 @@ module.exports = {
|
|
|
23
23
|
"50%": { transform: "scaleY(0)" },
|
|
24
24
|
"60%": { transform: "scaleY(0)" }
|
|
25
25
|
// "100%": { transform: "scaleY(1)" },
|
|
26
|
+
},
|
|
27
|
+
expandDown: {
|
|
28
|
+
"0%": {
|
|
29
|
+
// opacity: 0,
|
|
30
|
+
"max-height": 0,
|
|
31
|
+
height: 0
|
|
32
|
+
},
|
|
33
|
+
"100%": {
|
|
34
|
+
// opacity: 1,
|
|
35
|
+
"max-height": 100
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
expandUp: {
|
|
39
|
+
"0%": {
|
|
40
|
+
// opacity: 1,
|
|
41
|
+
maxHeight: 100
|
|
42
|
+
},
|
|
43
|
+
"100%": {
|
|
44
|
+
// opacity: 0,
|
|
45
|
+
maxHeight: 0,
|
|
46
|
+
height: 0
|
|
47
|
+
}
|
|
26
48
|
}
|
|
27
49
|
},
|
|
50
|
+
|
|
28
51
|
animation: {
|
|
29
|
-
|
|
52
|
+
collapse: "collapse",
|
|
53
|
+
expandDown: "expandDown 100ms linear",
|
|
54
|
+
expandUp: "expandUp 100ms linear"
|
|
30
55
|
},
|
|
31
56
|
colors: {
|
|
32
57
|
primary: {
|