@onehat/ui 0.2.59 → 0.2.60

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": "@onehat/ui",
3
- "version": "0.2.59",
3
+ "version": "0.2.60",
4
4
  "description": "Base UI for OneHat apps",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
@@ -0,0 +1,4 @@
1
+ export const SORT_ASCENDING = 'ASC'; // This is what RestTrait expects
2
+ export const SORT_DESCENDING = 'DESC'; // This is what RestTrait expects
3
+ export const DROP_POSITION_BEFORE = 'before'; // This is what RestTrait expects
4
+ export const DROP_POSITION_AFTER = 'after'; // This is what RestTrait expects