@gitlab/ui 122.2.0 → 122.3.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gitlab/ui",
3
- "version": "122.2.0",
3
+ "version": "122.3.0",
4
4
  "description": "GitLab UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -165,10 +165,10 @@
165
165
  "rollup-plugin-string": "^3.0.0",
166
166
  "rollup-plugin-svg": "^2.0.0",
167
167
  "rollup-plugin-vue": "^5.1.9",
168
- "sass": "^1.91.0",
168
+ "sass": "^1.92.0",
169
169
  "sass-loader": "^10.5.2",
170
170
  "sass-true": "^9",
171
- "start-server-and-test": "^2.0.13",
171
+ "start-server-and-test": "^2.1.0",
172
172
  "storybook": "^7.6.20",
173
173
  "storybook-dark-mode": "4.0.2",
174
174
  "style-dictionary": "^5.0.4",
@@ -32,7 +32,7 @@ export default {
32
32
  * The current value of the checkbox(es). Must be an array when there are multiple checkboxes bound to the same v-model.
33
33
  */
34
34
  checked: {
35
- type: [Array, Boolean, String],
35
+ type: undefined,
36
36
  required: false,
37
37
  default: null,
38
38
  },
@@ -78,8 +78,8 @@ const tailwindCQsMQsPlugin = (buildCQs = false) =>
78
78
 
79
79
  matchVariant(
80
80
  ...buildVariantMatcher('@max', {
81
- cqBuilder: (modifier, value) => `@container ${modifier ?? ''} (max-width: ${value})`,
82
- mqBuilder: (value) => `@media (max-width: ${value})`,
81
+ cqBuilder: (modifier, value) => `@container ${modifier ?? ''} (width < ${value})`,
82
+ mqBuilder: (value) => `@media (width < ${value})`,
83
83
  }),
84
84
  );
85
85
  },