@pairbo/ui-kit 0.4.1 → 0.4.3

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,11 @@ export default class PboModal extends PairboElement {
22
22
  placement: "top" | "right" | "bottom" | "left";
23
23
  radius: boolean;
24
24
  contained: boolean;
25
+ label: string;
25
26
  private requestClose;
27
+ private handleKeyDown;
28
+ connectedCallback(): void;
29
+ disconnectedCallback(): void;
26
30
  hide(): Promise<void>;
27
31
  show(): Promise<undefined>;
28
32
  handleOpenChange(): void;
@@ -62,5 +62,6 @@ export default class PboEditorCardSlider extends PairboElement {
62
62
  handleTouchMove: (e: TouchEvent) => void;
63
63
  handleTouchEnd: () => void;
64
64
  get mainSlides(): TemplateResult<1> | never[];
65
+ private zoomIcon;
65
66
  render(): TemplateResult<1>;
66
67
  }
@@ -29,6 +29,7 @@ export default class PboPageManager extends PairboElement {
29
29
  "pbo-editor": typeof PboEditor;
30
30
  };
31
31
  cardSelectionEl: PboCardSelection;
32
+ titleEl: HTMLHeadingElement;
32
33
  get editorEl(): PboEditor | null;
33
34
  onClose: () => void;
34
35
  currentPage: "selection" | "editor";
@@ -27,6 +27,7 @@ export default class PboRadioButton extends PairboElement {
27
27
  size: "small" | "medium" | "large";
28
28
  circle: boolean;
29
29
  iconOnly: boolean;
30
+ ariaLabel: string | undefined;
30
31
  protected hasFocus: boolean;
31
32
  connectedCallback(): void;
32
33
  private handleBlur;
@@ -59,6 +59,7 @@ export default class PboTypeForm extends PairboElement {
59
59
  type: string;
60
60
  message: string;
61
61
  };
62
+ validationError: string;
62
63
  wrappedSubmitTypeForm: SubmitTypeForm;
63
64
  processedMessage: string;
64
65
  maxChars: 223 | 600;