@epilot/base-elements 3.2.1 → 3.2.2
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/CHANGELOG.md +1136 -0
- package/dist/Accordion/Accordion.d.ts +1 -3
- package/dist/Accordion/Accordion.js +8 -4
- package/dist/Accordion/Accordion.js.map +1 -1
- package/dist/Accordion/AccordionActions.d.ts +1 -3
- package/dist/Accordion/AccordionActions.js +8 -4
- package/dist/Accordion/AccordionActions.js.map +1 -1
- package/dist/Accordion/AccordionDetails.d.ts +1 -3
- package/dist/Accordion/AccordionDetails.js +8 -7
- package/dist/Accordion/AccordionDetails.js.map +1 -1
- package/dist/Accordion/AccordionSummary.d.ts +2 -2
- package/dist/Accordion/AccordionSummary.js +4 -4
- package/dist/Accordion/AccordionSummary.js.map +1 -1
- package/dist/Accordion/types.d.ts +8 -49
- package/dist/Autocomplete/Autocomplete.d.ts +1 -1
- package/dist/Autocomplete/index.d.ts +1 -1
- package/dist/Autocomplete/index.js +1 -3
- package/dist/Autocomplete/index.js.map +1 -1
- package/dist/Autocomplete/styles.d.ts +1 -1
- package/dist/Autocomplete/styles.js.map +1 -1
- package/dist/Autocomplete/types.d.ts +11 -23
- package/dist/AutocompleteX/AutocompleteX.d.ts +1 -2
- package/dist/AutocompleteX/AutocompleteX.js +8 -1
- package/dist/AutocompleteX/AutocompleteX.js.map +1 -1
- package/dist/AutocompleteX/index.d.ts +1 -1
- package/dist/AutocompleteX/index.js +1 -3
- package/dist/AutocompleteX/index.js.map +1 -1
- package/dist/AutocompleteX/types.d.ts +4 -1
- package/dist/Avatar/Avatar.d.ts +2 -2
- package/dist/Avatar/Avatar.js +4 -6
- package/dist/Avatar/Avatar.js.map +1 -1
- package/dist/Avatar/AvatarGroup.d.ts +2 -2
- package/dist/Avatar/AvatarGroup.js +6 -4
- package/dist/Avatar/AvatarGroup.js.map +1 -1
- package/dist/Avatar/index.d.ts +2 -2
- package/dist/Avatar/index.js +2 -5
- package/dist/Avatar/index.js.map +1 -1
- package/dist/Avatar/types.d.ts +2 -38
- package/dist/Badge/Badge.d.ts +1 -1
- package/dist/ButtonGroup/ButtonGroup.d.ts +1 -1
- package/dist/Chip/Chip.d.ts +1 -1
- package/dist/Chip/RandomColoredChip.d.ts +1 -1
- package/dist/IconButtonWithText/IconButtonWithText.d.ts +2 -3
- package/dist/IconButtonWithText/IconButtonWithText.js +4 -3
- package/dist/IconButtonWithText/IconButtonWithText.js.map +1 -1
- package/dist/IconButtonWithText/types.d.ts +5 -7
- package/dist/Stepper/MobileStepper.d.ts +1 -1
- package/dist/Stepper/Stepper.d.ts +1 -1
- package/dist/TableColumnSettings/TableColumnSettingsStyles.d.ts +1 -1
- package/dist/TableColumnSettings/TableColumnSettingsStyles.js.map +1 -1
- package/dist/Tabs/Tabs.d.ts +2 -2
- package/dist/Tabs/Tabs.js +3 -4
- package/dist/Tabs/Tabs.js.map +1 -1
- package/dist/Tabs/types.d.ts +0 -1
- package/dist/Tooltip/Tooltip.d.ts +2 -2
- package/dist/Tooltip/Tooltip.js +4 -4
- package/dist/Tooltip/Tooltip.js.map +1 -1
- package/dist/bundle.js +71 -64
- package/dist/bundle.js.map +1 -1
- package/dist/index.d.ts +20 -14
- package/dist/index.js +26 -14
- package/dist/index.js.map +1 -1
- package/dist/styles/styles.d.ts +1 -3
- package/dist/styles/styles.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
+
export * from './styles';
|
|
1
2
|
export * from './Accordion';
|
|
2
|
-
export * from './Skeleton';
|
|
3
3
|
export * from './AppBar';
|
|
4
4
|
export * from './Avatar';
|
|
5
5
|
export * from './Autocomplete';
|
|
@@ -9,48 +9,54 @@ export * from './Box';
|
|
|
9
9
|
export * from './Breadcrumbs';
|
|
10
10
|
export * from './Button';
|
|
11
11
|
export * from './ButtonGroup';
|
|
12
|
-
export * from './
|
|
12
|
+
export * from './Drawer';
|
|
13
13
|
export * from './Card';
|
|
14
14
|
export * from './Checkbox';
|
|
15
15
|
export * from './Chip';
|
|
16
16
|
export * from './CssBaseline';
|
|
17
17
|
export * from './Collapse';
|
|
18
|
-
export * from './Drawer360';
|
|
19
18
|
export * from './Dialog';
|
|
20
19
|
export * from './Divider';
|
|
20
|
+
export * from './Drawer360';
|
|
21
21
|
export * from './FeedbackMessage';
|
|
22
22
|
export * from './Form';
|
|
23
23
|
export * from './Grid';
|
|
24
24
|
export * from './Hidden';
|
|
25
25
|
export * from './Icon';
|
|
26
|
+
export * from './IconButtonWithText';
|
|
27
|
+
export * from './IconButton';
|
|
28
|
+
export * from './Image';
|
|
26
29
|
export * from './Link';
|
|
27
30
|
export * from './List';
|
|
28
31
|
export * from './Menu';
|
|
29
32
|
export * from './Notification';
|
|
33
|
+
export * from './Pagination';
|
|
30
34
|
export * from './Paper';
|
|
35
|
+
export * from './Pickers';
|
|
36
|
+
export * from './Popover';
|
|
31
37
|
export * from './Progress';
|
|
32
38
|
export * from './Radio';
|
|
39
|
+
export * from './Rating';
|
|
33
40
|
export * from './Select';
|
|
34
41
|
export * from './Slide';
|
|
35
42
|
export * from './Snackbar';
|
|
36
43
|
export * from './Spacing';
|
|
37
44
|
export * from './Stepper';
|
|
38
|
-
export * from './
|
|
45
|
+
export * from './Skeleton';
|
|
39
46
|
export * from './Switch';
|
|
47
|
+
export * from './Table';
|
|
48
|
+
export * from './TableColumnSettings';
|
|
40
49
|
export * from './Tabs';
|
|
41
50
|
export * from './TextField';
|
|
42
51
|
export * from './ThemeProvider';
|
|
43
52
|
export * from './ToggleButton';
|
|
44
53
|
export * from './ToggleButtonGroup';
|
|
45
|
-
export * from './Typography';
|
|
46
|
-
export * from './Rating';
|
|
47
|
-
export * from './Image';
|
|
48
|
-
export * from './Pickers';
|
|
49
|
-
export * from './Popover';
|
|
50
|
-
export * from './Drawer';
|
|
51
54
|
export * from './Tooltip';
|
|
52
|
-
export * from './
|
|
53
|
-
export * from './Pagination';
|
|
54
|
-
export * from './IconButton';
|
|
55
|
-
export * from './TableColumnSettings';
|
|
55
|
+
export * from './Typography';
|
|
56
56
|
export * from 'react-beautiful-dnd';
|
|
57
|
+
/**
|
|
58
|
+
* The classnames utility is used in base-elements
|
|
59
|
+
* and can be useful working alongside base-elements components,
|
|
60
|
+
* also exported as clsx as an alias.
|
|
61
|
+
*/
|
|
62
|
+
export { default as classNames, default as clsx } from 'classnames';
|
package/dist/index.js
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
exports.__esModule = true;
|
|
3
|
+
exports.clsx = exports.classNames = void 0;
|
|
3
4
|
var tslib_1 = require("tslib");
|
|
5
|
+
/* Utilities */
|
|
6
|
+
tslib_1.__exportStar(require("./styles"), exports);
|
|
7
|
+
/* Components */
|
|
4
8
|
tslib_1.__exportStar(require("./Accordion"), exports);
|
|
5
|
-
tslib_1.__exportStar(require("./Skeleton"), exports);
|
|
6
9
|
tslib_1.__exportStar(require("./AppBar"), exports);
|
|
7
10
|
tslib_1.__exportStar(require("./Avatar"), exports);
|
|
8
11
|
tslib_1.__exportStar(require("./Autocomplete"), exports);
|
|
@@ -12,49 +15,58 @@ tslib_1.__exportStar(require("./Box"), exports);
|
|
|
12
15
|
tslib_1.__exportStar(require("./Breadcrumbs"), exports);
|
|
13
16
|
tslib_1.__exportStar(require("./Button"), exports);
|
|
14
17
|
tslib_1.__exportStar(require("./ButtonGroup"), exports);
|
|
15
|
-
tslib_1.__exportStar(require("./
|
|
18
|
+
tslib_1.__exportStar(require("./Drawer"), exports);
|
|
16
19
|
tslib_1.__exportStar(require("./Card"), exports);
|
|
17
20
|
tslib_1.__exportStar(require("./Checkbox"), exports);
|
|
18
21
|
tslib_1.__exportStar(require("./Chip"), exports);
|
|
19
22
|
tslib_1.__exportStar(require("./CssBaseline"), exports);
|
|
20
23
|
tslib_1.__exportStar(require("./Collapse"), exports);
|
|
21
|
-
tslib_1.__exportStar(require("./Drawer360"), exports);
|
|
22
24
|
tslib_1.__exportStar(require("./Dialog"), exports);
|
|
23
25
|
tslib_1.__exportStar(require("./Divider"), exports);
|
|
26
|
+
tslib_1.__exportStar(require("./Drawer360"), exports);
|
|
24
27
|
tslib_1.__exportStar(require("./FeedbackMessage"), exports);
|
|
25
28
|
tslib_1.__exportStar(require("./Form"), exports);
|
|
26
29
|
tslib_1.__exportStar(require("./Grid"), exports);
|
|
27
30
|
tslib_1.__exportStar(require("./Hidden"), exports);
|
|
28
31
|
tslib_1.__exportStar(require("./Icon"), exports);
|
|
32
|
+
tslib_1.__exportStar(require("./IconButtonWithText"), exports);
|
|
33
|
+
tslib_1.__exportStar(require("./IconButton"), exports);
|
|
34
|
+
tslib_1.__exportStar(require("./Image"), exports);
|
|
29
35
|
tslib_1.__exportStar(require("./Link"), exports);
|
|
30
36
|
tslib_1.__exportStar(require("./List"), exports);
|
|
31
37
|
tslib_1.__exportStar(require("./Menu"), exports);
|
|
32
38
|
tslib_1.__exportStar(require("./Notification"), exports);
|
|
39
|
+
tslib_1.__exportStar(require("./Pagination"), exports);
|
|
33
40
|
tslib_1.__exportStar(require("./Paper"), exports);
|
|
41
|
+
tslib_1.__exportStar(require("./Pickers"), exports);
|
|
42
|
+
tslib_1.__exportStar(require("./Popover"), exports);
|
|
34
43
|
tslib_1.__exportStar(require("./Progress"), exports);
|
|
35
44
|
tslib_1.__exportStar(require("./Radio"), exports);
|
|
45
|
+
tslib_1.__exportStar(require("./Rating"), exports);
|
|
36
46
|
tslib_1.__exportStar(require("./Select"), exports);
|
|
37
47
|
tslib_1.__exportStar(require("./Slide"), exports);
|
|
38
48
|
tslib_1.__exportStar(require("./Snackbar"), exports);
|
|
39
49
|
tslib_1.__exportStar(require("./Spacing"), exports);
|
|
40
50
|
tslib_1.__exportStar(require("./Stepper"), exports);
|
|
41
|
-
tslib_1.__exportStar(require("./
|
|
51
|
+
tslib_1.__exportStar(require("./Skeleton"), exports);
|
|
42
52
|
tslib_1.__exportStar(require("./Switch"), exports);
|
|
53
|
+
tslib_1.__exportStar(require("./Table"), exports);
|
|
54
|
+
tslib_1.__exportStar(require("./TableColumnSettings"), exports);
|
|
43
55
|
tslib_1.__exportStar(require("./Tabs"), exports);
|
|
44
56
|
tslib_1.__exportStar(require("./TextField"), exports);
|
|
45
57
|
tslib_1.__exportStar(require("./ThemeProvider"), exports);
|
|
46
58
|
tslib_1.__exportStar(require("./ToggleButton"), exports);
|
|
47
59
|
tslib_1.__exportStar(require("./ToggleButtonGroup"), exports);
|
|
48
|
-
tslib_1.__exportStar(require("./Typography"), exports);
|
|
49
|
-
tslib_1.__exportStar(require("./Rating"), exports);
|
|
50
|
-
tslib_1.__exportStar(require("./Image"), exports);
|
|
51
|
-
tslib_1.__exportStar(require("./Pickers"), exports);
|
|
52
|
-
tslib_1.__exportStar(require("./Popover"), exports);
|
|
53
|
-
tslib_1.__exportStar(require("./Drawer"), exports);
|
|
54
60
|
tslib_1.__exportStar(require("./Tooltip"), exports);
|
|
55
|
-
tslib_1.__exportStar(require("./
|
|
56
|
-
|
|
57
|
-
tslib_1.__exportStar(require("./IconButton"), exports);
|
|
58
|
-
tslib_1.__exportStar(require("./TableColumnSettings"), exports);
|
|
61
|
+
tslib_1.__exportStar(require("./Typography"), exports);
|
|
62
|
+
/* Utilities */
|
|
59
63
|
tslib_1.__exportStar(require("react-beautiful-dnd"), exports);
|
|
64
|
+
/**
|
|
65
|
+
* The classnames utility is used in base-elements
|
|
66
|
+
* and can be useful working alongside base-elements components,
|
|
67
|
+
* also exported as clsx as an alias.
|
|
68
|
+
*/
|
|
69
|
+
var classnames_1 = require("classnames");
|
|
70
|
+
tslib_1.__createBinding(exports, classnames_1, "default", "classNames");
|
|
71
|
+
tslib_1.__createBinding(exports, classnames_1, "default", "clsx");
|
|
60
72
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;AAAA,eAAe;AACf,mDAAwB;AACxB,gBAAgB;AAChB,sDAA2B;AAC3B,mDAAwB;AACxB,mDAAwB;AACxB,yDAA8B;AAC9B,0DAA+B;AAC/B,kDAAuB;AACvB,gDAAqB;AACrB,wDAA6B;AAC7B,mDAAwB;AACxB,wDAA6B;AAC7B,mDAAwB;AACxB,iDAAsB;AACtB,qDAA0B;AAC1B,iDAAsB;AACtB,wDAA6B;AAC7B,qDAA0B;AAC1B,mDAAwB;AACxB,oDAAyB;AACzB,sDAA2B;AAC3B,4DAAiC;AACjC,iDAAsB;AACtB,iDAAsB;AACtB,mDAAwB;AACxB,iDAAsB;AACtB,+DAAoC;AACpC,uDAA4B;AAC5B,kDAAuB;AACvB,iDAAsB;AACtB,iDAAsB;AACtB,iDAAsB;AACtB,yDAA8B;AAC9B,uDAA4B;AAC5B,kDAAuB;AACvB,oDAAyB;AACzB,oDAAyB;AACzB,qDAA0B;AAC1B,kDAAuB;AACvB,mDAAwB;AACxB,mDAAwB;AACxB,kDAAuB;AACvB,qDAA0B;AAC1B,oDAAyB;AACzB,oDAAyB;AACzB,qDAA0B;AAC1B,mDAAwB;AACxB,kDAAuB;AACvB,gEAAqC;AACrC,iDAAsB;AACtB,sDAA2B;AAC3B,0DAA+B;AAC/B,yDAA8B;AAC9B,8DAAmC;AACnC,oDAAyB;AACzB,uDAA4B;AAC5B,eAAe;AACf,8DAAmC;AACnC;;;;GAIG;AACH,yCAAmE;AAA1D,wEAAqB;AAAE,kEAAe"}
|
package/dist/styles/styles.d.ts
CHANGED
|
@@ -1,3 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export { createStyles, makeStyles, useTheme, withStyles, getContrastRatio, rgbToHex, hexToRgb } from '@material-ui/core';
|
|
3
|
-
export declare type Theme = MuiTheme;
|
|
1
|
+
export { createStyles, makeStyles, useTheme, withStyles, getContrastRatio, rgbToHex, hexToRgb, Theme } from '@material-ui/core';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"styles.js","sourceRoot":"","sources":["../../src/styles/styles.ts"],"names":[],"mappings":";;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"styles.js","sourceRoot":"","sources":["../../src/styles/styles.ts"],"names":[],"mappings":";;;;;;;;;;AAAA,0CAS0B;AARxB,iDAAY;AACZ,+CAAU;AACV,6CAAQ;AACR,+CAAU;AACV,qDAAgB;AAChB,6CAAQ;AACR,6CAAQ"}
|