Chris
Chris
I'm listening to the `select` and `unselect` events on `nodes` and `edges` and saving this as `selectedElement` state: ```js React.useEffect(() => { cyRef?.on('select unselect', 'node, edge', (event) => { setSelectedElement(event.target);...
The prop `selectionType`(https://js.cytoscape.org/#cy.selectionType) is not available on the CytoscapeComponent component yet. Is there a plan to support this?
I'm trying to build a non-embedded custom app with offline access and struggle with the migration from cookie-based to session-based auth. I followed the example app (https://github.com/Shopify/koa-shopify-auth#example-app) but can't make...
It's quite easy to implement caption for images: ```ts n2m.setCustomTransformer('image', async (block) => { const { image } = block as ImageBlockObjectResponse; const src = image.type === 'external' ? image.external.url...
### Describe the feature you'd like to request I have query procedure `listPosts` which accepts some generic `parameters` and and optional `lastUpdatedAt` timestamp. The query key looks something like this:...
Adds the plugin https://github.com/zirkelc/serverless-exports-plugin
I created types for the [serverless-step-functions](https://github.com/serverless-operations/serverless-step-functions) plugin and submitted it to [DefinitelyTyped PR#66693](https://github.com/DefinitelyTyped/DefinitelyTyped/pull/66693). The @types/serverless-step-functions depend on this package, because it uses module augmentation to merge the `StepFunctions` types into...
I could't find any indication in the documentation, but does serverless-esbuild support lambda layers written in Typescript? There's currently an open issue with serverless-webpack (https://github.com/serverless-heaven/serverless-webpack/issues/556) which does not compile the...
I was wondering if there is a function like Readability's [isProbablyReaderable](https://github.com/mozilla/readability?tab=readme-ov-file#isprobablyreaderabledocument-options) function? I have the case that I can extract the content of a page with Trafilatura, but the content...
Hi, I hope I'm not flooding you with too many issues 😄 I have an FAQ page that uses `` to show and hide the corresponding content. It looks roughly...