@seatsio/seatsio-types 6.5.0 → 6.7.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.
Files changed (2) hide show
  1. package/dist/index.d.ts +6 -0
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -234,6 +234,11 @@ export interface ChartRendererConfigOptions extends DeprecatedConfigProperties,
234
234
  * @default true
235
235
  */
236
236
  showFullScreenButton?: boolean;
237
+ /**
238
+ * Whether to show the accessibility filter. See the {@link https://docs.seats.io/docs/renderer/config-showAccessibilityFilter documentation} for more information.
239
+ * @default true
240
+ */
241
+ showAccessibilityFilter?: boolean;
237
242
  /**
238
243
  * If true, a legend with the category names and colors is rendered at the top of the chart.
239
244
  * @default false
@@ -994,6 +999,7 @@ export type PriceType = number | string;
994
999
  export interface InteractiveObject {
995
1000
  readonly label: string;
996
1001
  readonly labels: Labels;
1002
+ readonly floor?: string;
997
1003
  }
998
1004
  export interface NonBookableTable extends InteractiveObject {
999
1005
  readonly seats: Seat[];
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@seatsio/seatsio-types",
3
3
  "description": "Type definitions for Seats.io",
4
- "version": "6.5.0",
4
+ "version": "6.7.0",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",