@openedx/paragon 23.4.2 → 23.4.4

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/lib/build-scss.js CHANGED
@@ -100,7 +100,7 @@ const compileAndWriteStyleSheets = ({
100
100
  const commonPostCssPlugins = [
101
101
  postCSSImport(),
102
102
  postCSSCustomMedia({ preserve: true }),
103
- combineSelectors({ removeDuplicatedProperties: true }),
103
+ combineSelectors({ removeDuplicatedValues: true }),
104
104
  ];
105
105
 
106
106
  const postCSSCompilation = ora(`Compilation for ${capitalize(name)} stylesheet...`).start();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openedx/paragon",
3
- "version": "23.4.2",
3
+ "version": "23.4.4",
4
4
  "description": "Accessible, responsive UI component library based on Bootstrap.",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",
@@ -412,7 +412,6 @@ select.form-control {
412
412
  border:
413
413
  solid var(--pgn-size-form-control-indicator-border-width)
414
414
  var(--pgn-color-form-control-indicator-border);
415
- border-radius: var(--pgn-size-form-control-border-checkbox-indicator-radius) radius;
416
415
  margin-inline-end: var(--pgn-spacing-form-control-gutter);
417
416
  background-position: center;
418
417
 
@@ -434,6 +433,8 @@ select.form-control {
434
433
  }
435
434
 
436
435
  .pgn__form-checkbox-input {
436
+ border-radius: var(--pgn-size-form-control-border-checkbox-indicator-radius);
437
+
437
438
  &:checked {
438
439
  background-image: var(--pgn-other-content-form-control-checkbox-indicator-icon-checked-base);
439
440
  }