@instructure/ui-tag 10.0.1-snapshot-13 → 10.1.1-snapshot-4973

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,15 @@
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.0.1-snapshot-13](https://github.com/instructure/instructure-ui/compare/v10.0.0...v10.0.1-snapshot-13) (2024-08-21)
6
+ ## [10.1.1-snapshot-4973](https://github.com/instructure/instructure-ui/compare/v10.0.0...v10.1.1-snapshot-4973) (2024-08-23)
7
+
8
+ **Note:** Version bump only for package @instructure/ui-tag
9
+
10
+
11
+
12
+
13
+
14
+ # [10.1.0](https://github.com/instructure/instructure-ui/compare/v10.0.0...v10.1.0) (2024-08-23)
7
15
 
8
16
  **Note:** Version bump only for package @instructure/ui-tag
9
17
 
@@ -32,6 +32,9 @@ 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
35
38
  describe('<Tag />', async () => {
36
39
  beforeAll(() => {
37
40
  // View component read Component.name instead of Component.displayName
@@ -88,6 +91,9 @@ describe('<Tag />', async () => {
88
91
  const axeCheck = await runAxeCheck(container);
89
92
  expect(axeCheck).toBe(true);
90
93
  });
94
+
95
+ // https://github.com/vitest-dev/eslint-plugin-vitest/issues/511
96
+ // eslint-disable-next-line vitest/valid-describe-callback
91
97
  describe('when passing down props to View', async () => {
92
98
  const allowedProps = {
93
99
  margin: 'small',
@@ -34,6 +34,9 @@ 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
37
40
  describe('<Tag />', async () => {
38
41
  beforeAll(() => {
39
42
  // View component read Component.name instead of Component.displayName
@@ -90,6 +93,9 @@ describe('<Tag />', async () => {
90
93
  const axeCheck = await (0, _runAxeCheck.runAxeCheck)(container);
91
94
  expect(axeCheck).toBe(true);
92
95
  });
96
+
97
+ // https://github.com/vitest-dev/eslint-plugin-vitest/issues/511
98
+ // eslint-disable-next-line vitest/valid-describe-callback
93
99
  describe('when passing down props to View', async () => {
94
100
  const allowedProps = {
95
101
  margin: 'small',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instructure/ui-tag",
3
- "version": "10.0.1-snapshot-13",
3
+ "version": "10.1.1-snapshot-4973",
4
4
  "description": "A tag component",
5
5
  "author": "Instructure, Inc. Engineering and Product Design",
6
6
  "module": "./es/index.js",
@@ -24,22 +24,22 @@
24
24
  "license": "MIT",
25
25
  "dependencies": {
26
26
  "@babel/runtime": "^7.24.5",
27
- "@instructure/console": "10.0.1-snapshot-13",
28
- "@instructure/emotion": "10.0.1-snapshot-13",
29
- "@instructure/shared-types": "10.0.1-snapshot-13",
30
- "@instructure/ui-color-utils": "10.0.1-snapshot-13",
31
- "@instructure/ui-dom-utils": "10.0.1-snapshot-13",
32
- "@instructure/ui-icons": "10.0.1-snapshot-13",
33
- "@instructure/ui-react-utils": "10.0.1-snapshot-13",
34
- "@instructure/ui-testable": "10.0.1-snapshot-13",
35
- "@instructure/ui-view": "10.0.1-snapshot-13",
27
+ "@instructure/console": "10.1.1-snapshot-4973",
28
+ "@instructure/emotion": "10.1.1-snapshot-4973",
29
+ "@instructure/shared-types": "10.1.1-snapshot-4973",
30
+ "@instructure/ui-color-utils": "10.1.1-snapshot-4973",
31
+ "@instructure/ui-dom-utils": "10.1.1-snapshot-4973",
32
+ "@instructure/ui-icons": "10.1.1-snapshot-4973",
33
+ "@instructure/ui-react-utils": "10.1.1-snapshot-4973",
34
+ "@instructure/ui-testable": "10.1.1-snapshot-4973",
35
+ "@instructure/ui-view": "10.1.1-snapshot-4973",
36
36
  "prop-types": "^15.8.1"
37
37
  },
38
38
  "devDependencies": {
39
- "@instructure/ui-axe-check": "10.0.1-snapshot-13",
40
- "@instructure/ui-babel-preset": "10.0.1-snapshot-13",
41
- "@instructure/ui-test-utils": "10.0.1-snapshot-13",
42
- "@instructure/ui-themes": "10.0.1-snapshot-13",
39
+ "@instructure/ui-axe-check": "10.1.1-snapshot-4973",
40
+ "@instructure/ui-babel-preset": "10.1.1-snapshot-4973",
41
+ "@instructure/ui-test-utils": "10.1.1-snapshot-4973",
42
+ "@instructure/ui-themes": "10.1.1-snapshot-4973",
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",
@@ -35,6 +35,8 @@ 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
38
40
  describe('<Tag />', async () => {
39
41
  beforeAll(() => {
40
42
  // View component read Component.name instead of Component.displayName
@@ -93,6 +95,8 @@ describe('<Tag />', async () => {
93
95
  expect(axeCheck).toBe(true)
94
96
  })
95
97
 
98
+ // https://github.com/vitest-dev/eslint-plugin-vitest/issues/511
99
+ // eslint-disable-next-line vitest/valid-describe-callback
96
100
  describe('when passing down props to View', async () => {
97
101
  const allowedProps: Partial<ViewProps> = {
98
102
  margin: 'small',