Skip to content

Releases: yahoo/ember-gridstack

v4.0.1

10 Sep 18:14
bc9cfd3
Compare
Choose a tag to compare

4.0.1 (2024-09-10)

Bug Fixes

v4.0.0

06 Jul 18:13
86f1240
Compare
Choose a tag to compare

4.0.0 (2023-07-06)

Bug Fixes

chore

  • relax e-modifier with ^3.0.0 || ^4.1.0 (#133) (c528079)

BREAKING CHANGES

  • includes ember update to v4.12

Co-authored-by: Artyom Melichow [email protected]

v3.2.1

16 May 18:48
537943d
Compare
Choose a tag to compare

3.2.1 (2023-05-16)

Bug Fixes

v3.2.0

09 Feb 20:34
8753628
Compare
Choose a tag to compare

3.2.0 (2023-02-09)

Features

v3.1.1

25 May 20:23
7743acf
Compare
Choose a tag to compare

3.1.1 (2022-05-25)

Bug Fixes

  • don't trigger events due to teardown (#98) (7743acf)

v3.1.0

22 Dec 16:34
Compare
Choose a tag to compare

3.1.0 (2021-12-22)

Bug Fixes

  • grid-stack: allow custom class attribute (f00309e)

Features

  • update ember-modifier render-modifiers deps (7a1c6b4)

v3.0.2

21 Oct 23:44
26e77a8
Compare
Choose a tag to compare

3.0.2 (2021-10-21)

Bug Fixes

  • embroider-safe and embroider-optimized builds (#88) (26e77a8)

v3.0.1

19 Oct 18:00
47503ed
Compare
Choose a tag to compare

3.0.1 (2021-10-19)

Bug Fixes

v3.0.0

19 Oct 17:27
9005a36
Compare
Choose a tag to compare

3.0.0 (2021-10-19)

BREAKING CHANGES

✨ Huge shoutout to @adumesny for his work on gridstack ✨

  • BREAKING: Update to glimmer components and latest gridstack (#82)

    Some changes include

    • width -> w, height -> h
    • Manually specifying attributes via data-gs- -> updated to gs-

    For more detailed changes head over to gridstack and read their migration guides for v2, v3, and v4

    If you want to keep roughly the same display as before use these options

    <GridStack
      @options={{hash
        disableOneColumnMode=true
        animate=false
        marginTop=0
        marginBottom=20
        cellHeight="80px"
      }}
    >

    If your GridStackItems are no longer handling resizes, you may need to manually pass the event like this

    <GridStack @onResizestop={{this.doItemResize}}>
    
    export default class MyComponent extends Component<Args> {
      @action
      doItemResize(event: Event, gridStackItem: HTMLElement) {
        gridStackItem.dispatchEvent(new Event(event.type));
      }
    }
    
  • FEATURE: Some new options for GridStack events and GridStackItem options

    Some changes include

    • animation
    • native html5 implementation
    • better drag in/out and collision handling
  • DOCS: Updated readme examples to use updated hbs syntax

v2.1.0

03 Jun 20:24
bfd2d71
Compare
Choose a tag to compare

2.1.0 (2021-06-03)

Features