mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-11 01:42:34 +00:00
Update Tooltip
This commit is contained in:
parent
baa8121447
commit
4521b0f98b
2 changed files with 6 additions and 6 deletions
8
components/lib/toolbar/Toolbar.d.ts
vendored
8
components/lib/toolbar/Toolbar.d.ts
vendored
|
@ -29,17 +29,17 @@ export interface ToolbarPassThroughOptions {
|
||||||
*/
|
*/
|
||||||
root?: ToolbarPassThroughOptionType;
|
root?: ToolbarPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Uses to pass attributes to the groupleft's DOM element.
|
* Uses to pass attributes to the groupstart's DOM element.
|
||||||
*/
|
*/
|
||||||
groupleft?: ToolbarPassThroughOptionType;
|
groupStart?: ToolbarPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Uses to pass attributes to the groupcenter's DOM element.
|
* Uses to pass attributes to the groupcenter's DOM element.
|
||||||
*/
|
*/
|
||||||
groupcenter?: ToolbarPassThroughOptionType;
|
groupCenter?: ToolbarPassThroughOptionType;
|
||||||
/**
|
/**
|
||||||
* Uses to pass attributes to the groupright's DOM element.
|
* Uses to pass attributes to the groupright's DOM element.
|
||||||
*/
|
*/
|
||||||
groupright?: ToolbarPassThroughOptionType;
|
groupEnd?: ToolbarPassThroughOptionType;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="p-toolbar p-component" role="toolbar" :aria-labelledby="ariaLabelledby" v-bind="ptm('root')">
|
<div class="p-toolbar p-component" role="toolbar" :aria-labelledby="ariaLabelledby" v-bind="ptm('root')">
|
||||||
<div class="p-toolbar-group-start p-toolbar-group-left" v-bind="ptm('groupleft')">
|
<div class="p-toolbar-group-start p-toolbar-group-left" v-bind="ptm('groupstart')">
|
||||||
<slot name="start"></slot>
|
<slot name="start"></slot>
|
||||||
</div>
|
</div>
|
||||||
<div class="p-toolbar-group-center" v-bind="ptm('groupcenter')">
|
<div class="p-toolbar-group-center" v-bind="ptm('groupcenter')">
|
||||||
<slot name="center"></slot>
|
<slot name="center"></slot>
|
||||||
</div>
|
</div>
|
||||||
<div class="p-toolbar-group-end p-toolbar-group-right" v-bind="ptm('groupright')">
|
<div class="p-toolbar-group-end p-toolbar-group-right" v-bind="ptm('groupend')">
|
||||||
<slot name="end"></slot>
|
<slot name="end"></slot>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue