@syncfusion/ej2-vue-splitbuttons 25.2.4 → 26.2.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.
@@ -1 +1 @@
1
- {"version":3,"file":"ej2-vue-splitbuttons.es5.js","sources":["../../src/drop-down-button/items.directive.js","../../src/drop-down-button/dropdownbutton.component.js","../../src/split-button/items.directive.js","../../src/split-button/splitbutton.component.js","../../src/progress-button/progressbutton.component.js"],"sourcesContent":["import { gh, isExecute, vueDefineComponent } from '@syncfusion/ej2-vue-base';\nimport { isNullOrUndefined } from '@syncfusion/ej2-base';\nexport var DropDownButtonItemsDirective = vueDefineComponent({\n inject: { custom: { default: null } },\n render: function (createElement) {\n if (!isExecute) {\n var h = !isExecute ? gh : createElement;\n var slots = null;\n if (!isNullOrUndefined(this.$slots.default)) {\n slots = !isExecute ? this.$slots.default() : this.$slots.default;\n }\n return h('div', { class: 'e-directive' }, slots);\n }\n return;\n },\n updated: function () {\n if (!isExecute && this.custom) {\n this.custom();\n }\n },\n methods: {\n getTag: function () {\n return 'e-dropdownbuttonitems';\n }\n }\n});\nexport var DropDownButtonItemsPlugin = {\n name: 'e-dropdownbuttonitems',\n install: function (Vue) {\n Vue.component(DropDownButtonItemsPlugin.name, DropDownButtonItemsDirective);\n }\n};\nexport var DropDownButtonItemDirective = vueDefineComponent({\n render: function () {\n return;\n },\n methods: {\n getTag: function () {\n return 'e-dropdownbuttonitem';\n }\n }\n});\nexport var DropDownButtonItemPlugin = {\n name: 'e-dropdownbuttonitem',\n install: function (Vue) {\n Vue.component(DropDownButtonItemPlugin.name, DropDownButtonItemDirective);\n }\n};\n","import { ComponentBase, gh, getProps, isExecute, vueDefineComponent } from '@syncfusion/ej2-vue-base';\nimport { isNullOrUndefined, getValue } from '@syncfusion/ej2-base';\nimport { DropDownButton } from '@syncfusion/ej2-splitbuttons';\nimport { DropDownButtonItemsDirective, DropDownButtonItemDirective, DropDownButtonItemsPlugin, DropDownButtonItemPlugin } from './items.directive';\nexport var properties = ['isLazyUpdate', 'plugins', 'closeActionEvents', 'content', 'createPopupOnClick', 'cssClass', 'disabled', 'enableHtmlSanitizer', 'enablePersistence', 'enableRtl', 'iconCss', 'iconPosition', 'items', 'locale', 'target', 'beforeClose', 'beforeItemRender', 'beforeOpen', 'close', 'created', 'open', 'select'];\nexport var modelProps = [];\nexport var testProp = getProps({ props: properties });\nexport var props = testProp[0], watch = testProp[1], emitProbs = Object.keys(watch);\nemitProbs.push('modelchanged', 'update:modelValue');\nfor (var _i = 0, modelProps_1 = modelProps; _i < modelProps_1.length; _i++) {\n var props_1 = modelProps_1[_i];\n emitProbs.push('update:' + props_1);\n}\n/**\n * Represents the Essential JS 2 VueJS DropDownButton Component\n * ```html\n * <ejs-dropdownbutton>DropDownButton</ejs-dropdownbutton>\n * ```\n */\nexport var DropDownButtonComponent = vueDefineComponent({\n name: 'DropDownButtonComponent',\n mixins: [ComponentBase],\n props: props,\n watch: watch,\n emits: emitProbs,\n provide: function () { return { custom: this.custom }; },\n data: function () {\n return {\n ej2Instances: new DropDownButton({}),\n propKeys: properties,\n models: modelProps,\n hasChildDirective: true,\n hasInjectedModules: false,\n tagMapper: { \"e-dropdownbuttonitems\": \"e-dropdownbuttonitem\" },\n tagNameMapper: { \"e-dropdownbuttonitems\": \"e-items\" },\n isVue3: !isExecute,\n templateCollection: {},\n };\n },\n created: function () {\n this.bindProperties();\n this.ej2Instances._setProperties = this.ej2Instances.setProperties;\n this.ej2Instances.setProperties = this.setProperties;\n this.ej2Instances.clearTemplate = this.clearTemplate;\n this.updated = this.updated;\n },\n render: function (createElement) {\n var h = !isExecute ? gh : createElement;\n var slots = null;\n if (!isNullOrUndefined(this.$slots.default)) {\n slots = !isExecute ? this.$slots.default() : this.$slots.default;\n }\n return h('button', slots);\n },\n methods: {\n clearTemplate: function (templateNames) {\n if (!templateNames) {\n templateNames = Object.keys(this.templateCollection || {});\n }\n if (templateNames.length && this.templateCollection) {\n for (var _i = 0, templateNames_1 = templateNames; _i < templateNames_1.length; _i++) {\n var tempName = templateNames_1[_i];\n var elementCollection = this.templateCollection[tempName];\n if (elementCollection && elementCollection.length) {\n for (var _a = 0, elementCollection_1 = elementCollection; _a < elementCollection_1.length; _a++) {\n var ele = elementCollection_1[_a];\n var destroy = getValue('__vue__.$destroy', ele);\n if (destroy) {\n ele.__vue__.$destroy();\n }\n if (ele.innerHTML) {\n ele.innerHTML = '';\n }\n }\n delete this.templateCollection[tempName];\n }\n }\n }\n },\n setProperties: function (prop, muteOnChange) {\n var _this = this;\n if (this.isVue3) {\n this.models = !this.models ? this.ej2Instances.referModels : this.models;\n }\n if (this.ej2Instances && this.ej2Instances._setProperties) {\n this.ej2Instances._setProperties(prop, muteOnChange);\n }\n if (prop && this.models && this.models.length) {\n Object.keys(prop).map(function (key) {\n _this.models.map(function (model) {\n if ((key === model) && !(/datasource/i.test(key))) {\n if (_this.isVue3) {\n _this.ej2Instances.vueInstance.$emit('update:' + key, prop[key]);\n }\n else {\n _this.$emit('update:' + key, prop[key]);\n _this.$emit('modelchanged', prop[key]);\n }\n }\n });\n });\n }\n },\n custom: function () {\n this.updated();\n },\n addItems: function (items, text) {\n return this.ej2Instances.addItems(items, text);\n },\n focusIn: function () {\n return this.ej2Instances.focusIn();\n },\n removeItems: function (items, isUniqueId) {\n return this.ej2Instances.removeItems(items, isUniqueId);\n },\n toggle: function () {\n return this.ej2Instances.toggle();\n },\n }\n});\nexport var DropDownButtonPlugin = {\n name: 'ejs-dropdownbutton',\n install: function (Vue) {\n Vue.component(DropDownButtonPlugin.name, DropDownButtonComponent);\n Vue.component(DropDownButtonItemPlugin.name, DropDownButtonItemDirective);\n Vue.component(DropDownButtonItemsPlugin.name, DropDownButtonItemsDirective);\n }\n};\n","import { gh, isExecute, vueDefineComponent } from '@syncfusion/ej2-vue-base';\nimport { isNullOrUndefined } from '@syncfusion/ej2-base';\nexport var SplitButtonItemsDirective = vueDefineComponent({\n inject: { custom: { default: null } },\n render: function (createElement) {\n if (!isExecute) {\n var h = !isExecute ? gh : createElement;\n var slots = null;\n if (!isNullOrUndefined(this.$slots.default)) {\n slots = !isExecute ? this.$slots.default() : this.$slots.default;\n }\n return h('div', { class: 'e-directive' }, slots);\n }\n return;\n },\n updated: function () {\n if (!isExecute && this.custom) {\n this.custom();\n }\n },\n methods: {\n getTag: function () {\n return 'e-splitbuttonitems';\n }\n }\n});\nexport var SplitButtonItemsPlugin = {\n name: 'e-splitbuttonitems',\n install: function (Vue) {\n Vue.component(SplitButtonItemsPlugin.name, SplitButtonItemsDirective);\n }\n};\nexport var SplitButtonItemDirective = vueDefineComponent({\n render: function () {\n return;\n },\n methods: {\n getTag: function () {\n return 'e-splitbuttonitem';\n }\n }\n});\nexport var SplitButtonItemPlugin = {\n name: 'e-splitbuttonitem',\n install: function (Vue) {\n Vue.component(SplitButtonItemPlugin.name, SplitButtonItemDirective);\n }\n};\n","import { ComponentBase, gh, getProps, isExecute, vueDefineComponent } from '@syncfusion/ej2-vue-base';\nimport { isNullOrUndefined, getValue } from '@syncfusion/ej2-base';\nimport { SplitButton } from '@syncfusion/ej2-splitbuttons';\nimport { SplitButtonItemsDirective, SplitButtonItemDirective, SplitButtonItemsPlugin, SplitButtonItemPlugin } from './items.directive';\nexport var properties = ['isLazyUpdate', 'plugins', 'closeActionEvents', 'content', 'createPopupOnClick', 'cssClass', 'disabled', 'enableHtmlSanitizer', 'enablePersistence', 'enableRtl', 'iconCss', 'iconPosition', 'items', 'locale', 'target', 'beforeClose', 'beforeItemRender', 'beforeOpen', 'click', 'close', 'created', 'open', 'select'];\nexport var modelProps = [];\nexport var testProp = getProps({ props: properties });\nexport var props = testProp[0], watch = testProp[1], emitProbs = Object.keys(watch);\nemitProbs.push('modelchanged', 'update:modelValue');\nfor (var _i = 0, modelProps_1 = modelProps; _i < modelProps_1.length; _i++) {\n var props_1 = modelProps_1[_i];\n emitProbs.push('update:' + props_1);\n}\n/**\n * Represents the Essential JS 2 VueJS SplitButton Component\n * ```html\n * <ejs-splitbutton content='Split Button'></ejs-splitbutton>\n * ```\n */\nexport var SplitButtonComponent = vueDefineComponent({\n name: 'SplitButtonComponent',\n mixins: [ComponentBase],\n props: props,\n watch: watch,\n emits: emitProbs,\n provide: function () { return { custom: this.custom }; },\n data: function () {\n return {\n ej2Instances: new SplitButton({}),\n propKeys: properties,\n models: modelProps,\n hasChildDirective: true,\n hasInjectedModules: false,\n tagMapper: { \"e-splitbuttonitems\": \"e-splitbuttonitem\" },\n tagNameMapper: { \"e-splitbuttonitems\": \"e-items\" },\n isVue3: !isExecute,\n templateCollection: {},\n };\n },\n created: function () {\n this.bindProperties();\n this.ej2Instances._setProperties = this.ej2Instances.setProperties;\n this.ej2Instances.setProperties = this.setProperties;\n this.ej2Instances.clearTemplate = this.clearTemplate;\n this.updated = this.updated;\n },\n render: function (createElement) {\n var h = !isExecute ? gh : createElement;\n var slots = null;\n if (!isNullOrUndefined(this.$slots.default)) {\n slots = !isExecute ? this.$slots.default() : this.$slots.default;\n }\n return h('button', slots);\n },\n methods: {\n clearTemplate: function (templateNames) {\n if (!templateNames) {\n templateNames = Object.keys(this.templateCollection || {});\n }\n if (templateNames.length && this.templateCollection) {\n for (var _i = 0, templateNames_1 = templateNames; _i < templateNames_1.length; _i++) {\n var tempName = templateNames_1[_i];\n var elementCollection = this.templateCollection[tempName];\n if (elementCollection && elementCollection.length) {\n for (var _a = 0, elementCollection_1 = elementCollection; _a < elementCollection_1.length; _a++) {\n var ele = elementCollection_1[_a];\n var destroy = getValue('__vue__.$destroy', ele);\n if (destroy) {\n ele.__vue__.$destroy();\n }\n if (ele.innerHTML) {\n ele.innerHTML = '';\n }\n }\n delete this.templateCollection[tempName];\n }\n }\n }\n },\n setProperties: function (prop, muteOnChange) {\n var _this = this;\n if (this.isVue3) {\n this.models = !this.models ? this.ej2Instances.referModels : this.models;\n }\n if (this.ej2Instances && this.ej2Instances._setProperties) {\n this.ej2Instances._setProperties(prop, muteOnChange);\n }\n if (prop && this.models && this.models.length) {\n Object.keys(prop).map(function (key) {\n _this.models.map(function (model) {\n if ((key === model) && !(/datasource/i.test(key))) {\n if (_this.isVue3) {\n _this.ej2Instances.vueInstance.$emit('update:' + key, prop[key]);\n }\n else {\n _this.$emit('update:' + key, prop[key]);\n _this.$emit('modelchanged', prop[key]);\n }\n }\n });\n });\n }\n },\n custom: function () {\n this.updated();\n },\n addItems: function (items, text) {\n return this.ej2Instances.addItems(items, text);\n },\n focusIn: function () {\n return this.ej2Instances.focusIn();\n },\n removeItems: function (items, isUniqueId) {\n return this.ej2Instances.removeItems(items, isUniqueId);\n },\n toggle: function () {\n return this.ej2Instances.toggle();\n },\n }\n});\nexport var SplitButtonPlugin = {\n name: 'ejs-splitbutton',\n install: function (Vue) {\n Vue.component(SplitButtonPlugin.name, SplitButtonComponent);\n Vue.component(SplitButtonItemPlugin.name, SplitButtonItemDirective);\n Vue.component(SplitButtonItemsPlugin.name, SplitButtonItemsDirective);\n }\n};\n","import { ComponentBase, gh, getProps, isExecute, vueDefineComponent } from '@syncfusion/ej2-vue-base';\nimport { isNullOrUndefined, getValue } from '@syncfusion/ej2-base';\nimport { ProgressButton } from '@syncfusion/ej2-splitbuttons';\nexport var properties = ['isLazyUpdate', 'plugins', 'animationSettings', 'content', 'cssClass', 'disabled', 'duration', 'enableHtmlSanitizer', 'enableProgress', 'iconCss', 'iconPosition', 'isPrimary', 'isToggle', 'spinSettings', 'begin', 'created', 'end', 'fail', 'progress'];\nexport var modelProps = [];\nexport var testProp = getProps({ props: properties });\nexport var props = testProp[0], watch = testProp[1], emitProbs = Object.keys(watch);\nemitProbs.push('modelchanged', 'update:modelValue');\nfor (var _i = 0, modelProps_1 = modelProps; _i < modelProps_1.length; _i++) {\n var props_1 = modelProps_1[_i];\n emitProbs.push('update:' + props_1);\n}\n/**\n * Represents the Essential JS 2 VueJS ProgressButton Component\n * ```html\n * <ejs-progressbutton content='Progress Button'></ejs-progressbutton>\n * ```\n */\nexport var ProgressButtonComponent = vueDefineComponent({\n name: 'ProgressButtonComponent',\n mixins: [ComponentBase],\n props: props,\n watch: watch,\n emits: emitProbs,\n provide: function () { return { custom: this.custom }; },\n data: function () {\n return {\n ej2Instances: new ProgressButton({}),\n propKeys: properties,\n models: modelProps,\n hasChildDirective: false,\n hasInjectedModules: false,\n tagMapper: {},\n tagNameMapper: {},\n isVue3: !isExecute,\n templateCollection: {},\n };\n },\n created: function () {\n this.bindProperties();\n this.ej2Instances._setProperties = this.ej2Instances.setProperties;\n this.ej2Instances.setProperties = this.setProperties;\n this.ej2Instances.clearTemplate = this.clearTemplate;\n this.updated = this.updated;\n },\n render: function (createElement) {\n var h = !isExecute ? gh : createElement;\n var slots = null;\n if (!isNullOrUndefined(this.$slots.default)) {\n slots = !isExecute ? this.$slots.default() : this.$slots.default;\n }\n return h('button', slots);\n },\n methods: {\n clearTemplate: function (templateNames) {\n if (!templateNames) {\n templateNames = Object.keys(this.templateCollection || {});\n }\n if (templateNames.length && this.templateCollection) {\n for (var _i = 0, templateNames_1 = templateNames; _i < templateNames_1.length; _i++) {\n var tempName = templateNames_1[_i];\n var elementCollection = this.templateCollection[tempName];\n if (elementCollection && elementCollection.length) {\n for (var _a = 0, elementCollection_1 = elementCollection; _a < elementCollection_1.length; _a++) {\n var ele = elementCollection_1[_a];\n var destroy = getValue('__vue__.$destroy', ele);\n if (destroy) {\n ele.__vue__.$destroy();\n }\n if (ele.innerHTML) {\n ele.innerHTML = '';\n }\n }\n delete this.templateCollection[tempName];\n }\n }\n }\n },\n setProperties: function (prop, muteOnChange) {\n var _this = this;\n if (this.isVue3) {\n this.models = !this.models ? this.ej2Instances.referModels : this.models;\n }\n if (this.ej2Instances && this.ej2Instances._setProperties) {\n this.ej2Instances._setProperties(prop, muteOnChange);\n }\n if (prop && this.models && this.models.length) {\n Object.keys(prop).map(function (key) {\n _this.models.map(function (model) {\n if ((key === model) && !(/datasource/i.test(key))) {\n if (_this.isVue3) {\n _this.ej2Instances.vueInstance.$emit('update:' + key, prop[key]);\n }\n else {\n _this.$emit('update:' + key, prop[key]);\n _this.$emit('modelchanged', prop[key]);\n }\n }\n });\n });\n }\n },\n custom: function () {\n this.updated();\n },\n click: function () {\n return this.ej2Instances.click();\n },\n focusIn: function () {\n return this.ej2Instances.focusIn();\n },\n progressComplete: function () {\n return this.ej2Instances.progressComplete();\n },\n start: function (percent) {\n return this.ej2Instances.start(percent);\n },\n stop: function () {\n return this.ej2Instances.stop();\n },\n }\n});\nexport var ProgressButtonPlugin = {\n name: 'ejs-progressbutton',\n install: function (Vue) {\n Vue.component(ProgressButtonPlugin.name, ProgressButtonComponent);\n }\n};\n"],"names":["properties","modelProps","testProp","props","watch","emitProbs","_i","modelProps_1","props_1"],"mappings":"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"}
1
+ {"version":3,"file":"ej2-vue-splitbuttons.es5.js","sources":["../../src/drop-down-button/items.directive.js","../../src/drop-down-button/dropdownbutton.component.js","../../src/split-button/items.directive.js","../../src/split-button/splitbutton.component.js","../../src/progress-button/progressbutton.component.js"],"sourcesContent":["import { gh, isExecute, vueDefineComponent } from '@syncfusion/ej2-vue-base';\nimport { isNullOrUndefined } from '@syncfusion/ej2-base';\nexport var DropDownButtonItemsDirective = vueDefineComponent({\n inject: { custom: { default: null } },\n render: function (createElement) {\n if (!isExecute) {\n var h = !isExecute ? gh : createElement;\n var slots = null;\n if (!isNullOrUndefined(this.$slots.default)) {\n slots = !isExecute ? this.$slots.default() : this.$slots.default;\n }\n return h('div', { class: 'e-directive' }, slots);\n }\n return;\n },\n updated: function () {\n if (!isExecute && this.custom) {\n this.custom();\n }\n },\n methods: {\n getTag: function () {\n return 'e-dropdownbuttonitems';\n }\n }\n});\nexport var DropDownButtonItemsPlugin = {\n name: 'e-dropdownbuttonitems',\n install: function (Vue) {\n Vue.component(DropDownButtonItemsPlugin.name, DropDownButtonItemsDirective);\n }\n};\nexport var DropDownButtonItemDirective = vueDefineComponent({\n render: function () {\n return;\n },\n methods: {\n getTag: function () {\n return 'e-dropdownbuttonitem';\n }\n }\n});\nexport var DropDownButtonItemPlugin = {\n name: 'e-dropdownbuttonitem',\n install: function (Vue) {\n Vue.component(DropDownButtonItemPlugin.name, DropDownButtonItemDirective);\n }\n};\n","import { ComponentBase, gh, getProps, isExecute, vueDefineComponent } from '@syncfusion/ej2-vue-base';\nimport { isNullOrUndefined, getValue } from '@syncfusion/ej2-base';\nimport { DropDownButton } from '@syncfusion/ej2-splitbuttons';\nimport { DropDownButtonItemsDirective, DropDownButtonItemDirective, DropDownButtonItemsPlugin, DropDownButtonItemPlugin } from './items.directive';\nexport var properties = ['isLazyUpdate', 'plugins', 'closeActionEvents', 'content', 'createPopupOnClick', 'cssClass', 'disabled', 'enableHtmlSanitizer', 'enablePersistence', 'enableRtl', 'iconCss', 'iconPosition', 'items', 'locale', 'target', 'beforeClose', 'beforeItemRender', 'beforeOpen', 'close', 'created', 'open', 'select'];\nexport var modelProps = [];\nexport var testProp = getProps({ props: properties });\nexport var props = testProp[0], watch = testProp[1], emitProbs = Object.keys(watch);\nemitProbs.push('modelchanged', 'update:modelValue');\nfor (var _i = 0, modelProps_1 = modelProps; _i < modelProps_1.length; _i++) {\n var props_1 = modelProps_1[_i];\n emitProbs.push('update:' + props_1);\n}\n/**\n * Represents the Essential JS 2 VueJS DropDownButton Component\n * ```html\n * <ejs-dropdownbutton>DropDownButton</ejs-dropdownbutton>\n * ```\n */\nexport var DropDownButtonComponent = vueDefineComponent({\n name: 'DropDownButtonComponent',\n mixins: [ComponentBase],\n props: props,\n watch: watch,\n emits: emitProbs,\n provide: function () { return { custom: this.custom }; },\n data: function () {\n return {\n ej2Instances: new DropDownButton({}),\n propKeys: properties,\n models: modelProps,\n hasChildDirective: true,\n hasInjectedModules: false,\n tagMapper: { \"e-dropdownbuttonitems\": \"e-dropdownbuttonitem\" },\n tagNameMapper: { \"e-dropdownbuttonitems\": \"e-items\" },\n isVue3: !isExecute,\n templateCollection: {},\n };\n },\n created: function () {\n this.bindProperties();\n this.ej2Instances._setProperties = this.ej2Instances.setProperties;\n this.ej2Instances.setProperties = this.setProperties;\n this.ej2Instances.clearTemplate = this.clearTemplate;\n this.updated = this.updated;\n },\n render: function (createElement) {\n var h = !isExecute ? gh : createElement;\n var slots = null;\n if (!isNullOrUndefined(this.$slots.default)) {\n slots = !isExecute ? this.$slots.default() : this.$slots.default;\n }\n return h('button', slots);\n },\n methods: {\n clearTemplate: function (templateNames) {\n if (!templateNames) {\n templateNames = Object.keys(this.templateCollection || {});\n }\n if (templateNames.length && this.templateCollection) {\n for (var _i = 0, templateNames_1 = templateNames; _i < templateNames_1.length; _i++) {\n var tempName = templateNames_1[_i];\n var elementCollection = this.templateCollection[tempName];\n if (elementCollection && elementCollection.length) {\n for (var _a = 0, elementCollection_1 = elementCollection; _a < elementCollection_1.length; _a++) {\n var ele = elementCollection_1[_a];\n var destroy = getValue('__vue__.$destroy', ele);\n if (destroy) {\n ele.__vue__.$destroy();\n }\n if (ele.innerHTML) {\n ele.innerHTML = '';\n }\n }\n delete this.templateCollection[tempName];\n }\n }\n }\n },\n setProperties: function (prop, muteOnChange) {\n var _this = this;\n if (this.isVue3) {\n this.models = !this.models ? this.ej2Instances.referModels : this.models;\n }\n if (this.ej2Instances && this.ej2Instances._setProperties) {\n this.ej2Instances._setProperties(prop, muteOnChange);\n }\n if (prop && this.models && this.models.length) {\n Object.keys(prop).map(function (key) {\n _this.models.map(function (model) {\n if ((key === model) && !(/datasource/i.test(key))) {\n if (_this.isVue3) {\n _this.ej2Instances.vueInstance.$emit('update:' + key, prop[key]);\n }\n else {\n _this.$emit('update:' + key, prop[key]);\n _this.$emit('modelchanged', prop[key]);\n }\n }\n });\n });\n }\n },\n custom: function () {\n this.updated();\n },\n addItems: function (items, text) {\n return this.ej2Instances.addItems(items, text);\n },\n focusIn: function () {\n return this.ej2Instances.focusIn();\n },\n removeItems: function (items, isUniqueId) {\n return this.ej2Instances.removeItems(items, isUniqueId);\n },\n toggle: function () {\n return this.ej2Instances.toggle();\n },\n }\n});\nexport var DropDownButtonPlugin = {\n name: 'ejs-dropdownbutton',\n install: function (Vue) {\n Vue.component(DropDownButtonPlugin.name, DropDownButtonComponent);\n Vue.component(DropDownButtonItemPlugin.name, DropDownButtonItemDirective);\n Vue.component(DropDownButtonItemsPlugin.name, DropDownButtonItemsDirective);\n }\n};\n","import { gh, isExecute, vueDefineComponent } from '@syncfusion/ej2-vue-base';\nimport { isNullOrUndefined } from '@syncfusion/ej2-base';\nexport var SplitButtonItemsDirective = vueDefineComponent({\n inject: { custom: { default: null } },\n render: function (createElement) {\n if (!isExecute) {\n var h = !isExecute ? gh : createElement;\n var slots = null;\n if (!isNullOrUndefined(this.$slots.default)) {\n slots = !isExecute ? this.$slots.default() : this.$slots.default;\n }\n return h('div', { class: 'e-directive' }, slots);\n }\n return;\n },\n updated: function () {\n if (!isExecute && this.custom) {\n this.custom();\n }\n },\n methods: {\n getTag: function () {\n return 'e-splitbuttonitems';\n }\n }\n});\nexport var SplitButtonItemsPlugin = {\n name: 'e-splitbuttonitems',\n install: function (Vue) {\n Vue.component(SplitButtonItemsPlugin.name, SplitButtonItemsDirective);\n }\n};\nexport var SplitButtonItemDirective = vueDefineComponent({\n render: function () {\n return;\n },\n methods: {\n getTag: function () {\n return 'e-splitbuttonitem';\n }\n }\n});\nexport var SplitButtonItemPlugin = {\n name: 'e-splitbuttonitem',\n install: function (Vue) {\n Vue.component(SplitButtonItemPlugin.name, SplitButtonItemDirective);\n }\n};\n","import { ComponentBase, gh, getProps, isExecute, vueDefineComponent } from '@syncfusion/ej2-vue-base';\nimport { isNullOrUndefined, getValue } from '@syncfusion/ej2-base';\nimport { SplitButton } from '@syncfusion/ej2-splitbuttons';\nimport { SplitButtonItemsDirective, SplitButtonItemDirective, SplitButtonItemsPlugin, SplitButtonItemPlugin } from './items.directive';\nexport var properties = ['isLazyUpdate', 'plugins', 'closeActionEvents', 'content', 'createPopupOnClick', 'cssClass', 'disabled', 'enableHtmlSanitizer', 'enablePersistence', 'enableRtl', 'iconCss', 'iconPosition', 'items', 'locale', 'target', 'beforeClose', 'beforeItemRender', 'beforeOpen', 'click', 'close', 'created', 'open', 'select'];\nexport var modelProps = [];\nexport var testProp = getProps({ props: properties });\nexport var props = testProp[0], watch = testProp[1], emitProbs = Object.keys(watch);\nemitProbs.push('modelchanged', 'update:modelValue');\nfor (var _i = 0, modelProps_1 = modelProps; _i < modelProps_1.length; _i++) {\n var props_1 = modelProps_1[_i];\n emitProbs.push('update:' + props_1);\n}\n/**\n * Represents the Essential JS 2 VueJS SplitButton Component\n * ```html\n * <ejs-splitbutton content='Split Button'></ejs-splitbutton>\n * ```\n */\nexport var SplitButtonComponent = vueDefineComponent({\n name: 'SplitButtonComponent',\n mixins: [ComponentBase],\n props: props,\n watch: watch,\n emits: emitProbs,\n provide: function () { return { custom: this.custom }; },\n data: function () {\n return {\n ej2Instances: new SplitButton({}),\n propKeys: properties,\n models: modelProps,\n hasChildDirective: true,\n hasInjectedModules: false,\n tagMapper: { \"e-splitbuttonitems\": \"e-splitbuttonitem\" },\n tagNameMapper: { \"e-splitbuttonitems\": \"e-items\" },\n isVue3: !isExecute,\n templateCollection: {},\n };\n },\n created: function () {\n this.bindProperties();\n this.ej2Instances._setProperties = this.ej2Instances.setProperties;\n this.ej2Instances.setProperties = this.setProperties;\n this.ej2Instances.clearTemplate = this.clearTemplate;\n this.updated = this.updated;\n },\n render: function (createElement) {\n var h = !isExecute ? gh : createElement;\n var slots = null;\n if (!isNullOrUndefined(this.$slots.default)) {\n slots = !isExecute ? this.$slots.default() : this.$slots.default;\n }\n return h('button', slots);\n },\n methods: {\n clearTemplate: function (templateNames) {\n if (!templateNames) {\n templateNames = Object.keys(this.templateCollection || {});\n }\n if (templateNames.length && this.templateCollection) {\n for (var _i = 0, templateNames_1 = templateNames; _i < templateNames_1.length; _i++) {\n var tempName = templateNames_1[_i];\n var elementCollection = this.templateCollection[tempName];\n if (elementCollection && elementCollection.length) {\n for (var _a = 0, elementCollection_1 = elementCollection; _a < elementCollection_1.length; _a++) {\n var ele = elementCollection_1[_a];\n var destroy = getValue('__vue__.$destroy', ele);\n if (destroy) {\n ele.__vue__.$destroy();\n }\n if (ele.innerHTML) {\n ele.innerHTML = '';\n }\n }\n delete this.templateCollection[tempName];\n }\n }\n }\n },\n setProperties: function (prop, muteOnChange) {\n var _this = this;\n if (this.isVue3) {\n this.models = !this.models ? this.ej2Instances.referModels : this.models;\n }\n if (this.ej2Instances && this.ej2Instances._setProperties) {\n this.ej2Instances._setProperties(prop, muteOnChange);\n }\n if (prop && this.models && this.models.length) {\n Object.keys(prop).map(function (key) {\n _this.models.map(function (model) {\n if ((key === model) && !(/datasource/i.test(key))) {\n if (_this.isVue3) {\n _this.ej2Instances.vueInstance.$emit('update:' + key, prop[key]);\n }\n else {\n _this.$emit('update:' + key, prop[key]);\n _this.$emit('modelchanged', prop[key]);\n }\n }\n });\n });\n }\n },\n custom: function () {\n this.updated();\n },\n addItems: function (items, text) {\n return this.ej2Instances.addItems(items, text);\n },\n focusIn: function () {\n return this.ej2Instances.focusIn();\n },\n removeItems: function (items, isUniqueId) {\n return this.ej2Instances.removeItems(items, isUniqueId);\n },\n toggle: function () {\n return this.ej2Instances.toggle();\n },\n }\n});\nexport var SplitButtonPlugin = {\n name: 'ejs-splitbutton',\n install: function (Vue) {\n Vue.component(SplitButtonPlugin.name, SplitButtonComponent);\n Vue.component(SplitButtonItemPlugin.name, SplitButtonItemDirective);\n Vue.component(SplitButtonItemsPlugin.name, SplitButtonItemsDirective);\n }\n};\n","import { ComponentBase, gh, getProps, isExecute, vueDefineComponent } from '@syncfusion/ej2-vue-base';\nimport { isNullOrUndefined, getValue } from '@syncfusion/ej2-base';\nimport { ProgressButton } from '@syncfusion/ej2-splitbuttons';\nexport var properties = ['isLazyUpdate', 'plugins', 'animationSettings', 'content', 'cssClass', 'disabled', 'duration', 'enableHtmlSanitizer', 'enableProgress', 'iconCss', 'iconPosition', 'isPrimary', 'isToggle', 'spinSettings', 'begin', 'created', 'end', 'fail', 'progress'];\nexport var modelProps = [];\nexport var testProp = getProps({ props: properties });\nexport var props = testProp[0], watch = testProp[1], emitProbs = Object.keys(watch);\nemitProbs.push('modelchanged', 'update:modelValue');\nfor (var _i = 0, modelProps_1 = modelProps; _i < modelProps_1.length; _i++) {\n var props_1 = modelProps_1[_i];\n emitProbs.push('update:' + props_1);\n}\n/**\n * Represents the Essential JS 2 VueJS ProgressButton Component\n * ```html\n * <ejs-progressbutton content='Progress Button'></ejs-progressbutton>\n * ```\n */\nexport var ProgressButtonComponent = vueDefineComponent({\n name: 'ProgressButtonComponent',\n mixins: [ComponentBase],\n props: props,\n watch: watch,\n emits: emitProbs,\n provide: function () { return { custom: this.custom }; },\n data: function () {\n return {\n ej2Instances: new ProgressButton({}),\n propKeys: properties,\n models: modelProps,\n hasChildDirective: false,\n hasInjectedModules: false,\n tagMapper: {},\n tagNameMapper: {},\n isVue3: !isExecute,\n templateCollection: {},\n };\n },\n created: function () {\n this.bindProperties();\n this.ej2Instances._setProperties = this.ej2Instances.setProperties;\n this.ej2Instances.setProperties = this.setProperties;\n this.ej2Instances.clearTemplate = this.clearTemplate;\n this.updated = this.updated;\n },\n render: function (createElement) {\n var h = !isExecute ? gh : createElement;\n var slots = null;\n if (!isNullOrUndefined(this.$slots.default)) {\n slots = !isExecute ? this.$slots.default() : this.$slots.default;\n }\n return h('button', slots);\n },\n methods: {\n clearTemplate: function (templateNames) {\n if (!templateNames) {\n templateNames = Object.keys(this.templateCollection || {});\n }\n if (templateNames.length && this.templateCollection) {\n for (var _i = 0, templateNames_1 = templateNames; _i < templateNames_1.length; _i++) {\n var tempName = templateNames_1[_i];\n var elementCollection = this.templateCollection[tempName];\n if (elementCollection && elementCollection.length) {\n for (var _a = 0, elementCollection_1 = elementCollection; _a < elementCollection_1.length; _a++) {\n var ele = elementCollection_1[_a];\n var destroy = getValue('__vue__.$destroy', ele);\n if (destroy) {\n ele.__vue__.$destroy();\n }\n if (ele.innerHTML) {\n ele.innerHTML = '';\n }\n }\n delete this.templateCollection[tempName];\n }\n }\n }\n },\n setProperties: function (prop, muteOnChange) {\n var _this = this;\n if (this.isVue3) {\n this.models = !this.models ? this.ej2Instances.referModels : this.models;\n }\n if (this.ej2Instances && this.ej2Instances._setProperties) {\n this.ej2Instances._setProperties(prop, muteOnChange);\n }\n if (prop && this.models && this.models.length) {\n Object.keys(prop).map(function (key) {\n _this.models.map(function (model) {\n if ((key === model) && !(/datasource/i.test(key))) {\n if (_this.isVue3) {\n _this.ej2Instances.vueInstance.$emit('update:' + key, prop[key]);\n }\n else {\n _this.$emit('update:' + key, prop[key]);\n _this.$emit('modelchanged', prop[key]);\n }\n }\n });\n });\n }\n },\n custom: function () {\n this.updated();\n },\n click: function () {\n return this.ej2Instances.click();\n },\n focusIn: function () {\n return this.ej2Instances.focusIn();\n },\n progressComplete: function () {\n return this.ej2Instances.progressComplete();\n },\n start: function (percent) {\n return this.ej2Instances.start(percent);\n },\n stop: function () {\n return this.ej2Instances.stop();\n },\n }\n});\nexport var ProgressButtonPlugin = {\n name: 'ejs-progressbutton',\n install: function (Vue) {\n Vue.component(ProgressButtonPlugin.name, ProgressButtonComponent);\n }\n};\n"],"names":["properties","modelProps","testProp","props","watch","emitProbs","_i","modelProps_1","props_1"],"mappings":";;;;;AAEU,IAAC,4BAA4B,GAAG,kBAAkB,CAAC;AAC7D,IAAI,MAAM,EAAE,EAAE,MAAM,EAAE,EAAE,OAAO,EAAE,IAAI,EAAE,EAAE;AACzC,IAAI,MAAM,EAAE,UAAU,aAAa,EAAE;AACrC,QAAQ,IAAI,CAAC,SAAS,EAAE;AACxB,YAAY,IAAI,CAAC,GAAG,CAAC,SAAS,GAAG,EAAE,GAAG,aAAa,CAAC;AACpD,YAAY,IAAI,KAAK,GAAG,IAAI,CAAC;AAC7B,YAAY,IAAI,CAAC,iBAAiB,CAAC,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,EAAE;AACzD,gBAAgB,KAAK,GAAG,CAAC,SAAS,GAAG,IAAI,CAAC,MAAM,CAAC,OAAO,EAAE,GAAG,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC;AACjF,aAAa;AACb,YAAY,OAAO,CAAC,CAAC,KAAK,EAAE,EAAE,KAAK,EAAE,aAAa,EAAE,EAAE,KAAK,CAAC,CAAC;AAC7D,SAAS;AACT,QAAQ,OAAO;AACf,KAAK;AACL,IAAI,OAAO,EAAE,YAAY;AACzB,QAAQ,IAAI,CAAC,SAAS,IAAI,IAAI,CAAC,MAAM,EAAE;AACvC,YAAY,IAAI,CAAC,MAAM,EAAE,CAAC;AAC1B,SAAS;AACT,KAAK;AACL,IAAI,OAAO,EAAE;AACb,QAAQ,MAAM,EAAE,YAAY;AAC5B,YAAY,OAAO,uBAAuB,CAAC;AAC3C,SAAS;AACT,KAAK;AACL,CAAC,EAAE;AACO,IAAC,yBAAyB,GAAG;AACvC,IAAI,IAAI,EAAE,uBAAuB;AACjC,IAAI,OAAO,EAAE,UAAU,GAAG,EAAE;AAC5B,QAAQ,GAAG,CAAC,SAAS,CAAC,yBAAyB,CAAC,IAAI,EAAE,4BAA4B,CAAC,CAAC;AACpF,KAAK;AACL,EAAE;AACQ,IAAC,2BAA2B,GAAG,kBAAkB,CAAC;AAC5D,IAAI,MAAM,EAAE,YAAY;AACxB,QAAQ,OAAO;AACf,KAAK;AACL,IAAI,OAAO,EAAE;AACb,QAAQ,MAAM,EAAE,YAAY;AAC5B,YAAY,OAAO,sBAAsB,CAAC;AAC1C,SAAS;AACT,KAAK;AACL,CAAC,EAAE;AACO,IAAC,wBAAwB,GAAG;AACtC,IAAI,IAAI,EAAE,sBAAsB;AAChC,IAAI,OAAO,EAAE,UAAU,GAAG,EAAE;AAC5B,QAAQ,GAAG,CAAC,SAAS,CAAC,wBAAwB,CAAC,IAAI,EAAE,2BAA2B,CAAC,CAAC;AAClF,KAAK;AACL;;AC3CO,IAAI,UAAU,GAAG,CAAC,cAAc,EAAE,SAAS,EAAE,mBAAmB,EAAE,SAAS,EAAE,oBAAoB,EAAE,UAAU,EAAE,UAAU,EAAE,qBAAqB,EAAE,mBAAmB,EAAE,WAAW,EAAE,SAAS,EAAE,cAAc,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,aAAa,EAAE,kBAAkB,EAAE,YAAY,EAAE,OAAO,EAAE,SAAS,EAAE,MAAM,EAAE,QAAQ,CAAC,CAAC;AAC1U,AAAO,IAAI,UAAU,GAAG,EAAE,CAAC;AAC3B,AAAO,IAAI,QAAQ,GAAG,QAAQ,CAAC,EAAE,KAAK,EAAE,UAAU,EAAE,CAAC,CAAC;AACtD,AAAO,IAAI,KAAK,GAAG,QAAQ,CAAC,CAAC,CAAC,EAAE,KAAK,GAAG,QAAQ,CAAC,CAAC,CAAC,EAAE,SAAS,GAAG,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;AACpF,SAAS,CAAC,IAAI,CAAC,cAAc,EAAE,mBAAmB,CAAC,CAAC;AACpD,KAAK,IAAI,EAAE,GAAG,CAAC,EAAE,YAAY,GAAG,UAAU,EAAE,EAAE,GAAG,YAAY,CAAC,MAAM,EAAE,EAAE,EAAE,EAAE;AAC5E,IAAI,IAAI,OAAO,GAAG,YAAY,CAAC,EAAE,CAAC,CAAC;AACnC,IAAI,SAAS,CAAC,IAAI,CAAC,SAAS,GAAG,OAAO,CAAC,CAAC;AACxC,CAAC;AACD;AACA;AACA;AACA;AACA;AACA;AACA,AAAU,IAAC,uBAAuB,GAAG,kBAAkB,CAAC;AACxD,IAAI,IAAI,EAAE,yBAAyB;AACnC,IAAI,MAAM,EAAE,CAAC,aAAa,CAAC;AAC3B,IAAI,KAAK,EAAE,KAAK;AAChB,IAAI,KAAK,EAAE,KAAK;AAChB,IAAI,KAAK,EAAE,SAAS;AACpB,IAAI,OAAO,EAAE,YAAY,EAAE,OAAO,EAAE,MAAM,EAAE,IAAI,CAAC,MAAM,EAAE,CAAC,EAAE;AAC5D,IAAI,IAAI,EAAE,YAAY;AACtB,QAAQ,OAAO;AACf,YAAY,YAAY,EAAE,IAAI,cAAc,CAAC,EAAE,CAAC;AAChD,YAAY,QAAQ,EAAE,UAAU;AAChC,YAAY,MAAM,EAAE,UAAU;AAC9B,YAAY,iBAAiB,EAAE,IAAI;AACnC,YAAY,kBAAkB,EAAE,KAAK;AACrC,YAAY,SAAS,EAAE,EAAE,uBAAuB,EAAE,sBAAsB,EAAE;AAC1E,YAAY,aAAa,EAAE,EAAE,uBAAuB,EAAE,SAAS,EAAE;AACjE,YAAY,MAAM,EAAE,CAAC,SAAS;AAC9B,YAAY,kBAAkB,EAAE,EAAE;AAClC,SAAS,CAAC;AACV,KAAK;AACL,IAAI,OAAO,EAAE,YAAY;AACzB,QAAQ,IAAI,CAAC,cAAc,EAAE,CAAC;AAC9B,QAAQ,IAAI,CAAC,YAAY,CAAC,cAAc,GAAG,IAAI,CAAC,YAAY,CAAC,aAAa,CAAC;AAC3E,QAAQ,IAAI,CAAC,YAAY,CAAC,aAAa,GAAG,IAAI,CAAC,aAAa,CAAC;AAC7D,QAAQ,IAAI,CAAC,YAAY,CAAC,aAAa,GAAG,IAAI,CAAC,aAAa,CAAC;AAC7D,QAAQ,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC;AACpC,KAAK;AACL,IAAI,MAAM,EAAE,UAAU,aAAa,EAAE;AACrC,QAAQ,IAAI,CAAC,GAAG,CAAC,SAAS,GAAG,EAAE,GAAG,aAAa,CAAC;AAChD,QAAQ,IAAI,KAAK,GAAG,IAAI,CAAC;AACzB,QAAQ,IAAI,CAAC,iBAAiB,CAAC,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,EAAE;AACrD,YAAY,KAAK,GAAG,CAAC,SAAS,GAAG,IAAI,CAAC,MAAM,CAAC,OAAO,EAAE,GAAG,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC;AAC7E,SAAS;AACT,QAAQ,OAAO,CAAC,CAAC,QAAQ,EAAE,KAAK,CAAC,CAAC;AAClC,KAAK;AACL,IAAI,OAAO,EAAE;AACb,QAAQ,aAAa,EAAE,UAAU,aAAa,EAAE;AAChD,YAAY,IAAI,CAAC,aAAa,EAAE;AAChC,gBAAgB,aAAa,GAAG,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,kBAAkB,IAAI,EAAE,CAAC,CAAC;AAC3E,aAAa;AACb,YAAY,IAAI,aAAa,CAAC,MAAM,IAAI,IAAI,CAAC,kBAAkB,EAAE;AACjE,gBAAgB,KAAK,IAAI,EAAE,GAAG,CAAC,EAAE,eAAe,GAAG,aAAa,EAAE,EAAE,GAAG,eAAe,CAAC,MAAM,EAAE,EAAE,EAAE,EAAE;AACrG,oBAAoB,IAAI,QAAQ,GAAG,eAAe,CAAC,EAAE,CAAC,CAAC;AACvD,oBAAoB,IAAI,iBAAiB,GAAG,IAAI,CAAC,kBAAkB,CAAC,QAAQ,CAAC,CAAC;AAC9E,oBAAoB,IAAI,iBAAiB,IAAI,iBAAiB,CAAC,MAAM,EAAE;AACvE,wBAAwB,KAAK,IAAI,EAAE,GAAG,CAAC,EAAE,mBAAmB,GAAG,iBAAiB,EAAE,EAAE,GAAG,mBAAmB,CAAC,MAAM,EAAE,EAAE,EAAE,EAAE;AACzH,4BAA4B,IAAI,GAAG,GAAG,mBAAmB,CAAC,EAAE,CAAC,CAAC;AAC9D,4BAA4B,IAAI,OAAO,GAAG,QAAQ,CAAC,kBAAkB,EAAE,GAAG,CAAC,CAAC;AAC5E,4BAA4B,IAAI,OAAO,EAAE;AACzC,gCAAgC,GAAG,CAAC,OAAO,CAAC,QAAQ,EAAE,CAAC;AACvD,6BAA6B;AAC7B,4BAA4B,IAAI,GAAG,CAAC,SAAS,EAAE;AAC/C,gCAAgC,GAAG,CAAC,SAAS,GAAG,EAAE,CAAC;AACnD,6BAA6B;AAC7B,yBAAyB;AACzB,wBAAwB,OAAO,IAAI,CAAC,kBAAkB,CAAC,QAAQ,CAAC,CAAC;AACjE,qBAAqB;AACrB,iBAAiB;AACjB,aAAa;AACb,SAAS;AACT,QAAQ,aAAa,EAAE,UAAU,IAAI,EAAE,YAAY,EAAE;AACrD,YAAY,IAAI,KAAK,GAAG,IAAI,CAAC;AAC7B,YAAY,IAAI,IAAI,CAAC,MAAM,EAAE;AAC7B,gBAAgB,IAAI,CAAC,MAAM,GAAG,CAAC,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,YAAY,CAAC,WAAW,GAAG,IAAI,CAAC,MAAM,CAAC;AACzF,aAAa;AACb,YAAY,IAAI,IAAI,CAAC,YAAY,IAAI,IAAI,CAAC,YAAY,CAAC,cAAc,EAAE;AACvE,gBAAgB,IAAI,CAAC,YAAY,CAAC,cAAc,CAAC,IAAI,EAAE,YAAY,CAAC,CAAC;AACrE,aAAa;AACb,YAAY,IAAI,IAAI,IAAI,IAAI,CAAC,MAAM,IAAI,IAAI,CAAC,MAAM,CAAC,MAAM,EAAE;AAC3D,gBAAgB,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,UAAU,GAAG,EAAE;AACrD,oBAAoB,KAAK,CAAC,MAAM,CAAC,GAAG,CAAC,UAAU,KAAK,EAAE;AACtD,wBAAwB,IAAI,CAAC,GAAG,KAAK,KAAK,KAAK,EAAE,aAAa,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE;AAC3E,4BAA4B,IAAI,KAAK,CAAC,MAAM,EAAE;AAC9C,gCAAgC,KAAK,CAAC,YAAY,CAAC,WAAW,CAAC,KAAK,CAAC,SAAS,GAAG,GAAG,EAAE,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC;AACjG,6BAA6B;AAC7B,iCAAiC;AACjC,gCAAgC,KAAK,CAAC,KAAK,CAAC,SAAS,GAAG,GAAG,EAAE,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC;AACxE,gCAAgC,KAAK,CAAC,KAAK,CAAC,cAAc,EAAE,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC;AACvE,6BAA6B;AAC7B,yBAAyB;AACzB,qBAAqB,CAAC,CAAC;AACvB,iBAAiB,CAAC,CAAC;AACnB,aAAa;AACb,SAAS;AACT,QAAQ,MAAM,EAAE,YAAY;AAC5B,YAAY,IAAI,CAAC,OAAO,EAAE,CAAC;AAC3B,SAAS;AACT,QAAQ,QAAQ,EAAE,UAAU,KAAK,EAAE,IAAI,EAAE;AACzC,YAAY,OAAO,IAAI,CAAC,YAAY,CAAC,QAAQ,CAAC,KAAK,EAAE,IAAI,CAAC,CAAC;AAC3D,SAAS;AACT,QAAQ,OAAO,EAAE,YAAY;AAC7B,YAAY,OAAO,IAAI,CAAC,YAAY,CAAC,OAAO,EAAE,CAAC;AAC/C,SAAS;AACT,QAAQ,WAAW,EAAE,UAAU,KAAK,EAAE,UAAU,EAAE;AAClD,YAAY,OAAO,IAAI,CAAC,YAAY,CAAC,WAAW,CAAC,KAAK,EAAE,UAAU,CAAC,CAAC;AACpE,SAAS;AACT,QAAQ,MAAM,EAAE,YAAY;AAC5B,YAAY,OAAO,IAAI,CAAC,YAAY,CAAC,MAAM,EAAE,CAAC;AAC9C,SAAS;AACT,KAAK;AACL,CAAC,CAAC,CAAC;AACH,AAAU,IAAC,oBAAoB,GAAG;AAClC,IAAI,IAAI,EAAE,oBAAoB;AAC9B,IAAI,OAAO,EAAE,UAAU,GAAG,EAAE;AAC5B,QAAQ,GAAG,CAAC,SAAS,CAAC,oBAAoB,CAAC,IAAI,EAAE,uBAAuB,CAAC,CAAC;AAC1E,QAAQ,GAAG,CAAC,SAAS,CAAC,wBAAwB,CAAC,IAAI,EAAE,2BAA2B,CAAC,CAAC;AAClF,QAAQ,GAAG,CAAC,SAAS,CAAC,yBAAyB,CAAC,IAAI,EAAE,4BAA4B,CAAC,CAAC;AACpF,KAAK;AACL,CAAC;;AC7HS,IAAC,yBAAyB,GAAG,kBAAkB,CAAC;AAC1D,IAAI,MAAM,EAAE,EAAE,MAAM,EAAE,EAAE,OAAO,EAAE,IAAI,EAAE,EAAE;AACzC,IAAI,MAAM,EAAE,UAAU,aAAa,EAAE;AACrC,QAAQ,IAAI,CAAC,SAAS,EAAE;AACxB,YAAY,IAAI,CAAC,GAAG,CAAC,SAAS,GAAG,EAAE,GAAG,aAAa,CAAC;AACpD,YAAY,IAAI,KAAK,GAAG,IAAI,CAAC;AAC7B,YAAY,IAAI,CAAC,iBAAiB,CAAC,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,EAAE;AACzD,gBAAgB,KAAK,GAAG,CAAC,SAAS,GAAG,IAAI,CAAC,MAAM,CAAC,OAAO,EAAE,GAAG,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC;AACjF,aAAa;AACb,YAAY,OAAO,CAAC,CAAC,KAAK,EAAE,EAAE,KAAK,EAAE,aAAa,EAAE,EAAE,KAAK,CAAC,CAAC;AAC7D,SAAS;AACT,QAAQ,OAAO;AACf,KAAK;AACL,IAAI,OAAO,EAAE,YAAY;AACzB,QAAQ,IAAI,CAAC,SAAS,IAAI,IAAI,CAAC,MAAM,EAAE;AACvC,YAAY,IAAI,CAAC,MAAM,EAAE,CAAC;AAC1B,SAAS;AACT,KAAK;AACL,IAAI,OAAO,EAAE;AACb,QAAQ,MAAM,EAAE,YAAY;AAC5B,YAAY,OAAO,oBAAoB,CAAC;AACxC,SAAS;AACT,KAAK;AACL,CAAC,CAAC,CAAC;AACH,AAAU,IAAC,sBAAsB,GAAG;AACpC,IAAI,IAAI,EAAE,oBAAoB;AAC9B,IAAI,OAAO,EAAE,UAAU,GAAG,EAAE;AAC5B,QAAQ,GAAG,CAAC,SAAS,CAAC,sBAAsB,CAAC,IAAI,EAAE,yBAAyB,CAAC,CAAC;AAC9E,KAAK;AACL,CAAC,CAAC;AACF,AAAU,IAAC,wBAAwB,GAAG,kBAAkB,CAAC;AACzD,IAAI,MAAM,EAAE,YAAY;AACxB,QAAQ,OAAO;AACf,KAAK;AACL,IAAI,OAAO,EAAE;AACb,QAAQ,MAAM,EAAE,YAAY;AAC5B,YAAY,OAAO,mBAAmB,CAAC;AACvC,SAAS;AACT,KAAK;AACL,CAAC,CAAC,CAAC;AACH,AAAU,IAAC,qBAAqB,GAAG;AACnC,IAAI,IAAI,EAAE,mBAAmB;AAC7B,IAAI,OAAO,EAAE,UAAU,GAAG,EAAE;AAC5B,QAAQ,GAAG,CAAC,SAAS,CAAC,qBAAqB,CAAC,IAAI,EAAE,wBAAwB,CAAC,CAAC;AAC5E,KAAK;AACL,CAAC;;AC3CM,IAAIA,YAAU,GAAG,CAAC,cAAc,EAAE,SAAS,EAAE,mBAAmB,EAAE,SAAS,EAAE,oBAAoB,EAAE,UAAU,EAAE,UAAU,EAAE,qBAAqB,EAAE,mBAAmB,EAAE,WAAW,EAAE,SAAS,EAAE,cAAc,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,aAAa,EAAE,kBAAkB,EAAE,YAAY,EAAE,OAAO,EAAE,OAAO,EAAE,SAAS,EAAE,MAAM,EAAE,QAAQ,CAAC,CAAC;AACnV,AAAO,IAAIC,YAAU,GAAG,EAAE,CAAC;AAC3B,AAAO,IAAIC,UAAQ,GAAG,QAAQ,CAAC,EAAE,KAAK,EAAEF,YAAU,EAAE,CAAC,CAAC;AACtD,AAAO,IAAIG,OAAK,GAAGD,UAAQ,CAAC,CAAC,CAAC,EAAEE,OAAK,GAAGF,UAAQ,CAAC,CAAC,CAAC,EAAEG,WAAS,GAAG,MAAM,CAAC,IAAI,CAACD,OAAK,CAAC,CAAC;AACpFC,WAAS,CAAC,IAAI,CAAC,cAAc,EAAE,mBAAmB,CAAC,CAAC;AACpD,KAAK,IAAIC,IAAE,GAAG,CAAC,EAAEC,cAAY,GAAGN,YAAU,EAAEK,IAAE,GAAGC,cAAY,CAAC,MAAM,EAAED,IAAE,EAAE,EAAE;AAC5E,IAAI,IAAIE,SAAO,GAAGD,cAAY,CAACD,IAAE,CAAC,CAAC;AACnC,IAAID,WAAS,CAAC,IAAI,CAAC,SAAS,GAAGG,SAAO,CAAC,CAAC;AACxC,CAAC;AACD;AACA;AACA;AACA;AACA;AACA;AACA,AAAU,IAAC,oBAAoB,GAAG,kBAAkB,CAAC;AACrD,IAAI,IAAI,EAAE,sBAAsB;AAChC,IAAI,MAAM,EAAE,CAAC,aAAa,CAAC;AAC3B,IAAI,KAAK,EAAEL,OAAK;AAChB,IAAI,KAAK,EAAEC,OAAK;AAChB,IAAI,KAAK,EAAEC,WAAS;AACpB,IAAI,OAAO,EAAE,YAAY,EAAE,OAAO,EAAE,MAAM,EAAE,IAAI,CAAC,MAAM,EAAE,CAAC,EAAE;AAC5D,IAAI,IAAI,EAAE,YAAY;AACtB,QAAQ,OAAO;AACf,YAAY,YAAY,EAAE,IAAI,WAAW,CAAC,EAAE,CAAC;AAC7C,YAAY,QAAQ,EAAEL,YAAU;AAChC,YAAY,MAAM,EAAEC,YAAU;AAC9B,YAAY,iBAAiB,EAAE,IAAI;AACnC,YAAY,kBAAkB,EAAE,KAAK;AACrC,YAAY,SAAS,EAAE,EAAE,oBAAoB,EAAE,mBAAmB,EAAE;AACpE,YAAY,aAAa,EAAE,EAAE,oBAAoB,EAAE,SAAS,EAAE;AAC9D,YAAY,MAAM,EAAE,CAAC,SAAS;AAC9B,YAAY,kBAAkB,EAAE,EAAE;AAClC,SAAS,CAAC;AACV,KAAK;AACL,IAAI,OAAO,EAAE,YAAY;AACzB,QAAQ,IAAI,CAAC,cAAc,EAAE,CAAC;AAC9B,QAAQ,IAAI,CAAC,YAAY,CAAC,cAAc,GAAG,IAAI,CAAC,YAAY,CAAC,aAAa,CAAC;AAC3E,QAAQ,IAAI,CAAC,YAAY,CAAC,aAAa,GAAG,IAAI,CAAC,aAAa,CAAC;AAC7D,QAAQ,IAAI,CAAC,YAAY,CAAC,aAAa,GAAG,IAAI,CAAC,aAAa,CAAC;AAC7D,QAAQ,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC;AACpC,KAAK;AACL,IAAI,MAAM,EAAE,UAAU,aAAa,EAAE;AACrC,QAAQ,IAAI,CAAC,GAAG,CAAC,SAAS,GAAG,EAAE,GAAG,aAAa,CAAC;AAChD,QAAQ,IAAI,KAAK,GAAG,IAAI,CAAC;AACzB,QAAQ,IAAI,CAAC,iBAAiB,CAAC,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,EAAE;AACrD,YAAY,KAAK,GAAG,CAAC,SAAS,GAAG,IAAI,CAAC,MAAM,CAAC,OAAO,EAAE,GAAG,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC;AAC7E,SAAS;AACT,QAAQ,OAAO,CAAC,CAAC,QAAQ,EAAE,KAAK,CAAC,CAAC;AAClC,KAAK;AACL,IAAI,OAAO,EAAE;AACb,QAAQ,aAAa,EAAE,UAAU,aAAa,EAAE;AAChD,YAAY,IAAI,CAAC,aAAa,EAAE;AAChC,gBAAgB,aAAa,GAAG,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,kBAAkB,IAAI,EAAE,CAAC,CAAC;AAC3E,aAAa;AACb,YAAY,IAAI,aAAa,CAAC,MAAM,IAAI,IAAI,CAAC,kBAAkB,EAAE;AACjE,gBAAgB,KAAK,IAAI,EAAE,GAAG,CAAC,EAAE,eAAe,GAAG,aAAa,EAAE,EAAE,GAAG,eAAe,CAAC,MAAM,EAAE,EAAE,EAAE,EAAE;AACrG,oBAAoB,IAAI,QAAQ,GAAG,eAAe,CAAC,EAAE,CAAC,CAAC;AACvD,oBAAoB,IAAI,iBAAiB,GAAG,IAAI,CAAC,kBAAkB,CAAC,QAAQ,CAAC,CAAC;AAC9E,oBAAoB,IAAI,iBAAiB,IAAI,iBAAiB,CAAC,MAAM,EAAE;AACvE,wBAAwB,KAAK,IAAI,EAAE,GAAG,CAAC,EAAE,mBAAmB,GAAG,iBAAiB,EAAE,EAAE,GAAG,mBAAmB,CAAC,MAAM,EAAE,EAAE,EAAE,EAAE;AACzH,4BAA4B,IAAI,GAAG,GAAG,mBAAmB,CAAC,EAAE,CAAC,CAAC;AAC9D,4BAA4B,IAAI,OAAO,GAAG,QAAQ,CAAC,kBAAkB,EAAE,GAAG,CAAC,CAAC;AAC5E,4BAA4B,IAAI,OAAO,EAAE;AACzC,gCAAgC,GAAG,CAAC,OAAO,CAAC,QAAQ,EAAE,CAAC;AACvD,6BAA6B;AAC7B,4BAA4B,IAAI,GAAG,CAAC,SAAS,EAAE;AAC/C,gCAAgC,GAAG,CAAC,SAAS,GAAG,EAAE,CAAC;AACnD,6BAA6B;AAC7B,yBAAyB;AACzB,wBAAwB,OAAO,IAAI,CAAC,kBAAkB,CAAC,QAAQ,CAAC,CAAC;AACjE,qBAAqB;AACrB,iBAAiB;AACjB,aAAa;AACb,SAAS;AACT,QAAQ,aAAa,EAAE,UAAU,IAAI,EAAE,YAAY,EAAE;AACrD,YAAY,IAAI,KAAK,GAAG,IAAI,CAAC;AAC7B,YAAY,IAAI,IAAI,CAAC,MAAM,EAAE;AAC7B,gBAAgB,IAAI,CAAC,MAAM,GAAG,CAAC,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,YAAY,CAAC,WAAW,GAAG,IAAI,CAAC,MAAM,CAAC;AACzF,aAAa;AACb,YAAY,IAAI,IAAI,CAAC,YAAY,IAAI,IAAI,CAAC,YAAY,CAAC,cAAc,EAAE;AACvE,gBAAgB,IAAI,CAAC,YAAY,CAAC,cAAc,CAAC,IAAI,EAAE,YAAY,CAAC,CAAC;AACrE,aAAa;AACb,YAAY,IAAI,IAAI,IAAI,IAAI,CAAC,MAAM,IAAI,IAAI,CAAC,MAAM,CAAC,MAAM,EAAE;AAC3D,gBAAgB,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,UAAU,GAAG,EAAE;AACrD,oBAAoB,KAAK,CAAC,MAAM,CAAC,GAAG,CAAC,UAAU,KAAK,EAAE;AACtD,wBAAwB,IAAI,CAAC,GAAG,KAAK,KAAK,KAAK,EAAE,aAAa,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE;AAC3E,4BAA4B,IAAI,KAAK,CAAC,MAAM,EAAE;AAC9C,gCAAgC,KAAK,CAAC,YAAY,CAAC,WAAW,CAAC,KAAK,CAAC,SAAS,GAAG,GAAG,EAAE,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC;AACjG,6BAA6B;AAC7B,iCAAiC;AACjC,gCAAgC,KAAK,CAAC,KAAK,CAAC,SAAS,GAAG,GAAG,EAAE,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC;AACxE,gCAAgC,KAAK,CAAC,KAAK,CAAC,cAAc,EAAE,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC;AACvE,6BAA6B;AAC7B,yBAAyB;AACzB,qBAAqB,CAAC,CAAC;AACvB,iBAAiB,CAAC,CAAC;AACnB,aAAa;AACb,SAAS;AACT,QAAQ,MAAM,EAAE,YAAY;AAC5B,YAAY,IAAI,CAAC,OAAO,EAAE,CAAC;AAC3B,SAAS;AACT,QAAQ,QAAQ,EAAE,UAAU,KAAK,EAAE,IAAI,EAAE;AACzC,YAAY,OAAO,IAAI,CAAC,YAAY,CAAC,QAAQ,CAAC,KAAK,EAAE,IAAI,CAAC,CAAC;AAC3D,SAAS;AACT,QAAQ,OAAO,EAAE,YAAY;AAC7B,YAAY,OAAO,IAAI,CAAC,YAAY,CAAC,OAAO,EAAE,CAAC;AAC/C,SAAS;AACT,QAAQ,WAAW,EAAE,UAAU,KAAK,EAAE,UAAU,EAAE;AAClD,YAAY,OAAO,IAAI,CAAC,YAAY,CAAC,WAAW,CAAC,KAAK,EAAE,UAAU,CAAC,CAAC;AACpE,SAAS;AACT,QAAQ,MAAM,EAAE,YAAY;AAC5B,YAAY,OAAO,IAAI,CAAC,YAAY,CAAC,MAAM,EAAE,CAAC;AAC9C,SAAS;AACT,KAAK;AACL,CAAC,CAAC,CAAC;AACH,AAAU,IAAC,iBAAiB,GAAG;AAC/B,IAAI,IAAI,EAAE,iBAAiB;AAC3B,IAAI,OAAO,EAAE,UAAU,GAAG,EAAE;AAC5B,QAAQ,GAAG,CAAC,SAAS,CAAC,iBAAiB,CAAC,IAAI,EAAE,oBAAoB,CAAC,CAAC;AACpE,QAAQ,GAAG,CAAC,SAAS,CAAC,qBAAqB,CAAC,IAAI,EAAE,wBAAwB,CAAC,CAAC;AAC5E,QAAQ,GAAG,CAAC,SAAS,CAAC,sBAAsB,CAAC,IAAI,EAAE,yBAAyB,CAAC,CAAC;AAC9E,KAAK;AACL,CAAC;;AC5HM,IAAID,YAAU,GAAG,CAAC,cAAc,EAAE,SAAS,EAAE,mBAAmB,EAAE,SAAS,EAAE,UAAU,EAAE,UAAU,EAAE,UAAU,EAAE,qBAAqB,EAAE,gBAAgB,EAAE,SAAS,EAAE,cAAc,EAAE,WAAW,EAAE,UAAU,EAAE,cAAc,EAAE,OAAO,EAAE,SAAS,EAAE,KAAK,EAAE,MAAM,EAAE,UAAU,CAAC,CAAC;AACpR,AAAO,IAAIC,YAAU,GAAG,EAAE,CAAC;AAC3B,AAAO,IAAIC,UAAQ,GAAG,QAAQ,CAAC,EAAE,KAAK,EAAEF,YAAU,EAAE,CAAC,CAAC;AACtD,AAAO,IAAIG,OAAK,GAAGD,UAAQ,CAAC,CAAC,CAAC,EAAEE,OAAK,GAAGF,UAAQ,CAAC,CAAC,CAAC,EAAEG,WAAS,GAAG,MAAM,CAAC,IAAI,CAACD,OAAK,CAAC,CAAC;AACpFC,WAAS,CAAC,IAAI,CAAC,cAAc,EAAE,mBAAmB,CAAC,CAAC;AACpD,KAAK,IAAIC,IAAE,GAAG,CAAC,EAAEC,cAAY,GAAGN,YAAU,EAAEK,IAAE,GAAGC,cAAY,CAAC,MAAM,EAAED,IAAE,EAAE,EAAE;AAC5E,IAAI,IAAIE,SAAO,GAAGD,cAAY,CAACD,IAAE,CAAC,CAAC;AACnC,IAAID,WAAS,CAAC,IAAI,CAAC,SAAS,GAAGG,SAAO,CAAC,CAAC;AACxC,CAAC;AACD;AACA;AACA;AACA;AACA;AACA;AACA,AAAU,IAAC,uBAAuB,GAAG,kBAAkB,CAAC;AACxD,IAAI,IAAI,EAAE,yBAAyB;AACnC,IAAI,MAAM,EAAE,CAAC,aAAa,CAAC;AAC3B,IAAI,KAAK,EAAEL,OAAK;AAChB,IAAI,KAAK,EAAEC,OAAK;AAChB,IAAI,KAAK,EAAEC,WAAS;AACpB,IAAI,OAAO,EAAE,YAAY,EAAE,OAAO,EAAE,MAAM,EAAE,IAAI,CAAC,MAAM,EAAE,CAAC,EAAE;AAC5D,IAAI,IAAI,EAAE,YAAY;AACtB,QAAQ,OAAO;AACf,YAAY,YAAY,EAAE,IAAI,cAAc,CAAC,EAAE,CAAC;AAChD,YAAY,QAAQ,EAAEL,YAAU;AAChC,YAAY,MAAM,EAAEC,YAAU;AAC9B,YAAY,iBAAiB,EAAE,KAAK;AACpC,YAAY,kBAAkB,EAAE,KAAK;AACrC,YAAY,SAAS,EAAE,EAAE;AACzB,YAAY,aAAa,EAAE,EAAE;AAC7B,YAAY,MAAM,EAAE,CAAC,SAAS;AAC9B,YAAY,kBAAkB,EAAE,EAAE;AAClC,SAAS,CAAC;AACV,KAAK;AACL,IAAI,OAAO,EAAE,YAAY;AACzB,QAAQ,IAAI,CAAC,cAAc,EAAE,CAAC;AAC9B,QAAQ,IAAI,CAAC,YAAY,CAAC,cAAc,GAAG,IAAI,CAAC,YAAY,CAAC,aAAa,CAAC;AAC3E,QAAQ,IAAI,CAAC,YAAY,CAAC,aAAa,GAAG,IAAI,CAAC,aAAa,CAAC;AAC7D,QAAQ,IAAI,CAAC,YAAY,CAAC,aAAa,GAAG,IAAI,CAAC,aAAa,CAAC;AAC7D,QAAQ,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,OAAO,CAAC;AACpC,KAAK;AACL,IAAI,MAAM,EAAE,UAAU,aAAa,EAAE;AACrC,QAAQ,IAAI,CAAC,GAAG,CAAC,SAAS,GAAG,EAAE,GAAG,aAAa,CAAC;AAChD,QAAQ,IAAI,KAAK,GAAG,IAAI,CAAC;AACzB,QAAQ,IAAI,CAAC,iBAAiB,CAAC,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,EAAE;AACrD,YAAY,KAAK,GAAG,CAAC,SAAS,GAAG,IAAI,CAAC,MAAM,CAAC,OAAO,EAAE,GAAG,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC;AAC7E,SAAS;AACT,QAAQ,OAAO,CAAC,CAAC,QAAQ,EAAE,KAAK,CAAC,CAAC;AAClC,KAAK;AACL,IAAI,OAAO,EAAE;AACb,QAAQ,aAAa,EAAE,UAAU,aAAa,EAAE;AAChD,YAAY,IAAI,CAAC,aAAa,EAAE;AAChC,gBAAgB,aAAa,GAAG,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,kBAAkB,IAAI,EAAE,CAAC,CAAC;AAC3E,aAAa;AACb,YAAY,IAAI,aAAa,CAAC,MAAM,IAAI,IAAI,CAAC,kBAAkB,EAAE;AACjE,gBAAgB,KAAK,IAAI,EAAE,GAAG,CAAC,EAAE,eAAe,GAAG,aAAa,EAAE,EAAE,GAAG,eAAe,CAAC,MAAM,EAAE,EAAE,EAAE,EAAE;AACrG,oBAAoB,IAAI,QAAQ,GAAG,eAAe,CAAC,EAAE,CAAC,CAAC;AACvD,oBAAoB,IAAI,iBAAiB,GAAG,IAAI,CAAC,kBAAkB,CAAC,QAAQ,CAAC,CAAC;AAC9E,oBAAoB,IAAI,iBAAiB,IAAI,iBAAiB,CAAC,MAAM,EAAE;AACvE,wBAAwB,KAAK,IAAI,EAAE,GAAG,CAAC,EAAE,mBAAmB,GAAG,iBAAiB,EAAE,EAAE,GAAG,mBAAmB,CAAC,MAAM,EAAE,EAAE,EAAE,EAAE;AACzH,4BAA4B,IAAI,GAAG,GAAG,mBAAmB,CAAC,EAAE,CAAC,CAAC;AAC9D,4BAA4B,IAAI,OAAO,GAAG,QAAQ,CAAC,kBAAkB,EAAE,GAAG,CAAC,CAAC;AAC5E,4BAA4B,IAAI,OAAO,EAAE;AACzC,gCAAgC,GAAG,CAAC,OAAO,CAAC,QAAQ,EAAE,CAAC;AACvD,6BAA6B;AAC7B,4BAA4B,IAAI,GAAG,CAAC,SAAS,EAAE;AAC/C,gCAAgC,GAAG,CAAC,SAAS,GAAG,EAAE,CAAC;AACnD,6BAA6B;AAC7B,yBAAyB;AACzB,wBAAwB,OAAO,IAAI,CAAC,kBAAkB,CAAC,QAAQ,CAAC,CAAC;AACjE,qBAAqB;AACrB,iBAAiB;AACjB,aAAa;AACb,SAAS;AACT,QAAQ,aAAa,EAAE,UAAU,IAAI,EAAE,YAAY,EAAE;AACrD,YAAY,IAAI,KAAK,GAAG,IAAI,CAAC;AAC7B,YAAY,IAAI,IAAI,CAAC,MAAM,EAAE;AAC7B,gBAAgB,IAAI,CAAC,MAAM,GAAG,CAAC,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,YAAY,CAAC,WAAW,GAAG,IAAI,CAAC,MAAM,CAAC;AACzF,aAAa;AACb,YAAY,IAAI,IAAI,CAAC,YAAY,IAAI,IAAI,CAAC,YAAY,CAAC,cAAc,EAAE;AACvE,gBAAgB,IAAI,CAAC,YAAY,CAAC,cAAc,CAAC,IAAI,EAAE,YAAY,CAAC,CAAC;AACrE,aAAa;AACb,YAAY,IAAI,IAAI,IAAI,IAAI,CAAC,MAAM,IAAI,IAAI,CAAC,MAAM,CAAC,MAAM,EAAE;AAC3D,gBAAgB,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,UAAU,GAAG,EAAE;AACrD,oBAAoB,KAAK,CAAC,MAAM,CAAC,GAAG,CAAC,UAAU,KAAK,EAAE;AACtD,wBAAwB,IAAI,CAAC,GAAG,KAAK,KAAK,KAAK,EAAE,aAAa,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,EAAE;AAC3E,4BAA4B,IAAI,KAAK,CAAC,MAAM,EAAE;AAC9C,gCAAgC,KAAK,CAAC,YAAY,CAAC,WAAW,CAAC,KAAK,CAAC,SAAS,GAAG,GAAG,EAAE,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC;AACjG,6BAA6B;AAC7B,iCAAiC;AACjC,gCAAgC,KAAK,CAAC,KAAK,CAAC,SAAS,GAAG,GAAG,EAAE,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC;AACxE,gCAAgC,KAAK,CAAC,KAAK,CAAC,cAAc,EAAE,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC;AACvE,6BAA6B;AAC7B,yBAAyB;AACzB,qBAAqB,CAAC,CAAC;AACvB,iBAAiB,CAAC,CAAC;AACnB,aAAa;AACb,SAAS;AACT,QAAQ,MAAM,EAAE,YAAY;AAC5B,YAAY,IAAI,CAAC,OAAO,EAAE,CAAC;AAC3B,SAAS;AACT,QAAQ,KAAK,EAAE,YAAY;AAC3B,YAAY,OAAO,IAAI,CAAC,YAAY,CAAC,KAAK,EAAE,CAAC;AAC7C,SAAS;AACT,QAAQ,OAAO,EAAE,YAAY;AAC7B,YAAY,OAAO,IAAI,CAAC,YAAY,CAAC,OAAO,EAAE,CAAC;AAC/C,SAAS;AACT,QAAQ,gBAAgB,EAAE,YAAY;AACtC,YAAY,OAAO,IAAI,CAAC,YAAY,CAAC,gBAAgB,EAAE,CAAC;AACxD,SAAS;AACT,QAAQ,KAAK,EAAE,UAAU,OAAO,EAAE;AAClC,YAAY,OAAO,IAAI,CAAC,YAAY,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC;AACpD,SAAS;AACT,QAAQ,IAAI,EAAE,YAAY;AAC1B,YAAY,OAAO,IAAI,CAAC,YAAY,CAAC,IAAI,EAAE,CAAC;AAC5C,SAAS;AACT,KAAK;AACL,CAAC,CAAC,CAAC;AACH,AAAU,IAAC,oBAAoB,GAAG;AAClC,IAAI,IAAI,EAAE,oBAAoB;AAC9B,IAAI,OAAO,EAAE,UAAU,GAAG,EAAE;AAC5B,QAAQ,GAAG,CAAC,SAAS,CAAC,oBAAoB,CAAC,IAAI,EAAE,uBAAuB,CAAC,CAAC;AAC1E,KAAK;AACL,CAAC;;;;"}
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "_from": "@syncfusion/ej2-vue-splitbuttons@*",
3
- "_id": "@syncfusion/ej2-vue-splitbuttons@25.2.3",
3
+ "_id": "@syncfusion/ej2-vue-splitbuttons@26.1.35",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-9EkFqBceGEbSt/pibgHy56AwTvDeXtRhBH8D71f7/FfVwLCDwV9kqN53kcFxitBdPAJgIhdSUdgBDQhe3qlALQ==",
5
+ "_integrity": "sha512-wHH79e14/rC4M0W4vm58QRPiQSDNPnQnBo9vVpHR/CLPVjK8LErscePdWpXgz1U1NNtKn/RpIWVtldlErsdQ/w==",
6
6
  "_location": "/@syncfusion/ej2-vue-splitbuttons",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -19,10 +19,10 @@
19
19
  "_requiredBy": [
20
20
  "/"
21
21
  ],
22
- "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-vue-splitbuttons/-/ej2-vue-splitbuttons-25.2.3.tgz",
23
- "_shasum": "211404381d79dbe0ca1297d528472cdbcd2a2852",
22
+ "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-vue-splitbuttons/-/ej2-vue-splitbuttons-26.1.35.tgz",
23
+ "_shasum": "dea93494ad7eaf75586fef554a8f51c8c57f9d7b",
24
24
  "_spec": "@syncfusion/ej2-vue-splitbuttons@*",
25
- "_where": "/jenkins/workspace/elease-automation_release_25.1.1/packages/included",
25
+ "_where": "/jenkins/workspace/elease-automation_release_26.1.1/packages/included",
26
26
  "author": {
27
27
  "name": "Syncfusion Inc."
28
28
  },
@@ -31,9 +31,9 @@
31
31
  },
32
32
  "bundleDependencies": false,
33
33
  "dependencies": {
34
- "@syncfusion/ej2-base": "~25.2.3",
35
- "@syncfusion/ej2-splitbuttons": "25.2.4",
36
- "@syncfusion/ej2-vue-base": "~25.2.4"
34
+ "@syncfusion/ej2-base": "~26.2.4",
35
+ "@syncfusion/ej2-splitbuttons": "26.2.4",
36
+ "@syncfusion/ej2-vue-base": "~26.2.4"
37
37
  },
38
38
  "deprecated": false,
39
39
  "description": "A package of feature-rich Essential JS 2 components such as DropDownButton, SplitButton, ProgressButton and ButtonGroup. for Vue",
@@ -64,6 +64,6 @@
64
64
  "ci-publish": "gulp ci-publish",
65
65
  "compile": "gulp ci-compile && gulp vue-global-script"
66
66
  },
67
- "version": "25.2.4",
67
+ "version": "26.2.4",
68
68
  "sideEffects": false
69
69
  }
@@ -0,0 +1 @@
1
+ @import '@syncfusion/ej2-splitbuttons/styles/button-group/fluent2.css';
@@ -0,0 +1 @@
1
+ @import 'ej2-splitbuttons/styles/button-group/fluent2.scss';
@@ -0,0 +1 @@
1
+ @import '@syncfusion/ej2-splitbuttons/styles/drop-down-button/fluent2.css';
@@ -0,0 +1 @@
1
+ @import 'ej2-splitbuttons/styles/drop-down-button/fluent2.scss';
@@ -0,0 +1 @@
1
+ @import '@syncfusion/ej2-splitbuttons/styles/fluent2.css';
@@ -0,0 +1,4 @@
1
+ @import 'drop-down-button/fluent2.scss';
2
+ @import 'split-button/fluent2.scss';
3
+ @import 'button-group/fluent2.scss';
4
+ @import 'progress-button/fluent2.scss';
@@ -0,0 +1 @@
1
+ @import '@syncfusion/ej2-splitbuttons/styles/progress-button/fluent2.css';
@@ -0,0 +1 @@
1
+ @import 'ej2-splitbuttons/styles/progress-button/fluent2.scss';
@@ -0,0 +1 @@
1
+ @import '@syncfusion/ej2-splitbuttons/styles/split-button/fluent2.css';
@@ -0,0 +1 @@
1
+ @import 'ej2-splitbuttons/styles/split-button/fluent2.scss';
package/CHANGELOG.md DELETED
@@ -1,356 +0,0 @@
1
- # Changelog
2
-
3
- ## [Unreleased]
4
-
5
- ### ButtonGroup
6
-
7
- #### Bug Fixes
8
-
9
- - Issue in "box shadow correction while clicking single or multiple selection mode buttons" has been resolved.
10
-
11
- ## 25.1.38 (2024-04-02)
12
-
13
- ### DropDownButton
14
-
15
- #### Bug Fixes
16
-
17
- - Issue in "keyboard action not working in DropDownButton when its append on span tag" has been resolved.
18
-
19
- ## 25.1.37 (2024-03-26)
20
-
21
- ### DropDownButton
22
-
23
- #### Breaking Changes
24
-
25
- - Now, the default value of [`enableHtmlSanitizer`](https://helpej2.syncfusion.com/documentation/api/drop-down-button/#enablehtmlsanitizer) property is true to prevent the XSS attacks in the DropDownButton component.
26
-
27
- ### ProgressButton
28
-
29
- #### Breaking Changes
30
-
31
- - Now, the default value of [`enableHtmlSanitizer`](https://helpej2.syncfusion.com/documentation/api/progress-button/#enablehtmlsanitizer) property is true to prevent the XSS attacks in the ProgressButton component.
32
-
33
- ### SplitButton
34
-
35
- #### Breaking Changes
36
-
37
- - Now, the default value of [`enableHtmlSanitizer`](https://helpej2.syncfusion.com/documentation/api/split-button/#enablehtmlsanitizer) property is true to prevent the XSS attacks in the SplitButton component.
38
-
39
- ## 24.2.7 (2024-02-20)
40
-
41
- ### ProgressButton
42
-
43
- - `#I554000` - Console error is thrown when clicking the progress button has been resolved.
44
-
45
- ## 24.2.5 (2024-02-13)
46
-
47
- ### SplitButton
48
-
49
- #### Bug Fixes
50
-
51
- - `#I552152` - Issue in "Split button select event not triggered while using keyboard action" has been resolved.
52
-
53
- ## 24.1.46 (2024-01-17)
54
-
55
- ### DropDownButton
56
-
57
- #### Bug Fixes
58
-
59
- - `#I863317` - Issue in "DropDownButton list items do not meet WCAG AA standards for focus indicators" has been resolved.
60
-
61
- ### ButtonGroup
62
-
63
- #### Bug Fixes
64
-
65
- - `#I534148` - Issue in "Focus Css style not removed after clicking outside from button group button in bootstrap4 theme" has been resolved.
66
-
67
- ## 24.1.45 (2024-01-09)
68
-
69
- ### DropDownButton
70
-
71
- #### Bug Fixes
72
-
73
- - `#I863317` - `Dropdownitems` not disabled initially when updating the property dynamically has been resolved.
74
-
75
- ## 24.1.41 (2023-12-18)
76
-
77
- ### DropDownButton
78
-
79
- #### Bug Fixes
80
-
81
- - `#I445638` - Issue in DropDownButton Popup Alignment issue while setting `enableRtl` property as true has been resolved.
82
-
83
- ## 20.4.50 (2023-02-14)
84
-
85
- ### SplitButton
86
-
87
- #### Bug Fixes
88
-
89
- - `#I434642` - Issue in Script error thrown when we add items in before open event with enable createPopupOnClick property has been resolved.
90
-
91
- ### DropDownButton
92
-
93
- #### Bug Fixes
94
-
95
- - `#I388868` - Script error occurs while using `beforeOpen` event in DropDownButton issue has been resolved
96
-
97
- ## 19.4.40 (2021-12-28)
98
-
99
- ### DropDownButton
100
-
101
- #### Bug Fixes
102
-
103
- - ColorPicker is not closed while clicks again the DropDownButton issue has been resolved.
104
-
105
- ## 19.4.38 (2021-12-17)
106
-
107
- ### DropDownButton
108
-
109
- #### Bug Fixes
110
-
111
- - Overflow issue in ColorPicker has been resolved.
112
-
113
- ## 19.3.48 (2021-11-02)
114
-
115
- ### DropDownButton
116
-
117
- #### Bug Fixes
118
-
119
- - `createPopupOnClick` property scenario not handled properly in `DropDownButton` has been resolved.
120
-
121
- ## 19.2.55 (2021-08-11)
122
-
123
- ### DropDownButton
124
-
125
- #### Bug Fixes
126
-
127
- - `#I337016` - Input space not works in DropDownButton if the target is set as text input issue has been resolved.
128
-
129
- ## 18.4.41 (2021-02-02)
130
-
131
- ### SplitButton
132
-
133
- #### Bug Fixes
134
-
135
- - Issue with destroy has been fixed.
136
-
137
- ## 18.4.31 (2020-12-22)
138
-
139
- ### ProgressButton
140
-
141
- #### Bug Fixes
142
-
143
- - Issue with setting content property in begin event has been resolved.
144
-
145
- ## 18.4.30 (2020-12-17)
146
-
147
- ### SplitButton
148
-
149
- #### New Features
150
-
151
- - `#299063` - Provided support to remove the items in split button using item id.
152
-
153
- ## 18.3.40 (2020-10-13)
154
-
155
- ### SplitButton
156
-
157
- #### Bug Fixes
158
-
159
- - Warning message has been resolved.
160
-
161
- ## 18.1.43 (2020-04-07)
162
-
163
- ### SplitButton
164
-
165
- #### Bug Fixes
166
-
167
- - Keyboard navigation not working in `bootstrap4` has been resolved.
168
-
169
- ## 17.4.49 (2020-02-11)
170
-
171
- ### Button Group
172
-
173
- #### Bug Fixes
174
-
175
- - CSS validation issues has been resolved.
176
-
177
- ## 17.4.39 (2019-12-17)
178
-
179
- ### DropDownButton
180
-
181
- #### New Features
182
-
183
- - #253123 - Provided `addItems` `removeItems` methods and update items dynamically.
184
-
185
- #### Bug Fixes
186
-
187
- - #254048 - UI misalignment while changing the font-size issue fixed.
188
-
189
- ## 17.2.40 (2019-08-06)
190
-
191
- ### ProgressButton
192
-
193
- #### Bug Fixes
194
-
195
- - Issue with 'progressComplete' method is fixed.
196
-
197
- ## 17.2.39 (2019-07-30)
198
-
199
- ### SplitButton
200
-
201
- #### Bug Fixes
202
-
203
- - Provided support for 'OnOpen' and 'OnClose' events in Blazor.
204
-
205
- ## 17.1.50 (2019-06-04)
206
-
207
- ### ProgressButton
208
-
209
- #### Bug Fixes
210
-
211
- - Provided public method 'progressComplete' to complete the progress.
212
-
213
- ## 16.4.53 (2019-02-13)
214
-
215
- ### DropDownButton
216
-
217
- #### Bug Fixes
218
-
219
- - Proper ARIA standards followed.
220
-
221
- ## 16.4.46 (2019-01-08)
222
-
223
- ### DropDownButton
224
-
225
- #### Bug Fixes
226
-
227
- - Item text overflow issue fixed.
228
-
229
- ## 16.4.40-beta (2018-12-10)
230
-
231
- ### ProgressButton
232
-
233
- #### Breaking Changes
234
-
235
- - Type changes done for the following property.
236
-
237
- | Property Name | Old Type | New Type |
238
- |---|---|---|
239
- | `animationSettings` | AnimationSettings | AnimationSettingsModel |
240
- | `spinSettings` | SpinSettings | SpinSettingsModel |
241
-
242
- ## 16.3.22 (2018-09-25)
243
-
244
- ### ProgressButton
245
-
246
- #### Bug Fixes
247
-
248
- - Content update while progress issue resolved.
249
-
250
- ## 16.3.17 (2018-09-12)
251
-
252
- ### ProgressButton
253
-
254
- The progress button visualizes the progression of an operation to indicate the user that a process is happening in the background. The progress can be shown with graphics accompanied by a textual representation.
255
-
256
-
257
- - **Types, Sizes, and Styles** - Provided with different types, sizes and predefined styles of progress button.
258
- - **Icons and Spinner** - Supports icon, spinner and its positioning.
259
- - **Animation** - Provided with predefined animation and progress indicator.
260
- - **Events** - Supports event triggering at specified interval.
261
- - **Accessibility** - Provided with built-in accessibility support that helps to access all the ProgressButton component features through the keyboard, screen readers, or other assistive technology devices.
262
-
263
- ## 16.2.48 (2018-08-14)
264
-
265
- ### DropDownButton
266
-
267
- #### Bug Fixes
268
-
269
- - Popup z-index calculation inside bootstrap model dialog issue fixed.
270
-
271
- ## 16.2.44 (2018-07-10)
272
-
273
- ### DropDownButton
274
-
275
- #### Bug Fixes
276
-
277
- - Popup positioning under fixed parent issue fixed.
278
-
279
- ## 16.2.41 (2018-06-25)
280
-
281
- ### ButtonGroup
282
-
283
- ButtonGroup is a graphical user interface that groups series of buttons horizontally or vertically.
284
-
285
-
286
- - **Types, Sizes, and Styles** - Provided with different types, sizes and predefined styles of button.
287
- - **Selection** - Supports single and multiple selection behaviors.
288
- - **Orientation** - Supports horizontal and vertical orientations.
289
- - **Nesting** - Supports nesting with drop-down and split button components.
290
- - **Accessibility** - Built-in accessibility features to access all the button group using the keyboard, screen readers, or other assistive technology devices.
291
-
292
- ButtonGroup is a graphical user interface that groups series of buttons horizontally or vertically.
293
-
294
-
295
- - **Types, Sizes, and Styles** - Provided with different types, sizes and predefined styles of button.
296
- - **Selection** - Supports single and multiple selection behaviors.
297
- - **Orientation** - Supports horizontal and vertical orientations.
298
- - **Nesting** - Supports nesting with drop-down and split button components.
299
- - **Accessibility** - Built-in accessibility features to access all the button group using the keyboard, screen readers, or other assistive technology devices.
300
-
301
-
302
- ### SplitButton
303
-
304
- #### Breaking Changes
305
-
306
- - UI changes based on design guidelines
307
-
308
- undefinedSplitButton component has primary and secondary button. Primary button is used to select default action and secondary button is used to toggle contextual overlays for displaying list of action items.
309
-
310
-
311
- - **Sizes** - Provided with different sizes of SplitButton.
312
- - **Icons and Navigations** - Supports text and icon on the SplitButton and Popup items. URL can be given to Popup items that creates the anchor link to navigate to the URL provided.
313
- - **Separator** - Supports Popup items grouping by using the Separator.
314
- - **Accessibility** - Provided with built-in accessibility support that helps to access all the SplitButton component features through the keyboard, screen readers, or other assistive technology devices.
315
-
316
- ### DropDownButton
317
-
318
- DropDownButton component is used to toggle contextual overlays for displaying list of action items.
319
-
320
-
321
- - **Sizes** - Provided with different sizes of DropDownButton.
322
- - **Icons and Navigations** - Supports text and icon on the DropDownButton and Popup items. URL can be given to Popup items that creates the anchor link to navigate to the URL provided.
323
- - **Separator** - Supports Popup items grouping by using the Separator.
324
- - **Accessibility** - Provided with built-in accessibility support that helps to access all the DropDownButton component features through the keyboard, screen readers, or other assistive technology devices.
325
-
326
- ## 16.1.28 (2018-03-09)
327
-
328
- ### SplitButton
329
-
330
- #### Bug Fixes
331
-
332
- - Style compatibility issue fixed.
333
-
334
- ## 16.1.24 (2018-02-22)
335
-
336
- ### DropDownButton
337
-
338
- DropDownButton component is used to toggle contextual overlays for displaying list of action items.
339
-
340
-
341
- - **Sizes** - Provided with different sizes of DropDownButton.
342
- - **Icons and Navigations** - Supports text and icon on the DropDownButton and Popup items. URL can be given to Popup items that creates the anchor link to navigate to the URL provided.
343
- - **Separator** - Supports Popup items grouping by using the Separator.
344
- - **Accessibility** - Provided with built-in accessibility support that helps to access all the DropDownButton component features through the keyboard, screen readers, or other assistive technology devices.
345
-
346
- ### SplitButton
347
-
348
- SplitButton component has primary and secondary button. Primary button is used to select default action and secondary button is used to toggle contextual overlays for displaying list of action items.
349
-
350
-
351
- - **Sizes** - Provided with different sizes of SplitButton.
352
- - **Icons and Navigations** - Supports text and icon on the SplitButton and Popup items. URL can be given to Popup items that creates the anchor link to navigate to the URL provided.
353
- - **Separator** - Supports Popup items grouping by using the Separator.
354
- - **Accessibility** - Provided with built-in accessibility support that helps to access all the SplitButton component features through the keyboard, screen readers, or other assistive technology devices.
355
-
356
-