@pacaf/wizard-ux 3.2.1 → 3.3.0
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/dist/index.html
CHANGED
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
}
|
|
29
29
|
@keyframes spin { to { transform: rotate(360deg); } }
|
|
30
30
|
</style>
|
|
31
|
-
<script type="module" crossorigin src="/assets/index-
|
|
31
|
+
<script type="module" crossorigin src="/assets/index-CJnhmiwH.js"></script>
|
|
32
32
|
</head>
|
|
33
33
|
<body>
|
|
34
34
|
<div id="root"><div id="boot"><div class="ring"></div></div></div>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pacaf/wizard-ux",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.3.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Browser-based setup wizard for Power Apps Code Apps (parallel to @pacaf/wizard CLI).",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"react-dom": "^19.0.0",
|
|
39
39
|
"react-resizable-panels": "^2.1.7",
|
|
40
40
|
"react-router-dom": "^7.1.0",
|
|
41
|
-
"@pacaf/wizard": "3.3.
|
|
41
|
+
"@pacaf/wizard": "3.3.2"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@types/react": "^19.0.0",
|
|
@@ -209,6 +209,7 @@ export default {
|
|
|
209
209
|
label: 'Continue if the project directory is not empty',
|
|
210
210
|
help: 'Existing files may be overwritten. Leave this on when scaffolding into this template-derived repo.',
|
|
211
211
|
defaultValue: true,
|
|
212
|
+
advanced: true,
|
|
212
213
|
},
|
|
213
214
|
{
|
|
214
215
|
id: 'GIT_REMOTE',
|
|
@@ -223,6 +224,7 @@ export default {
|
|
|
223
224
|
'Use it when you already created an empty repository for the new app and want the wizard to set it as git origin.',
|
|
224
225
|
'Leave it blank if you have not created a repo yet or do not want the wizard to touch git remotes.',
|
|
225
226
|
].join('\n'),
|
|
227
|
+
advanced: true,
|
|
226
228
|
},
|
|
227
229
|
{
|
|
228
230
|
id: 'PUSH_INITIAL_COMMIT',
|
|
@@ -231,6 +233,7 @@ export default {
|
|
|
231
233
|
help: 'Optional. Turn this on only if the remote URL above points to an empty repo you can push to. Otherwise leave it off and push manually later.',
|
|
232
234
|
defaultValue: false,
|
|
233
235
|
hideIf: { id: 'GIT_REMOTE', equals: '' },
|
|
236
|
+
advanced: true,
|
|
234
237
|
},
|
|
235
238
|
];
|
|
236
239
|
},
|