formica-ui-lib 1.0.310 → 1.0.311
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/index.cjs +9 -9
- package/dist/index.d.ts +3 -0
- package/dist/index.js +3495 -3404
- 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
|
@@ -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";
|