@sikka/hawa 0.0.107 → 0.0.109
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 +7 -4
- package/es/elements/Breadcrumb.d.ts +11 -0
- package/es/elements/index.d.ts +1 -0
- package/es/index.es.js +1 -1
- package/es/stories/ElementsStories/Breadcrumb.stories.d.ts +6 -0
- package/lib/elements/Breadcrumb.d.ts +11 -0
- package/lib/elements/index.d.ts +1 -0
- package/lib/index.js +1 -1
- package/lib/stories/ElementsStories/Breadcrumb.stories.d.ts +6 -0
- package/package.json +1 -1
- package/src/blocks/AuthForms/SignInForm.tsx +2 -1
- package/src/elements/Breadcrumb.tsx +40 -0
- package/src/elements/HawaButton.tsx +2 -1
- package/src/elements/index.ts +1 -0
- package/src/styles.css +7 -4
- package/storybook-static/{209.05314e10.iframe.bundle.js → 733.819a1db2.iframe.bundle.js} +2 -2
- package/storybook-static/{209.05314e10.iframe.bundle.js.LICENSE.txt → 733.819a1db2.iframe.bundle.js.LICENSE.txt} +0 -0
- package/storybook-static/iframe.html +1 -1
- package/storybook-static/main.e3c09016.iframe.bundle.js +1 -0
- package/storybook-static/project.json +1 -1
- package/storybook-static/main.7a1984b7.iframe.bundle.js +0 -1
package/dist/styles.css
CHANGED
|
@@ -583,6 +583,10 @@ video {
|
|
|
583
583
|
.m-1 {
|
|
584
584
|
margin: 0.25rem;
|
|
585
585
|
}
|
|
586
|
+
.mx-1 {
|
|
587
|
+
margin-left: 0.25rem;
|
|
588
|
+
margin-right: 0.25rem;
|
|
589
|
+
}
|
|
586
590
|
.my-2 {
|
|
587
591
|
margin-top: 0.5rem;
|
|
588
592
|
margin-bottom: 0.5rem;
|
|
@@ -591,10 +595,6 @@ video {
|
|
|
591
595
|
margin-left: 0.5rem;
|
|
592
596
|
margin-right: 0.5rem;
|
|
593
597
|
}
|
|
594
|
-
.mx-1 {
|
|
595
|
-
margin-left: 0.25rem;
|
|
596
|
-
margin-right: 0.25rem;
|
|
597
|
-
}
|
|
598
598
|
.my-7 {
|
|
599
599
|
margin-top: 1.75rem;
|
|
600
600
|
margin-bottom: 1.75rem;
|
|
@@ -1755,6 +1755,9 @@ body {
|
|
|
1755
1755
|
-webkit-text-decoration-line: underline;
|
|
1756
1756
|
text-decoration-line: underline;
|
|
1757
1757
|
}
|
|
1758
|
+
.hover\:decoration-2:hover {
|
|
1759
|
+
text-decoration-thickness: 2px;
|
|
1760
|
+
}
|
|
1758
1761
|
.hover\:shadow-lg:hover {
|
|
1759
1762
|
--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
|
|
1760
1763
|
--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { FC, ReactNode } from "react";
|
|
2
|
+
type TBreadcrumItem = {
|
|
3
|
+
label: string;
|
|
4
|
+
href: string;
|
|
5
|
+
};
|
|
6
|
+
type TBreadcrumb = {
|
|
7
|
+
breadcrumbLink: TBreadcrumItem[];
|
|
8
|
+
separator?: string | ReactNode;
|
|
9
|
+
};
|
|
10
|
+
declare const Breadcrumb: FC<TBreadcrumb>;
|
|
11
|
+
export default Breadcrumb;
|
package/es/elements/index.d.ts
CHANGED
|
@@ -23,6 +23,7 @@ export * from "./HawaMenu";
|
|
|
23
23
|
export * from "./HawaDrawer";
|
|
24
24
|
export * from "./HawaCopyrights";
|
|
25
25
|
export * from "./HawaTimeline";
|
|
26
|
+
export * from "./Breadcrumb";
|
|
26
27
|
export * from "./HawaTextField";
|
|
27
28
|
export * from "./HawaCardInput";
|
|
28
29
|
export * from "./HawaItemCard";
|