@coorpacademy/components 11.33.13-alpha.18 → 11.33.13-alpha.19
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/es/molecule/bullet-point-menu-button/index.d.ts.map +1 -1
- package/es/molecule/bullet-point-menu-button/index.js +2 -6
- package/es/molecule/bullet-point-menu-button/index.js.map +1 -1
- package/es/molecule/bullet-point-menu-button/style.css +0 -10
- package/lib/molecule/bullet-point-menu-button/index.d.ts.map +1 -1
- package/lib/molecule/bullet-point-menu-button/index.js +2 -6
- package/lib/molecule/bullet-point-menu-button/index.js.map +1 -1
- package/lib/molecule/bullet-point-menu-button/style.css +0 -10
- package/package.json +2 -2
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/molecule/bullet-point-menu-button/index.tsx"],"names":[],"mappings":";AAKA,OAAkB,EAAC,0BAA0B,EAAC,MAAM,SAAS,CAAC;AAG9D,QAAA,MAAM,qBAAqB;YAAW,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/molecule/bullet-point-menu-button/index.tsx"],"names":[],"mappings":";AAKA,OAAkB,EAAC,0BAA0B,EAAC,MAAM,SAAS,CAAC;AAG9D,QAAA,MAAM,qBAAqB;YAAW,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyD/D,CAAC;AAIF,eAAe,qBAAqB,CAAC"}
|
|
@@ -18,9 +18,7 @@ const BulletPointMenuButton = props => {
|
|
|
18
18
|
'data-name': dataName
|
|
19
19
|
} = props;
|
|
20
20
|
const [visible, setVisible] = useState(false);
|
|
21
|
-
console.log('TCL ------> ~ BulletPointMenuButton ~ visible:', visible);
|
|
22
21
|
const handleOnClick = useCallback(() => {
|
|
23
|
-
console.log('on click');
|
|
24
22
|
onClick();
|
|
25
23
|
setVisible(true);
|
|
26
24
|
}, [onClick]);
|
|
@@ -35,10 +33,8 @@ const BulletPointMenuButton = props => {
|
|
|
35
33
|
'data-name': 'button-menu',
|
|
36
34
|
buttons
|
|
37
35
|
};
|
|
38
|
-
const menuStyle = classnames(style.bulletPointMenu, isBulkMenu && style.bulkBulletPointMenu, visible && style.visible);
|
|
39
|
-
console.log('TCL ------> ~ BulletPointMenuButton ~ menuStyle:', menuStyle);
|
|
40
36
|
const menu = /*#__PURE__*/React.createElement("div", {
|
|
41
|
-
className:
|
|
37
|
+
className: classnames(style.bulletPointMenu, isBulkMenu && style.bulkBulletPointMenu),
|
|
42
38
|
"data-name": "menu-wrapper",
|
|
43
39
|
"aria-label": menuAriaLabel
|
|
44
40
|
}, /*#__PURE__*/React.createElement(ButtonMenu, menuProps));
|
|
@@ -56,7 +52,7 @@ const BulletPointMenuButton = props => {
|
|
|
56
52
|
"data-name": "bullet-point-wrapper"
|
|
57
53
|
}, /*#__PURE__*/React.createElement(ButtonLinkIcon, _extends({}, bulletPointButtonProps, {
|
|
58
54
|
"data-name": dataName
|
|
59
|
-
})), menu);
|
|
55
|
+
})), visible ? menu : null);
|
|
60
56
|
};
|
|
61
57
|
BulletPointMenuButton.propTypes = process.env.NODE_ENV !== "production" ? propTypes : {};
|
|
62
58
|
export default BulletPointMenuButton;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","names":["React","useCallback","useState","useEffect","classnames","ButtonLinkIcon","ButtonMenu","propTypes","style","BulletPointMenuButton","props","disabled","buttonAriaLabel","menuAriaLabel","onClick","_noop","buttons","menuButtonClassName","isBulkMenu","dataName","visible","setVisible","
|
|
1
|
+
{"version":3,"file":"index.js","names":["React","useCallback","useState","useEffect","classnames","ButtonLinkIcon","ButtonMenu","propTypes","style","BulletPointMenuButton","props","disabled","buttonAriaLabel","menuAriaLabel","onClick","_noop","buttons","menuButtonClassName","isBulkMenu","dataName","visible","setVisible","handleOnClick","handleMouseDown","document","addEventListener","removeEventListener","menuProps","menu","createElement","className","bulletPointMenu","bulkBulletPointMenu","bulletPointButtonProps","size","icon","bulletPointWrapper","_extends","process","env","NODE_ENV"],"sources":["../../../src/molecule/bullet-point-menu-button/index.tsx"],"sourcesContent":["import React, {useCallback, useState, useEffect} from 'react';\nimport classnames from 'classnames';\nimport {noop} from 'lodash/fp';\nimport ButtonLinkIcon from '../../atom/button-link-icon';\nimport ButtonMenu from '../../atom/button-menu';\nimport propTypes, {BulletPointMenuButtonProps} from './types';\nimport style from './style.css';\n\nconst BulletPointMenuButton = (props: BulletPointMenuButtonProps) => {\n const {\n disabled = false,\n buttonAriaLabel,\n menuAriaLabel,\n onClick = noop,\n buttons,\n menuButtonClassName,\n isBulkMenu,\n 'data-name': dataName\n } = props;\n const [visible, setVisible] = useState(false);\n\n const handleOnClick = useCallback(() => {\n onClick();\n setVisible(true);\n }, [onClick]);\n\n useEffect(() => {\n const handleMouseDown = () => setVisible(false);\n document.addEventListener('mousedown', handleMouseDown);\n return () => {\n document.removeEventListener('mousedown', handleMouseDown);\n };\n }, []);\n\n const menuProps = {\n 'data-name': 'button-menu',\n buttons\n };\n\n const menu = (\n <div\n className={classnames(style.bulletPointMenu, isBulkMenu && style.bulkBulletPointMenu)}\n data-name=\"menu-wrapper\"\n aria-label={menuAriaLabel}\n >\n <ButtonMenu {...menuProps} />\n </div>\n );\n\n const bulletPointButtonProps = {\n size: 'default',\n 'aria-label': buttonAriaLabel,\n 'data-name': 'bullet-point-button',\n icon: 'bullet-point',\n onClick: handleOnClick,\n disabled,\n className: menuButtonClassName\n };\n\n return (\n <div className={style.bulletPointWrapper} data-name=\"bullet-point-wrapper\">\n <ButtonLinkIcon {...bulletPointButtonProps} data-name={dataName} />\n {visible ? menu : null}\n </div>\n );\n};\n\nBulletPointMenuButton.propTypes = propTypes;\n\nexport default BulletPointMenuButton;\n"],"mappings":";;AAAA,OAAOA,KAAK,IAAGC,WAAW,EAAEC,QAAQ,EAAEC,SAAS,QAAO,OAAO;AAC7D,OAAOC,UAAU,MAAM,YAAY;AAEnC,OAAOC,cAAc,MAAM,6BAA6B;AACxD,OAAOC,UAAU,MAAM,wBAAwB;AAC/C,OAAOC,SAAS,MAAoC,SAAS;AAC7D,OAAOC,KAAK,MAAM,aAAa;AAE/B,MAAMC,qBAAqB,GAAIC,KAAiC,IAAK;EACnE,MAAM;IACJC,QAAQ,GAAG,KAAK;IAChBC,eAAe;IACfC,aAAa;IACbC,OAAO,GAAAC,KAAO;IACdC,OAAO;IACPC,mBAAmB;IACnBC,UAAU;IACV,WAAW,EAAEC;EACf,CAAC,GAAGT,KAAK;EACT,MAAM,CAACU,OAAO,EAAEC,UAAU,CAAC,GAAGnB,QAAQ,CAAC,KAAK,CAAC;EAE7C,MAAMoB,aAAa,GAAGrB,WAAW,CAAC,MAAM;IACtCa,OAAO,CAAC,CAAC;IACTO,UAAU,CAAC,IAAI,CAAC;EAClB,CAAC,EAAE,CAACP,OAAO,CAAC,CAAC;EAEbX,SAAS,CAAC,MAAM;IACd,MAAMoB,eAAe,GAAGA,CAAA,KAAMF,UAAU,CAAC,KAAK,CAAC;IAC/CG,QAAQ,CAACC,gBAAgB,CAAC,WAAW,EAAEF,eAAe,CAAC;IACvD,OAAO,MAAM;MACXC,QAAQ,CAACE,mBAAmB,CAAC,WAAW,EAAEH,eAAe,CAAC;IAC5D,CAAC;EACH,CAAC,EAAE,EAAE,CAAC;EAEN,MAAMI,SAAS,GAAG;IAChB,WAAW,EAAE,aAAa;IAC1BX;EACF,CAAC;EAED,MAAMY,IAAI,gBACR5B,KAAA,CAAA6B,aAAA;IACEC,SAAS,EAAE1B,UAAU,CAACI,KAAK,CAACuB,eAAe,EAAEb,UAAU,IAAIV,KAAK,CAACwB,mBAAmB,CAAE;IACtF,aAAU,cAAc;IACxB,cAAYnB;EAAc,gBAE1Bb,KAAA,CAAA6B,aAAA,CAACvB,UAAU,EAAKqB,SAAY,CACzB,CACN;EAED,MAAMM,sBAAsB,GAAG;IAC7BC,IAAI,EAAE,SAAS;IACf,YAAY,EAAEtB,eAAe;IAC7B,WAAW,EAAE,qBAAqB;IAClCuB,IAAI,EAAE,cAAc;IACpBrB,OAAO,EAAEQ,aAAa;IACtBX,QAAQ;IACRmB,SAAS,EAAEb;EACb,CAAC;EAED,oBACEjB,KAAA,CAAA6B,aAAA;IAAKC,SAAS,EAAEtB,KAAK,CAAC4B,kBAAmB;IAAC,aAAU;EAAsB,gBACxEpC,KAAA,CAAA6B,aAAA,CAACxB,cAAc,EAAAgC,QAAA,KAAKJ,sBAAsB;IAAE,aAAWd;EAAS,EAAE,CAAC,EAClEC,OAAO,GAAGQ,IAAI,GAAG,IACf,CAAC;AAEV,CAAC;AAEDnB,qBAAqB,CAACF,SAAS,GAAA+B,OAAA,CAAAC,GAAA,CAAAC,QAAA,oBAAGjC,SAAS;AAE3C,eAAeE,qBAAqB","ignoreList":[]}
|
|
@@ -30,19 +30,9 @@
|
|
|
30
30
|
box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.07);
|
|
31
31
|
border-radius: 12px;
|
|
32
32
|
overflow: hidden;
|
|
33
|
-
transition: visibility 0.5s ease, opacity 0.5s ease; background-color: #ffffff;
|
|
34
|
-
visibility: hidden;
|
|
35
|
-
opacity: 0;
|
|
36
33
|
z-index: 99;
|
|
37
34
|
}
|
|
38
35
|
|
|
39
|
-
.visible {
|
|
40
|
-
/* fade in combo */
|
|
41
|
-
max-height: max-content;
|
|
42
|
-
visibility: visible;
|
|
43
|
-
opacity: 1;
|
|
44
|
-
}
|
|
45
|
-
|
|
46
36
|
/*
|
|
47
37
|
bulk theme
|
|
48
38
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/molecule/bullet-point-menu-button/index.tsx"],"names":[],"mappings":";AAKA,OAAkB,EAAC,0BAA0B,EAAC,MAAM,SAAS,CAAC;AAG9D,QAAA,MAAM,qBAAqB;YAAW,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/molecule/bullet-point-menu-button/index.tsx"],"names":[],"mappings":";AAKA,OAAkB,EAAC,0BAA0B,EAAC,MAAM,SAAS,CAAC;AAG9D,QAAA,MAAM,qBAAqB;YAAW,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyD/D,CAAC;AAIF,eAAe,qBAAqB,CAAC"}
|
|
@@ -25,9 +25,7 @@ const BulletPointMenuButton = props => {
|
|
|
25
25
|
'data-name': dataName
|
|
26
26
|
} = props;
|
|
27
27
|
const [visible, setVisible] = (0, _react.useState)(false);
|
|
28
|
-
console.log('TCL ------> ~ BulletPointMenuButton ~ visible:', visible);
|
|
29
28
|
const handleOnClick = (0, _react.useCallback)(() => {
|
|
30
|
-
console.log('on click');
|
|
31
29
|
onClick();
|
|
32
30
|
setVisible(true);
|
|
33
31
|
}, [onClick]);
|
|
@@ -42,10 +40,8 @@ const BulletPointMenuButton = props => {
|
|
|
42
40
|
'data-name': 'button-menu',
|
|
43
41
|
buttons
|
|
44
42
|
};
|
|
45
|
-
const menuStyle = (0, _classnames.default)(_style.default.bulletPointMenu, isBulkMenu && _style.default.bulkBulletPointMenu, visible && _style.default.visible);
|
|
46
|
-
console.log('TCL ------> ~ BulletPointMenuButton ~ menuStyle:', menuStyle);
|
|
47
43
|
const menu = /*#__PURE__*/_react.default.createElement("div", {
|
|
48
|
-
className:
|
|
44
|
+
className: (0, _classnames.default)(_style.default.bulletPointMenu, isBulkMenu && _style.default.bulkBulletPointMenu),
|
|
49
45
|
"data-name": "menu-wrapper",
|
|
50
46
|
"aria-label": menuAriaLabel
|
|
51
47
|
}, /*#__PURE__*/_react.default.createElement(_buttonMenu.default, menuProps));
|
|
@@ -63,7 +59,7 @@ const BulletPointMenuButton = props => {
|
|
|
63
59
|
"data-name": "bullet-point-wrapper"
|
|
64
60
|
}, /*#__PURE__*/_react.default.createElement(_buttonLinkIcon.default, _extends({}, bulletPointButtonProps, {
|
|
65
61
|
"data-name": dataName
|
|
66
|
-
})), menu);
|
|
62
|
+
})), visible ? menu : null);
|
|
67
63
|
};
|
|
68
64
|
BulletPointMenuButton.propTypes = process.env.NODE_ENV !== "production" ? _types.default : {};
|
|
69
65
|
var _default = exports.default = BulletPointMenuButton;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","names":["_react","_interopRequireWildcard","require","_classnames","_interopRequireDefault","_buttonLinkIcon","_buttonMenu","_types","_style","_getRequireWildcardCache","e","WeakMap","r","t","__esModule","default","has","get","n","__proto__","a","Object","defineProperty","getOwnPropertyDescriptor","u","hasOwnProperty","call","i","set","_extends","assign","bind","arguments","length","apply","BulletPointMenuButton","props","disabled","buttonAriaLabel","menuAriaLabel","onClick","_noop2","buttons","menuButtonClassName","isBulkMenu","dataName","visible","setVisible","useState","
|
|
1
|
+
{"version":3,"file":"index.js","names":["_react","_interopRequireWildcard","require","_classnames","_interopRequireDefault","_buttonLinkIcon","_buttonMenu","_types","_style","_getRequireWildcardCache","e","WeakMap","r","t","__esModule","default","has","get","n","__proto__","a","Object","defineProperty","getOwnPropertyDescriptor","u","hasOwnProperty","call","i","set","_extends","assign","bind","arguments","length","apply","BulletPointMenuButton","props","disabled","buttonAriaLabel","menuAriaLabel","onClick","_noop2","buttons","menuButtonClassName","isBulkMenu","dataName","visible","setVisible","useState","handleOnClick","useCallback","useEffect","handleMouseDown","document","addEventListener","removeEventListener","menuProps","menu","createElement","className","classnames","style","bulletPointMenu","bulkBulletPointMenu","bulletPointButtonProps","size","icon","bulletPointWrapper","propTypes","process","env","NODE_ENV","_default","exports"],"sources":["../../../src/molecule/bullet-point-menu-button/index.tsx"],"sourcesContent":["import React, {useCallback, useState, useEffect} from 'react';\nimport classnames from 'classnames';\nimport {noop} from 'lodash/fp';\nimport ButtonLinkIcon from '../../atom/button-link-icon';\nimport ButtonMenu from '../../atom/button-menu';\nimport propTypes, {BulletPointMenuButtonProps} from './types';\nimport style from './style.css';\n\nconst BulletPointMenuButton = (props: BulletPointMenuButtonProps) => {\n const {\n disabled = false,\n buttonAriaLabel,\n menuAriaLabel,\n onClick = noop,\n buttons,\n menuButtonClassName,\n isBulkMenu,\n 'data-name': dataName\n } = props;\n const [visible, setVisible] = useState(false);\n\n const handleOnClick = useCallback(() => {\n onClick();\n setVisible(true);\n }, [onClick]);\n\n useEffect(() => {\n const handleMouseDown = () => setVisible(false);\n document.addEventListener('mousedown', handleMouseDown);\n return () => {\n document.removeEventListener('mousedown', handleMouseDown);\n };\n }, []);\n\n const menuProps = {\n 'data-name': 'button-menu',\n buttons\n };\n\n const menu = (\n <div\n className={classnames(style.bulletPointMenu, isBulkMenu && style.bulkBulletPointMenu)}\n data-name=\"menu-wrapper\"\n aria-label={menuAriaLabel}\n >\n <ButtonMenu {...menuProps} />\n </div>\n );\n\n const bulletPointButtonProps = {\n size: 'default',\n 'aria-label': buttonAriaLabel,\n 'data-name': 'bullet-point-button',\n icon: 'bullet-point',\n onClick: handleOnClick,\n disabled,\n className: menuButtonClassName\n };\n\n return (\n <div className={style.bulletPointWrapper} data-name=\"bullet-point-wrapper\">\n <ButtonLinkIcon {...bulletPointButtonProps} data-name={dataName} />\n {visible ? menu : null}\n </div>\n );\n};\n\nBulletPointMenuButton.propTypes = propTypes;\n\nexport default BulletPointMenuButton;\n"],"mappings":"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","ignoreList":[]}
|
|
@@ -30,19 +30,9 @@
|
|
|
30
30
|
box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.07);
|
|
31
31
|
border-radius: 12px;
|
|
32
32
|
overflow: hidden;
|
|
33
|
-
transition: visibility 0.5s ease, opacity 0.5s ease; background-color: #ffffff;
|
|
34
|
-
visibility: hidden;
|
|
35
|
-
opacity: 0;
|
|
36
33
|
z-index: 99;
|
|
37
34
|
}
|
|
38
35
|
|
|
39
|
-
.visible {
|
|
40
|
-
/* fade in combo */
|
|
41
|
-
max-height: max-content;
|
|
42
|
-
visibility: visible;
|
|
43
|
-
opacity: 1;
|
|
44
|
-
}
|
|
45
|
-
|
|
46
36
|
/*
|
|
47
37
|
bulk theme
|
|
48
38
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coorpacademy/components",
|
|
3
|
-
"version": "11.33.13-alpha.
|
|
3
|
+
"version": "11.33.13-alpha.19+e6bce8d5b",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"module": "es/index.js",
|
|
@@ -165,5 +165,5 @@
|
|
|
165
165
|
"last 2 versions",
|
|
166
166
|
"IE 11"
|
|
167
167
|
],
|
|
168
|
-
"gitHead": "
|
|
168
|
+
"gitHead": "e6bce8d5b6dd4ade3fce6b1aa979dbaa3c6a303a"
|
|
169
169
|
}
|