primevue 4.0.5 → 4.0.6
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/confirmationservice/index.d.ts +1 -7
- package/dialogservice/index.d.ts +1 -7
- package/fileupload/FileUpload.vue +15 -3
- package/fileupload/index.d.ts +0 -10
- package/fileupload/index.mjs +6 -4
- package/fileupload/index.mjs.map +1 -1
- package/iconfield/index.d.ts +2 -2
- package/listbox/Listbox.vue +1 -1
- package/listbox/index.mjs +5 -4
- package/listbox/index.mjs.map +1 -1
- package/multiselect/MultiSelect.vue +1 -1
- package/multiselect/index.mjs +5 -4
- package/multiselect/index.mjs.map +1 -1
- package/package.json +3 -3
- package/select/Select.vue +1 -1
- package/select/index.mjs +5 -4
- package/select/index.mjs.map +1 -1
- package/styleclass/index.d.ts +4 -0
- package/styleclass/index.mjs +2 -2
- package/styleclass/index.mjs.map +1 -1
- package/toastservice/index.d.ts +1 -7
- package/tree/Tree.vue +1 -1
- package/tree/index.d.ts +1 -1
- package/tree/index.mjs +2 -2
- package/tree/index.mjs.map +1 -1
- package/umd/primevue.min.js +1 -1
- package/web-types.json +1 -1
|
@@ -106,7 +106,7 @@
|
|
|
106
106
|
@input="onFilterChange"
|
|
107
107
|
:pt="ptm('pcFilter')"
|
|
108
108
|
/>
|
|
109
|
-
<InputIcon :unstyled="unstyled"
|
|
109
|
+
<InputIcon :unstyled="unstyled" :pt="ptm('pcFilterIconContainer')">
|
|
110
110
|
<slot name="filtericon">
|
|
111
111
|
<span v-if="filterIcon" :class="filterIcon" v-bind="ptm('filterIcon')" />
|
|
112
112
|
<SearchIcon v-else v-bind="ptm('filterIcon')" />
|
package/multiselect/index.mjs
CHANGED
|
@@ -1350,9 +1350,10 @@ function render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
1350
1350
|
onBlur: $options.onFilterBlur,
|
|
1351
1351
|
onInput: $options.onFilterChange,
|
|
1352
1352
|
pt: _ctx.ptm('pcFilter')
|
|
1353
|
-
}, null, 8, ["value", "onVnodeMounted", "onVnodeUpdated", "class", "placeholder", "disabled", "variant", "unstyled", "aria-owns", "aria-activedescendant", "onKeydown", "onBlur", "onInput", "pt"]), createVNode(_component_InputIcon,
|
|
1354
|
-
unstyled: _ctx.unstyled
|
|
1355
|
-
|
|
1353
|
+
}, null, 8, ["value", "onVnodeMounted", "onVnodeUpdated", "class", "placeholder", "disabled", "variant", "unstyled", "aria-owns", "aria-activedescendant", "onKeydown", "onBlur", "onInput", "pt"]), createVNode(_component_InputIcon, {
|
|
1354
|
+
unstyled: _ctx.unstyled,
|
|
1355
|
+
pt: _ctx.ptm('pcFilterIconContainer')
|
|
1356
|
+
}, {
|
|
1356
1357
|
"default": withCtx(function () {
|
|
1357
1358
|
return [renderSlot(_ctx.$slots, "filtericon", {}, function () {
|
|
1358
1359
|
return [_ctx.filterIcon ? (openBlock(), createElementBlock("span", mergeProps({
|
|
@@ -1364,7 +1365,7 @@ function render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
1364
1365
|
})];
|
|
1365
1366
|
}),
|
|
1366
1367
|
_: 3
|
|
1367
|
-
},
|
|
1368
|
+
}, 8, ["unstyled", "pt"])];
|
|
1368
1369
|
}),
|
|
1369
1370
|
_: 3
|
|
1370
1371
|
}, 8, ["class", "unstyled", "pt"])) : createCommentVNode("", true), _ctx.filter ? (openBlock(), createElementBlock("span", mergeProps({
|