arengibook 1.2.33 → 1.2.34
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/index.js +16 -41
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -13950,51 +13950,26 @@ Popup.propTypes = {
|
|
|
13950
13950
|
arengimode: PropTypes.bool
|
|
13951
13951
|
};
|
|
13952
13952
|
|
|
13953
|
-
|
|
13954
|
-
|
|
13955
|
-
|
|
13956
|
-
|
|
13957
|
-
|
|
13958
|
-
|
|
13959
|
-
|
|
13960
|
-
|
|
13961
|
-
|
|
13962
|
-
|
|
13963
|
-
color: 'red',
|
|
13964
|
-
fontSize: '20px'
|
|
13965
|
-
},
|
|
13966
|
-
className: "pi pi-plus"
|
|
13967
|
-
}), " ", prevArgs.header, " "),
|
|
13968
|
-
headerStyle: {
|
|
13969
|
-
backgroundColor: 'transparent',
|
|
13970
|
-
marginBottom: '-10px',
|
|
13971
|
-
color: '#000000'
|
|
13972
|
-
},
|
|
13973
|
-
closeIcon: /*#__PURE__*/React__default.createElement("span", {
|
|
13974
|
-
className: "close-text",
|
|
13975
|
-
style: {
|
|
13976
|
-
color: '#FFFFFF',
|
|
13977
|
-
fontSize: '18px'
|
|
13978
|
-
}
|
|
13979
|
-
}, "Fermer ", /*#__PURE__*/React__default.createElement("i", {
|
|
13980
|
-
style: {
|
|
13981
|
-
color: 'red',
|
|
13982
|
-
fontWeight: 'bold'
|
|
13983
|
-
},
|
|
13984
|
-
className: "pi pi-times"
|
|
13985
|
-
}))
|
|
13986
|
-
};
|
|
13987
|
-
};
|
|
13953
|
+
// const ArengiModeTemplate = (prevArgs) => ({
|
|
13954
|
+
// header: <span style={{color:'#FFFFFF', fontSize:'25px', fontWeight:"initial"}}><i style={{color:'red', fontSize:'20px'}} className="pi pi-plus" /> {prevArgs.header} </span>,
|
|
13955
|
+
// headerStyle: {
|
|
13956
|
+
// backgroundColor: 'transparent',
|
|
13957
|
+
// marginBottom: '-10px',
|
|
13958
|
+
// color: '#000000',
|
|
13959
|
+
// },
|
|
13960
|
+
// closeIcon: <span className="close-text" style={{color:'#FFFFFF', fontSize:'18px'}}>Fermer <i style={{color:'red', fontWeight:'bold'}} className="pi pi-times" /></span>
|
|
13961
|
+
// })
|
|
13962
|
+
|
|
13988
13963
|
var PopupPresets = {
|
|
13989
13964
|
Default: {
|
|
13990
13965
|
header: 'Titre de la popup'
|
|
13991
13966
|
},
|
|
13992
|
-
PopupArengi: {
|
|
13993
|
-
|
|
13994
|
-
|
|
13995
|
-
|
|
13996
|
-
|
|
13997
|
-
},
|
|
13967
|
+
// PopupArengi: {
|
|
13968
|
+
// arengimode: true,
|
|
13969
|
+
// header: ArengiModeTemplate.header,
|
|
13970
|
+
// headerStyle: ArengiModeTemplate.headerStyle,
|
|
13971
|
+
// closeIcon: ArengiModeTemplate.closeIcon,
|
|
13972
|
+
// },
|
|
13998
13973
|
WithFooter: {
|
|
13999
13974
|
header: 'Popup avec pied de page',
|
|
14000
13975
|
footer: /*#__PURE__*/React__default.createElement("div", {
|