@citolab/qti-components 6.0.29 → 6.0.30
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/dist/{chunk-PNQIHQ4E.cjs → chunk-3S2ODAEN.cjs} +1 -7
- package/dist/{chunk-QFISTKXH.js → chunk-KT5PFIUE.js} +1 -7
- package/dist/custom-elements.json +491 -491
- package/dist/index.cjs +66 -83
- package/dist/index.css +1 -7
- package/dist/index.d.cts +4 -3
- package/dist/index.d.ts +4 -3
- package/dist/index.js +67 -84
- package/dist/qti-components/index.cjs +58 -69
- package/dist/qti-components/index.d.cts +4 -3
- package/dist/qti-components/index.d.ts +4 -3
- package/dist/qti-components/index.js +77 -88
- package/dist/qti-item/index.cjs +1 -1
- package/dist/qti-item/index.js +1 -1
- package/dist/qti-item-react/index.cjs +1 -1
- package/dist/qti-item-react/index.js +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -266,6 +266,7 @@
|
|
|
266
266
|
--tw-ring-inset: inset;
|
|
267
267
|
--tw-ring-opacity: 1;
|
|
268
268
|
--tw-ring-color: rgb(209 213 219 / var(--tw-ring-opacity));
|
|
269
|
+
display: inline-block;
|
|
269
270
|
border-radius: 0.25rem;
|
|
270
271
|
border-width: 1px;
|
|
271
272
|
--tw-border-opacity: 1;
|
|
@@ -278,13 +279,6 @@
|
|
|
278
279
|
padding-bottom: 0.5rem;
|
|
279
280
|
--tw-text-opacity: 1;
|
|
280
281
|
color: rgb(75 85 99 / var(--tw-text-opacity));
|
|
281
|
-
/* min-height: 20px;
|
|
282
|
-
padding: 19px;
|
|
283
|
-
border: 1px solid #e3e3e3;
|
|
284
|
-
border-radius: 4px;
|
|
285
|
-
margin-bottom: 20px;
|
|
286
|
-
background-color: #f5f5f5;
|
|
287
|
-
box-shadow: inset 0 1px 1px rgb(0 0 0 / 5%); */
|
|
288
282
|
}
|
|
289
283
|
|
|
290
284
|
.qti-layout-row {
|
package/dist/index.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as lit from 'lit';
|
|
2
|
-
import { LitElement, CSSResultGroup
|
|
2
|
+
import { LitElement, CSSResultGroup } from 'lit';
|
|
3
3
|
import * as lit_html from 'lit-html';
|
|
4
4
|
import { ContextConsumer } from '@lit-labs/context';
|
|
5
5
|
import * as lit_html_directives_ref from 'lit-html/directives/ref';
|
|
@@ -392,12 +392,13 @@ declare class QtiFeedbackInline extends QtiFeedback {
|
|
|
392
392
|
}
|
|
393
393
|
|
|
394
394
|
declare class QtiModalFeedback extends QtiFeedback {
|
|
395
|
-
|
|
395
|
+
static styles: lit.CSSResult;
|
|
396
|
+
render: () => lit_html.TemplateResult<1>;
|
|
396
397
|
}
|
|
397
398
|
|
|
398
399
|
declare class QtiFeedbackBlock extends QtiFeedback {
|
|
400
|
+
static styles: lit.CSSResult;
|
|
399
401
|
render(): lit_html.TemplateResult<1>;
|
|
400
|
-
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
401
402
|
}
|
|
402
403
|
|
|
403
404
|
declare abstract class Interaction extends LitElement {
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as lit from 'lit';
|
|
2
|
-
import { LitElement, CSSResultGroup
|
|
2
|
+
import { LitElement, CSSResultGroup } from 'lit';
|
|
3
3
|
import * as lit_html from 'lit-html';
|
|
4
4
|
import { ContextConsumer } from '@lit-labs/context';
|
|
5
5
|
import * as lit_html_directives_ref from 'lit-html/directives/ref';
|
|
@@ -392,12 +392,13 @@ declare class QtiFeedbackInline extends QtiFeedback {
|
|
|
392
392
|
}
|
|
393
393
|
|
|
394
394
|
declare class QtiModalFeedback extends QtiFeedback {
|
|
395
|
-
|
|
395
|
+
static styles: lit.CSSResult;
|
|
396
|
+
render: () => lit_html.TemplateResult<1>;
|
|
396
397
|
}
|
|
397
398
|
|
|
398
399
|
declare class QtiFeedbackBlock extends QtiFeedback {
|
|
400
|
+
static styles: lit.CSSResult;
|
|
399
401
|
render(): lit_html.TemplateResult<1>;
|
|
400
|
-
protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
|
|
401
402
|
}
|
|
402
403
|
|
|
403
404
|
declare abstract class Interaction extends LitElement {
|