@duffel/components 3.3.1 → 3.4.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@duffel/components",
3
- "version": "3.3.1",
3
+ "version": "3.4.0",
4
4
  "description": "Component library to build your travel product with Duffel.",
5
5
  "keywords": [
6
6
  "Duffel",
@@ -41,13 +41,8 @@
41
41
  "prettier": "prettier --write --loglevel=warn .",
42
42
  "prettier-check": "prettier --check .",
43
43
  "storybook": "storybook dev -p 6006",
44
- "test": "LANG='en_US' TZ=UTC yarn jest"
45
- },
46
- "lint-staged": {
47
- "*.{ts,tsx,mjs,js}": [
48
- "eslint --fix",
49
- "prettier --write"
50
- ]
44
+ "test": "LANG='en_US' TZ=UTC yarn jest",
45
+ "e2e": "bash e2e/start.sh"
51
46
  },
52
47
  "resolutions": {
53
48
  "@babel/traverse": "7.23.2",
@@ -80,7 +75,7 @@
80
75
  "@storybook/react-webpack5": "7.0.2",
81
76
  "@storybook/testing-library": "0.1.0",
82
77
  "@testing-library/react": "14.0.0",
83
- "@types/jest": "29.5.10",
78
+ "@types/jest": "29.5.11",
84
79
  "@types/lodash": "4.14.202",
85
80
  "@types/node": "18.18.8",
86
81
  "@types/prompts": "2.4.9",
@@ -95,7 +90,7 @@
95
90
  "esbuild-copy-static-files": "0.1.0",
96
91
  "eslint": "8.52.0",
97
92
  "eslint-config-prettier": "9.0.0",
98
- "eslint-plugin-import": "2.29.0",
93
+ "eslint-plugin-import": "2.29.1",
99
94
  "eslint-plugin-jsx-a11y": "6.7.1",
100
95
  "eslint-plugin-react": "7.33.2",
101
96
  "eslint-plugin-react-hooks": "4.6.0",
@@ -103,11 +98,11 @@
103
98
  "http-server": "14.1.1",
104
99
  "jest": "29.7.0",
105
100
  "jest-environment-jsdom": "29.7.0",
106
- "lint-staged": "13.2.0",
107
101
  "prettier": "2.8.7",
108
102
  "prettier-plugin-organize-imports": "3.2.2",
109
103
  "prompts": "2.4.2",
110
104
  "prop-types": "15.8.1",
105
+ "puppeteer": "21.6.1",
111
106
  "storybook": "7.0.2",
112
107
  "ts-node": "10.9.1",
113
108
  "tsconfig-paths-webpack-plugin": "4.0.1",
@@ -0,0 +1,5 @@
1
+ import React from "react";
2
+ declare const _default: import("@storybook/types").ComponentAnnotations<import("@storybook/react/dist/types-0a347bb9").R, import("@storybook/types").Args>;
3
+ export default _default;
4
+ export declare const Default: React.FC;
5
+ export declare const WithStyles: React.FC;