mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
Added style class definitions to *Style.d.ts
This commit is contained in:
parent
290b8e1335
commit
64dca2bdb9
136 changed files with 7542 additions and 1119 deletions
23
components/lib/menu/style/MenuStyle.d.ts
vendored
23
components/lib/menu/style/MenuStyle.d.ts
vendored
|
@ -1,3 +1,26 @@
|
|||
/**
|
||||
*
|
||||
* Menu is a navigation / command component that supports dynamic and static positioning.
|
||||
*
|
||||
* [Live Demo](https://www.primevue.org/menu/)
|
||||
*
|
||||
* @module menustyle
|
||||
*
|
||||
*/
|
||||
import { BaseStyle } from '../../base/style';
|
||||
|
||||
export enum MenuClasses {
|
||||
root = 'p-menu',
|
||||
start = 'p-menu-start',
|
||||
list = 'p-menu-list',
|
||||
submenuItem = 'p-menu-submenu-item',
|
||||
separator = 'p-menu-separator',
|
||||
end = 'p-menu-end',
|
||||
item = 'p-menu-item',
|
||||
itemContent = 'p-menu-item-content',
|
||||
itemLink = 'p-menu-item-link',
|
||||
itemIcon = 'p-menu-item-icon',
|
||||
itemLabel = 'p-menu-item-label'
|
||||
}
|
||||
|
||||
export interface MenuStyle extends BaseStyle {}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue