negodesign 0.0.44 → 0.0.45
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/types/index.d.ts +4 -1
- package/dist/types/index.js +1 -1
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import NotFoundEmpty from "../components/core/panel/NotFoundEmpty.svelte";
|
|
1
2
|
import type { LoginVariant, LoginRequestDto, LinkProps, PageLoginProps } from "../components/pages/security/login/types";
|
|
2
3
|
import type { ForgetPasswordVariant, ForgetPasswordRequestDto, PageForgetPasswordProps } from "../components/pages/security/forget-password/types";
|
|
3
4
|
import type { ResetPasswordRequestDto, PageResetPasswordProps } from "../components/pages/security/reset-password/types";
|
|
@@ -22,12 +23,14 @@ import type { DataTableItem, DataTableCoreProps } from "../components/core/datat
|
|
|
22
23
|
import type { AdminPanelProps, AdminContentProps } from "../components/pages/admin/01/ui/types";
|
|
23
24
|
import type { ProfileUserProps, ProfileUserData, ProfileUserVariant, ProfileUserAddress, ProfileUserNote, ProfileUserNotificationPref, ProfileUserMarketingPref, ProfileUserExperience } from "../components/pages/profile-user/types";
|
|
24
25
|
import type { ProductDetailsProps, ProductDetailsData, ProductDetailsBreadcrumbItem, ProductDetailsTag, ProductDetailsImage, ProductDetailsLocation, ProductDetailsReview, ProductDetailsTab } from "../components/pages/product-details/types";
|
|
25
|
-
import type { PrivacyPolicyOrTermsOfUseProps,
|
|
26
|
+
import type { PrivacyPolicyOrTermsOfUseProps, DocSection, ContentBlock, BreadcrumbItem, TocItem } from "../components/pages/privacy-policy-or-terms-of-use/types";
|
|
26
27
|
import type { InputLabelProps } from "../components/core/form/data/InputLabel.svelte";
|
|
27
28
|
import type { NegoDesignProps } from "../components/types";
|
|
28
29
|
import type { CarouselGridPromotionProps } from "../components/core/carousel/grid/promotion/types";
|
|
29
30
|
import type { CarouselGridProductProps } from "../components/core/carousel/grid/product/types";
|
|
30
31
|
export type {
|
|
32
|
+
/** @see NotFoundEmpty */
|
|
33
|
+
NotFoundEmpty,
|
|
31
34
|
/** Props de um link individual no menu de navegação. @see NavMenuLinksProps */
|
|
32
35
|
NavMenuLinksProps,
|
|
33
36
|
/** Props do logotipo no NavMenu. @see NavMenuLogoProps */
|
package/dist/types/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
import NotFoundEmpty from "../components/core/panel/NotFoundEmpty.svelte";
|