Skip to content

Commit

Permalink
Minor UI improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
Shabaz Basha Kowthalam committed Nov 5, 2024
1 parent 68a60ab commit bda2976
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions src/main/zip/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://www.urbancode.com/PluginXMLSchema_v1">
<header>
<identifier id="com.ibm.ucd.sample.automation.plugin" name="Demo plugin" version="1"/>
<description>This is a demo plugin</description>
<tag>Demo/Sample Plugin</tag>
<identifier id="com.ibm.ucd.sample.automation.plugin" name="UCD Sample Automation Plugin" version="1"/>
<description>This is a sample automation plugin for UCD</description>
<tag>Utilities/Sample Plugin</tag>
</header>
<step-type name="Sample Step foo">
<description>This is a sample step foo</description>
<step-type name="Step One">
<description>First step in sample plugin</description>
<properties>
<property name="userName" required="true">
<property-ui description="Example of a 'textBox' input"
<property-ui description="Example of a 'textBox' type input"
label="User Name"
type="textBox"/>
</property>
<property name="age" required="true">
<property-ui description="Example of a 'secureBox' input"
<property-ui description="Example of a 'secureBox' type input"
label="Age of user"
type="secureBox"/>
</property>
<property name="bio" required="false">
<property-ui description="Example of a 'textAreaBox' input"
<property-ui description="Example of a 'textAreaBox' type input"
label="User Bio"
type="textAreaBox"/>
</property>
Expand All @@ -42,11 +42,11 @@
<arg file="${PLUGIN_OUTPUT_PROPS}"/>
</command>
</step-type>
<step-type name="Sample Step bar">
<description>This is a sample step bar</description>
<step-type name="Step Two">
<description>Second step in sample plugin</description>
<properties>
<property name="medal" required="true">
<property-ui description="Example of a 'selectBox' input"
<property-ui description="Example of a 'selectBox' type input"
default-value="NONE"
label="Medal"
type="selectBox"/>
Expand All @@ -56,7 +56,7 @@
<value label="None">NONE</value>
</property>
<property name="agreeTermsAndConditions" required="true">
<property-ui description="Example of a 'checkBox' input"
<property-ui description="Example of a 'checkBox' type input"
default-value="false"
label="Accept terms and conditions"
type="checkBox"/>
Expand Down

0 comments on commit bda2976

Please sign in to comment.