dap-design-system 0.14.0 → 0.15.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/dds.d.ts CHANGED
@@ -1698,9 +1698,13 @@ declare const DapDSFileInputList_base: typeof DdsElement & {
1698
1698
  * @attribute {string} feedback - The feedback message.
1699
1699
  * @attribute {boolean} subtle - Subtle style.
1700
1700
  * @attribute {string} progress - The progress of the file upload.
1701
+ * @attribute {string} href - The url of the item link. If present, the item title will be a link.
1702
+ * @attribute {string} rel - The rel of the item anchor. Only used if href is present.
1703
+ * @attribute {string} target - The target of the item anchor. Only used if href is present.
1701
1704
  *
1702
- * @@csspart base - The main file input list item container.
1703
- * @@csspart feedback - The feedback container.
1705
+ * @csspart base - The main file input list item container.
1706
+ * @csspart feedback - The feedback container.
1707
+ * @csspart link - The link text of the item component.
1704
1708
  */
1705
1709
  export declare class DapDSFileInputListItem extends DapDSFileInputListItem_base {
1706
1710
  static styles: CSSResult;
@@ -1714,6 +1718,10 @@ export declare class DapDSFileInputListItem extends DapDSFileInputListItem_base
1714
1718
  fileData: FileListElement;
1715
1719
  subtle: boolean;
1716
1720
  progress: string;
1721
+ href: string;
1722
+ rel: string;
1723
+ target: LinkTarget;
1724
+ download: string;
1717
1725
  delete(): void;
1718
1726
  get formattedSize(): string;
1719
1727
  render(): TemplateResult_2<1>;
@@ -1950,6 +1958,7 @@ export declare class DapDSLink extends DdsElement {
1950
1958
  href: string;
1951
1959
  disabled: boolean;
1952
1960
  rel: string;
1961
+ download: boolean;
1953
1962
  static styles: CSSResult;
1954
1963
  private handleClick;
1955
1964
  render(): TemplateResult_2;