catalyst
catalyst copied to clipboard
Catalyst is a set of patterns and techniques for developing components within a complex application.
Bumps [express](https://github.com/expressjs/express) from 4.18.1 to 4.19.2. Release notes Sourced from express's releases. 4.19.2 What's Changed Improved fix for open redirect allow list bypass Full Changelog: https://github.com/expressjs/express/compare/4.19.1...4.19.2 4.19.1 What's Changed Fix...
Bumps [ip](https://github.com/indutny/node-ip) from 1.1.5 to 1.1.9. Commits 1ecbf2f 1.1.9 6a3ada9 lib: fixed CVE-2023-42282 and added unit test 5dc3b2f 1.1.8 8e6f28b lib: even better node 6 support 088c9e5 1.1.7 1a4ca35 lib:...
Bumps [commonmarker](https://github.com/gjtorikian/commonmarker) from 0.23.7 to 0.23.10. Release notes Sourced from commonmarker's releases. v0.23.10 What's Changed Update to 0.29.0.gfm.13 by @anticomputer in gjtorikian/commonmarker#247 Full Changelog: https://github.com/gjtorikian/commonmarker/compare/v0.23.9...v0.23.10 v0.23.9 What's Changed Update to...
Current latest version of NPM package is 1.3.0  and npm registry version is 1.6.0 
V2
v2 is a branch made of the following PRs: - https://github.com/github/catalyst/pull/219 - https://github.com/github/catalyst/pull/220 - https://github.com/github/catalyst/pull/240 - https://github.com/github/catalyst/pull/250 - https://github.com/github/catalyst/pull/251 - https://github.com/github/catalyst/pull/252 - https://github.com/github/catalyst/pull/257 - https://github.com/github/catalyst/pull/259 - https://github.com/github/catalyst/pull/260 - https://github.com/github/catalyst/pull/261 -...
TypeScript 5.0 now has support for [ECMAScript Decorators](https://devblogs.microsoft.com/typescript/announcing-typescript-5-0-beta/#decorators). It'd be lovely to have a Catalyst v3 (or what not) that has support for the official language's decorators. (Currently we use...
This adds a new `@slot` decorator for querying/manipulating/listening for `slot` elements. This also listens for `slotchanged` events and calls the setter which can be very useful for running side effects...
Using ` plugins: [ preact() ]` in `vite.config.js` Tried to create a basic component, as shown in the guide: ```js import {controller} from '@github/catalyst'; @controller class TestThingElement extends HTMLElement {...
For attributes, I define in the markup `data-my-attr-name` and in the controller as `@attr myAttrName` For targets however, I have to define the target name in both the markup and...
@attr properties with a default value (specified using a getter method) incorrectly have their setter method called with an empty string after setting the property in the connectedCallback This incorrect...