@aurodesignsystem-dev/auro-hyperlink 0.0.0-pr1.0 → 0.0.0-pr303.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/auro-hyperlink-JpDRNbp2.js +112 -0
- package/dist/index.d.ts +120 -123
- package/dist/index.js +1 -6
- package/dist/registered.js +1 -8
- package/package.json +3 -9
- package/custom-elements.json +0 -1186
- package/dist/auro-hyperlink-ML2We8vn.js +0 -1227
- package/dist/properties.js +0 -64
- package/dist/properties.jsdoc.js +0 -65
package/dist/properties.js
DELETED
|
@@ -1,64 +0,0 @@
|
|
|
1
|
-
import { LitElement } from 'lit';
|
|
2
|
-
|
|
3
|
-
/**
|
|
4
|
-
* Base class containing all auro-hyperlink properties with proper JSDoc comments
|
|
5
|
-
* This class can be extended by other components to inherit property definitions
|
|
6
|
-
* Generated from web component analysis
|
|
7
|
-
*/
|
|
8
|
-
export class AuroHyperlinkProperties extends LitElement {
|
|
9
|
-
static get properties() {
|
|
10
|
-
return {
|
|
11
|
-
|
|
12
|
-
/**
|
|
13
|
-
* Defines the URL of the linked page.
|
|
14
|
-
*/
|
|
15
|
-
href: { type: String, attribute: true },
|
|
16
|
-
|
|
17
|
-
/**
|
|
18
|
-
* Defines the relationship between the current document and the linked document.
|
|
19
|
-
*/
|
|
20
|
-
rel: { type: String, attribute: true },
|
|
21
|
-
|
|
22
|
-
/**
|
|
23
|
-
* Defines where to open the linked document.
|
|
24
|
-
*/
|
|
25
|
-
target: { type: String, attribute: true },
|
|
26
|
-
|
|
27
|
-
/**
|
|
28
|
-
* Defines the type of hyperlink; accepts `nav` or `cta`.
|
|
29
|
-
*/
|
|
30
|
-
type: { type: String, attribute: true },
|
|
31
|
-
|
|
32
|
-
/**
|
|
33
|
-
* If true and `type="cta"`, the hyperlink will have a fluid-width UI.
|
|
34
|
-
*/
|
|
35
|
-
fluid: { type: String, attribute: true },
|
|
36
|
-
|
|
37
|
-
/**
|
|
38
|
-
* If true, sets `strict-origin-when-cross-origin` to control the referrer information sent with requests.
|
|
39
|
-
*/
|
|
40
|
-
referrerpolicy: { type: String, attribute: true },
|
|
41
|
-
|
|
42
|
-
/**
|
|
43
|
-
* If true, the linked resource will be downloaded when the hyperlink is clicked.
|
|
44
|
-
*/
|
|
45
|
-
download: { type: String, attribute: true },
|
|
46
|
-
|
|
47
|
-
/**
|
|
48
|
-
* If true, the auto URL re-write feature will be disabled.
|
|
49
|
-
*/
|
|
50
|
-
relative: { type: String, attribute: true },
|
|
51
|
-
|
|
52
|
-
/**
|
|
53
|
-
* Sets button variant option.
|
|
54
|
-
*/
|
|
55
|
-
variant: { type: String, attribute: true },
|
|
56
|
-
|
|
57
|
-
/**
|
|
58
|
-
* If true, the hyperlink will be styled for use on a dark background.
|
|
59
|
-
*/
|
|
60
|
-
ondark: { type: String, attribute: true }
|
|
61
|
-
};
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
}
|
package/dist/properties.jsdoc.js
DELETED
|
@@ -1,65 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Component Properties JSDoc List
|
|
3
|
-
* Copy and paste these JSDoc comments into your component class
|
|
4
|
-
* Generated from web component analysis
|
|
5
|
-
*/
|
|
6
|
-
|
|
7
|
-
/**
|
|
8
|
-
* Defines the URL of the linked page.
|
|
9
|
-
* @type {string}
|
|
10
|
-
*/
|
|
11
|
-
href;
|
|
12
|
-
|
|
13
|
-
/**
|
|
14
|
-
* Defines the relationship between the current document and the linked document.
|
|
15
|
-
* @type {string}
|
|
16
|
-
*/
|
|
17
|
-
rel;
|
|
18
|
-
|
|
19
|
-
/**
|
|
20
|
-
* Defines where to open the linked document.
|
|
21
|
-
* @type {string}
|
|
22
|
-
*/
|
|
23
|
-
target;
|
|
24
|
-
|
|
25
|
-
/**
|
|
26
|
-
* Defines the type of hyperlink; accepts `nav` or `cta`.
|
|
27
|
-
* @type {string}
|
|
28
|
-
*/
|
|
29
|
-
type;
|
|
30
|
-
|
|
31
|
-
/**
|
|
32
|
-
* If true and `type="cta"`, the hyperlink will have a fluid-width UI.
|
|
33
|
-
* @type {string}
|
|
34
|
-
*/
|
|
35
|
-
fluid;
|
|
36
|
-
|
|
37
|
-
/**
|
|
38
|
-
* If true, sets `strict-origin-when-cross-origin` to control the referrer information sent with requests.
|
|
39
|
-
* @type {string}
|
|
40
|
-
*/
|
|
41
|
-
referrerpolicy;
|
|
42
|
-
|
|
43
|
-
/**
|
|
44
|
-
* If true, the linked resource will be downloaded when the hyperlink is clicked.
|
|
45
|
-
* @type {string}
|
|
46
|
-
*/
|
|
47
|
-
download;
|
|
48
|
-
|
|
49
|
-
/**
|
|
50
|
-
* If true, the auto URL re-write feature will be disabled.
|
|
51
|
-
* @type {string}
|
|
52
|
-
*/
|
|
53
|
-
relative;
|
|
54
|
-
|
|
55
|
-
/**
|
|
56
|
-
* Sets button variant option.
|
|
57
|
-
* @type {string}
|
|
58
|
-
*/
|
|
59
|
-
variant;
|
|
60
|
-
|
|
61
|
-
/**
|
|
62
|
-
* If true, the hyperlink will be styled for use on a dark background.
|
|
63
|
-
* @type {string}
|
|
64
|
-
*/
|
|
65
|
-
ondark;
|