| | |
| | | export interface DropdownItemProps extends TdDropdownItemProps { |
| | | } |
| | | export default class DropdownMenuItem extends SuperComponent { |
| | | externalClasses: string[]; |
| | | properties: { |
| | | style?: { |
| | | type: StringConstructor; |
| | | value?: string; |
| | | }; |
| | | disabled?: { |
| | | type: BooleanConstructor; |
| | | value?: boolean; |
| | | }; |
| | | externalClasses?: { |
| | | type: ArrayConstructor; |
| | | value?: ["t-class", "t-class-content", "t-class-column", "t-class-column-item", "t-class-column-item-label", "t-class-footer"]; |
| | | }; |
| | | keys?: { |
| | | type: ObjectConstructor; |
| | | value?: import("../common/common").KeysType; |
| | | }; |
| | | label?: { |
| | | type: StringConstructor; |
| | | value?: string; |
| | | }; |
| | | multiple?: { |
| | | type: BooleanConstructor; |
| | | value?: boolean; |
| | | }; |
| | | options?: { |
| | | type: ArrayConstructor; |
| | | value?: import("./type").DropdownOption[]; |
| | | }; |
| | | optionsColumns?: { |
| | | type: null; |
| | | value?: string | number; |
| | | }; |
| | | optionsLayout?: { |
| | | type: StringConstructor; |
| | | value?: string; |
| | | }; |
| | | value?: { |
| | | type: null; |
| | | value?: import("./type").DropdownValue; |
| | | }; |
| | | defaultValue?: { |
| | | type: null; |
| | | value?: import("./type").DropdownValue; |
| | | }; |
| | | options: { |
| | | multipleSlots: boolean; |
| | | }; |
| | | externalClasses: string[]; |
| | | properties: TdDropdownItemProps; |
| | | data: { |
| | | prefix: string; |
| | | classPrefix: string; |
| | |
| | | observers: { |
| | | keys(obj: any): void; |
| | | value(v: any): void; |
| | | 'label, computedLabel'(): void; |
| | | 'label, computedLabel, disabled'(): void; |
| | | show(visible: any): void; |
| | | }; |
| | | methods: { |