You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -64,7 +64,7 @@ To use this wizard component in an angular project simply add a `aw-wizard` comp
64
64
65
65
### \<aw-wizard\>
66
66
The `<aw-wizard>` environment is the environment, in which you define the steps belonging to your wizard.
67
-
In addition to the contained wizard steps, `ng2-archwizard` enables you to define the location and the layout of the navigation bar inside your wizard.
67
+
In addition to the contained wizard steps, `angular-archwizard` enables you to define the location and the layout of the navigation bar inside your wizard.
68
68
To set the location, the layout of the navigation bar and many other settings, you can pass the following parameters to the `aw-wizard` component:
69
69
70
70
#### \[navBarLocation\]
@@ -89,7 +89,7 @@ In some cases, like with languages that are written from right to left, it may b
89
89
To layout the steps from right to left you can pass `right-to-left` to the `navBarDirection` input of the wizard component.
90
90
91
91
#### \[navigationMode\]
92
-
`ng2-archwizard` supports three different navigation modes:
92
+
`angular-archwizard` supports three different navigation modes:
93
93
-**strict** navigation mode:
94
94
The first navigation mode is strict navigation.
95
95
This mode describes the status quo, i.e. the current navigation behavior of the wizard.
@@ -135,7 +135,7 @@ Possible `<aw-wizard>` parameters:
135
135
|[disableNavigationBar]|`boolean`| false |
136
136
137
137
### \<aw-wizard-step\>
138
-
`ng2-archwizard` contains two ways to define a wizard step.
138
+
`angular-archwizard` contains two ways to define a wizard step.
139
139
One of these two ways is by using the `<aw-wizard-step>` component.
140
140
141
141
#### \[stepId\]
@@ -148,7 +148,7 @@ To set the title of a step, add the `stepTitle` input attribute, with the choose
148
148
149
149
#### \[navigationSymbol\]
150
150
Sometimes it's useful to add a symbol in the center of the circle in the navigation bar, which belongs to the step.
151
-
`ng2-archwizard` supports this through the `[navigationSymbol]` input attribute of the wizard step.
151
+
`angular-archwizard` supports this through the `[navigationSymbol]` input attribute of the wizard step.
152
152
153
153
Be aware, that not all layouts display the symbols.
154
154
Only the layouts `large-filled-symbols` and `large-empty-symbols` display the symbols!
@@ -291,7 +291,7 @@ When attaching the `awSelectedStep` directive to an arbitrary wizard step, it wi
291
291
which is shown directly after the wizard startup.
292
292
293
293
### \[awGoToStep\]
294
-
`ng2-archwizard` has three directives, which allow moving between steps.
294
+
`angular-archwizard` has three directives, which allow moving between steps.
295
295
These directives are the `awPreviousStep`, `asNextStep` and `awGoToStep` directives.
296
296
297
297
The `awGoToStep` directive needs to receive an input, which tells the wizard, to which step it should navigate,
@@ -509,8 +509,8 @@ Different ways are possible:
509
509
When overriding css properties already defined in the existing navigation bar layouts, it is required to use `!important`.
510
510
In addition it is required to add `encapsulation: ViewEncapsulation.None` to the component, that defines the wizard and overrides its layout.
511
511
For additional information about how to write your own navigation bar please take a look at the existing navigation bar layouts, which can be found at
512
-
https://github.com/madoar/ng2-archwizard/blob/master/src/components/wizard-navigation-bar.component.horizontal.less and
0 commit comments