@epilot/base-elements 3.1.6 → 3.1.8
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/.vscode/launch.json +15 -0
- package/CHANGELOG.md +11 -0
- package/dist/AppBar/index.d.ts +1 -2
- package/dist/AppBar/index.js +11 -3
- package/dist/AppBar/index.js.map +1 -1
- package/dist/Autocomplete/Autocomplete.d.ts +3 -3
- package/dist/Autocomplete/Autocomplete.js +15 -26
- package/dist/Autocomplete/Autocomplete.js.map +1 -1
- package/dist/Badge/Badge.d.ts +2 -3
- package/dist/Badge/Badge.js +3 -6
- package/dist/Badge/Badge.js.map +1 -1
- package/dist/Box/index.d.ts +1 -2
- package/dist/Box/index.js +10 -3
- package/dist/Box/index.js.map +1 -1
- package/dist/Breadcrumbs/index.d.ts +1 -2
- package/dist/Breadcrumbs/index.js +9 -4
- package/dist/Breadcrumbs/index.js.map +1 -1
- package/dist/Button/index.d.ts +1 -2
- package/dist/Button/index.js +10 -3
- package/dist/Button/index.js.map +1 -1
- package/dist/ButtonGroup/ButtonGroup.d.ts +2 -3
- package/dist/ButtonGroup/ButtonGroup.js +3 -6
- package/dist/ButtonGroup/ButtonGroup.js.map +1 -1
- package/dist/ButtonGroup/types.d.ts +2 -37
- package/dist/Card/index.d.ts +1 -2
- package/dist/Card/index.js +15 -3
- package/dist/Card/index.js.map +1 -1
- package/dist/Chip/Chip.d.ts +3 -3
- package/dist/Chip/Chip.js +6 -6
- package/dist/Chip/Chip.js.map +1 -1
- package/dist/Chip/RandomColoredChip.d.ts +3 -3
- package/dist/Chip/RandomColoredChip.js +5 -5
- package/dist/Chip/RandomColoredChip.js.map +1 -1
- package/dist/CssBaseline/index.d.ts +2 -3
- package/dist/CssBaseline/index.js +11 -5
- package/dist/CssBaseline/index.js.map +1 -1
- package/dist/Drawer360/ActionFooter.d.ts +2 -1
- package/dist/Drawer360/ActionFooter.js +18 -9
- package/dist/Drawer360/ActionFooter.js.map +1 -1
- package/dist/Drawer360/DiscardDialog.js +1 -1
- package/dist/Drawer360/DiscardDialog.js.map +1 -1
- package/dist/Drawer360/Drawer360.d.ts +1 -1
- package/dist/Drawer360/Drawer360.js +12 -6
- package/dist/Drawer360/Drawer360.js.map +1 -1
- package/dist/Drawer360/types.d.ts +1 -0
- package/dist/EntityItem/EntityAttributes.d.ts +9 -0
- package/dist/EntityItem/EntityAttributes.js +83 -0
- package/dist/EntityItem/EntityAttributes.js.map +1 -0
- package/dist/EntityItem/EntityItem.d.ts +3 -0
- package/dist/EntityItem/EntityItem.js +134 -0
- package/dist/EntityItem/EntityItem.js.map +1 -0
- package/dist/EntityItem/EntityMenu.d.ts +3 -0
- package/dist/EntityItem/EntityMenu.js +48 -0
- package/dist/EntityItem/EntityMenu.js.map +1 -0
- package/dist/EntityItem/index.d.ts +2 -0
- package/dist/EntityItem/index.js +6 -0
- package/dist/EntityItem/index.js.map +1 -0
- package/dist/EntityItem/types.d.ts +38 -0
- package/dist/EntityItem/types.js +3 -0
- package/dist/EntityItem/types.js.map +1 -0
- package/dist/Grid/index.d.ts +2 -2
- package/dist/Grid/index.js +10 -3
- package/dist/Grid/index.js.map +1 -1
- package/dist/Skeleton/index.d.ts +1 -2
- package/dist/Skeleton/index.js +9 -3
- package/dist/Skeleton/index.js.map +1 -1
- package/dist/Stepper/MobileStepper.d.ts +2 -3
- package/dist/Stepper/MobileStepper.js +3 -5
- package/dist/Stepper/MobileStepper.js.map +1 -1
- package/dist/Stepper/Stepper.d.ts +4 -7
- package/dist/Stepper/Stepper.js +12 -23
- package/dist/Stepper/Stepper.js.map +1 -1
- package/dist/Stepper/types.d.ts +2 -6
- package/dist/ThemeProvider/ThemeProvider.d.ts +2 -2
- package/dist/ThemeProvider/ThemeProvider.js +16 -19
- package/dist/ThemeProvider/ThemeProvider.js.map +1 -1
- package/dist/ThemeProvider/index.d.ts +0 -1
- package/dist/ThemeProvider/index.js +0 -1
- package/dist/ThemeProvider/index.js.map +1 -1
- package/dist/Typography/Typography.d.ts +42 -12
- package/dist/Typography/Typography.js +32 -46
- package/dist/Typography/Typography.js.map +1 -1
- package/dist/Typography/index.d.ts +1 -2
- package/dist/bundle.js +86 -82
- package/dist/bundle.js.map +1 -1
- package/dist/context/ClassPrefixContext.d.ts +6 -8
- package/dist/context/ClassPrefixContext.js +4 -5
- package/dist/context/ClassPrefixContext.js.map +1 -1
- package/package.json +2 -2
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
// Use IntelliSense to learn about possible attributes.
|
|
3
|
+
// Hover to view descriptions of existing attributes.
|
|
4
|
+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
5
|
+
"version": "0.2.0",
|
|
6
|
+
"configurations": [
|
|
7
|
+
{
|
|
8
|
+
"type": "pwa-chrome",
|
|
9
|
+
"request": "launch",
|
|
10
|
+
"name": "Launch Chrome against localhost",
|
|
11
|
+
"url": "http://localhost:8080",
|
|
12
|
+
"webRoot": "${workspaceFolder}"
|
|
13
|
+
}
|
|
14
|
+
]
|
|
15
|
+
}
|
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [3.1.7](https://gitlab.com/e-pilot/product/frontend/base/elements/compare/v3.2.0-alpha.1...v3.1.7) (2023-06-27)
|
|
6
|
+
|
|
7
|
+
## [3.2.0-alpha.1](https://gitlab.com/e-pilot/product/frontend/base/elements/compare/v3.2.0-alpha.0...v3.2.0-alpha.1) (2023-06-27)
|
|
8
|
+
|
|
9
|
+
## [3.2.0-alpha.0](https://gitlab.com/e-pilot/product/frontend/base/elements/compare/v3.1.6...v3.2.0-alpha.0) (2023-06-27)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
* add left icon and right icon button variant ([c206819](https://gitlab.com/e-pilot/product/frontend/base/elements/commit/c2068199ffb9d9b32fc47ecc2ca8fffbbc014545))
|
|
15
|
+
|
|
5
16
|
### [3.1.6](https://gitlab.com/e-pilot/product/frontend/base/elements/compare/v3.1.4...v3.1.6) (2023-05-31)
|
|
6
17
|
|
|
7
18
|
|
package/dist/AppBar/index.d.ts
CHANGED
|
@@ -1,2 +1 @@
|
|
|
1
|
-
export
|
|
2
|
-
export * from './types';
|
|
1
|
+
export { AppBar, Toolbar, AppBarProps, ToolbarProps } from '@material-ui/core';
|
package/dist/AppBar/index.js
CHANGED
|
@@ -1,6 +1,14 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
5
|
+
}) : (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
o[k2] = m[k];
|
|
8
|
+
}));
|
|
2
9
|
exports.__esModule = true;
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
10
|
+
exports.Toolbar = exports.AppBar = void 0;
|
|
11
|
+
var core_1 = require("@material-ui/core");
|
|
12
|
+
__createBinding(exports, core_1, "AppBar");
|
|
13
|
+
__createBinding(exports, core_1, "Toolbar");
|
|
6
14
|
//# sourceMappingURL=index.js.map
|
package/dist/AppBar/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/AppBar/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/AppBar/index.ts"],"names":[],"mappings":";;;;;;;;;;AAAA,0CAA8E;AAArE,2CAAM;AAAE,4CAAO"}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
import { AutocompleteProps } from './types';
|
|
3
|
-
export declare
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { AutocompleteProps } from './types';
|
|
3
|
+
export declare const Autocomplete: React.ForwardRefExoticComponent<Pick<AutocompleteProps, "classes" | "disabled" | "onChange" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "slot" | "spellCheck" | "style" | "tabIndex" | "title" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "variant" | "innerRef" | "label" | "error" | "size" | "open" | "multiple" | "value" | "autoComplete" | "loading" | "required" | "fullWidth" | "customBackgroundColor" | "onClose" | "onOpen" | "PopperComponent" | "disablePortal" | "ChipProps" | "closeIcon" | "clearText" | "closeText" | "forcePopupIcon" | "getLimitTagsText" | "ListboxComponent" | "ListboxProps" | "loadingText" | "limitTags" | "noOptionsText" | "openText" | "PaperComponent" | "popupIcon" | "renderGroup" | "renderOption" | "renderTags" | "autoHighlight" | "autoSelect" | "blurOnSelect" | "clearOnBlur" | "clearOnEscape" | "componentName" | "debug" | "disableClearable" | "disableCloseOnSelect" | "disabledItemsFocusable" | "disableListWrap" | "filterOptions" | "filterSelectedOptions" | "freeSolo" | "getOptionDisabled" | "getOptionLabel" | "getOptionSelected" | "groupBy" | "handleHomeEndKeys" | "includeInputInList" | "inputValue" | "onInputChange" | "onHighlightChange" | "openOnFocus" | "options" | "selectOnFocus" | "disableOpenOnFocus" | "flipPopperEnabled" | "textfieldProps"> & React.RefAttributes<unknown>>;
|
|
@@ -9,41 +9,30 @@ var react_1 = tslib_1.__importStar(require("react"));
|
|
|
9
9
|
var Icon_1 = require("../Icon");
|
|
10
10
|
var TextField_1 = require("../TextField");
|
|
11
11
|
var styles_1 = require("./styles");
|
|
12
|
-
function
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
18
|
-
function Autocomplete(props) {
|
|
19
|
-
var error = props.error, label = props.label, _a = props.multiple, multiple = _a === void 0 ? true : _a, _b = props.popupIcon, popupIcon = _b === void 0 ? react_1["default"].createElement(ExpandMore_1["default"], { color: "secondary" }) : _b, noOptionsText = props.noOptionsText, options = props.options, placeholder = props.placeholder, value = props.value, onChange = props.onChange, disableOpenOnFocus = props.disableOpenOnFocus, disabled = props.disabled, fullWidth = props.fullWidth, id = props.id, required = props.required, _c = props.variant, variant = _c === void 0 ? 'filled' : _c, _d = props.flipPopperEnabled, flipPopperEnabled = _d === void 0 ? false : _d, customBackgroundColor = props.customBackgroundColor, textfieldProps = props.textfieldProps, rest = tslib_1.__rest(props, ["error", "label", "multiple", "popupIcon", "noOptionsText", "options", "placeholder", "value", "onChange", "disableOpenOnFocus", "disabled", "fullWidth", "id", "required", "variant", "flipPopperEnabled", "customBackgroundColor", "textfieldProps"]);
|
|
12
|
+
var DropdownPopper = function (_a) {
|
|
13
|
+
var modifiers = _a.modifiers, props = tslib_1.__rest(_a, ["modifiers"]);
|
|
14
|
+
return (react_1["default"].createElement(core_1.Popper, tslib_1.__assign({}, props, { modifiers: tslib_1.__assign(tslib_1.__assign({}, modifiers), { flip: { enabled: false }, preventOverflow: { enabled: false } }) })));
|
|
15
|
+
};
|
|
16
|
+
exports.Autocomplete = react_1.forwardRef(function (props, ref) {
|
|
17
|
+
var error = props.error, label = props.label, _a = props.multiple, multiple = _a === void 0 ? true : _a, _b = props.popupIcon, popupIcon = _b === void 0 ? react_1["default"].createElement(ExpandMore_1["default"], { color: "secondary" }) : _b, placeholder = props.placeholder, value = props.value, disableOpenOnFocus = props.disableOpenOnFocus, id = props.id, required = props.required, _c = props.variant, variant = _c === void 0 ? 'filled' : _c, _d = props.flipPopperEnabled, flipPopperEnabled = _d === void 0 ? false : _d, customBackgroundColor = props.customBackgroundColor, textfieldProps = props.textfieldProps, rest = tslib_1.__rest(props, ["error", "label", "multiple", "popupIcon", "placeholder", "value", "disableOpenOnFocus", "id", "required", "variant", "flipPopperEnabled", "customBackgroundColor", "textfieldProps"]);
|
|
20
18
|
var clearIconOverwrite = styles_1.useAutocompleteStyles().clearIconOverwrite;
|
|
21
19
|
var _e = react_1.useState(false), open = _e[0], setOpen = _e[1];
|
|
22
20
|
var _f = react_1.useState(''), inputValue = _f[0], setInputValue = _f[1];
|
|
23
21
|
react_1.useEffect(function () {
|
|
24
|
-
if (!disableOpenOnFocus)
|
|
22
|
+
if (!disableOpenOnFocus) {
|
|
25
23
|
setOpen(true);
|
|
24
|
+
}
|
|
26
25
|
}, [disableOpenOnFocus]);
|
|
27
|
-
var handleOnChange = function (event, newValue) {
|
|
28
|
-
onChange && onChange(event, newValue);
|
|
29
|
-
};
|
|
30
26
|
var handleOpen = function () {
|
|
31
|
-
if (inputValue.length
|
|
27
|
+
if (inputValue.length) {
|
|
32
28
|
setOpen(true);
|
|
33
29
|
}
|
|
34
30
|
};
|
|
35
|
-
var handleInputChange = function (
|
|
36
|
-
setInputValue(
|
|
37
|
-
|
|
38
|
-
setOpen(true);
|
|
39
|
-
}
|
|
40
|
-
else {
|
|
41
|
-
setOpen(false);
|
|
42
|
-
}
|
|
31
|
+
var handleInputChange = function (_, value) {
|
|
32
|
+
setInputValue(value);
|
|
33
|
+
setOpen(!!value.length);
|
|
43
34
|
};
|
|
44
|
-
return (react_1["default"].createElement(lab_1.Autocomplete, tslib_1.__assign({ ChipProps: {
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
}
|
|
48
|
-
exports.Autocomplete = Autocomplete;
|
|
35
|
+
return (react_1["default"].createElement(lab_1.Autocomplete, tslib_1.__assign({ ChipProps: { deleteIcon: react_1["default"].createElement(Icon_1.Icon, { name: "close" }) }, PopperComponent: flipPopperEnabled ? core_1.Popper : DropdownPopper, className: clearIconOverwrite, inputValue: inputValue, multiple: multiple, onClose: function () { return setOpen(false); }, onInputChange: handleInputChange, onOpen: disableOpenOnFocus ? handleOpen : undefined, open: disableOpenOnFocus ? open : undefined, popupIcon: popupIcon, ref: ref, renderInput: function (params) { return (react_1["default"].createElement(TextField_1.TextField, tslib_1.__assign({}, params, { customBackgroundColor: customBackgroundColor, error: !!error, helperText: error, label: typeof label === 'string' ? label + (required ? ' *' : '') : label, placeholder: placeholder, variant: variant }, textfieldProps))); }, value: value }, rest)));
|
|
36
|
+
});
|
|
37
|
+
exports.Autocomplete.displayName = 'Autocomplete';
|
|
49
38
|
//# sourceMappingURL=Autocomplete.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Autocomplete.js","sourceRoot":"","sources":["../../src/Autocomplete/Autocomplete.tsx"],"names":[],"mappings":";;;;AAAA,0CAAoE;AACpE,qFAAsD;AACtD,wCAAkE;AAClE,
|
|
1
|
+
{"version":3,"file":"Autocomplete.js","sourceRoot":"","sources":["../../src/Autocomplete/Autocomplete.tsx"],"names":[],"mappings":"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"}
|
package/dist/Badge/Badge.d.ts
CHANGED
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
export declare function Badge(props: BadgeProps): JSX.Element;
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const Badge: React.ForwardRefExoticComponent<Pick<Pick<import("@material-ui/core/OverridableComponent").OverrideProps<import("@material-ui/core").BadgeTypeMap<{}, "div">, "div">, "ref" | "classes" | "onChange" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "slot" | "spellCheck" | "style" | "tabIndex" | "title" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "innerRef" | "key" | "max" | "invisible" | "overlap" | "badgeContent">, "classes" | "onChange" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "slot" | "spellCheck" | "style" | "tabIndex" | "title" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "innerRef" | "key" | "max" | "invisible" | "overlap" | "badgeContent"> & React.RefAttributes<HTMLDivElement>>;
|
package/dist/Badge/Badge.js
CHANGED
|
@@ -3,10 +3,7 @@ exports.__esModule = true;
|
|
|
3
3
|
exports.Badge = void 0;
|
|
4
4
|
var tslib_1 = require("tslib");
|
|
5
5
|
var core_1 = require("@material-ui/core");
|
|
6
|
-
var react_1 = tslib_1.
|
|
7
|
-
function Badge(props)
|
|
8
|
-
|
|
9
|
-
return (react_1["default"].createElement(core_1.Badge, tslib_1.__assign({ showZero: true }, rest), children));
|
|
10
|
-
}
|
|
11
|
-
exports.Badge = Badge;
|
|
6
|
+
var react_1 = tslib_1.__importStar(require("react"));
|
|
7
|
+
exports.Badge = react_1.forwardRef(function (props, ref) { return react_1["default"].createElement(core_1.Badge, tslib_1.__assign({ ref: ref, showZero: true }, props)); });
|
|
8
|
+
exports.Badge.displayName = 'Badge';
|
|
12
9
|
//# sourceMappingURL=Badge.js.map
|
package/dist/Badge/Badge.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Badge.js","sourceRoot":"","sources":["../../src/Badge/Badge.tsx"],"names":[],"mappings":";;;;AAAA,0CAAqD;AACrD,
|
|
1
|
+
{"version":3,"file":"Badge.js","sourceRoot":"","sources":["../../src/Badge/Badge.tsx"],"names":[],"mappings":";;;;AAAA,0CAAqD;AACrD,qDAAsE;AAIzD,QAAA,KAAK,GAAG,kBAAU,CAG7B,UAAC,KAAK,EAAE,GAAG,IAAK,OAAA,iCAAC,YAAQ,qBAAC,GAAG,EAAE,GAAG,EAAE,QAAQ,UAAK,KAAK,EAAI,EAA1C,CAA0C,CAAC,CAAA;AAE7D,aAAK,CAAC,WAAW,GAAG,OAAO,CAAA"}
|
package/dist/Box/index.d.ts
CHANGED
|
@@ -1,2 +1 @@
|
|
|
1
|
-
export
|
|
2
|
-
export * from './types';
|
|
1
|
+
export { Box, BoxProps } from '@material-ui/core';
|
package/dist/Box/index.js
CHANGED
|
@@ -1,6 +1,13 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
5
|
+
}) : (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
o[k2] = m[k];
|
|
8
|
+
}));
|
|
2
9
|
exports.__esModule = true;
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
10
|
+
exports.Box = void 0;
|
|
11
|
+
var core_1 = require("@material-ui/core");
|
|
12
|
+
__createBinding(exports, core_1, "Box");
|
|
6
13
|
//# sourceMappingURL=index.js.map
|
package/dist/Box/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/Box/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/Box/index.ts"],"names":[],"mappings":";;;;;;;;;;AAAA,0CAAiD;AAAxC,wCAAG"}
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
export { Breadcrumbs } from '
|
|
2
|
-
export * from './types';
|
|
1
|
+
export { Breadcrumbs, BreadcrumbsProps } from '@material-ui/core';
|
|
@@ -1,8 +1,13 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
5
|
+
}) : (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
o[k2] = m[k];
|
|
8
|
+
}));
|
|
2
9
|
exports.__esModule = true;
|
|
3
10
|
exports.Breadcrumbs = void 0;
|
|
4
|
-
var
|
|
5
|
-
|
|
6
|
-
tslib_1.__createBinding(exports, Breadcrumbs_1, "Breadcrumbs");
|
|
7
|
-
tslib_1.__exportStar(require("./types"), exports);
|
|
11
|
+
var core_1 = require("@material-ui/core");
|
|
12
|
+
__createBinding(exports, core_1, "Breadcrumbs");
|
|
8
13
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/Breadcrumbs/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/Breadcrumbs/index.ts"],"names":[],"mappings":";;;;;;;;;;AAAA,0CAAiE;AAAxD,gDAAW"}
|
package/dist/Button/index.d.ts
CHANGED
|
@@ -1,2 +1 @@
|
|
|
1
|
-
export
|
|
2
|
-
export * from './types';
|
|
1
|
+
export { Button, ButtonProps } from '@material-ui/core';
|
package/dist/Button/index.js
CHANGED
|
@@ -1,6 +1,13 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
5
|
+
}) : (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
o[k2] = m[k];
|
|
8
|
+
}));
|
|
2
9
|
exports.__esModule = true;
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
10
|
+
exports.Button = void 0;
|
|
11
|
+
var core_1 = require("@material-ui/core");
|
|
12
|
+
__createBinding(exports, core_1, "Button");
|
|
6
13
|
//# sourceMappingURL=index.js.map
|
package/dist/Button/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/Button/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/Button/index.ts"],"names":[],"mappings":";;;;;;;;;;AAAA,0CAAuD;AAA9C,2CAAM"}
|
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
export declare function ButtonGroup(props: ButtonGroupProps): JSX.Element;
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export declare const ButtonGroup: React.ForwardRefExoticComponent<Pick<import("@material-ui/core/OverridableComponent").OverrideProps<import("@material-ui/core").ButtonGroupTypeMap<{}, "div">, "div">, "disabled" | "style" | "color" | "children" | "variant" | "orientation" | "size" | "fullWidth"> & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -3,10 +3,7 @@ exports.__esModule = true;
|
|
|
3
3
|
exports.ButtonGroup = void 0;
|
|
4
4
|
var tslib_1 = require("tslib");
|
|
5
5
|
var core_1 = require("@material-ui/core");
|
|
6
|
-
var react_1 = tslib_1.
|
|
7
|
-
function ButtonGroup(props)
|
|
8
|
-
|
|
9
|
-
return (react_1["default"].createElement(core_1.ButtonGroup, tslib_1.__assign({ disableElevation: true }, rest), children));
|
|
10
|
-
}
|
|
11
|
-
exports.ButtonGroup = ButtonGroup;
|
|
6
|
+
var react_1 = tslib_1.__importStar(require("react"));
|
|
7
|
+
exports.ButtonGroup = react_1.forwardRef(function (props, ref) { return react_1["default"].createElement(core_1.ButtonGroup, tslib_1.__assign({ disableElevation: true, ref: ref }, props)); });
|
|
8
|
+
exports.ButtonGroup.displayName = 'ButtonGroup';
|
|
12
9
|
//# sourceMappingURL=ButtonGroup.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ButtonGroup.js","sourceRoot":"","sources":["../../src/ButtonGroup/ButtonGroup.tsx"],"names":[],"mappings":";;;;AAAA,0CAAiE;AACjE,
|
|
1
|
+
{"version":3,"file":"ButtonGroup.js","sourceRoot":"","sources":["../../src/ButtonGroup/ButtonGroup.tsx"],"names":[],"mappings":";;;;AAAA,0CAAiE;AACjE,qDAAsE;AAIzD,QAAA,WAAW,GAAG,kBAAU,CAGnC,UAAC,KAAK,EAAE,GAAG,IAAK,OAAA,iCAAC,kBAAc,qBAAC,gBAAgB,QAAC,GAAG,EAAE,GAAG,IAAM,KAAK,EAAI,EAAxD,CAAwD,CAAC,CAAA;AAE3E,mBAAW,CAAC,WAAW,GAAG,aAAa,CAAA"}
|
|
@@ -1,37 +1,2 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
export interface ButtonGroupProps {
|
|
4
|
-
/**
|
|
5
|
-
* The content of the button group should be Button components.
|
|
6
|
-
*/
|
|
7
|
-
children?: React.ReactNode;
|
|
8
|
-
/**
|
|
9
|
-
* The color of the component. It supports those theme colors that make sense for this component.
|
|
10
|
-
*/
|
|
11
|
-
color?: PropTypes.Color;
|
|
12
|
-
/**
|
|
13
|
-
* If `true`, the buttons will be disabled.
|
|
14
|
-
*/
|
|
15
|
-
disabled?: boolean;
|
|
16
|
-
/**
|
|
17
|
-
* If `true`, the buttons will take up the full width of its container.
|
|
18
|
-
*/
|
|
19
|
-
fullWidth?: boolean;
|
|
20
|
-
/**
|
|
21
|
-
* The group orientation (layout flow direction).
|
|
22
|
-
*/
|
|
23
|
-
orientation?: 'vertical' | 'horizontal';
|
|
24
|
-
/**
|
|
25
|
-
* The size of the button.
|
|
26
|
-
* `small` is equivalent to the dense button styling.
|
|
27
|
-
*/
|
|
28
|
-
size?: 'small' | 'medium' | 'large';
|
|
29
|
-
/**
|
|
30
|
-
* The variant to use.
|
|
31
|
-
*/
|
|
32
|
-
variant?: 'text' | 'outlined' | 'contained';
|
|
33
|
-
/**
|
|
34
|
-
* elements style
|
|
35
|
-
*/
|
|
36
|
-
style?: CSSProperties;
|
|
37
|
-
}
|
|
1
|
+
import type { ButtonGroupProps as MuiButtonGroupProps } from '@material-ui/core';
|
|
2
|
+
export declare type ButtonGroupProps = Pick<MuiButtonGroupProps, 'children' | 'color' | 'disabled' | 'fullWidth' | 'orientation' | 'size' | 'variant' | 'style'>;
|
package/dist/Card/index.d.ts
CHANGED
|
@@ -1,2 +1 @@
|
|
|
1
|
-
export
|
|
2
|
-
export * from './types';
|
|
1
|
+
export { Card, CardProps, CardActionArea, CardActionAreaProps, CardActions, CardActionsProps, CardContent, CardContentProps, CardHeader, CardHeaderProps, CardMedia, CardMediaProps } from '@material-ui/core';
|
package/dist/Card/index.js
CHANGED
|
@@ -1,6 +1,18 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
5
|
+
}) : (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
o[k2] = m[k];
|
|
8
|
+
}));
|
|
2
9
|
exports.__esModule = true;
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
10
|
+
exports.CardMedia = exports.CardHeader = exports.CardContent = exports.CardActions = exports.CardActionArea = exports.Card = void 0;
|
|
11
|
+
var core_1 = require("@material-ui/core");
|
|
12
|
+
__createBinding(exports, core_1, "Card");
|
|
13
|
+
__createBinding(exports, core_1, "CardActionArea");
|
|
14
|
+
__createBinding(exports, core_1, "CardActions");
|
|
15
|
+
__createBinding(exports, core_1, "CardContent");
|
|
16
|
+
__createBinding(exports, core_1, "CardHeader");
|
|
17
|
+
__createBinding(exports, core_1, "CardMedia");
|
|
6
18
|
//# sourceMappingURL=index.js.map
|
package/dist/Card/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/Card/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/Card/index.ts"],"names":[],"mappings":";;;;;;;;;;AAAA,0CAa0B;AAZxB,yCAAI;AAEJ,mDAAc;AAEd,gDAAW;AAEX,gDAAW;AAEX,+CAAU;AAEV,8CAAS"}
|
package/dist/Chip/Chip.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
import { ChipProps } from './types';
|
|
3
|
-
export declare
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { ChipProps } from './types';
|
|
3
|
+
export declare const Chip: React.ForwardRefExoticComponent<Pick<ChipProps, "classes" | "disabled" | "onChange" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "slot" | "spellCheck" | "style" | "tabIndex" | "title" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "component" | "variant" | "innerRef" | "label" | "key" | "href" | "size" | "icon" | "avatar" | "clickable" | "deleteIcon" | "onDelete" | "randomColor"> & React.RefAttributes<HTMLDivElement>>;
|
package/dist/Chip/Chip.js
CHANGED
|
@@ -3,15 +3,15 @@ exports.__esModule = true;
|
|
|
3
3
|
exports.Chip = void 0;
|
|
4
4
|
var tslib_1 = require("tslib");
|
|
5
5
|
var core_1 = require("@material-ui/core");
|
|
6
|
-
var react_1 = tslib_1.
|
|
6
|
+
var react_1 = tslib_1.__importStar(require("react"));
|
|
7
7
|
var Icon_1 = require("../Icon");
|
|
8
8
|
var RandomColoredChip_1 = require("./RandomColoredChip");
|
|
9
|
-
function
|
|
9
|
+
exports.Chip = react_1.forwardRef(function (props, ref) {
|
|
10
10
|
var _a = props.deleteIcon, deleteIcon = _a === void 0 ? react_1["default"].createElement(Icon_1.Icon, { name: "close" }) : _a, randomColor = props.randomColor, rest = tslib_1.__rest(props, ["deleteIcon", "randomColor"]);
|
|
11
11
|
if (randomColor) {
|
|
12
|
-
return react_1["default"].createElement(RandomColoredChip_1.RandomColoredChip, tslib_1.__assign({ deleteIcon: deleteIcon }, rest));
|
|
12
|
+
return react_1["default"].createElement(RandomColoredChip_1.RandomColoredChip, tslib_1.__assign({ deleteIcon: deleteIcon, ref: ref }, rest));
|
|
13
13
|
}
|
|
14
|
-
return react_1["default"].createElement(core_1.Chip, tslib_1.__assign({ deleteIcon: deleteIcon }, rest));
|
|
15
|
-
}
|
|
16
|
-
exports.Chip = Chip;
|
|
14
|
+
return react_1["default"].createElement(core_1.Chip, tslib_1.__assign({ deleteIcon: deleteIcon, ref: ref }, rest));
|
|
15
|
+
});
|
|
16
|
+
exports.Chip.displayName = 'Chip';
|
|
17
17
|
//# sourceMappingURL=Chip.js.map
|
package/dist/Chip/Chip.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Chip.js","sourceRoot":"","sources":["../../src/Chip/Chip.tsx"],"names":[],"mappings":";;;;AAAA,0CAAmD;AACnD,
|
|
1
|
+
{"version":3,"file":"Chip.js","sourceRoot":"","sources":["../../src/Chip/Chip.tsx"],"names":[],"mappings":";;;;AAAA,0CAAmD;AACnD,qDAAsE;AAEtE,gCAA8B;AAE9B,yDAAuD;AAG1C,QAAA,IAAI,GAAG,kBAAU,CAG5B,UAAC,KAAK,EAAE,GAAG;IACH,IAAA,KAA6D,KAAK,WAAhC,EAAlC,UAAU,mBAAG,iCAAC,WAAI,IAAC,IAAI,EAAC,OAAO,GAAG,KAAA,EAAE,WAAW,GAAc,KAAK,YAAnB,EAAK,IAAI,kBAAK,KAAK,EAApE,6BAA4D,CAAF,CAAU;IAE1E,IAAI,WAAW,EAAE;QACf,OAAO,iCAAC,qCAAiB,qBAAC,UAAU,EAAE,UAAU,EAAE,GAAG,EAAE,GAAG,IAAM,IAAI,EAAI,CAAA;KACzE;IAED,OAAO,iCAAC,WAAO,qBAAC,UAAU,EAAE,UAAU,EAAE,GAAG,EAAE,GAAG,IAAM,IAAI,EAAI,CAAA;AAChE,CAAC,CAAC,CAAA;AAEF,YAAI,CAAC,WAAW,GAAG,MAAM,CAAA"}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
import { ChipProps } from './types';
|
|
3
|
-
export declare
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { ChipProps } from './types';
|
|
3
|
+
export declare const RandomColoredChip: React.ForwardRefExoticComponent<Pick<ChipProps, "classes" | "disabled" | "onChange" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "placeholder" | "slot" | "spellCheck" | "style" | "tabIndex" | "title" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "component" | "variant" | "innerRef" | "label" | "key" | "href" | "size" | "icon" | "avatar" | "clickable" | "deleteIcon" | "onDelete" | "randomColor"> & React.RefAttributes<HTMLDivElement>>;
|
|
@@ -3,7 +3,7 @@ exports.__esModule = true;
|
|
|
3
3
|
exports.RandomColoredChip = void 0;
|
|
4
4
|
var tslib_1 = require("tslib");
|
|
5
5
|
var core_1 = require("@material-ui/core");
|
|
6
|
-
var react_1 = tslib_1.
|
|
6
|
+
var react_1 = tslib_1.__importStar(require("react"));
|
|
7
7
|
var utils_1 = require("../utils");
|
|
8
8
|
var useChipStyles = core_1.makeStyles(function () {
|
|
9
9
|
return core_1.createStyles({
|
|
@@ -68,13 +68,13 @@ var useChipStyles = core_1.makeStyles(function () {
|
|
|
68
68
|
}
|
|
69
69
|
});
|
|
70
70
|
});
|
|
71
|
-
function
|
|
71
|
+
exports.RandomColoredChip = react_1.forwardRef(function (props, ref) {
|
|
72
72
|
var color = utils_1.getRandomColor(typeof props.label === 'string' ? props.label : '');
|
|
73
73
|
var classes = useChipStyles({
|
|
74
74
|
$backgroundColor: color === null || color === void 0 ? void 0 : color.main,
|
|
75
75
|
$textColor: color === null || color === void 0 ? void 0 : color.contrastText
|
|
76
76
|
});
|
|
77
|
-
return react_1["default"].createElement(core_1.Chip, tslib_1.__assign({
|
|
78
|
-
}
|
|
79
|
-
exports.RandomColoredChip = RandomColoredChip;
|
|
77
|
+
return react_1["default"].createElement(core_1.Chip, tslib_1.__assign({ classes: classes, ref: ref }, props));
|
|
78
|
+
});
|
|
79
|
+
exports.RandomColoredChip.displayName = 'RandomColoredChip';
|
|
80
80
|
//# sourceMappingURL=RandomColoredChip.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RandomColoredChip.js","sourceRoot":"","sources":["../../src/Chip/RandomColoredChip.tsx"],"names":[],"mappings":";;;;AAAA,0CAA6E;AAC7E,
|
|
1
|
+
{"version":3,"file":"RandomColoredChip.js","sourceRoot":"","sources":["../../src/Chip/RandomColoredChip.tsx"],"names":[],"mappings":";;;;AAAA,0CAA6E;AAC7E,qDAAsE;AAEtE,kCAAyC;AAIzC,IAAM,aAAa,GAAG,iBAAU,CAAC;IAC/B,OAAA,mBAAY,CAAC;QACX,IAAI,EAAE;YACJ,eAAe,EAAE,UAAC,EAKjB;oBAJC,gBAAgB,sBAAA;uBAIZ,gBAAgB,aAAhB,gBAAgB,cAAhB,gBAAgB,GAAI,SAAS;aAAA;YACnC,mBAAmB,EAAE;gBACnB,UAAU,EAAE,UAAC,EAAmD;wBAAjD,gBAAgB,sBAAA;2BAC7B,gBAAgB,aAAhB,gBAAgB,cAAhB,gBAAgB,GAAI,SAAS;iBAAA;aAChC;SACF;QAED,KAAK,EAAE;YACL,KAAK,EAAE,UAAC,EAAuC;oBAArC,UAAU,gBAAA;uBAClB,UAAU,aAAV,UAAU,cAAV,UAAU,GAAI,SAAS;aAAA;SAC1B;QAED,SAAS,EAAE;YACT,SAAS,EAAE;gBACT,UAAU,EAAE,UAAC,EAAmD;wBAAjD,gBAAgB,sBAAA;2BAC7B,gBAAgB,aAAhB,gBAAgB,cAAhB,gBAAgB,GAAI,SAAS;iBAAA;gBAC/B,MAAM,EAAE,iBAAiB;aAC1B;SACF;QAED,SAAS,EAAE;YACT,SAAS,EAAE;gBACT,UAAU,EAAE,UAAC,EAAmD;wBAAjD,gBAAgB,sBAAA;2BAC7B,gBAAgB,aAAhB,gBAAgB,cAAhB,gBAAgB,GAAI,SAAS;iBAAA;aAChC;SACF;QAED,IAAI,EAAE;YACJ,KAAK,EAAE,UAAC,EAAuC;oBAArC,UAAU,gBAAA;uBAClB,UAAU,aAAV,UAAU,cAAV,UAAU,GAAI,SAAS;aAAA;YACzB,SAAS,EAAE;gBACT,KAAK,EAAE,UAAC,EAAuC;wBAArC,UAAU,gBAAA;2BAClB,UAAU,aAAV,UAAU,cAAV,UAAU,GAAI,SAAS;iBAAA;aAC1B;SACF;QAED,UAAU,EAAE;YACV,KAAK,EAAE,UAAC,EAAuC;oBAArC,UAAU,gBAAA;uBAClB,UAAU,aAAV,UAAU,cAAV,UAAU,GAAI,SAAS;aAAA;YACzB,SAAS,EAAE;gBACT,KAAK,EAAE,UAAC,EAAuC;wBAArC,UAAU,gBAAA;2BAClB,UAAU,aAAV,UAAU,cAAV,UAAU,GAAI,SAAS;iBAAA;aAC1B;SACF;KACF,CAAC;AAnDF,CAmDE,CACH,CAAA;AAEY,QAAA,iBAAiB,GAAG,kBAAU,CAGzC,UAAC,KAAK,EAAE,GAAG;IACX,IAAM,KAAK,GAAG,sBAAc,CAC1B,OAAO,KAAK,CAAC,KAAK,KAAK,QAAQ,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CACnD,CAAA;IAED,IAAM,OAAO,GAAG,aAAa,CAAC;QAC5B,gBAAgB,EAAE,KAAK,aAAL,KAAK,uBAAL,KAAK,CAAE,IAAI;QAC7B,UAAU,EAAE,KAAK,aAAL,KAAK,uBAAL,KAAK,CAAE,YAAY;KAChC,CAAC,CAAA;IAEF,OAAO,iCAAC,WAAO,qBAAC,OAAO,EAAE,OAAO,EAAE,GAAG,EAAE,GAAG,IAAM,KAAK,EAAI,CAAA;AAC3D,CAAC,CAAC,CAAA;AAEF,yBAAiB,CAAC,WAAW,GAAG,mBAAmB,CAAA"}
|
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
export { CssBaseline, ScopedCssBaseline };
|
|
1
|
+
export { CssBaseline } from '@material-ui/core';
|
|
2
|
+
export { default as ScopedCssBaseline } from '@material-ui/core/ScopedCssBaseline';
|
|
@@ -1,9 +1,15 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
5
|
+
}) : (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
o[k2] = m[k];
|
|
8
|
+
}));
|
|
2
9
|
exports.__esModule = true;
|
|
3
10
|
exports.ScopedCssBaseline = exports.CssBaseline = void 0;
|
|
4
|
-
var
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
exports.ScopedCssBaseline = ScopedCssBaseline_1["default"];
|
|
11
|
+
var core_1 = require("@material-ui/core");
|
|
12
|
+
__createBinding(exports, core_1, "CssBaseline");
|
|
13
|
+
var ScopedCssBaseline_1 = require("@material-ui/core/ScopedCssBaseline");
|
|
14
|
+
__createBinding(exports, ScopedCssBaseline_1, "default", "ScopedCssBaseline");
|
|
9
15
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/CssBaseline/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/CssBaseline/index.ts"],"names":[],"mappings":";;;;;;;;;;AAAA,0CAA+C;AAAtC,gDAAW;AACpB,yEAAkF;AAAzE,8EAA4B"}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { Drawer360Locales } from './types';
|
|
3
3
|
declare type ActionFooterProps = {
|
|
4
|
+
alwaysEnableSaveButton?: boolean;
|
|
4
5
|
locales: Drawer360Locales;
|
|
5
6
|
handleClose: (_: React.MouseEvent<HTMLButtonElement>, reason?: 'backdropClick' | 'escapeKeyDown') => void;
|
|
6
7
|
handleSave: (_: React.MouseEvent<HTMLButtonElement>) => void;
|
|
@@ -9,5 +10,5 @@ declare type ActionFooterProps = {
|
|
|
9
10
|
isLoading?: boolean;
|
|
10
11
|
showDiscard: boolean;
|
|
11
12
|
};
|
|
12
|
-
export declare const ActionFooter: React.MemoExoticComponent<({ disableSaveButton, locales, handleClose, handleSave, unsavedChanges, isLoading, showDiscard }: ActionFooterProps) => JSX.Element>;
|
|
13
|
+
export declare const ActionFooter: React.MemoExoticComponent<({ alwaysEnableSaveButton, disableSaveButton, locales, handleClose, handleSave, unsavedChanges, isLoading, showDiscard }: ActionFooterProps) => JSX.Element>;
|
|
13
14
|
export {};
|