Sean Perkins

Results 197 comments of Sean Perkins

Since this package relies on copying the worker from PDF.js, you cannot use the regular implementation for web components. Please follow the README: angular.json ``` { "glob": "**/*", "input": "node_modules/@teamhive/stencil-pdf-viewer/dist/pdfviewer",...

@aktivdigital-frontend thanks for reporting this issue. I am seeing the same behavior as well. The datetime has internal logic that requires the date be active & that we should highlight...

Context from my discovery & our discord conversation: The web components are being defined/registered/detected correctly when served through Next.js. The `style` tag for each web component is not being rendered...

Upon further discovery, this only effects components that have multiple stylesheets. For instance: ```jsx Hello world ``` Renders correctly, since it only has one stylesheet, regardless of the mode. Components...

Custom elements bundle, doing something similar to: ```ts const App: React.FC = () => { useEffect(() => { import("stencil-nextjs/dist/components/my-component.js").then((x) => { x.defineCustomElement(); }); }, []); return ( ); }; ```...

@MarianDabrowski our contributing guide includes steps for building both `core` and the individual framework packages: https://github.com/ionic-team/ionic-framework/blob/main/.github/CONTRIBUTING.md#building-changes You will want to: 1. Run `npm run build` from `core/` 2. Run `npm...

@sverdlov thanks for reporting this issue. After comparing the two design implementations, these are the immediate differences I have identified: Item|MD|Ionic| |---|---|---| |Item height|56px|57px| |Vertical input text alignment|Center to container...

Updating the title and tracking as a bug based on previous comment.

The team is actively working on two upcoming releases and has not prioritized this issue yet. This repository is open source however and the alignment and height differences have been...

I need to update the screenshot tests to capture the individual states with just the class assigned vs. Playwright performing focus/hover/etc. Edit: It might actually just be a problem with...