Benny Powers - עם ישראל חי!

Results 332 issues of Benny Powers - עם ישראל חי!

### Description `` clobbers it's header's scrollTarget in `_updateLayoutStates` ### Expected outcome If scrollTarget is set on header, it should be respected ### Actual outcome scrollTarget is reset to either...

## Description I would like a feature which enables me to condense the app-header manually. For example: ```js _pageLoggedInChanged(page, loggedIn) { if (page === 'home' && !loggedIn) this.$.appHeader.condense(); } ```...

enhancement

### Description when `--app-grid-gutter` is 0, `--app-grid-expandible-item` applies invalid rules such as: ```css /* specified mixins */ :host { --app-grid-columns: 6; --app-grid-expandible-item-columns: 2; --app-grid-item-height: auto; --app-grid-gutter: 1px; } ``` ```css...

documentation

### Description When loading a page that uses font-roboto-local on chrome for windows, I receive console warnings. Does not occur on macOS ### Expected outcome no console warnings ### Actual...

Allows consuming components to process key events as needed.

cla: yes

### Description I'm apparently unable to bind to the `alt`, `shift`, and `meta` keys with the following `keyBindings` property ```js keyBindings: { 'alt': '_handleKeydown', 'Alt': '_handleKeydown', 'AltGraph': '_handleKeydown', 'meta': '_handleKeydown',...

We should provide an option that lists (string) subclass names, so that ```ts export class IsReallyALitElement extends FooElement { /*...*/ } ``` lints up with our plugin

following on from #185 , this allows users to calculate terminal window options like height and width dynamically

Consider this example custom element [codepen](https://codepen.io/bennyp/pen/KKxRErL?editors=1010): ```html Menu import 'element-internals-polyfill'; customElements.define('x-menu', class XMenu extends HTMLElement { #internals = this.attachInternals(); constructor() { super(); this.#internals.role = 'menu'; } }); ``` Chromium 111...