Skip to content

Commit 8603799

Browse files
committed
fix below & add content
1 parent 001a7da commit 8603799

File tree

5 files changed

+50
-31
lines changed

5 files changed

+50
-31
lines changed

CHANGELOG.md

+34-21
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,34 @@
11
# Changelog of ng-walkthrough
22

3+
## V0.10.1 (2024-06-24)
4+
5+
### Correction
6+
7+
- fix `below` position for `verticalAlignContent`
8+
9+
### New feature
10+
11+
- add `content` position for `alignContent` : to horizontally center on content
12+
313
## V0.10.0 (2023-08-01)
414

5-
### Breaking changes
15+
### Breaking change
616

717
- upgrade to Angular 16.1
18+
19+
### Correction
20+
821
- fix typo/wording
922

1023
## V0.9.8 (2022-02-25)
1124

12-
### New features
25+
### New feature
1326

1427
- add `hideNext` and `hideNav` attributes
1528

1629
## V0.9.7 (2021-12-17)
1730

18-
### Corrections
31+
### Correction
1932

2033
- add options for DOM detection changes
2134

@@ -41,25 +54,25 @@
4154

4255
## V0.9.3 (2019-08-24)
4356

44-
### Corrections
57+
### Correction
4558

4659
- fix `notScrollOnResize`
4760

4861
## V0.9.2 (2019-08-18)
4962

50-
### New features
63+
### New feature
5164

5265
- add `notScrollOnResize` attribute
5366

5467
## V0.9.1 (2019-07-23)
5568

56-
### Corrections
69+
### Correction
5770

5871
- fix the walkthrough pause on resize
5972

6073
## V0.9.0 (2021-06-02)
6174

62-
### Breaking changes
75+
### Breaking change
6376

6477
- upgrade to Angular 11
6578

@@ -81,29 +94,29 @@
8194

8295
## V0.8.0 (2019-03-28)
8396

84-
### Breaking changes
97+
### Breaking change
8598

8699
- upgrade to Angular 7
87100

88-
### Corrections
101+
### Correction
89102

90103
- Avoid resize event spamming
91104

92105
## V0.7.4 (2019-02-26)
93106

94-
### New features
107+
### New feature
95108

96109
- Optional parameter `scrollOnTarget` default `true` : if the walkthrough detect that `focusElementSelector` is outside of the current view, scrolls automatically.
97110

98111
## V0.7.3 (2018-10-29)
99112

100-
### Corrections
113+
### Correction
101114

102115
- Fix a problem the instance is called too early.
103116

104117
## V0.7.2 (2018-10-25)
105118

106-
### New features
119+
### New feature
107120

108121
- Add subjects on `WalkthroughComponent` :
109122
- `onOpen` : on open
@@ -116,7 +129,7 @@
116129

117130
## V0.7.1 (2018-09-17)
118131

119-
### Corrections
132+
### Correction
120133

121134
- Fix crashes with “Toggle focusElementSelector” in demo
122135

@@ -134,35 +147,35 @@
134147

135148
## V0.6.17 (2018-06-12)
136149

137-
### Corrections
150+
### Correction
138151

139152
- Fix arrow display on Safari/iOS
140153

141154
## V0.6.16 (2018-06-05)
142155

143-
### New features
156+
### New feature
144157

145158
- Fix hidden zones when using library with fixed elements by adding `rootElement` attribute
146159

147-
### Corrections
160+
### Correction
148161

149162
- Fix resize event fired every time the address bar display is toggled (Android and iOS). Now the resize event is applied only when the width changes.
150163

151164
## V0.6.15 (2018-05-28)
152165

153-
### Corrections
166+
### Correction
154167

155168
- Fix case when a step have no `focusElementSelector` (#19)
156169

157170
## V0.6.14 (2018-05-24)
158171

159-
### Corrections
172+
### Correction
160173

161174
- Fix resize code not firing anymore (bug introduced in last release)
162175

163176
## V0.6.13 (2018-05-23)
164177

165-
### Corrections
178+
### Correction
166179

167180
- Fix walkthrough visible while on pause when `window:resize` event is fired
168181

@@ -183,7 +196,7 @@
183196

184197
## V0.6.10 (2018-04-27)
185198

186-
### Corrections
199+
### Correction
187200

188201
- Fix a bug of positioning while scrolling
189202

@@ -197,7 +210,7 @@
197210

198211
## V0.6.8 (2018-04-26)
199212

200-
### Corrections
213+
### Correction
201214

202215
- Fix crash on static method with IE11
203216

projects/angular-walkthrough/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-walkthrough",
3-
"version": "0.10.0",
3+
"version": "0.10.1",
44
"description": "Walkthrough, an Angular library",
55
"author": "Célian Veyssière",
66
"license": "MIT",

projects/angular-walkthrough/src/lib/walkthrough-container.component.ts

+9-3
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ export class WalkthroughContainerComponent extends BasePortalOutlet {
240240

241241
contentBlockPosition(
242242
paramCoordinate: WalkthroughElementCoordinate,
243-
alignContent: 'left' | 'center' | 'right',
243+
alignContent: 'left' | 'center' | 'right' | 'content',
244244
verticalAlignContent: 'above' | 'top' | 'center' | 'bottom' | 'below',
245245
contentSpacing: number,
246246
verticalContentSpacing: number,
@@ -273,7 +273,7 @@ export class WalkthroughContainerComponent extends BasePortalOutlet {
273273
!notEnoughSpace
274274
) {
275275
// change align center to left or right if not enough space to align center
276-
if (alignContent === 'center') {
276+
if (alignContent === 'center' || alignContent === 'content') {
277277
const maxSpace = Math.max(spaceRight, spaceLeft);
278278
if (maxSpace < width + (window.innerWidth - width) / 2) {
279279
alignContent = spaceRight > spaceLeft ? 'right' : 'left';
@@ -307,6 +307,8 @@ export class WalkthroughContainerComponent extends BasePortalOutlet {
307307
}
308308
} else if (alignContent === 'center') {
309309
element.style.left = window.innerWidth / 2 - width / 2 + 'px';
310+
} else if (alignContent === 'content') {
311+
element.style.left = coordinate.left + coordinate.width / 2 - width / 2 + 'px';
310312
} else if (alignContent === 'right') {
311313
element.style.right = '0';
312314
if (this.hasHighlightZone) {
@@ -354,7 +356,11 @@ export class WalkthroughContainerComponent extends BasePortalOutlet {
354356
break;
355357
case 'below':
356358
element.style.top =
357-
space > verticalContentSpacing
359+
this._walkthroughService.getDocumentHeight() -
360+
coordinate.top +
361+
coordinate.height +
362+
verticalContentSpacing >
363+
height
358364
? coordinate.top + coordinate.height + verticalContentSpacing + 'px'
359365
: this._walkthroughService.getDocumentHeight() - height + 'px';
360366
this._arrowPosition = 'topBottom';

projects/angular-walkthrough/src/lib/walkthrough.component.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ export class WalkthroughComponent implements AfterViewInit, OnDestroy {
129129
get alignContent() {
130130
return this._alignContent;
131131
}
132-
set alignContent(value: 'left' | 'center' | 'right') {
132+
set alignContent(value: 'left' | 'center' | 'content' | 'right') {
133133
if (this._alignContent !== value) {
134134
this._alignContent = value;
135135
this._updateElementPositions(this._getInstance());
@@ -301,7 +301,7 @@ export class WalkthroughComponent implements AfterViewInit, OnDestroy {
301301
private _arrowColor: string;
302302
private _marginZone: string;
303303
private _marginZonePx = new WalkthroughMargin();
304-
private _alignContent: 'left' | 'center' | 'right' = 'left';
304+
private _alignContent: 'left' | 'center' | 'content' | 'right' = 'left';
305305
private _verticalAlignContent: 'above' | 'top' | 'center' | 'bottom' | 'below' = 'top';
306306
private _contentSpacing = 0;
307307
private _verticalContentSpacing = 50;

src/app/app.component.html

+4-4
Original file line numberDiff line numberDiff line change
@@ -23,18 +23,17 @@
2323
[checked]="flowCloseAnywhere"
2424
(change)="flowCloseAnywhere = flowCloseAnywhereValue.checked"
2525
/>
26-
CloseAnywhere {{flowCloseAnywhere}}
27-
</label><br />
26+
CloseAnywhere {{ flowCloseAnywhere }} </label
27+
><br />
2828
<label>
2929
<input
3030
type="checkbox"
3131
#flowHidePreviousValue
3232
[checked]="flowHidePrevious"
3333
(change)="flowHidePrevious = flowHidePreviousValue.checked"
3434
/>
35-
HidePrevious {{flowHidePrevious}}
35+
HidePrevious {{ flowHidePrevious }}
3636
</label>
37-
3837
</div>
3938

4039
<div class="overflow">
@@ -284,6 +283,7 @@
284283
<div>
285284
<button (click)="alignContent = 'left'">left</button>
286285
<button (click)="alignContent = 'center'">center</button>
286+
<button (click)="alignContent = 'content'">content</button>
287287
<button (click)="alignContent = 'right'">right</button>
288288
</div>
289289
verticalAlignContent value :

0 commit comments

Comments
 (0)