@coorpacademy/components 11.22.3 → 11.23.0
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/atom/input-file-draggable/index.d.ts +3 -1
- package/es/atom/input-file-draggable/index.d.ts.map +1 -1
- package/es/atom/input-file-draggable/index.js +7 -2
- package/es/atom/input-file-draggable/index.js.map +1 -1
- package/es/molecule/drag-and-drop-wrapper/index.d.ts +1 -0
- package/es/molecule/title-and-checkbox-wrapper/index.d.ts +2 -0
- package/es/molecule/title-radio-wrapper/index.d.ts +1 -0
- package/es/molecule/title-radio-wrapper/index.d.ts.map +1 -1
- package/es/molecule/title-radio-wrapper/types.d.ts +1 -0
- package/es/molecule/title-radio-wrapper/types.d.ts.map +1 -1
- package/es/organism/mooc-footer/style.css +1 -1
- package/es/organism/rewards-form/index.d.ts +2 -0
- package/es/organism/select-opponents/index.d.ts +2 -0
- package/es/organism/select-opponents/index.d.ts.map +1 -1
- package/es/organism/select-opponents/types.d.ts +2 -0
- package/es/organism/select-opponents/types.d.ts.map +1 -1
- package/es/organism/title-and-input/index.d.ts +2 -0
- package/es/organism/title-and-input/index.d.ts.map +1 -1
- package/es/organism/title-and-input/types.d.ts +2 -0
- package/es/organism/title-and-input/types.d.ts.map +1 -1
- package/es/organism/wizard-contents/index.d.ts +2 -0
- package/lib/atom/input-file-draggable/index.d.ts +3 -1
- package/lib/atom/input-file-draggable/index.d.ts.map +1 -1
- package/lib/atom/input-file-draggable/index.js +7 -2
- package/lib/atom/input-file-draggable/index.js.map +1 -1
- package/lib/molecule/drag-and-drop-wrapper/index.d.ts +1 -0
- package/lib/molecule/title-and-checkbox-wrapper/index.d.ts +2 -0
- package/lib/molecule/title-radio-wrapper/index.d.ts +1 -0
- package/lib/molecule/title-radio-wrapper/index.d.ts.map +1 -1
- package/lib/molecule/title-radio-wrapper/types.d.ts +1 -0
- package/lib/molecule/title-radio-wrapper/types.d.ts.map +1 -1
- package/lib/organism/mooc-footer/style.css +1 -1
- package/lib/organism/rewards-form/index.d.ts +2 -0
- package/lib/organism/select-opponents/index.d.ts +2 -0
- package/lib/organism/select-opponents/index.d.ts.map +1 -1
- package/lib/organism/select-opponents/types.d.ts +2 -0
- package/lib/organism/select-opponents/types.d.ts.map +1 -1
- package/lib/organism/title-and-input/index.d.ts +2 -0
- package/lib/organism/title-and-input/index.d.ts.map +1 -1
- package/lib/organism/title-and-input/types.d.ts +2 -0
- package/lib/organism/title-and-input/types.d.ts.map +1 -1
- package/lib/organism/wizard-contents/index.d.ts +2 -0
- package/package.json +2 -2
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export default InputFileDraggable;
|
|
2
|
-
declare function InputFileDraggable({ title, description, previewLabel, previewContent, uploadLabel, loading, modified, disabled, onChange, onReset, name, labelLink, labelButtonLink, hrefLink, filesTypes, error, buttonAriaLabel, errorButtonLabel, pdfButtonLabel, pdfButtonAriaLabel, filesNumber, multiple, required, onClick }: {
|
|
2
|
+
declare function InputFileDraggable({ title, description, previewLabel, previewContent, uploadLabel, loading, modified, disabled, disableHoverTooltip, onChange, onReset, name, labelLink, labelButtonLink, hrefLink, filesTypes, error, buttonAriaLabel, errorButtonLabel, pdfButtonLabel, pdfButtonAriaLabel, filesNumber, multiple, required, onClick }: {
|
|
3
3
|
title: any;
|
|
4
4
|
description: any;
|
|
5
5
|
previewLabel: any;
|
|
@@ -8,6 +8,7 @@ declare function InputFileDraggable({ title, description, previewLabel, previewC
|
|
|
8
8
|
loading: any;
|
|
9
9
|
modified: any;
|
|
10
10
|
disabled?: boolean | undefined;
|
|
11
|
+
disableHoverTooltip?: boolean | undefined;
|
|
11
12
|
onChange: any;
|
|
12
13
|
onReset?: null | undefined;
|
|
13
14
|
name: any;
|
|
@@ -27,6 +28,7 @@ declare function InputFileDraggable({ title, description, previewLabel, previewC
|
|
|
27
28
|
}): JSX.Element;
|
|
28
29
|
declare namespace InputFileDraggable {
|
|
29
30
|
const propTypes: {
|
|
31
|
+
disableHoverTooltip: PropTypes.Requireable<boolean>;
|
|
30
32
|
name: PropTypes.Requireable<string>;
|
|
31
33
|
onChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
32
34
|
onReset: PropTypes.Requireable<(...args: any[]) => any>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/atom/input-file-draggable/index.js"],"names":[],"mappings":";AAYA
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/atom/input-file-draggable/index.js"],"names":[],"mappings":";AAYA;;;;;;;;;;;;;;;;;;;;;;;;;;gBA+GC"}
|
|
@@ -19,6 +19,7 @@ const InputFileDraggable = ({
|
|
|
19
19
|
loading,
|
|
20
20
|
modified,
|
|
21
21
|
disabled = false,
|
|
22
|
+
disableHoverTooltip = false,
|
|
22
23
|
onChange,
|
|
23
24
|
onReset = null,
|
|
24
25
|
name,
|
|
@@ -60,12 +61,15 @@ const InputFileDraggable = ({
|
|
|
60
61
|
onReset: handleReset,
|
|
61
62
|
error: error,
|
|
62
63
|
disabled: disabled,
|
|
64
|
+
disableHoverTooltip: disableHoverTooltip,
|
|
63
65
|
buttonAriaLabel: buttonAriaLabel,
|
|
64
66
|
errorButtonLabel: errorButtonLabel,
|
|
65
67
|
pdfButtonLabel: pdfButtonLabel,
|
|
66
68
|
pdfButtonAriaLabel: pdfButtonAriaLabel,
|
|
67
69
|
multiple: multiple
|
|
68
|
-
}, (onDragStart, onDragStop) => /*#__PURE__*/React.createElement("input", {
|
|
70
|
+
}, (onDragStart, onDragStop) => /*#__PURE__*/React.createElement("input", _extends({}, disableHoverTooltip ? {
|
|
71
|
+
title: ''
|
|
72
|
+
} : {}, {
|
|
69
73
|
type: "file",
|
|
70
74
|
name: name,
|
|
71
75
|
accept: filesTypes,
|
|
@@ -77,7 +81,7 @@ const InputFileDraggable = ({
|
|
|
77
81
|
onDragLeave: onDragStop,
|
|
78
82
|
multiple: multiple,
|
|
79
83
|
required: required
|
|
80
|
-
})), labelLink && hrefLink ? /*#__PURE__*/React.createElement("div", {
|
|
84
|
+
}))), labelLink && hrefLink ? /*#__PURE__*/React.createElement("div", {
|
|
81
85
|
className: style.templateLink
|
|
82
86
|
}, labelLink, /*#__PURE__*/React.createElement(Link, {
|
|
83
87
|
type: "text",
|
|
@@ -102,6 +106,7 @@ const InputFileDraggable = ({
|
|
|
102
106
|
};
|
|
103
107
|
|
|
104
108
|
InputFileDraggable.propTypes = process.env.NODE_ENV !== "production" ? _extends({}, DragAndDrop.propTypes, {
|
|
109
|
+
disableHoverTooltip: PropTypes.bool,
|
|
105
110
|
name: PropTypes.string,
|
|
106
111
|
onChange: PropTypes.func,
|
|
107
112
|
onReset: PropTypes.func,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","names":["React","useCallback","PropTypes","NovaSolidFilesBasicFileLines","FileLinesIcon","NovaCompositionCoorpacademyEye","EyeIcon","DragAndDrop","Link","FilesPropType","style","InputFileDraggable","title","description","previewLabel","previewContent","uploadLabel","loading","modified","disabled","onChange","onReset","name","labelLink","labelButtonLink","hrefLink","filesTypes","error","buttonAriaLabel","errorButtonLabel","pdfButtonLabel","pdfButtonAriaLabel","filesNumber","multiple","required","onClick","handleReset","e","preventDefault","linkCustomStyle","width","color","onClick_","onDragStart","onDragStop","input","templateLink","href","download","multipleFilesContainer","icon","seeDetailsButton","seeIcon","propTypes","string","func"],"sources":["../../../src/atom/input-file-draggable/index.js"],"sourcesContent":["import React, {useCallback} from 'react';\nimport PropTypes from 'prop-types';\nimport {isNil} from 'lodash/fp';\nimport {\n NovaSolidFilesBasicFileLines as FileLinesIcon,\n NovaCompositionCoorpacademyEye as EyeIcon\n} from '@coorpacademy/nova-icons';\nimport DragAndDrop from '../drag-and-drop';\nimport Link from '../button-link';\nimport {FilesPropType} from '../../util/proptypes';\nimport style from './style.css';\n\nconst InputFileDraggable = ({\n title,\n description,\n previewLabel,\n previewContent,\n uploadLabel,\n loading,\n modified,\n disabled = false,\n onChange,\n onReset = null,\n name,\n labelLink,\n labelButtonLink,\n hrefLink,\n filesTypes = '',\n error = '',\n buttonAriaLabel,\n errorButtonLabel,\n pdfButtonLabel,\n pdfButtonAriaLabel,\n filesNumber = 0,\n multiple = false,\n required = false,\n onClick\n}) => {\n const handleReset = useCallback(\n e => {\n if (isNil(onReset)) return;\n e.preventDefault();\n return onReset(e);\n },\n [onReset]\n );\n\n const linkCustomStyle = {\n width: '40px',\n color: '#FF541F'\n };\n\n const onClick_ = useCallback(\n e => {\n e.preventDefault();\n return onClick(e);\n },\n [onClick]\n );\n\n return (\n <>\n <DragAndDrop\n title={title}\n description={description}\n previewLabel={previewLabel}\n previewContent={previewContent}\n uploadLabel={uploadLabel}\n loading={loading}\n modified={modified}\n onReset={handleReset}\n error={error}\n disabled={disabled}\n buttonAriaLabel={buttonAriaLabel}\n errorButtonLabel={errorButtonLabel}\n pdfButtonLabel={pdfButtonLabel}\n pdfButtonAriaLabel={pdfButtonAriaLabel}\n multiple={multiple}\n >\n {(onDragStart, onDragStop) => (\n <input\n type=\"file\"\n name={name}\n accept={filesTypes}\n disabled={loading || disabled}\n className={style.input}\n onChange={onChange}\n onDragEnter={onDragStart}\n onDrop={onDragStop}\n onDragLeave={onDragStop}\n multiple={multiple}\n required={required}\n />\n )}\n </DragAndDrop>\n {labelLink && hrefLink ? (\n <div className={style.templateLink}>\n {labelLink}\n <Link\n type=\"text\"\n customStyle={linkCustomStyle}\n link={{href: hrefLink, download: true}}\n label={labelButtonLink}\n />\n </div>\n ) : null}\n {multiple && filesNumber > 0 ? (\n <div className={style.multipleFilesContainer}>\n <div className={style.filesNumber}>\n <FileLinesIcon className={style.icon} />\n <div>{filesNumber} files</div>\n </div>\n <div className={style.seeDetailsButton} onClick={onClick_}>\n <EyeIcon className={style.seeIcon} />\n <div>See details</div>\n </div>\n </div>\n ) : null}\n </>\n );\n};\n\nInputFileDraggable.propTypes = {\n ...DragAndDrop.propTypes,\n name: PropTypes.string,\n onChange: PropTypes.func,\n onReset: PropTypes.func,\n filesTypes: FilesPropType,\n error: PropTypes.string,\n buttonAriaLabel: PropTypes.string,\n errorButtonLabel: PropTypes.string,\n labelLink: PropTypes.string,\n hrefLink: PropTypes.string\n};\n\nexport default InputFileDraggable;\n"],"mappings":";;;;AAAA,OAAOA,KAAP,IAAeC,WAAf,QAAiC,OAAjC;AACA,OAAOC,SAAP,MAAsB,YAAtB;AAEA,SACEC,4BAA4B,IAAIC,aADlC,EAEEC,8BAA8B,IAAIC,OAFpC,QAGO,0BAHP;AAIA,OAAOC,WAAP,MAAwB,kBAAxB;AACA,OAAOC,IAAP,MAAiB,gBAAjB;AACA,SAAQC,aAAR,QAA4B,sBAA5B;AACA,OAAOC,KAAP,MAAkB,aAAlB;;AAEA,MAAMC,kBAAkB,GAAG,CAAC;EAC1BC,KAD0B;EAE1BC,WAF0B;EAG1BC,YAH0B;EAI1BC,cAJ0B;EAK1BC,WAL0B;EAM1BC,OAN0B;EAO1BC,QAP0B;EAQ1BC,QAAQ,GAAG,KARe;EAS1BC,
|
|
1
|
+
{"version":3,"file":"index.js","names":["React","useCallback","PropTypes","NovaSolidFilesBasicFileLines","FileLinesIcon","NovaCompositionCoorpacademyEye","EyeIcon","DragAndDrop","Link","FilesPropType","style","InputFileDraggable","title","description","previewLabel","previewContent","uploadLabel","loading","modified","disabled","disableHoverTooltip","onChange","onReset","name","labelLink","labelButtonLink","hrefLink","filesTypes","error","buttonAriaLabel","errorButtonLabel","pdfButtonLabel","pdfButtonAriaLabel","filesNumber","multiple","required","onClick","handleReset","e","preventDefault","linkCustomStyle","width","color","onClick_","onDragStart","onDragStop","input","templateLink","href","download","multipleFilesContainer","icon","seeDetailsButton","seeIcon","propTypes","bool","string","func"],"sources":["../../../src/atom/input-file-draggable/index.js"],"sourcesContent":["import React, {useCallback} from 'react';\nimport PropTypes from 'prop-types';\nimport {isNil} from 'lodash/fp';\nimport {\n NovaSolidFilesBasicFileLines as FileLinesIcon,\n NovaCompositionCoorpacademyEye as EyeIcon\n} from '@coorpacademy/nova-icons';\nimport DragAndDrop from '../drag-and-drop';\nimport Link from '../button-link';\nimport {FilesPropType} from '../../util/proptypes';\nimport style from './style.css';\n\nconst InputFileDraggable = ({\n title,\n description,\n previewLabel,\n previewContent,\n uploadLabel,\n loading,\n modified,\n disabled = false,\n disableHoverTooltip = false,\n onChange,\n onReset = null,\n name,\n labelLink,\n labelButtonLink,\n hrefLink,\n filesTypes = '',\n error = '',\n buttonAriaLabel,\n errorButtonLabel,\n pdfButtonLabel,\n pdfButtonAriaLabel,\n filesNumber = 0,\n multiple = false,\n required = false,\n onClick\n}) => {\n const handleReset = useCallback(\n e => {\n if (isNil(onReset)) return;\n e.preventDefault();\n return onReset(e);\n },\n [onReset]\n );\n\n const linkCustomStyle = {\n width: '40px',\n color: '#FF541F'\n };\n\n const onClick_ = useCallback(\n e => {\n e.preventDefault();\n return onClick(e);\n },\n [onClick]\n );\n\n return (\n <>\n <DragAndDrop\n title={title}\n description={description}\n previewLabel={previewLabel}\n previewContent={previewContent}\n uploadLabel={uploadLabel}\n loading={loading}\n modified={modified}\n onReset={handleReset}\n error={error}\n disabled={disabled}\n disableHoverTooltip={disableHoverTooltip}\n buttonAriaLabel={buttonAriaLabel}\n errorButtonLabel={errorButtonLabel}\n pdfButtonLabel={pdfButtonLabel}\n pdfButtonAriaLabel={pdfButtonAriaLabel}\n multiple={multiple}\n >\n {(onDragStart, onDragStop) => (\n <input\n {...(disableHoverTooltip ? {title: ''} : {})}\n type=\"file\"\n name={name}\n accept={filesTypes}\n disabled={loading || disabled}\n className={style.input}\n onChange={onChange}\n onDragEnter={onDragStart}\n onDrop={onDragStop}\n onDragLeave={onDragStop}\n multiple={multiple}\n required={required}\n />\n )}\n </DragAndDrop>\n {labelLink && hrefLink ? (\n <div className={style.templateLink}>\n {labelLink}\n <Link\n type=\"text\"\n customStyle={linkCustomStyle}\n link={{href: hrefLink, download: true}}\n label={labelButtonLink}\n />\n </div>\n ) : null}\n {multiple && filesNumber > 0 ? (\n <div className={style.multipleFilesContainer}>\n <div className={style.filesNumber}>\n <FileLinesIcon className={style.icon} />\n <div>{filesNumber} files</div>\n </div>\n <div className={style.seeDetailsButton} onClick={onClick_}>\n <EyeIcon className={style.seeIcon} />\n <div>See details</div>\n </div>\n </div>\n ) : null}\n </>\n );\n};\n\nInputFileDraggable.propTypes = {\n ...DragAndDrop.propTypes,\n disableHoverTooltip: PropTypes.bool,\n name: PropTypes.string,\n onChange: PropTypes.func,\n onReset: PropTypes.func,\n filesTypes: FilesPropType,\n error: PropTypes.string,\n buttonAriaLabel: PropTypes.string,\n errorButtonLabel: PropTypes.string,\n labelLink: PropTypes.string,\n hrefLink: PropTypes.string\n};\n\nexport default InputFileDraggable;\n"],"mappings":";;;;AAAA,OAAOA,KAAP,IAAeC,WAAf,QAAiC,OAAjC;AACA,OAAOC,SAAP,MAAsB,YAAtB;AAEA,SACEC,4BAA4B,IAAIC,aADlC,EAEEC,8BAA8B,IAAIC,OAFpC,QAGO,0BAHP;AAIA,OAAOC,WAAP,MAAwB,kBAAxB;AACA,OAAOC,IAAP,MAAiB,gBAAjB;AACA,SAAQC,aAAR,QAA4B,sBAA5B;AACA,OAAOC,KAAP,MAAkB,aAAlB;;AAEA,MAAMC,kBAAkB,GAAG,CAAC;EAC1BC,KAD0B;EAE1BC,WAF0B;EAG1BC,YAH0B;EAI1BC,cAJ0B;EAK1BC,WAL0B;EAM1BC,OAN0B;EAO1BC,QAP0B;EAQ1BC,QAAQ,GAAG,KARe;EAS1BC,mBAAmB,GAAG,KATI;EAU1BC,QAV0B;EAW1BC,OAAO,GAAG,IAXgB;EAY1BC,IAZ0B;EAa1BC,SAb0B;EAc1BC,eAd0B;EAe1BC,QAf0B;EAgB1BC,UAAU,GAAG,EAhBa;EAiB1BC,KAAK,GAAG,EAjBkB;EAkB1BC,eAlB0B;EAmB1BC,gBAnB0B;EAoB1BC,cApB0B;EAqB1BC,kBArB0B;EAsB1BC,WAAW,GAAG,CAtBY;EAuB1BC,QAAQ,GAAG,KAvBe;EAwB1BC,QAAQ,GAAG,KAxBe;EAyB1BC;AAzB0B,CAAD,KA0BrB;EACJ,MAAMC,WAAW,GAAGpC,WAAW,CAC7BqC,CAAC,IAAI;IACH,IAAI,OAAMhB,OAAN,CAAJ,EAAoB;IACpBgB,CAAC,CAACC,cAAF;IACA,OAAOjB,OAAO,CAACgB,CAAD,CAAd;EACD,CAL4B,EAM7B,CAAChB,OAAD,CAN6B,CAA/B;EASA,MAAMkB,eAAe,GAAG;IACtBC,KAAK,EAAE,MADe;IAEtBC,KAAK,EAAE;EAFe,CAAxB;EAKA,MAAMC,QAAQ,GAAG1C,WAAW,CAC1BqC,CAAC,IAAI;IACHA,CAAC,CAACC,cAAF;IACA,OAAOH,OAAO,CAACE,CAAD,CAAd;EACD,CAJyB,EAK1B,CAACF,OAAD,CAL0B,CAA5B;EAQA,oBACE,uDACE,oBAAC,WAAD;IACE,KAAK,EAAExB,KADT;IAEE,WAAW,EAAEC,WAFf;IAGE,YAAY,EAAEC,YAHhB;IAIE,cAAc,EAAEC,cAJlB;IAKE,WAAW,EAAEC,WALf;IAME,OAAO,EAAEC,OANX;IAOE,QAAQ,EAAEC,QAPZ;IAQE,OAAO,EAAEmB,WARX;IASE,KAAK,EAAET,KATT;IAUE,QAAQ,EAAET,QAVZ;IAWE,mBAAmB,EAAEC,mBAXvB;IAYE,eAAe,EAAES,eAZnB;IAaE,gBAAgB,EAAEC,gBAbpB;IAcE,cAAc,EAAEC,cAdlB;IAeE,kBAAkB,EAAEC,kBAftB;IAgBE,QAAQ,EAAEE;EAhBZ,GAkBG,CAACU,WAAD,EAAcC,UAAd,kBACC,0CACOzB,mBAAmB,GAAG;IAACR,KAAK,EAAE;EAAR,CAAH,GAAiB,EAD3C;IAEE,IAAI,EAAC,MAFP;IAGE,IAAI,EAAEW,IAHR;IAIE,MAAM,EAAEI,UAJV;IAKE,QAAQ,EAAEV,OAAO,IAAIE,QALvB;IAME,SAAS,EAAET,KAAK,CAACoC,KANnB;IAOE,QAAQ,EAAEzB,QAPZ;IAQE,WAAW,EAAEuB,WARf;IASE,MAAM,EAAEC,UATV;IAUE,WAAW,EAAEA,UAVf;IAWE,QAAQ,EAAEX,QAXZ;IAYE,QAAQ,EAAEC;EAZZ,GAnBJ,CADF,EAoCGX,SAAS,IAAIE,QAAb,gBACC;IAAK,SAAS,EAAEhB,KAAK,CAACqC;EAAtB,GACGvB,SADH,eAEE,oBAAC,IAAD;IACE,IAAI,EAAC,MADP;IAEE,WAAW,EAAEgB,eAFf;IAGE,IAAI,EAAE;MAACQ,IAAI,EAAEtB,QAAP;MAAiBuB,QAAQ,EAAE;IAA3B,CAHR;IAIE,KAAK,EAAExB;EAJT,EAFF,CADD,GAUG,IA9CN,EA+CGS,QAAQ,IAAID,WAAW,GAAG,CAA1B,gBACC;IAAK,SAAS,EAAEvB,KAAK,CAACwC;EAAtB,gBACE;IAAK,SAAS,EAAExC,KAAK,CAACuB;EAAtB,gBACE,oBAAC,aAAD;IAAe,SAAS,EAAEvB,KAAK,CAACyC;EAAhC,EADF,eAEE,iCAAMlB,WAAN,WAFF,CADF,eAKE;IAAK,SAAS,EAAEvB,KAAK,CAAC0C,gBAAtB;IAAwC,OAAO,EAAET;EAAjD,gBACE,oBAAC,OAAD;IAAS,SAAS,EAAEjC,KAAK,CAAC2C;EAA1B,EADF,eAEE,+CAFF,CALF,CADD,GAWG,IA1DN,CADF;AA8DD,CA/GD;;AAiHA1C,kBAAkB,CAAC2C,SAAnB,wDACK/C,WAAW,CAAC+C,SADjB;EAEElC,mBAAmB,EAAElB,SAAS,CAACqD,IAFjC;EAGEhC,IAAI,EAAErB,SAAS,CAACsD,MAHlB;EAIEnC,QAAQ,EAAEnB,SAAS,CAACuD,IAJtB;EAKEnC,OAAO,EAAEpB,SAAS,CAACuD,IALrB;EAME9B,UAAU,EAAElB,aANd;EAOEmB,KAAK,EAAE1B,SAAS,CAACsD,MAPnB;EAQE3B,eAAe,EAAE3B,SAAS,CAACsD,MAR7B;EASE1B,gBAAgB,EAAE5B,SAAS,CAACsD,MAT9B;EAUEhC,SAAS,EAAEtB,SAAS,CAACsD,MAVvB;EAWE9B,QAAQ,EAAExB,SAAS,CAACsD;AAXtB;AAcA,eAAe7C,kBAAf"}
|
|
@@ -3,6 +3,7 @@ declare function DragAndDropWrapper(props: any): JSX.Element;
|
|
|
3
3
|
declare namespace DragAndDropWrapper {
|
|
4
4
|
const propTypes: {
|
|
5
5
|
list: PropTypes.Requireable<(PropTypes.InferProps<{
|
|
6
|
+
disableHoverTooltip: PropTypes.Requireable<boolean>;
|
|
6
7
|
name: PropTypes.Requireable<string>;
|
|
7
8
|
onChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
8
9
|
onReset: PropTypes.Requireable<(...args: any[]) => any>;
|
|
@@ -45,6 +45,7 @@ declare namespace TitleAndCheckBoxWrapper {
|
|
|
45
45
|
}> | PropTypes.InferProps<{
|
|
46
46
|
childType: PropTypes.Requireable<string>;
|
|
47
47
|
list: PropTypes.Requireable<(PropTypes.InferProps<{
|
|
48
|
+
disableHoverTooltip: PropTypes.Requireable<boolean>;
|
|
48
49
|
name: PropTypes.Requireable<string>;
|
|
49
50
|
onChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
50
51
|
onReset: PropTypes.Requireable<(...args: any[]) => any>;
|
|
@@ -74,6 +75,7 @@ declare namespace TitleAndCheckBoxWrapper {
|
|
|
74
75
|
'data-name': PropTypes.Requireable<string>;
|
|
75
76
|
}> | PropTypes.InferProps<{
|
|
76
77
|
childType: PropTypes.Requireable<string>;
|
|
78
|
+
disableHoverTooltip: PropTypes.Requireable<boolean>;
|
|
77
79
|
name: PropTypes.Requireable<string>;
|
|
78
80
|
onChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
79
81
|
onReset: PropTypes.Requireable<(...args: any[]) => any>;
|
|
@@ -36,6 +36,7 @@ declare const TitleRadioWrapper: {
|
|
|
36
36
|
error: import("prop-types").Requireable<string>;
|
|
37
37
|
theme: import("prop-types").Requireable<string>;
|
|
38
38
|
}> | import("prop-types").InferProps<{
|
|
39
|
+
disableHoverTooltip: import("prop-types").Requireable<boolean>;
|
|
39
40
|
name: import("prop-types").Requireable<string>;
|
|
40
41
|
onChange: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
41
42
|
onReset: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/molecule/title-radio-wrapper/index.tsx"],"names":[],"mappings":";AAKA,OAAkB,EAAC,sBAAsB,EAAC,MAAM,SAAS,CAAC;AAqB1D,QAAA,MAAM,iBAAiB;YAAW,sBAAsB
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/molecule/title-radio-wrapper/index.tsx"],"names":[],"mappings":";AAKA,OAAkB,EAAC,sBAAsB,EAAC,MAAM,SAAS,CAAC;AAqB1D,QAAA,MAAM,iBAAiB;YAAW,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAQvD,CAAC;AAIF,eAAe,iBAAiB,CAAC"}
|
|
@@ -36,6 +36,7 @@ declare const propTypes: {
|
|
|
36
36
|
error: PropTypes.Requireable<string>;
|
|
37
37
|
theme: PropTypes.Requireable<string>;
|
|
38
38
|
}> | PropTypes.InferProps<{
|
|
39
|
+
disableHoverTooltip: PropTypes.Requireable<boolean>;
|
|
39
40
|
name: PropTypes.Requireable<string>;
|
|
40
41
|
onChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
41
42
|
onReset: PropTypes.Requireable<(...args: any[]) => any>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/molecule/title-radio-wrapper/types.ts"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,YAAY,CAAC;AACnC,OAAO,kBAAkB,MAAM,iCAAiC,CAAC;AAEjE,OAAO,EAAC,mBAAmB,EAAC,MAAM,mCAAmC,CAAC;AACtE,OAAO,cAAc,MAAM,oBAAoB,CAAC;AAEhD,QAAA,MAAM,SAAS
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/molecule/title-radio-wrapper/types.ts"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,YAAY,CAAC;AACnC,OAAO,kBAAkB,MAAM,iCAAiC,CAAC;AAEjE,OAAO,EAAC,mBAAmB,EAAC,MAAM,mCAAmC,CAAC;AACtE,OAAO,cAAc,MAAM,oBAAoB,CAAC;AAEhD,QAAA,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAOd,CAAC;AAEF,oBAAY,sBAAsB,GAAG;IACnC,cAAc,EAAE,mBAAmB,CAAC;IACpC,KAAK,EAAE,OAAO,cAAc,CAAC,SAAS,GAAG,OAAO,kBAAkB,CAAC,SAAS,CAAC;IAC7E,SAAS,EAAE,iBAAiB,GAAG,gBAAgB,CAAC;CACjD,CAAC;AAEF,eAAe,SAAS,CAAC"}
|
|
@@ -48,6 +48,7 @@ declare namespace RewardsForm {
|
|
|
48
48
|
}> | PropTypes.InferProps<{
|
|
49
49
|
childType: PropTypes.Requireable<string>;
|
|
50
50
|
list: PropTypes.Requireable<(PropTypes.InferProps<{
|
|
51
|
+
disableHoverTooltip: PropTypes.Requireable<boolean>;
|
|
51
52
|
name: PropTypes.Requireable<string>;
|
|
52
53
|
onChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
53
54
|
onReset: PropTypes.Requireable<(...args: any[]) => any>;
|
|
@@ -77,6 +78,7 @@ declare namespace RewardsForm {
|
|
|
77
78
|
'data-name': PropTypes.Requireable<string>;
|
|
78
79
|
}> | PropTypes.InferProps<{
|
|
79
80
|
childType: PropTypes.Requireable<string>;
|
|
81
|
+
disableHoverTooltip: PropTypes.Requireable<boolean>;
|
|
80
82
|
name: PropTypes.Requireable<string>;
|
|
81
83
|
onChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
82
84
|
onReset: PropTypes.Requireable<(...args: any[]) => any>;
|
|
@@ -47,6 +47,7 @@ declare const SelectOpponents: {
|
|
|
47
47
|
}> | import("prop-types").InferProps<{
|
|
48
48
|
childType: import("prop-types").Requireable<string>;
|
|
49
49
|
list: import("prop-types").Requireable<(import("prop-types").InferProps<{
|
|
50
|
+
disableHoverTooltip: import("prop-types").Requireable<boolean>;
|
|
50
51
|
name: import("prop-types").Requireable<string>;
|
|
51
52
|
onChange: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
52
53
|
onReset: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
@@ -76,6 +77,7 @@ declare const SelectOpponents: {
|
|
|
76
77
|
'data-name': import("prop-types").Requireable<string>;
|
|
77
78
|
}> | import("prop-types").InferProps<{
|
|
78
79
|
childType: import("prop-types").Requireable<string>;
|
|
80
|
+
disableHoverTooltip: import("prop-types").Requireable<boolean>;
|
|
79
81
|
name: import("prop-types").Requireable<string>;
|
|
80
82
|
onChange: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
81
83
|
onReset: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/organism/select-opponents/index.tsx"],"names":[],"mappings":";AAGA,OAAkB,EAAC,oBAAoB,EAA+B,MAAM,SAAS,CAAC;AAMtF,QAAA,MAAM,eAAe;YAAW,oBAAoB
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/organism/select-opponents/index.tsx"],"names":[],"mappings":";AAGA,OAAkB,EAAC,oBAAoB,EAA+B,MAAM,SAAS,CAAC;AAMtF,QAAA,MAAM,eAAe;YAAW,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgBnD,CAAC;AAIF,eAAe,eAAe,CAAC"}
|
|
@@ -44,6 +44,7 @@ export declare const propTypes: {
|
|
|
44
44
|
}> | PropTypes.InferProps<{
|
|
45
45
|
childType: PropTypes.Requireable<string>;
|
|
46
46
|
list: PropTypes.Requireable<(PropTypes.InferProps<{
|
|
47
|
+
disableHoverTooltip: PropTypes.Requireable<boolean>;
|
|
47
48
|
name: PropTypes.Requireable<string>;
|
|
48
49
|
onChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
49
50
|
onReset: PropTypes.Requireable<(...args: any[]) => any>;
|
|
@@ -73,6 +74,7 @@ export declare const propTypes: {
|
|
|
73
74
|
'data-name': PropTypes.Requireable<string>;
|
|
74
75
|
}> | PropTypes.InferProps<{
|
|
75
76
|
childType: PropTypes.Requireable<string>;
|
|
77
|
+
disableHoverTooltip: PropTypes.Requireable<boolean>;
|
|
76
78
|
name: PropTypes.Requireable<string>;
|
|
77
79
|
onChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
78
80
|
onReset: PropTypes.Requireable<(...args: any[]) => any>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/organism/select-opponents/types.ts"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,YAAY,CAAC;AAGnC,eAAO,MAAM,SAAS
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/organism/select-opponents/types.ts"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,YAAY,CAAC;AAGnC,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAErB,CAAC;AAEF,oBAAY,4BAA4B,GAAG;IACzC,KAAK,EAAE;QACL,SAAS,EAAE,iBAAiB,GAAG,cAAc,CAAC;QAC9C,CAAC,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC;KACtB,CAAC;IACF,CAAC,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC;CACtB,CAAC;AAEF,oBAAY,oBAAoB,GAAG;IACjC,KAAK,EAAE,4BAA4B,EAAE,CAAC;CACvC,CAAC;AAEF,eAAe,SAAS,CAAC"}
|
|
@@ -92,6 +92,7 @@ declare const TitleAndInput: {
|
|
|
92
92
|
}> | import("prop-types").InferProps<{
|
|
93
93
|
childType: import("prop-types").Requireable<string>;
|
|
94
94
|
list: import("prop-types").Requireable<(import("prop-types").InferProps<{
|
|
95
|
+
disableHoverTooltip: import("prop-types").Requireable<boolean>;
|
|
95
96
|
name: import("prop-types").Requireable<string>;
|
|
96
97
|
onChange: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
97
98
|
onReset: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
@@ -121,6 +122,7 @@ declare const TitleAndInput: {
|
|
|
121
122
|
'data-name': import("prop-types").Requireable<string>;
|
|
122
123
|
}> | import("prop-types").InferProps<{
|
|
123
124
|
childType: import("prop-types").Requireable<string>;
|
|
125
|
+
disableHoverTooltip: import("prop-types").Requireable<boolean>;
|
|
124
126
|
name: import("prop-types").Requireable<string>;
|
|
125
127
|
onChange: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
126
128
|
onReset: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/organism/title-and-input/index.tsx"],"names":[],"mappings":";AAKA,OAAkB,EAAC,kBAAkB,EAAC,MAAM,SAAS,CAAC;AAiBtD,QAAA,MAAM,aAAa;YAAW,kBAAkB
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/organism/title-and-input/index.tsx"],"names":[],"mappings":";AAKA,OAAkB,EAAC,kBAAkB,EAAC,MAAM,SAAS,CAAC;AAiBtD,QAAA,MAAM,aAAa;YAAW,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgB/C,CAAC;AAIF,eAAe,aAAa,CAAC"}
|
|
@@ -93,6 +93,7 @@ declare const propTypes: {
|
|
|
93
93
|
}> | PropTypes.InferProps<{
|
|
94
94
|
childType: PropTypes.Requireable<string>;
|
|
95
95
|
list: PropTypes.Requireable<(PropTypes.InferProps<{
|
|
96
|
+
disableHoverTooltip: PropTypes.Requireable<boolean>;
|
|
96
97
|
name: PropTypes.Requireable<string>;
|
|
97
98
|
onChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
98
99
|
onReset: PropTypes.Requireable<(...args: any[]) => any>;
|
|
@@ -122,6 +123,7 @@ declare const propTypes: {
|
|
|
122
123
|
'data-name': PropTypes.Requireable<string>;
|
|
123
124
|
}> | PropTypes.InferProps<{
|
|
124
125
|
childType: PropTypes.Requireable<string>;
|
|
126
|
+
disableHoverTooltip: PropTypes.Requireable<boolean>;
|
|
125
127
|
name: PropTypes.Requireable<string>;
|
|
126
128
|
onChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
127
129
|
onReset: PropTypes.Requireable<(...args: any[]) => any>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/organism/title-and-input/types.ts"],"names":[],"mappings":";AAAA,OAAO,SAAS,MAAM,YAAY,CAAC;AACnC,OAAO,YAAY,MAAM,yBAAyB,CAAC;AAEnD,OAAO,cAAc,MAAM,gCAAgC,CAAC;AAE5D,OAAO,EAAC,oBAAoB,EAAC,MAAM,2BAA2B,CAAC;AAE/D,QAAA,MAAM,SAAS
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/organism/title-and-input/types.ts"],"names":[],"mappings":";AAAA,OAAO,SAAS,MAAM,YAAY,CAAC;AACnC,OAAO,YAAY,MAAM,yBAAyB,CAAC;AAEnD,OAAO,cAAc,MAAM,gCAAgC,CAAC;AAE5D,OAAO,EAAC,oBAAoB,EAAC,MAAM,2BAA2B,CAAC;AAE/D,QAAA,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAQd,CAAC;AACF,oBAAY,kBAAkB,GAAG;IAC/B,KAAK,EAAE;QACL,KAAK,EAAE,MAAM,CAAC;QACd,QAAQ,EAAE,MAAM,CAAC;QACjB,IAAI,EAAE,MAAM,CAAC;QACb,WAAW,EAAE,MAAM,CAAC;KACrB,CAAC;IACF,KAAK,EACD,KAAK,CAAC,cAAc,CAAC,OAAO,cAAc,CAAC,GAC3C,KAAK,CAAC,cAAc,CAAC,OAAO,YAAY,CAAC,GACzC,oBAAoB,CAAC;IACzB,SAAS,EAAE,MAAM,CAAC;CACnB,CAAC;AAEF,eAAe,SAAS,CAAC"}
|
|
@@ -309,6 +309,7 @@ declare namespace WizardContents {
|
|
|
309
309
|
}> | PropTypes.InferProps<{
|
|
310
310
|
childType: PropTypes.Requireable<string>;
|
|
311
311
|
list: PropTypes.Requireable<(PropTypes.InferProps<{
|
|
312
|
+
disableHoverTooltip: PropTypes.Requireable<boolean>;
|
|
312
313
|
name: PropTypes.Requireable<string>;
|
|
313
314
|
onChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
314
315
|
onReset: PropTypes.Requireable<(...args: any[]) => any>;
|
|
@@ -338,6 +339,7 @@ declare namespace WizardContents {
|
|
|
338
339
|
'data-name': PropTypes.Requireable<string>;
|
|
339
340
|
}> | PropTypes.InferProps<{
|
|
340
341
|
childType: PropTypes.Requireable<string>;
|
|
342
|
+
disableHoverTooltip: PropTypes.Requireable<boolean>;
|
|
341
343
|
name: PropTypes.Requireable<string>;
|
|
342
344
|
onChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
343
345
|
onReset: PropTypes.Requireable<(...args: any[]) => any>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export default InputFileDraggable;
|
|
2
|
-
declare function InputFileDraggable({ title, description, previewLabel, previewContent, uploadLabel, loading, modified, disabled, onChange, onReset, name, labelLink, labelButtonLink, hrefLink, filesTypes, error, buttonAriaLabel, errorButtonLabel, pdfButtonLabel, pdfButtonAriaLabel, filesNumber, multiple, required, onClick }: {
|
|
2
|
+
declare function InputFileDraggable({ title, description, previewLabel, previewContent, uploadLabel, loading, modified, disabled, disableHoverTooltip, onChange, onReset, name, labelLink, labelButtonLink, hrefLink, filesTypes, error, buttonAriaLabel, errorButtonLabel, pdfButtonLabel, pdfButtonAriaLabel, filesNumber, multiple, required, onClick }: {
|
|
3
3
|
title: any;
|
|
4
4
|
description: any;
|
|
5
5
|
previewLabel: any;
|
|
@@ -8,6 +8,7 @@ declare function InputFileDraggable({ title, description, previewLabel, previewC
|
|
|
8
8
|
loading: any;
|
|
9
9
|
modified: any;
|
|
10
10
|
disabled?: boolean | undefined;
|
|
11
|
+
disableHoverTooltip?: boolean | undefined;
|
|
11
12
|
onChange: any;
|
|
12
13
|
onReset?: null | undefined;
|
|
13
14
|
name: any;
|
|
@@ -27,6 +28,7 @@ declare function InputFileDraggable({ title, description, previewLabel, previewC
|
|
|
27
28
|
}): JSX.Element;
|
|
28
29
|
declare namespace InputFileDraggable {
|
|
29
30
|
const propTypes: {
|
|
31
|
+
disableHoverTooltip: PropTypes.Requireable<boolean>;
|
|
30
32
|
name: PropTypes.Requireable<string>;
|
|
31
33
|
onChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
32
34
|
onReset: PropTypes.Requireable<(...args: any[]) => any>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/atom/input-file-draggable/index.js"],"names":[],"mappings":";AAYA
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/atom/input-file-draggable/index.js"],"names":[],"mappings":";AAYA;;;;;;;;;;;;;;;;;;;;;;;;;;gBA+GC"}
|
|
@@ -36,6 +36,7 @@ const InputFileDraggable = ({
|
|
|
36
36
|
loading,
|
|
37
37
|
modified,
|
|
38
38
|
disabled = false,
|
|
39
|
+
disableHoverTooltip = false,
|
|
39
40
|
onChange,
|
|
40
41
|
onReset = null,
|
|
41
42
|
name,
|
|
@@ -77,12 +78,15 @@ const InputFileDraggable = ({
|
|
|
77
78
|
onReset: handleReset,
|
|
78
79
|
error: error,
|
|
79
80
|
disabled: disabled,
|
|
81
|
+
disableHoverTooltip: disableHoverTooltip,
|
|
80
82
|
buttonAriaLabel: buttonAriaLabel,
|
|
81
83
|
errorButtonLabel: errorButtonLabel,
|
|
82
84
|
pdfButtonLabel: pdfButtonLabel,
|
|
83
85
|
pdfButtonAriaLabel: pdfButtonAriaLabel,
|
|
84
86
|
multiple: multiple
|
|
85
|
-
}, (onDragStart, onDragStop) => /*#__PURE__*/_react.default.createElement("input", {
|
|
87
|
+
}, (onDragStart, onDragStop) => /*#__PURE__*/_react.default.createElement("input", _extends({}, disableHoverTooltip ? {
|
|
88
|
+
title: ''
|
|
89
|
+
} : {}, {
|
|
86
90
|
type: "file",
|
|
87
91
|
name: name,
|
|
88
92
|
accept: filesTypes,
|
|
@@ -94,7 +98,7 @@ const InputFileDraggable = ({
|
|
|
94
98
|
onDragLeave: onDragStop,
|
|
95
99
|
multiple: multiple,
|
|
96
100
|
required: required
|
|
97
|
-
})), labelLink && hrefLink ? /*#__PURE__*/_react.default.createElement("div", {
|
|
101
|
+
}))), labelLink && hrefLink ? /*#__PURE__*/_react.default.createElement("div", {
|
|
98
102
|
className: _style.default.templateLink
|
|
99
103
|
}, labelLink, /*#__PURE__*/_react.default.createElement(_buttonLink.default, {
|
|
100
104
|
type: "text",
|
|
@@ -119,6 +123,7 @@ const InputFileDraggable = ({
|
|
|
119
123
|
};
|
|
120
124
|
|
|
121
125
|
InputFileDraggable.propTypes = process.env.NODE_ENV !== "production" ? _extends({}, _dragAndDrop.default.propTypes, {
|
|
126
|
+
disableHoverTooltip: _propTypes.default.bool,
|
|
122
127
|
name: _propTypes.default.string,
|
|
123
128
|
onChange: _propTypes.default.func,
|
|
124
129
|
onReset: _propTypes.default.func,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","names":["InputFileDraggable","title","description","previewLabel","previewContent","uploadLabel","loading","modified","disabled","onChange","onReset","name","labelLink","labelButtonLink","hrefLink","filesTypes","error","buttonAriaLabel","errorButtonLabel","pdfButtonLabel","pdfButtonAriaLabel","filesNumber","multiple","required","onClick","handleReset","useCallback","e","preventDefault","linkCustomStyle","width","color","onClick_","onDragStart","onDragStop","style","input","templateLink","href","download","multipleFilesContainer","icon","seeDetailsButton","seeIcon","propTypes","DragAndDrop","PropTypes","string","func","FilesPropType"],"sources":["../../../src/atom/input-file-draggable/index.js"],"sourcesContent":["import React, {useCallback} from 'react';\nimport PropTypes from 'prop-types';\nimport {isNil} from 'lodash/fp';\nimport {\n NovaSolidFilesBasicFileLines as FileLinesIcon,\n NovaCompositionCoorpacademyEye as EyeIcon\n} from '@coorpacademy/nova-icons';\nimport DragAndDrop from '../drag-and-drop';\nimport Link from '../button-link';\nimport {FilesPropType} from '../../util/proptypes';\nimport style from './style.css';\n\nconst InputFileDraggable = ({\n title,\n description,\n previewLabel,\n previewContent,\n uploadLabel,\n loading,\n modified,\n disabled = false,\n onChange,\n onReset = null,\n name,\n labelLink,\n labelButtonLink,\n hrefLink,\n filesTypes = '',\n error = '',\n buttonAriaLabel,\n errorButtonLabel,\n pdfButtonLabel,\n pdfButtonAriaLabel,\n filesNumber = 0,\n multiple = false,\n required = false,\n onClick\n}) => {\n const handleReset = useCallback(\n e => {\n if (isNil(onReset)) return;\n e.preventDefault();\n return onReset(e);\n },\n [onReset]\n );\n\n const linkCustomStyle = {\n width: '40px',\n color: '#FF541F'\n };\n\n const onClick_ = useCallback(\n e => {\n e.preventDefault();\n return onClick(e);\n },\n [onClick]\n );\n\n return (\n <>\n <DragAndDrop\n title={title}\n description={description}\n previewLabel={previewLabel}\n previewContent={previewContent}\n uploadLabel={uploadLabel}\n loading={loading}\n modified={modified}\n onReset={handleReset}\n error={error}\n disabled={disabled}\n buttonAriaLabel={buttonAriaLabel}\n errorButtonLabel={errorButtonLabel}\n pdfButtonLabel={pdfButtonLabel}\n pdfButtonAriaLabel={pdfButtonAriaLabel}\n multiple={multiple}\n >\n {(onDragStart, onDragStop) => (\n <input\n type=\"file\"\n name={name}\n accept={filesTypes}\n disabled={loading || disabled}\n className={style.input}\n onChange={onChange}\n onDragEnter={onDragStart}\n onDrop={onDragStop}\n onDragLeave={onDragStop}\n multiple={multiple}\n required={required}\n />\n )}\n </DragAndDrop>\n {labelLink && hrefLink ? (\n <div className={style.templateLink}>\n {labelLink}\n <Link\n type=\"text\"\n customStyle={linkCustomStyle}\n link={{href: hrefLink, download: true}}\n label={labelButtonLink}\n />\n </div>\n ) : null}\n {multiple && filesNumber > 0 ? (\n <div className={style.multipleFilesContainer}>\n <div className={style.filesNumber}>\n <FileLinesIcon className={style.icon} />\n <div>{filesNumber} files</div>\n </div>\n <div className={style.seeDetailsButton} onClick={onClick_}>\n <EyeIcon className={style.seeIcon} />\n <div>See details</div>\n </div>\n </div>\n ) : null}\n </>\n );\n};\n\nInputFileDraggable.propTypes = {\n ...DragAndDrop.propTypes,\n name: PropTypes.string,\n onChange: PropTypes.func,\n onReset: PropTypes.func,\n filesTypes: FilesPropType,\n error: PropTypes.string,\n buttonAriaLabel: PropTypes.string,\n errorButtonLabel: PropTypes.string,\n labelLink: PropTypes.string,\n hrefLink: PropTypes.string\n};\n\nexport default InputFileDraggable;\n"],"mappings":";;;;;;;AAAA;;AACA;;AAEA;;AAIA;;AACA;;AACA;;AACA;;;;;;;;;;AAEA,MAAMA,kBAAkB,GAAG,CAAC;EAC1BC,KAD0B;EAE1BC,WAF0B;EAG1BC,YAH0B;EAI1BC,cAJ0B;EAK1BC,WAL0B;EAM1BC,OAN0B;EAO1BC,QAP0B;EAQ1BC,QAAQ,GAAG,KARe;EAS1BC,
|
|
1
|
+
{"version":3,"file":"index.js","names":["InputFileDraggable","title","description","previewLabel","previewContent","uploadLabel","loading","modified","disabled","disableHoverTooltip","onChange","onReset","name","labelLink","labelButtonLink","hrefLink","filesTypes","error","buttonAriaLabel","errorButtonLabel","pdfButtonLabel","pdfButtonAriaLabel","filesNumber","multiple","required","onClick","handleReset","useCallback","e","preventDefault","linkCustomStyle","width","color","onClick_","onDragStart","onDragStop","style","input","templateLink","href","download","multipleFilesContainer","icon","seeDetailsButton","seeIcon","propTypes","DragAndDrop","PropTypes","bool","string","func","FilesPropType"],"sources":["../../../src/atom/input-file-draggable/index.js"],"sourcesContent":["import React, {useCallback} from 'react';\nimport PropTypes from 'prop-types';\nimport {isNil} from 'lodash/fp';\nimport {\n NovaSolidFilesBasicFileLines as FileLinesIcon,\n NovaCompositionCoorpacademyEye as EyeIcon\n} from '@coorpacademy/nova-icons';\nimport DragAndDrop from '../drag-and-drop';\nimport Link from '../button-link';\nimport {FilesPropType} from '../../util/proptypes';\nimport style from './style.css';\n\nconst InputFileDraggable = ({\n title,\n description,\n previewLabel,\n previewContent,\n uploadLabel,\n loading,\n modified,\n disabled = false,\n disableHoverTooltip = false,\n onChange,\n onReset = null,\n name,\n labelLink,\n labelButtonLink,\n hrefLink,\n filesTypes = '',\n error = '',\n buttonAriaLabel,\n errorButtonLabel,\n pdfButtonLabel,\n pdfButtonAriaLabel,\n filesNumber = 0,\n multiple = false,\n required = false,\n onClick\n}) => {\n const handleReset = useCallback(\n e => {\n if (isNil(onReset)) return;\n e.preventDefault();\n return onReset(e);\n },\n [onReset]\n );\n\n const linkCustomStyle = {\n width: '40px',\n color: '#FF541F'\n };\n\n const onClick_ = useCallback(\n e => {\n e.preventDefault();\n return onClick(e);\n },\n [onClick]\n );\n\n return (\n <>\n <DragAndDrop\n title={title}\n description={description}\n previewLabel={previewLabel}\n previewContent={previewContent}\n uploadLabel={uploadLabel}\n loading={loading}\n modified={modified}\n onReset={handleReset}\n error={error}\n disabled={disabled}\n disableHoverTooltip={disableHoverTooltip}\n buttonAriaLabel={buttonAriaLabel}\n errorButtonLabel={errorButtonLabel}\n pdfButtonLabel={pdfButtonLabel}\n pdfButtonAriaLabel={pdfButtonAriaLabel}\n multiple={multiple}\n >\n {(onDragStart, onDragStop) => (\n <input\n {...(disableHoverTooltip ? {title: ''} : {})}\n type=\"file\"\n name={name}\n accept={filesTypes}\n disabled={loading || disabled}\n className={style.input}\n onChange={onChange}\n onDragEnter={onDragStart}\n onDrop={onDragStop}\n onDragLeave={onDragStop}\n multiple={multiple}\n required={required}\n />\n )}\n </DragAndDrop>\n {labelLink && hrefLink ? (\n <div className={style.templateLink}>\n {labelLink}\n <Link\n type=\"text\"\n customStyle={linkCustomStyle}\n link={{href: hrefLink, download: true}}\n label={labelButtonLink}\n />\n </div>\n ) : null}\n {multiple && filesNumber > 0 ? (\n <div className={style.multipleFilesContainer}>\n <div className={style.filesNumber}>\n <FileLinesIcon className={style.icon} />\n <div>{filesNumber} files</div>\n </div>\n <div className={style.seeDetailsButton} onClick={onClick_}>\n <EyeIcon className={style.seeIcon} />\n <div>See details</div>\n </div>\n </div>\n ) : null}\n </>\n );\n};\n\nInputFileDraggable.propTypes = {\n ...DragAndDrop.propTypes,\n disableHoverTooltip: PropTypes.bool,\n name: PropTypes.string,\n onChange: PropTypes.func,\n onReset: PropTypes.func,\n filesTypes: FilesPropType,\n error: PropTypes.string,\n buttonAriaLabel: PropTypes.string,\n errorButtonLabel: PropTypes.string,\n labelLink: PropTypes.string,\n hrefLink: PropTypes.string\n};\n\nexport default InputFileDraggable;\n"],"mappings":"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"}
|
|
@@ -3,6 +3,7 @@ declare function DragAndDropWrapper(props: any): JSX.Element;
|
|
|
3
3
|
declare namespace DragAndDropWrapper {
|
|
4
4
|
const propTypes: {
|
|
5
5
|
list: PropTypes.Requireable<(PropTypes.InferProps<{
|
|
6
|
+
disableHoverTooltip: PropTypes.Requireable<boolean>;
|
|
6
7
|
name: PropTypes.Requireable<string>;
|
|
7
8
|
onChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
8
9
|
onReset: PropTypes.Requireable<(...args: any[]) => any>;
|
|
@@ -45,6 +45,7 @@ declare namespace TitleAndCheckBoxWrapper {
|
|
|
45
45
|
}> | PropTypes.InferProps<{
|
|
46
46
|
childType: PropTypes.Requireable<string>;
|
|
47
47
|
list: PropTypes.Requireable<(PropTypes.InferProps<{
|
|
48
|
+
disableHoverTooltip: PropTypes.Requireable<boolean>;
|
|
48
49
|
name: PropTypes.Requireable<string>;
|
|
49
50
|
onChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
50
51
|
onReset: PropTypes.Requireable<(...args: any[]) => any>;
|
|
@@ -74,6 +75,7 @@ declare namespace TitleAndCheckBoxWrapper {
|
|
|
74
75
|
'data-name': PropTypes.Requireable<string>;
|
|
75
76
|
}> | PropTypes.InferProps<{
|
|
76
77
|
childType: PropTypes.Requireable<string>;
|
|
78
|
+
disableHoverTooltip: PropTypes.Requireable<boolean>;
|
|
77
79
|
name: PropTypes.Requireable<string>;
|
|
78
80
|
onChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
79
81
|
onReset: PropTypes.Requireable<(...args: any[]) => any>;
|
|
@@ -36,6 +36,7 @@ declare const TitleRadioWrapper: {
|
|
|
36
36
|
error: import("prop-types").Requireable<string>;
|
|
37
37
|
theme: import("prop-types").Requireable<string>;
|
|
38
38
|
}> | import("prop-types").InferProps<{
|
|
39
|
+
disableHoverTooltip: import("prop-types").Requireable<boolean>;
|
|
39
40
|
name: import("prop-types").Requireable<string>;
|
|
40
41
|
onChange: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
41
42
|
onReset: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/molecule/title-radio-wrapper/index.tsx"],"names":[],"mappings":";AAKA,OAAkB,EAAC,sBAAsB,EAAC,MAAM,SAAS,CAAC;AAqB1D,QAAA,MAAM,iBAAiB;YAAW,sBAAsB
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/molecule/title-radio-wrapper/index.tsx"],"names":[],"mappings":";AAKA,OAAkB,EAAC,sBAAsB,EAAC,MAAM,SAAS,CAAC;AAqB1D,QAAA,MAAM,iBAAiB;YAAW,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAQvD,CAAC;AAIF,eAAe,iBAAiB,CAAC"}
|
|
@@ -36,6 +36,7 @@ declare const propTypes: {
|
|
|
36
36
|
error: PropTypes.Requireable<string>;
|
|
37
37
|
theme: PropTypes.Requireable<string>;
|
|
38
38
|
}> | PropTypes.InferProps<{
|
|
39
|
+
disableHoverTooltip: PropTypes.Requireable<boolean>;
|
|
39
40
|
name: PropTypes.Requireable<string>;
|
|
40
41
|
onChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
41
42
|
onReset: PropTypes.Requireable<(...args: any[]) => any>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/molecule/title-radio-wrapper/types.ts"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,YAAY,CAAC;AACnC,OAAO,kBAAkB,MAAM,iCAAiC,CAAC;AAEjE,OAAO,EAAC,mBAAmB,EAAC,MAAM,mCAAmC,CAAC;AACtE,OAAO,cAAc,MAAM,oBAAoB,CAAC;AAEhD,QAAA,MAAM,SAAS
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/molecule/title-radio-wrapper/types.ts"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,YAAY,CAAC;AACnC,OAAO,kBAAkB,MAAM,iCAAiC,CAAC;AAEjE,OAAO,EAAC,mBAAmB,EAAC,MAAM,mCAAmC,CAAC;AACtE,OAAO,cAAc,MAAM,oBAAoB,CAAC;AAEhD,QAAA,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAOd,CAAC;AAEF,oBAAY,sBAAsB,GAAG;IACnC,cAAc,EAAE,mBAAmB,CAAC;IACpC,KAAK,EAAE,OAAO,cAAc,CAAC,SAAS,GAAG,OAAO,kBAAkB,CAAC,SAAS,CAAC;IAC7E,SAAS,EAAE,iBAAiB,GAAG,gBAAgB,CAAC;CACjD,CAAC;AAEF,eAAe,SAAS,CAAC"}
|
|
@@ -48,6 +48,7 @@ declare namespace RewardsForm {
|
|
|
48
48
|
}> | PropTypes.InferProps<{
|
|
49
49
|
childType: PropTypes.Requireable<string>;
|
|
50
50
|
list: PropTypes.Requireable<(PropTypes.InferProps<{
|
|
51
|
+
disableHoverTooltip: PropTypes.Requireable<boolean>;
|
|
51
52
|
name: PropTypes.Requireable<string>;
|
|
52
53
|
onChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
53
54
|
onReset: PropTypes.Requireable<(...args: any[]) => any>;
|
|
@@ -77,6 +78,7 @@ declare namespace RewardsForm {
|
|
|
77
78
|
'data-name': PropTypes.Requireable<string>;
|
|
78
79
|
}> | PropTypes.InferProps<{
|
|
79
80
|
childType: PropTypes.Requireable<string>;
|
|
81
|
+
disableHoverTooltip: PropTypes.Requireable<boolean>;
|
|
80
82
|
name: PropTypes.Requireable<string>;
|
|
81
83
|
onChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
82
84
|
onReset: PropTypes.Requireable<(...args: any[]) => any>;
|
|
@@ -47,6 +47,7 @@ declare const SelectOpponents: {
|
|
|
47
47
|
}> | import("prop-types").InferProps<{
|
|
48
48
|
childType: import("prop-types").Requireable<string>;
|
|
49
49
|
list: import("prop-types").Requireable<(import("prop-types").InferProps<{
|
|
50
|
+
disableHoverTooltip: import("prop-types").Requireable<boolean>;
|
|
50
51
|
name: import("prop-types").Requireable<string>;
|
|
51
52
|
onChange: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
52
53
|
onReset: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
@@ -76,6 +77,7 @@ declare const SelectOpponents: {
|
|
|
76
77
|
'data-name': import("prop-types").Requireable<string>;
|
|
77
78
|
}> | import("prop-types").InferProps<{
|
|
78
79
|
childType: import("prop-types").Requireable<string>;
|
|
80
|
+
disableHoverTooltip: import("prop-types").Requireable<boolean>;
|
|
79
81
|
name: import("prop-types").Requireable<string>;
|
|
80
82
|
onChange: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
81
83
|
onReset: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/organism/select-opponents/index.tsx"],"names":[],"mappings":";AAGA,OAAkB,EAAC,oBAAoB,EAA+B,MAAM,SAAS,CAAC;AAMtF,QAAA,MAAM,eAAe;YAAW,oBAAoB
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/organism/select-opponents/index.tsx"],"names":[],"mappings":";AAGA,OAAkB,EAAC,oBAAoB,EAA+B,MAAM,SAAS,CAAC;AAMtF,QAAA,MAAM,eAAe;YAAW,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgBnD,CAAC;AAIF,eAAe,eAAe,CAAC"}
|
|
@@ -44,6 +44,7 @@ export declare const propTypes: {
|
|
|
44
44
|
}> | PropTypes.InferProps<{
|
|
45
45
|
childType: PropTypes.Requireable<string>;
|
|
46
46
|
list: PropTypes.Requireable<(PropTypes.InferProps<{
|
|
47
|
+
disableHoverTooltip: PropTypes.Requireable<boolean>;
|
|
47
48
|
name: PropTypes.Requireable<string>;
|
|
48
49
|
onChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
49
50
|
onReset: PropTypes.Requireable<(...args: any[]) => any>;
|
|
@@ -73,6 +74,7 @@ export declare const propTypes: {
|
|
|
73
74
|
'data-name': PropTypes.Requireable<string>;
|
|
74
75
|
}> | PropTypes.InferProps<{
|
|
75
76
|
childType: PropTypes.Requireable<string>;
|
|
77
|
+
disableHoverTooltip: PropTypes.Requireable<boolean>;
|
|
76
78
|
name: PropTypes.Requireable<string>;
|
|
77
79
|
onChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
78
80
|
onReset: PropTypes.Requireable<(...args: any[]) => any>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/organism/select-opponents/types.ts"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,YAAY,CAAC;AAGnC,eAAO,MAAM,SAAS
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/organism/select-opponents/types.ts"],"names":[],"mappings":"AAAA,OAAO,SAAS,MAAM,YAAY,CAAC;AAGnC,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAErB,CAAC;AAEF,oBAAY,4BAA4B,GAAG;IACzC,KAAK,EAAE;QACL,SAAS,EAAE,iBAAiB,GAAG,cAAc,CAAC;QAC9C,CAAC,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC;KACtB,CAAC;IACF,CAAC,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC;CACtB,CAAC;AAEF,oBAAY,oBAAoB,GAAG;IACjC,KAAK,EAAE,4BAA4B,EAAE,CAAC;CACvC,CAAC;AAEF,eAAe,SAAS,CAAC"}
|
|
@@ -92,6 +92,7 @@ declare const TitleAndInput: {
|
|
|
92
92
|
}> | import("prop-types").InferProps<{
|
|
93
93
|
childType: import("prop-types").Requireable<string>;
|
|
94
94
|
list: import("prop-types").Requireable<(import("prop-types").InferProps<{
|
|
95
|
+
disableHoverTooltip: import("prop-types").Requireable<boolean>;
|
|
95
96
|
name: import("prop-types").Requireable<string>;
|
|
96
97
|
onChange: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
97
98
|
onReset: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
@@ -121,6 +122,7 @@ declare const TitleAndInput: {
|
|
|
121
122
|
'data-name': import("prop-types").Requireable<string>;
|
|
122
123
|
}> | import("prop-types").InferProps<{
|
|
123
124
|
childType: import("prop-types").Requireable<string>;
|
|
125
|
+
disableHoverTooltip: import("prop-types").Requireable<boolean>;
|
|
124
126
|
name: import("prop-types").Requireable<string>;
|
|
125
127
|
onChange: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
126
128
|
onReset: import("prop-types").Requireable<(...args: any[]) => any>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/organism/title-and-input/index.tsx"],"names":[],"mappings":";AAKA,OAAkB,EAAC,kBAAkB,EAAC,MAAM,SAAS,CAAC;AAiBtD,QAAA,MAAM,aAAa;YAAW,kBAAkB
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/organism/title-and-input/index.tsx"],"names":[],"mappings":";AAKA,OAAkB,EAAC,kBAAkB,EAAC,MAAM,SAAS,CAAC;AAiBtD,QAAA,MAAM,aAAa;YAAW,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgB/C,CAAC;AAIF,eAAe,aAAa,CAAC"}
|
|
@@ -93,6 +93,7 @@ declare const propTypes: {
|
|
|
93
93
|
}> | PropTypes.InferProps<{
|
|
94
94
|
childType: PropTypes.Requireable<string>;
|
|
95
95
|
list: PropTypes.Requireable<(PropTypes.InferProps<{
|
|
96
|
+
disableHoverTooltip: PropTypes.Requireable<boolean>;
|
|
96
97
|
name: PropTypes.Requireable<string>;
|
|
97
98
|
onChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
98
99
|
onReset: PropTypes.Requireable<(...args: any[]) => any>;
|
|
@@ -122,6 +123,7 @@ declare const propTypes: {
|
|
|
122
123
|
'data-name': PropTypes.Requireable<string>;
|
|
123
124
|
}> | PropTypes.InferProps<{
|
|
124
125
|
childType: PropTypes.Requireable<string>;
|
|
126
|
+
disableHoverTooltip: PropTypes.Requireable<boolean>;
|
|
125
127
|
name: PropTypes.Requireable<string>;
|
|
126
128
|
onChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
127
129
|
onReset: PropTypes.Requireable<(...args: any[]) => any>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/organism/title-and-input/types.ts"],"names":[],"mappings":";AAAA,OAAO,SAAS,MAAM,YAAY,CAAC;AACnC,OAAO,YAAY,MAAM,yBAAyB,CAAC;AAEnD,OAAO,cAAc,MAAM,gCAAgC,CAAC;AAE5D,OAAO,EAAC,oBAAoB,EAAC,MAAM,2BAA2B,CAAC;AAE/D,QAAA,MAAM,SAAS
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/organism/title-and-input/types.ts"],"names":[],"mappings":";AAAA,OAAO,SAAS,MAAM,YAAY,CAAC;AACnC,OAAO,YAAY,MAAM,yBAAyB,CAAC;AAEnD,OAAO,cAAc,MAAM,gCAAgC,CAAC;AAE5D,OAAO,EAAC,oBAAoB,EAAC,MAAM,2BAA2B,CAAC;AAE/D,QAAA,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAQd,CAAC;AACF,oBAAY,kBAAkB,GAAG;IAC/B,KAAK,EAAE;QACL,KAAK,EAAE,MAAM,CAAC;QACd,QAAQ,EAAE,MAAM,CAAC;QACjB,IAAI,EAAE,MAAM,CAAC;QACb,WAAW,EAAE,MAAM,CAAC;KACrB,CAAC;IACF,KAAK,EACD,KAAK,CAAC,cAAc,CAAC,OAAO,cAAc,CAAC,GAC3C,KAAK,CAAC,cAAc,CAAC,OAAO,YAAY,CAAC,GACzC,oBAAoB,CAAC;IACzB,SAAS,EAAE,MAAM,CAAC;CACnB,CAAC;AAEF,eAAe,SAAS,CAAC"}
|
|
@@ -309,6 +309,7 @@ declare namespace WizardContents {
|
|
|
309
309
|
}> | PropTypes.InferProps<{
|
|
310
310
|
childType: PropTypes.Requireable<string>;
|
|
311
311
|
list: PropTypes.Requireable<(PropTypes.InferProps<{
|
|
312
|
+
disableHoverTooltip: PropTypes.Requireable<boolean>;
|
|
312
313
|
name: PropTypes.Requireable<string>;
|
|
313
314
|
onChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
314
315
|
onReset: PropTypes.Requireable<(...args: any[]) => any>;
|
|
@@ -338,6 +339,7 @@ declare namespace WizardContents {
|
|
|
338
339
|
'data-name': PropTypes.Requireable<string>;
|
|
339
340
|
}> | PropTypes.InferProps<{
|
|
340
341
|
childType: PropTypes.Requireable<string>;
|
|
342
|
+
disableHoverTooltip: PropTypes.Requireable<boolean>;
|
|
341
343
|
name: PropTypes.Requireable<string>;
|
|
342
344
|
onChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
343
345
|
onReset: PropTypes.Requireable<(...args: any[]) => any>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coorpacademy/components",
|
|
3
|
-
"version": "11.
|
|
3
|
+
"version": "11.23.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"module": "es/index.js",
|
|
@@ -168,5 +168,5 @@
|
|
|
168
168
|
"last 2 versions",
|
|
169
169
|
"IE 11"
|
|
170
170
|
],
|
|
171
|
-
"gitHead": "
|
|
171
|
+
"gitHead": "6c81a31aeb9ee6d5b6b1c194bd993c53271d0887"
|
|
172
172
|
}
|