@warp-ds/elements 1.3.4-next.1 → 1.4.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.
@@ -13,6 +13,7 @@ export class WarpAttention extends WarpAttention_base {
13
13
  };
14
14
  placement: {
15
15
  type: StringConstructor;
16
+ reflect: boolean;
16
17
  };
17
18
  tooltip: {
18
19
  type: BooleanConstructor;
@@ -38,50 +39,77 @@ export class WarpAttention extends WarpAttention_base {
38
39
  type: BooleanConstructor;
39
40
  reflect: boolean;
40
41
  };
42
+ distance: {
43
+ type: NumberConstructor;
44
+ reflect: boolean;
45
+ };
46
+ skidding: {
47
+ type: NumberConstructor;
48
+ reflect: boolean;
49
+ };
50
+ flip: {
51
+ type: BooleanConstructor;
52
+ reflect: boolean;
53
+ };
54
+ fallbackPlacements: {
55
+ type: ArrayConstructor;
56
+ reflect: boolean;
57
+ };
41
58
  };
42
59
  static styles: any[];
60
+ handleDone(): void;
43
61
  show: boolean;
62
+ placement: string;
44
63
  tooltip: boolean;
45
64
  callout: boolean;
46
65
  popover: boolean;
47
66
  highlight: boolean;
48
67
  canClose: boolean;
49
68
  noArrow: boolean;
69
+ distance: number;
70
+ skidding: number;
71
+ flip: boolean;
72
+ _initialPlacement: string;
73
+ set _actualDirection(v: string);
74
+ get _actualDirection(): string;
50
75
  connectedCallback(): void;
51
- set _actualDirection(v: any);
52
- get _actualDirection(): any;
53
- placement: any;
76
+ disconnectedCallback(): void;
77
+ get _arrowEl(): any;
54
78
  get _arrowDirection(): any;
79
+ get _arrowClasses(): string;
80
+ get _arrowHtml(): import("lit").TemplateResult<1> | "";
81
+ get _activeVariantClasses(): {
82
+ wrapper: any;
83
+ arrow: any;
84
+ };
85
+ get _attentionEl(): any;
86
+ get _targetEl(): any;
87
+ get _messageEl(): any;
88
+ get _wrapperClasses(): string;
89
+ get _ariaClose(): string;
90
+ get _closeBtnHtml(): import("lit").TemplateResult<1>;
55
91
  updated(): void;
56
92
  attentionState: {
57
93
  isShowing: boolean;
58
94
  isCallout: boolean;
59
- actualDirection: any;
60
- directionName: any;
95
+ actualDirection: string;
96
+ directionName: string;
61
97
  arrowEl: any;
62
98
  attentionEl: any;
63
99
  targetEl: any;
64
100
  noArrow: boolean;
101
+ distance: number;
102
+ skidding: number;
103
+ flip: boolean;
104
+ fallbackPlacements: any;
65
105
  };
66
106
  pointingAtDirection(): string;
67
107
  activeAttentionType(): string;
68
108
  defaultAriaLabel(): string;
69
109
  setAriaLabels(): void;
70
- get _activeVariantClasses(): {
71
- wrapper: any;
72
- arrow: any;
73
- };
74
- get _ariaClose(): string;
75
110
  firstUpdated(): void;
76
- get _attentionEl(): any;
77
- get _targetEl(): any;
78
- get _messageEl(): any;
79
- get _wrapperClasses(): string;
80
- get _arrowClasses(): string;
81
- get _arrowHtml(): import("lit").TemplateResult<1> | "";
82
111
  close(): void;
83
112
  keypressed(e: any): void;
84
- get _closeBtnHtml(): import("lit").TemplateResult<1>;
85
113
  render(): import("lit").TemplateResult<1>;
86
114
  }
87
115
  export {};