@everchron/ec-shards 5.0.8 → 5.0.9

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": "@everchron/ec-shards",
3
- "version": "5.0.8",
3
+ "version": "5.0.9",
4
4
  "private": false,
5
5
  "description": "Everchron Shards UI Library",
6
6
  "repository": "https://github.com/everchron/ec-shards.git",
@@ -86,7 +86,7 @@
86
86
  /** Determines the current sort order. */
87
87
  sorting: {
88
88
  type: String,
89
- validator: v => ['none', 'ascending', 'descending'].includes(v),
89
+ validator: v => ['none', 'asc', 'desc'].includes(v),
90
90
  default: 'none'
91
91
  },
92
92
  /** Overwrites the default padding. Should only be used when the cell contains e.g. a button which has it's own padding and thus needs to be aligned with the padding of other cells. Only pass padding shorthand values, for example: `4px 0 4px 8px`.*/