@theroutingcompany/components 0.0.145-alpha.1 → 0.0.145

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": "@theroutingcompany/components",
3
- "version": "0.0.145-alpha.1",
3
+ "version": "0.0.145",
4
4
  "description": "The Routing Company Components",
5
5
  "main": "./dist/trc-components.umd.js",
6
6
  "module": "./dist/trc-components.es.js",
@@ -44,8 +44,8 @@
44
44
  "test": "vitest --run",
45
45
  "test:ui": "vitest --ui",
46
46
  "test:coverage": "vitest --coverage",
47
- "cypress:open": "cypress open",
48
- "cypress:run": "cypress run --component",
47
+ "cy:open": "cypress open",
48
+ "cy:run": "cypress run --component",
49
49
  "test:component": "cypress run --component",
50
50
  "test:component:open": "cypress open --component"
51
51
  },
@@ -47,6 +47,7 @@ export type DrawerProps = {
47
47
  x: number;
48
48
  y: number;
49
49
  }) => void;
50
+ minimizable?: boolean;
50
51
  };
51
52
  declare const Drawer: ForwardRefExoticComponent<DrawerProps> & {
52
53
  Close: typeof Close;