negodesign 0.0.36 → 0.0.38
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/core/card/shared/CardDescription.svelte +1 -1
- package/dist/components/core/carousel/grid/media/ui/CarouselGridMedia.svelte +38 -28
- package/dist/components/core/carousel/grid/product/ui/CarouselGridProduct.svelte +48 -38
- package/dist/components/core/carousel/grid/profile/ui/CarouselGridProfile.svelte +56 -46
- package/dist/components/core/carousel/grid/promotion/ui/CarouselGridPromotion.svelte +46 -28
- package/dist/components/core/carousel/highlights/ui/CarouselHighlights.svelte +57 -47
- package/dist/components/core/carousel/product/ui/CarouselProduct.svelte +57 -47
- package/dist/components/core/carousel/promotion/types.d.ts +5 -0
- package/dist/components/core/carousel/promotion/ui/CarouselPromotion.svelte +67 -47
- package/dist/components/core/panel/NotFoundEmpty.svelte +76 -0
- package/dist/components/core/panel/NotFoundEmpty.svelte.d.ts +16 -0
- package/dist/components/pages/company-profile/CompanyProfile.svelte +13 -9
- package/dist/components/pages/company-profile/data.js +47 -0
- package/dist/components/pages/company-profile/shared/ProfileBanner.svelte +136 -60
- package/dist/components/pages/company-profile/shared/ProfileProducts.svelte +62 -0
- package/dist/components/pages/company-profile/shared/ProfileProducts.svelte.d.ts +9 -0
- package/dist/components/pages/company-profile/shared/ProfileSidebar.svelte +1 -1
- package/dist/components/pages/company-profile/types.d.ts +25 -5
- package/dist/components/ui/empty/empty-content.svelte +23 -0
- package/dist/components/ui/empty/empty-content.svelte.d.ts +5 -0
- package/dist/components/ui/empty/empty-description.svelte +23 -0
- package/dist/components/ui/empty/empty-description.svelte.d.ts +5 -0
- package/dist/components/ui/empty/empty-header.svelte +20 -0
- package/dist/components/ui/empty/empty-header.svelte.d.ts +5 -0
- package/dist/components/ui/empty/empty-media.svelte +41 -0
- package/dist/components/ui/empty/empty-media.svelte.d.ts +26 -0
- package/dist/components/ui/empty/empty-title.svelte +20 -0
- package/dist/components/ui/empty/empty-title.svelte.d.ts +5 -0
- package/dist/components/ui/empty/empty.svelte +23 -0
- package/dist/components/ui/empty/empty.svelte.d.ts +5 -0
- package/dist/components/ui/empty/index.d.ts +7 -0
- package/dist/components/ui/empty/index.js +9 -0
- package/dist/globals.css +60 -0
- package/dist/i18n/langs/en.d.ts +15 -0
- package/dist/i18n/langs/en.js +15 -0
- package/dist/i18n/langs/pt.d.ts +15 -0
- package/dist/i18n/langs/pt.js +15 -0
- package/dist/i18n/translations.d.ts +30 -0
- package/package.json +1 -1
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { IconSvgElement } from "@hugeicons/svelte";
|
|
2
|
+
import type { CardProductProps } from "../../core/card/types";
|
|
2
3
|
/**
|
|
3
4
|
* Item de estatística exibido na faixa de dados do banner
|
|
4
5
|
* (ex: "Setor de atuação", "Anos de Atuação", "Localização").
|
|
@@ -75,6 +76,26 @@ export interface ProfileGalleryData {
|
|
|
75
76
|
/** Lista de imagens/vídeos da galeria. */
|
|
76
77
|
images: ProfileImage[];
|
|
77
78
|
}
|
|
79
|
+
/**
|
|
80
|
+
* Dados da secção "Produtos".
|
|
81
|
+
*/
|
|
82
|
+
export interface ProfileProductsData {
|
|
83
|
+
/** Título da secção (padrão: "Produtos"). */
|
|
84
|
+
title?: string;
|
|
85
|
+
/** Descrição da secção de produtos. */
|
|
86
|
+
description?: string;
|
|
87
|
+
/** Lista de produtos/serviços da empresa. */
|
|
88
|
+
items: CardProductProps[];
|
|
89
|
+
/**
|
|
90
|
+
* Estado de carregamento.
|
|
91
|
+
* Quando true, todos os blocos exibem Skeletons no lugar do conteúdo.
|
|
92
|
+
* @default false
|
|
93
|
+
*/
|
|
94
|
+
isLoading?: boolean;
|
|
95
|
+
/** Variante do CardProduct (1 ou 2). */
|
|
96
|
+
variant?: 1 | 2;
|
|
97
|
+
varient?: 1 | 2;
|
|
98
|
+
}
|
|
78
99
|
/**
|
|
79
100
|
* Dados completos apresentados na página de perfil da empresa/fábrica.
|
|
80
101
|
*/
|
|
@@ -87,15 +108,13 @@ export interface CompanyProfileData {
|
|
|
87
108
|
about: ProfileAboutData;
|
|
88
109
|
/** Dados da secção "Galeria". */
|
|
89
110
|
gallery: ProfileGalleryData;
|
|
111
|
+
/** Dados da secção "Produtos". */
|
|
112
|
+
products?: ProfileProductsData;
|
|
90
113
|
}
|
|
91
114
|
/**
|
|
92
115
|
* Propriedades do componente principal CompanyProfile.
|
|
93
116
|
*/
|
|
94
117
|
export interface CompanyProfileProps {
|
|
95
|
-
address?: string;
|
|
96
|
-
category?: string;
|
|
97
|
-
website?: string;
|
|
98
|
-
yearFounded?: string;
|
|
99
118
|
/** Dados completos do perfil a serem exibidos. */
|
|
100
119
|
data?: CompanyProfileData;
|
|
101
120
|
/**
|
|
@@ -105,7 +124,8 @@ export interface CompanyProfileProps {
|
|
|
105
124
|
*/
|
|
106
125
|
isLoading?: boolean;
|
|
107
126
|
onWhatsapp?: (id: string | number) => void;
|
|
108
|
-
onEmail?: (id: string | number) => void;
|
|
127
|
+
onEmail?: (id: string | number) => void;
|
|
128
|
+
/** Callback executado quando o utilizador clica em copiar link. */
|
|
109
129
|
onCopyLink?: (id: string | number) => void;
|
|
110
130
|
/** Callback executado quando o utilizador clica em partilhar. */
|
|
111
131
|
onShare?: (id: string | number) => void;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import { cn, type WithElementRef } from "../../../utils.js";
|
|
3
|
+
import type { HTMLAttributes } from "svelte/elements";
|
|
4
|
+
|
|
5
|
+
let {
|
|
6
|
+
ref = $bindable(null),
|
|
7
|
+
class: className,
|
|
8
|
+
children,
|
|
9
|
+
...restProps
|
|
10
|
+
}: WithElementRef<HTMLAttributes<HTMLDivElement>> = $props();
|
|
11
|
+
</script>
|
|
12
|
+
|
|
13
|
+
<div
|
|
14
|
+
bind:this={ref}
|
|
15
|
+
data-slot="empty-content"
|
|
16
|
+
class={cn(
|
|
17
|
+
"gap-4 text-sm flex w-full max-w-sm min-w-0 flex-col items-center text-balance",
|
|
18
|
+
className
|
|
19
|
+
)}
|
|
20
|
+
{...restProps}
|
|
21
|
+
>
|
|
22
|
+
{@render children?.()}
|
|
23
|
+
</div>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { type WithElementRef } from "../../../utils.js";
|
|
2
|
+
import type { HTMLAttributes } from "svelte/elements";
|
|
3
|
+
declare const EmptyContent: import("svelte").Component<WithElementRef<HTMLAttributes<HTMLDivElement>>, {}, "ref">;
|
|
4
|
+
type EmptyContent = ReturnType<typeof EmptyContent>;
|
|
5
|
+
export default EmptyContent;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import { cn, type WithElementRef } from "../../../utils.js";
|
|
3
|
+
import type { HTMLAttributes } from "svelte/elements";
|
|
4
|
+
|
|
5
|
+
let {
|
|
6
|
+
ref = $bindable(null),
|
|
7
|
+
class: className,
|
|
8
|
+
children,
|
|
9
|
+
...restProps
|
|
10
|
+
}: WithElementRef<HTMLAttributes<HTMLDivElement>> = $props();
|
|
11
|
+
</script>
|
|
12
|
+
|
|
13
|
+
<div
|
|
14
|
+
bind:this={ref}
|
|
15
|
+
data-slot="empty-description"
|
|
16
|
+
class={cn(
|
|
17
|
+
"text-sm/relaxed text-sm/relaxed text-muted-foreground [&>a]:underline [&>a]:underline-offset-4 [&>a:hover]:text-primary",
|
|
18
|
+
className
|
|
19
|
+
)}
|
|
20
|
+
{...restProps}
|
|
21
|
+
>
|
|
22
|
+
{@render children?.()}
|
|
23
|
+
</div>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { type WithElementRef } from "../../../utils.js";
|
|
2
|
+
import type { HTMLAttributes } from "svelte/elements";
|
|
3
|
+
declare const EmptyDescription: import("svelte").Component<WithElementRef<HTMLAttributes<HTMLDivElement>>, {}, "ref">;
|
|
4
|
+
type EmptyDescription = ReturnType<typeof EmptyDescription>;
|
|
5
|
+
export default EmptyDescription;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import { cn, type WithElementRef } from "../../../utils.js";
|
|
3
|
+
import type { HTMLAttributes } from "svelte/elements";
|
|
4
|
+
|
|
5
|
+
let {
|
|
6
|
+
ref = $bindable(null),
|
|
7
|
+
class: className,
|
|
8
|
+
children,
|
|
9
|
+
...restProps
|
|
10
|
+
}: WithElementRef<HTMLAttributes<HTMLDivElement>> = $props();
|
|
11
|
+
</script>
|
|
12
|
+
|
|
13
|
+
<div
|
|
14
|
+
bind:this={ref}
|
|
15
|
+
data-slot="empty-header"
|
|
16
|
+
class={cn("gap-2 flex max-w-sm flex-col items-center", className)}
|
|
17
|
+
{...restProps}
|
|
18
|
+
>
|
|
19
|
+
{@render children?.()}
|
|
20
|
+
</div>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { type WithElementRef } from "../../../utils.js";
|
|
2
|
+
import type { HTMLAttributes } from "svelte/elements";
|
|
3
|
+
declare const EmptyHeader: import("svelte").Component<WithElementRef<HTMLAttributes<HTMLDivElement>>, {}, "ref">;
|
|
4
|
+
type EmptyHeader = ReturnType<typeof EmptyHeader>;
|
|
5
|
+
export default EmptyHeader;
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
<script lang="ts" module>
|
|
2
|
+
import { tv, type VariantProps } from "tailwind-variants";
|
|
3
|
+
|
|
4
|
+
export const emptyMediaVariants = tv({
|
|
5
|
+
base: "mb-2 flex shrink-0 items-center justify-center [&_svg]:pointer-events-none [&_svg]:shrink-0",
|
|
6
|
+
variants: {
|
|
7
|
+
variant: {
|
|
8
|
+
default: "bg-transparent",
|
|
9
|
+
icon: "flex size-10 shrink-0 items-center justify-center rounded-lg bg-muted text-foreground [&_svg:not([class*='size-'])]:size-6",
|
|
10
|
+
},
|
|
11
|
+
},
|
|
12
|
+
defaultVariants: {
|
|
13
|
+
variant: "default",
|
|
14
|
+
},
|
|
15
|
+
});
|
|
16
|
+
|
|
17
|
+
export type EmptyMediaVariant = VariantProps<typeof emptyMediaVariants>["variant"];
|
|
18
|
+
</script>
|
|
19
|
+
|
|
20
|
+
<script lang="ts">
|
|
21
|
+
import { cn, type WithElementRef } from "../../../utils.js";
|
|
22
|
+
import type { HTMLAttributes } from "svelte/elements";
|
|
23
|
+
|
|
24
|
+
let {
|
|
25
|
+
ref = $bindable(null),
|
|
26
|
+
class: className,
|
|
27
|
+
children,
|
|
28
|
+
variant = "default",
|
|
29
|
+
...restProps
|
|
30
|
+
}: WithElementRef<HTMLAttributes<HTMLDivElement>> & { variant?: EmptyMediaVariant } = $props();
|
|
31
|
+
</script>
|
|
32
|
+
|
|
33
|
+
<div
|
|
34
|
+
bind:this={ref}
|
|
35
|
+
data-slot="empty-icon"
|
|
36
|
+
data-variant={variant}
|
|
37
|
+
class={cn(emptyMediaVariants({ variant }), className)}
|
|
38
|
+
{...restProps}
|
|
39
|
+
>
|
|
40
|
+
{@render children?.()}
|
|
41
|
+
</div>
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { type VariantProps } from "tailwind-variants";
|
|
2
|
+
export declare const emptyMediaVariants: import("tailwind-variants").TVReturnType<{
|
|
3
|
+
variant: {
|
|
4
|
+
default: "bg-transparent";
|
|
5
|
+
icon: "flex size-10 shrink-0 items-center justify-center rounded-lg bg-muted text-foreground [&_svg:not([class*='size-'])]:size-6";
|
|
6
|
+
};
|
|
7
|
+
}, undefined, "mb-2 flex shrink-0 items-center justify-center [&_svg]:pointer-events-none [&_svg]:shrink-0", {
|
|
8
|
+
variant: {
|
|
9
|
+
default: "bg-transparent";
|
|
10
|
+
icon: "flex size-10 shrink-0 items-center justify-center rounded-lg bg-muted text-foreground [&_svg:not([class*='size-'])]:size-6";
|
|
11
|
+
};
|
|
12
|
+
}, undefined, import("tailwind-variants").TVReturnTypeLike<{
|
|
13
|
+
variant: {
|
|
14
|
+
default: "bg-transparent";
|
|
15
|
+
icon: "flex size-10 shrink-0 items-center justify-center rounded-lg bg-muted text-foreground [&_svg:not([class*='size-'])]:size-6";
|
|
16
|
+
};
|
|
17
|
+
}, undefined>>;
|
|
18
|
+
export type EmptyMediaVariant = VariantProps<typeof emptyMediaVariants>["variant"];
|
|
19
|
+
import { type WithElementRef } from "../../../utils.js";
|
|
20
|
+
import type { HTMLAttributes } from "svelte/elements";
|
|
21
|
+
type $$ComponentProps = WithElementRef<HTMLAttributes<HTMLDivElement>> & {
|
|
22
|
+
variant?: EmptyMediaVariant;
|
|
23
|
+
};
|
|
24
|
+
declare const EmptyMedia: import("svelte").Component<$$ComponentProps, {}, "ref">;
|
|
25
|
+
type EmptyMedia = ReturnType<typeof EmptyMedia>;
|
|
26
|
+
export default EmptyMedia;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import { cn, type WithElementRef } from "../../../utils.js";
|
|
3
|
+
import type { HTMLAttributes } from "svelte/elements";
|
|
4
|
+
|
|
5
|
+
let {
|
|
6
|
+
ref = $bindable(null),
|
|
7
|
+
class: className,
|
|
8
|
+
children,
|
|
9
|
+
...restProps
|
|
10
|
+
}: WithElementRef<HTMLAttributes<HTMLDivElement>> = $props();
|
|
11
|
+
</script>
|
|
12
|
+
|
|
13
|
+
<div
|
|
14
|
+
bind:this={ref}
|
|
15
|
+
data-slot="empty-title"
|
|
16
|
+
class={cn("text-lg font-medium tracking-tight", className)}
|
|
17
|
+
{...restProps}
|
|
18
|
+
>
|
|
19
|
+
{@render children?.()}
|
|
20
|
+
</div>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { type WithElementRef } from "../../../utils.js";
|
|
2
|
+
import type { HTMLAttributes } from "svelte/elements";
|
|
3
|
+
declare const EmptyTitle: import("svelte").Component<WithElementRef<HTMLAttributes<HTMLDivElement>>, {}, "ref">;
|
|
4
|
+
type EmptyTitle = ReturnType<typeof EmptyTitle>;
|
|
5
|
+
export default EmptyTitle;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
<script lang="ts">
|
|
2
|
+
import { cn, type WithElementRef } from "../../../utils.js";
|
|
3
|
+
import type { HTMLAttributes } from "svelte/elements";
|
|
4
|
+
|
|
5
|
+
let {
|
|
6
|
+
ref = $bindable(null),
|
|
7
|
+
class: className,
|
|
8
|
+
children,
|
|
9
|
+
...restProps
|
|
10
|
+
}: WithElementRef<HTMLAttributes<HTMLDivElement>> = $props();
|
|
11
|
+
</script>
|
|
12
|
+
|
|
13
|
+
<div
|
|
14
|
+
bind:this={ref}
|
|
15
|
+
data-slot="empty"
|
|
16
|
+
class={cn(
|
|
17
|
+
"gap-4 rounded-lg border-dashed p-12 flex w-full min-w-0 flex-1 flex-col items-center justify-center text-center text-balance",
|
|
18
|
+
className
|
|
19
|
+
)}
|
|
20
|
+
{...restProps}
|
|
21
|
+
>
|
|
22
|
+
{@render children?.()}
|
|
23
|
+
</div>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { type WithElementRef } from "../../../utils.js";
|
|
2
|
+
import type { HTMLAttributes } from "svelte/elements";
|
|
3
|
+
declare const Empty: import("svelte").Component<WithElementRef<HTMLAttributes<HTMLDivElement>>, {}, "ref">;
|
|
4
|
+
type Empty = ReturnType<typeof Empty>;
|
|
5
|
+
export default Empty;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import Content from "./empty-content.svelte";
|
|
2
|
+
import Description from "./empty-description.svelte";
|
|
3
|
+
import Header from "./empty-header.svelte";
|
|
4
|
+
import Media from "./empty-media.svelte";
|
|
5
|
+
import Title from "./empty-title.svelte";
|
|
6
|
+
import Root from "./empty.svelte";
|
|
7
|
+
export { Root, Header, Media, Title, Description, Content, Root as Empty, Header as EmptyHeader, Media as EmptyMedia, Title as EmptyTitle, Description as EmptyDescription, Content as EmptyContent, };
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import Content from "./empty-content.svelte";
|
|
2
|
+
import Description from "./empty-description.svelte";
|
|
3
|
+
import Header from "./empty-header.svelte";
|
|
4
|
+
import Media from "./empty-media.svelte";
|
|
5
|
+
import Title from "./empty-title.svelte";
|
|
6
|
+
import Root from "./empty.svelte";
|
|
7
|
+
export { Root, Header, Media, Title, Description, Content,
|
|
8
|
+
//
|
|
9
|
+
Root as Empty, Header as EmptyHeader, Media as EmptyMedia, Title as EmptyTitle, Description as EmptyDescription, Content as EmptyContent, };
|
package/dist/globals.css
CHANGED
|
@@ -369,6 +369,9 @@
|
|
|
369
369
|
.bottom-2 {
|
|
370
370
|
bottom: calc(var(--spacing) * 2);
|
|
371
371
|
}
|
|
372
|
+
.bottom-3 {
|
|
373
|
+
bottom: calc(var(--spacing) * 3);
|
|
374
|
+
}
|
|
372
375
|
.-left-8 {
|
|
373
376
|
left: calc(var(--spacing) * -8);
|
|
374
377
|
}
|
|
@@ -594,6 +597,9 @@
|
|
|
594
597
|
.ml-0 {
|
|
595
598
|
margin-left: 0px;
|
|
596
599
|
}
|
|
600
|
+
.ml-1 {
|
|
601
|
+
margin-left: var(--spacing);
|
|
602
|
+
}
|
|
597
603
|
.ml-auto {
|
|
598
604
|
margin-left: auto;
|
|
599
605
|
}
|
|
@@ -817,6 +823,9 @@
|
|
|
817
823
|
.h-75 {
|
|
818
824
|
height: calc(var(--spacing) * 75);
|
|
819
825
|
}
|
|
826
|
+
.h-\[65px\] {
|
|
827
|
+
height: 65px;
|
|
828
|
+
}
|
|
820
829
|
.h-\[calc\(100\%-1px\)\] {
|
|
821
830
|
height: calc(100% - 1px);
|
|
822
831
|
}
|
|
@@ -877,6 +886,9 @@
|
|
|
877
886
|
.w-1 {
|
|
878
887
|
width: var(--spacing);
|
|
879
888
|
}
|
|
889
|
+
.w-1\.5 {
|
|
890
|
+
width: calc(var(--spacing) * 1.5);
|
|
891
|
+
}
|
|
880
892
|
.w-1\/2 {
|
|
881
893
|
width: calc(1 / 2 * 100%);
|
|
882
894
|
}
|
|
@@ -1859,6 +1871,12 @@
|
|
|
1859
1871
|
background-color: color-mix(in oklab, var(--color-white) 40%, transparent);
|
|
1860
1872
|
}
|
|
1861
1873
|
}
|
|
1874
|
+
.bg-white\/50 {
|
|
1875
|
+
background-color: color-mix(in srgb, #fff 50%, transparent);
|
|
1876
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1877
|
+
background-color: color-mix(in oklab, var(--color-white) 50%, transparent);
|
|
1878
|
+
}
|
|
1879
|
+
}
|
|
1862
1880
|
.bg-yellow-500 {
|
|
1863
1881
|
background-color: var(--color-yellow-500);
|
|
1864
1882
|
}
|
|
@@ -1942,6 +1960,9 @@
|
|
|
1942
1960
|
.p-10 {
|
|
1943
1961
|
padding: calc(var(--spacing) * 10);
|
|
1944
1962
|
}
|
|
1963
|
+
.p-12 {
|
|
1964
|
+
padding: calc(var(--spacing) * 12);
|
|
1965
|
+
}
|
|
1945
1966
|
.p-\[3px\] {
|
|
1946
1967
|
padding: 3px;
|
|
1947
1968
|
}
|
|
@@ -2128,6 +2149,10 @@
|
|
|
2128
2149
|
font-size: var(--text-sm);
|
|
2129
2150
|
line-height: calc(var(--spacing) * 6);
|
|
2130
2151
|
}
|
|
2152
|
+
.text-sm\/relaxed {
|
|
2153
|
+
font-size: var(--text-sm);
|
|
2154
|
+
line-height: var(--leading-relaxed);
|
|
2155
|
+
}
|
|
2131
2156
|
.text-xl {
|
|
2132
2157
|
font-size: var(--text-xl);
|
|
2133
2158
|
line-height: var(--tw-leading, var(--text-xl--line-height));
|
|
@@ -2209,6 +2234,9 @@
|
|
|
2209
2234
|
--tw-tracking: var(--tracking-widest);
|
|
2210
2235
|
letter-spacing: var(--tracking-widest);
|
|
2211
2236
|
}
|
|
2237
|
+
.text-balance {
|
|
2238
|
+
text-wrap: balance;
|
|
2239
|
+
}
|
|
2212
2240
|
.wrap-break-word {
|
|
2213
2241
|
overflow-wrap: break-word;
|
|
2214
2242
|
}
|
|
@@ -2620,6 +2648,10 @@
|
|
|
2620
2648
|
--tw-duration: 500ms;
|
|
2621
2649
|
transition-duration: 500ms;
|
|
2622
2650
|
}
|
|
2651
|
+
.duration-700 {
|
|
2652
|
+
--tw-duration: 700ms;
|
|
2653
|
+
transition-duration: 700ms;
|
|
2654
|
+
}
|
|
2623
2655
|
.duration-1000 {
|
|
2624
2656
|
--tw-duration: 1000ms;
|
|
2625
2657
|
transition-duration: 1000ms;
|
|
@@ -4101,6 +4133,12 @@
|
|
|
4101
4133
|
.md\:px-5 {
|
|
4102
4134
|
padding-inline: calc(var(--spacing) * 5);
|
|
4103
4135
|
}
|
|
4136
|
+
.md\:pt-10 {
|
|
4137
|
+
padding-top: calc(var(--spacing) * 10);
|
|
4138
|
+
}
|
|
4139
|
+
.md\:pb-10 {
|
|
4140
|
+
padding-bottom: calc(var(--spacing) * 10);
|
|
4141
|
+
}
|
|
4104
4142
|
.md\:pl-10 {
|
|
4105
4143
|
padding-left: calc(var(--spacing) * 10);
|
|
4106
4144
|
}
|
|
@@ -4201,6 +4239,9 @@
|
|
|
4201
4239
|
.lg\:h-24 {
|
|
4202
4240
|
height: calc(var(--spacing) * 24);
|
|
4203
4241
|
}
|
|
4242
|
+
.lg\:h-40 {
|
|
4243
|
+
height: calc(var(--spacing) * 40);
|
|
4244
|
+
}
|
|
4204
4245
|
.lg\:h-44 {
|
|
4205
4246
|
height: calc(var(--spacing) * 44);
|
|
4206
4247
|
}
|
|
@@ -4216,6 +4257,9 @@
|
|
|
4216
4257
|
.lg\:w-32 {
|
|
4217
4258
|
width: calc(var(--spacing) * 32);
|
|
4218
4259
|
}
|
|
4260
|
+
.lg\:w-40 {
|
|
4261
|
+
width: calc(var(--spacing) * 40);
|
|
4262
|
+
}
|
|
4219
4263
|
.lg\:w-105 {
|
|
4220
4264
|
width: calc(var(--spacing) * 105);
|
|
4221
4265
|
}
|
|
@@ -4246,6 +4290,9 @@
|
|
|
4246
4290
|
.lg\:px-8 {
|
|
4247
4291
|
padding-inline: calc(var(--spacing) * 8);
|
|
4248
4292
|
}
|
|
4293
|
+
.lg\:pt-20 {
|
|
4294
|
+
padding-top: calc(var(--spacing) * 20);
|
|
4295
|
+
}
|
|
4249
4296
|
.lg\:pl-12 {
|
|
4250
4297
|
padding-left: calc(var(--spacing) * 12);
|
|
4251
4298
|
}
|
|
@@ -4710,6 +4757,10 @@
|
|
|
4710
4757
|
width: calc(var(--spacing) * 4);
|
|
4711
4758
|
height: calc(var(--spacing) * 4);
|
|
4712
4759
|
}
|
|
4760
|
+
.\[\&_svg\:not\(\[class\*\=\'size-\'\]\)\]\:size-6 svg:not([class*='size-']) {
|
|
4761
|
+
width: calc(var(--spacing) * 6);
|
|
4762
|
+
height: calc(var(--spacing) * 6);
|
|
4763
|
+
}
|
|
4713
4764
|
.\[\&_svg\:not\(\[class\*\=\'text-\'\]\)\]\:text-muted-foreground svg:not([class*='text-']) {
|
|
4714
4765
|
color: var(--muted-foreground);
|
|
4715
4766
|
}
|
|
@@ -4843,6 +4894,15 @@
|
|
|
4843
4894
|
border-right-style: var(--tw-border-style);
|
|
4844
4895
|
border-right-width: 1px;
|
|
4845
4896
|
}
|
|
4897
|
+
.\[\&\>a\]\:underline > a {
|
|
4898
|
+
text-decoration-line: underline;
|
|
4899
|
+
}
|
|
4900
|
+
.\[\&\>a\]\:underline-offset-4 > a {
|
|
4901
|
+
text-underline-offset: 4px;
|
|
4902
|
+
}
|
|
4903
|
+
.\[\&\>a\:hover\]\:text-primary > a:hover {
|
|
4904
|
+
color: var(--primary);
|
|
4905
|
+
}
|
|
4846
4906
|
.\[\&\>button\]\:hidden > button {
|
|
4847
4907
|
display: none;
|
|
4848
4908
|
}
|
package/dist/i18n/langs/en.d.ts
CHANGED
|
@@ -186,6 +186,21 @@ declare const _default: {
|
|
|
186
186
|
"profile-user.variant3.media.empty": string;
|
|
187
187
|
"profile-user.variant3.highlights.title": string;
|
|
188
188
|
"profile-user.variant3.highlights.empty": string;
|
|
189
|
+
"empty.title": string;
|
|
190
|
+
"empty.description": string;
|
|
191
|
+
"empty.highlights.title": string;
|
|
192
|
+
"empty.highlights.description": string;
|
|
193
|
+
"empty.products.title": string;
|
|
194
|
+
"empty.products.description": string;
|
|
195
|
+
"empty.promotions.title": string;
|
|
196
|
+
"empty.promotions.description": string;
|
|
197
|
+
"empty.media.title": string;
|
|
198
|
+
"empty.media.description": string;
|
|
199
|
+
"empty.profiles.title": string;
|
|
200
|
+
"empty.profiles.description": string;
|
|
201
|
+
"empty.not_found": string;
|
|
202
|
+
"empty.support": string;
|
|
203
|
+
"empty.contact_support": string;
|
|
189
204
|
"language.en": string;
|
|
190
205
|
"language.pt": string;
|
|
191
206
|
};
|
package/dist/i18n/langs/en.js
CHANGED
|
@@ -186,6 +186,21 @@ export default {
|
|
|
186
186
|
"profile-user.variant3.media.empty": "Photos, videos and media gallery will appear here.",
|
|
187
187
|
"profile-user.variant3.highlights.title": "Highlights",
|
|
188
188
|
"profile-user.variant3.highlights.empty": "Achievements and highlights will appear here.",
|
|
189
|
+
"empty.title": "No items found",
|
|
190
|
+
"empty.description": "There are no data available to display at this time.",
|
|
191
|
+
"empty.highlights.title": "No highlights available",
|
|
192
|
+
"empty.highlights.description": "There are currently no highlighted items to display.",
|
|
193
|
+
"empty.products.title": "No products available",
|
|
194
|
+
"empty.products.description": "There are currently no products available to display.",
|
|
195
|
+
"empty.promotions.title": "No active promotions",
|
|
196
|
+
"empty.promotions.description": "There are currently no promotions available to display.",
|
|
197
|
+
"empty.media.title": "No media found",
|
|
198
|
+
"empty.media.description": "There are currently no photos or videos to display.",
|
|
199
|
+
"empty.profiles.title": "No profiles found",
|
|
200
|
+
"empty.profiles.description": "There are currently no profiles found to display.",
|
|
201
|
+
"empty.not_found": "404 - Not Found",
|
|
202
|
+
"empty.support": "Need help?",
|
|
203
|
+
"empty.contact_support": "Contact support",
|
|
189
204
|
"language.en": "English",
|
|
190
205
|
"language.pt": "Portuguese"
|
|
191
206
|
};
|
package/dist/i18n/langs/pt.d.ts
CHANGED
|
@@ -186,6 +186,21 @@ declare const _default: {
|
|
|
186
186
|
"profile-user.variant3.media.empty": string;
|
|
187
187
|
"profile-user.variant3.highlights.title": string;
|
|
188
188
|
"profile-user.variant3.highlights.empty": string;
|
|
189
|
+
"empty.title": string;
|
|
190
|
+
"empty.description": string;
|
|
191
|
+
"empty.highlights.title": string;
|
|
192
|
+
"empty.highlights.description": string;
|
|
193
|
+
"empty.products.title": string;
|
|
194
|
+
"empty.products.description": string;
|
|
195
|
+
"empty.promotions.title": string;
|
|
196
|
+
"empty.promotions.description": string;
|
|
197
|
+
"empty.media.title": string;
|
|
198
|
+
"empty.media.description": string;
|
|
199
|
+
"empty.profiles.title": string;
|
|
200
|
+
"empty.profiles.description": string;
|
|
201
|
+
"empty.not_found": string;
|
|
202
|
+
"empty.support": string;
|
|
203
|
+
"empty.contact_support": string;
|
|
189
204
|
"language.en": string;
|
|
190
205
|
"language.pt": string;
|
|
191
206
|
};
|
package/dist/i18n/langs/pt.js
CHANGED
|
@@ -186,6 +186,21 @@ export default {
|
|
|
186
186
|
"profile-user.variant3.media.empty": "Fotografias, vídeos e galeria multimédia aparecerão aqui.",
|
|
187
187
|
"profile-user.variant3.highlights.title": "Destaques",
|
|
188
188
|
"profile-user.variant3.highlights.empty": "As conquistas e destaques aparecerão aqui.",
|
|
189
|
+
"empty.title": "Nenhum item encontrado",
|
|
190
|
+
"empty.description": "Não existem dados disponíveis para apresentação no momento.",
|
|
191
|
+
"empty.highlights.title": "Nenhum destaque disponível",
|
|
192
|
+
"empty.highlights.description": "De momento não existem itens em destaque para exibir.",
|
|
193
|
+
"empty.products.title": "Nenhum produto disponível",
|
|
194
|
+
"empty.products.description": "De momento não existem produtos disponíveis para exibir.",
|
|
195
|
+
"empty.promotions.title": "Nenhuma promoção ativa",
|
|
196
|
+
"empty.promotions.description": "De momento não existem promoções disponíveis para exibir.",
|
|
197
|
+
"empty.media.title": "Nenhuma mídia encontrada",
|
|
198
|
+
"empty.media.description": "De momento não existem fotos ou vídeos para exibir.",
|
|
199
|
+
"empty.profiles.title": "Nenhum perfil encontrado",
|
|
200
|
+
"empty.profiles.description": "De momento não foram encontrados perfis para exibir.",
|
|
201
|
+
"empty.not_found": "404 - Não Encontrado",
|
|
202
|
+
"empty.support": "Precisa de ajuda?",
|
|
203
|
+
"empty.contact_support": "Contactar suporte",
|
|
189
204
|
"language.en": "Inglês",
|
|
190
205
|
"language.pt": "Português"
|
|
191
206
|
};
|
|
@@ -187,6 +187,21 @@ declare const _default: {
|
|
|
187
187
|
"profile-user.variant3.media.empty": string;
|
|
188
188
|
"profile-user.variant3.highlights.title": string;
|
|
189
189
|
"profile-user.variant3.highlights.empty": string;
|
|
190
|
+
"empty.title": string;
|
|
191
|
+
"empty.description": string;
|
|
192
|
+
"empty.highlights.title": string;
|
|
193
|
+
"empty.highlights.description": string;
|
|
194
|
+
"empty.products.title": string;
|
|
195
|
+
"empty.products.description": string;
|
|
196
|
+
"empty.promotions.title": string;
|
|
197
|
+
"empty.promotions.description": string;
|
|
198
|
+
"empty.media.title": string;
|
|
199
|
+
"empty.media.description": string;
|
|
200
|
+
"empty.profiles.title": string;
|
|
201
|
+
"empty.profiles.description": string;
|
|
202
|
+
"empty.not_found": string;
|
|
203
|
+
"empty.support": string;
|
|
204
|
+
"empty.contact_support": string;
|
|
190
205
|
"language.en": string;
|
|
191
206
|
"language.pt": string;
|
|
192
207
|
};
|
|
@@ -378,6 +393,21 @@ declare const _default: {
|
|
|
378
393
|
"profile-user.variant3.media.empty": string;
|
|
379
394
|
"profile-user.variant3.highlights.title": string;
|
|
380
395
|
"profile-user.variant3.highlights.empty": string;
|
|
396
|
+
"empty.title": string;
|
|
397
|
+
"empty.description": string;
|
|
398
|
+
"empty.highlights.title": string;
|
|
399
|
+
"empty.highlights.description": string;
|
|
400
|
+
"empty.products.title": string;
|
|
401
|
+
"empty.products.description": string;
|
|
402
|
+
"empty.promotions.title": string;
|
|
403
|
+
"empty.promotions.description": string;
|
|
404
|
+
"empty.media.title": string;
|
|
405
|
+
"empty.media.description": string;
|
|
406
|
+
"empty.profiles.title": string;
|
|
407
|
+
"empty.profiles.description": string;
|
|
408
|
+
"empty.not_found": string;
|
|
409
|
+
"empty.support": string;
|
|
410
|
+
"empty.contact_support": string;
|
|
381
411
|
"language.en": string;
|
|
382
412
|
"language.pt": string;
|
|
383
413
|
};
|