Skip to content

Commit 3f62a82

Browse files
author
Alain Dumesny
authored
Merge pull request #2337 from adumesny/master
v8.2.0
2 parents 57ebcd6 + 4f0547e commit 3f62a82

25 files changed

+31
-30
lines changed

Gruntfile.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ module.exports = function(grunt) {
4646
'dist/angular/README.md': ['angular/README.md'],
4747
'dist/angular/src/gridstack.component.ts': ['angular/projects/lib/src/lib/gridstack.component.ts'],
4848
'dist/angular/src/gridstack-item.component.ts': ['angular/projects/lib/src/lib/gridstack-item.component.ts'],
49+
'dist/angular/src/base-widget.ts': ['angular/projects/lib/src/lib/base-widget.ts'],
4950
'dist/angular/src/gridstack.module.ts': ['angular/projects/lib/src/lib/gridstack.module.ts'],
5051
}
5152
}

angular/projects/demo/src/app/dummy.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* gridstack.component.ts 8.1.2-dev
2+
* gridstack.component.ts 8.2.0
33
* Copyright (c) 2022 Alain Dumesny - see GridStack root license
44
*/
55

angular/projects/lib/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gridstack-angular",
3-
"version": "8.1.2-dev",
3+
"version": "8.2.0",
44
"peerDependencies": {
55
"@angular/common": "^14.2.0",
66
"@angular/core": "^14.2.0"

angular/projects/lib/src/lib/base-widgets.ts renamed to angular/projects/lib/src/lib/base-widget.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* gridstack-item.component.ts 8.1.2-dev
2+
* gridstack-item.component.ts 8.2.0
33
* Copyright (c) 2022 Alain Dumesny - see GridStack root license
44
*/
55

angular/projects/lib/src/lib/gridstack-item.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
/**
2-
* gridstack-item.component.ts 8.1.2-dev
2+
* gridstack-item.component.ts 8.2.0
33
* Copyright (c) 2022 Alain Dumesny - see GridStack root license
44
*/
55

66
import { Component, ElementRef, Input, ViewChild, ViewContainerRef, OnDestroy, ComponentRef } from '@angular/core';
77
import { GridItemHTMLElement, GridStackNode } from 'gridstack';
8-
import { BaseWidget } from './base-widgets';
8+
import { BaseWidget } from './base-widget';
99

1010
/** store element to Ng Class pointer back */
1111
export interface GridItemCompHTMLElement extends GridItemHTMLElement {

angular/projects/lib/src/lib/gridstack.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* gridstack.component.ts 8.1.2-dev
2+
* gridstack.component.ts 8.2.0
33
* Copyright (c) 2022 Alain Dumesny - see GridStack root license
44
*/
55

@@ -10,7 +10,7 @@ import { takeUntil } from 'rxjs/operators';
1010
import { GridHTMLElement, GridItemHTMLElement, GridStack, GridStackNode, GridStackOptions, GridStackWidget } from 'gridstack';
1111

1212
import { GridItemCompHTMLElement, GridstackItemComponent } from './gridstack-item.component';
13-
import { BaseWidget } from './base-widgets';
13+
import { BaseWidget } from './base-widget';
1414

1515
/** events handlers emitters signature for different events */
1616
export type eventCB = {event: Event};

angular/projects/lib/src/lib/gridstack.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* gridstack.component.ts 8.1.2-dev
2+
* gridstack.component.ts 8.2.0
33
* Copyright (c) 2022 Alain Dumesny - see GridStack root license
44
*/
55

angular/projects/lib/src/public-api.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44

55
export * from './lib/gridstack-item.component';
66
export * from './lib/gridstack.component';
7-
export * from './lib/base-widgets';
7+
export * from './lib/base-widget';
88
export * from './lib/gridstack.module';

doc/CHANGES.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ Change log
55
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
66
**Table of Contents** *generated with [DocToc](http://doctoc.herokuapp.com/)*
77

8-
- [8.1.2-dev TBD](#812-dev-tbd)
9-
- [8.1.2 (2023-5-22)](#812-2023-5-22)
8+
- [8.2.0 (2023-05-24)](#820-2023-05-24)
9+
- [8.1.2 (2023-05-22)](#812-2023-05-22)
1010
- [8.1.1 (2023-05-13)](#811-2023-05-13)
1111
- [8.1.0 (2023-05-06)](#810-2023-05-06)
1212
- [8.0.1 (2023-04-29)](#801-2023-04-29)
@@ -88,12 +88,12 @@ Change log
8888

8989
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
9090

91-
## 8.1.2-dev TBD
91+
## 8.2.0 (2023-05-24)
9292
* feat: `makeWidget()` now take optional `GridStackWidget` for sizing
9393
* fix: make sure `GridStack.saveCB` is call in `removeWidget()`
9494
* feat: angular wrapper: serialize custom data support, and making sure destroy() is called on ng components
9595

96-
## 8.1.2 (2023-5-22)
96+
## 8.1.2 (2023-05-22)
9797
* [#2323](https://github.com/gridstack/gridstack.js/issues/2323) module for Angular wrapper
9898

9999
## 8.1.1 (2023-05-13)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gridstack",
3-
"version": "8.1.2-dev",
3+
"version": "8.2.0",
44
"license": "MIT",
55
"author": "Alain Dumesny <alaind831+github@gmail.com> (https://github.com/adumesny)",
66
"contributors": [

0 commit comments

Comments
 (0)