@boltic/cli 1.0.12 → 1.0.14
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/package.json
CHANGED
|
@@ -155,6 +155,7 @@ const checkbox = {
|
|
|
155
155
|
displayName: "Name",
|
|
156
156
|
displayType: "checkbox",
|
|
157
157
|
description: "Checkbox input",
|
|
158
|
+
placeholder: "Checkbox",
|
|
158
159
|
value: false,
|
|
159
160
|
readOnly: false,
|
|
160
161
|
isDisabled: false,
|
|
@@ -300,6 +301,7 @@ const accordion = {
|
|
|
300
301
|
displayName: "Name",
|
|
301
302
|
displayType: "accordion",
|
|
302
303
|
description: "Collapsible content section",
|
|
304
|
+
placeholder: "Checkbox",
|
|
303
305
|
expanded: false,
|
|
304
306
|
children: [],
|
|
305
307
|
htmlProps: {
|
|
@@ -378,6 +380,7 @@ const toggle = {
|
|
|
378
380
|
displayName: "Name",
|
|
379
381
|
displayType: "toggle",
|
|
380
382
|
description: "Toggle switch",
|
|
383
|
+
placeholder: "Toggle switch",
|
|
381
384
|
value: false,
|
|
382
385
|
readOnly: false,
|
|
383
386
|
isDisabled: false,
|
|
@@ -388,6 +391,9 @@ const toggle = {
|
|
|
388
391
|
errorMsg: "Toggle selection is required",
|
|
389
392
|
},
|
|
390
393
|
},
|
|
394
|
+
htmlProps: {
|
|
395
|
+
allowDynamic: false,
|
|
396
|
+
},
|
|
391
397
|
dependencies: {
|
|
392
398
|
logic: "AND",
|
|
393
399
|
conditions: [
|
|
@@ -757,6 +763,7 @@ const switchControl = {
|
|
|
757
763
|
displayName: "Name",
|
|
758
764
|
displayType: "switch",
|
|
759
765
|
description: "Switch toggle",
|
|
766
|
+
placeholder: "Switch toggle",
|
|
760
767
|
value: false,
|
|
761
768
|
readOnly: false,
|
|
762
769
|
htmlProps: {
|
|
@@ -864,6 +871,7 @@ const keyvalue = {
|
|
|
864
871
|
displayName: "Name",
|
|
865
872
|
displayType: "keyvalue",
|
|
866
873
|
description: "Key-value pairs",
|
|
874
|
+
placeholder: "Key-value pairs",
|
|
867
875
|
value: {},
|
|
868
876
|
readOnly: false,
|
|
869
877
|
isDisabled: false,
|
|
@@ -929,6 +937,7 @@ const datetime = {
|
|
|
929
937
|
meta: {
|
|
930
938
|
displayName: "Enter Date with Start Time",
|
|
931
939
|
description: "Please enter date and start time",
|
|
940
|
+
placeholder: "Key-value pairs",
|
|
932
941
|
displayType: "datetime",
|
|
933
942
|
value: "2024-02-14",
|
|
934
943
|
validation: {
|