@instructure/ui-tag 11.7.3-snapshot-33 → 11.7.3-snapshot-38

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
- ## [11.7.3-snapshot-33](https://github.com/instructure/instructure-ui/compare/v11.7.2...v11.7.3-snapshot-33) (2026-05-07)
6
+ ## [11.7.3-snapshot-38](https://github.com/instructure/instructure-ui/compare/v11.7.2...v11.7.3-snapshot-38) (2026-05-07)
7
7
 
8
8
 
9
9
  ### Bug Fixes
@@ -28,7 +28,7 @@ import { IconXLine } from '@instructure/ui-icons';
28
28
  import { View } from '@instructure/ui-view/v11_6';
29
29
  import { omitProps } from '@instructure/ui-react-utils';
30
30
  import { isActiveElement } from '@instructure/ui-dom-utils';
31
- import { withStyleLegacy as withStyle } from '@instructure/emotion';
31
+ import { withStyle } from '@instructure/emotion';
32
32
  import generateStyle from "./styles.js";
33
33
  import generateComponentTheme from "./theme.js";
34
34
  import { allowedProps } from "./props.js";
@@ -28,7 +28,7 @@ import { XInstUIIcon } from '@instructure/ui-icons';
28
28
  import { View } from '@instructure/ui-view/latest';
29
29
  import { omitProps } from '@instructure/ui-react-utils';
30
30
  import { isActiveElement } from '@instructure/ui-dom-utils';
31
- import { withStyle } from '@instructure/emotion';
31
+ import { withStyleNew } from '@instructure/emotion';
32
32
  import generateStyle from "./styles.js";
33
33
  import { allowedProps } from "./props.js";
34
34
  /**
@@ -37,7 +37,7 @@ category: components
37
37
  ---
38
38
  **/
39
39
  import { jsx as _jsx, jsxs as _jsxs } from "@emotion/react/jsx-runtime";
40
- let Tag = (_dec = withStyle(generateStyle), _dec(_class = class Tag extends Component {
40
+ let Tag = (_dec = withStyleNew(generateStyle), _dec(_class = class Tag extends Component {
41
41
  static displayName = "Tag";
42
42
  static componentId = 'Tag';
43
43
  static allowedProps = allowedProps;
@@ -44,7 +44,7 @@ var _dec, _class;
44
44
  category: components
45
45
  ---
46
46
  **/
47
- let Tag = exports.Tag = (_dec = (0, _emotion.withStyleLegacy)(_styles.default, _theme.default), _dec(_class = class Tag extends _react.Component {
47
+ let Tag = exports.Tag = (_dec = (0, _emotion.withStyle)(_styles.default, _theme.default), _dec(_class = class Tag extends _react.Component {
48
48
  static displayName = "Tag";
49
49
  static componentId = 'Tag';
50
50
  static allowedProps = _props.allowedProps;
@@ -43,7 +43,7 @@ var _dec, _class;
43
43
  category: components
44
44
  ---
45
45
  **/
46
- let Tag = exports.Tag = (_dec = (0, _emotion.withStyle)(_styles.default), _dec(_class = class Tag extends _react.Component {
46
+ let Tag = exports.Tag = (_dec = (0, _emotion.withStyleNew)(_styles.default), _dec(_class = class Tag extends _react.Component {
47
47
  static displayName = "Tag";
48
48
  static componentId = 'Tag';
49
49
  static allowedProps = _props.allowedProps;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instructure/ui-tag",
3
- "version": "11.7.3-snapshot-33",
3
+ "version": "11.7.3-snapshot-38",
4
4
  "description": "A tag component",
5
5
  "author": "Instructure, Inc. Engineering and Product Design",
6
6
  "module": "./es/index.js",
@@ -15,23 +15,23 @@
15
15
  "license": "MIT",
16
16
  "dependencies": {
17
17
  "@babel/runtime": "^7.29.2",
18
- "@instructure/console": "11.7.3-snapshot-33",
19
- "@instructure/emotion": "11.7.3-snapshot-33",
20
- "@instructure/shared-types": "11.7.3-snapshot-33",
21
- "@instructure/ui-color-utils": "11.7.3-snapshot-33",
22
- "@instructure/ui-dom-utils": "11.7.3-snapshot-33",
23
- "@instructure/ui-react-utils": "11.7.3-snapshot-33",
24
- "@instructure/ui-view": "11.7.3-snapshot-33",
25
- "@instructure/ui-icons": "11.7.3-snapshot-33",
26
- "@instructure/ui-themes": "11.7.3-snapshot-33"
18
+ "@instructure/console": "11.7.3-snapshot-38",
19
+ "@instructure/emotion": "11.7.3-snapshot-38",
20
+ "@instructure/shared-types": "11.7.3-snapshot-38",
21
+ "@instructure/ui-color-utils": "11.7.3-snapshot-38",
22
+ "@instructure/ui-dom-utils": "11.7.3-snapshot-38",
23
+ "@instructure/ui-icons": "11.7.3-snapshot-38",
24
+ "@instructure/ui-view": "11.7.3-snapshot-38",
25
+ "@instructure/ui-react-utils": "11.7.3-snapshot-38",
26
+ "@instructure/ui-themes": "11.7.3-snapshot-38"
27
27
  },
28
28
  "devDependencies": {
29
29
  "@testing-library/jest-dom": "^6.6.3",
30
30
  "@testing-library/react": "15.0.7",
31
31
  "@testing-library/user-event": "^14.6.1",
32
32
  "vitest": "^3.2.2",
33
- "@instructure/ui-axe-check": "11.7.3-snapshot-33",
34
- "@instructure/ui-babel-preset": "11.7.3-snapshot-33"
33
+ "@instructure/ui-axe-check": "11.7.3-snapshot-38",
34
+ "@instructure/ui-babel-preset": "11.7.3-snapshot-38"
35
35
  },
36
36
  "peerDependencies": {
37
37
  "react": ">=18 <=19"
@@ -29,7 +29,7 @@ import { View } from '@instructure/ui-view/v11_6'
29
29
  import type { ViewProps } from '@instructure/ui-view/v11_6'
30
30
  import { omitProps } from '@instructure/ui-react-utils'
31
31
  import { isActiveElement } from '@instructure/ui-dom-utils'
32
- import { withStyleLegacy as withStyle } from '@instructure/emotion'
32
+ import { withStyle } from '@instructure/emotion'
33
33
 
34
34
  import generateStyle from './styles'
35
35
  import generateComponentTheme from './theme'
@@ -29,7 +29,7 @@ import { View } from '@instructure/ui-view/latest'
29
29
  import type { ViewProps } from '@instructure/ui-view/latest'
30
30
  import { omitProps } from '@instructure/ui-react-utils'
31
31
  import { isActiveElement } from '@instructure/ui-dom-utils'
32
- import { withStyle } from '@instructure/emotion'
32
+ import { withStyleNew } from '@instructure/emotion'
33
33
 
34
34
  import generateStyle from './styles'
35
35
  import type { TagProps } from './props'
@@ -41,7 +41,7 @@ category: components
41
41
  ---
42
42
  **/
43
43
 
44
- @withStyle(generateStyle)
44
+ @withStyleNew(generateStyle)
45
45
  class Tag extends Component<TagProps> {
46
46
  static readonly componentId = 'Tag'
47
47