negodesign 0.0.57 → 0.0.58
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/index.d.ts +3 -1
- package/dist/index.js +3 -1
- package/dist/types/index.d.ts +2 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -34,6 +34,8 @@ import PageLogin from "./components/pages/security/login/PageLogin.svelte";
|
|
|
34
34
|
import SearchInput from "./components/core/search/SearchInput.svelte";
|
|
35
35
|
import Footer from "./components/core/footer/ui/Footer.svelte";
|
|
36
36
|
import NegoDesign from "./components/NegoDesign.svelte";
|
|
37
|
+
import SimpleGrid from "./components/core/grid/ui/SimpleGrid.svelte";
|
|
38
|
+
import PanelGrid from "./components/core/grid/ui/PanelGrid.svelte";
|
|
37
39
|
/** Store reativa do idioma atual. Altere com `$locale = "pt"`. */
|
|
38
40
|
export { locale } from "./i18n";
|
|
39
41
|
/** Lista de idiomas disponíveis. Atualizado automaticamente. */
|
|
@@ -44,7 +46,7 @@ export { t } from "./i18n";
|
|
|
44
46
|
export { getMergedTranslations } from "./i18n/config";
|
|
45
47
|
/** Retorna a lista de idiomas disponíveis. */
|
|
46
48
|
export { getLocales } from "./i18n/config";
|
|
47
|
-
export { Menu,
|
|
49
|
+
export { Menu, SimpleGrid, PanelGrid,
|
|
48
50
|
/**
|
|
49
51
|
* Componente raiz do Negodesign.
|
|
50
52
|
* Configura o tema, idioma e traduções da aplicação.
|
package/dist/index.js
CHANGED
|
@@ -34,6 +34,8 @@ import PageLogin from "./components/pages/security/login/PageLogin.svelte";
|
|
|
34
34
|
import SearchInput from "./components/core/search/SearchInput.svelte";
|
|
35
35
|
import Footer from "./components/core/footer/ui/Footer.svelte";
|
|
36
36
|
import NegoDesign from "./components/NegoDesign.svelte";
|
|
37
|
+
import SimpleGrid from "./components/core/grid/ui/SimpleGrid.svelte";
|
|
38
|
+
import PanelGrid from "./components/core/grid/ui/PanelGrid.svelte";
|
|
37
39
|
/** Store reativa do idioma atual. Altere com `$locale = "pt"`. */
|
|
38
40
|
export { locale } from "./i18n";
|
|
39
41
|
/** Lista de idiomas disponíveis. Atualizado automaticamente. */
|
|
@@ -44,7 +46,7 @@ export { t } from "./i18n";
|
|
|
44
46
|
export { getMergedTranslations } from "./i18n/config";
|
|
45
47
|
/** Retorna a lista de idiomas disponíveis. */
|
|
46
48
|
export { getLocales } from "./i18n/config";
|
|
47
|
-
export { Menu,
|
|
49
|
+
export { Menu, SimpleGrid, PanelGrid,
|
|
48
50
|
/**
|
|
49
51
|
* Componente raiz do Negodesign.
|
|
50
52
|
* Configura o tema, idioma e traduções da aplicação.
|
package/dist/types/index.d.ts
CHANGED
|
@@ -30,7 +30,8 @@ import type { CarouselGridPromotionProps } from "../components/core/carousel/gri
|
|
|
30
30
|
import type { CarouselGridProductProps } from "../components/core/carousel/grid/product/types";
|
|
31
31
|
import type { CompanyProfileProps } from "../components/pages/company-profile/types";
|
|
32
32
|
import type { ComplexMenuProps } from "../components/core/nav/data/types";
|
|
33
|
-
|
|
33
|
+
import type { GridProps } from "../components/core/grid/data/types";
|
|
34
|
+
export type { GridProps,
|
|
34
35
|
/** Props de um link individual no menu de navegação. @see NavMenuLinksProps */
|
|
35
36
|
NavMenuLinksProps,
|
|
36
37
|
/** Props do logotipo no NavMenu. @see NavMenuLogoProps */
|