gnui 1.1.3 → 1.1.4
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/js/gnui.esm.js +3 -1
- package/dist/js/gnui.js +3 -1
- package/dist/js/gnui.min.js +1 -1
- package/package.json +1 -1
- package/styleguide/category/COLOR/index.html +1 -1
- package/styleguide/category/COMPONENT/Alert(js)/index.html +1 -1
- package/styleguide/category/COMPONENT/Bignumber/index.html +1 -1
- package/styleguide/category/COMPONENT/Breadcrumb/index.html +1 -1
- package/styleguide/category/COMPONENT/Calendar(js)/index.html +1 -1
- package/styleguide/category/COMPONENT/Card/index.html +1 -1
- package/styleguide/category/COMPONENT/Chart(js)/index.html +1 -1
- package/styleguide/category/COMPONENT/Datagrid(js)/index.html +1 -1
- package/styleguide/category/COMPONENT/Growl(js)/index.html +1 -1
- package/styleguide/category/COMPONENT/JsonView(js)/index.html +1 -1
- package/styleguide/category/COMPONENT/Message(js)/index.html +1 -1
- package/styleguide/category/COMPONENT/Modal(js)/index.html +1 -1
- package/styleguide/category/COMPONENT/Pagination/index.html +1 -1
- package/styleguide/category/COMPONENT/Panel/index.html +1 -1
- package/styleguide/category/COMPONENT/Progressbar(js)/index.html +1 -1
- package/styleguide/category/COMPONENT/Tab(js)/index.html +1 -1
- package/styleguide/category/COMPONENT/Tagcloud(js)/index.html +1 -1
- package/styleguide/category/COMPONENT/Time(js)/index.html +1 -1
- package/styleguide/category/COMPONENT/Tooltip(js)/index.html +1 -1
- package/styleguide/category/COMPONENT/Tree(js)/index.html +1 -1
- package/styleguide/category/CONTROLS/Button(js)/index.html +1 -1
- package/styleguide/category/CONTROLS/Checkbox/index.html +1 -1
- package/styleguide/category/CONTROLS/Colorpicker(js)/index.html +1 -1
- package/styleguide/category/CONTROLS/Datepicker(js)/index.html +1 -1
- package/styleguide/category/CONTROLS/Dropdown(js)/index.html +1 -1
- package/styleguide/category/CONTROLS/File/index.html +1 -1
- package/styleguide/category/CONTROLS/Form/Control/index.html +1 -1
- package/styleguide/category/CONTROLS/Form/Field/index.html +1 -1
- package/styleguide/category/CONTROLS/Form/Plain/index.html +1 -1
- package/styleguide/category/CONTROLS/Input/index.html +1 -1
- package/styleguide/category/CONTROLS/MenuButton(js)/index.html +1 -1
- package/styleguide/category/CONTROLS/MultiText(js)/index.html +1 -1
- package/styleguide/category/CONTROLS/Picklist(js)/index.html +1 -1
- package/styleguide/category/CONTROLS/Radio/index.html +1 -1
- package/styleguide/category/CONTROLS/Select/index.html +1 -1
- package/styleguide/category/CONTROLS/SelectButton(js)/index.html +1 -1
- package/styleguide/category/CONTROLS/Slider/index.html +1 -1
- package/styleguide/category/CONTROLS/Switch(js)/index.html +1 -1
- package/styleguide/category/CONTROLS/SyntaxInput(js)/index.html +1 -1
- package/styleguide/category/CONTROLS/Textarea/index.html +1 -1
- package/styleguide/category/ELEMENTS/Box/index.html +1 -1
- package/styleguide/category/ELEMENTS/Icon/index.html +1 -1
- package/styleguide/category/ELEMENTS/Image/index.html +1 -1
- package/styleguide/category/ELEMENTS/List/index.html +1 -1
- package/styleguide/category/ELEMENTS/Table/index.html +1 -1
- package/styleguide/category/ELEMENTS/Tag/index.html +1 -1
- package/styleguide/category/ELEMENTS/Title/index.html +1 -1
- package/styleguide/category/LAYOUT/Container/index.html +1 -1
- package/styleguide/category/LAYOUT/Grid/index.html +1 -1
- package/styleguide/category/LAYOUT/Splitter(js)/index.html +1 -1
- package/styleguide/category/UTILITY/index.html +1 -1
- package/styleguide/category/Utils/index.html +1 -1
- package/styleguide/color.html +1 -1
- package/styleguide/index.html +1 -1
- package/styleguide/tag/javascript/index.html +1 -1
- package/styleguide/tag/v.0.1.0/index.html +1 -1
package/dist/js/gnui.esm.js
CHANGED
|
@@ -18572,6 +18572,7 @@ class Modal extends GNCoreInstance {
|
|
|
18572
18572
|
css(modal, 'left', getPositionX(modal, false));
|
|
18573
18573
|
css(modal, 'top', getPositionY(modal, false));
|
|
18574
18574
|
}
|
|
18575
|
+
this.$event(this, 'onOpen');
|
|
18575
18576
|
},
|
|
18576
18577
|
toggle: () => {
|
|
18577
18578
|
toggleClass(this.$el, 'is-minimized');
|
|
@@ -18597,7 +18598,8 @@ class Modal extends GNCoreInstance {
|
|
|
18597
18598
|
};
|
|
18598
18599
|
this.events = {
|
|
18599
18600
|
'onClose': true,
|
|
18600
|
-
'onConfirm': true
|
|
18601
|
+
'onConfirm': true,
|
|
18602
|
+
'onOpen': true
|
|
18601
18603
|
};
|
|
18602
18604
|
this.methods = {
|
|
18603
18605
|
close() {
|
package/dist/js/gnui.js
CHANGED
|
@@ -18790,6 +18790,7 @@
|
|
|
18790
18790
|
css(modal, 'left', getPositionX(modal, false));
|
|
18791
18791
|
css(modal, 'top', getPositionY(modal, false));
|
|
18792
18792
|
}
|
|
18793
|
+
_this.$event(_this, 'onOpen');
|
|
18793
18794
|
},
|
|
18794
18795
|
toggle: function () {
|
|
18795
18796
|
toggleClass(_this.$el, 'is-minimized');
|
|
@@ -18815,7 +18816,8 @@
|
|
|
18815
18816
|
};
|
|
18816
18817
|
_this.events = {
|
|
18817
18818
|
'onClose': true,
|
|
18818
|
-
'onConfirm': true
|
|
18819
|
+
'onConfirm': true,
|
|
18820
|
+
'onOpen': true
|
|
18819
18821
|
};
|
|
18820
18822
|
_this.methods = {
|
|
18821
18823
|
close: function () {
|