@yungu-fed/question-editor 0.1.2 → 0.1.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.
- package/dist/index.css +1 -1
- package/dist/index.d.ts +10 -6
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +6781 -1952
- package/dist/index.mjs +5377 -1565
- package/dist/model/classification.d.ts +10 -0
- package/dist/model/classification.d.ts.map +1 -0
- package/dist/model/line-connect.d.ts +28 -0
- package/dist/model/line-connect.d.ts.map +1 -0
- package/dist/model/matching.d.ts +27 -0
- package/dist/model/matching.d.ts.map +1 -0
- package/dist/model/question-element-specs.d.ts +3 -3
- package/dist/model/question-element-specs.d.ts.map +1 -1
- package/dist/model/question-structure.d.ts +56 -3
- package/dist/model/question-structure.d.ts.map +1 -1
- package/dist/model/rich-text-blank.d.ts.map +1 -1
- package/dist/model/text-marker.d.ts +18 -0
- package/dist/model/text-marker.d.ts.map +1 -0
- package/dist/model/types.d.ts +143 -8
- package/dist/model/types.d.ts.map +1 -1
- package/dist/question/content-editor/QuestionContentClassificationEditor.d.ts +14 -0
- package/dist/question/content-editor/QuestionContentClassificationEditor.d.ts.map +1 -0
- package/dist/question/content-editor/QuestionContentEditor.d.ts +3 -1
- package/dist/question/content-editor/QuestionContentEditor.d.ts.map +1 -1
- package/dist/question/content-editor/QuestionContentElementEditor.d.ts.map +1 -1
- package/dist/question/content-editor/QuestionContentLineConnectEditor.d.ts +15 -0
- package/dist/question/content-editor/QuestionContentLineConnectEditor.d.ts.map +1 -0
- package/dist/question/content-editor/QuestionContentMatchingEditor.d.ts +15 -0
- package/dist/question/content-editor/QuestionContentMatchingEditor.d.ts.map +1 -0
- package/dist/question/content-editor/QuestionContentOrderingEditor.d.ts +14 -0
- package/dist/question/content-editor/QuestionContentOrderingEditor.d.ts.map +1 -0
- package/dist/question/content-editor/QuestionContentSubquestionChildEditor.d.ts.map +1 -1
- package/dist/question/content-editor/QuestionContentTextMarkerEditor.d.ts +14 -0
- package/dist/question/content-editor/QuestionContentTextMarkerEditor.d.ts.map +1 -0
- package/dist/question/content-editor/QuestionContentWordBuilderEditor.d.ts +16 -0
- package/dist/question/content-editor/QuestionContentWordBuilderEditor.d.ts.map +1 -0
- package/dist/question/content-editor/QuestionRichTextField.d.ts.map +1 -1
- package/dist/question/content-editor/helpers.d.ts +41 -5
- package/dist/question/content-editor/helpers.d.ts.map +1 -1
- package/dist/question/content-editor/i18n.d.ts.map +1 -1
- package/dist/question/content-editor/structure.d.ts +3 -2
- package/dist/question/content-editor/structure.d.ts.map +1 -1
- package/dist/question/content-editor/subquestion-template.d.ts +4 -0
- package/dist/question/content-editor/subquestion-template.d.ts.map +1 -0
- package/dist/question/content-editor/types.d.ts +156 -10
- package/dist/question/content-editor/types.d.ts.map +1 -1
- package/dist/question/elements/text-marker/text-marker-plugin.d.ts +3 -0
- package/dist/question/elements/text-marker/text-marker-plugin.d.ts.map +1 -0
- package/dist/question/i18n/messages.d.ts +5 -0
- package/dist/question/i18n/messages.d.ts.map +1 -1
- package/dist/question/line-connect/lineConnectLines.d.ts +37 -0
- package/dist/question/line-connect/lineConnectLines.d.ts.map +1 -0
- package/dist/question/player/QuestionBlankGroupPlayer.d.ts.map +1 -1
- package/dist/question/player/QuestionClassificationPlayer.d.ts +14 -0
- package/dist/question/player/QuestionClassificationPlayer.d.ts.map +1 -0
- package/dist/question/player/QuestionFillTextContentPlayer.d.ts.map +1 -1
- package/dist/question/player/QuestionLineConnectPlayer.d.ts +14 -0
- package/dist/question/player/QuestionLineConnectPlayer.d.ts.map +1 -0
- package/dist/question/player/QuestionMatchingPlayer.d.ts +14 -0
- package/dist/question/player/QuestionMatchingPlayer.d.ts.map +1 -0
- package/dist/question/player/QuestionOptionGroupPlayer.d.ts.map +1 -1
- package/dist/question/player/QuestionOrderingPlayer.d.ts +14 -0
- package/dist/question/player/QuestionOrderingPlayer.d.ts.map +1 -0
- package/dist/question/player/QuestionPlayerComposite.d.ts.map +1 -1
- package/dist/question/player/QuestionPlayerElement.d.ts.map +1 -1
- package/dist/question/player/QuestionTextMarkerPlayer.d.ts +14 -0
- package/dist/question/player/QuestionTextMarkerPlayer.d.ts.map +1 -0
- package/dist/question/player/QuestionWordBuilderPlayer.d.ts +15 -0
- package/dist/question/player/QuestionWordBuilderPlayer.d.ts.map +1 -0
- package/dist/question/player/helpers.d.ts +13 -2
- package/dist/question/player/helpers.d.ts.map +1 -1
- package/dist/question/player/types.d.ts +32 -2
- package/dist/question/player/types.d.ts.map +1 -1
- package/dist/question/preview/QuestionCompositePreview.d.ts.map +1 -1
- package/dist/question/renderers/QuestionBlankGroupView.d.ts.map +1 -1
- package/dist/question/renderers/QuestionClassificationView.d.ts +10 -0
- package/dist/question/renderers/QuestionClassificationView.d.ts.map +1 -0
- package/dist/question/renderers/QuestionContentElementView.d.ts.map +1 -1
- package/dist/question/renderers/QuestionLineConnectView.d.ts +10 -0
- package/dist/question/renderers/QuestionLineConnectView.d.ts.map +1 -0
- package/dist/question/renderers/QuestionMatchingView.d.ts +10 -0
- package/dist/question/renderers/QuestionMatchingView.d.ts.map +1 -0
- package/dist/question/renderers/QuestionOptionGroupView.d.ts.map +1 -1
- package/dist/question/renderers/QuestionOrderingView.d.ts +10 -0
- package/dist/question/renderers/QuestionOrderingView.d.ts.map +1 -0
- package/dist/question/renderers/QuestionRichContentView.d.ts.map +1 -1
- package/dist/question/renderers/QuestionRichContentWithBlankView.d.ts +14 -0
- package/dist/question/renderers/QuestionRichContentWithBlankView.d.ts.map +1 -0
- package/dist/question/renderers/QuestionTextMarkerContent.d.ts +12 -0
- package/dist/question/renderers/QuestionTextMarkerContent.d.ts.map +1 -0
- package/dist/question/renderers/QuestionTextMarkerView.d.ts +10 -0
- package/dist/question/renderers/QuestionTextMarkerView.d.ts.map +1 -0
- package/dist/question/renderers/QuestionWordBuilderView.d.ts +11 -0
- package/dist/question/renderers/QuestionWordBuilderView.d.ts.map +1 -0
- package/dist/question/renderers/classificationAnswers.d.ts +4 -0
- package/dist/question/renderers/classificationAnswers.d.ts.map +1 -0
- package/dist/question/renderers/lineConnectAnswers.d.ts +4 -0
- package/dist/question/renderers/lineConnectAnswers.d.ts.map +1 -0
- package/dist/question/renderers/matchingAnswers.d.ts +4 -0
- package/dist/question/renderers/matchingAnswers.d.ts.map +1 -0
- package/dist/question/renderers/optionGroupAnswers.d.ts +4 -0
- package/dist/question/renderers/optionGroupAnswers.d.ts.map +1 -0
- package/dist/question/renderers/orderingAnswerGroups.d.ts +4 -0
- package/dist/question/renderers/orderingAnswerGroups.d.ts.map +1 -0
- package/dist/question/renderers/wordBuilderAnswers.d.ts +4 -0
- package/dist/question/renderers/wordBuilderAnswers.d.ts.map +1 -0
- package/dist/question/rich-text/RichTextField.d.ts +3 -2
- package/dist/question/rich-text/RichTextField.d.ts.map +1 -1
- package/dist/question/structure-editor/QuestionStructureCanvas.d.ts +2 -2
- package/dist/question/structure-editor/QuestionStructureCanvas.d.ts.map +1 -1
- package/dist/question/structure-editor/QuestionStructureEditor.d.ts.map +1 -1
- package/dist/question/structure-editor/QuestionStructureSettings.d.ts +6 -3
- package/dist/question/structure-editor/QuestionStructureSettings.d.ts.map +1 -1
- package/dist/question/structure-editor/structure-editor-labels.d.ts +22 -2
- package/dist/question/structure-editor/structure-editor-labels.d.ts.map +1 -1
- package/package.json +2 -2
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"QuestionStructureSettings.d.ts","sourceRoot":"","sources":["../../../src/question/structure-editor/QuestionStructureSettings.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAEV,6BAA6B,EAC7B,2BAA2B,EAC3B,6BAA6B,
|
|
1
|
+
{"version":3,"file":"QuestionStructureSettings.d.ts","sourceRoot":"","sources":["../../../src/question/structure-editor/QuestionStructureSettings.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAEV,6BAA6B,EAC7B,2BAA2B,EAC3B,6BAA6B,EAG7B,yBAAyB,EAK1B,MAAM,gCAAgC,CAAA;AACvC,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,2BAA2B,CAAA;AAiCxE,MAAM,MAAM,8BAA8B,GAAG;IAC3C,QAAQ,CAAC,WAAW,CAAC,EAAE,MAAM,CAAA;IAC7B,QAAQ,CAAC,YAAY,EAAE,6BAA6B,CAAA;IACpD,QAAQ,CAAC,YAAY,EAAE,OAAO,CAAA;IAC9B,QAAQ,CAAC,MAAM,EAAE,uBAAuB,CAAA;IACxC,QAAQ,CAAC,eAAe,EAAE,CAAC,OAAO,EAAE,6BAA6B,KAAK,IAAI,CAAA;IAC1E,QAAQ,CAAC,aAAa,EAAE,CAAC,MAAM,EAAE,2BAA2B,KAAK,IAAI,CAAA;IACrE,QAAQ,CAAC,oBAAoB,EAAE,CAC7B,KAAK,EAAE,OAAO,CAAC,6BAA6B,CAAC,KAC1C,IAAI,CAAA;IACT,QAAQ,CAAC,gBAAgB,EAAE,CAAC,KAAK,EAAE,OAAO,CAAC,yBAAyB,CAAC,KAAK,IAAI,CAAA;IAC9E,QAAQ,CAAC,aAAa,EAAE,IAAI,GAAG,2BAA2B,CAAA;IAC1D,QAAQ,CAAC,eAAe,EAAE,IAAI,GAAG,6BAA6B,CAAA;CAC/D,CAAA;AAED,wBAAgB,yBAAyB,CAAC,EACxC,WAAW,EACX,YAAY,EACZ,YAAY,EACZ,MAAM,EACN,eAAe,EACf,aAAa,EACb,oBAAoB,EACpB,gBAAgB,EAChB,aAAa,EACb,eAAe,GAChB,EAAE,8BAA8B,eAyFhC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { QuestionStructureCandidateMode, QuestionStructureElementType, QuestionStructureExtraKey, QuestionStructureJudgeAnswerMode, QuestionStructureOptionLabelStyle, QuestionStructureOptionRenderer, QuestionStructureSelectionType } from "../../model/question-structure";
|
|
1
|
+
import type { QuestionStructureCandidateMode, QuestionStructureElementType, QuestionStructureExtraKey, QuestionStructureJudgeAnswerMode, QuestionStructureLineConnectLabelStyle, QuestionStructureOptionLabelStyle, QuestionStructureOptionRenderer, QuestionStructureSelectionType, QuestionStructureWordBuilderMode } from "../../model/question-structure";
|
|
2
2
|
import type { QuestionLocale } from "../i18n";
|
|
3
3
|
export type QuestionStructureLabels = {
|
|
4
4
|
readonly addElement: string;
|
|
@@ -8,7 +8,10 @@ export type QuestionStructureLabels = {
|
|
|
8
8
|
readonly blankGroupLabel: string;
|
|
9
9
|
readonly canPrint: string;
|
|
10
10
|
readonly candidateMode: string;
|
|
11
|
+
readonly candidateModeValueLabels: ReadonlyMap<QuestionStructureCandidateMode, string>;
|
|
11
12
|
readonly canvas: string;
|
|
13
|
+
readonly classificationDescription: string;
|
|
14
|
+
readonly classificationLabel: string;
|
|
12
15
|
readonly confirmDelete: string;
|
|
13
16
|
readonly deleteElement: string;
|
|
14
17
|
readonly elementCount: (count: number) => string;
|
|
@@ -23,17 +26,28 @@ export type QuestionStructureLabels = {
|
|
|
23
26
|
readonly fillTextLabel: string;
|
|
24
27
|
readonly globalSettings: string;
|
|
25
28
|
readonly hasAnswer: string;
|
|
29
|
+
readonly isSubjective: string;
|
|
26
30
|
readonly judgementGroupDescription: string;
|
|
27
31
|
readonly judgementGroupLabel: string;
|
|
28
32
|
readonly judgeAnswerMode: string;
|
|
33
|
+
readonly lineConnectColumnCount: string;
|
|
34
|
+
readonly lineConnectColumnLabel: (index: number) => string;
|
|
35
|
+
readonly lineConnectDescription: string;
|
|
36
|
+
readonly lineConnectLabelStyleLabels: ReadonlyMap<QuestionStructureLineConnectLabelStyle, string>;
|
|
37
|
+
readonly lineConnectLabel: string;
|
|
38
|
+
readonly matchingDescription: string;
|
|
39
|
+
readonly matchingLabel: string;
|
|
29
40
|
readonly moveDown: string;
|
|
30
41
|
readonly moveUp: string;
|
|
31
42
|
readonly noElement: string;
|
|
43
|
+
readonly orderingDescription: string;
|
|
44
|
+
readonly orderingLabel: string;
|
|
32
45
|
readonly optionGroupDescription: string;
|
|
33
46
|
readonly optionGroupLabel: string;
|
|
34
47
|
readonly optionLabelStyle: string;
|
|
35
48
|
readonly optionValueLabels: ReadonlyMap<QuestionStructureOptionValue, string>;
|
|
36
49
|
readonly palette: string;
|
|
50
|
+
readonly practiceMode: string;
|
|
37
51
|
readonly description: string;
|
|
38
52
|
readonly renderer: string;
|
|
39
53
|
readonly richTextDescription: string;
|
|
@@ -41,8 +55,12 @@ export type QuestionStructureLabels = {
|
|
|
41
55
|
readonly selectionType: string;
|
|
42
56
|
readonly structureEnName: string;
|
|
43
57
|
readonly structureName: string;
|
|
58
|
+
readonly textMarkerDescription: string;
|
|
59
|
+
readonly textMarkerLabel: string;
|
|
60
|
+
readonly wordBuilderDescription: string;
|
|
61
|
+
readonly wordBuilderLabel: string;
|
|
44
62
|
};
|
|
45
|
-
export type QuestionStructureOptionValue = QuestionStructureCandidateMode | QuestionStructureJudgeAnswerMode | QuestionStructureOptionLabelStyle |
|
|
63
|
+
export type QuestionStructureOptionValue = QuestionStructureCandidateMode | QuestionStructureJudgeAnswerMode | QuestionStructureOptionRenderer | QuestionStructureOptionLabelStyle | QuestionStructureSelectionType | QuestionStructureWordBuilderMode;
|
|
46
64
|
export declare const questionStructureLabels: Record<QuestionLocale, QuestionStructureLabels>;
|
|
47
65
|
export declare function getQuestionStructureExtraDescription(labels: QuestionStructureLabels, key: QuestionStructureExtraKey): string;
|
|
48
66
|
export declare function getQuestionStructureExtraLabel(labels: QuestionStructureLabels, key: QuestionStructureExtraKey): string;
|
|
@@ -50,4 +68,6 @@ export declare function getQuestionStructureLabels(locale: QuestionLocale): Ques
|
|
|
50
68
|
export declare function getQuestionStructureElementDescription(labels: QuestionStructureLabels, type: QuestionStructureElementType): string;
|
|
51
69
|
export declare function getQuestionStructureElementLabel(labels: QuestionStructureLabels, type: QuestionStructureElementType): string;
|
|
52
70
|
export declare function getQuestionStructureOptionLabel(labels: QuestionStructureLabels, value: QuestionStructureOptionValue): string;
|
|
71
|
+
export declare function getQuestionStructureCandidateModeLabel(labels: QuestionStructureLabels, value: QuestionStructureCandidateMode): string;
|
|
72
|
+
export declare function getQuestionStructureLineConnectLabelStyleLabel(labels: QuestionStructureLabels, value: QuestionStructureLineConnectLabelStyle): string;
|
|
53
73
|
//# sourceMappingURL=structure-editor-labels.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"structure-editor-labels.d.ts","sourceRoot":"","sources":["../../../src/question/structure-editor/structure-editor-labels.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,8BAA8B,EAC9B,4BAA4B,EAC5B,yBAAyB,EACzB,gCAAgC,EAChC,iCAAiC,EACjC,+BAA+B,EAC/B,8BAA8B,
|
|
1
|
+
{"version":3,"file":"structure-editor-labels.d.ts","sourceRoot":"","sources":["../../../src/question/structure-editor/structure-editor-labels.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,8BAA8B,EAC9B,4BAA4B,EAC5B,yBAAyB,EACzB,gCAAgC,EAChC,sCAAsC,EACtC,iCAAiC,EACjC,+BAA+B,EAC/B,8BAA8B,EAC9B,gCAAgC,EACjC,MAAM,gCAAgC,CAAA;AACvC,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,SAAS,CAAA;AAE7C,MAAM,MAAM,uBAAuB,GAAG;IACpC,QAAQ,CAAC,UAAU,EAAE,MAAM,CAAA;IAC3B,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAA;IACzB,QAAQ,CAAC,mBAAmB,EAAE,MAAM,CAAA;IACpC,QAAQ,CAAC,qBAAqB,EAAE,MAAM,CAAA;IACtC,QAAQ,CAAC,eAAe,EAAE,MAAM,CAAA;IAChC,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAA;IACzB,QAAQ,CAAC,aAAa,EAAE,MAAM,CAAA;IAC9B,QAAQ,CAAC,wBAAwB,EAAE,WAAW,CAC5C,8BAA8B,EAC9B,MAAM,CACP,CAAA;IACD,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAA;IACvB,QAAQ,CAAC,yBAAyB,EAAE,MAAM,CAAA;IAC1C,QAAQ,CAAC,mBAAmB,EAAE,MAAM,CAAA;IACpC,QAAQ,CAAC,aAAa,EAAE,MAAM,CAAA;IAC9B,QAAQ,CAAC,aAAa,EAAE,MAAM,CAAA;IAC9B,QAAQ,CAAC,YAAY,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,MAAM,CAAA;IAChD,QAAQ,CAAC,WAAW,EAAE,MAAM,CAAA;IAC5B,QAAQ,CAAC,aAAa,EAAE,MAAM,CAAA;IAC9B,QAAQ,CAAC,eAAe,EAAE,MAAM,CAAA;IAChC,QAAQ,CAAC,iBAAiB,EAAE,WAAW,CAAC,yBAAyB,EAAE,MAAM,CAAC,CAAA;IAC1E,QAAQ,CAAC,WAAW,EAAE,WAAW,CAAC,yBAAyB,EAAE,MAAM,CAAC,CAAA;IACpE,QAAQ,CAAC,aAAa,EAAE,MAAM,CAAA;IAC9B,QAAQ,CAAC,UAAU,EAAE,MAAM,CAAA;IAC3B,QAAQ,CAAC,mBAAmB,EAAE,MAAM,CAAA;IACpC,QAAQ,CAAC,aAAa,EAAE,MAAM,CAAA;IAC9B,QAAQ,CAAC,cAAc,EAAE,MAAM,CAAA;IAC/B,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAA;IAC1B,QAAQ,CAAC,YAAY,EAAE,MAAM,CAAA;IAC7B,QAAQ,CAAC,yBAAyB,EAAE,MAAM,CAAA;IAC1C,QAAQ,CAAC,mBAAmB,EAAE,MAAM,CAAA;IACpC,QAAQ,CAAC,eAAe,EAAE,MAAM,CAAA;IAChC,QAAQ,CAAC,sBAAsB,EAAE,MAAM,CAAA;IACvC,QAAQ,CAAC,sBAAsB,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,MAAM,CAAA;IAC1D,QAAQ,CAAC,sBAAsB,EAAE,MAAM,CAAA;IACvC,QAAQ,CAAC,2BAA2B,EAAE,WAAW,CAC/C,sCAAsC,EACtC,MAAM,CACP,CAAA;IACD,QAAQ,CAAC,gBAAgB,EAAE,MAAM,CAAA;IACjC,QAAQ,CAAC,mBAAmB,EAAE,MAAM,CAAA;IACpC,QAAQ,CAAC,aAAa,EAAE,MAAM,CAAA;IAC9B,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAA;IACzB,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAA;IACvB,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAA;IAC1B,QAAQ,CAAC,mBAAmB,EAAE,MAAM,CAAA;IACpC,QAAQ,CAAC,aAAa,EAAE,MAAM,CAAA;IAC9B,QAAQ,CAAC,sBAAsB,EAAE,MAAM,CAAA;IACvC,QAAQ,CAAC,gBAAgB,EAAE,MAAM,CAAA;IACjC,QAAQ,CAAC,gBAAgB,EAAE,MAAM,CAAA;IACjC,QAAQ,CAAC,iBAAiB,EAAE,WAAW,CAAC,4BAA4B,EAAE,MAAM,CAAC,CAAA;IAC7E,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAA;IACxB,QAAQ,CAAC,YAAY,EAAE,MAAM,CAAA;IAC7B,QAAQ,CAAC,WAAW,EAAE,MAAM,CAAA;IAC5B,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAA;IACzB,QAAQ,CAAC,mBAAmB,EAAE,MAAM,CAAA;IACpC,QAAQ,CAAC,aAAa,EAAE,MAAM,CAAA;IAC9B,QAAQ,CAAC,aAAa,EAAE,MAAM,CAAA;IAC9B,QAAQ,CAAC,eAAe,EAAE,MAAM,CAAA;IAChC,QAAQ,CAAC,aAAa,EAAE,MAAM,CAAA;IAC9B,QAAQ,CAAC,qBAAqB,EAAE,MAAM,CAAA;IACtC,QAAQ,CAAC,eAAe,EAAE,MAAM,CAAA;IAChC,QAAQ,CAAC,sBAAsB,EAAE,MAAM,CAAA;IACvC,QAAQ,CAAC,gBAAgB,EAAE,MAAM,CAAA;CAClC,CAAA;AAED,MAAM,MAAM,4BAA4B,GACpC,8BAA8B,GAC9B,gCAAgC,GAChC,+BAA+B,GAC/B,iCAAiC,GACjC,8BAA8B,GAC9B,gCAAgC,CAAA;AAEpC,eAAO,MAAM,uBAAuB,EAAE,MAAM,CAC1C,cAAc,EACd,uBAAuB,CA4OxB,CAAA;AAED,wBAAgB,oCAAoC,CAClD,MAAM,EAAE,uBAAuB,EAC/B,GAAG,EAAE,yBAAyB,UAG/B;AAED,wBAAgB,8BAA8B,CAC5C,MAAM,EAAE,uBAAuB,EAC/B,GAAG,EAAE,yBAAyB,UAG/B;AAED,wBAAgB,0BAA0B,CAAC,MAAM,EAAE,cAAc,2BAOhE;AAED,wBAAgB,sCAAsC,CACpD,MAAM,EAAE,uBAAuB,EAC/B,IAAI,EAAE,4BAA4B,UAWnC;AA4CD,wBAAgB,gCAAgC,CAC9C,MAAM,EAAE,uBAAuB,EAC/B,IAAI,EAAE,4BAA4B,UAWnC;AASD,wBAAgB,+BAA+B,CAC7C,MAAM,EAAE,uBAAuB,EAC/B,KAAK,EAAE,4BAA4B,UAGpC;AAED,wBAAgB,sCAAsC,CACpD,MAAM,EAAE,uBAAuB,EAC/B,KAAK,EAAE,8BAA8B,UAGtC;AAED,wBAAgB,8CAA8C,CAC5D,MAAM,EAAE,uBAAuB,EAC/B,KAAK,EAAE,sCAAsC,UAG9C"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yungu-fed/question-editor",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.3",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"module": "./dist/index.mjs",
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
},
|
|
69
69
|
"dependencies": {
|
|
70
70
|
"ulid": "^3.0.2",
|
|
71
|
-
"@yungu-fed/rich-text-editor": "^0.1.
|
|
71
|
+
"@yungu-fed/rich-text-editor": "^0.1.3"
|
|
72
72
|
},
|
|
73
73
|
"scripts": {
|
|
74
74
|
"build": "pnpm run typecheck && vite build && tsc -p tsconfig.types.json",
|