{"id":15098179,"url":"https://github.com/tayeb-ali/io-stepper","last_synced_at":"2025-08-02T09:32:23.681Z","repository":{"id":57275614,"uuid":"304968837","full_name":"Tayeb-Ali/io-stepper","owner":"Tayeb-Ali","description":"Steppers components for Ionic 5,Build beautiful ui","archived":false,"fork":false,"pushed_at":"2023-01-01T14:46:09.000Z","size":133,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2024-11-29T00:17:45.871Z","etag":null,"topics":["angular","ionic","ionic-framework","scss","stepper","typescript"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Tayeb-Ali.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-10-17T21:03:41.000Z","updated_at":"2023-12-09T12:29:44.000Z","dependencies_parsed_at":"2023-01-31T23:05:16.687Z","dependency_job_id":null,"html_url":"https://github.com/Tayeb-Ali/io-stepper","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tayeb-Ali%2Fio-stepper","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tayeb-Ali%2Fio-stepper/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tayeb-Ali%2Fio-stepper/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tayeb-Ali%2Fio-stepper/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Tayeb-Ali","download_url":"https://codeload.github.com/Tayeb-Ali/io-stepper/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":228461256,"owners_count":17923761,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["angular","ionic","ionic-framework","scss","stepper","typescript"],"created_at":"2024-09-25T16:44:08.328Z","updated_at":"2024-12-06T12:07:34.214Z","avatar_url":"https://github.com/Tayeb-Ali.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n   \u003cimg width=\"800\" src=\"https://github.com/Tayeb-Ali/io-stepper/blob/main/screenshot.png?raw=true\"\u003e\n\u003c/p\u003e\n\n# ionic-stepper\n\nSteppers components for Ionic 5^.\n\n## Getting Started\n - is just re-build ionic Stepper , upgrade all pk , re-code from Angulare2 to 10.\n - Help me to upgrade it :) .\n### Prerequisites\n\n- `ionic-angular: ^5.x`\n\n### Installing\n```sh\nnpm i io-stepper --save \n```\n\n### Usage\n\nimport in `your-root.module.ts`\n\n```ts\nimport { BrowserModule } from '@angular/platform-browser';\nimport { BrowserAnimationsModule } from '@angular/platform-browser/animations';\nimport { ErrorHandler, NgModule } from '@angular/core';\nimport { IonicApp, IonicErrorHandler, IonicModule } from 'ionic-angular';\n\n...\n\nimport { IonicStepperModule } from 'ionic-stepper';\n\n@NgModule({\n  ...\n  imports: [\n    BrowserModule,\n    BrowserAnimationsModule,\n    IonicStepperModule,\n    IonicModule.forRoot(MyApp)\n  ],\n  ...\n})\nexport class AppModule {}\n```\n\n`your-component.ts`\n\n```ts\nimport { Component } from '@angular/core';\nimport { NavController } from 'ionic-angular';\n\n@Component({\n  selector: 'page-home',\n  template: `\n   \u003cion-stepper #stepper (selectIndexChange)=\"selectChange($event)\"\u003e\n      \u003cion-step label=\"Step1\"\n                description=\"Step1 description\"\u003e\n        \u003ch2\u003eStep1 Content\u003c/h2\u003e\n        \u003cp\u003eStep1 Content\u003c/p\u003e\n        \u003cbutton ion-button small ionicStepperNext\u003eNext\u003c/button\u003e\n      \u003c/ion-step\u003e\n      \u003cion-step label=\"Step2 - Step2 - Step2\"\n                description=\"Step1 description\"\u003e\n        \u003ch2\u003eStep2 Content\u003c/h2\u003e\n        \u003cp\u003eStep2 Content\u003c/p\u003e\n        \u003cbutton ion-button color=\"light\" small ionicStepperPrevious\u003ePrevious\u003c/button\u003e\n      \u003c/ion-step\u003e\n    \u003c/ion-stepper\u003e\n  `\n})\nexport class HomePage {\n\n  constructor(public navCtrl: NavController) { }\n\n  selectChange(e) {\n    console.log(e);\n  }\n}\n\n```\n\n## API\n\n### `ion-stepper`\n\n#### property\n\n| Name                | Type                       | Default      | Description        |\n|---------------------|----------------------------|--------------|--------------------|\n| [mode]              | `'horizontal', 'vertical'` | `'vertical'` | orientation        |\n| (selectIndexChange) | `EventEmitter\u003cnumber\u003e`     |              | index change event |\n\n#### method\n\n| Name                            | Description       |\n|---------------------------------|-------------------|\n| nextStep(): void                | next step         |\n| previousStep(): void            | previous step     |\n| setStep(index: number): boolean | set step by index |\n\n\n### `ion-step`\n\n#### property\n\n| Name          | Type          | Default    | Description                                                                               |\n|---------------|---------------|------------|-------------------------------------------------------------------------------------------|\n| [label]       | `string`      |            | step label                                                                                |\n| [description] | `string`      |            | step description (only vertical mode is visible)                                          |\n| [icon]        | `icon`        | `'number'` | step icon, default display the index ([icons](https://ionicframework.com/docs/ionicons/)) |\n| [status]      | `'error', ''` | `''`       | step status                                                                               |\n| [errorIcon]   | `string`      | `'close'`  | error status icon                                                                         |\n\n### `[ionicStepperNext]`\n\nmoves to the next step in the stepper\n\n`\u003cbutton ion-button ionicStepperNext\u003eNext\u003c/button\u003e`\n\n### `[ionicStepperPrevious]`\n\nmoves to the previous step in the stepper\n\n`\u003cbutton ion-button ionicStepperPrevious\u003ePrevious\u003c/button\u003e`\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details\n\n# ms:\n- يلااااااا!","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftayeb-ali%2Fio-stepper","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftayeb-ali%2Fio-stepper","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftayeb-ali%2Fio-stepper/lists"}