@nectary/components 5.34.0 → 5.35.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/accordion-item/index.js +8 -1
- package/bundle.js +55 -6
- package/button-group-item/index.js +9 -1
- package/card-v2/index.js +6 -1
- package/date-picker/index.js +2 -0
- package/dialog/index.js +1 -0
- package/input/index.js +6 -0
- package/package.json +1 -1
- package/select-menu/index.js +3 -0
- package/sheet-title/index.js +6 -1
- package/skeleton/index.js +4 -1
- package/title/index.js +6 -1
- package/tooltip/index.js +4 -0
package/accordion-item/index.js
CHANGED
|
@@ -22,7 +22,14 @@ class AccordionItem extends NectaryElement {
|
|
|
22
22
|
disconnectedCallback() {
|
|
23
23
|
}
|
|
24
24
|
static get observedAttributes() {
|
|
25
|
-
return [
|
|
25
|
+
return [
|
|
26
|
+
"label",
|
|
27
|
+
"disabled",
|
|
28
|
+
"data-checked",
|
|
29
|
+
"optionaltext",
|
|
30
|
+
// eslint-disable-next-line @nectary/observed-attribute-accessor -- baseline backlog: ellipsis missing set/get pair, fixed by MR !597
|
|
31
|
+
"ellipsis"
|
|
32
|
+
];
|
|
26
33
|
}
|
|
27
34
|
attributeChangedCallback(name, oldVal, newVal) {
|
|
28
35
|
if (isAttrEqual(oldVal, newVal)) {
|
package/bundle.js
CHANGED
|
@@ -389,7 +389,12 @@ class Title extends NectaryElement {
|
|
|
389
389
|
this.setAttribute("role", "heading");
|
|
390
390
|
}
|
|
391
391
|
static get observedAttributes() {
|
|
392
|
-
return [
|
|
392
|
+
return [
|
|
393
|
+
"text",
|
|
394
|
+
// eslint-disable-next-line @nectary/observed-attribute-accessor -- baseline backlog: level missing set/get pair
|
|
395
|
+
"level",
|
|
396
|
+
"ellipsis"
|
|
397
|
+
];
|
|
393
398
|
}
|
|
394
399
|
attributeChangedCallback(name, oldVal, newVal) {
|
|
395
400
|
switch (name) {
|
|
@@ -449,7 +454,14 @@ class AccordionItem extends NectaryElement {
|
|
|
449
454
|
disconnectedCallback() {
|
|
450
455
|
}
|
|
451
456
|
static get observedAttributes() {
|
|
452
|
-
return [
|
|
457
|
+
return [
|
|
458
|
+
"label",
|
|
459
|
+
"disabled",
|
|
460
|
+
"data-checked",
|
|
461
|
+
"optionaltext",
|
|
462
|
+
// eslint-disable-next-line @nectary/observed-attribute-accessor -- baseline backlog: ellipsis missing set/get pair, fixed by MR !597
|
|
463
|
+
"ellipsis"
|
|
464
|
+
];
|
|
453
465
|
}
|
|
454
466
|
attributeChangedCallback(name, oldVal, newVal) {
|
|
455
467
|
if (isAttrEqual(oldVal, newVal)) {
|
|
@@ -2206,7 +2218,15 @@ class ButtonGroupItem extends NectaryElement {
|
|
|
2206
2218
|
this.#$sinchButton = shadowRoot.querySelector("#sinch-button-element");
|
|
2207
2219
|
}
|
|
2208
2220
|
static get observedAttributes() {
|
|
2209
|
-
return [
|
|
2221
|
+
return [
|
|
2222
|
+
// eslint-disable-next-line @nectary/observed-attribute-accessor -- baseline backlog: missing set type
|
|
2223
|
+
"type",
|
|
2224
|
+
// eslint-disable-next-line @nectary/observed-attribute-accessor -- baseline backlog: missing set size
|
|
2225
|
+
"size",
|
|
2226
|
+
"text",
|
|
2227
|
+
"disabled",
|
|
2228
|
+
"toggled"
|
|
2229
|
+
];
|
|
2210
2230
|
}
|
|
2211
2231
|
attributeChangedCallback(name, oldVal, newVal) {
|
|
2212
2232
|
updateAttribute(this.#$sinchButton, name, newVal);
|
|
@@ -2749,7 +2769,12 @@ class CardV2 extends NectaryElement {
|
|
|
2749
2769
|
}
|
|
2750
2770
|
}
|
|
2751
2771
|
static get observedAttributes() {
|
|
2752
|
-
return [
|
|
2772
|
+
return [
|
|
2773
|
+
// eslint-disable-next-line @nectary/observed-attribute-accessor -- baseline backlog: clickable missing set/get pair
|
|
2774
|
+
"clickable",
|
|
2775
|
+
"disabled",
|
|
2776
|
+
"selected"
|
|
2777
|
+
];
|
|
2753
2778
|
}
|
|
2754
2779
|
attributeChangedCallback(name, _oldVal, newVal) {
|
|
2755
2780
|
switch (name) {
|
|
@@ -4113,14 +4138,18 @@ class Tooltip extends NectaryElement {
|
|
|
4113
4138
|
}
|
|
4114
4139
|
static get observedAttributes() {
|
|
4115
4140
|
return [
|
|
4141
|
+
// eslint-disable-next-line @nectary/observed-attribute-accessor -- baseline backlog: missing set isOpened
|
|
4116
4142
|
"is-opened",
|
|
4117
4143
|
"text",
|
|
4118
4144
|
"orientation",
|
|
4145
|
+
// eslint-disable-next-line @nectary/observed-attribute-accessor -- baseline backlog: missing set textAlign
|
|
4119
4146
|
"text-align",
|
|
4120
4147
|
"type",
|
|
4121
4148
|
"aria-label",
|
|
4122
4149
|
"aria-description",
|
|
4150
|
+
// eslint-disable-next-line @nectary/observed-attribute-accessor -- baseline backlog: getter exists but missing set showOutsideViewport
|
|
4123
4151
|
"show-outside-viewport",
|
|
4152
|
+
// eslint-disable-next-line @nectary/observed-attribute-accessor -- baseline backlog: missing set allowScroll
|
|
4124
4153
|
"allow-scroll"
|
|
4125
4154
|
];
|
|
4126
4155
|
}
|
|
@@ -5408,7 +5437,9 @@ class DatePicker extends NectaryElement {
|
|
|
5408
5437
|
"max",
|
|
5409
5438
|
"locale",
|
|
5410
5439
|
"range",
|
|
5440
|
+
// eslint-disable-next-line @nectary/observed-attribute-accessor -- baseline backlog: missing set prevYearAriaLabel
|
|
5411
5441
|
"prev-year-aria-label",
|
|
5442
|
+
// eslint-disable-next-line @nectary/observed-attribute-accessor -- baseline backlog: missing set nextYearAriaLabel
|
|
5412
5443
|
"next-year-aria-label",
|
|
5413
5444
|
"prev-month-aria-label",
|
|
5414
5445
|
"next-month-aria-label"
|
|
@@ -5830,6 +5861,7 @@ class Dialog extends NectaryElement {
|
|
|
5830
5861
|
return [
|
|
5831
5862
|
"caption",
|
|
5832
5863
|
"open",
|
|
5864
|
+
// eslint-disable-next-line @nectary/observed-attribute-accessor -- baseline backlog: missing set closeAriaLabel
|
|
5833
5865
|
"close-aria-label",
|
|
5834
5866
|
"hide-close-button",
|
|
5835
5867
|
"prevent-close"
|
|
@@ -6448,18 +6480,24 @@ class Input extends NectaryElement {
|
|
|
6448
6480
|
"value",
|
|
6449
6481
|
"placeholder",
|
|
6450
6482
|
"mask",
|
|
6483
|
+
// eslint-disable-next-line @nectary/observed-attribute-accessor -- baseline backlog: missing set max
|
|
6451
6484
|
"max",
|
|
6485
|
+
// eslint-disable-next-line @nectary/observed-attribute-accessor -- baseline backlog: missing set min
|
|
6452
6486
|
"min",
|
|
6453
6487
|
"invalid",
|
|
6454
6488
|
"disabled",
|
|
6455
6489
|
"size",
|
|
6490
|
+
// eslint-disable-next-line @nectary/observed-attribute-accessor -- baseline backlog: missing set step
|
|
6456
6491
|
"step",
|
|
6457
6492
|
"autocomplete",
|
|
6493
|
+
// eslint-disable-next-line @nectary/observed-attribute-accessor -- baseline backlog: missing set readonly
|
|
6458
6494
|
"readonly",
|
|
6459
6495
|
"autofocus",
|
|
6460
6496
|
"data-size",
|
|
6461
6497
|
"aria-label",
|
|
6498
|
+
// eslint-disable-next-line @nectary/observed-attribute-accessor -- baseline backlog: missing set maxlength
|
|
6462
6499
|
"maxlength",
|
|
6500
|
+
// eslint-disable-next-line @nectary/observed-attribute-accessor -- baseline backlog: missing set required
|
|
6463
6501
|
"required"
|
|
6464
6502
|
];
|
|
6465
6503
|
}
|
|
@@ -13669,8 +13707,11 @@ class SelectMenu extends NectaryElement {
|
|
|
13669
13707
|
"rows",
|
|
13670
13708
|
"multiple",
|
|
13671
13709
|
"searchable",
|
|
13710
|
+
// eslint-disable-next-line @nectary/observed-attribute-accessor -- baseline backlog: missing set searchValue
|
|
13672
13711
|
"search-value",
|
|
13712
|
+
// eslint-disable-next-line @nectary/observed-attribute-accessor -- baseline backlog: missing set searchPlaceholder
|
|
13673
13713
|
"search-placeholder",
|
|
13714
|
+
// eslint-disable-next-line @nectary/observed-attribute-accessor -- baseline backlog: missing set searchAutocomplete
|
|
13674
13715
|
"search-autocomplete"
|
|
13675
13716
|
];
|
|
13676
13717
|
}
|
|
@@ -14292,7 +14333,12 @@ class SheetTitle extends NectaryElement {
|
|
|
14292
14333
|
this.#controller = null;
|
|
14293
14334
|
}
|
|
14294
14335
|
static get observedAttributes() {
|
|
14295
|
-
return [
|
|
14336
|
+
return [
|
|
14337
|
+
"title",
|
|
14338
|
+
"description",
|
|
14339
|
+
// eslint-disable-next-line @nectary/observed-attribute-accessor -- baseline backlog: close-aria-label missing set/get pair
|
|
14340
|
+
"close-aria-label"
|
|
14341
|
+
];
|
|
14296
14342
|
}
|
|
14297
14343
|
attributeChangedCallback(name, oldVal, newVal) {
|
|
14298
14344
|
if (isAttrEqual(oldVal, newVal)) {
|
|
@@ -14415,7 +14461,10 @@ class Skeleton extends NectaryElement {
|
|
|
14415
14461
|
this.#observer = null;
|
|
14416
14462
|
}
|
|
14417
14463
|
static get observedAttributes() {
|
|
14418
|
-
return [
|
|
14464
|
+
return [
|
|
14465
|
+
// eslint-disable-next-line @nectary/observed-attribute-accessor -- baseline backlog: card missing set/get pair
|
|
14466
|
+
"card"
|
|
14467
|
+
];
|
|
14419
14468
|
}
|
|
14420
14469
|
attributeChangedCallback(name, _oldVal, newVal) {
|
|
14421
14470
|
if (name === "card") {
|
|
@@ -14,7 +14,15 @@ class ButtonGroupItem extends NectaryElement {
|
|
|
14
14
|
this.#$sinchButton = shadowRoot.querySelector("#sinch-button-element");
|
|
15
15
|
}
|
|
16
16
|
static get observedAttributes() {
|
|
17
|
-
return [
|
|
17
|
+
return [
|
|
18
|
+
// eslint-disable-next-line @nectary/observed-attribute-accessor -- baseline backlog: missing set type
|
|
19
|
+
"type",
|
|
20
|
+
// eslint-disable-next-line @nectary/observed-attribute-accessor -- baseline backlog: missing set size
|
|
21
|
+
"size",
|
|
22
|
+
"text",
|
|
23
|
+
"disabled",
|
|
24
|
+
"toggled"
|
|
25
|
+
];
|
|
18
26
|
}
|
|
19
27
|
attributeChangedCallback(name, oldVal, newVal) {
|
|
20
28
|
updateAttribute(this.#$sinchButton, name, newVal);
|
package/card-v2/index.js
CHANGED
|
@@ -92,7 +92,12 @@ class CardV2 extends NectaryElement {
|
|
|
92
92
|
}
|
|
93
93
|
}
|
|
94
94
|
static get observedAttributes() {
|
|
95
|
-
return [
|
|
95
|
+
return [
|
|
96
|
+
// eslint-disable-next-line @nectary/observed-attribute-accessor -- baseline backlog: clickable missing set/get pair
|
|
97
|
+
"clickable",
|
|
98
|
+
"disabled",
|
|
99
|
+
"selected"
|
|
100
|
+
];
|
|
96
101
|
}
|
|
97
102
|
attributeChangedCallback(name, _oldVal, newVal) {
|
|
98
103
|
switch (name) {
|
package/date-picker/index.js
CHANGED
|
@@ -95,7 +95,9 @@ class DatePicker extends NectaryElement {
|
|
|
95
95
|
"max",
|
|
96
96
|
"locale",
|
|
97
97
|
"range",
|
|
98
|
+
// eslint-disable-next-line @nectary/observed-attribute-accessor -- baseline backlog: missing set prevYearAriaLabel
|
|
98
99
|
"prev-year-aria-label",
|
|
100
|
+
// eslint-disable-next-line @nectary/observed-attribute-accessor -- baseline backlog: missing set nextYearAriaLabel
|
|
99
101
|
"next-year-aria-label",
|
|
100
102
|
"prev-month-aria-label",
|
|
101
103
|
"next-month-aria-label"
|
package/dialog/index.js
CHANGED
package/input/index.js
CHANGED
|
@@ -173,18 +173,24 @@ class Input extends NectaryElement {
|
|
|
173
173
|
"value",
|
|
174
174
|
"placeholder",
|
|
175
175
|
"mask",
|
|
176
|
+
// eslint-disable-next-line @nectary/observed-attribute-accessor -- baseline backlog: missing set max
|
|
176
177
|
"max",
|
|
178
|
+
// eslint-disable-next-line @nectary/observed-attribute-accessor -- baseline backlog: missing set min
|
|
177
179
|
"min",
|
|
178
180
|
"invalid",
|
|
179
181
|
"disabled",
|
|
180
182
|
"size",
|
|
183
|
+
// eslint-disable-next-line @nectary/observed-attribute-accessor -- baseline backlog: missing set step
|
|
181
184
|
"step",
|
|
182
185
|
"autocomplete",
|
|
186
|
+
// eslint-disable-next-line @nectary/observed-attribute-accessor -- baseline backlog: missing set readonly
|
|
183
187
|
"readonly",
|
|
184
188
|
"autofocus",
|
|
185
189
|
"data-size",
|
|
186
190
|
"aria-label",
|
|
191
|
+
// eslint-disable-next-line @nectary/observed-attribute-accessor -- baseline backlog: missing set maxlength
|
|
187
192
|
"maxlength",
|
|
193
|
+
// eslint-disable-next-line @nectary/observed-attribute-accessor -- baseline backlog: missing set required
|
|
188
194
|
"required"
|
|
189
195
|
];
|
|
190
196
|
}
|
package/package.json
CHANGED
package/select-menu/index.js
CHANGED
|
@@ -113,8 +113,11 @@ class SelectMenu extends NectaryElement {
|
|
|
113
113
|
"rows",
|
|
114
114
|
"multiple",
|
|
115
115
|
"searchable",
|
|
116
|
+
// eslint-disable-next-line @nectary/observed-attribute-accessor -- baseline backlog: missing set searchValue
|
|
116
117
|
"search-value",
|
|
118
|
+
// eslint-disable-next-line @nectary/observed-attribute-accessor -- baseline backlog: missing set searchPlaceholder
|
|
117
119
|
"search-placeholder",
|
|
120
|
+
// eslint-disable-next-line @nectary/observed-attribute-accessor -- baseline backlog: missing set searchAutocomplete
|
|
118
121
|
"search-autocomplete"
|
|
119
122
|
];
|
|
120
123
|
}
|
package/sheet-title/index.js
CHANGED
|
@@ -33,7 +33,12 @@ class SheetTitle extends NectaryElement {
|
|
|
33
33
|
this.#controller = null;
|
|
34
34
|
}
|
|
35
35
|
static get observedAttributes() {
|
|
36
|
-
return [
|
|
36
|
+
return [
|
|
37
|
+
"title",
|
|
38
|
+
"description",
|
|
39
|
+
// eslint-disable-next-line @nectary/observed-attribute-accessor -- baseline backlog: close-aria-label missing set/get pair
|
|
40
|
+
"close-aria-label"
|
|
41
|
+
];
|
|
37
42
|
}
|
|
38
43
|
attributeChangedCallback(name, oldVal, newVal) {
|
|
39
44
|
if (isAttrEqual(oldVal, newVal)) {
|
package/skeleton/index.js
CHANGED
|
@@ -59,7 +59,10 @@ class Skeleton extends NectaryElement {
|
|
|
59
59
|
this.#observer = null;
|
|
60
60
|
}
|
|
61
61
|
static get observedAttributes() {
|
|
62
|
-
return [
|
|
62
|
+
return [
|
|
63
|
+
// eslint-disable-next-line @nectary/observed-attribute-accessor -- baseline backlog: card missing set/get pair
|
|
64
|
+
"card"
|
|
65
|
+
];
|
|
63
66
|
}
|
|
64
67
|
attributeChangedCallback(name, _oldVal, newVal) {
|
|
65
68
|
if (name === "card") {
|
package/title/index.js
CHANGED
|
@@ -16,7 +16,12 @@ class Title extends NectaryElement {
|
|
|
16
16
|
this.setAttribute("role", "heading");
|
|
17
17
|
}
|
|
18
18
|
static get observedAttributes() {
|
|
19
|
-
return [
|
|
19
|
+
return [
|
|
20
|
+
"text",
|
|
21
|
+
// eslint-disable-next-line @nectary/observed-attribute-accessor -- baseline backlog: level missing set/get pair
|
|
22
|
+
"level",
|
|
23
|
+
"ellipsis"
|
|
24
|
+
];
|
|
20
25
|
}
|
|
21
26
|
attributeChangedCallback(name, oldVal, newVal) {
|
|
22
27
|
switch (name) {
|
package/tooltip/index.js
CHANGED
|
@@ -111,14 +111,18 @@ class Tooltip extends NectaryElement {
|
|
|
111
111
|
}
|
|
112
112
|
static get observedAttributes() {
|
|
113
113
|
return [
|
|
114
|
+
// eslint-disable-next-line @nectary/observed-attribute-accessor -- baseline backlog: missing set isOpened
|
|
114
115
|
"is-opened",
|
|
115
116
|
"text",
|
|
116
117
|
"orientation",
|
|
118
|
+
// eslint-disable-next-line @nectary/observed-attribute-accessor -- baseline backlog: missing set textAlign
|
|
117
119
|
"text-align",
|
|
118
120
|
"type",
|
|
119
121
|
"aria-label",
|
|
120
122
|
"aria-description",
|
|
123
|
+
// eslint-disable-next-line @nectary/observed-attribute-accessor -- baseline backlog: getter exists but missing set showOutsideViewport
|
|
121
124
|
"show-outside-viewport",
|
|
125
|
+
// eslint-disable-next-line @nectary/observed-attribute-accessor -- baseline backlog: missing set allowScroll
|
|
122
126
|
"allow-scroll"
|
|
123
127
|
];
|
|
124
128
|
}
|