Paul Rumkin

Results 50 issues of Paul Rumkin

Add color schemes with alpha channel to support opacity rgba, hexa, etc.

enhancement

Generate digest files on build step. Previously it was a `checksum.txt` which is actually can be confusing and contained no important information, like hash digest algorithm nor contained properly formatted...

Currently data input in form fields will be lost when navigating through history. It could cause to data loss. Browsers are preserving it in some cases. Pill's implementation should be...

enhancement

Add `PillOptions.cache` option to overwrite Pill's cache. It should help to test Pill and to increase flexibility to solve different compatibility issues with manual Pill configuration. This property should be...

enhancement

- Add `PillOptions.listenClickEventOn` property. - Normalize event listener to have similar interface. - Fix `onReady` interface.

Make plugins support with Options builder class. Which has instance method `Options#toObject()` which returns Pill constructor's options argument. ```ts type OptionsObj = { // Pill's constructor options props } class...

enhancement

Create content extraction interface. It should receive html and return an object with: * title * content * entry point The list could be extended.

enhancement

This commit add path prefix for nested HTTP APIs with customized routing. For example I can mount docker's api proxy to `/system/docker/` on my server. Also: * Add DOCKER_PATH_PREFIX env...

> 🛑 **THIS IS A DRAFT PR!** Do not review it or merge! It conflicts with #176 which should be merged first. This PR introduces custom config files for client...

There is an issue with native class controllers in Chrome. Controller like this: ```javascript alight.ctrl.test = class { constructor() {; this.value = 1; } }; ``` and html like this:...