Skip to content

Commit 2a9cfd7

Browse files
committed
docs(jsdoc): remove name from default slot to support intellisense
1 parent d735f69 commit 2a9cfd7

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

packages/uui-box/lib/uui-box.element.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { UUITextStyles } from '@umbraco-ui/uui-css/lib';
88
* @element uui-box
99
* @slot headline - headline area, this area is placed within the headline tag which is located inside the header. Use this to ensure the right headline styling.
1010
* @slot header - header area, use this for things that is not the headline but located in the header.
11-
* @slot default - area for the content of the box
11+
* @slot - area for the content of the box
1212
* @cssprop --uui-box-default-padding - overwrite the box padding
1313
*
1414
*/

packages/uui-combobox-list/lib/uui-combobox-list-option.element.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { ActiveMixin, SelectableMixin } from '@umbraco-ui/uui-base/lib/mixins';
55

66
/**
77
* @element uui-combobox-list-option
8-
* @slot default - For option content
8+
* @slot - For option content
99
* @description - An option to be used within uui-combobox-list
1010
*/
1111
@defineElement('uui-combobox-list-option')
@@ -37,7 +37,7 @@ export class UUIComboboxListOptionElement extends SelectableMixin(
3737
outline: var(--uui-color-surface) solid 2px;
3838
outline-offset: -4px;
3939
}
40-
/*
40+
/*
4141
:host::before {
4242
display: block;
4343
content: '';

packages/uui-combobox-list/lib/uui-combobox-list.element.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { UUIComboboxListEvent } from './UUIComboboxListEvent';
88
/**
99
* @element uui-combobox-list
1010
* @fires {UUIComboboxListEvent} change - fires when selection is changed
11-
* @slot default - for uui-combobox-list-options
11+
* @slot - for uui-combobox-list-options
1212
* @description - A list that uses uui-combobox-list-options and handles keyboard navigation and selection.
1313
*/
1414
@defineElement('uui-combobox-list')

packages/uui-combobox/lib/uui-combobox.element.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import { UUIComboboxEvent } from './UUIComboboxEvent';
2020
* @element uui-combobox
2121
* @fires {UUIComboboxEvent} input - fires when search input is changed
2222
* @fires {UUIComboboxEvent} change - fires when selection is changed
23-
* @slot default - for uui-combobox-list-options
23+
* @slot - for uui-combobox-list-options
2424
* @slot input-prepend - prepend for the uui-input
2525
* @slot input-append - append for the uui-input
2626
* @description - Filterable combobox

packages/uui-tabs/lib/uui-tab.element.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { ifDefined } from 'lit/directives/if-defined.js';
77
/**
88
* A single tab. Should be put into `<uui-tab-group>`,
99
* @element uui-tabs
10-
* @slot default - for label
10+
* @slot - for label
1111
* @slot icon - for icon
1212
* @slot extra - for extra
1313
* @description - All-round tab-button

0 commit comments

Comments
 (0)