arengibook 1.2.33 → 1.2.35
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 +10 -5
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -13987,13 +13987,15 @@ var ArengiModeTemplate = function ArengiModeTemplate(prevArgs) {
|
|
|
13987
13987
|
};
|
|
13988
13988
|
var PopupPresets = {
|
|
13989
13989
|
Default: {
|
|
13990
|
-
header: 'Titre de la popup'
|
|
13990
|
+
header: 'Titre de la popup',
|
|
13991
|
+
visible: true
|
|
13991
13992
|
},
|
|
13992
13993
|
PopupArengi: {
|
|
13993
13994
|
arengimode: true,
|
|
13994
13995
|
header: ArengiModeTemplate.header,
|
|
13995
13996
|
headerStyle: ArengiModeTemplate.headerStyle,
|
|
13996
|
-
closeIcon: ArengiModeTemplate.closeIcon
|
|
13997
|
+
closeIcon: ArengiModeTemplate.closeIcon,
|
|
13998
|
+
visible: true
|
|
13997
13999
|
},
|
|
13998
14000
|
WithFooter: {
|
|
13999
14001
|
header: 'Popup avec pied de page',
|
|
@@ -14007,15 +14009,18 @@ var PopupPresets = {
|
|
|
14007
14009
|
label: "Valider",
|
|
14008
14010
|
severity: "success",
|
|
14009
14011
|
onClick: function onClick() {}
|
|
14010
|
-
}))
|
|
14012
|
+
})),
|
|
14013
|
+
visible: true
|
|
14011
14014
|
},
|
|
14012
14015
|
NonModal: {
|
|
14013
14016
|
header: 'Popup non modale',
|
|
14014
|
-
modal: false
|
|
14017
|
+
modal: false,
|
|
14018
|
+
visible: true
|
|
14015
14019
|
},
|
|
14016
14020
|
NonClosable: {
|
|
14017
14021
|
header: 'Popup non fermable',
|
|
14018
|
-
closable: false
|
|
14022
|
+
closable: false,
|
|
14023
|
+
visible: true
|
|
14019
14024
|
}
|
|
14020
14025
|
};
|
|
14021
14026
|
|