negodesign 0.0.36 → 0.0.37
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/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/ui/CarouselPromotion.svelte +57 -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 +57 -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
|
}
|
|
@@ -877,6 +883,9 @@
|
|
|
877
883
|
.w-1 {
|
|
878
884
|
width: var(--spacing);
|
|
879
885
|
}
|
|
886
|
+
.w-1\.5 {
|
|
887
|
+
width: calc(var(--spacing) * 1.5);
|
|
888
|
+
}
|
|
880
889
|
.w-1\/2 {
|
|
881
890
|
width: calc(1 / 2 * 100%);
|
|
882
891
|
}
|
|
@@ -1859,6 +1868,12 @@
|
|
|
1859
1868
|
background-color: color-mix(in oklab, var(--color-white) 40%, transparent);
|
|
1860
1869
|
}
|
|
1861
1870
|
}
|
|
1871
|
+
.bg-white\/50 {
|
|
1872
|
+
background-color: color-mix(in srgb, #fff 50%, transparent);
|
|
1873
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1874
|
+
background-color: color-mix(in oklab, var(--color-white) 50%, transparent);
|
|
1875
|
+
}
|
|
1876
|
+
}
|
|
1862
1877
|
.bg-yellow-500 {
|
|
1863
1878
|
background-color: var(--color-yellow-500);
|
|
1864
1879
|
}
|
|
@@ -1942,6 +1957,9 @@
|
|
|
1942
1957
|
.p-10 {
|
|
1943
1958
|
padding: calc(var(--spacing) * 10);
|
|
1944
1959
|
}
|
|
1960
|
+
.p-12 {
|
|
1961
|
+
padding: calc(var(--spacing) * 12);
|
|
1962
|
+
}
|
|
1945
1963
|
.p-\[3px\] {
|
|
1946
1964
|
padding: 3px;
|
|
1947
1965
|
}
|
|
@@ -2128,6 +2146,10 @@
|
|
|
2128
2146
|
font-size: var(--text-sm);
|
|
2129
2147
|
line-height: calc(var(--spacing) * 6);
|
|
2130
2148
|
}
|
|
2149
|
+
.text-sm\/relaxed {
|
|
2150
|
+
font-size: var(--text-sm);
|
|
2151
|
+
line-height: var(--leading-relaxed);
|
|
2152
|
+
}
|
|
2131
2153
|
.text-xl {
|
|
2132
2154
|
font-size: var(--text-xl);
|
|
2133
2155
|
line-height: var(--tw-leading, var(--text-xl--line-height));
|
|
@@ -2209,6 +2231,9 @@
|
|
|
2209
2231
|
--tw-tracking: var(--tracking-widest);
|
|
2210
2232
|
letter-spacing: var(--tracking-widest);
|
|
2211
2233
|
}
|
|
2234
|
+
.text-balance {
|
|
2235
|
+
text-wrap: balance;
|
|
2236
|
+
}
|
|
2212
2237
|
.wrap-break-word {
|
|
2213
2238
|
overflow-wrap: break-word;
|
|
2214
2239
|
}
|
|
@@ -2620,6 +2645,10 @@
|
|
|
2620
2645
|
--tw-duration: 500ms;
|
|
2621
2646
|
transition-duration: 500ms;
|
|
2622
2647
|
}
|
|
2648
|
+
.duration-700 {
|
|
2649
|
+
--tw-duration: 700ms;
|
|
2650
|
+
transition-duration: 700ms;
|
|
2651
|
+
}
|
|
2623
2652
|
.duration-1000 {
|
|
2624
2653
|
--tw-duration: 1000ms;
|
|
2625
2654
|
transition-duration: 1000ms;
|
|
@@ -4101,6 +4130,12 @@
|
|
|
4101
4130
|
.md\:px-5 {
|
|
4102
4131
|
padding-inline: calc(var(--spacing) * 5);
|
|
4103
4132
|
}
|
|
4133
|
+
.md\:pt-10 {
|
|
4134
|
+
padding-top: calc(var(--spacing) * 10);
|
|
4135
|
+
}
|
|
4136
|
+
.md\:pb-10 {
|
|
4137
|
+
padding-bottom: calc(var(--spacing) * 10);
|
|
4138
|
+
}
|
|
4104
4139
|
.md\:pl-10 {
|
|
4105
4140
|
padding-left: calc(var(--spacing) * 10);
|
|
4106
4141
|
}
|
|
@@ -4201,6 +4236,9 @@
|
|
|
4201
4236
|
.lg\:h-24 {
|
|
4202
4237
|
height: calc(var(--spacing) * 24);
|
|
4203
4238
|
}
|
|
4239
|
+
.lg\:h-40 {
|
|
4240
|
+
height: calc(var(--spacing) * 40);
|
|
4241
|
+
}
|
|
4204
4242
|
.lg\:h-44 {
|
|
4205
4243
|
height: calc(var(--spacing) * 44);
|
|
4206
4244
|
}
|
|
@@ -4216,6 +4254,9 @@
|
|
|
4216
4254
|
.lg\:w-32 {
|
|
4217
4255
|
width: calc(var(--spacing) * 32);
|
|
4218
4256
|
}
|
|
4257
|
+
.lg\:w-40 {
|
|
4258
|
+
width: calc(var(--spacing) * 40);
|
|
4259
|
+
}
|
|
4219
4260
|
.lg\:w-105 {
|
|
4220
4261
|
width: calc(var(--spacing) * 105);
|
|
4221
4262
|
}
|
|
@@ -4246,6 +4287,9 @@
|
|
|
4246
4287
|
.lg\:px-8 {
|
|
4247
4288
|
padding-inline: calc(var(--spacing) * 8);
|
|
4248
4289
|
}
|
|
4290
|
+
.lg\:pt-20 {
|
|
4291
|
+
padding-top: calc(var(--spacing) * 20);
|
|
4292
|
+
}
|
|
4249
4293
|
.lg\:pl-12 {
|
|
4250
4294
|
padding-left: calc(var(--spacing) * 12);
|
|
4251
4295
|
}
|
|
@@ -4710,6 +4754,10 @@
|
|
|
4710
4754
|
width: calc(var(--spacing) * 4);
|
|
4711
4755
|
height: calc(var(--spacing) * 4);
|
|
4712
4756
|
}
|
|
4757
|
+
.\[\&_svg\:not\(\[class\*\=\'size-\'\]\)\]\:size-6 svg:not([class*='size-']) {
|
|
4758
|
+
width: calc(var(--spacing) * 6);
|
|
4759
|
+
height: calc(var(--spacing) * 6);
|
|
4760
|
+
}
|
|
4713
4761
|
.\[\&_svg\:not\(\[class\*\=\'text-\'\]\)\]\:text-muted-foreground svg:not([class*='text-']) {
|
|
4714
4762
|
color: var(--muted-foreground);
|
|
4715
4763
|
}
|
|
@@ -4843,6 +4891,15 @@
|
|
|
4843
4891
|
border-right-style: var(--tw-border-style);
|
|
4844
4892
|
border-right-width: 1px;
|
|
4845
4893
|
}
|
|
4894
|
+
.\[\&\>a\]\:underline > a {
|
|
4895
|
+
text-decoration-line: underline;
|
|
4896
|
+
}
|
|
4897
|
+
.\[\&\>a\]\:underline-offset-4 > a {
|
|
4898
|
+
text-underline-offset: 4px;
|
|
4899
|
+
}
|
|
4900
|
+
.\[\&\>a\:hover\]\:text-primary > a:hover {
|
|
4901
|
+
color: var(--primary);
|
|
4902
|
+
}
|
|
4846
4903
|
.\[\&\>button\]\:hidden > button {
|
|
4847
4904
|
display: none;
|
|
4848
4905
|
}
|
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
|
};
|