@citolab/qti-components 6.7.1-37 → 6.7.1-39

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.
Files changed (2) hide show
  1. package/dist/item.css +4 -0
  2. package/package.json +2 -1
package/dist/item.css CHANGED
@@ -949,6 +949,8 @@ qti-response-declaration {
949
949
 
950
950
  .italic{font-style:italic;}
951
951
 
952
+ .antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;}
953
+
952
954
  .shadow{--qti-shadow:var(--qti-shadow-inset) 0 1px 3px 0 var(--qti-shadow-color, rgb(0 0 0 / 0.1)),var(--qti-shadow-inset) 0 1px 2px -1px var(--qti-shadow-color, rgb(0 0 0 / 0.1));box-shadow:var(--qti-ring-offset-shadow), var(--qti-ring-shadow), var(--qti-shadow);}
953
955
 
954
956
  .flex{display:flex;}
@@ -1039,6 +1041,8 @@ qti-response-declaration {
1039
1041
 
1040
1042
  .transform{transform:translateX(var(--qti-translate-x)) translateY(var(--qti-translate-y)) translateZ(var(--qti-translate-z)) rotate(var(--qti-rotate)) rotateX(var(--qti-rotate-x)) rotateY(var(--qti-rotate-y)) rotateZ(var(--qti-rotate-z)) skewX(var(--qti-skew-x)) skewY(var(--qti-skew-y)) scaleX(var(--qti-scale-x)) scaleY(var(--qti-scale-y)) scaleZ(var(--qti-scale-z));}
1041
1043
 
1044
+ .text-wrap{text-wrap:wrap;}
1045
+
1042
1046
  .chevron{background:url("data:image/svg+xml,%3Csvg fill='currentColor' width='22' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' aria-hidden='true'%3E%3Cpath clip-rule='evenodd' fill-rule='evenodd' d='M5.23 7.21a.75.75 0 011.06.02L10 11.168l3.71-3.938a.75.75 0 111.08 1.04l-4.25 4.5a.75.75 0 01-1.08 0l-4.25-4.5a.75.75 0 01.02-1.06z'%3E%3C/path%3E%3C/svg%3E") no-repeat center right 6px;}
1043
1047
 
1044
1048
  .handle{background-image:
package/package.json CHANGED
@@ -12,7 +12,7 @@
12
12
  "engines": {
13
13
  "node": ">=20.0.0"
14
14
  },
15
- "version": "6.7.1-37",
15
+ "version": "6.7.1-39",
16
16
  "type": "module",
17
17
  "exports": {
18
18
  "./qti-components": "./dist/qti-components/index.js",
@@ -38,6 +38,7 @@
38
38
  "scripts": {
39
39
  "test": "vitest",
40
40
  "test-browser": "vitest --browser.name=chrome",
41
+ "dev": "vite",
41
42
  "build": "wireit",
42
43
  "build-lib": "tsx scripts/build.ts",
43
44
  "watch-lib": "nodemon --watch \"src/**\" --ext \"ts,json,css\" --ignore \"src/**/*.spec.ts\" --exec \"tsx scripts/build.ts\" watch",