@skyux/progress-indicator 6.0.0-beta.0 → 6.0.0-beta.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/documentation.json +1 -1
- package/package.json +22 -19
package/documentation.json
CHANGED
|
@@ -3142,7 +3142,7 @@
|
|
|
3142
3142
|
{
|
|
3143
3143
|
"fileName": "wizard-demo-modal.component.html",
|
|
3144
3144
|
"filePath": "/projects/progress-indicator/documentation/code-examples/wizard/basic/wizard-demo-modal.component.html",
|
|
3145
|
-
"rawContents": "<sky-modal>\n <sky-modal-header>\n {{ title }}\n </sky-modal-header>\n <sky-modal-content>\n <form [formGroup]=\"myForm\">\n <sky-progress-indicator\n [displayMode]=\"displayMode\"\n (progressChanges)=\"updateIndex($event)\"\n #wizardDemo\n >\n <sky-progress-indicator-item title=\"First step\">\n <div>\n <label class=\"sky-control-label sky-control-label-required\">\n Enter text to continue\n </label>\n <input\n class=\"sky-form-control\"\n type=\"text\"\n formControlName=\"requiredValue1\"\n />\n </div>\n </sky-progress-indicator-item>\n\n <sky-progress-indicator-item title=\"Second step\">\n <div>\n <sky-checkbox formControlName=\"requiredValue2\">\n <sky-checkbox-label> Select to continue </sky-checkbox-label>\n </sky-checkbox>\n </div>\n </sky-progress-indicator-item>\n\n <sky-progress-indicator-item title=\"Third step\">\n <div>Additional content or tasks go here.</div>\n </sky-progress-indicator-item>\n </sky-progress-indicator>\n </form>\n </sky-modal-content>\n <sky-modal-footer>\n <sky-progress-indicator-nav-button\n buttonType=\"previous\"\n [progressIndicator]=\"wizardDemo\"\n >\n </sky-progress-indicator-nav-button>\n <sky-progress-indicator-nav-button\n buttonType=\"next\"\n [disabled]=\"!requirementsMet\"\n [progressIndicator]=\"wizardDemo\"\n >\n </sky-progress-indicator-nav-button>\n <sky-progress-indicator-nav-button\n buttonType=\"finish\"\n buttonText=\"
|
|
3145
|
+
"rawContents": "<sky-modal>\n <sky-modal-header>\n {{ title }}\n </sky-modal-header>\n <sky-modal-content>\n <form [formGroup]=\"myForm\">\n <sky-progress-indicator\n [displayMode]=\"displayMode\"\n (progressChanges)=\"updateIndex($event)\"\n #wizardDemo\n >\n <sky-progress-indicator-item title=\"First step\">\n <div>\n <label class=\"sky-control-label sky-control-label-required\">\n Enter text to continue\n </label>\n <input\n class=\"sky-form-control\"\n type=\"text\"\n formControlName=\"requiredValue1\"\n />\n </div>\n </sky-progress-indicator-item>\n\n <sky-progress-indicator-item title=\"Second step\">\n <div>\n <sky-checkbox formControlName=\"requiredValue2\">\n <sky-checkbox-label> Select to continue </sky-checkbox-label>\n </sky-checkbox>\n </div>\n </sky-progress-indicator-item>\n\n <sky-progress-indicator-item title=\"Third step\">\n <div>Additional content or tasks go here.</div>\n </sky-progress-indicator-item>\n </sky-progress-indicator>\n </form>\n </sky-modal-content>\n <sky-modal-footer>\n <sky-progress-indicator-nav-button\n buttonType=\"previous\"\n [progressIndicator]=\"wizardDemo\"\n >\n </sky-progress-indicator-nav-button>\n <sky-progress-indicator-nav-button\n buttonType=\"next\"\n [disabled]=\"!requirementsMet\"\n [progressIndicator]=\"wizardDemo\"\n >\n </sky-progress-indicator-nav-button>\n <sky-progress-indicator-nav-button\n buttonType=\"finish\"\n buttonText=\"Finish\"\n [progressIndicator]=\"wizardDemo\"\n (actionClick)=\"onSaveClick($event)\"\n >\n </sky-progress-indicator-nav-button>\n <button\n class=\"sky-btn sky-btn-link\"\n type=\"button\"\n (click)=\"onCancelClick()\"\n >\n Cancel\n </button>\n </sky-modal-footer>\n</sky-modal>\n"
|
|
3146
3146
|
},
|
|
3147
3147
|
{
|
|
3148
3148
|
"fileName": "wizard-demo-modal.component.ts",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/progress-indicator",
|
|
3
|
-
"version": "6.0.0-beta.
|
|
3
|
+
"version": "6.0.0-beta.3",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -15,23 +15,6 @@
|
|
|
15
15
|
"url": "https://github.com/blackbaud/skyux/issues"
|
|
16
16
|
},
|
|
17
17
|
"homepage": "https://github.com/blackbaud/skyux#readme",
|
|
18
|
-
"peerDependencies": {
|
|
19
|
-
"@angular/common": "^13.2.7",
|
|
20
|
-
"@angular/core": "^13.2.7",
|
|
21
|
-
"@skyux/core": "6.0.0-beta.0",
|
|
22
|
-
"@skyux/i18n": "6.0.0-beta.0",
|
|
23
|
-
"@skyux/indicators": "6.0.0-beta.0",
|
|
24
|
-
"@skyux/theme": "6.0.0-beta.0"
|
|
25
|
-
},
|
|
26
|
-
"dependencies": {
|
|
27
|
-
"tslib": "^2.3.1"
|
|
28
|
-
},
|
|
29
|
-
"module": "fesm2015/skyux-progress-indicator.mjs",
|
|
30
|
-
"es2020": "fesm2020/skyux-progress-indicator.mjs",
|
|
31
|
-
"esm2020": "esm2020/skyux-progress-indicator.mjs",
|
|
32
|
-
"fesm2020": "fesm2020/skyux-progress-indicator.mjs",
|
|
33
|
-
"fesm2015": "fesm2015/skyux-progress-indicator.mjs",
|
|
34
|
-
"typings": "skyux-progress-indicator.d.ts",
|
|
35
18
|
"exports": {
|
|
36
19
|
"./package.json": {
|
|
37
20
|
"default": "./package.json"
|
|
@@ -43,7 +26,27 @@
|
|
|
43
26
|
"es2015": "./fesm2015/skyux-progress-indicator.mjs",
|
|
44
27
|
"node": "./fesm2015/skyux-progress-indicator.mjs",
|
|
45
28
|
"default": "./fesm2020/skyux-progress-indicator.mjs"
|
|
29
|
+
},
|
|
30
|
+
"./documentation.json": {
|
|
31
|
+
"default": "./documentation.json"
|
|
46
32
|
}
|
|
47
33
|
},
|
|
34
|
+
"peerDependencies": {
|
|
35
|
+
"@angular/common": "^13.2.7",
|
|
36
|
+
"@angular/core": "^13.2.7",
|
|
37
|
+
"@skyux/core": "6.0.0-beta.3",
|
|
38
|
+
"@skyux/i18n": "6.0.0-beta.3",
|
|
39
|
+
"@skyux/indicators": "6.0.0-beta.3",
|
|
40
|
+
"@skyux/theme": "6.0.0-beta.3"
|
|
41
|
+
},
|
|
42
|
+
"dependencies": {
|
|
43
|
+
"tslib": "^2.3.1"
|
|
44
|
+
},
|
|
45
|
+
"module": "fesm2015/skyux-progress-indicator.mjs",
|
|
46
|
+
"es2020": "fesm2020/skyux-progress-indicator.mjs",
|
|
47
|
+
"esm2020": "esm2020/skyux-progress-indicator.mjs",
|
|
48
|
+
"fesm2020": "fesm2020/skyux-progress-indicator.mjs",
|
|
49
|
+
"fesm2015": "fesm2015/skyux-progress-indicator.mjs",
|
|
50
|
+
"typings": "skyux-progress-indicator.d.ts",
|
|
48
51
|
"sideEffects": false
|
|
49
|
-
}
|
|
52
|
+
}
|