pds-dev-kit-web 2.2.241 → 2.2.242
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/dist/src/desktop/components/ContextMenu/ContextMenu.d.ts +3 -1
- package/dist/src/desktop/components/ContextMenu/ContextMenu.js +38 -7
- package/dist/src/desktop/components/Dropdown/Dropdown.d.ts +3 -1
- package/dist/src/desktop/components/Dropdown/Dropdown.js +6 -6
- package/dist/src/desktop/panels/ContentSheet/ContentSheet.d.ts +4 -1
- package/dist/src/desktop/panels/ContentSheet/ContentSheet.js +11 -3
- package/dist/src/desktop/panels/SectionSheet/SectionSheet.d.ts +4 -1
- package/dist/src/desktop/panels/SectionSheet/SectionSheet.js +11 -3
- package/dist/src/mobile/components/ContextMenu/ContextMenu.d.ts +3 -1
- package/dist/src/mobile/components/ContextMenu/ContextMenu.js +38 -7
- package/dist/src/mobile/components/Dropdown/Dropdown.d.ts +3 -1
- package/dist/src/mobile/components/Dropdown/Dropdown.js +6 -6
- package/dist/src/mobile/panels/ContentSheet/ContentSheet.d.ts +4 -1
- package/dist/src/mobile/panels/ContentSheet/ContentSheet.js +11 -3
- package/dist/src/mobile/panels/SectionSheet/SectionSheet.d.ts +4 -1
- package/dist/src/mobile/panels/SectionSheet/SectionSheet.js +11 -3
- package/package.json +1 -1
- package/release-note.md +3 -2
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
+
import { ScrollVisibleType } from '../../../common/styles/scroll/scrollbarStyle';
|
|
2
3
|
type ContextMenuProps = {
|
|
3
4
|
children: React.ReactNode;
|
|
4
5
|
autoWidthMode?: 'none' | 'use';
|
|
5
6
|
maxHeight?: number;
|
|
6
7
|
customWidth?: string;
|
|
8
|
+
scrollVisibleType?: ScrollVisibleType;
|
|
7
9
|
};
|
|
8
|
-
declare function ContextMenu({ children, autoWidthMode, maxHeight, customWidth }: ContextMenuProps): JSX.Element;
|
|
10
|
+
declare function ContextMenu({ children, autoWidthMode, maxHeight, customWidth, scrollVisibleType }: ContextMenuProps): JSX.Element;
|
|
9
11
|
export default ContextMenu;
|
|
@@ -14,17 +14,38 @@ var __assign = (this && this.__assign) || function () {
|
|
|
14
14
|
};
|
|
15
15
|
return __assign.apply(this, arguments);
|
|
16
16
|
};
|
|
17
|
-
var
|
|
18
|
-
|
|
17
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
18
|
+
if (k2 === undefined) k2 = k;
|
|
19
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
20
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
21
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
22
|
+
}
|
|
23
|
+
Object.defineProperty(o, k2, desc);
|
|
24
|
+
}) : (function(o, m, k, k2) {
|
|
25
|
+
if (k2 === undefined) k2 = k;
|
|
26
|
+
o[k2] = m[k];
|
|
27
|
+
}));
|
|
28
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
29
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
30
|
+
}) : function(o, v) {
|
|
31
|
+
o["default"] = v;
|
|
32
|
+
});
|
|
33
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
34
|
+
if (mod && mod.__esModule) return mod;
|
|
35
|
+
var result = {};
|
|
36
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
37
|
+
__setModuleDefault(result, mod);
|
|
38
|
+
return result;
|
|
19
39
|
};
|
|
20
40
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21
41
|
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
22
|
-
var
|
|
42
|
+
var scrollbarStyle_1 = require("../../../common/styles/scroll/scrollbarStyle");
|
|
43
|
+
var styled_components_1 = __importStar(require("styled-components"));
|
|
23
44
|
function ContextMenu(_a) {
|
|
24
|
-
var children = _a.children, _b = _a.autoWidthMode, autoWidthMode = _b === void 0 ? 'none' : _b, maxHeight = _a.maxHeight, customWidth = _a.customWidth;
|
|
25
|
-
return ((0, jsx_runtime_1.jsx)(S_ContextMenu, __assign({ "x-pds-name": "ContextMenu", "x-pds-element-type": "component", "x-pds-device-type": "desktop", autoWidth: autoWidthMode === 'use', maxHeight: maxHeight, customWidth: customWidth }, { children: children })));
|
|
45
|
+
var children = _a.children, _b = _a.autoWidthMode, autoWidthMode = _b === void 0 ? 'none' : _b, maxHeight = _a.maxHeight, customWidth = _a.customWidth, scrollVisibleType = _a.scrollVisibleType;
|
|
46
|
+
return ((0, jsx_runtime_1.jsx)(S_ContextMenu, __assign({ "x-pds-name": "ContextMenu", "x-pds-element-type": "component", "x-pds-device-type": "desktop", autoWidth: autoWidthMode === 'use', maxHeight: maxHeight, customWidth: customWidth, scrollVisibleType: scrollVisibleType }, { children: children })));
|
|
26
47
|
}
|
|
27
|
-
var S_ContextMenu = styled_components_1.default.ul(
|
|
48
|
+
var S_ContextMenu = styled_components_1.default.ul(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n background-color: ", ";\n border: 1px solid ", ";\n border-radius: 14px;\n box-shadow: ", ";\n box-sizing: border-box;\n list-style: none;\n margin: 0;\n max-height: ", ";\n min-width: 128px;\n overflow-y: auto;\n padding: ", " 0;\n position: relative;\n vertical-align: baseline;\n width: ", ";\n\n z-index: 400;\n\n ", "\n\n ", "\n\n ", "\n"], ["\n background-color: ", ";\n border: 1px solid ", ";\n border-radius: 14px;\n box-shadow: ", ";\n box-sizing: border-box;\n list-style: none;\n margin: 0;\n max-height: ", ";\n min-width: 128px;\n overflow-y: auto;\n padding: ", " 0;\n position: relative;\n vertical-align: baseline;\n width: ", ";\n\n z-index: 400;\n\n ", "\n\n ", "\n\n ", "\n"])), function (_a) {
|
|
28
49
|
var theme = _a.theme;
|
|
29
50
|
return theme.ui_cpnt_contextmenu_base;
|
|
30
51
|
}, function (_a) {
|
|
@@ -51,6 +72,16 @@ var S_ContextMenu = styled_components_1.default.ul(templateObject_1 || (template
|
|
|
51
72
|
}, function (_a) {
|
|
52
73
|
var customWidth = _a.customWidth;
|
|
53
74
|
return customWidth && "width: ".concat(customWidth, ";min-width: ").concat(customWidth, ";");
|
|
75
|
+
}, function (_a) {
|
|
76
|
+
var scrollVisibleType = _a.scrollVisibleType;
|
|
77
|
+
return scrollVisibleType &&
|
|
78
|
+
{
|
|
79
|
+
visible: scrollbarStyle_1.scrollbarStyle,
|
|
80
|
+
hidden: scrollbarStyle_1.scrollInvisible
|
|
81
|
+
}[scrollVisibleType];
|
|
82
|
+
}, function (_a) {
|
|
83
|
+
var scrollVisibleType = _a.scrollVisibleType;
|
|
84
|
+
return scrollVisibleType === 'visible' && (0, styled_components_1.css)(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n ::-webkit-scrollbar-track {\n margin-bottom: 7px;\n margin-top: 7px;\n }\n "], ["\n ::-webkit-scrollbar-track {\n margin-bottom: 7px;\n margin-top: 7px;\n }\n "])));
|
|
54
85
|
});
|
|
55
86
|
exports.default = ContextMenu;
|
|
56
|
-
var templateObject_1;
|
|
87
|
+
var templateObject_1, templateObject_2;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import type { PDSTextType } from '../../../common';
|
|
3
|
+
import type { ScrollVisibleType } from '../../../common/styles/scroll/scrollbarStyle';
|
|
3
4
|
import type { DropdownGroupInfo, DropdownValueOption } from '../../../common/types';
|
|
4
5
|
type Props = {
|
|
5
6
|
colorTheme?: 'none' | 'dark' | 'white';
|
|
@@ -15,7 +16,8 @@ type Props = {
|
|
|
15
16
|
displayType?: 'text_only' | 'icon_only' | 'icon_text';
|
|
16
17
|
fontWeight?: 'bold' | 'regular';
|
|
17
18
|
groupInfoArray?: DropdownGroupInfo[];
|
|
19
|
+
scrollVisibleType?: ScrollVisibleType;
|
|
18
20
|
onChange?: (option: DropdownValueOption) => void;
|
|
19
21
|
};
|
|
20
|
-
declare function Dropdown({ colorTheme, value, defaultValue, hintText, maxHeightItemNumber, responsiveMode, size, state, valueArray, customWidth, displayType, fontWeight, groupInfoArray, onChange }: Props): JSX.Element;
|
|
22
|
+
declare function Dropdown({ colorTheme, value, defaultValue, hintText, maxHeightItemNumber, responsiveMode, size, state, valueArray, customWidth, displayType, fontWeight, groupInfoArray, scrollVisibleType, onChange }: Props): JSX.Element;
|
|
21
23
|
export default Dropdown;
|
|
@@ -57,11 +57,11 @@ function Dropdown(_a) {
|
|
|
57
57
|
// selectionMode = 'single',
|
|
58
58
|
_e = _a.size,
|
|
59
59
|
// selectionMode = 'single',
|
|
60
|
-
size = _e === void 0 ? 'large' : _e, _f = _a.state, state = _f === void 0 ? 'normal' : _f, valueArray = _a.valueArray, customWidth = _a.customWidth, _g = _a.displayType, displayType = _g === void 0 ? 'text_only' : _g, _h = _a.fontWeight, fontWeight = _h === void 0 ? 'regular' : _h, groupInfoArray = _a.groupInfoArray, onChange = _a.onChange;
|
|
61
|
-
var
|
|
62
|
-
var
|
|
63
|
-
var
|
|
64
|
-
var
|
|
60
|
+
size = _e === void 0 ? 'large' : _e, _f = _a.state, state = _f === void 0 ? 'normal' : _f, valueArray = _a.valueArray, customWidth = _a.customWidth, _g = _a.displayType, displayType = _g === void 0 ? 'text_only' : _g, _h = _a.fontWeight, fontWeight = _h === void 0 ? 'regular' : _h, groupInfoArray = _a.groupInfoArray, _j = _a.scrollVisibleType, scrollVisibleType = _j === void 0 ? 'visible' : _j, onChange = _a.onChange;
|
|
61
|
+
var _k = (0, react_1.useState)(false), isFocused = _k[0], setIsFocused = _k[1];
|
|
62
|
+
var _l = (0, react_1.useState)(null), selectedValue = _l[0], setSelectedValue = _l[1];
|
|
63
|
+
var _m = (0, react_1.useState)(null), contextMenuSizeOffset = _m[0], setContextMenuSizeOffset = _m[1];
|
|
64
|
+
var _o = (0, react_1.useState)(null), dropdownPositionOffset = _o[0], setDropdownPositionOffset = _o[1];
|
|
65
65
|
var contextMenuRef = (0, react_1.useRef)(null);
|
|
66
66
|
var dropdownRef = (0, react_1.useRef)(null);
|
|
67
67
|
/**
|
|
@@ -263,7 +263,7 @@ function Dropdown(_a) {
|
|
|
263
263
|
});
|
|
264
264
|
}
|
|
265
265
|
return ((0, jsx_runtime_1.jsxs)(S_Dropdown, __assign({ "x-pds-name": "Dropdown", "x-pds-element-type": "component", "x-pds-device-type": "desktop", className: "container", ref: dropdownRef, size: size, tabIndex: 0, onBlur: handleBlur, responsiveMode: responsiveMode, customWidth: customWidth, displayType: displayType }, { children: [(0, jsx_runtime_1.jsxs)(S_Select, __assign({ size: size, onClick: handleClick, isFocused: isFocused, state: state, colorTheme: colorTheme, responsiveMode: responsiveMode, customWidth: customWidth, displayType: displayType }, { children: [(0, jsx_runtime_1.jsxs)(S_TextLabel, __assign({ size: size, responsiveMode: responsiveMode, displayType: displayType }, { children: [(displayType === 'icon_only' || displayType === 'icon_text') && (selectedValue === null || selectedValue === void 0 ? void 0 : selectedValue.iconName) && ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)(hybrid_1.Icon, { size: size === 'small' ? 20 : 24, iconName: selectedValue.iconName, fillType: selectedValue.iconFillType, colorKey: getIconColorKey() }), displayType === 'icon_text' && (0, jsx_runtime_1.jsx)(hybrid_1.Spacing, { size: "spacing_b", spacingType: "width" })] })), (displayType === 'text_only' || displayType === 'icon_text') && ((0, jsx_runtime_1.jsx)(TextLabel_1.TextLabel, { text: (selectedValue === null || selectedValue === void 0 ? void 0 : selectedValue.text) || (value === null || value === void 0 ? void 0 : value.text) || (defaultValue === null || defaultValue === void 0 ? void 0 : defaultValue.text) || hintText, styleTheme: fontWeight === 'bold' ? 'form2Bold' : 'form2Regular', singleLineMode: "use", colorTheme: getTextColorTheme(), colorOverride: getTextColorOverride(), ellipsisMode: "use", lineLimit: 1, wordBreak: "break_all" }))] })), (0, jsx_runtime_1.jsx)(hybrid_1.Icon, { size: 16, fillType: "line", iconName: isFocused ? 'ic_arrow_up' : 'ic_arrow_down', colorKey: getArrowIconColorKey() })] })), isFocused &&
|
|
266
|
-
(0, react_dom_1.createPortal)((0, jsx_runtime_1.jsx)(S_ContextMenuWrapper, __assign({ ref: contextMenuRef, contextMenuPositionCss: contextMenuPositionCss }, { children: (0, jsx_runtime_1.jsx)(ContextMenu_1.ContextMenu, __assign({ autoWidthMode: "use", maxHeight: maxHeight, customWidth: getCustomWidth() }, { children: groupInfoArray
|
|
266
|
+
(0, react_dom_1.createPortal)((0, jsx_runtime_1.jsx)(S_ContextMenuWrapper, __assign({ ref: contextMenuRef, contextMenuPositionCss: contextMenuPositionCss }, { children: (0, jsx_runtime_1.jsx)(ContextMenu_1.ContextMenu, __assign({ autoWidthMode: "use", maxHeight: maxHeight, customWidth: getCustomWidth(), scrollVisibleType: scrollVisibleType }, { children: groupInfoArray
|
|
267
267
|
? Object.keys(resultByGroup).map(function (key) {
|
|
268
268
|
var _a, _b, _c;
|
|
269
269
|
return ((0, jsx_runtime_1.jsxs)(S_Group, __assign({ size: size, hasGroupTitle: Boolean((_a = groupInfoArray.find(function (groupInfo) { return groupInfo.key === key; })) === null || _a === void 0 ? void 0 : _a.title) }, { children: [((_b = groupInfoArray.find(function (groupInfo) { return groupInfo.key === key; })) === null || _b === void 0 ? void 0 : _b.title) && ((0, jsx_runtime_1.jsx)(S_Wrapper, __assign({ size: size }, { children: (0, jsx_runtime_1.jsx)(TextLabel_1.TextLabel, { text: (_c = groupInfoArray.find(function (groupInfo) { return groupInfo.key === key; })) === null || _c === void 0 ? void 0 : _c.title, colorTheme: "sysTextSecondary", styleTheme: "caption1Bold", letterSpacing: "0.15em" }) }))), resultByGroup[key].map(function (el) { return ((0, jsx_runtime_1.jsx)("div", __assign({ onMouseDown: function () { return handleClickOption(el); } }, { children: (0, jsx_runtime_1.jsx)(ContextMenuItem_1.ContextMenuItem, { option: el, size: size, isSelected: (selectedValue === null || selectedValue === void 0 ? void 0 : selectedValue.value) === el.value, state: el.state, displayType: displayType }) }), el.value)); })] }), key));
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { UiColors } from '../../../common';
|
|
2
|
+
import type { ScrollVisibleType } from '../../../common/styles/scroll/scrollbarStyle';
|
|
2
3
|
import type { CSSProperties } from 'react';
|
|
3
4
|
type PaddingSpacingType = 'none' | keyof typeof paddingSpacing;
|
|
4
5
|
export type ContentSheetProps = {
|
|
@@ -21,6 +22,7 @@ export type ContentSheetProps = {
|
|
|
21
22
|
loadingWidth?: string;
|
|
22
23
|
loadingHeight?: string;
|
|
23
24
|
isLoading?: boolean;
|
|
25
|
+
scrollVisibleType?: ScrollVisibleType;
|
|
24
26
|
onClick?: (e: React.MouseEvent<HTMLDivElement>) => void;
|
|
25
27
|
};
|
|
26
28
|
export type StyleProps = {
|
|
@@ -39,6 +41,7 @@ export type StyleProps = {
|
|
|
39
41
|
paddingBottom?: PaddingSpacingType;
|
|
40
42
|
paddingLeft?: PaddingSpacingType;
|
|
41
43
|
hasOnClick?: boolean;
|
|
44
|
+
scrollVisibleType?: ScrollVisibleType;
|
|
42
45
|
};
|
|
43
46
|
declare const paddingSpacing: {
|
|
44
47
|
readonly spacing_a: "spacingA";
|
|
@@ -56,5 +59,5 @@ declare const paddingSpacing: {
|
|
|
56
59
|
readonly spacing_m: "spacingM";
|
|
57
60
|
readonly spacing_n: "spacingN";
|
|
58
61
|
};
|
|
59
|
-
declare function ContentSheet({ width, height, backgroundColorTheme, overrideBackgroundColorKey, borderMode, borderWidth, borderColorTheme, overrideBorderColorKey, shapeType, radius, paddingTop, paddingRight, paddingBottom, paddingLeft, overrideCSS, children, loadingWidth, loadingHeight, isLoading, onClick }: ContentSheetProps): JSX.Element;
|
|
62
|
+
declare function ContentSheet({ width, height, backgroundColorTheme, overrideBackgroundColorKey, borderMode, borderWidth, borderColorTheme, overrideBorderColorKey, shapeType, radius, paddingTop, paddingRight, paddingBottom, paddingLeft, overrideCSS, children, loadingWidth, loadingHeight, isLoading, scrollVisibleType, onClick }: ContentSheetProps): JSX.Element;
|
|
60
63
|
export default ContentSheet;
|
|
@@ -39,6 +39,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
39
39
|
};
|
|
40
40
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
41
41
|
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
42
|
+
var scrollbarStyle_1 = require("../../../common/styles/scroll/scrollbarStyle");
|
|
42
43
|
var styled_components_1 = __importStar(require("styled-components"));
|
|
43
44
|
var styles_1 = require("../../../common/styles");
|
|
44
45
|
var backgroundColorTheme = {
|
|
@@ -71,7 +72,7 @@ var paddingSpacing = {
|
|
|
71
72
|
spacing_n: 'spacingN'
|
|
72
73
|
};
|
|
73
74
|
function ContentSheet(_a) {
|
|
74
|
-
var width = _a.width, height = _a.height, _b = _a.backgroundColorTheme, backgroundColorTheme = _b === void 0 ? 'base3' : _b, overrideBackgroundColorKey = _a.overrideBackgroundColorKey, _c = _a.borderMode, borderMode = _c === void 0 ? 'none' : _c, _d = _a.borderWidth, borderWidth = _d === void 0 ? 1 : _d, _e = _a.borderColorTheme, borderColorTheme = _e === void 0 ? 'grey' : _e, overrideBorderColorKey = _a.overrideBorderColorKey, _f = _a.shapeType, shapeType = _f === void 0 ? 'rectangle' : _f, _g = _a.radius, radius = _g === void 0 ? 24 : _g, _h = _a.paddingTop, paddingTop = _h === void 0 ? 'spacing_e' : _h, _j = _a.paddingRight, paddingRight = _j === void 0 ? 'spacing_e' : _j, _k = _a.paddingBottom, paddingBottom = _k === void 0 ? 'spacing_e' : _k, _l = _a.paddingLeft, paddingLeft = _l === void 0 ? 'spacing_e' : _l, overrideCSS = _a.overrideCSS, children = _a.children, loadingWidth = _a.loadingWidth, loadingHeight = _a.loadingHeight, isLoading = _a.isLoading, onClick = _a.onClick;
|
|
75
|
+
var width = _a.width, height = _a.height, _b = _a.backgroundColorTheme, backgroundColorTheme = _b === void 0 ? 'base3' : _b, overrideBackgroundColorKey = _a.overrideBackgroundColorKey, _c = _a.borderMode, borderMode = _c === void 0 ? 'none' : _c, _d = _a.borderWidth, borderWidth = _d === void 0 ? 1 : _d, _e = _a.borderColorTheme, borderColorTheme = _e === void 0 ? 'grey' : _e, overrideBorderColorKey = _a.overrideBorderColorKey, _f = _a.shapeType, shapeType = _f === void 0 ? 'rectangle' : _f, _g = _a.radius, radius = _g === void 0 ? 24 : _g, _h = _a.paddingTop, paddingTop = _h === void 0 ? 'spacing_e' : _h, _j = _a.paddingRight, paddingRight = _j === void 0 ? 'spacing_e' : _j, _k = _a.paddingBottom, paddingBottom = _k === void 0 ? 'spacing_e' : _k, _l = _a.paddingLeft, paddingLeft = _l === void 0 ? 'spacing_e' : _l, overrideCSS = _a.overrideCSS, children = _a.children, loadingWidth = _a.loadingWidth, loadingHeight = _a.loadingHeight, isLoading = _a.isLoading, _m = _a.scrollVisibleType, scrollVisibleType = _m === void 0 ? 'visible' : _m, onClick = _a.onClick;
|
|
75
76
|
var handleClick = function (e) {
|
|
76
77
|
if (onClick) {
|
|
77
78
|
onClick(e);
|
|
@@ -81,7 +82,7 @@ function ContentSheet(_a) {
|
|
|
81
82
|
if (isLoading) {
|
|
82
83
|
return ((0, jsx_runtime_1.jsx)(S_LoadingContentSheet, { "$width": width !== null && width !== void 0 ? width : loadingWidth, "$height": height !== null && height !== void 0 ? height : loadingHeight, shapeType: shapeType, "$radius": radius }));
|
|
83
84
|
}
|
|
84
|
-
return ((0, jsx_runtime_1.jsx)(S_ContentSheet, __assign({ "x-pds-name": "ContentSheet", "x-pds-element-type": "panel", "x-pds-device-type": "desktop", "$width": width, "$height": height, "$backgroundColorTheme": backgroundColorTheme, overrideBackgroundColorKey: overrideBackgroundColorKey, borderMode: borderMode, "$borderWidth": borderWidth, "$borderColorTheme": borderColorTheme, overrideBorderColorKey: overrideBorderColorKey, shapeType: shapeType, "$radius": radius, paddingTop: paddingTop, paddingRight: paddingRight, paddingBottom: paddingBottom, paddingLeft: paddingLeft, style: overrideCSS, onClick: handleClick, hasOnClick: !!onClick }, { children: children })));
|
|
85
|
+
return ((0, jsx_runtime_1.jsx)(S_ContentSheet, __assign({ "x-pds-name": "ContentSheet", "x-pds-element-type": "panel", "x-pds-device-type": "desktop", "$width": width, "$height": height, "$backgroundColorTheme": backgroundColorTheme, overrideBackgroundColorKey: overrideBackgroundColorKey, borderMode: borderMode, "$borderWidth": borderWidth, "$borderColorTheme": borderColorTheme, overrideBorderColorKey: overrideBorderColorKey, shapeType: shapeType, "$radius": radius, paddingTop: paddingTop, paddingRight: paddingRight, paddingBottom: paddingBottom, paddingLeft: paddingLeft, style: overrideCSS, onClick: handleClick, hasOnClick: !!onClick, scrollVisibleType: scrollVisibleType }, { children: children })));
|
|
85
86
|
};
|
|
86
87
|
return ContentSheetVariation();
|
|
87
88
|
}
|
|
@@ -112,7 +113,7 @@ var overrideStyle = (0, styled_components_1.css)(templateObject_6 || (templateOb
|
|
|
112
113
|
var theme = _a.theme, overrideBorderColorKey = _a.overrideBorderColorKey;
|
|
113
114
|
return overrideBorderColorKey && theme[overrideBorderColorKey];
|
|
114
115
|
});
|
|
115
|
-
var S_ContentSheet = styled_components_1.default.div(templateObject_7 || (templateObject_7 = __makeTemplateObject(["\n background-color: ", ";\n border-color: ", ";\n border-style: ", ";\n border-width: ", ";\n box-sizing: border-box;\n cursor: ", ";\n height: ", ";\n width: ", ";\n\n ", ";\n\n ", ";\n ", ";\n ", ";\n ", ";\n\n ", "\n"], ["\n background-color: ", ";\n border-color: ", ";\n border-style: ", ";\n border-width: ", ";\n box-sizing: border-box;\n cursor: ", ";\n height: ", ";\n width: ", ";\n\n ", ";\n\n ", ";\n ", ";\n ", ";\n ", ";\n\n ", "\n"])), function (_a) {
|
|
116
|
+
var S_ContentSheet = styled_components_1.default.div(templateObject_7 || (templateObject_7 = __makeTemplateObject(["\n background-color: ", ";\n border-color: ", ";\n border-style: ", ";\n border-width: ", ";\n box-sizing: border-box;\n cursor: ", ";\n height: ", ";\n overflow-y: auto;\n width: ", ";\n\n ", ";\n\n ", ";\n ", ";\n ", ";\n ", ";\n\n ", "\n\n ", "\n"], ["\n background-color: ", ";\n border-color: ", ";\n border-style: ", ";\n border-width: ", ";\n box-sizing: border-box;\n cursor: ", ";\n height: ", ";\n overflow-y: auto;\n width: ", ";\n\n ", ";\n\n ", ";\n ", ";\n ", ";\n ", ";\n\n ", "\n\n ", "\n"])), function (_a) {
|
|
116
117
|
var theme = _a.theme, $backgroundColorTheme = _a.$backgroundColorTheme;
|
|
117
118
|
return $backgroundColorTheme && theme[backgroundColorTheme[$backgroundColorTheme]];
|
|
118
119
|
}, function (_a) {
|
|
@@ -148,6 +149,13 @@ var S_ContentSheet = styled_components_1.default.div(templateObject_7 || (templa
|
|
|
148
149
|
}, function (_a) {
|
|
149
150
|
var paddingLeft = _a.paddingLeft;
|
|
150
151
|
return paddingLeft !== 'none' && paddingLeftStyle;
|
|
152
|
+
}, function (_a) {
|
|
153
|
+
var scrollVisibleType = _a.scrollVisibleType;
|
|
154
|
+
return scrollVisibleType &&
|
|
155
|
+
{
|
|
156
|
+
visible: scrollbarStyle_1.scrollbarWithPaddingStyle,
|
|
157
|
+
hidden: scrollbarStyle_1.scrollInvisible
|
|
158
|
+
}[scrollVisibleType];
|
|
151
159
|
}, overrideStyle);
|
|
152
160
|
var S_LoadingContentSheet = (0, styled_components_1.default)(S_ContentSheet)(templateObject_8 || (templateObject_8 = __makeTemplateObject(["\n ", "\n"], ["\n ", "\n"])), styles_1.skeletonLoadingStyle);
|
|
153
161
|
exports.default = ContentSheet;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { UiColors } from '../../../common';
|
|
2
|
+
import type { ScrollVisibleType } from '../../../common/styles/scroll/scrollbarStyle';
|
|
2
3
|
import type { CSSProperties } from 'react';
|
|
3
4
|
type PaddingSpacingType = 'none' | keyof typeof paddingSpacing;
|
|
4
5
|
export type SectionSheetProps = {
|
|
@@ -18,6 +19,7 @@ export type SectionSheetProps = {
|
|
|
18
19
|
paddingLeft?: PaddingSpacingType;
|
|
19
20
|
overrideCSS?: CSSProperties;
|
|
20
21
|
children: React.ReactNode;
|
|
22
|
+
scrollVisibleType?: ScrollVisibleType;
|
|
21
23
|
onClick?: (e: React.MouseEvent<HTMLDivElement>) => void;
|
|
22
24
|
};
|
|
23
25
|
export type StyleProps = {
|
|
@@ -36,6 +38,7 @@ export type StyleProps = {
|
|
|
36
38
|
paddingBottom?: PaddingSpacingType;
|
|
37
39
|
paddingLeft?: PaddingSpacingType;
|
|
38
40
|
hasOnClick?: boolean;
|
|
41
|
+
scrollVisibleType?: ScrollVisibleType;
|
|
39
42
|
};
|
|
40
43
|
declare const paddingSpacing: {
|
|
41
44
|
readonly spacing_a: "spacingA";
|
|
@@ -53,5 +56,5 @@ declare const paddingSpacing: {
|
|
|
53
56
|
readonly spacing_m: "spacingM";
|
|
54
57
|
readonly spacing_n: "spacingN";
|
|
55
58
|
};
|
|
56
|
-
declare function SectionSheet({ width, height, backgroundColorTheme, overrideBackgroundColorKey, borderMode, borderWidth, borderColorTheme, overrideBorderColorKey, shapeType, radius, paddingTop, paddingRight, paddingBottom, paddingLeft, overrideCSS, children, onClick }: SectionSheetProps): JSX.Element;
|
|
59
|
+
declare function SectionSheet({ width, height, backgroundColorTheme, overrideBackgroundColorKey, borderMode, borderWidth, borderColorTheme, overrideBorderColorKey, shapeType, radius, paddingTop, paddingRight, paddingBottom, paddingLeft, overrideCSS, children, scrollVisibleType, onClick }: SectionSheetProps): JSX.Element;
|
|
57
60
|
export default SectionSheet;
|
|
@@ -39,6 +39,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
39
39
|
};
|
|
40
40
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
41
41
|
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
42
|
+
var scrollbarStyle_1 = require("../../../common/styles/scroll/scrollbarStyle");
|
|
42
43
|
var styled_components_1 = __importStar(require("styled-components"));
|
|
43
44
|
var backgroundColorTheme = {
|
|
44
45
|
transparent: 'ui_cpnt_sheet_base_03',
|
|
@@ -70,13 +71,13 @@ var paddingSpacing = {
|
|
|
70
71
|
spacing_n: 'spacingN'
|
|
71
72
|
};
|
|
72
73
|
function SectionSheet(_a) {
|
|
73
|
-
var width = _a.width, height = _a.height, _b = _a.backgroundColorTheme, backgroundColorTheme = _b === void 0 ? 'transparent' : _b, overrideBackgroundColorKey = _a.overrideBackgroundColorKey, _c = _a.borderMode, borderMode = _c === void 0 ? 'none' : _c, _d = _a.borderWidth, borderWidth = _d === void 0 ? 1 : _d, _e = _a.borderColorTheme, borderColorTheme = _e === void 0 ? 'grey' : _e, overrideBorderColorKey = _a.overrideBorderColorKey, _f = _a.shapeType, shapeType = _f === void 0 ? 'rectangle' : _f, _g = _a.radius, radius = _g === void 0 ? 24 : _g, _h = _a.paddingTop, paddingTop = _h === void 0 ? 'spacing_e' : _h, _j = _a.paddingRight, paddingRight = _j === void 0 ? 'spacing_e' : _j, _k = _a.paddingBottom, paddingBottom = _k === void 0 ? 'spacing_e' : _k, _l = _a.paddingLeft, paddingLeft = _l === void 0 ? 'spacing_e' : _l, overrideCSS = _a.overrideCSS, children = _a.children, onClick = _a.onClick;
|
|
74
|
+
var width = _a.width, height = _a.height, _b = _a.backgroundColorTheme, backgroundColorTheme = _b === void 0 ? 'transparent' : _b, overrideBackgroundColorKey = _a.overrideBackgroundColorKey, _c = _a.borderMode, borderMode = _c === void 0 ? 'none' : _c, _d = _a.borderWidth, borderWidth = _d === void 0 ? 1 : _d, _e = _a.borderColorTheme, borderColorTheme = _e === void 0 ? 'grey' : _e, overrideBorderColorKey = _a.overrideBorderColorKey, _f = _a.shapeType, shapeType = _f === void 0 ? 'rectangle' : _f, _g = _a.radius, radius = _g === void 0 ? 24 : _g, _h = _a.paddingTop, paddingTop = _h === void 0 ? 'spacing_e' : _h, _j = _a.paddingRight, paddingRight = _j === void 0 ? 'spacing_e' : _j, _k = _a.paddingBottom, paddingBottom = _k === void 0 ? 'spacing_e' : _k, _l = _a.paddingLeft, paddingLeft = _l === void 0 ? 'spacing_e' : _l, overrideCSS = _a.overrideCSS, children = _a.children, _m = _a.scrollVisibleType, scrollVisibleType = _m === void 0 ? 'visible' : _m, onClick = _a.onClick;
|
|
74
75
|
var handleClick = function (e) {
|
|
75
76
|
if (onClick) {
|
|
76
77
|
onClick(e);
|
|
77
78
|
}
|
|
78
79
|
};
|
|
79
|
-
return ((0, jsx_runtime_1.jsx)(S_SectionSheet, __assign({ "x-pds-name": "SectionSheet", "x-pds-element-type": "panel", "x-pds-device-type": "desktop", "$width": width, "$height": height, "$backgroundColorTheme": backgroundColorTheme, overrideBackgroundColorKey: overrideBackgroundColorKey, borderMode: borderMode, "$borderWidth": borderWidth, "$borderColorTheme": borderColorTheme, overrideBorderColorKey: overrideBorderColorKey, shapeType: shapeType, "$radius": radius, paddingTop: paddingTop, paddingRight: paddingRight, paddingBottom: paddingBottom, paddingLeft: paddingLeft, style: overrideCSS, onClick: handleClick, hasOnClick: !!onClick }, { children: children })));
|
|
80
|
+
return ((0, jsx_runtime_1.jsx)(S_SectionSheet, __assign({ "x-pds-name": "SectionSheet", "x-pds-element-type": "panel", "x-pds-device-type": "desktop", "$width": width, "$height": height, "$backgroundColorTheme": backgroundColorTheme, overrideBackgroundColorKey: overrideBackgroundColorKey, borderMode: borderMode, "$borderWidth": borderWidth, "$borderColorTheme": borderColorTheme, overrideBorderColorKey: overrideBorderColorKey, shapeType: shapeType, "$radius": radius, paddingTop: paddingTop, paddingRight: paddingRight, paddingBottom: paddingBottom, paddingLeft: paddingLeft, style: overrideCSS, onClick: handleClick, hasOnClick: !!onClick, scrollVisibleType: scrollVisibleType }, { children: children })));
|
|
80
81
|
}
|
|
81
82
|
var radiusStyle = (0, styled_components_1.css)(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n border-radius: ", ";\n"], ["\n border-radius: ", ";\n"])), function (_a) {
|
|
82
83
|
var $radius = _a.$radius;
|
|
@@ -105,7 +106,7 @@ var advancedCSS = (0, styled_components_1.css)(templateObject_6 || (templateObje
|
|
|
105
106
|
var theme = _a.theme, overrideBorderColorKey = _a.overrideBorderColorKey;
|
|
106
107
|
return overrideBorderColorKey && theme[overrideBorderColorKey];
|
|
107
108
|
});
|
|
108
|
-
var S_SectionSheet = styled_components_1.default.div(templateObject_7 || (templateObject_7 = __makeTemplateObject(["\n background-color: ", ";\n border-color: ", ";\n border-style: ", ";\n border-width: ", ";\n box-sizing: border-box;\n cursor: ", ";\n height: ", ";\n width: ", ";\n\n ", ";\n\n ", ";\n ", ";\n ", ";\n ", ";\n\n ", "\n"], ["\n background-color: ", ";\n border-color: ", ";\n border-style: ", ";\n border-width: ", ";\n box-sizing: border-box;\n cursor: ", ";\n height: ", ";\n width: ", ";\n\n ", ";\n\n ", ";\n ", ";\n ", ";\n ", ";\n\n ", "\n"])), function (_a) {
|
|
109
|
+
var S_SectionSheet = styled_components_1.default.div(templateObject_7 || (templateObject_7 = __makeTemplateObject(["\n background-color: ", ";\n border-color: ", ";\n border-style: ", ";\n border-width: ", ";\n box-sizing: border-box;\n cursor: ", ";\n height: ", ";\n overflow-y: auto;\n width: ", ";\n\n ", ";\n\n ", ";\n ", ";\n ", ";\n ", ";\n\n ", "\n\n ", "\n"], ["\n background-color: ", ";\n border-color: ", ";\n border-style: ", ";\n border-width: ", ";\n box-sizing: border-box;\n cursor: ", ";\n height: ", ";\n overflow-y: auto;\n width: ", ";\n\n ", ";\n\n ", ";\n ", ";\n ", ";\n ", ";\n\n ", "\n\n ", "\n"])), function (_a) {
|
|
109
110
|
var theme = _a.theme, $backgroundColorTheme = _a.$backgroundColorTheme;
|
|
110
111
|
return $backgroundColorTheme && theme[backgroundColorTheme[$backgroundColorTheme]];
|
|
111
112
|
}, function (_a) {
|
|
@@ -141,6 +142,13 @@ var S_SectionSheet = styled_components_1.default.div(templateObject_7 || (templa
|
|
|
141
142
|
}, function (_a) {
|
|
142
143
|
var paddingLeft = _a.paddingLeft;
|
|
143
144
|
return paddingLeft !== 'none' && paddingLeftStyle;
|
|
145
|
+
}, function (_a) {
|
|
146
|
+
var scrollVisibleType = _a.scrollVisibleType;
|
|
147
|
+
return scrollVisibleType &&
|
|
148
|
+
{
|
|
149
|
+
visible: scrollbarStyle_1.scrollbarStyle,
|
|
150
|
+
hidden: scrollbarStyle_1.scrollInvisible
|
|
151
|
+
}[scrollVisibleType];
|
|
144
152
|
}, advancedCSS);
|
|
145
153
|
exports.default = SectionSheet;
|
|
146
154
|
var templateObject_1, templateObject_2, templateObject_3, templateObject_4, templateObject_5, templateObject_6, templateObject_7;
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
+
import { ScrollVisibleType } from '../../../common/styles/scroll/scrollbarStyle';
|
|
2
3
|
type ContextMenuProps = {
|
|
3
4
|
children: React.ReactNode;
|
|
4
5
|
autoWidthMode?: 'none' | 'use';
|
|
5
6
|
maxHeight?: number;
|
|
6
7
|
customWidth?: string;
|
|
8
|
+
scrollVisibleType?: ScrollVisibleType;
|
|
7
9
|
};
|
|
8
|
-
declare function ContextMenu({ children, autoWidthMode, maxHeight, customWidth }: ContextMenuProps): JSX.Element;
|
|
10
|
+
declare function ContextMenu({ children, autoWidthMode, maxHeight, customWidth, scrollVisibleType }: ContextMenuProps): JSX.Element;
|
|
9
11
|
export default ContextMenu;
|
|
@@ -14,17 +14,38 @@ var __assign = (this && this.__assign) || function () {
|
|
|
14
14
|
};
|
|
15
15
|
return __assign.apply(this, arguments);
|
|
16
16
|
};
|
|
17
|
-
var
|
|
18
|
-
|
|
17
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
18
|
+
if (k2 === undefined) k2 = k;
|
|
19
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
20
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
21
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
22
|
+
}
|
|
23
|
+
Object.defineProperty(o, k2, desc);
|
|
24
|
+
}) : (function(o, m, k, k2) {
|
|
25
|
+
if (k2 === undefined) k2 = k;
|
|
26
|
+
o[k2] = m[k];
|
|
27
|
+
}));
|
|
28
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
29
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
30
|
+
}) : function(o, v) {
|
|
31
|
+
o["default"] = v;
|
|
32
|
+
});
|
|
33
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
34
|
+
if (mod && mod.__esModule) return mod;
|
|
35
|
+
var result = {};
|
|
36
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
37
|
+
__setModuleDefault(result, mod);
|
|
38
|
+
return result;
|
|
19
39
|
};
|
|
20
40
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21
41
|
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
22
|
-
var
|
|
42
|
+
var scrollbarStyle_1 = require("../../../common/styles/scroll/scrollbarStyle");
|
|
43
|
+
var styled_components_1 = __importStar(require("styled-components"));
|
|
23
44
|
function ContextMenu(_a) {
|
|
24
|
-
var children = _a.children, _b = _a.autoWidthMode, autoWidthMode = _b === void 0 ? 'none' : _b, maxHeight = _a.maxHeight, customWidth = _a.customWidth;
|
|
25
|
-
return ((0, jsx_runtime_1.jsx)(S_ContextMenu, __assign({ "x-pds-name": "ContextMenu", "x-pds-element-type": "component", "x-pds-device-type": "mobile", autoWidth: autoWidthMode === 'use', maxHeight: maxHeight, customWidth: customWidth }, { children: children })));
|
|
45
|
+
var children = _a.children, _b = _a.autoWidthMode, autoWidthMode = _b === void 0 ? 'none' : _b, maxHeight = _a.maxHeight, customWidth = _a.customWidth, scrollVisibleType = _a.scrollVisibleType;
|
|
46
|
+
return ((0, jsx_runtime_1.jsx)(S_ContextMenu, __assign({ "x-pds-name": "ContextMenu", "x-pds-element-type": "component", "x-pds-device-type": "mobile", autoWidth: autoWidthMode === 'use', maxHeight: maxHeight, customWidth: customWidth, scrollVisibleType: scrollVisibleType }, { children: children })));
|
|
26
47
|
}
|
|
27
|
-
var S_ContextMenu = styled_components_1.default.ul(
|
|
48
|
+
var S_ContextMenu = styled_components_1.default.ul(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n background-color: ", ";\n border: 1px solid ", ";\n border-radius: 14px;\n box-shadow: ", ";\n box-sizing: border-box;\n list-style: none;\n margin: 0;\n max-height: ", ";\n min-width: 128px;\n overflow-y: auto;\n padding: ", " 0;\n position: relative;\n vertical-align: baseline;\n width: ", ";\n\n z-index: 400;\n\n ", "\n\n ", "\n\n ", "\n"], ["\n background-color: ", ";\n border: 1px solid ", ";\n border-radius: 14px;\n box-shadow: ", ";\n box-sizing: border-box;\n list-style: none;\n margin: 0;\n max-height: ", ";\n min-width: 128px;\n overflow-y: auto;\n padding: ", " 0;\n position: relative;\n vertical-align: baseline;\n width: ", ";\n\n z-index: 400;\n\n ", "\n\n ", "\n\n ", "\n"])), function (_a) {
|
|
28
49
|
var theme = _a.theme;
|
|
29
50
|
return theme.ui_cpnt_contextmenu_base;
|
|
30
51
|
}, function (_a) {
|
|
@@ -51,6 +72,16 @@ var S_ContextMenu = styled_components_1.default.ul(templateObject_1 || (template
|
|
|
51
72
|
}, function (_a) {
|
|
52
73
|
var customWidth = _a.customWidth;
|
|
53
74
|
return customWidth && "width: ".concat(customWidth, ";min-width: ").concat(customWidth, ";");
|
|
75
|
+
}, function (_a) {
|
|
76
|
+
var scrollVisibleType = _a.scrollVisibleType;
|
|
77
|
+
return scrollVisibleType &&
|
|
78
|
+
{
|
|
79
|
+
visible: scrollbarStyle_1.scrollbarStyle,
|
|
80
|
+
hidden: scrollbarStyle_1.scrollInvisible
|
|
81
|
+
}[scrollVisibleType];
|
|
82
|
+
}, function (_a) {
|
|
83
|
+
var scrollVisibleType = _a.scrollVisibleType;
|
|
84
|
+
return scrollVisibleType === 'visible' && (0, styled_components_1.css)(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n ::-webkit-scrollbar-track {\n margin-bottom: 7px;\n margin-top: 7px;\n }\n "], ["\n ::-webkit-scrollbar-track {\n margin-bottom: 7px;\n margin-top: 7px;\n }\n "])));
|
|
54
85
|
});
|
|
55
86
|
exports.default = ContextMenu;
|
|
56
|
-
var templateObject_1;
|
|
87
|
+
var templateObject_1, templateObject_2;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import type { PDSTextType } from '../../../common';
|
|
3
|
+
import type { ScrollVisibleType } from '../../../common/styles/scroll/scrollbarStyle';
|
|
3
4
|
import type { DropdownGroupInfo, DropdownValueOption } from '../../../common/types';
|
|
4
5
|
type Props = {
|
|
5
6
|
colorTheme?: 'none' | 'dark' | 'white';
|
|
@@ -15,7 +16,8 @@ type Props = {
|
|
|
15
16
|
displayType?: 'text_only' | 'icon_only' | 'icon_text';
|
|
16
17
|
fontWeight?: 'bold' | 'regular';
|
|
17
18
|
groupInfoArray?: DropdownGroupInfo[];
|
|
19
|
+
scrollVisibleType?: ScrollVisibleType;
|
|
18
20
|
onChange?: (option: DropdownValueOption) => void;
|
|
19
21
|
};
|
|
20
|
-
declare function Dropdown({ colorTheme, value, defaultValue, hintText, maxHeightItemNumber, responsiveMode, size, state, valueArray, customWidth, displayType, fontWeight, groupInfoArray, onChange }: Props): JSX.Element;
|
|
22
|
+
declare function Dropdown({ colorTheme, value, defaultValue, hintText, maxHeightItemNumber, responsiveMode, size, state, valueArray, customWidth, displayType, fontWeight, groupInfoArray, scrollVisibleType, onChange }: Props): JSX.Element;
|
|
21
23
|
export default Dropdown;
|
|
@@ -57,11 +57,11 @@ function Dropdown(_a) {
|
|
|
57
57
|
// selectionMode = 'single',
|
|
58
58
|
_e = _a.size,
|
|
59
59
|
// selectionMode = 'single',
|
|
60
|
-
size = _e === void 0 ? 'large' : _e, _f = _a.state, state = _f === void 0 ? 'normal' : _f, valueArray = _a.valueArray, customWidth = _a.customWidth, _g = _a.displayType, displayType = _g === void 0 ? 'text_only' : _g, _h = _a.fontWeight, fontWeight = _h === void 0 ? 'regular' : _h, groupInfoArray = _a.groupInfoArray, onChange = _a.onChange;
|
|
61
|
-
var
|
|
62
|
-
var
|
|
63
|
-
var
|
|
64
|
-
var
|
|
60
|
+
size = _e === void 0 ? 'large' : _e, _f = _a.state, state = _f === void 0 ? 'normal' : _f, valueArray = _a.valueArray, customWidth = _a.customWidth, _g = _a.displayType, displayType = _g === void 0 ? 'text_only' : _g, _h = _a.fontWeight, fontWeight = _h === void 0 ? 'regular' : _h, groupInfoArray = _a.groupInfoArray, _j = _a.scrollVisibleType, scrollVisibleType = _j === void 0 ? 'visible' : _j, onChange = _a.onChange;
|
|
61
|
+
var _k = (0, react_1.useState)(false), isFocused = _k[0], setIsFocused = _k[1];
|
|
62
|
+
var _l = (0, react_1.useState)(null), selectedValue = _l[0], setSelectedValue = _l[1];
|
|
63
|
+
var _m = (0, react_1.useState)(null), contextMenuSizeOffset = _m[0], setContextMenuSizeOffset = _m[1];
|
|
64
|
+
var _o = (0, react_1.useState)(null), dropdownPositionOffset = _o[0], setDropdownPositionOffset = _o[1];
|
|
65
65
|
var contextMenuRef = (0, react_1.useRef)(null);
|
|
66
66
|
var dropdownRef = (0, react_1.useRef)(null);
|
|
67
67
|
/**
|
|
@@ -261,7 +261,7 @@ function Dropdown(_a) {
|
|
|
261
261
|
});
|
|
262
262
|
}
|
|
263
263
|
return ((0, jsx_runtime_1.jsxs)(S_Dropdown, __assign({ "x-pds-name": "Dropdown", "x-pds-element-type": "component", "x-pds-device-type": "mobile", className: "container", ref: dropdownRef, size: size, tabIndex: 0, onBlur: handleBlur, responsiveMode: responsiveMode, customWidth: customWidth, displayType: displayType }, { children: [(0, jsx_runtime_1.jsxs)(S_Select, __assign({ size: size, onClick: handleClick, isFocused: isFocused, state: state, colorTheme: colorTheme, responsiveMode: responsiveMode, customWidth: customWidth, displayType: displayType }, { children: [(0, jsx_runtime_1.jsxs)(S_TextLabel, __assign({ size: size, responsiveMode: responsiveMode, displayType: displayType }, { children: [(displayType === 'icon_only' || displayType === 'icon_text') && (selectedValue === null || selectedValue === void 0 ? void 0 : selectedValue.iconName) && ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)(hybrid_1.Icon, { size: size === 'small' ? 20 : 24, iconName: selectedValue.iconName, fillType: selectedValue.iconFillType, colorKey: getIconColorKey() }), displayType === 'icon_text' && (0, jsx_runtime_1.jsx)(hybrid_1.Spacing, { size: "spacing_b", spacingType: "width" })] })), (displayType === 'text_only' || displayType === 'icon_text') && ((0, jsx_runtime_1.jsx)(TextLabel_1.TextLabel, { text: (selectedValue === null || selectedValue === void 0 ? void 0 : selectedValue.text) || (value === null || value === void 0 ? void 0 : value.text) || (defaultValue === null || defaultValue === void 0 ? void 0 : defaultValue.text) || hintText, styleTheme: fontWeight === 'bold' ? 'form2Bold' : 'form2Regular', singleLineMode: "use", colorTheme: getTextColorTheme(), colorOverride: getTextColorOverride(), ellipsisMode: "use", lineLimit: 1, wordBreak: "break_all" }))] })), (0, jsx_runtime_1.jsx)(hybrid_1.Icon, { size: 16, fillType: "line", iconName: isFocused ? 'ic_arrow_up' : 'ic_arrow_down', colorKey: getArrowIconColorKey() })] })), isFocused &&
|
|
264
|
-
(0, react_dom_1.createPortal)((0, jsx_runtime_1.jsx)(S_ContextMenuWrapper, __assign({ ref: contextMenuRef, contextMenuPositionCss: contextMenuPositionCss }, { children: (0, jsx_runtime_1.jsx)(ContextMenu_1.ContextMenu, __assign({ autoWidthMode: "use", maxHeight: maxHeight, customWidth: getCustomWidth() }, { children: groupInfoArray
|
|
264
|
+
(0, react_dom_1.createPortal)((0, jsx_runtime_1.jsx)(S_ContextMenuWrapper, __assign({ ref: contextMenuRef, contextMenuPositionCss: contextMenuPositionCss }, { children: (0, jsx_runtime_1.jsx)(ContextMenu_1.ContextMenu, __assign({ autoWidthMode: "use", maxHeight: maxHeight, customWidth: getCustomWidth(), scrollVisibleType: scrollVisibleType }, { children: groupInfoArray
|
|
265
265
|
? Object.keys(resultByGroup).map(function (key) {
|
|
266
266
|
var _a, _b, _c;
|
|
267
267
|
return ((0, jsx_runtime_1.jsxs)(S_Group, __assign({ size: size, hasGroupTitle: Boolean((_a = groupInfoArray.find(function (groupInfo) { return groupInfo.key === key; })) === null || _a === void 0 ? void 0 : _a.title) }, { children: [((_b = groupInfoArray.find(function (groupInfo) { return groupInfo.key === key; })) === null || _b === void 0 ? void 0 : _b.title) && ((0, jsx_runtime_1.jsx)(S_Wrapper, __assign({ size: size }, { children: (0, jsx_runtime_1.jsx)(TextLabel_1.TextLabel, { text: (_c = groupInfoArray.find(function (groupInfo) { return groupInfo.key === key; })) === null || _c === void 0 ? void 0 : _c.title, colorTheme: "sysTextSecondary", styleTheme: "caption1Bold", letterSpacing: "0.15em" }) }))), resultByGroup[key].map(function (el) { return ((0, jsx_runtime_1.jsx)("div", __assign({ onMouseDown: function () { return handleClickOption(el); } }, { children: (0, jsx_runtime_1.jsx)(ContextMenuItem_1.ContextMenuItem, { option: el, size: size, isSelected: (selectedValue === null || selectedValue === void 0 ? void 0 : selectedValue.value) === el.value, state: el.state, displayType: displayType }) }), el.value)); })] }), key));
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { UiColors } from '../../../common';
|
|
2
|
+
import type { ScrollVisibleType } from '../../../common/styles/scroll/scrollbarStyle';
|
|
2
3
|
import type react from 'react';
|
|
3
4
|
type PaddingSpacingType = 'none' | keyof typeof paddingSpacing;
|
|
4
5
|
export type ContentSheetProps = {
|
|
@@ -21,6 +22,7 @@ export type ContentSheetProps = {
|
|
|
21
22
|
loadingWidth?: string;
|
|
22
23
|
loadingHeight?: string;
|
|
23
24
|
isLoading?: boolean;
|
|
25
|
+
scrollVisibleType?: ScrollVisibleType;
|
|
24
26
|
onClick?: (e: React.MouseEvent<HTMLDivElement>) => void;
|
|
25
27
|
};
|
|
26
28
|
export type StyleProps = {
|
|
@@ -38,6 +40,7 @@ export type StyleProps = {
|
|
|
38
40
|
paddingRight?: PaddingSpacingType;
|
|
39
41
|
paddingBottom?: PaddingSpacingType;
|
|
40
42
|
paddingLeft?: PaddingSpacingType;
|
|
43
|
+
scrollVisibleType?: ScrollVisibleType;
|
|
41
44
|
};
|
|
42
45
|
declare const paddingSpacing: {
|
|
43
46
|
readonly spacing_a: "spacingA";
|
|
@@ -55,5 +58,5 @@ declare const paddingSpacing: {
|
|
|
55
58
|
readonly spacing_m: "spacingM";
|
|
56
59
|
readonly spacing_n: "spacingN";
|
|
57
60
|
};
|
|
58
|
-
declare function ContentSheet({ width, height, backgroundColorTheme, overrideBackgroundColorKey, borderMode, borderWidth, borderColorTheme, overrideBorderColorKey, shapeType, radius, paddingTop, paddingRight, paddingBottom, paddingLeft, overrideCSS, children, loadingWidth, loadingHeight, isLoading, onClick }: ContentSheetProps): JSX.Element;
|
|
61
|
+
declare function ContentSheet({ width, height, backgroundColorTheme, overrideBackgroundColorKey, borderMode, borderWidth, borderColorTheme, overrideBorderColorKey, shapeType, radius, paddingTop, paddingRight, paddingBottom, paddingLeft, overrideCSS, children, loadingWidth, loadingHeight, isLoading, scrollVisibleType, onClick }: ContentSheetProps): JSX.Element;
|
|
59
62
|
export default ContentSheet;
|
|
@@ -39,6 +39,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
39
39
|
};
|
|
40
40
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
41
41
|
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
42
|
+
var scrollbarStyle_1 = require("../../../common/styles/scroll/scrollbarStyle");
|
|
42
43
|
var styled_components_1 = __importStar(require("styled-components"));
|
|
43
44
|
var styles_1 = require("../../../common/styles");
|
|
44
45
|
var backgroundColorTheme = {
|
|
@@ -71,7 +72,7 @@ var paddingSpacing = {
|
|
|
71
72
|
spacing_n: 'spacingN'
|
|
72
73
|
};
|
|
73
74
|
function ContentSheet(_a) {
|
|
74
|
-
var width = _a.width, height = _a.height, _b = _a.backgroundColorTheme, backgroundColorTheme = _b === void 0 ? 'base3' : _b, overrideBackgroundColorKey = _a.overrideBackgroundColorKey, _c = _a.borderMode, borderMode = _c === void 0 ? 'none' : _c, _d = _a.borderWidth, borderWidth = _d === void 0 ? 1 : _d, _e = _a.borderColorTheme, borderColorTheme = _e === void 0 ? 'grey' : _e, overrideBorderColorKey = _a.overrideBorderColorKey, _f = _a.shapeType, shapeType = _f === void 0 ? 'rectangle' : _f, _g = _a.radius, radius = _g === void 0 ? 24 : _g, _h = _a.paddingTop, paddingTop = _h === void 0 ? 'spacing_e' : _h, _j = _a.paddingRight, paddingRight = _j === void 0 ? 'spacing_e' : _j, _k = _a.paddingBottom, paddingBottom = _k === void 0 ? 'spacing_e' : _k, _l = _a.paddingLeft, paddingLeft = _l === void 0 ? 'spacing_e' : _l, overrideCSS = _a.overrideCSS, children = _a.children, loadingWidth = _a.loadingWidth, loadingHeight = _a.loadingHeight, isLoading = _a.isLoading, onClick = _a.onClick;
|
|
75
|
+
var width = _a.width, height = _a.height, _b = _a.backgroundColorTheme, backgroundColorTheme = _b === void 0 ? 'base3' : _b, overrideBackgroundColorKey = _a.overrideBackgroundColorKey, _c = _a.borderMode, borderMode = _c === void 0 ? 'none' : _c, _d = _a.borderWidth, borderWidth = _d === void 0 ? 1 : _d, _e = _a.borderColorTheme, borderColorTheme = _e === void 0 ? 'grey' : _e, overrideBorderColorKey = _a.overrideBorderColorKey, _f = _a.shapeType, shapeType = _f === void 0 ? 'rectangle' : _f, _g = _a.radius, radius = _g === void 0 ? 24 : _g, _h = _a.paddingTop, paddingTop = _h === void 0 ? 'spacing_e' : _h, _j = _a.paddingRight, paddingRight = _j === void 0 ? 'spacing_e' : _j, _k = _a.paddingBottom, paddingBottom = _k === void 0 ? 'spacing_e' : _k, _l = _a.paddingLeft, paddingLeft = _l === void 0 ? 'spacing_e' : _l, overrideCSS = _a.overrideCSS, children = _a.children, loadingWidth = _a.loadingWidth, loadingHeight = _a.loadingHeight, isLoading = _a.isLoading, _m = _a.scrollVisibleType, scrollVisibleType = _m === void 0 ? 'visible' : _m, onClick = _a.onClick;
|
|
75
76
|
var handleClick = function (e) {
|
|
76
77
|
if (onClick) {
|
|
77
78
|
onClick(e);
|
|
@@ -81,7 +82,7 @@ function ContentSheet(_a) {
|
|
|
81
82
|
if (isLoading) {
|
|
82
83
|
return ((0, jsx_runtime_1.jsx)(S_LoadingContentSheet, { "$width": width !== null && width !== void 0 ? width : loadingWidth, "$height": height !== null && height !== void 0 ? height : loadingHeight, shapeType: shapeType, "$radius": radius }));
|
|
83
84
|
}
|
|
84
|
-
return ((0, jsx_runtime_1.jsx)(S_ContentSheet, __assign({ "x-pds-name": "ContentSheet", "x-pds-element-type": "panel", "x-pds-device-type": "mobile", "$width": width, "$height": height, "$backgroundColorTheme": backgroundColorTheme, overrideBackgroundColorKey: overrideBackgroundColorKey, borderMode: borderMode, "$borderWidth": borderWidth, "$borderColorTheme": borderColorTheme, overrideBorderColorKey: overrideBorderColorKey, shapeType: shapeType, "$radius": radius, paddingTop: paddingTop, paddingRight: paddingRight, paddingBottom: paddingBottom, paddingLeft: paddingLeft, style: overrideCSS, onClick: handleClick }, { children: children })));
|
|
85
|
+
return ((0, jsx_runtime_1.jsx)(S_ContentSheet, __assign({ "x-pds-name": "ContentSheet", "x-pds-element-type": "panel", "x-pds-device-type": "mobile", "$width": width, "$height": height, "$backgroundColorTheme": backgroundColorTheme, overrideBackgroundColorKey: overrideBackgroundColorKey, borderMode: borderMode, "$borderWidth": borderWidth, "$borderColorTheme": borderColorTheme, overrideBorderColorKey: overrideBorderColorKey, shapeType: shapeType, "$radius": radius, paddingTop: paddingTop, paddingRight: paddingRight, paddingBottom: paddingBottom, paddingLeft: paddingLeft, style: overrideCSS, onClick: handleClick, scrollVisibleType: scrollVisibleType }, { children: children })));
|
|
85
86
|
};
|
|
86
87
|
return ContentSheetVariation();
|
|
87
88
|
}
|
|
@@ -112,7 +113,7 @@ var overrideStyle = (0, styled_components_1.css)(templateObject_6 || (templateOb
|
|
|
112
113
|
var theme = _a.theme, overrideBorderColorKey = _a.overrideBorderColorKey;
|
|
113
114
|
return overrideBorderColorKey && theme[overrideBorderColorKey];
|
|
114
115
|
});
|
|
115
|
-
var S_ContentSheet = styled_components_1.default.div(templateObject_7 || (templateObject_7 = __makeTemplateObject(["\n background-color: ", ";\n border-color: ", ";\n border-style: ", ";\n border-width: ", ";\n box-sizing: border-box;\n height: ", ";\n width: ", ";\n\n ", ";\n\n ", ";\n ", ";\n ", ";\n ", ";\n\n ", "\n"], ["\n background-color: ", ";\n border-color: ", ";\n border-style: ", ";\n border-width: ", ";\n box-sizing: border-box;\n height: ", ";\n width: ", ";\n\n ", ";\n\n ", ";\n ", ";\n ", ";\n ", ";\n\n ", "\n"])), function (_a) {
|
|
116
|
+
var S_ContentSheet = styled_components_1.default.div(templateObject_7 || (templateObject_7 = __makeTemplateObject(["\n background-color: ", ";\n border-color: ", ";\n border-style: ", ";\n border-width: ", ";\n box-sizing: border-box;\n height: ", ";\n overflow-y: auto;\n width: ", ";\n\n ", ";\n\n ", ";\n ", ";\n ", ";\n ", ";\n\n ", "\n\n ", "\n"], ["\n background-color: ", ";\n border-color: ", ";\n border-style: ", ";\n border-width: ", ";\n box-sizing: border-box;\n height: ", ";\n overflow-y: auto;\n width: ", ";\n\n ", ";\n\n ", ";\n ", ";\n ", ";\n ", ";\n\n ", "\n\n ", "\n"])), function (_a) {
|
|
116
117
|
var theme = _a.theme, $backgroundColorTheme = _a.$backgroundColorTheme;
|
|
117
118
|
return $backgroundColorTheme && theme[backgroundColorTheme[$backgroundColorTheme]];
|
|
118
119
|
}, function (_a) {
|
|
@@ -145,6 +146,13 @@ var S_ContentSheet = styled_components_1.default.div(templateObject_7 || (templa
|
|
|
145
146
|
}, function (_a) {
|
|
146
147
|
var paddingLeft = _a.paddingLeft;
|
|
147
148
|
return paddingLeft !== 'none' && paddingLeftStyle;
|
|
149
|
+
}, function (_a) {
|
|
150
|
+
var scrollVisibleType = _a.scrollVisibleType;
|
|
151
|
+
return scrollVisibleType &&
|
|
152
|
+
{
|
|
153
|
+
visible: scrollbarStyle_1.scrollbarWithPaddingStyle,
|
|
154
|
+
hidden: scrollbarStyle_1.scrollInvisible
|
|
155
|
+
}[scrollVisibleType];
|
|
148
156
|
}, overrideStyle);
|
|
149
157
|
var S_LoadingContentSheet = (0, styled_components_1.default)(S_ContentSheet)(templateObject_8 || (templateObject_8 = __makeTemplateObject(["\n ", "\n"], ["\n ", "\n"])), styles_1.skeletonLoadingStyle);
|
|
150
158
|
exports.default = ContentSheet;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { UiColors } from '../../../common';
|
|
2
|
+
import type { ScrollVisibleType } from '../../../common/styles/scroll/scrollbarStyle';
|
|
2
3
|
import type { CSSProperties } from 'react';
|
|
3
4
|
type PaddingSpacingType = 'none' | keyof typeof paddingSpacing;
|
|
4
5
|
export type SectionSheetProps = {
|
|
@@ -18,6 +19,7 @@ export type SectionSheetProps = {
|
|
|
18
19
|
paddingLeft?: PaddingSpacingType;
|
|
19
20
|
overrideCSS?: CSSProperties;
|
|
20
21
|
children: React.ReactNode;
|
|
22
|
+
scrollVisibleType?: ScrollVisibleType;
|
|
21
23
|
onClick?: (e: React.MouseEvent<HTMLDivElement>) => void;
|
|
22
24
|
};
|
|
23
25
|
export type StyleProps = {
|
|
@@ -35,6 +37,7 @@ export type StyleProps = {
|
|
|
35
37
|
paddingRight?: PaddingSpacingType;
|
|
36
38
|
paddingBottom?: PaddingSpacingType;
|
|
37
39
|
paddingLeft?: PaddingSpacingType;
|
|
40
|
+
scrollVisibleType?: ScrollVisibleType;
|
|
38
41
|
};
|
|
39
42
|
declare const paddingSpacing: {
|
|
40
43
|
readonly spacing_a: "spacingA";
|
|
@@ -52,5 +55,5 @@ declare const paddingSpacing: {
|
|
|
52
55
|
readonly spacing_m: "spacingM";
|
|
53
56
|
readonly spacing_n: "spacingN";
|
|
54
57
|
};
|
|
55
|
-
declare function SectionSheet({ width, height, backgroundColorTheme, overrideBackgroundColorKey, borderMode, borderWidth, borderColorTheme, overrideBorderColorKey, shapeType, radius, paddingTop, paddingRight, paddingBottom, paddingLeft, overrideCSS, children, onClick }: SectionSheetProps): JSX.Element;
|
|
58
|
+
declare function SectionSheet({ width, height, backgroundColorTheme, overrideBackgroundColorKey, borderMode, borderWidth, borderColorTheme, overrideBorderColorKey, shapeType, radius, paddingTop, paddingRight, paddingBottom, paddingLeft, overrideCSS, children, scrollVisibleType, onClick }: SectionSheetProps): JSX.Element;
|
|
56
59
|
export default SectionSheet;
|
|
@@ -39,6 +39,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
39
39
|
};
|
|
40
40
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
41
41
|
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
42
|
+
var scrollbarStyle_1 = require("../../../common/styles/scroll/scrollbarStyle");
|
|
42
43
|
var styled_components_1 = __importStar(require("styled-components"));
|
|
43
44
|
var backgroundColorTheme = {
|
|
44
45
|
transparent: 'ui_cpnt_sheet_base_03',
|
|
@@ -70,13 +71,13 @@ var paddingSpacing = {
|
|
|
70
71
|
spacing_n: 'spacingN'
|
|
71
72
|
};
|
|
72
73
|
function SectionSheet(_a) {
|
|
73
|
-
var width = _a.width, height = _a.height, _b = _a.backgroundColorTheme, backgroundColorTheme = _b === void 0 ? 'transparent' : _b, overrideBackgroundColorKey = _a.overrideBackgroundColorKey, _c = _a.borderMode, borderMode = _c === void 0 ? 'none' : _c, _d = _a.borderWidth, borderWidth = _d === void 0 ? 1 : _d, _e = _a.borderColorTheme, borderColorTheme = _e === void 0 ? 'grey' : _e, overrideBorderColorKey = _a.overrideBorderColorKey, _f = _a.shapeType, shapeType = _f === void 0 ? 'rectangle' : _f, _g = _a.radius, radius = _g === void 0 ? 24 : _g, _h = _a.paddingTop, paddingTop = _h === void 0 ? 'spacing_e' : _h, _j = _a.paddingRight, paddingRight = _j === void 0 ? 'spacing_e' : _j, _k = _a.paddingBottom, paddingBottom = _k === void 0 ? 'spacing_e' : _k, _l = _a.paddingLeft, paddingLeft = _l === void 0 ? 'spacing_e' : _l, overrideCSS = _a.overrideCSS, children = _a.children, onClick = _a.onClick;
|
|
74
|
+
var width = _a.width, height = _a.height, _b = _a.backgroundColorTheme, backgroundColorTheme = _b === void 0 ? 'transparent' : _b, overrideBackgroundColorKey = _a.overrideBackgroundColorKey, _c = _a.borderMode, borderMode = _c === void 0 ? 'none' : _c, _d = _a.borderWidth, borderWidth = _d === void 0 ? 1 : _d, _e = _a.borderColorTheme, borderColorTheme = _e === void 0 ? 'grey' : _e, overrideBorderColorKey = _a.overrideBorderColorKey, _f = _a.shapeType, shapeType = _f === void 0 ? 'rectangle' : _f, _g = _a.radius, radius = _g === void 0 ? 24 : _g, _h = _a.paddingTop, paddingTop = _h === void 0 ? 'spacing_e' : _h, _j = _a.paddingRight, paddingRight = _j === void 0 ? 'spacing_e' : _j, _k = _a.paddingBottom, paddingBottom = _k === void 0 ? 'spacing_e' : _k, _l = _a.paddingLeft, paddingLeft = _l === void 0 ? 'spacing_e' : _l, overrideCSS = _a.overrideCSS, children = _a.children, _m = _a.scrollVisibleType, scrollVisibleType = _m === void 0 ? 'visible' : _m, onClick = _a.onClick;
|
|
74
75
|
var handleClick = function (e) {
|
|
75
76
|
if (onClick) {
|
|
76
77
|
onClick(e);
|
|
77
78
|
}
|
|
78
79
|
};
|
|
79
|
-
return ((0, jsx_runtime_1.jsx)(S_SectionSheet, __assign({ "x-pds-name": "SectionSheet", "x-pds-element-type": "panel", "x-pds-device-type": "mobile", "$width": width, "$height": height, "$backgroundColorTheme": backgroundColorTheme, overrideBackgroundColorKey: overrideBackgroundColorKey, borderMode: borderMode, "$borderWidth": borderWidth, "$borderColorTheme": borderColorTheme, overrideBorderColorKey: overrideBorderColorKey, shapeType: shapeType, "$radius": radius, paddingTop: paddingTop, paddingRight: paddingRight, paddingBottom: paddingBottom, paddingLeft: paddingLeft, style: overrideCSS, onClick: handleClick }, { children: children })));
|
|
80
|
+
return ((0, jsx_runtime_1.jsx)(S_SectionSheet, __assign({ "x-pds-name": "SectionSheet", "x-pds-element-type": "panel", "x-pds-device-type": "mobile", "$width": width, "$height": height, "$backgroundColorTheme": backgroundColorTheme, overrideBackgroundColorKey: overrideBackgroundColorKey, borderMode: borderMode, "$borderWidth": borderWidth, "$borderColorTheme": borderColorTheme, overrideBorderColorKey: overrideBorderColorKey, shapeType: shapeType, "$radius": radius, paddingTop: paddingTop, paddingRight: paddingRight, paddingBottom: paddingBottom, paddingLeft: paddingLeft, style: overrideCSS, onClick: handleClick, scrollVisibleType: scrollVisibleType }, { children: children })));
|
|
80
81
|
}
|
|
81
82
|
var radiusStyle = (0, styled_components_1.css)(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n border-radius: ", ";\n"], ["\n border-radius: ", ";\n"])), function (_a) {
|
|
82
83
|
var $radius = _a.$radius;
|
|
@@ -105,7 +106,7 @@ var advancedCSS = (0, styled_components_1.css)(templateObject_6 || (templateObje
|
|
|
105
106
|
var theme = _a.theme, overrideBorderColorKey = _a.overrideBorderColorKey;
|
|
106
107
|
return overrideBorderColorKey && theme[overrideBorderColorKey];
|
|
107
108
|
});
|
|
108
|
-
var S_SectionSheet = styled_components_1.default.div(templateObject_7 || (templateObject_7 = __makeTemplateObject(["\n background-color: ", ";\n border-color: ", ";\n border-style: ", ";\n border-width: ", ";\n box-sizing: border-box;\n height: ", ";\n width: ", ";\n\n ", ";\n\n ", ";\n ", ";\n ", ";\n ", ";\n\n ", "\n"], ["\n background-color: ", ";\n border-color: ", ";\n border-style: ", ";\n border-width: ", ";\n box-sizing: border-box;\n height: ", ";\n width: ", ";\n\n ", ";\n\n ", ";\n ", ";\n ", ";\n ", ";\n\n ", "\n"])), function (_a) {
|
|
109
|
+
var S_SectionSheet = styled_components_1.default.div(templateObject_7 || (templateObject_7 = __makeTemplateObject(["\n background-color: ", ";\n border-color: ", ";\n border-style: ", ";\n border-width: ", ";\n box-sizing: border-box;\n height: ", ";\n overflow-y: auto;\n width: ", ";\n\n ", ";\n\n ", ";\n ", ";\n ", ";\n ", ";\n\n ", "\n\n ", "\n"], ["\n background-color: ", ";\n border-color: ", ";\n border-style: ", ";\n border-width: ", ";\n box-sizing: border-box;\n height: ", ";\n overflow-y: auto;\n width: ", ";\n\n ", ";\n\n ", ";\n ", ";\n ", ";\n ", ";\n\n ", "\n\n ", "\n"])), function (_a) {
|
|
109
110
|
var theme = _a.theme, $backgroundColorTheme = _a.$backgroundColorTheme;
|
|
110
111
|
return $backgroundColorTheme && theme[backgroundColorTheme[$backgroundColorTheme]];
|
|
111
112
|
}, function (_a) {
|
|
@@ -138,6 +139,13 @@ var S_SectionSheet = styled_components_1.default.div(templateObject_7 || (templa
|
|
|
138
139
|
}, function (_a) {
|
|
139
140
|
var paddingLeft = _a.paddingLeft;
|
|
140
141
|
return paddingLeft !== 'none' && paddingLeftStyle;
|
|
142
|
+
}, function (_a) {
|
|
143
|
+
var scrollVisibleType = _a.scrollVisibleType;
|
|
144
|
+
return scrollVisibleType &&
|
|
145
|
+
{
|
|
146
|
+
visible: scrollbarStyle_1.scrollbarStyle,
|
|
147
|
+
hidden: scrollbarStyle_1.scrollInvisible
|
|
148
|
+
}[scrollVisibleType];
|
|
141
149
|
}, advancedCSS);
|
|
142
150
|
exports.default = SectionSheet;
|
|
143
151
|
var templateObject_1, templateObject_2, templateObject_3, templateObject_4, templateObject_5, templateObject_6, templateObject_7;
|
package/package.json
CHANGED
package/release-note.md
CHANGED