Hi,
Importing Moment in the Datapicker component this way:
import Moment from "moment"
Causes the following error when I import the component in Framer:
moment_1.default' is undefined)— index.html:4151
I managed to fix the issue (the component works fine in Storybook and Framer) by importing Moment like so:
import * as Moment from 'moment';
See this discussion that I came across for details: aurelia/skeleton-navigation#606
Thanks,
Lachezar