Skip to content

Commit

Permalink
[Bump] Bump jsonld-utils package
Browse files Browse the repository at this point in the history
  • Loading branch information
LaChope committed Jan 10, 2024
1 parent 099f09b commit bdb3c5e
Show file tree
Hide file tree
Showing 19 changed files with 1,769 additions and 2,071 deletions.
3,804 changes: 1,751 additions & 2,053 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"intelligent-tree-select": "^0.11.1",
"javascript-time-ago": "^2.3.8",
"jsonld": "^0.4.12",
"jsonld-utils": "https://kbss.felk.cvut.cz/dist/jsonld-utils-0.0.11.tgz",
"jsonld-utils": "https://kbss.felk.cvut.cz/dist/jsonld-utils-0.1.2.tgz",
"microbundle": "^0.14.2",
"npm-packlist": "^7.0.2",
"prop-types": "^15.7.2",
Expand Down
2 changes: 1 addition & 1 deletion src/components/Answer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import PropTypes from "prop-types";
import CheckboxAnswer from "./answer/CheckboxAnswer";
import DateTimeAnswer from "./answer/DateTimeAnswer";
import InputAnswer from "./answer/InputAnswer";
import JsonldUtils from "jsonld-utils";
import * as JsonldUtils from "jsonld-utils";
import MaskedInputAnswer from "./answer/MaskedInputAnswer";
import SelectAnswer from "./answer/SelectAnswer";
import FormUtils from "../util/FormUtils";
Expand Down
2 changes: 1 addition & 1 deletion src/components/Question.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from "react";
import { Card, Accordion } from "react-bootstrap";
import JsonLdUtils from "jsonld-utils";
import * as JsonLdUtils from "jsonld-utils";
import PropTypes from "prop-types";
import Answer from "./Answer";
import Constants from "../constants/Constants";
Expand Down
2 changes: 1 addition & 1 deletion src/components/QuestionStatic.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import Constants from "../constants/Constants.js";
import HelpIcon from "./HelpIcon.jsx";
import LinkIcon from "./LinkIcon.jsx";
import QuestionCommentIcon from "./comment/QuestionCommentIcon.jsx";
import JsonLdUtils from "jsonld-utils";
import * as JsonLdUtils from "jsonld-utils";

export default class QuestionStatic {
static renderIcons(question, options, onCommentChange, showIcon) {
Expand Down
2 changes: 1 addition & 1 deletion src/components/answer/InputAnswer.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { useContext } from "react";
import JsonLdUtils from "jsonld-utils";
import * as JsonLdUtils from "jsonld-utils";
import PropTypes from "prop-types";
import Constants from "../../constants/Constants";
import FormUtils from "../../util/FormUtils";
Expand Down
2 changes: 1 addition & 1 deletion src/components/answer/MaskedInputAnswer.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { useContext } from "react";
import JsonLdUtils from "jsonld-utils";
import * as JsonLdUtils from "jsonld-utils";
import PropTypes from "prop-types";

import Constants from "../../constants/Constants";
Expand Down
2 changes: 1 addition & 1 deletion src/components/answer/SelectAnswer.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from "react";
import JsonLdUtils from "jsonld-utils";
import * as JsonLdUtils from "jsonld-utils";
import PropTypes from "prop-types";

import Constants from "../../constants/Constants";
Expand Down
2 changes: 1 addition & 1 deletion src/components/answer/TypeaheadAnswer.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { useState, useEffect, useContext } from "react";
import JsonLdUtils from "jsonld-utils";
import * as JsonLdUtils from "jsonld-utils";
import PropTypes from "prop-types";
import Constants from "../../constants/Constants";
import FormUtils from "../../util/FormUtils";
Expand Down
2 changes: 1 addition & 1 deletion src/components/wizard/HorizontalWizardNav.jsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, { useContext } from "react";
import { Nav, NavItem, NavLink, Card } from "react-bootstrap";
import PropTypes from "prop-types";
import JsonLdUtils from "jsonld-utils";
import * as JsonLdUtils from "jsonld-utils";
import FormUtils from "../../util/FormUtils";
import { ConfigurationContext } from "../../contexts/ConfigurationContext";
import Question from "../Question";
Expand Down
2 changes: 1 addition & 1 deletion src/components/wizard/VerticalWizardNav.jsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, { useContext } from "react";
import { ListGroup, ListGroupItem } from "react-bootstrap";
import PropTypes from "prop-types";
import JsonLdUtils from "jsonld-utils";
import * as JsonLdUtils from "jsonld-utils";
import { ConfigurationContext } from "../../contexts/ConfigurationContext";
import FormUtils from "../../util/FormUtils";
import Question from "../Question";
Expand Down
2 changes: 1 addition & 1 deletion src/constants/Constants.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import JsonLdUtils from "jsonld-utils";
import * as JsonLdUtils from "jsonld-utils";

export default class Constants {
// Default bootstrap column count
Expand Down
2 changes: 1 addition & 1 deletion src/model/QuestionAnswerProcessor.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import JsonLdUtils from "jsonld-utils";
import * as JsonLdUtils from "jsonld-utils";
import Constants from "../constants/Constants";

export default class QuestionAnswerProcessor {
Expand Down
2 changes: 1 addition & 1 deletion src/model/ValidatorFactory.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Created by blcha on 4.11.16.
*/

import JsonLdUtils from "jsonld-utils";
import * as JsonLdUtils from "jsonld-utils";

import Constants from "../constants/Constants";
import FormUtils from "../util/FormUtils";
Expand Down
2 changes: 1 addition & 1 deletion src/util/FormUtils.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import JsonLdUtils from "jsonld-utils";
import * as JsonLdUtils from "jsonld-utils";
import jsonld from "jsonld";

import Constants from "../constants/Constants";
Expand Down
2 changes: 1 addition & 1 deletion src/util/JsonLdObjectUtils.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import jsonld from "jsonld";
import JsonLdUtils from "jsonld-utils";
import * as JsonLdUtils from "jsonld-utils";
import Utils from "./Utils";
import tsort from "tsort";

Expand Down
2 changes: 1 addition & 1 deletion test/__tests__/MaskedInputAnswer.test.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from "react";
import JsonLdUtils from "jsonld-utils";
import * as JsonLdUtils from "jsonld-utils";

import Answer from "../../src/components/Answer";
import Constants from "../../src/constants/Constants";
Expand Down
2 changes: 1 addition & 1 deletion test/__tests__/TypeheadAnswer.test.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from "react";
import JsonLdUtils from "jsonld-utils";
import * as JsonLdUtils from "jsonld-utils";

import * as Generator from "../environment/Generator";
import Constants from "../../src/constants/Constants";
Expand Down
2 changes: 1 addition & 1 deletion test/environment/Generator.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import JsonLdUtils from "jsonld-utils";
import * as JsonLdUtils from "jsonld-utils";

const _uriBase = "http://onto.fel.cvut.cz/ontologies/forms";

Expand Down

0 comments on commit bdb3c5e

Please sign in to comment.