@citolab/qti-components 6.0.16 → 6.0.17
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-FIJLDR56.js +2204 -0
- package/dist/chunk-HQKT4SJF.js +1 -0
- package/dist/custom-elements.json +301 -336
- package/dist/index.d.ts +1 -1
- package/dist/index.js +63 -143
- package/dist/qti-components/index.d.ts +2 -2
- package/dist/qti-components/index.js +70 -150
- package/dist/qti-item/index.js +1 -1
- package/dist/qti-item-react/index.d.ts +1 -1
- package/dist/qti-item-react/index.js +1 -1
- package/dist/qti-simple-choice-ca9b86db.d.ts +352 -0
- package/package.json +47 -39
package/dist/qti-item/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
import{a as o}from"../chunk-
|
|
1
|
+
import{a as o}from"../chunk-FIJLDR56.js";import"../chunk-HQKT4SJF.js";import"../chunk-WFLR5TH7.js";import"../chunk-NMCIOGD2.js";export{o as QtiItem};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React, { Ref } from 'react';
|
|
2
2
|
import { Q as QtiItem$1 } from '../qti-item-8c26fa9e.js';
|
|
3
3
|
import { a as ResponseInteraction } from '../qti-assessment-item-f1fcf393.js';
|
|
4
|
-
import { O as OutcomeChangedDetails, b as InteractionChangedDetails } from '../qti-simple-choice-
|
|
4
|
+
import { O as OutcomeChangedDetails, b as InteractionChangedDetails } from '../qti-simple-choice-ca9b86db.js';
|
|
5
5
|
import 'lit-html';
|
|
6
6
|
import 'lit';
|
|
7
7
|
import 'lit-html/directives/ref';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{a as e}from"../chunk-
|
|
1
|
+
import{a as e}from"../chunk-FIJLDR56.js";import"../chunk-HQKT4SJF.js";import"../chunk-WFLR5TH7.js";import"../chunk-NMCIOGD2.js";import t from"react";import{createComponent as o}from"@lit-labs/react";var c=o({tagName:"qti-item",react:t,elementClass:e,events:{qtioutcomechanged:"qti-outcome-changed",qtiinteractionchanged:"qti-interaction-changed",qtiitemconnected:"qti-item-connected"}});export{c as QtiItem};
|
|
@@ -0,0 +1,352 @@
|
|
|
1
|
+
import { a as ResponseInteraction, V as VariableDeclaration } from './qti-assessment-item-f1fcf393.js';
|
|
2
|
+
import * as lit_html from 'lit-html';
|
|
3
|
+
import * as lit from 'lit';
|
|
4
|
+
import { LitElement, CSSResultGroup } from 'lit';
|
|
5
|
+
import * as lit_html_directives_ref from 'lit-html/directives/ref';
|
|
6
|
+
|
|
7
|
+
interface OutcomeChangedDetails {
|
|
8
|
+
item: string;
|
|
9
|
+
outcomeIdentifier: string;
|
|
10
|
+
value: number;
|
|
11
|
+
}
|
|
12
|
+
type InteractionChangedDetails = ResponseInteraction & {
|
|
13
|
+
item: string;
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
type QtiOutcomeChanged = CustomEvent<OutcomeChangedDetails>;
|
|
17
|
+
declare global {
|
|
18
|
+
interface GlobalEventHandlersEventMap {
|
|
19
|
+
'qti-outcome-changed': QtiOutcomeChanged;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
type qtiOutcomeChanged_QtiOutcomeChanged = QtiOutcomeChanged;
|
|
24
|
+
declare namespace qtiOutcomeChanged {
|
|
25
|
+
export {
|
|
26
|
+
qtiOutcomeChanged_QtiOutcomeChanged as QtiOutcomeChanged,
|
|
27
|
+
QtiOutcomeChanged as default,
|
|
28
|
+
};
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
type QtiInteractionChanged = CustomEvent<InteractionChangedDetails>;
|
|
32
|
+
declare global {
|
|
33
|
+
interface GlobalEventHandlersEventMap {
|
|
34
|
+
"qti-interaction-changed": QtiInteractionChanged;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
type qtiInteractionChanged_QtiInteractionChanged = QtiInteractionChanged;
|
|
39
|
+
declare namespace qtiInteractionChanged {
|
|
40
|
+
export {
|
|
41
|
+
qtiInteractionChanged_QtiInteractionChanged as QtiInteractionChanged,
|
|
42
|
+
QtiInteractionChanged as default,
|
|
43
|
+
};
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
type QtiRegisterVariable = CustomEvent<{
|
|
47
|
+
variable: VariableDeclaration<number | string | string[]>;
|
|
48
|
+
}>;
|
|
49
|
+
declare global {
|
|
50
|
+
interface GlobalEventHandlersEventMap {
|
|
51
|
+
"qti-register-variable": QtiRegisterVariable;
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
declare namespace qtiRegisterVariable {
|
|
56
|
+
export {
|
|
57
|
+
QtiRegisterVariable as default,
|
|
58
|
+
};
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
type QtiRegisterInteraction = CustomEvent<Record<PropertyKey, never>>;
|
|
62
|
+
declare global {
|
|
63
|
+
interface GlobalEventHandlersEventMap {
|
|
64
|
+
'qti-register-interaction': QtiRegisterInteraction;
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
declare namespace qtiRegisterInteraction {
|
|
69
|
+
export {
|
|
70
|
+
QtiRegisterInteraction as default,
|
|
71
|
+
};
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
type QtiRegisterChoice = CustomEvent<Record<PropertyKey, never>>;
|
|
75
|
+
declare global {
|
|
76
|
+
interface GlobalEventHandlersEventMap {
|
|
77
|
+
'qti-register-choice': QtiRegisterChoice;
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
declare namespace qtiRegisterChoice {
|
|
82
|
+
export {
|
|
83
|
+
QtiRegisterChoice as default,
|
|
84
|
+
};
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
type QtiRegisterHotspot = CustomEvent<Record<PropertyKey, never>>;
|
|
88
|
+
declare global {
|
|
89
|
+
interface GlobalEventHandlersEventMap {
|
|
90
|
+
'qti-register-hotspot': QtiRegisterHotspot;
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
declare namespace qtiRegisterHotspot {
|
|
95
|
+
export {
|
|
96
|
+
QtiRegisterHotspot as default,
|
|
97
|
+
};
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
type QtiLooseChoice = CustomEvent<Record<PropertyKey, never>>;
|
|
101
|
+
declare global {
|
|
102
|
+
interface GlobalEventHandlersEventMap {
|
|
103
|
+
'qti-loose-choice': QtiLooseChoice;
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
declare namespace qtiLooseChoice {
|
|
108
|
+
export {
|
|
109
|
+
QtiLooseChoice as default,
|
|
110
|
+
};
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
type QtiInteractionResponse = CustomEvent<ResponseInteraction>;
|
|
114
|
+
declare global {
|
|
115
|
+
interface GlobalEventHandlersEventMap {
|
|
116
|
+
'qti-interaction-response': QtiInteractionResponse;
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
declare namespace qtiInteractionResponse {
|
|
121
|
+
export {
|
|
122
|
+
QtiInteractionResponse as default,
|
|
123
|
+
};
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
type QtiChoiceElementSelected = CustomEvent<{
|
|
127
|
+
identifier: string;
|
|
128
|
+
checked: boolean;
|
|
129
|
+
}>;
|
|
130
|
+
declare global {
|
|
131
|
+
interface GlobalEventHandlersEventMap {
|
|
132
|
+
'qti-choice-element-selected': QtiChoiceElementSelected;
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
declare namespace qtiChoiceElementSelected {
|
|
137
|
+
export {
|
|
138
|
+
QtiChoiceElementSelected as default,
|
|
139
|
+
};
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
/**
|
|
143
|
+
* @summary The qti-item-body node contains the text, graphics, media objects and interactions that describe the item's content and information about how it is structured.
|
|
144
|
+
* @documentation https://www.imsglobal.org/spec/qti/v3p0/impl#h.sphpo6lu6zqi
|
|
145
|
+
* @status stable
|
|
146
|
+
* @since 4.0
|
|
147
|
+
*
|
|
148
|
+
* @slot - item body content.
|
|
149
|
+
* @slot qti-rubric-block - the qti rubric block is placed above the item
|
|
150
|
+
*
|
|
151
|
+
*/
|
|
152
|
+
declare class QtiItemBody extends LitElement {
|
|
153
|
+
static styles: CSSResultGroup;
|
|
154
|
+
render(): lit_html.TemplateResult<1>;
|
|
155
|
+
}
|
|
156
|
+
declare global {
|
|
157
|
+
interface HTMLElementTagNameMap {
|
|
158
|
+
'qti-item-body': QtiItemBody;
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
/**
|
|
163
|
+
* @summary qti-choice is used by qti-simple-choice, qti-inline-choice, qti-hottext, qti-hotspot-choice.
|
|
164
|
+
*
|
|
165
|
+
* @since 1.0
|
|
166
|
+
* @status stable
|
|
167
|
+
*
|
|
168
|
+
* @event qti-register-choice - register itselves on a qti-choice-interaction element.
|
|
169
|
+
* @event qti-loose-choice - de-register itselves on a qti-choice-interaction element.
|
|
170
|
+
* @event qti-choice-element-selected - Emitted when the choice is selected.
|
|
171
|
+
*
|
|
172
|
+
* @slot - The choices slot element
|
|
173
|
+
*/
|
|
174
|
+
declare abstract class QtiChoice extends LitElement {
|
|
175
|
+
identifier: string;
|
|
176
|
+
tabindex: number | undefined;
|
|
177
|
+
disabled: boolean;
|
|
178
|
+
readonly: boolean;
|
|
179
|
+
checked: boolean;
|
|
180
|
+
handleDisabledChange(_: boolean, disabled: boolean): void;
|
|
181
|
+
connectedCallback(): void;
|
|
182
|
+
disconnectedCallback(): void;
|
|
183
|
+
reset(): void;
|
|
184
|
+
private _onKeyUp;
|
|
185
|
+
private _onClick;
|
|
186
|
+
private _toggleChecked;
|
|
187
|
+
validateAllProps(): boolean;
|
|
188
|
+
render(): lit_html.TemplateResult;
|
|
189
|
+
}
|
|
190
|
+
declare global {
|
|
191
|
+
interface HTMLElementTagNameMap {
|
|
192
|
+
'qti-choice': QtiChoice;
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
declare abstract class Interaction extends LitElement {
|
|
197
|
+
responseIdentifier: string;
|
|
198
|
+
/** disabled should be exposed to the attributes and accessible as property */
|
|
199
|
+
disabled: boolean;
|
|
200
|
+
/** readonly should be exposed to the attributes and accessible as property */
|
|
201
|
+
readonly: boolean;
|
|
202
|
+
abstract reset(): void;
|
|
203
|
+
abstract validate(): boolean;
|
|
204
|
+
abstract set response(val: string | string[]);
|
|
205
|
+
connectedCallback(): void;
|
|
206
|
+
saveResponse(value: string | string[]): void;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
declare class QtiTextEntryInteraction extends Interaction {
|
|
210
|
+
expectedLength: number;
|
|
211
|
+
patternMask: string;
|
|
212
|
+
placeholderText: string;
|
|
213
|
+
private _value;
|
|
214
|
+
classNames: any;
|
|
215
|
+
set response(value: string | undefined);
|
|
216
|
+
validate(): boolean;
|
|
217
|
+
static get styles(): lit.CSSResult[];
|
|
218
|
+
render(): lit_html.TemplateResult<1>;
|
|
219
|
+
protected textChanged(event: Event): void;
|
|
220
|
+
reset(): void;
|
|
221
|
+
private setEmptyAttribute;
|
|
222
|
+
}
|
|
223
|
+
declare global {
|
|
224
|
+
interface HTMLElementTagNameMap {
|
|
225
|
+
'qti-text-entry-interaction': QtiTextEntryInteraction;
|
|
226
|
+
}
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
declare class QtiExtendedTextInteraction extends Interaction {
|
|
230
|
+
textareaRef: lit_html_directives_ref.Ref<HTMLTextAreaElement>;
|
|
231
|
+
/** expected length is mapped to the property maxlength on the textarea */
|
|
232
|
+
expectedLength: number;
|
|
233
|
+
patternMask: string;
|
|
234
|
+
/** text appearing in the extended-text-nteraction if it is empty */
|
|
235
|
+
placeholderText: string;
|
|
236
|
+
private _value;
|
|
237
|
+
classNames: any;
|
|
238
|
+
handleclassNamesChange(old: any, disabled: boolean): void;
|
|
239
|
+
set response(value: string);
|
|
240
|
+
validate(): boolean;
|
|
241
|
+
static get styles(): lit.CSSResult[];
|
|
242
|
+
render(): lit_html.TemplateResult<1>;
|
|
243
|
+
protected textChanged(event: Event): void;
|
|
244
|
+
reset(): void;
|
|
245
|
+
private setEmptyAttribute;
|
|
246
|
+
}
|
|
247
|
+
declare global {
|
|
248
|
+
interface HTMLElementTagNameMap {
|
|
249
|
+
'qti-extended-text-interaction': QtiExtendedTextInteraction;
|
|
250
|
+
}
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
declare abstract class Choices extends Interaction {
|
|
254
|
+
protected _choiceElements: QtiChoice[];
|
|
255
|
+
/** the minimal number of selections a candidate must make */
|
|
256
|
+
minChoices: number;
|
|
257
|
+
/** the maximum number of selections a candidate must make, the other options will be disabled when max options is checked */
|
|
258
|
+
maxChoices: number;
|
|
259
|
+
_handleDisabledChange: (_: boolean, disabled: boolean) => void;
|
|
260
|
+
_handleReadonlyChange: (_: boolean, readonly: boolean) => void;
|
|
261
|
+
_handleMaxChoicesChange: () => void;
|
|
262
|
+
constructor();
|
|
263
|
+
reset(): void;
|
|
264
|
+
validate(): boolean;
|
|
265
|
+
set response(myResponse: ResponseType);
|
|
266
|
+
connectedCallback(): void;
|
|
267
|
+
disconnectedCallback(): void;
|
|
268
|
+
private _registerChoiceElement;
|
|
269
|
+
private _looseChoiceElement;
|
|
270
|
+
private _determineInputType;
|
|
271
|
+
private _setInputType;
|
|
272
|
+
private _choiceElementSelectedHandler;
|
|
273
|
+
private _choiceElementSelected;
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
/**
|
|
277
|
+
* @summary The ChoiceInteraction.Type (qti-choice-interaction) interaction presents a collection of choices to the candidate.
|
|
278
|
+
* @documentation https://www.imsglobal.org/spec/qti/v3p0/impl#h.j9nu1oa1tu3b
|
|
279
|
+
* @status stable
|
|
280
|
+
* @since 6.0
|
|
281
|
+
*
|
|
282
|
+
* @event qti-register-interaction - emitted when the interaction wants to register itself
|
|
283
|
+
* @event qti-interaction-response - emitted when the interaction changes
|
|
284
|
+
*
|
|
285
|
+
* @slot - The default slot where <qti-simple-choice> must be placed.
|
|
286
|
+
* @slot prompt - slot where the prompt is placed.
|
|
287
|
+
*/
|
|
288
|
+
declare class QtiChoiceInteraction extends Choices {
|
|
289
|
+
static styles: CSSResultGroup;
|
|
290
|
+
/** orientation of choices */
|
|
291
|
+
orientation: 'horizontal' | 'vertical';
|
|
292
|
+
render: () => lit_html.TemplateResult<1>;
|
|
293
|
+
}
|
|
294
|
+
declare global {
|
|
295
|
+
interface HTMLElementTagNameMap {
|
|
296
|
+
'qti-choice-interaction': QtiChoiceInteraction;
|
|
297
|
+
}
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
declare class QtiResponseProcessing extends LitElement {
|
|
301
|
+
render(): lit_html.TemplateResult<1>;
|
|
302
|
+
static get observedAttributes(): string[];
|
|
303
|
+
process(): void;
|
|
304
|
+
private fragmentFromString;
|
|
305
|
+
}
|
|
306
|
+
declare global {
|
|
307
|
+
interface HTMLElementTagNameMap {
|
|
308
|
+
'qti-response-processing': QtiResponseProcessing;
|
|
309
|
+
}
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
declare class QtiRule extends LitElement {
|
|
313
|
+
render(): lit_html.TemplateResult<1>;
|
|
314
|
+
process(): void;
|
|
315
|
+
}
|
|
316
|
+
declare global {
|
|
317
|
+
interface HTMLElementTagNameMap {
|
|
318
|
+
'qti-rule': QtiRule;
|
|
319
|
+
}
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
declare class QtiHottext extends QtiChoice {
|
|
323
|
+
render(): lit_html.TemplateResult<1>;
|
|
324
|
+
}
|
|
325
|
+
declare global {
|
|
326
|
+
interface HTMLElementTagNameMap {
|
|
327
|
+
'qti-hottext': QtiHottext;
|
|
328
|
+
}
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
/**
|
|
332
|
+
* @summary Short summary of the component's intended use.
|
|
333
|
+
* @documentation https://www.imsglobal.org/spec/qti/v3p0/impl#h.j9nu1oa1tu3b
|
|
334
|
+
* @status stable
|
|
335
|
+
* @since 4.0
|
|
336
|
+
*
|
|
337
|
+
* @event qti-choice-element-selected - Emitted when a choice is selected.
|
|
338
|
+
* @event qti-register-choice - Emitted when an choice is added
|
|
339
|
+
* @event qti-loose-choice - Emitted when a choice is removed
|
|
340
|
+
*
|
|
341
|
+
* @slot - The default slot.
|
|
342
|
+
*/
|
|
343
|
+
declare class QtiSimpleChoice extends QtiChoice {
|
|
344
|
+
render(): lit_html.TemplateResult<1>;
|
|
345
|
+
}
|
|
346
|
+
declare global {
|
|
347
|
+
interface HTMLElementTagNameMap {
|
|
348
|
+
'qti-simple-choice': QtiSimpleChoice;
|
|
349
|
+
}
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
export { Choices as C, Interaction as I, OutcomeChangedDetails as O, QtiRule as Q, QtiChoice as a, InteractionChangedDetails as b, qtiInteractionChanged as c, qtiRegisterVariable as d, qtiRegisterInteraction as e, qtiRegisterChoice as f, qtiRegisterHotspot as g, qtiLooseChoice as h, qtiInteractionResponse as i, qtiChoiceElementSelected as j, QtiTextEntryInteraction as k, QtiExtendedTextInteraction as l, QtiResponseProcessing as m, QtiHottext as n, qtiOutcomeChanged as q };
|
package/package.json
CHANGED
|
@@ -12,13 +12,16 @@
|
|
|
12
12
|
"engines": {
|
|
13
13
|
"node": ">=16.0.0"
|
|
14
14
|
},
|
|
15
|
-
"version": "6.0.
|
|
15
|
+
"version": "6.0.17",
|
|
16
16
|
"type": "module",
|
|
17
17
|
"main": "dist/qti-components/index.js",
|
|
18
18
|
"exports": {
|
|
19
19
|
".": {
|
|
20
20
|
"import": "./dist/qti-components/index.js"
|
|
21
21
|
},
|
|
22
|
+
"./context": {
|
|
23
|
+
"import": "./dist/context/index.js"
|
|
24
|
+
},
|
|
22
25
|
"./decorators": {
|
|
23
26
|
"import": "./dist/decorators/index.js"
|
|
24
27
|
},
|
|
@@ -45,6 +48,9 @@
|
|
|
45
48
|
".": [
|
|
46
49
|
"./dist/index.d.ts"
|
|
47
50
|
],
|
|
51
|
+
"context": [
|
|
52
|
+
"./dist/context/index.d.ts"
|
|
53
|
+
],
|
|
48
54
|
"decorators": [
|
|
49
55
|
"./dist/decorators/index.d.ts"
|
|
50
56
|
],
|
|
@@ -82,15 +88,17 @@
|
|
|
82
88
|
"test-storybook": "test-storybook",
|
|
83
89
|
"cem": "cem analyze --watch",
|
|
84
90
|
"lint": "eslint src/lib/**",
|
|
85
|
-
"kill 6006": "sudo lsof -i :6006 | grep LISTEN | awk '{print $2}' | xargs kill"
|
|
91
|
+
"kill 6006": "sudo lsof -i :6006 | grep LISTEN | awk '{print $2}' | xargs kill",
|
|
92
|
+
"list-outdated-dependencies": "npx npm-check-updates --format repo --peer",
|
|
93
|
+
"update-dependencies": "npx npm-check-updates --peer -u && npm install"
|
|
86
94
|
},
|
|
87
95
|
"dependencies": {
|
|
88
|
-
"@lit-labs/context": "^0.3.
|
|
89
|
-
"@lit-labs/react": "^1.
|
|
96
|
+
"@lit-labs/context": "^0.3.3",
|
|
97
|
+
"@lit-labs/react": "^1.2.0",
|
|
90
98
|
"@tailwindcss/nesting": "^0.0.0-insiders.565cd3e",
|
|
91
99
|
"cheerio": "^1.0.0-rc.12",
|
|
92
100
|
"haunted": "^5.0.0",
|
|
93
|
-
"lit": "^2.
|
|
101
|
+
"lit": "^2.7.5",
|
|
94
102
|
"lit-xml": "^0.5.0"
|
|
95
103
|
},
|
|
96
104
|
"peerdependencies": {
|
|
@@ -100,53 +108,53 @@
|
|
|
100
108
|
"lit": ">= 2 < 3"
|
|
101
109
|
},
|
|
102
110
|
"devDependencies": {
|
|
103
|
-
"@custom-elements-manifest/analyzer": "^0.8.
|
|
104
|
-
"@jest/globals": "^
|
|
105
|
-
"@storybook/addon-a11y": "^7.
|
|
106
|
-
"@storybook/addon-essentials": "^7.
|
|
107
|
-
"@storybook/addon-interactions": "^7.
|
|
108
|
-
"@storybook/addon-jest": "^7.
|
|
109
|
-
"@storybook/addon-links": "^7.
|
|
110
|
-
"@storybook/addon-styling": "1.0
|
|
111
|
-
"@storybook/blocks": "^7.
|
|
111
|
+
"@custom-elements-manifest/analyzer": "^0.8.3",
|
|
112
|
+
"@jest/globals": "^29.5.0",
|
|
113
|
+
"@storybook/addon-a11y": "^7.0.21",
|
|
114
|
+
"@storybook/addon-essentials": "^7.0.21",
|
|
115
|
+
"@storybook/addon-interactions": "^7.0.21",
|
|
116
|
+
"@storybook/addon-jest": "^7.0.21",
|
|
117
|
+
"@storybook/addon-links": "^7.0.21",
|
|
118
|
+
"@storybook/addon-styling": "1.3.0",
|
|
119
|
+
"@storybook/blocks": "^7.0.21",
|
|
112
120
|
"@storybook/jest": "^0.1.0",
|
|
113
|
-
"@storybook/test-runner": "^0.
|
|
114
|
-
"@storybook/testing-library": "^0.
|
|
115
|
-
"@storybook/web-components": "^7.
|
|
116
|
-
"@storybook/web-components-vite": "^7.
|
|
121
|
+
"@storybook/test-runner": "^0.11.0",
|
|
122
|
+
"@storybook/testing-library": "^0.2.0",
|
|
123
|
+
"@storybook/web-components": "^7.0.21",
|
|
124
|
+
"@storybook/web-components-vite": "^7.0.21",
|
|
117
125
|
"@tailwindcss/typography": "^0.5.9",
|
|
118
|
-
"@types/node": "^20.1
|
|
119
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
126
|
+
"@types/node": "^20.3.1",
|
|
127
|
+
"@typescript-eslint/eslint-plugin": "^5.60.0",
|
|
120
128
|
"autoprefixer": "^10.4.14",
|
|
121
129
|
"cem-plugin-vs-code-custom-data-generator": "^1.4.1",
|
|
122
|
-
"esbuild-sass-plugin": "^2.
|
|
123
|
-
"eslint": "^8.
|
|
124
|
-
"eslint-plugin-import": "^2.27.
|
|
125
|
-
"eslint-plugin-jest": "^27.2.
|
|
126
|
-
"eslint-plugin-lit": "^1.8.
|
|
127
|
-
"eslint-plugin-lit-a11y": "^
|
|
130
|
+
"esbuild-sass-plugin": "^2.10.0",
|
|
131
|
+
"eslint": "^8.43.0",
|
|
132
|
+
"eslint-plugin-import": "^2.27.5",
|
|
133
|
+
"eslint-plugin-jest": "^27.2.2",
|
|
134
|
+
"eslint-plugin-lit": "^1.8.3",
|
|
135
|
+
"eslint-plugin-lit-a11y": "^3.0.0",
|
|
128
136
|
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
|
|
129
137
|
"eslint-plugin-storybook": "^0.6.12",
|
|
130
|
-
"eslint-plugin-wc": "^1.
|
|
138
|
+
"eslint-plugin-wc": "^1.5.0",
|
|
131
139
|
"html-to-image": "^1.11.11",
|
|
132
|
-
"jest-environment-jsdom": "^
|
|
140
|
+
"jest-environment-jsdom": "^29.5.0",
|
|
133
141
|
"nodemon": "^2.0.22",
|
|
134
|
-
"postcss": "^8.4.
|
|
142
|
+
"postcss": "^8.4.24",
|
|
135
143
|
"postcss-import": "^15.1.0",
|
|
136
|
-
"postcss-nesting": "^11.
|
|
137
|
-
"prettier": "2.8.
|
|
138
|
-
"prettier-plugin-tailwindcss": "^0.
|
|
144
|
+
"postcss-nesting": "^11.3.0",
|
|
145
|
+
"prettier": "2.8.8",
|
|
146
|
+
"prettier-plugin-tailwindcss": "^0.3.0",
|
|
139
147
|
"react": "^18.2.0",
|
|
140
148
|
"react-dom": "^18.2.0",
|
|
141
|
-
"sass": "^1.
|
|
142
|
-
"storybook": "^7.
|
|
143
|
-
"storybook-addon-pseudo-states": "^2.0
|
|
149
|
+
"sass": "^1.63.6",
|
|
150
|
+
"storybook": "^7.0.21",
|
|
151
|
+
"storybook-addon-pseudo-states": "^2.1.0",
|
|
144
152
|
"tailwindcss": "^3.3.2",
|
|
145
|
-
"ts-jest": "^
|
|
153
|
+
"ts-jest": "^29.1.0",
|
|
146
154
|
"ts-node": "^10.9.1",
|
|
147
|
-
"tsup": "^
|
|
148
|
-
"typescript": "^
|
|
149
|
-
"vite": "^4.
|
|
155
|
+
"tsup": "^7.0.0",
|
|
156
|
+
"typescript": "^5.1.3",
|
|
157
|
+
"vite": "^4.3.9",
|
|
150
158
|
"np": "^8.0.4"
|
|
151
159
|
},
|
|
152
160
|
"customElements": "custom-elements.json"
|