@seatsio/seatsio-types 2.5.1 → 2.6.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/dist/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -593,10 +593,10 @@ export type CategoryFilter = {
|
|
|
593
593
|
*/
|
|
594
594
|
zoomOnSelect?: boolean;
|
|
595
595
|
/**
|
|
596
|
-
* Sort categories by
|
|
596
|
+
* Sort categories by property, or use `none` for the order they are defined on the chart
|
|
597
597
|
* @default price
|
|
598
598
|
*/
|
|
599
|
-
sortBy?: 'price' | '
|
|
599
|
+
sortBy?: 'none' | 'name' | 'price' | 'priceDescending';
|
|
600
600
|
};
|
|
601
601
|
export type DeprecatedConfigProperties = {
|
|
602
602
|
/**
|