@instructure/ui-tag 11.7.4-snapshot-11 → 11.7.4-snapshot-49
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 +1 -1
- package/LICENSE.md +1 -0
- package/es/Tag/v1/index.js +5 -4
- package/es/Tag/v2/index.js +4 -3
- package/es/exports/a.js +2 -1
- package/es/exports/b.js +2 -1
- package/lib/Tag/v1/index.js +4 -4
- package/lib/Tag/v2/index.js +3 -3
- package/lib/exports/a.js +2 -2
- package/lib/exports/b.js +2 -2
- package/package.json +12 -12
- package/src/Tag/v1/index.tsx +4 -3
- package/src/Tag/v2/index.tsx +3 -2
- package/src/exports/a.ts +1 -1
- package/src/exports/b.ts +1 -1
- package/tsconfig.build.tsbuildinfo +1 -1
- package/types/Tag/v1/index.d.ts +1 -0
- package/types/Tag/v1/index.d.ts.map +1 -1
- package/types/Tag/v2/index.d.ts +1 -0
- package/types/Tag/v2/index.d.ts.map +1 -1
- package/types/exports/a.d.ts +1 -1
- package/types/exports/a.d.ts.map +1 -1
- package/types/exports/b.d.ts +1 -1
- package/types/exports/b.d.ts.map +1 -1
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.4-snapshot-
|
|
6
|
+
## [11.7.4-snapshot-49](https://github.com/instructure/instructure-ui/compare/v11.7.3...v11.7.4-snapshot-49) (2026-06-17)
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
### Features
|
package/LICENSE.md
CHANGED
package/es/Tag/v1/index.js
CHANGED
|
@@ -29,9 +29,10 @@ 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
31
|
import { withStyle } from '@instructure/emotion';
|
|
32
|
-
import generateStyle from
|
|
33
|
-
import generateComponentTheme from
|
|
34
|
-
import { allowedProps } from
|
|
32
|
+
import generateStyle from './styles.js';
|
|
33
|
+
import generateComponentTheme from './theme.js';
|
|
34
|
+
import { allowedProps } from './props.js';
|
|
35
|
+
|
|
35
36
|
/**
|
|
36
37
|
---
|
|
37
38
|
category: components
|
|
@@ -39,7 +40,7 @@ category: components
|
|
|
39
40
|
**/
|
|
40
41
|
import { jsx as _jsx, jsxs as _jsxs } from "@emotion/react/jsx-runtime";
|
|
41
42
|
let Tag = (_dec = withStyle(generateStyle, generateComponentTheme), _dec(_class = class Tag extends Component {
|
|
42
|
-
static displayName =
|
|
43
|
+
static displayName = 'Tag';
|
|
43
44
|
static componentId = 'Tag';
|
|
44
45
|
static allowedProps = allowedProps;
|
|
45
46
|
static defaultProps = {
|
package/es/Tag/v2/index.js
CHANGED
|
@@ -29,8 +29,9 @@ 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
31
|
import { withStyleNew } from '@instructure/emotion';
|
|
32
|
-
import generateStyle from
|
|
33
|
-
import { allowedProps } from
|
|
32
|
+
import generateStyle from './styles.js';
|
|
33
|
+
import { allowedProps } from './props.js';
|
|
34
|
+
|
|
34
35
|
/**
|
|
35
36
|
---
|
|
36
37
|
category: components
|
|
@@ -38,7 +39,7 @@ category: components
|
|
|
38
39
|
**/
|
|
39
40
|
import { jsx as _jsx, jsxs as _jsxs } from "@emotion/react/jsx-runtime";
|
|
40
41
|
let Tag = (_dec = withStyleNew(generateStyle), _dec(_class = class Tag extends Component {
|
|
41
|
-
static displayName =
|
|
42
|
+
static displayName = 'Tag';
|
|
42
43
|
static componentId = 'Tag';
|
|
43
44
|
static allowedProps = allowedProps;
|
|
44
45
|
static defaultProps = {
|
package/es/exports/a.js
CHANGED
package/es/exports/b.js
CHANGED
package/lib/Tag/v1/index.js
CHANGED
|
@@ -11,9 +11,9 @@ var _v11_ = require("@instructure/ui-view/v11_6");
|
|
|
11
11
|
var _omitProps = require("@instructure/ui-react-utils/lib/omitProps.js");
|
|
12
12
|
var _isActiveElement = require("@instructure/ui-dom-utils/lib/isActiveElement.js");
|
|
13
13
|
var _emotion = require("@instructure/emotion");
|
|
14
|
-
var _styles = _interopRequireDefault(require("./styles"));
|
|
15
|
-
var _theme = _interopRequireDefault(require("./theme"));
|
|
16
|
-
var _props = require("./props");
|
|
14
|
+
var _styles = _interopRequireDefault(require("./styles.js"));
|
|
15
|
+
var _theme = _interopRequireDefault(require("./theme.js"));
|
|
16
|
+
var _props = require("./props.js");
|
|
17
17
|
var _jsxRuntime = require("@emotion/react/jsx-runtime");
|
|
18
18
|
var _dec, _class;
|
|
19
19
|
/*
|
|
@@ -45,7 +45,7 @@ category: components
|
|
|
45
45
|
---
|
|
46
46
|
**/
|
|
47
47
|
let Tag = exports.Tag = (_dec = (0, _emotion.withStyle)(_styles.default, _theme.default), _dec(_class = class Tag extends _react.Component {
|
|
48
|
-
static displayName =
|
|
48
|
+
static displayName = 'Tag';
|
|
49
49
|
static componentId = 'Tag';
|
|
50
50
|
static allowedProps = _props.allowedProps;
|
|
51
51
|
static defaultProps = {
|
package/lib/Tag/v2/index.js
CHANGED
|
@@ -11,8 +11,8 @@ var _latest = require("@instructure/ui-view/latest");
|
|
|
11
11
|
var _omitProps = require("@instructure/ui-react-utils/lib/omitProps.js");
|
|
12
12
|
var _isActiveElement = require("@instructure/ui-dom-utils/lib/isActiveElement.js");
|
|
13
13
|
var _emotion = require("@instructure/emotion");
|
|
14
|
-
var _styles = _interopRequireDefault(require("./styles"));
|
|
15
|
-
var _props = require("./props");
|
|
14
|
+
var _styles = _interopRequireDefault(require("./styles.js"));
|
|
15
|
+
var _props = require("./props.js");
|
|
16
16
|
var _jsxRuntime = require("@emotion/react/jsx-runtime");
|
|
17
17
|
var _dec, _class;
|
|
18
18
|
/*
|
|
@@ -44,7 +44,7 @@ category: components
|
|
|
44
44
|
---
|
|
45
45
|
**/
|
|
46
46
|
let Tag = exports.Tag = (_dec = (0, _emotion.withStyleNew)(_styles.default), _dec(_class = class Tag extends _react.Component {
|
|
47
|
-
static displayName =
|
|
47
|
+
static displayName = 'Tag';
|
|
48
48
|
static componentId = 'Tag';
|
|
49
49
|
static allowedProps = _props.allowedProps;
|
|
50
50
|
static defaultProps = {
|
package/lib/exports/a.js
CHANGED
package/lib/exports/b.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/ui-tag",
|
|
3
|
-
"version": "11.7.4-snapshot-
|
|
3
|
+
"version": "11.7.4-snapshot-49",
|
|
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.4-snapshot-
|
|
19
|
-
"@instructure/emotion": "11.7.4-snapshot-
|
|
20
|
-
"@instructure/
|
|
21
|
-
"@instructure/
|
|
22
|
-
"@instructure/ui-
|
|
23
|
-
"@instructure/ui-icons": "11.7.4-snapshot-
|
|
24
|
-
"@instructure/ui-
|
|
25
|
-
"@instructure/ui-themes": "11.7.4-snapshot-
|
|
26
|
-
"@instructure/ui-
|
|
18
|
+
"@instructure/console": "11.7.4-snapshot-49",
|
|
19
|
+
"@instructure/emotion": "11.7.4-snapshot-49",
|
|
20
|
+
"@instructure/shared-types": "11.7.4-snapshot-49",
|
|
21
|
+
"@instructure/ui-color-utils": "11.7.4-snapshot-49",
|
|
22
|
+
"@instructure/ui-dom-utils": "11.7.4-snapshot-49",
|
|
23
|
+
"@instructure/ui-icons": "11.7.4-snapshot-49",
|
|
24
|
+
"@instructure/ui-view": "11.7.4-snapshot-49",
|
|
25
|
+
"@instructure/ui-themes": "11.7.4-snapshot-49",
|
|
26
|
+
"@instructure/ui-react-utils": "11.7.4-snapshot-49"
|
|
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-
|
|
34
|
-
"@instructure/ui-
|
|
33
|
+
"@instructure/ui-babel-preset": "11.7.4-snapshot-49",
|
|
34
|
+
"@instructure/ui-axe-check": "11.7.4-snapshot-49"
|
|
35
35
|
},
|
|
36
36
|
"peerDependencies": {
|
|
37
37
|
"react": ">=18 <=19"
|
package/src/Tag/v1/index.tsx
CHANGED
|
@@ -31,10 +31,10 @@ import { omitProps } from '@instructure/ui-react-utils'
|
|
|
31
31
|
import { isActiveElement } from '@instructure/ui-dom-utils'
|
|
32
32
|
import { withStyle } from '@instructure/emotion'
|
|
33
33
|
|
|
34
|
-
import generateStyle from './styles'
|
|
35
|
-
import generateComponentTheme from './theme'
|
|
34
|
+
import generateStyle from './styles.js'
|
|
35
|
+
import generateComponentTheme from './theme.js'
|
|
36
36
|
import type { TagProps } from './props'
|
|
37
|
-
import { allowedProps } from './props'
|
|
37
|
+
import { allowedProps } from './props.js'
|
|
38
38
|
|
|
39
39
|
/**
|
|
40
40
|
---
|
|
@@ -44,6 +44,7 @@ category: components
|
|
|
44
44
|
|
|
45
45
|
@withStyle(generateStyle, generateComponentTheme)
|
|
46
46
|
class Tag extends Component<TagProps> {
|
|
47
|
+
static displayName = 'Tag'
|
|
47
48
|
static readonly componentId = 'Tag'
|
|
48
49
|
|
|
49
50
|
static allowedProps = allowedProps
|
package/src/Tag/v2/index.tsx
CHANGED
|
@@ -31,9 +31,9 @@ import { omitProps } from '@instructure/ui-react-utils'
|
|
|
31
31
|
import { isActiveElement } from '@instructure/ui-dom-utils'
|
|
32
32
|
import { withStyleNew } from '@instructure/emotion'
|
|
33
33
|
|
|
34
|
-
import generateStyle from './styles'
|
|
34
|
+
import generateStyle from './styles.js'
|
|
35
35
|
import type { TagProps } from './props'
|
|
36
|
-
import { allowedProps } from './props'
|
|
36
|
+
import { allowedProps } from './props.js'
|
|
37
37
|
|
|
38
38
|
/**
|
|
39
39
|
---
|
|
@@ -43,6 +43,7 @@ category: components
|
|
|
43
43
|
|
|
44
44
|
@withStyleNew(generateStyle)
|
|
45
45
|
class Tag extends Component<TagProps> {
|
|
46
|
+
static displayName = 'Tag'
|
|
46
47
|
static readonly componentId = 'Tag'
|
|
47
48
|
|
|
48
49
|
static allowedProps = allowedProps
|
package/src/exports/a.ts
CHANGED
package/src/exports/b.ts
CHANGED