gnui 1.1.5 → 1.1.7
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 +10 -4
- package/dist/js/gnui.js +10 -4
- package/dist/js/gnui.min.js +1 -1
- package/dist/styles/default.css +2 -2
- package/dist/styles/gpi.css +2 -2
- package/dist/styles/insights.css +2 -2
- package/dist/styles/nac.css +2 -2
- package/dist/styles/zt-nac.css +2 -2
- 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 +2 -2
- 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 +3 -3
- 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 +2 -2
- package/styleguide/index.html +2 -2
- package/styleguide/tag/javascript/index.html +1 -1
- package/styleguide/tag/v.0.1.0/index.html +4 -4
package/dist/js/gnui.esm.js
CHANGED
|
@@ -18591,6 +18591,10 @@ class Modal extends GNCoreInstance {
|
|
|
18591
18591
|
confirm: '확인',
|
|
18592
18592
|
cancel: '취소'
|
|
18593
18593
|
},
|
|
18594
|
+
sizeSets: {
|
|
18595
|
+
confirm: 'normal',
|
|
18596
|
+
cancel: 'normal'
|
|
18597
|
+
},
|
|
18594
18598
|
contents: '',
|
|
18595
18599
|
width: 400,
|
|
18596
18600
|
hasClose: true,
|
|
@@ -18649,8 +18653,8 @@ class Modal extends GNCoreInstance {
|
|
|
18649
18653
|
createElement$1("div", { className: "modal-body-content", style: contStyles })),
|
|
18650
18654
|
(config.hasConfirm || config.hasCancel) && /* 확인/취소 옵션 확인 */
|
|
18651
18655
|
createElement$1("div", { className: "modal-footer has-text-center" },
|
|
18652
|
-
config.hasConfirm && createElement$1("button", { type: "button", className: "gn-button"
|
|
18653
|
-
config.hasCancel && createElement$1("button", { type: "button", className: "gn-button btnCloseModal is-cancel"
|
|
18656
|
+
config.hasConfirm && createElement$1("button", { type: "button", className: "gn-button" + ` is-${config.sizeSets.confirm}`, "on-click": this._hidden.confirm }, config.textSets.confirm),
|
|
18657
|
+
config.hasCancel && createElement$1("button", { type: "button", className: "gn-button btnCloseModal is-cancel" + ` is-${config.sizeSets.cancel}`, "on-click": this._hidden.close }, config.textSets.cancel))));
|
|
18654
18658
|
}
|
|
18655
18659
|
$render(config) {
|
|
18656
18660
|
if (config.contents) {
|
|
@@ -18805,9 +18809,11 @@ class JsonView extends GNCoreInstance {
|
|
|
18805
18809
|
schema && schema.Required && schema.Required.includes(key) ? ' *' : '');
|
|
18806
18810
|
},
|
|
18807
18811
|
valueView: (data, schema, parent) => {
|
|
18812
|
+
let val = commaNum(data);
|
|
18808
18813
|
return schema && schema.RefURL ?
|
|
18809
|
-
|
|
18810
|
-
|
|
18814
|
+
(val === '0' ? this._hidden.value(data, schema) :
|
|
18815
|
+
createElement$1("a", { href: interpolateURL(schema.RefURL, { data, schema, parent, root: this.$options.data }), target: schema.Target ? schema.Target : '_self' }, this._hidden.value(data, schema)))
|
|
18816
|
+
: this._hidden.value(data, schema);
|
|
18811
18817
|
},
|
|
18812
18818
|
value: (data, schema) => {
|
|
18813
18819
|
let valueNode;
|
package/dist/js/gnui.js
CHANGED
|
@@ -18809,6 +18809,10 @@
|
|
|
18809
18809
|
confirm: '확인',
|
|
18810
18810
|
cancel: '취소'
|
|
18811
18811
|
},
|
|
18812
|
+
sizeSets: {
|
|
18813
|
+
confirm: 'normal',
|
|
18814
|
+
cancel: 'normal'
|
|
18815
|
+
},
|
|
18812
18816
|
contents: '',
|
|
18813
18817
|
width: 400,
|
|
18814
18818
|
hasClose: true,
|
|
@@ -18868,8 +18872,8 @@
|
|
|
18868
18872
|
createElement$1("div", { className: "modal-body-content", style: contStyles })),
|
|
18869
18873
|
(config.hasConfirm || config.hasCancel) && /* 확인/취소 옵션 확인 */
|
|
18870
18874
|
createElement$1("div", { className: "modal-footer has-text-center" },
|
|
18871
|
-
config.hasConfirm && createElement$1("button", { type: "button", className: "gn-button", "on-click": this._hidden.confirm }, config.textSets.confirm),
|
|
18872
|
-
config.hasCancel && createElement$1("button", { type: "button", className: "gn-button btnCloseModal is-cancel", "on-click": this._hidden.close }, config.textSets.cancel))));
|
|
18875
|
+
config.hasConfirm && createElement$1("button", { type: "button", className: "gn-button" + (" is-" + config.sizeSets.confirm), "on-click": this._hidden.confirm }, config.textSets.confirm),
|
|
18876
|
+
config.hasCancel && createElement$1("button", { type: "button", className: "gn-button btnCloseModal is-cancel" + (" is-" + config.sizeSets.cancel), "on-click": this._hidden.close }, config.textSets.cancel))));
|
|
18873
18877
|
};
|
|
18874
18878
|
Modal.prototype.$render = function (config) {
|
|
18875
18879
|
if (config.contents) {
|
|
@@ -19027,9 +19031,11 @@
|
|
|
19027
19031
|
schema && schema.Required && schema.Required.includes(key) ? ' *' : '');
|
|
19028
19032
|
},
|
|
19029
19033
|
valueView: function (data, schema, parent) {
|
|
19034
|
+
var val = commaNum(data);
|
|
19030
19035
|
return schema && schema.RefURL ?
|
|
19031
|
-
|
|
19032
|
-
|
|
19036
|
+
(val === '0' ? _this._hidden.value(data, schema) :
|
|
19037
|
+
createElement$1("a", { href: interpolateURL(schema.RefURL, { data: data, schema: schema, parent: parent, root: _this.$options.data }), target: schema.Target ? schema.Target : '_self' }, _this._hidden.value(data, schema)))
|
|
19038
|
+
: _this._hidden.value(data, schema);
|
|
19033
19039
|
},
|
|
19034
19040
|
value: function (data, schema) {
|
|
19035
19041
|
var valueNode;
|