{"id":20164723,"url":"https://github.com/maritzstl/mtz-wizard","last_synced_at":"2026-03-15T01:12:20.592Z","repository":{"id":53188116,"uuid":"96456504","full_name":"MaritzSTL/mtz-wizard","owner":"MaritzSTL","description":"All of the elements required to implement a stepper controlled series of forms that support lazy-loading steps upon activation as well as validation and bulk submission tasks.","archived":false,"fork":false,"pushed_at":"2017-11-01T19:05:00.000Z","size":53,"stargazers_count":9,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-10T00:51:39.654Z","etag":null,"topics":["polymer","stepper","webcomponents","wizard"],"latest_commit_sha":null,"homepage":"https://www.webcomponents.org/element/MaritzSTL/mtz-wizard","language":"HTML","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/MaritzSTL.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":"2017-07-06T17:41:41.000Z","updated_at":"2023-12-19T17:40:38.000Z","dependencies_parsed_at":"2022-09-11T09:40:54.680Z","dependency_job_id":null,"html_url":"https://github.com/MaritzSTL/mtz-wizard","commit_stats":null,"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MaritzSTL%2Fmtz-wizard","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MaritzSTL%2Fmtz-wizard/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MaritzSTL%2Fmtz-wizard/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MaritzSTL%2Fmtz-wizard/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MaritzSTL","download_url":"https://codeload.github.com/MaritzSTL/mtz-wizard/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248137997,"owners_count":21053775,"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":["polymer","stepper","webcomponents","wizard"],"created_at":"2024-11-14T00:35:32.773Z","updated_at":"2026-03-15T01:12:20.505Z","avatar_url":"https://github.com/MaritzSTL.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Build Status](https://img.shields.io/travis/MaritzSTL/mtz-wizard/master.svg?style=flat-square)](https://travis-ci.org/MaritzSTL/mtz-wizard)\n[![Published on webcomponents.org](https://img.shields.io/badge/webcomponents.org-published-blue.svg?style=flat-square)](https://www.webcomponents.org/element/MaritzSTL/mtz-wizard)\n\n# \\\u003cmtz-wizard\\\u003e\nGenerates a wizard flow from steps provided. Allows for validation across all steps.\n\n\u003c!--\n```\n\u003ccustom-element-demo\u003e\n  \u003ctemplate\u003e\n    \u003clink rel=\"import\" href=\"../iron-form/iron-form.html\"\u003e\n    \u003clink rel=\"import\" href=\"mtz-wizard.html\"\u003e\n    \u003clink rel=\"import\" href=\"mtz-wizard-step.html\"\u003e\n    \u003clink rel=\"import\" href=\"mtz-wizard-stepper.html\"\u003e\n    \n    \u003ccustom-style\u003e\n      \u003cstyle is=\"custom-style\" include=\"demo-pages-shared-styles\"\u003e\n        mtz-wizard-stepper {\n          font-family: 'Roboto', sans-serif;\n        }\n      \u003c/style\u003e\n    \u003c/custom-style\u003e\n\n    \u003cnext-code-block\u003e\u003c/next-code-block\u003e\n  \u003c/template\u003e\n\u003c/custom-element-demo\u003e\n```\n--\u003e\n```html\n\u003cmtz-wizard-stepper steps=\"[[steps]]\" selected=\"{{selected}}\"\u003e\u003c/mtz-wizard-stepper\u003e\n\u003cmtz-wizard id=\"wizard\" steps=\"{{steps}}\" selected=\"{{selected}}\"\u003e\n  \u003cmtz-wizard-step name=\"step-1\" label=\"Select campaign settings\"\u003e\n    Step 1 - Prebuilt step\n  \u003c/mtz-wizard-step\u003e\n  \u003cdiv wizard-step name=\"step-2\" label=\"Create ad\" invalid\u003e\n    Step 2 - Generic div using attribute w/ invalid styling applied\n  \u003c/div\u003e\n  \u003cmtz-wizard-step name=\"step-3\" label=\"Preview ad\" optional\u003e\n    \u003ciron-form wizard-form\u003e\n      \u003cform\u003e\n        \u003clabel\u003e\n          Age:\n          \u003cinput required type=\"number\" name=\"age\" /\u003e\n        \u003c/label\u003e\n      \u003c/form\u003e\n    \u003c/iron-form\u003e\n  \u003c/mtz-wizard-step\u003e\n\u003c/mtz-wizard\u003e\n```\n\n## Install the Polymer-CLI\n\nFirst, make sure you have the [Polymer CLI](https://www.npmjs.com/package/polymer-cli) installed. Then run `polymer install --variants` to install all dependencies for both 1.x and 2.x (mainline)\n\n## Viewing Your Element\n\n```\n$ polymer serve\n```\n\n## Running Tests\n\n```\n$ polymer test\n```\n\nYour application is already set up to be tested via [web-component-tester](https://github.com/Polymer/web-component-tester). Run `polymer test` to run your application's test suite locally.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaritzstl%2Fmtz-wizard","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmaritzstl%2Fmtz-wizard","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaritzstl%2Fmtz-wizard/lists"}