Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit0e1ea19

Browse files
authored
fix: docs and site fixes (#478)
* fix: fork me on github ribbon* fix: docs flex layout and split directive* fix: remove obsolete collapse expand example
1 parent4f5b26c commit0e1ea19

File tree

10 files changed

+26
-134
lines changed

10 files changed

+26
-134
lines changed

‎README.md‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
#angular-split[![npm latest version](https://img.shields.io/npm/v/angular-split/latest.svg?style=flat-square)](https://www.npmjs.com/package/angular-split)[![NPM next version](https://img.shields.io/npm/v/angular-split/next.svg?style=flat-square)](https://www.npmjs.com/package/angular-split)[![Discord](https://img.shields.io/discord/748677963142135818?color=7289DA&label=Angular%20Discord&logo=discord&logoColor=white&style=flat-square)](https://discord.gg/Qm9MPCg)
22

3-
Angular UI library to split views and allow dragging to resize areas using CSSflexbox layout.
3+
Angular UI library to split views and allow dragging to resize areas using CSSgrid layout.
44

55
Documentation and examples:
66
[https://angular-split.github.io](https://angular-split.github.io)
77

88
###Credits
99

10-
####Built by[Bertrand Gaillard](https://github.com/bertrandg).
10+
####Built by[Bertrand Gaillard](https://github.com/bertrandg)
1111

12-
####Maintained by:[Bram Borggreve](https://github.com/beeman) (As of 2020).
12+
####Maintained by:[Bram Borggreve](https://github.com/beeman) (As of 2020)
1313

1414
####Previously:[Bertrand Gaillard](https://github.com/bertrandg) (2016 to 2019)
1515

‎projects/angular-split/package.json‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name":"angular-split",
33
"version":"18.0.0",
4-
"description":"Angular UI library to split views and allow dragging to resize areas using CSSflexbox layout.",
4+
"description":"Angular UI library to split views and allow dragging to resize areas using CSSgrid layout.",
55
"author":"beeman",
66
"repository": {
77
"type":"git",
@@ -23,7 +23,7 @@
2323
"split",
2424
"split-pane",
2525
"split-area",
26-
"flexbox"
26+
"grid"
2727
],
2828
"license":"Apache-2.0",
2929
"exports": {

‎src/app/documentation/documentation.component.html‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ <h4>
6464
<br/><br/>
6565

6666
<h4>
67-
<b>SplitAreaDirective</b>&nbsp;<spanclass="sel"
67+
<b>SplitAreaComponent</b>&nbsp;<spanclass="sel"
6868
>(selector: '<spanclass="selContent">as-split-area</span>' / exportAs: '<spanclass="selContent"
6969
>asSplitArea</span
7070
>')</span

‎src/app/documentation/documentation.component.ts‎

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,7 @@ export class DocumentationComponent {
9595
name:'useTransition',
9696
type:'boolean',
9797
default:'false',
98-
details:
99-
'Add transition when toggling visibility using <code>[visible]</code> or <code>[size]</code> changes.<br><u>Warning: Transitions are not working for <a href="https://github.com/philipwalton/flexbugs#flexbug-16">IE/Edge/Safari</a></u>',
98+
details:'Add transition when toggling visibility using <code>[visible]</code> or <code>[size]</code> changes',
10099
},
101100
],
102101
outputs:[
@@ -124,7 +123,7 @@ export class DocumentationComponent {
124123
name:'transitionEnd',
125124
value:'SplitAreaSize[]',
126125
details:
127-
'Emit when transition ends (could be triggered from <code>[visible]</code> or <code>[size]</code> changes).<br>Only if <code>[useTransition]="true"</code>.<br><u>Warning: Transitions are not working for <a href="https://github.com/philipwalton/flexbugs#flexbug-16">IE/Edge/Safari</a></u>',
126+
'Emit when transition ends (could be triggered from <code>[visible]</code> or <code>[size]</code> changes).<br>Only if <code>[useTransition]="true"</code>',
128127
},
129128
],
130129
class:[

‎src/app/examples/collapse-expand/collapse-expand.component.ts‎

Lines changed: 0 additions & 82 deletions
This file was deleted.

‎src/app/examples/collapse-expand/collapse-expand.module.ts‎

Lines changed: 0 additions & 17 deletions
This file was deleted.

‎src/app/examples/example-types.ts‎

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
exportenumExampleEnum{
22
CLICK='click',
33
CODE='code',
4-
COLLAPSE='collapse',
54
DIR='dir',
65
GEEK='geek',
76
IFRAME='iframe',

‎src/app/examples/examples.routes.ts‎

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -82,15 +82,6 @@ export const exampleRoutes: Routes = [
8282
(m)=>m.TogglingDomAndVisibilityModule,
8383
),
8484
},
85-
{
86-
data:{
87-
type:ExampleEnum.COLLAPSE,
88-
label:'Collapse/Expand a specific area',
89-
srcUrl:`${srcUrlBaseApp}/collapse-expand/collapse-expand.component.ts`,
90-
},
91-
path:'collapse-expand',
92-
loadChildren:()=>import('./collapse-expand/collapse-expand.module').then((m)=>m.CollapseExpandModule),
93-
},
9485
{
9586
data:{
9687
type:ExampleEnum.CLICK,

‎src/app/home/home.component.ts‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ import { Component, VERSION } from '@angular/core'
3232
<div class="text-center">
3333
<img src="/assets/logo.svg" height="100" class="m-auto" alt="" />
3434
<h1 class="mt-3">angular-split</h1>
35-
<h4>Angular UI library to split views and allow dragging to resize areas using CSSflexbox layout.</h4>
35+
<h4>Angular UI library to split views and allow dragging to resize areas using CSSgrid layout.</h4>
3636
<h5 class="mt-3 text-muted">Running on Angular v{{ version }}.</h5>
3737
<a href="https://www.npmjs.com/package/angular-split"
3838
><img

‎src/index.html‎

Lines changed: 17 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -8,25 +8,27 @@
88
<metahttp-equiv="X-UA-Compatible"content="IE=edge"/>
99
<metaname="viewport"content="width=device-width, initial-scale=1"/>
1010
<linkrel="icon"type="image/x-icon"href="favicon.ico"/>
11+
<link
12+
rel="stylesheet"
13+
href="https://cdnjs.cloudflare.com/ajax/libs/github-fork-ribbon-css/0.2.3/gh-fork-ribbon.min.css"
14+
/>
15+
<style>
16+
.github-fork-ribbon:before {
17+
background-color:#f80;
18+
}
19+
</style>
1120
</head>
21+
1222
<body>
1323
<sp-app-root>
1424
<pstyle="text-align: center; margin-top: 200px">Loading...</p>
1525
</sp-app-root>
16-
<ahref="https://github.com/angular-split/angular-split/"
17-
><img
18-
style="
19-
position: fixed;
20-
top: 0;
21-
right: 0;
22-
border: 0;
23-
z-index: 1040;
24-
transform-origin: top right;
25-
transform: scale(0.8);
26-
"
27-
src="https://camo.githubusercontent.com/38ef81f8aca64bb9a64448d0d70f1308ef5341ab/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f6461726b626c75655f3132313632312e706e67"
28-
alt="Fork me on GitHub"
29-
data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"
30-
/></a>
26+
<a
27+
class="github-fork-ribbon"
28+
href="https://github.com/angular-split/angular-split/"
29+
data-ribbon="Fork me on GitHub"
30+
title="Fork me on GitHub"
31+
>Fork me on GitHub</a
32+
>
3133
</body>
3234
</html>

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp