@progressive-development/pd-content 0.0.15 → 0.0.16
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
package/src/PdEditContent.js
CHANGED
|
@@ -99,7 +99,14 @@ function BasicEditTemplate({editData}) {
|
|
|
99
99
|
|
|
100
100
|
function NumberEditTemplate({editData}) {
|
|
101
101
|
return html`
|
|
102
|
-
<
|
|
102
|
+
<style>
|
|
103
|
+
.edit-boxes {
|
|
104
|
+
display: flex;
|
|
105
|
+
flex-flow: column;
|
|
106
|
+
gap: 10px;
|
|
107
|
+
}
|
|
108
|
+
</style>
|
|
109
|
+
<div class="edit-boxes">
|
|
103
110
|
<pd-edit-content contentTitle="Test content with params and step number"
|
|
104
111
|
.data="${editData}" stepNumber="1">
|
|
105
112
|
</pd-edit-content>
|
|
@@ -115,9 +122,11 @@ function NumberEditTemplate({editData}) {
|
|
|
115
122
|
<pd-edit-content contentTitle="Test content with params and step number"
|
|
116
123
|
.data="${editData}" stepNumber="4">
|
|
117
124
|
</pd-edit-content>
|
|
118
|
-
</
|
|
125
|
+
</div>`;
|
|
119
126
|
}
|
|
120
127
|
|
|
128
|
+
|
|
129
|
+
|
|
121
130
|
export const EditContent = BasicEditTemplate.bind({});
|
|
122
131
|
EditContent.args = {
|
|
123
132
|
editData: [
|