negodesign 0.0.19 → 0.0.21

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.
Files changed (32) hide show
  1. package/dist/components/core/card/highlight/CardHighlight.svelte +44 -0
  2. package/dist/components/core/card/highlight/CardHighlight.svelte.d.ts +8 -0
  3. package/dist/components/core/card/highlight/data.d.ts +3 -0
  4. package/dist/components/core/card/highlight/data.js +31 -0
  5. package/dist/components/core/card/promotion/CardPromotion.svelte +58 -21
  6. package/dist/components/core/card/promotion/data.js +31 -1
  7. package/dist/components/core/card/shared/CardCart.svelte +32 -0
  8. package/dist/components/core/card/shared/CardCart.svelte.d.ts +8 -0
  9. package/dist/components/core/card/shared/CardFavorite.svelte +5 -4
  10. package/dist/components/core/card/shared/CardFavorite.svelte.d.ts +2 -1
  11. package/dist/components/core/card/types.d.ts +13 -0
  12. package/dist/components/core/carousel/hero/CarouselHero.svelte +18 -9
  13. package/dist/components/core/carousel/highlights/ui/CarouselHighlights.svelte +65 -0
  14. package/dist/components/core/carousel/highlights/ui/CarouselHighlights.svelte.d.ts +4 -0
  15. package/dist/components/core/carousel/promotion/ui/CarouselPromotion.svelte +13 -1
  16. package/dist/components/core/carousel/shared/ui/SimpleBadgeCarousel.svelte +49 -28
  17. package/dist/components/core/carousel/types.d.ts +18 -2
  18. package/dist/components/core/nav/ui/nav-menu.svelte +1 -1
  19. package/dist/components/ui/skeleton/skeleton.svelte +1 -1
  20. package/dist/globals.css +12453 -9
  21. package/dist/i18n/langs/en.d.ts +4 -0
  22. package/dist/i18n/langs/en.js +4 -0
  23. package/dist/i18n/langs/pt.d.ts +4 -0
  24. package/dist/i18n/langs/pt.js +4 -0
  25. package/dist/i18n/translations.d.ts +8 -0
  26. package/dist/index.d.ts +2 -1
  27. package/dist/index.js +2 -1
  28. package/dist/styles/globals.css +2 -1
  29. package/dist/styles/hgi-stroke-rounded.css +1 -0
  30. package/dist/styles/hgi-stroke-rounded.woff2 +0 -0
  31. package/dist/types/index.d.ts +3 -0
  32. package/package.json +1 -1
@@ -56,6 +56,10 @@ declare const _default: {
56
56
  "label.navigation": string;
57
57
  "label.navigation.text": string;
58
58
  "label.promotion": string;
59
+ "label.promotion.description": string;
60
+ "label.highlight": string;
61
+ "label.highlight.description": string;
62
+ "label.buy": string;
59
63
  "text.login": string;
60
64
  "text.register": string;
61
65
  "text.forget-password": string;
@@ -56,6 +56,10 @@ export default {
56
56
  "label.navigation": "Navigation",
57
57
  "label.navigation.text": "Navigate through our application to access all features features and content",
58
58
  "label.promotion": "Promotions",
59
+ "label.promotion.description": "Promotions imperdiveis",
60
+ "label.highlight": "Highlights",
61
+ "label.highlight.description": "Highlights da nossa plataforma",
62
+ "label.buy": "Buy",
59
63
  "text.login": "Enter your credentials below to securely access your account and continue where you left off.",
60
64
  "text.register": "Fill in the fields below with your information to create your new account and enjoy all our features.",
61
65
  "text.forget-password": "Enter your email address below and we will send you a link to reset your password.",
@@ -56,6 +56,10 @@ declare const _default: {
56
56
  "label.navigation": string;
57
57
  "label.navigation.text": string;
58
58
  "label.promotion": string;
59
+ "label.promotion.description": string;
60
+ "label.highlight": string;
61
+ "label.highlight.description": string;
62
+ "label.buy": string;
59
63
  "text.login": string;
60
64
  "text.register": string;
61
65
  "text.forget-password": string;
@@ -56,6 +56,10 @@ export default {
56
56
  "label.navigation": "Navegação",
57
57
  "label.navigation.text": "Navega pela nossa aplicação",
58
58
  "label.promotion": "Promoções",
59
+ "label.promotion.description": "Promoções imperdiveis",
60
+ "label.highlight": "Destaques",
61
+ "label.highlight.description": "Destaques da nossa plataforma",
62
+ "label.buy": "Compra",
59
63
  "text.login": "Insira as suas credenciais abaixo para aceder à sua conta com segurança e continuar de onde parou.",
60
64
  "text.register": "Preencha os campos abaixo com as suas informações para criar a sua nova conta e aproveitar todos os nossos recursos.",
61
65
  "text.forget-password": "Insira o seu endereço de email abaixo e enviaremos um link para redefinir a sua senha.",
@@ -57,6 +57,10 @@ declare const _default: {
57
57
  "label.navigation": string;
58
58
  "label.navigation.text": string;
59
59
  "label.promotion": string;
60
+ "label.promotion.description": string;
61
+ "label.highlight": string;
62
+ "label.highlight.description": string;
63
+ "label.buy": string;
60
64
  "text.login": string;
61
65
  "text.register": string;
62
66
  "text.forget-password": string;
@@ -147,6 +151,10 @@ declare const _default: {
147
151
  "label.navigation": string;
148
152
  "label.navigation.text": string;
149
153
  "label.promotion": string;
154
+ "label.promotion.description": string;
155
+ "label.highlight": string;
156
+ "label.highlight.description": string;
157
+ "label.buy": string;
150
158
  "text.login": string;
151
159
  "text.register": string;
152
160
  "text.forget-password": string;
package/dist/index.d.ts CHANGED
@@ -14,6 +14,7 @@ import PageOtpVerification from "./components/pages/security/otp-verification/Pa
14
14
  import PageForgetPassword from "./components/pages/security/forget-password/PageForgetPassword.svelte";
15
15
  import SimpleBadgeCarousel from "./components/core/carousel/shared/ui/SimpleBadgeCarousel.svelte";
16
16
  import PageResetPassword from "./components/pages/security/reset-password/PageResetPassword.svelte";
17
+ import TabUnderline from "./components/core/tabs/ui/tab-underline.svelte";
17
18
  import CarouselHero from "./components/core/carousel/hero/CarouselHero.svelte";
18
19
  import PageLogin from "./components/pages/security/login/PageLogin.svelte";
19
20
  import SearchInput from "./components/core/search/SearchInput.svelte";
@@ -31,7 +32,7 @@ export { getMergedTranslations } from "./i18n/config";
31
32
  export { getLocales } from "./i18n/config";
32
33
  export {
33
34
  /** Componente raiz do Negodesign. Configura o tema, idioma e traduções. @property {Record<string, Record<string, string>>} translations - Traduções customizadas @property {Snippet} children - Conteúdo da aplicação */
34
- NegoDesign, NavMenu, SearchInput, SimpleBadgeCarousel, CarouselHero,
35
+ NegoDesign, NavMenu, SearchInput, SimpleBadgeCarousel, CarouselHero, TabUnderline,
35
36
  /** Página de login com carousel hero e card de autenticação. @see PageLoginProps */
36
37
  PageLogin,
37
38
  /** Página de recuperação de senha com carousel hero e card de recuperação. @see PageForgetPasswordProps */
package/dist/index.js CHANGED
@@ -14,6 +14,7 @@ import PageOtpVerification from "./components/pages/security/otp-verification/Pa
14
14
  import PageForgetPassword from "./components/pages/security/forget-password/PageForgetPassword.svelte";
15
15
  import SimpleBadgeCarousel from "./components/core/carousel/shared/ui/SimpleBadgeCarousel.svelte";
16
16
  import PageResetPassword from "./components/pages/security/reset-password/PageResetPassword.svelte";
17
+ import TabUnderline from "./components/core/tabs/ui/tab-underline.svelte";
17
18
  import CarouselHero from "./components/core/carousel/hero/CarouselHero.svelte";
18
19
  import PageLogin from "./components/pages/security/login/PageLogin.svelte";
19
20
  import SearchInput from "./components/core/search/SearchInput.svelte";
@@ -31,7 +32,7 @@ export { getMergedTranslations } from "./i18n/config";
31
32
  export { getLocales } from "./i18n/config";
32
33
  export {
33
34
  /** Componente raiz do Negodesign. Configura o tema, idioma e traduções. @property {Record<string, Record<string, string>>} translations - Traduções customizadas @property {Snippet} children - Conteúdo da aplicação */
34
- NegoDesign, NavMenu, SearchInput, SimpleBadgeCarousel, CarouselHero,
35
+ NegoDesign, NavMenu, SearchInput, SimpleBadgeCarousel, CarouselHero, TabUnderline,
35
36
  /** Página de login com carousel hero e card de autenticação. @see PageLoginProps */
36
37
  PageLogin,
37
38
  /** Página de recuperação de senha com carousel hero e card de recuperação. @see PageForgetPasswordProps */
@@ -2,6 +2,7 @@
2
2
  @import "tw-animate-css";
3
3
  @import "shadcn-svelte/tailwind.css";
4
4
  @import "@fontsource-variable/figtree";
5
+ @import "./hgi-stroke-rounded.css";
5
6
  @import "./animate.min.css";
6
7
 
7
8
  @custom-variant dark (&:is(.dark *));
@@ -145,4 +146,4 @@
145
146
  html {
146
147
  @apply font-sans;
147
148
  }
148
- }
149
+ }