@instructure/platform-assignment-review 0.4.9 → 0.4.10

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/index.js +10 -0
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -739,6 +739,13 @@ const vi = /* @__PURE__ */ new Set([
739
739
  "border-style",
740
740
  "border-width",
741
741
  "border-radius",
742
+ // Chrome's CSSOM expands border-radius to these four longhands when iterating
743
+ // element.style — the shorthand itself never appears in the iterator, so the
744
+ // hook would strip all four corners unless they are explicitly listed here.
745
+ "border-top-left-radius",
746
+ "border-top-right-radius",
747
+ "border-bottom-right-radius",
748
+ "border-bottom-left-radius",
742
749
  "border-collapse",
743
750
  "border-spacing",
744
751
  "border-top",
@@ -763,6 +770,9 @@ const vi = /* @__PURE__ */ new Set([
763
770
  "outline-color",
764
771
  "outline-style",
765
772
  "outline-width",
773
+ // outline-offset is not part of the `outline` shorthand, so it must be listed
774
+ // separately or it is stripped when authored on its own (focus-ring styling).
775
+ "outline-offset",
766
776
  // list
767
777
  "list-style",
768
778
  "list-style-image",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instructure/platform-assignment-review",
3
- "version": "0.4.9",
3
+ "version": "0.4.10",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",
@@ -39,7 +39,7 @@
39
39
  "graphql": "^16.0.0",
40
40
  "graphql-tag": "^2.12.0",
41
41
  "zod": "^3.23.8",
42
- "@instructure/platform-sanitize": "0.3.12"
42
+ "@instructure/platform-sanitize": "0.3.13"
43
43
  },
44
44
  "devDependencies": {
45
45
  "@testing-library/jest-dom": "^6.9.1",