Austen Stone

Results 41 comments of Austen Stone

> Angular 8 ivy not supported. Angular 9 will be. Any word on release date? It's still posted on [angular site](https://angular.io/guide/releases#release-schedule) as October/November 2019

Also notice the [select(dropdown)](https://material.angular.io/components/select/overview) component has `#FFFFFFDE` for normal options and `#FFFFFF` for disabled options. ![image](https://user-images.githubusercontent.com/22425467/112399471-a55d9700-8cdc-11eb-9575-9a47d5d5dff0.png) ![image](https://user-images.githubusercontent.com/22425467/112399433-91199a00-8cdc-11eb-871d-1d03b33fe7bc.png) ![image](https://user-images.githubusercontent.com/22425467/112399453-9c6cc580-8cdc-11eb-9a5b-f54b15178631.png) Maybe hard to notice, but you have no idea disabled options are...

I'll try to find time to work on this soon. Maybe similar to https://github.com/johannesjo/angular-material-css-vars/pull/36

Add the margin to a container inside the `gridster-item` instead of the `gridster-item` itself. ```html

Have you been able to group two widgets without multilayer? Maybe this feature request doesn't need to be specific to multi layer. Layering is simply a z-index and the collision...

I would set a boolean to true when the grid changes. Use [canDeactivate](https://angular.io/api/router/Route#canDeactivate) on the route to prevent the user from leaving the page. Put a popup that asks the...

It's simple. ```typescript options: GridsterConfig = { enableOccupiedCellDrop: true } ```

I would appreciate a ```typescript emptyOccupiedDropCallback?: (event: MouseEvent, item: GridsterItem) => void; ``` similar to `emptyCellDropCallback` and to pair with `enableOccupiedCellDrop`

If we can get the handle to `GridsterItem` from `checkCollision` it would be nice to check if item has some new property `droppable` inside the function `getValidItemFromEvent`. I haven't looked...

[Angular also supports passive event listeners. For example, you can use the following steps to make the scroll event passive.](https://angular.io/guide/user-input#source-code) 1. Create a file `zone-flags.ts` under src directory. 2. Add...