Skip to content
This repository was archived by the owner on Jan 6, 2025. It is now read-only.

Commit 5a246b3

Browse files
committed
docs(lib): update links to reflect library refactor
* update links in the documentation to reflect the updated directory structure
1 parent afc433a commit 5a246b3

15 files changed

+17
-17
lines changed

docs/documentation/Adaptive-Layouts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Developers can use the following directives to achieve some Adaptive UX goals:
2222
For examples of `fxHide` usages in Adaptive layouts, please review the demo **Show & Hide Directives**:
2323

2424
* [Demo](https://tburleson-layouts-demos.firebaseapp.com/#/responsive)
25-
* [Source](https://github.com/angular/flex-layout/blob/master/src/demo-app/app/docs-layout-responsive/responsiveShowHide.demo.ts#L15)
25+
* [Source](https://github.com/angular/flex-layout/blob/master/src/apps/demo-app/src/app/responsive/responsive-show-hide/responsive-show-hide.component.ts#L15)
2626

2727
----
2828

docs/documentation/Use-Cases.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ or used as fallback
3535
* Custom set of breakpoints can be defined as a Provider
3636
* Custom breakpoints will override ALL default breakpoints (no merging)
3737

38-
[Demo]: https://github.com/angular/flex-layout/blob/master/src/demo-app/app/docs-layout-responsive/responsiveFlexOrder.demo.ts#L59
38+
[Demo]: https://github.com/angular/flex-layout/blob/master/src/apps/demo-app/src/app/responsive/responsive-flex-order/responsive-flex-order.component.ts#L59

docs/documentation/Using-Angular-CLI.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,4 +71,4 @@ System.config({
7171
Developers are encouraged to review the live demos and source for the Flex-Layout Demos:
7272

7373
* [Live Demos](https://tburleson-layouts-demos.firebaseapp.com/)
74-
* [Demo Source Code](https://github.com/angular/flex-layout/blob/master/src/demo-app/)
74+
* [Demo Source Code](https://github.com/angular/flex-layout/blob/master/src/apps/demo-app/)

docs/documentation/_Sidebar.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* [Best Performance](https://github.com/angular/flex-layout/wiki/Best-Performance)
1313
* Demos
1414
* [Live Online](https://tburleson-layouts-demos.firebaseapp.com/)
15-
* [Source Code](https://github.com/angular/flex-layout/blob/master/src/demo-app/demo-app-module.ts#L28)
15+
* [Source Code](https://github.com/angular/flex-layout/blob/master/src/apps/demo-app/src/app/app.module.ts#L28)
1616

1717
* StackBlitz Templates
1818
* [Flex-Layout Template](https://stackblitz.com/edit/angular-flex-layout-seed)

docs/documentation/fxFlex-API.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ available. The flex-grow value overrides the width.
1414
* **flex-shrink**: defines how much a flexbox item should **shrink** if there is **not enough** space available.
1515
* **flex-basis**: controls the default size of an element, before it is manipulated by other Flexbox properties
1616

17-
[![fxFlex example](https://cloud.githubusercontent.com/assets/210413/21274996/6b640f8a-c390-11e6-87ac-ca85eb6c3983.png)](https://github.com/angular/flex-layout/blob/master/src/demo-app/app/stack-overflow/columnSpan.demo.ts#L23)
17+
[![fxFlex example](https://cloud.githubusercontent.com/assets/210413/21274996/6b640f8a-c390-11e6-87ac-ca85eb6c3983.png)](https://github.com/angular/flex-layout/blob/master/src/apps/demo-app/src/app/stack-overflow/grid-column-span/grid-column-span.component.ts#L23)
1818

1919
Note that the resizing occurs along the main-axis of the layout and maybe affected by the **fxLayoutAlign** options.
2020

@@ -182,5 +182,5 @@ Developer's seeking details on FlexBox should
182182
* Review [CSS-Tricks - A Guide to FlexBox](https://css-tricks.com/snippets/css/a-guide-to-flexbox/), or
183183
* Play with the online [Flex-Layout Demos](https://tburleson-layouts-demos.firebaseapp.com/#/docs)
184184

185-
[fxFlex]: https://github.com/angular/flex-layout/blob/master/src/lib/flexbox/api/flex.ts
186-
[FlexDirective]: https://github.com/angular/flex-layout/blob/master/src/lib/flexbox/api/flex.ts#L65-L67
185+
[fxFlex]: https://github.com/angular/flex-layout/blob/master/src/lib/flex/flex/flex.ts
186+
[FlexDirective]: https://github.com/angular/flex-layout/blob/master/src/lib/flex/flex/flex.ts#L65-L67

docs/documentation/fxFlexAlign-API.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ container
2828
supported by this directive
2929

3030

31-
[Align]: https://github.com/angular/flex-layout/blob/master/src/lib/flexbox/api/flex-align.ts#L38
31+
[Align]: https://github.com/angular/flex-layout/blob/master/src/lib/flex/flex-align/flex-align.ts#L38

docs/documentation/fxFlexFill-API.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ element whose width and height should be maximized
2020
| `min-width` | `100%` |
2121
| `min-height`| `100%` |
2222

23-
[Fill]: https://github.com/angular/flex-layout/blob/master/src/lib/flexbox/api/flex-fill.tst#L31
23+
[Fill]: https://github.com/angular/flex-layout/blob/master/src/lib/flex/flex-fill/flex-fill.tst#L31

docs/documentation/fxFlexOffset-API.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ styling
2626
> RTL support is coming soon, which will automatically apply `margin-right` instead of `margin-left`
2727
2828

29-
[Offset]: https://github.com/angular/flex-layout/blob/master/src/lib/flexbox/api/flex-offset.ts#L41
29+
[Offset]: https://github.com/angular/flex-layout/blob/master/src/lib/flex/flex-offset/flex-offset.ts#L41

docs/documentation/fxFlexOrder-API.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ the positional ordering of the element
2020
| `(default)` | `order: 0` |
2121
| `<int>` | `order: <int>` |
2222

23-
[Order]: https://github.com/angular/flex-layout/blob/master/src/lib/flexbox/api/flex-order.ts#41
23+
[Order]: https://github.com/angular/flex-layout/blob/master/src/lib/flex/flex-order/flex-order.ts#41

docs/documentation/fxLayout-API.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,4 @@ Changes to the fxLayout value will cause the following directives to update and
4242
* **fxFlex**
4343
* **fxLayoutAlign**
4444

45-
[Layout]: https://github.com/angular/flex-layout/blob/master/src/lib/api/flexbox/layout.ts#L34-L40
45+
[Layout]: https://github.com/angular/flex-layout/blob/master/src/lib/flex/layout/layout.ts#L34-L40

0 commit comments

Comments
 (0)