Skip to content
This repository was archived by the owner on Feb 23, 2023. It is now read-only.

Commit 96f0b8f

Browse files
committed
docs: changes for 7.1.0
1 parent cb0f7bb commit 96f0b8f

File tree

7 files changed

+91
-87
lines changed

7 files changed

+91
-87
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
1+
# 7.1.0
2+
3+
* Fixed issues with `ng-packagr`. All individual pipes can now be exported directly from `angular-pipes` instead of full path. The full path is not available anymore.
4+
15
# 7.0.0
26

3-
* No code changes, distribution is now done via `ng-packagr` to follow the `Angular Package Format`.
7+
* No code changes, distribution is now done via `ng-packagr` to follow the `Angular Package Format`.%
48

59
# 6.5.0
610

docs/aggregate.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Returns the groupped data of the given array.
1515
##### File
1616

1717
```typescript
18-
import { GroupByPipe } from 'angular-pipes/src/aggregate/group-by.pipe';
18+
import { GroupByPipe } from 'angular-pipes';
1919
```
2020

2121
##### Usage
@@ -47,7 +47,7 @@ Returns the minimum of the given array.
4747
##### File
4848

4949
```typescript
50-
import { MinPipe } from 'angular-pipes/src/aggregate/min.pipe';
50+
import { MinPipe } from 'angular-pipes';
5151
```
5252

5353
##### Usage
@@ -64,7 +64,7 @@ Returns the maximum of the given array.
6464
##### File
6565

6666
```typescript
67-
import { MaxPipe } from 'angular-pipes/src/aggregate/max.pipe';
67+
import { MaxPipe } from 'angular-pipes';
6868
```
6969

7070
##### Usage
@@ -81,7 +81,7 @@ Returns the mean of the given array.
8181
##### File
8282

8383
```typescript
84-
import { MeanPipe } from 'angular-pipes/src/aggregate/mean.pipe';
84+
import { MeanPipe } from 'angular-pipes';
8585
```
8686

8787
##### Usage
@@ -97,7 +97,7 @@ Returns the sum of the given array.
9797
##### File
9898

9999
```typescript
100-
import { SumPipe } from 'angular-pipes/src/aggregate/sum.pipe';
100+
import { SumPipe } from 'angular-pipes';
101101
```
102102

103103
##### Usage

docs/array.md

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Returns true if the collection is empty.
3838
##### File
3939

4040
```typescript
41-
import { EmptyPipe } from 'angular-pipes/src/array/empty.pipe';
41+
import { EmptyPipe } from 'angular-pipes';
4242
```
4343

4444
##### Usage
@@ -55,7 +55,7 @@ Returns the first element of the collection, or undefined if the collection is e
5555
##### File
5656

5757
```typescript
58-
import { HeadPipe } from 'angular-pipes/src/array/head.pipe';
58+
import { HeadPipe } from 'angular-pipes';
5959
```
6060

6161
##### Usage
@@ -72,7 +72,7 @@ Returns every element but the last of the collection or empty array if the colle
7272
##### File
7373

7474
```typescript
75-
import { InitialPipe } from 'angular-pipes/src/array/initial.pipe';
75+
import { InitialPipe } from 'angular-pipes';
7676
```
7777

7878
##### Usage
@@ -90,7 +90,7 @@ Joins an array into a string.
9090
##### File
9191

9292
```typescript
93-
import { JoinPipe } from 'angular-pipes/src/array/join.pipe';
93+
import { JoinPipe } from 'angular-pipes';
9494
```
9595

9696
##### Usage
@@ -109,7 +109,7 @@ Returns the last element of the collection or undefined if the collection is emp
109109
##### File
110110

111111
```typescript
112-
import { LastPipe } from 'angular-pipes/src/array/last.pipe';
112+
import { LastPipe } from 'angular-pipes';
113113
```
114114

115115
##### Usage
@@ -127,7 +127,7 @@ Returns every elements but the first of the collection or empty array if the col
127127
##### File
128128

129129
```typescript
130-
import { TailPipe } from 'angular-pipes/src/array/tail.pipe';
130+
import { TailPipe } from 'angular-pipes';
131131
```
132132

133133
##### Usage
@@ -145,7 +145,7 @@ Returns the collection keeping only one duplicate.
145145
##### File
146146

147147
```typescript
148-
import { UniqPipe } from 'angular-pipes/src/array/uniq.pipe';
148+
import { UniqPipe } from 'angular-pipes';
149149
```
150150

151151
##### Usage
@@ -162,7 +162,7 @@ Returns the collection without the specified elements.
162162
##### File
163163

164164
```typescript
165-
import { WithoutPipe } from 'angular-pipes/src/array/without.pipe';
165+
import { WithoutPipe } from 'angular-pipes';
166166
```
167167

168168
##### Usage
@@ -178,7 +178,7 @@ Returns the intersection of two collection, works with deep equal.
178178
##### File
179179

180180
```typescript
181-
import { IntersectionPipe } from 'angular-pipes/src/array/intersection.pipe';
181+
import { IntersectionPipe } from 'angular-pipes';
182182
```
183183

184184
##### Usage
@@ -198,7 +198,7 @@ Returns the union of two collection, works with deep equal.
198198
##### File
199199

200200
```typescript
201-
import { UnionPipe } from 'angular-pipes/src/array/union.pipe';
201+
import { UnionPipe } from 'angular-pipes';
202202
```
203203

204204
##### Usage
@@ -219,7 +219,7 @@ The value on the left hand size does not matter, it is ignored.
219219
##### File
220220

221221
```typescript
222-
import { RangePipe } from 'angular-pipes/src/array/range.pipe';
222+
import { RangePipe } from 'angular-pipes';
223223
```
224224

225225
##### Usage
@@ -240,7 +240,7 @@ If no function is provided, the collection is returned unchanged.
240240
##### File
241241

242242
```typescript
243-
import { MapPipe } from 'angular-pipes/src/array/map.pipe';
243+
import { MapPipe } from 'angular-pipes';
244244
```
245245

246246
##### Usage
@@ -267,7 +267,7 @@ Returns an array of the given property of the object in the array.
267267
##### File
268268

269269
```typescript
270-
import { PluckPipe } from 'angular-pipes/src/array/pluck.pipe';
270+
import { PluckPipe } from 'angular-pipes';
271271
```
272272

273273
##### Usage
@@ -311,7 +311,7 @@ Filter an array with a given function or a property shorthand.
311311
##### File
312312

313313
```typescript
314-
import { WherePipe } from 'angular-pipes/src/array/where.pipe';
314+
import { WherePipe } from 'angular-pipes';
315315
```
316316

317317
##### Usage
@@ -363,7 +363,7 @@ such element exists.
363363
##### File
364364

365365
```typescript
366-
import { FirstOrDefaultPipe } from 'angular-pipes/src/array/first-or-default.pipe';
366+
import { FirstOrDefaultPipe } from 'angular-pipes';
367367
```
368368

369369
##### Usage
@@ -415,7 +415,7 @@ Returns a new ordered array. You can order by multiple properties, ascending and
415415
##### File
416416

417417
```typescript
418-
import { OrderByPipe } from 'angular-pipes/src/array/order-by.pipe';
418+
import { OrderByPipe } from 'angular-pipes';
419419
```
420420

421421
##### Usage
@@ -449,7 +449,7 @@ Returns a reversed array.
449449
##### File
450450

451451
```typescript
452-
import { ReversePipe } from 'angular-pipes/src/array/reverse.pipe';
452+
import { ReversePipe } from 'angular-pipes';
453453
```
454454

455455
##### Usage
@@ -467,7 +467,7 @@ Works also for object and string.
467467
##### File
468468

469469
```typescript
470-
import { CountPipe } from 'angular-pipes/src/array/count.pipe';
470+
import { CountPipe } from 'angular-pipes';
471471
```
472472

473473
##### Usage
@@ -484,7 +484,7 @@ Returns true if at least one of the item in the collections pass the predicate.
484484
##### File
485485

486486
```typescript
487-
import { SomePipe } from 'angular-pipes/src/array/some.pipe';
487+
import { SomePipe } from 'angular-pipes';
488488
```
489489

490490
##### Usage
@@ -508,7 +508,7 @@ Returns true if every item in the collections pass the predicate.
508508
##### File
509509

510510
```typescript
511-
import { EveryPipe } from 'angular-pipes/src/array/every.pipe';
511+
import { EveryPipe } from 'angular-pipes';
512512
```
513513

514514
##### Usage
@@ -531,7 +531,7 @@ Shuffles a collection.
531531
##### File
532532

533533
```typescript
534-
import { ShufflePipe } from 'angular-pipes/src/array/shuffle.pipe';
534+
import { ShufflePipe } from 'angular-pipes';
535535
```
536536

537537
##### Usage
@@ -547,7 +547,7 @@ Take the top `n` items of an array.
547547
##### File
548548

549549
```typescript
550-
import { TakePipe } from 'angular-pipes/src/array/take.pipe';
550+
import { TakePipe } from 'angular-pipes';
551551
```
552552

553553
##### Usage
@@ -565,7 +565,7 @@ Take until the condition is met.
565565
##### File
566566

567567
```typescript
568-
import { TakeUntilPipe } from 'angular-pipes/src/array/take-until.pipe';
568+
import { TakeUntilPipe } from 'angular-pipes';
569569
```
570570

571571
##### Usage
@@ -587,7 +587,7 @@ Take while the condition is met.
587587
##### File
588588

589589
```typescript
590-
import { TakeWhilePipe } from 'angular-pipes/src/array/take-while.pipe';
590+
import { TakeWhilePipe } from 'angular-pipes';
591591
```
592592

593593
##### Usage
@@ -610,7 +610,7 @@ Drop the last `n` items of an array.
610610
##### File
611611

612612
```typescript
613-
import { DropPipe } from 'angular-pipes/src/array/drop.pipe';
613+
import { DropPipe } from 'angular-pipes';
614614
```
615615

616616
##### Usage
@@ -629,7 +629,7 @@ with deep comparaisons.
629629
##### File
630630

631631
```typescript
632-
import { DeepPipe } from 'angular-pipes/src/array/deep.pipe';
632+
import { DeepPipe } from 'angular-pipes';
633633
```
634634

635635
##### Usage
@@ -657,7 +657,7 @@ The `chunk` pipe breaks the array into multiple, smaller arrays of a given size:
657657
##### File
658658

659659
```typescript
660-
import { ChunkPipe } from 'angular-pipes/src/array/chunk.pipe';
660+
import { ChunkPipe } from 'angular-pipes';
661661
```
662662

663663
##### Usage
@@ -675,7 +675,7 @@ The `flatten` flattens an array. It can be used with the `deep` pipe.
675675
##### File
676676

677677
```typescript
678-
import { FlattenPipe } from 'angular-pipes/src/array/flatten.pipe';
678+
import { FlattenPipe } from 'angular-pipes';
679679
```
680680

681681
##### Usage

0 commit comments

Comments
 (0)