negodesign 0.0.12 → 0.0.14
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/promotion/CardPromotion.svelte +44 -0
- package/dist/components/core/card/promotion/CardPromotion.svelte.d.ts +8 -0
- package/dist/components/core/card/promotion/data.d.ts +3 -0
- package/dist/components/core/card/promotion/data.js +31 -0
- package/dist/components/core/card/shared/CardFavorite.svelte +20 -20
- package/dist/components/core/card/shared/CardFavorite.svelte.d.ts +1 -1
- package/dist/components/core/card/types.d.ts +10 -0
- package/dist/components/core/carousel/hero/CarouselHero.svelte +140 -0
- package/dist/components/core/carousel/hero/CarouselHero.svelte.d.ts +10 -0
- package/dist/components/core/carousel/promotion/ui/CarouselPromotion.svelte +53 -0
- package/dist/components/core/carousel/promotion/ui/CarouselPromotion.svelte.d.ts +4 -0
- package/dist/components/core/carousel/shared/ui/SimpleBadgeCarousel.svelte +59 -0
- package/dist/components/core/carousel/shared/ui/SimpleBadgeCarousel.svelte.d.ts +4 -0
- package/dist/components/core/carousel/types.d.ts +22 -1
- package/dist/components/core/hero/SimpleHero.svelte +65 -0
- package/dist/components/core/hero/SimpleHero.svelte.d.ts +4 -0
- package/dist/components/core/hero/types.d.ts +18 -0
- package/dist/components/core/hero/types.js +1 -0
- package/dist/components/core/nav/data/nav-menu.d.ts +5 -1
- package/dist/components/core/nav/ui/nav-menu.svelte +94 -87
- package/dist/components/core/panel/CarouselSlot.svelte +38 -0
- package/dist/components/core/panel/CarouselSlot.svelte.d.ts +11 -0
- package/dist/globals.css +3756 -56
- package/dist/i18n/langs/en.d.ts +1 -0
- package/dist/i18n/langs/en.js +1 -0
- package/dist/i18n/langs/pt.d.ts +1 -0
- package/dist/i18n/langs/pt.js +1 -0
- package/dist/i18n/translations.d.ts +2 -0
- package/dist/index.d.ts +3 -1
- package/dist/index.js +3 -1
- package/dist/styles/animate.min.css +4385 -0
- package/dist/styles/globals.css +7 -2
- package/package.json +2 -2
- package/dist/components/core/carousel/ui/SimpleCarousel.svelte +0 -62
- package/dist/components/core/carousel/ui/SimpleCarousel.svelte.d.ts +0 -4
package/dist/i18n/langs/en.d.ts
CHANGED
package/dist/i18n/langs/en.js
CHANGED
|
@@ -55,6 +55,7 @@ export default {
|
|
|
55
55
|
"label.close": "Close",
|
|
56
56
|
"label.navigation": "Navigation",
|
|
57
57
|
"label.navigation.text": "Navigate through our application to access all features features and content",
|
|
58
|
+
"label.promotion": "Promotions",
|
|
58
59
|
"text.login": "Enter your credentials below to securely access your account and continue where you left off.",
|
|
59
60
|
"text.register": "Fill in the fields below with your information to create your new account and enjoy all our features.",
|
|
60
61
|
"text.forget-password": "Enter your email address below and we will send you a link to reset your password.",
|
package/dist/i18n/langs/pt.d.ts
CHANGED
package/dist/i18n/langs/pt.js
CHANGED
|
@@ -55,6 +55,7 @@ export default {
|
|
|
55
55
|
"label.close": "Fechar",
|
|
56
56
|
"label.navigation": "Navegação",
|
|
57
57
|
"label.navigation.text": "Navega pela nossa aplicação",
|
|
58
|
+
"label.promotion": "Promoções",
|
|
58
59
|
"text.login": "Insira as suas credenciais abaixo para aceder à sua conta com segurança e continuar de onde parou.",
|
|
59
60
|
"text.register": "Preencha os campos abaixo com as suas informações para criar a sua nova conta e aproveitar todos os nossos recursos.",
|
|
60
61
|
"text.forget-password": "Insira o seu endereço de email abaixo e enviaremos um link para redefinir a sua senha.",
|
|
@@ -56,6 +56,7 @@ declare const _default: {
|
|
|
56
56
|
"label.close": string;
|
|
57
57
|
"label.navigation": string;
|
|
58
58
|
"label.navigation.text": string;
|
|
59
|
+
"label.promotion": string;
|
|
59
60
|
"text.login": string;
|
|
60
61
|
"text.register": string;
|
|
61
62
|
"text.forget-password": string;
|
|
@@ -145,6 +146,7 @@ declare const _default: {
|
|
|
145
146
|
"label.close": string;
|
|
146
147
|
"label.navigation": string;
|
|
147
148
|
"label.navigation.text": string;
|
|
149
|
+
"label.promotion": string;
|
|
148
150
|
"text.login": string;
|
|
149
151
|
"text.register": string;
|
|
150
152
|
"text.forget-password": string;
|
package/dist/index.d.ts
CHANGED
|
@@ -12,7 +12,9 @@ import AdminPanel from "./components/pages/admin/01/ui/AdminPanel.svelte";
|
|
|
12
12
|
import PrivacyPolicyOrTermsOfUse from "./components/pages/privacy-policy-or-terms-of-use/PrivacyPolicyOrTermsOfUse.svelte";
|
|
13
13
|
import PageOtpVerification from "./components/pages/security/otp-verification/PageOtpVerification.svelte";
|
|
14
14
|
import PageForgetPassword from "./components/pages/security/forget-password/PageForgetPassword.svelte";
|
|
15
|
+
import SimpleBadgeCarousel from "./components/core/carousel/shared/ui/SimpleBadgeCarousel.svelte";
|
|
15
16
|
import PageResetPassword from "./components/pages/security/reset-password/PageResetPassword.svelte";
|
|
17
|
+
import CarouselHero from "./components/core/carousel/hero/CarouselHero.svelte";
|
|
16
18
|
import PageLogin from "./components/pages/security/login/PageLogin.svelte";
|
|
17
19
|
import SearchInput from "./components/core/search/SearchInput.svelte";
|
|
18
20
|
import NavMenu from "./components/core/nav/ui/nav-menu.svelte";
|
|
@@ -29,7 +31,7 @@ export { getMergedTranslations } from "./i18n/config";
|
|
|
29
31
|
export { getLocales } from "./i18n/config";
|
|
30
32
|
export {
|
|
31
33
|
/** 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 */
|
|
32
|
-
NegoDesign, NavMenu, SearchInput,
|
|
34
|
+
NegoDesign, NavMenu, SearchInput, SimpleBadgeCarousel, CarouselHero,
|
|
33
35
|
/** Página de login com carousel hero e card de autenticação. @see PageLoginProps */
|
|
34
36
|
PageLogin,
|
|
35
37
|
/** Página de recuperação de senha com carousel hero e card de recuperação. @see PageForgetPasswordProps */
|
package/dist/index.js
CHANGED
|
@@ -12,7 +12,9 @@ import AdminPanel from "./components/pages/admin/01/ui/AdminPanel.svelte";
|
|
|
12
12
|
import PrivacyPolicyOrTermsOfUse from "./components/pages/privacy-policy-or-terms-of-use/PrivacyPolicyOrTermsOfUse.svelte";
|
|
13
13
|
import PageOtpVerification from "./components/pages/security/otp-verification/PageOtpVerification.svelte";
|
|
14
14
|
import PageForgetPassword from "./components/pages/security/forget-password/PageForgetPassword.svelte";
|
|
15
|
+
import SimpleBadgeCarousel from "./components/core/carousel/shared/ui/SimpleBadgeCarousel.svelte";
|
|
15
16
|
import PageResetPassword from "./components/pages/security/reset-password/PageResetPassword.svelte";
|
|
17
|
+
import CarouselHero from "./components/core/carousel/hero/CarouselHero.svelte";
|
|
16
18
|
import PageLogin from "./components/pages/security/login/PageLogin.svelte";
|
|
17
19
|
import SearchInput from "./components/core/search/SearchInput.svelte";
|
|
18
20
|
import NavMenu from "./components/core/nav/ui/nav-menu.svelte";
|
|
@@ -29,7 +31,7 @@ export { getMergedTranslations } from "./i18n/config";
|
|
|
29
31
|
export { getLocales } from "./i18n/config";
|
|
30
32
|
export {
|
|
31
33
|
/** 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 */
|
|
32
|
-
NegoDesign, NavMenu, SearchInput,
|
|
34
|
+
NegoDesign, NavMenu, SearchInput, SimpleBadgeCarousel, CarouselHero,
|
|
33
35
|
/** Página de login com carousel hero e card de autenticação. @see PageLoginProps */
|
|
34
36
|
PageLogin,
|
|
35
37
|
/** Página de recuperação de senha com carousel hero e card de recuperação. @see PageForgetPasswordProps */
|