@citolab/qti-components 6.9.1-beta.25 → 6.9.1-beta.27

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.
@@ -1,16 +1,16 @@
1
- import { n as VariableValue } from '../qti-simple-choice-bOvnZAEz.js';
2
- import 'lit-html';
3
- import 'lit';
1
+ import * as lit_html from 'lit-html';
2
+ import { p as QtiAssessmentItem } from '../qti-simple-choice-CWJsmgbB.js';
3
+ import { LitElement } from 'lit';
4
4
  import 'lit-html/directives/ref.js';
5
5
 
6
- declare class QtiItem extends HTMLElement {
7
- #private;
8
- view?: string;
9
- set xmlDoc(xml: DocumentFragment);
10
- processResponse(): void;
11
- get variables(): VariableValue<string | string[] | null>[];
12
- set variables(variables: VariableValue<string | string[] | null>[]);
13
- attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
6
+ declare class QtiItem extends LitElement {
7
+ identifier?: string;
8
+ href?: string;
9
+ xmlDoc: DocumentFragment;
10
+ protected createRenderRoot(): HTMLElement | DocumentFragment;
11
+ get assessmentItem(): QtiAssessmentItem | null;
12
+ connectedCallback(): Promise<void>;
13
+ render(): lit_html.TemplateResult<1>;
14
14
  }
15
15
  declare global {
16
16
  interface HTMLElementTagNameMap {