@gardenfi/garden-book 0.0.24 → 0.0.26
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/components/atoms/index.d.ts +2 -1
- package/dist/components/organisms/BlogCard/BlogCard.d.ts +2 -2
- package/dist/components/organisms/QuestCard/QuestCard.d.ts +2 -2
- package/dist/components/organisms/index.d.ts +2 -0
- package/dist/style.css +1 -0
- package/dist/ui.cjs.js +5 -5
- package/dist/ui.es.js +4853 -3956
- package/dist/ui.umd.js +5 -5
- package/package.json +1 -1
|
@@ -2,7 +2,8 @@ import { Button } from './Button/Button';
|
|
|
2
2
|
import { Typography } from './Typography/Typography';
|
|
3
3
|
import { Opacity } from './Opacity/Opacity';
|
|
4
4
|
import { Sidebar } from './Sidebar/Sidebar';
|
|
5
|
+
import { Modal } from './Modal/Modal';
|
|
5
6
|
|
|
6
7
|
export * from './Icons';
|
|
7
8
|
export * from './Logo';
|
|
8
|
-
export { Button, Typography, Sidebar, Opacity };
|
|
9
|
+
export { Button, Typography, Sidebar, Opacity, Modal };
|
|
@@ -17,5 +17,5 @@ type QuestCardProps = VariantProps<typeof questCardStyles> & {
|
|
|
17
17
|
* @param chipContent usually SEED reward amount
|
|
18
18
|
* @returns QuestCard component
|
|
19
19
|
*/
|
|
20
|
-
declare const QuestCard: React.FC<QuestCardProps>;
|
|
21
|
-
export
|
|
20
|
+
export declare const QuestCard: React.FC<QuestCardProps>;
|
|
21
|
+
export {};
|
package/dist/style.css
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.lazy-load-image-background.blur{filter:blur(15px)}.lazy-load-image-background.blur.lazy-load-image-loaded{filter:blur(0);transition:filter .3s}.lazy-load-image-background.blur>img{opacity:0}.lazy-load-image-background.blur.lazy-load-image-loaded>img{opacity:1;transition:opacity .3s}
|