Luke Secomb

Results 29 comments of Luke Secomb

Wondering if [this](https://github.com/LWC-Essentials/storybook) repo may be of help with the storybook questions? It would be cool to have storybook baked into the "on platform" offering. Saying that, there is already...

> And it finally loaded after 12 minutes! Can somebody implement Lazy loading with virtual scrolling? I noticed that this site is loading all components in my Org before displaying...

Are there any 3rd party packages (three.js, anime.js, gsap, popmotion etc.) that work well with LWC (and get past locker service)?

@chrisureza I did manage to get GSAP working within LWC awhile back. Had to poke around in the minified js output. Not too sure if the same still holds up...

Not too sure what you've attempted but the below worked for me using NPM. ```javascript import React, { useState, useRef, useEffect } from 'react' import 'splitting/dist/splitting.css' import 'splitting/dist/splitting-cells.css' import Splitting...

@Reyyah09 I should have commented my code better, my bad. ```javascript import React, { useState, useRef, useEffect } from 'react' import 'splitting/dist/splitting.css' import 'splitting/dist/splitting-cells.css' import Splitting from 'splitting' export const...

@jackdewhurst suppose something like this could work (havnt tested this - but makes sense in my head) ```jsx import React, { useState, useRef, useEffect } from 'react' import 'splitting/dist/splitting.css' import...

Kerning should be maintained, but may need to be set again if its not playing nice ```html G e t S t a r t e d ``` above taken...

I believe this may have been fixed? Was running into a similar semicolon issue, needed to setup my `importOrderParserPlugins` config properly: ```json "importOrderParserPlugins": ["typescript", "classProperties", "decorators-legacy"] ``` potentially similar issue...

I wonder if the nested folders that might be breaking these components. Ran into a similar issue a couple months back trying to load in a rather chunky 3rd party...