@warp-ds/elements 1.1.2-next.1 → 1.2.0-next.1
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/index.js +346 -309
- package/dist/packages/attention/index.d.ts +9 -0
- package/package.json +2 -2
|
@@ -26,6 +26,10 @@ export class WarpAttention extends WarpAttention_base {
|
|
|
26
26
|
type: BooleanConstructor;
|
|
27
27
|
reflect: boolean;
|
|
28
28
|
};
|
|
29
|
+
highlight: {
|
|
30
|
+
type: BooleanConstructor;
|
|
31
|
+
reflect: boolean;
|
|
32
|
+
};
|
|
29
33
|
noArrow: {
|
|
30
34
|
type: BooleanConstructor;
|
|
31
35
|
reflect: boolean;
|
|
@@ -36,6 +40,7 @@ export class WarpAttention extends WarpAttention_base {
|
|
|
36
40
|
tooltip: boolean;
|
|
37
41
|
callout: boolean;
|
|
38
42
|
popover: boolean;
|
|
43
|
+
highlight: boolean;
|
|
39
44
|
noArrow: boolean;
|
|
40
45
|
connectedCallback(): void;
|
|
41
46
|
set _actualDirection(arg: any);
|
|
@@ -57,6 +62,10 @@ export class WarpAttention extends WarpAttention_base {
|
|
|
57
62
|
activeAttentionType(): string;
|
|
58
63
|
defaultAriaLabel(): string;
|
|
59
64
|
setAriaLabels(): void;
|
|
65
|
+
get _activeVariantClasses(): {
|
|
66
|
+
wrapper: any;
|
|
67
|
+
arrow: any;
|
|
68
|
+
};
|
|
60
69
|
firstUpdated(): void;
|
|
61
70
|
get _attentionEl(): any;
|
|
62
71
|
get _targetEl(): any;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@warp-ds/elements",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.2.0-next.1",
|
|
5
5
|
"description": "Custom elements for Warp",
|
|
6
6
|
"exports": {
|
|
7
7
|
".": "./dist/index.js",
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"@lingui/core": "^4.5.0",
|
|
79
79
|
"@open-wc/testing": "3.2.0",
|
|
80
80
|
"@warp-ds/core": "1.0.0",
|
|
81
|
-
"@warp-ds/css": "^1.
|
|
81
|
+
"@warp-ds/css": "^1.2.0",
|
|
82
82
|
"@warp-ds/icons": "1.1.0",
|
|
83
83
|
"@warp-ds/uno": "^1.1.0",
|
|
84
84
|
"glob": "8.1.0",
|