File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments