@instructure/ui-tag 10.2.1-snapshot-12 → 10.2.1

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
@@ -3,7 +3,7 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
- ## [10.2.1-snapshot-12](https://github.com/instructure/instructure-ui/compare/v10.2.0...v10.2.1-snapshot-12) (2024-08-30)
6
+ ## [10.2.1](https://github.com/instructure/instructure-ui/compare/v10.2.0...v10.2.1) (2024-08-30)
7
7
 
8
8
  **Note:** Version bump only for package @instructure/ui-tag
9
9
 
@@ -32,9 +32,6 @@ import { Tag } from '../index';
32
32
  import { runAxeCheck } from '@instructure/ui-axe-check';
33
33
  import { View } from '@instructure/ui-view';
34
34
  const originalOmitViewProps = View.omitViewProps;
35
-
36
- // https://github.com/vitest-dev/eslint-plugin-vitest/issues/511
37
- // eslint-disable-next-line vitest/valid-describe-callback
38
35
  describe('<Tag />', async () => {
39
36
  beforeAll(() => {
40
37
  // View component read Component.name instead of Component.displayName
@@ -91,9 +88,6 @@ describe('<Tag />', async () => {
91
88
  const axeCheck = await runAxeCheck(container);
92
89
  expect(axeCheck).toBe(true);
93
90
  });
94
-
95
- // https://github.com/vitest-dev/eslint-plugin-vitest/issues/511
96
- // eslint-disable-next-line vitest/valid-describe-callback
97
91
  describe('when passing down props to View', async () => {
98
92
  const allowedProps = {
99
93
  margin: 'small',
@@ -34,9 +34,6 @@ var _Tag, _Tag2;
34
34
  * SOFTWARE.
35
35
  */
36
36
  const originalOmitViewProps = _View.View.omitViewProps;
37
-
38
- // https://github.com/vitest-dev/eslint-plugin-vitest/issues/511
39
- // eslint-disable-next-line vitest/valid-describe-callback
40
37
  describe('<Tag />', async () => {
41
38
  beforeAll(() => {
42
39
  // View component read Component.name instead of Component.displayName
@@ -93,9 +90,6 @@ describe('<Tag />', async () => {
93
90
  const axeCheck = await (0, _runAxeCheck.runAxeCheck)(container);
94
91
  expect(axeCheck).toBe(true);
95
92
  });
96
-
97
- // https://github.com/vitest-dev/eslint-plugin-vitest/issues/511
98
- // eslint-disable-next-line vitest/valid-describe-callback
99
93
  describe('when passing down props to View', async () => {
100
94
  const allowedProps = {
101
95
  margin: 'small',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instructure/ui-tag",
3
- "version": "10.2.1-snapshot-12",
3
+ "version": "10.2.1",
4
4
  "description": "A tag component",
5
5
  "author": "Instructure, Inc. Engineering and Product Design",
6
6
  "module": "./es/index.js",
@@ -24,26 +24,26 @@
24
24
  "license": "MIT",
25
25
  "dependencies": {
26
26
  "@babel/runtime": "^7.24.5",
27
- "@instructure/console": "10.2.1-snapshot-12",
28
- "@instructure/emotion": "10.2.1-snapshot-12",
29
- "@instructure/shared-types": "10.2.1-snapshot-12",
30
- "@instructure/ui-color-utils": "10.2.1-snapshot-12",
31
- "@instructure/ui-dom-utils": "10.2.1-snapshot-12",
32
- "@instructure/ui-icons": "10.2.1-snapshot-12",
33
- "@instructure/ui-react-utils": "10.2.1-snapshot-12",
34
- "@instructure/ui-testable": "10.2.1-snapshot-12",
35
- "@instructure/ui-view": "10.2.1-snapshot-12",
27
+ "@instructure/console": "10.2.1",
28
+ "@instructure/emotion": "10.2.1",
29
+ "@instructure/shared-types": "10.2.1",
30
+ "@instructure/ui-color-utils": "10.2.1",
31
+ "@instructure/ui-dom-utils": "10.2.1",
32
+ "@instructure/ui-icons": "10.2.1",
33
+ "@instructure/ui-react-utils": "10.2.1",
34
+ "@instructure/ui-testable": "10.2.1",
35
+ "@instructure/ui-view": "10.2.1",
36
36
  "prop-types": "^15.8.1"
37
37
  },
38
38
  "devDependencies": {
39
- "@instructure/ui-axe-check": "10.2.1-snapshot-12",
40
- "@instructure/ui-babel-preset": "10.2.1-snapshot-12",
41
- "@instructure/ui-test-utils": "10.2.1-snapshot-12",
42
- "@instructure/ui-themes": "10.2.1-snapshot-12",
39
+ "@instructure/ui-axe-check": "10.2.1",
40
+ "@instructure/ui-babel-preset": "10.2.1",
41
+ "@instructure/ui-test-utils": "10.2.1",
42
+ "@instructure/ui-themes": "10.2.1",
43
43
  "@testing-library/jest-dom": "^6.4.5",
44
44
  "@testing-library/react": "^15.0.7",
45
45
  "@testing-library/user-event": "^14.5.2",
46
- "vitest": "^1.6.0"
46
+ "vitest": "^2.0.2"
47
47
  },
48
48
  "peerDependencies": {
49
49
  "react": ">=16.8 <=18"
@@ -35,8 +35,6 @@ import { View } from '@instructure/ui-view'
35
35
 
36
36
  const originalOmitViewProps = View.omitViewProps
37
37
 
38
- // https://github.com/vitest-dev/eslint-plugin-vitest/issues/511
39
- // eslint-disable-next-line vitest/valid-describe-callback
40
38
  describe('<Tag />', async () => {
41
39
  beforeAll(() => {
42
40
  // View component read Component.name instead of Component.displayName
@@ -95,8 +93,6 @@ describe('<Tag />', async () => {
95
93
  expect(axeCheck).toBe(true)
96
94
  })
97
95
 
98
- // https://github.com/vitest-dev/eslint-plugin-vitest/issues/511
99
- // eslint-disable-next-line vitest/valid-describe-callback
100
96
  describe('when passing down props to View', async () => {
101
97
  const allowedProps: Partial<ViewProps> = {
102
98
  margin: 'small',