@epilot/base-elements 2.5.7 → 2.5.11

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 (73) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/dist/Accordion/Accordion.d.ts +1 -0
  3. package/dist/Accordion/AccordionActions.d.ts +1 -0
  4. package/dist/Accordion/AccordionDetails.d.ts +1 -0
  5. package/dist/Accordion/AccordionSummary.d.ts +1 -0
  6. package/dist/Accordion/types.d.ts +1 -1
  7. package/dist/AppBar/AppBar.d.ts +1 -0
  8. package/dist/Autocomplete/Autocomplete.d.ts +1 -0
  9. package/dist/Autocomplete/Autocomplete.js.map +1 -1
  10. package/dist/Autocomplete/types.d.ts +1 -1
  11. package/dist/Avatar/Avatar.d.ts +1 -0
  12. package/dist/Avatar/AvatarGroup.d.ts +1 -0
  13. package/dist/Badge/Badge.d.ts +1 -0
  14. package/dist/Box/Box.d.ts +1 -0
  15. package/dist/Breadcrumbs/Breadcrumbs.d.ts +1 -0
  16. package/dist/Button/Button.d.ts +1 -0
  17. package/dist/ButtonGroup/ButtonGroup.d.ts +1 -0
  18. package/dist/Card/Card.d.ts +1 -0
  19. package/dist/Checkbox/Checkbox.d.ts +1 -0
  20. package/dist/Chip/Chip.d.ts +1 -0
  21. package/dist/Collapse/Collapse.d.ts +1 -0
  22. package/dist/Dialog/Dialog.d.ts +1 -0
  23. package/dist/Dialog/types.d.ts +4 -4
  24. package/dist/Divider/Divider.d.ts +1 -0
  25. package/dist/Drawer/Drawer.d.ts +1 -0
  26. package/dist/Drawer/types.d.ts +1 -1
  27. package/dist/Form/types.d.ts +2 -6
  28. package/dist/Grid/Grid.d.ts +1 -0
  29. package/dist/Hidden/Hidden.d.ts +1 -0
  30. package/dist/Icon/Icon.d.ts +1 -0
  31. package/dist/Image/Image.d.ts +1 -0
  32. package/dist/Link/Link.d.ts +1 -0
  33. package/dist/List/List.d.ts +1 -0
  34. package/dist/Notification/Notification.d.ts +1 -0
  35. package/dist/Pagination/Pagination.d.ts +1 -0
  36. package/dist/Pickers/DatePicker.d.ts +3 -1
  37. package/dist/Pickers/DatePicker.js +2 -1
  38. package/dist/Pickers/DatePicker.js.map +1 -1
  39. package/dist/Pickers/DateTimePicker.d.ts +1 -0
  40. package/dist/Pickers/TimePicker.d.ts +1 -0
  41. package/dist/Popover/types.d.ts +2 -2
  42. package/dist/Progress/Progress.d.ts +1 -0
  43. package/dist/Progress/types.d.ts +2 -2
  44. package/dist/Radio/Radio.d.ts +1 -0
  45. package/dist/Radio/RadioGroup.d.ts +1 -0
  46. package/dist/Rating/Rating.d.ts +1 -0
  47. package/dist/Select/Select.d.ts +1 -0
  48. package/dist/Snackbar/Snackbar.d.ts +1 -0
  49. package/dist/Spacing/Spacing.d.ts +1 -0
  50. package/dist/Stepper/MobileStepper.d.ts +1 -0
  51. package/dist/Stepper/Stepper.d.ts +1 -0
  52. package/dist/Switch/Switch.d.ts +1 -0
  53. package/dist/Table/ResizeTableCell/ResizeTableCell.d.ts +1 -0
  54. package/dist/TableColumnSettings/TableColumnSettings.d.ts +1 -0
  55. package/dist/TableColumnSettings/TableColumnSettingsStyles.d.ts +1 -1
  56. package/dist/Tabs/Tabs.d.ts +1 -0
  57. package/dist/TextField/CurrencyTextField.d.ts +1 -0
  58. package/dist/TextField/InlineTextField.d.ts +1 -0
  59. package/dist/TextField/MaskedTextField.d.ts +1 -0
  60. package/dist/TextField/MaskedTextField.js +2 -2
  61. package/dist/TextField/MaskedTextField.js.map +1 -1
  62. package/dist/TextField/ValidatedTextField.d.ts +1 -0
  63. package/dist/ThemeProvider/DefaultEpilotTheme.js +1 -1
  64. package/dist/ThemeProvider/DefaultEpilotTheme.js.map +1 -1
  65. package/dist/ThemeProvider/ThemeProvider.d.ts +1 -0
  66. package/dist/ToggleButton/ToggleButton.d.ts +1 -0
  67. package/dist/ToggleButtonGroup/ToggleButtonGroup.d.ts +1 -0
  68. package/dist/Tooltip/Tooltip.d.ts +1 -0
  69. package/dist/Typography/Typography.d.ts +1 -0
  70. package/dist/bundle.js +191 -2
  71. package/dist/bundle.js.map +1 -0
  72. package/package.json +7 -8
  73. package/dist/bundle.js.LICENSE.txt +0 -64
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/base-elements",
3
- "version": "2.5.7",
3
+ "version": "2.5.11",
4
4
  "author": {
5
5
  "name": "epilot GmbH",
6
6
  "email": "info@epilot.cloud",
@@ -8,16 +8,16 @@
8
8
  },
9
9
  "scripts": {
10
10
  "start": "webpack serve --port 5500",
11
- "build": "tsc && webpack --mode=production",
11
+ "build": "tsc --declaration && webpack --mode=production",
12
12
  "test": "jest --passWithNoTests",
13
- "lint": "eslint \"./src/**/*\" \"./test/**/*\" \"./stories/**/*\" \"./.storybook/**/*\"",
13
+ "lint": "eslint --cache \"./src/**/*\" \"./test/**/*\" \"./stories/**/*\" \"./.storybook/**/*\"",
14
14
  "updtr": "yarn upgrade-interactive --latest",
15
15
  "prerelease": "yarn lint && yarn test",
16
16
  "release:ALPHA": "yarn release --prerelease alpha",
17
17
  "release": "standard-version",
18
18
  "postrelease": "git push && git push --tags",
19
19
  "storybook": "start-storybook -p 6006",
20
- "build-storybook": "build-storybook",
20
+ "build-storybook": "NODE_ENV=production build-storybook",
21
21
  "package": "yarn build-storybook",
22
22
  "prepublishOnly": "yarn build",
23
23
  "deploy": "cd iac && yarn && yarn deploy"
@@ -40,7 +40,6 @@
40
40
  "extends": "@epilot/eslint-config-react"
41
41
  },
42
42
  "devDependencies": {
43
- "@babel/core": "7.12.9",
44
43
  "@epilot/eslint-config-react": "1.2.7",
45
44
  "@epilot/icons": "^0.0.15",
46
45
  "@epilot/validators": "^0.0.5",
@@ -53,14 +52,13 @@
53
52
  "@testing-library/react": "11.2.2",
54
53
  "@testing-library/user-event": "12.6.0",
55
54
  "@types/classnames": "^2.3.1",
56
- "@types/react": "17.0.1",
55
+ "@types/react": "17.0.11",
57
56
  "@types/react-beautiful-dnd": "^13.0.0",
58
57
  "@types/react-dom": "17.0.0",
59
58
  "@types/react-input-mask": "3.0.0",
60
59
  "@types/react-text-mask": "5.4.6",
61
60
  "@types/webpack-env": "^1.16.2",
62
- "babel-jest": "26.6.3",
63
- "babel-loader": "8.2.1",
61
+ "esbuild-loader": "^2.17.0",
64
62
  "eslint": "7.14.0",
65
63
  "eslint-plugin-prettier": "3.1.4",
66
64
  "eslint-plugin-react-hooks": "4.2.0",
@@ -73,6 +71,7 @@
73
71
  "react-dom": "17.0.1",
74
72
  "react-is": "17.0.1",
75
73
  "standard-version": "9.0.0",
74
+ "storybook-addon-turbo-build": "^1.0.1",
76
75
  "storybook-dark-mode": "^1.0.8",
77
76
  "ts-jest": "^27.0.4",
78
77
  "ts-loader": "^9.2.5",
@@ -1,64 +0,0 @@
1
- /*!
2
- Copyright (c) 2018 Jed Watson.
3
- Licensed under the MIT License (MIT), see
4
- http://jedwatson.github.io/classnames
5
- */
6
-
7
- /*! *****************************************************************************
8
- Copyright (c) Microsoft Corporation.
9
-
10
- Permission to use, copy, modify, and/or distribute this software for any
11
- purpose with or without fee is hereby granted.
12
-
13
- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
14
- REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
15
- AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
16
- INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
17
- LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
18
- OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
19
- PERFORMANCE OF THIS SOFTWARE.
20
- ***************************************************************************** */
21
-
22
- /**
23
- * @license
24
- * Lodash <https://lodash.com/>
25
- * Copyright OpenJS Foundation and other contributors <https://openjsf.org/>
26
- * Released under MIT license <https://lodash.com/license>
27
- * Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
28
- * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
29
- */
30
-
31
- /**
32
- * A better abstraction over CSS.
33
- *
34
- * @copyright Oleg Isonen (Slobodskoi) / Isonen 2014-present
35
- * @website https://github.com/cssinjs/jss
36
- * @license MIT
37
- */
38
-
39
- /** @license Material-UI v4.0.0-alpha.60
40
- *
41
- * This source code is licensed under the MIT license found in the
42
- * LICENSE file in the root directory of this source tree.
43
- */
44
-
45
- /** @license Material-UI v4.11.2
46
- *
47
- * This source code is licensed under the MIT license found in the
48
- * LICENSE file in the root directory of this source tree.
49
- */
50
-
51
- /** @license Material-UI v4.12.3
52
- *
53
- * This source code is licensed under the MIT license found in the
54
- * LICENSE file in the root directory of this source tree.
55
- */
56
-
57
- /** @license React v16.13.1
58
- * react-is.production.min.js
59
- *
60
- * Copyright (c) Facebook, Inc. and its affiliates.
61
- *
62
- * This source code is licensed under the MIT license found in the
63
- * LICENSE file in the root directory of this source tree.
64
- */