formica-ui-lib 1.0.310 → 1.0.312
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/componentProps/atoms/interactive3dviewer/Interactive3DViewerProps.d.ts +1 -1
- package/dist/componentProps/integrations/SketchfabViewerProps.d.ts +41 -0
- package/dist/componentProps/molecules/productinformation/colourmatchingchart/ColourMatchingChartProps.d.ts +1 -0
- package/dist/componentProps/organisms/cart/purchasepanel/PurchasePanelLeftPanelProps.d.ts +1 -0
- package/dist/componentProps/organisms/cart/purchasepanel/PurchasePanelProps.d.ts +1 -0
- package/dist/componentProps/organisms/sections/productinformationsection/ProductInformationSectionProps.d.ts +1 -0
- package/dist/componentProps/templates/categorypagetemplate/CategoryPageTemplateProps.d.ts +1 -0
- package/dist/componentProps/templates/productdetailpagetemplate/ProductDetailPageTemplateProps.d.ts +2 -0
- package/dist/index.cjs +9 -9
- package/dist/index.d.ts +4 -1
- package/dist/index.js +3512 -3408
- package/dist/utils/sketchfab/connectSketchfabViewer.d.ts +2 -0
- package/dist/utils/sketchfab/sketchfabViewer.d.ts +6 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -105,7 +105,7 @@ export type { LocationMapMarkerClickPayload, LocationMapProps, } from "./compone
|
|
|
105
105
|
export type { CommerceSyncField, CommerceSyncFieldStatus, CommerceSyncPanelProps, CommerceSyncStage, CommerceSyncStatus, } from "./componentProps/organisms/sections/commercesyncpanel/CommerceSyncPanelProps";
|
|
106
106
|
export type { TopNavLogin } from "./componentProps/organisms/navigation/TopNavBarProps";
|
|
107
107
|
export type { VerticalCheckboxListCollectionProps } from "./componentProps/organisms/collections/verticalcheckboxlistcollection/VerticalCheckboxListCollectionProps";
|
|
108
|
-
export type { ProductDetailPageTemplateProps, ProductDetailData, ProductDetailContent, ProductDetailDownloads, ProductDetailImage, ProductDetailRange, ProductDetailSimpleOption, ProductDetailVariant, ProductDetailSizeAndGradeGuideRow, ProductDetailPrice, ProductDetailProduct, } from "./componentProps/templates/productdetailpagetemplate/ProductDetailPageTemplateProps";
|
|
108
|
+
export type { ProductDetailPageTemplateProps, ProductDetailData, ProductDetailContent, ProductDetailDownloads, ProductDetailImage, ProductDetailRange, ProductDetailSimpleOption, ProductDetailVariant, ProductDetailSizeAndGradeGuideRow, ProductDetailPrice, ProductDetailProduct, ProductDetailContactActionPayload, } from "./componentProps/templates/productdetailpagetemplate/ProductDetailPageTemplateProps";
|
|
109
109
|
export type { CategoryPageTemplateProps, CategoryPageData, CategoryPageFilterSection, } from "./componentProps/templates/categorypagetemplate/CategoryPageTemplateProps";
|
|
110
110
|
export type { GalleryTemplateProps } from "./componentProps/templates/gallerytemplate/GalleryTemplateProps";
|
|
111
111
|
export type { ArticleLandingPageTemplateProps } from "./componentProps/templates/articlelandingpagetemplate/ArticleLandingPageTemplateProps";
|
|
@@ -144,6 +144,9 @@ export type { CustomerAccountFavoriteClickPayload, CustomerAccountFavoriteItem,
|
|
|
144
144
|
export type { CustomerAccountAddAddressPayload, CustomerAccountAddressType, CustomerAccountPasswordErrors, CustomerAccountPasswordSettings, CustomerAccountPersonalInformationErrors, CustomerAccountPersonalInformationSettings, CustomerAccountSettingsAddressActionPayload, CustomerAccountSettingsTemplateProps, } from "./componentProps/templates/customeraccount/settings/CustomerAccountSettingsTemplateProps";
|
|
145
145
|
export type { CustomerAccountOrder, CustomerAccountOrderClickPayload, CustomerAccountOrderHistoryTemplateProps, } from "./componentProps/templates/customeraccount/orderhistory/CustomerAccountOrderHistoryTemplateProps";
|
|
146
146
|
export type { CustomerAccountOrderAddress, CustomerAccountOrderDetailTemplateProps, CustomerAccountOrderFulfillmentGroup, CustomerAccountOrderFulfillmentType, CustomerAccountOrderShippingMethod, CustomerAccountOrderSummaryRow, } from "./componentProps/templates/customeraccount/orderdetail/CustomerAccountOrderDetailTemplateProps";
|
|
147
|
+
export { connectSketchfabViewer } from "./utils/sketchfab/connectSketchfabViewer";
|
|
148
|
+
export { applySketchfabTexture, setSketchfabAppearance, } from "./utils/sketchfab/sketchfabViewer";
|
|
149
|
+
export type { ViewerApi as SketchfabViewerApi, ViewerMaterial as SketchfabMaterial, ViewerAppearanceSettings as SketchfabAppearanceSettings, SketchfabConnectionOptions, } from "./componentProps/integrations/SketchfabViewerProps";
|
|
147
150
|
export { default as FormicaText } from "./stories/atoms/text/Text";
|
|
148
151
|
export { default as Button } from "./stories/atoms/buttons/button/Button";
|
|
149
152
|
export { default as Image } from "./stories/atoms/image/Image";
|