-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15103 from primefaces/stepper
Stepper
- Loading branch information
Showing
70 changed files
with
21,865 additions
and
22,996 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"$schema": "ng-packagr/ng-package.schema.json", | ||
"lib": { | ||
"entryFile": "public_api.ts" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
export * from './stepper'; | ||
export * from './stepper.interface'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
@layer primeng { | ||
.p-stepper-vertical .p-stepper-panel > .p-stepper-toggleable-content { | ||
overflow: hidden; | ||
} | ||
|
||
.p-stepper-vertical .p-stepper-panel-active > .p-stepper-toggleable-content:not(.ng-animating) { | ||
overflow: inherit; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import { TemplateRef } from '@angular/core'; | ||
import { Stepper } from './stepper'; | ||
|
||
/** | ||
* Defines valid templates in Stepper. | ||
* @group Templates | ||
*/ | ||
export interface StepperTemplates { | ||
/** | ||
* Custom start template. | ||
*/ | ||
start(): TemplateRef<any>; | ||
/** | ||
* Custom end template. | ||
*/ | ||
end(): TemplateRef<any>; | ||
} | ||
/** | ||
* Custom active step change event. | ||
* @see {@link Stepper.onActiveStepChange} | ||
* @group Events | ||
*/ | ||
export interface ActiveStepChangeEvent { | ||
/** | ||
* Emitted when the value changes. | ||
*/ | ||
value: number | undefined | null; | ||
} |
Oops, something went wrong.