@adobe-commerce/elsie 1.5.0-alpha007 → 1.5.0-alpha008

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe-commerce/elsie",
3
- "version": "1.5.0-alpha007",
3
+ "version": "1.5.0-alpha008",
4
4
  "license": "SEE LICENSE IN LICENSE.md",
5
5
  "description": "Domain Package SDK",
6
6
  "engines": {
@@ -151,7 +151,7 @@ export const Table: Story = {
151
151
  { key: 'name', label: 'Name' },
152
152
  { key: 'email', label: 'Email' },
153
153
  { key: 'age', label: 'Age' },
154
- { key: 'actions', label: '' },
154
+ { key: 'actions', label: 'Actions' },
155
155
  ],
156
156
  rowData: [
157
157
  { name: 'John', email: 'john@example.com', age: 20, actions: <button>Edit</button> },
@@ -188,7 +188,7 @@ export const AllSortable: Story = {
188
188
  { key: 'name', label: 'Name', sortBy: true },
189
189
  { key: 'email', label: 'Email', sortBy: true },
190
190
  { key: 'age', label: 'Age', sortBy: true },
191
- { key: 'actions', label: '' },
191
+ { key: 'actions', label: 'Actions' },
192
192
  ],
193
193
  rowData: [
194
194
  { name: 'John', email: 'john@example.com', age: 20, actions: <button>Edit</button> },