@gitlab/ui 48.0.0 → 48.1.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/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ # [48.1.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v48.0.0...v48.1.0) (2022-10-21)
2
+
3
+
4
+ ### Features
5
+
6
+ * Add table utility classes ([2fcde37](https://gitlab.com/gitlab-org/gitlab-ui/commit/2fcde37120ae6f69929d4d7724a78e49ab0cd1ab))
7
+
1
8
  # [48.0.0](https://gitlab.com/gitlab-org/gitlab-ui/compare/v47.0.1...v48.0.0) (2022-10-19)
2
9
 
3
10
 
package/README.md CHANGED
@@ -72,19 +72,19 @@ Go to <http://localhost:9001/>
72
72
  Components’ unit tests live in the `tests/components`. The tests are organized following the same
73
73
  directory structure used to organize components.
74
74
 
75
- `yarn test:unit` runs all unit tests.
75
+ - `yarn test:unit` runs all unit tests.
76
76
 
77
- `yarn test:unit:watch` runs all unit tests in watch mode.
77
+ - `yarn test:unit:watch` runs all unit tests in watch mode.
78
78
 
79
- `yarn test:unit:debug` runs all unit tests and allow to attach a debugger to the test runner process.
79
+ - `yarn test:unit:debug` runs all unit tests and allow to attach a debugger to the test runner process.
80
80
 
81
- `yarn jest [name_pattern]` runs spec files that match the specified name pattern.
81
+ - `yarn jest [name_pattern]` runs spec files that match the specified name pattern.
82
82
 
83
83
  #### Examples
84
84
 
85
- `yarn jest datepicker` will match all spec files with a name that contains the word _datepicker_.
85
+ - `yarn jest datepicker` will match all spec files with a name that contains the word _datepicker_.
86
86
 
87
- `yarn jest datepicker -t "when draw event is emitted"` goes a step further and only runs the test
87
+ - `yarn jest datepicker -t "when draw event is emitted"` goes a step further and only runs the test
88
88
  with a description that matches the argument passed to the `t` flag.
89
89
 
90
90
  ### SCSS tests