@progress/kendo-themes-html 11.2.1-dev.1 → 11.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/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-themes-html",
|
|
3
3
|
"description": "A collection of HTML helpers used for developing Kendo UI themes",
|
|
4
|
-
"version": "11.
|
|
4
|
+
"version": "11.3.0",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -57,5 +57,5 @@
|
|
|
57
57
|
"react": "^19.0.0",
|
|
58
58
|
"react-dom": "^19.0.0"
|
|
59
59
|
},
|
|
60
|
-
"gitHead": "
|
|
60
|
+
"gitHead": "89fa2a4b285a36ead7c7440ab9bb9764dbe7da9f"
|
|
61
61
|
}
|
|
@@ -140,10 +140,12 @@ export default () =>(
|
|
|
140
140
|
<GridStackCell cellHeader="Rating" cellContent={<DropdownList value="3" />} />
|
|
141
141
|
<GridStackCell cellHeader="Engagement" cellContent={<Textbox value="100%" />} />
|
|
142
142
|
<GridStackCell cellHeader="Budget" cellContent={<NumericTextbox value="100 000" />} />
|
|
143
|
-
<GridStackCell commandCell
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
143
|
+
<GridStackCell commandCell cellHeader="Commands" cellContent={
|
|
144
|
+
<>
|
|
145
|
+
<Button text="Save" icon="save" themeColor="primary" />
|
|
146
|
+
<Button text="Cancel" icon="cancel" themeColor="base" />
|
|
147
|
+
</>
|
|
148
|
+
} />
|
|
147
149
|
</GridStackRow>
|
|
148
150
|
</TableTd>
|
|
149
151
|
</TableRow>
|
|
@@ -142,10 +142,12 @@ export default () =>(
|
|
|
142
142
|
cellHeader="Country"
|
|
143
143
|
cellContent={<DropdownList value="Germany" />}
|
|
144
144
|
/>
|
|
145
|
-
<GridStackCell commandCell
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
145
|
+
<GridStackCell commandCell cellHeader="Commands" cellContent={
|
|
146
|
+
<>
|
|
147
|
+
<Button text="Save" icon="save" themeColor="primary" />
|
|
148
|
+
<Button text="Cancel" icon="cancel" themeColor="base" />
|
|
149
|
+
</>
|
|
150
|
+
} />
|
|
149
151
|
</GridStackRow>
|
|
150
152
|
</TableTd>
|
|
151
153
|
</TableRow>
|