Skip to content

Commit 2d9e0e8

Browse files
author
Sara Dahan
committed
docs(label-group): remove @defult
1 parent 266be9c commit 2d9e0e8

1 file changed

Lines changed: 0 additions & 7 deletions

File tree

elements/pf-label-group/pf-label-group.ts

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -66,42 +66,35 @@ export class PfLabelGroup extends LitElement {
6666

6767
/**
6868
* Accessible label for the label group when no category name is provided.
69-
* @default ''
7069
*/
7170
@property({ attribute: 'accessible-label', type: String }) accessibleLabel = '';
7271
/**
7372
* Accessible label for the close button.
74-
* @default 'Close'
7573
*/
7674
@property({ attribute: 'accessible-close-label', type: String }) accessibleCloseLabel = 'Close';
7775

7876
/**
7977
* Text for collapsed overflow label. Use `${remaining}` to indicate number of hidden labels.
80-
* @default '${remaining} more'
8178
*/
8279
@property({ attribute: 'collapsed-text', type: String }) collapsedText = '${remaining} more';
8380

8481
/**
8582
* Text for expanded overflow label.
86-
* @default 'show less'
8783
*/
8884
@property({ attribute: 'expanded-text', type: String }) expandedText = 'show less';
8985

9086
/**
9187
* Number of labels to show before creating an overflow label.
92-
* @default 3
9388
*/
9489
@property({ attribute: 'num-labels', type: Number }) numLabels = 3;
9590

9691
/**
9792
* Whether the overflow labels are visible (expanded state).
98-
* @default false
9993
*/
10094
@property({ reflect: true, type: Boolean }) open = false;
10195

10296
/**
10397
* Whether the label group can be closed.
104-
* @default true
10598
*/
10699
@property({ reflect: true, type: Boolean }) closeable = false;
107100

0 commit comments

Comments
 (0)