@nectary/components 5.33.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.
@@ -22,7 +22,14 @@ class AccordionItem extends NectaryElement {
22
22
  disconnectedCallback() {
23
23
  }
24
24
  static get observedAttributes() {
25
- return ["label", "disabled", "data-checked", "optionaltext", "ellipsis"];
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.d.ts CHANGED
@@ -27,6 +27,9 @@ export * from './file-drop/index.js';
27
27
  export * from './file-picker/index.js';
28
28
  export * from './file-status/index.js';
29
29
  export * from './flag/index.js';
30
+ export * from './floating-panel/index.js';
31
+ export * from './floating-panel-button/index.js';
32
+ export * from './floating-panel-icon-button/index.js';
30
33
  export * from './grid-item/index.js';
31
34
  export * from './grid/index.js';
32
35
  export * from './help-tooltip/index.js';