diff --git a/README.md b/README.md index 1893d54b..1c2f0b4b 100644 --- a/README.md +++ b/README.md @@ -1,15 +1,15 @@ # angular-split [](https://www.npmjs.com/package/angular-split) [](https://www.npmjs.com/package/angular-split) [](https://discord.gg/Qm9MPCg) -Angular UI library to split views and allow dragging to resize areas using CSS flexbox layout. +Angular UI library to split views and allow dragging to resize areas using CSS grid layout. Documentation and examples: [https://angular-split.github.io](https://angular-split.github.io) ### Credits -#### Built by [Bertrand Gaillard](https://github.com/bertrandg). +#### Built by [Bertrand Gaillard](https://github.com/bertrandg) -#### Maintained by: [Bram Borggreve](https://github.com/beeman) (As of 2020). +#### Maintained by: [Bram Borggreve](https://github.com/beeman) (As of 2020) #### Previously: [Bertrand Gaillard](https://github.com/bertrandg) (2016 to 2019) diff --git a/projects/angular-split/package.json b/projects/angular-split/package.json index 0d3ffee6..ffde3765 100644 --- a/projects/angular-split/package.json +++ b/projects/angular-split/package.json @@ -1,7 +1,7 @@ { "name": "angular-split", "version": "18.0.0", - "description": "Angular UI library to split views and allow dragging to resize areas using CSS flexbox layout.", + "description": "Angular UI library to split views and allow dragging to resize areas using CSS grid layout.", "author": "beeman", "repository": { "type": "git", @@ -23,7 +23,7 @@ "split", "split-pane", "split-area", - "flexbox" + "grid" ], "license": "Apache-2.0", "exports": { diff --git a/src/app/documentation/documentation.component.html b/src/app/documentation/documentation.component.html index 7bb2e4c3..bb1540b1 100644 --- a/src/app/documentation/documentation.component.html +++ b/src/app/documentation/documentation.component.html @@ -64,7 +64,7 @@
[size]
changes.[visible]
or [size]
changes',
},
],
outputs: [
@@ -124,7 +123,7 @@ export class DocumentationComponent {
name: 'transitionEnd',
value: 'SplitAreaSize[]',
details:
- 'Emit when transition ends (could be triggered from [visible]
or [size]
changes).[useTransition]="true"
.[visible]
or [size]
changes).[useTransition]="true"
',
},
],
class: [
diff --git a/src/app/examples/collapse-expand/collapse-expand.component.ts b/src/app/examples/collapse-expand/collapse-expand.component.ts
deleted file mode 100644
index 3e6f1912..00000000
--- a/src/app/examples/collapse-expand/collapse-expand.component.ts
+++ /dev/null
@@ -1,82 +0,0 @@
-import { Component, ViewChild, ViewChildren, QueryList, ChangeDetectionStrategy, HostBinding } from '@angular/core'
-import { SplitComponent, SplitAreaComponent } from 'angular-split'
-
-import { AComponent } from '../../ui/components/AComponent'
-
-@Component({
- selector: 'sp-ex-class-collapse',
- changeDetection: ChangeDetectionStrategy.OnPush,
- styles: [
- `
- .btns {
- display: flex;
- flex-wrap: wrap;
- align-items: center;
- justify-content: space-around;
- }
- .btns > div {
- margin-bottom: 10px;
- }
- `,
- ],
- template: `
- Loading...