@instructure/ui-img 11.7.3 → 11.7.4-pr-snapshot-1781695314229
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 +8 -0
- package/LICENSE.md +1 -0
- package/{lib/Img/v2/props.js → babel.config.cjs} +12 -7
- package/es/Img/v1/index.js +4 -4
- package/es/Img/v2/index.js +3 -3
- package/es/exports/a.js +1 -1
- package/es/exports/b.js +1 -1
- package/package.json +12 -17
- package/src/Img/v1/index.tsx +4 -3
- package/src/Img/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/Img/v1/index.d.ts +1 -0
- package/types/Img/v1/index.d.ts.map +1 -1
- package/types/Img/v2/index.d.ts +1 -0
- package/types/Img/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/lib/Img/v1/index.js +0 -132
- package/lib/Img/v1/props.js +0 -31
- package/lib/Img/v1/styles.js +0 -140
- package/lib/Img/v1/theme.js +0 -45
- package/lib/Img/v2/index.js +0 -131
- package/lib/Img/v2/styles.js +0 -139
- package/lib/exports/a.js +0 -12
- package/lib/exports/b.js +0 -12
- package/lib/package.json +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
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-pr-snapshot-1781695314229](https://github.com/instructure/instructure-ui/compare/v11.7.3...v11.7.4-pr-snapshot-1781695314229) (2026-06-17)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @instructure/ui-img
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [11.7.3](https://github.com/instructure/instructure-ui/compare/v11.7.2...v11.7.3) (2026-05-07)
|
|
7
15
|
|
|
8
16
|
|
package/LICENSE.md
CHANGED
|
@@ -1,9 +1,3 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.allowedProps = void 0;
|
|
7
1
|
/*
|
|
8
2
|
* The MIT License (MIT)
|
|
9
3
|
*
|
|
@@ -28,4 +22,15 @@ exports.allowedProps = void 0;
|
|
|
28
22
|
* SOFTWARE.
|
|
29
23
|
*/
|
|
30
24
|
|
|
31
|
-
|
|
25
|
+
module.exports = {
|
|
26
|
+
presets: [
|
|
27
|
+
[
|
|
28
|
+
require('@instructure/ui-babel-preset'),
|
|
29
|
+
{
|
|
30
|
+
esModules: Boolean(process.env.ES_MODULES),
|
|
31
|
+
removeConsole: process.env.NODE_ENV === 'production',
|
|
32
|
+
transformImports: Boolean(process.env.TRANSFORM_IMPORTS)
|
|
33
|
+
}
|
|
34
|
+
]
|
|
35
|
+
]
|
|
36
|
+
}
|
package/es/Img/v1/index.js
CHANGED
|
@@ -27,9 +27,9 @@ import { Component } from 'react';
|
|
|
27
27
|
import { View } from '@instructure/ui-view/v11_6';
|
|
28
28
|
import { passthroughProps } from '@instructure/ui-react-utils';
|
|
29
29
|
import { withStyle } from '@instructure/emotion';
|
|
30
|
-
import generateStyle from
|
|
31
|
-
import generateComponentTheme from
|
|
32
|
-
import { allowedProps } from
|
|
30
|
+
import generateStyle from './styles.js';
|
|
31
|
+
import generateComponentTheme from './theme.js';
|
|
32
|
+
import { allowedProps } from './props.js';
|
|
33
33
|
import { jsx as _jsx, jsxs as _jsxs } from "@emotion/react/jsx-runtime";
|
|
34
34
|
/**
|
|
35
35
|
---
|
|
@@ -37,7 +37,7 @@ category: components
|
|
|
37
37
|
---
|
|
38
38
|
**/
|
|
39
39
|
let Img = (_dec = withStyle(generateStyle, generateComponentTheme), _dec(_class = class Img extends Component {
|
|
40
|
-
static displayName =
|
|
40
|
+
static displayName = 'Img';
|
|
41
41
|
static componentId = 'Img';
|
|
42
42
|
static allowedProps = allowedProps;
|
|
43
43
|
static defaultProps = {
|
package/es/Img/v2/index.js
CHANGED
|
@@ -27,8 +27,8 @@ import { Component } from 'react';
|
|
|
27
27
|
import { View } from '@instructure/ui-view/latest';
|
|
28
28
|
import { passthroughProps } from '@instructure/ui-react-utils';
|
|
29
29
|
import { withStyleNew } from '@instructure/emotion';
|
|
30
|
-
import generateStyle from
|
|
31
|
-
import { allowedProps } from
|
|
30
|
+
import generateStyle from './styles.js';
|
|
31
|
+
import { allowedProps } from './props.js';
|
|
32
32
|
import { jsx as _jsx, jsxs as _jsxs } from "@emotion/react/jsx-runtime";
|
|
33
33
|
/**
|
|
34
34
|
---
|
|
@@ -36,7 +36,7 @@ category: components
|
|
|
36
36
|
---
|
|
37
37
|
**/
|
|
38
38
|
let Img = (_dec = withStyleNew(generateStyle), _dec(_class = class Img extends Component {
|
|
39
|
-
static displayName =
|
|
39
|
+
static displayName = 'Img';
|
|
40
40
|
static componentId = 'Img';
|
|
41
41
|
static allowedProps = allowedProps;
|
|
42
42
|
static defaultProps = {
|
package/es/exports/a.js
CHANGED
package/es/exports/b.js
CHANGED
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/ui-img",
|
|
3
|
-
"version": "11.7.
|
|
3
|
+
"version": "11.7.4-pr-snapshot-1781695314229",
|
|
4
|
+
"type": "module",
|
|
4
5
|
"description": "An accessible image component.",
|
|
5
6
|
"author": "Instructure, Inc. Engineering and Product Design",
|
|
6
7
|
"module": "./es/index.js",
|
|
7
|
-
"main": "./lib/index.js",
|
|
8
8
|
"types": "./types/index.d.ts",
|
|
9
9
|
"repository": {
|
|
10
10
|
"type": "git",
|
|
@@ -15,21 +15,21 @@
|
|
|
15
15
|
"license": "MIT",
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@babel/runtime": "^7.29.2",
|
|
18
|
-
"@instructure/
|
|
19
|
-
"@instructure/
|
|
20
|
-
"@instructure/
|
|
21
|
-
"@instructure/
|
|
22
|
-
"@instructure/ui-
|
|
23
|
-
"@instructure/ui-themes": "11.7.
|
|
24
|
-
"@instructure/ui-view": "11.7.
|
|
18
|
+
"@instructure/emotion": "11.7.4-pr-snapshot-1781695314229",
|
|
19
|
+
"@instructure/shared-types": "11.7.4-pr-snapshot-1781695314229",
|
|
20
|
+
"@instructure/console": "11.7.4-pr-snapshot-1781695314229",
|
|
21
|
+
"@instructure/ui-react-utils": "11.7.4-pr-snapshot-1781695314229",
|
|
22
|
+
"@instructure/ui-dom-utils": "11.7.4-pr-snapshot-1781695314229",
|
|
23
|
+
"@instructure/ui-themes": "11.7.4-pr-snapshot-1781695314229",
|
|
24
|
+
"@instructure/ui-view": "11.7.4-pr-snapshot-1781695314229"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@testing-library/jest-dom": "^6.6.3",
|
|
28
28
|
"@testing-library/react": "15.0.7",
|
|
29
29
|
"@testing-library/user-event": "^14.6.1",
|
|
30
30
|
"vitest": "^3.2.2",
|
|
31
|
-
"@instructure/ui-axe-check": "11.7.
|
|
32
|
-
"@instructure/ui-babel-preset": "11.7.
|
|
31
|
+
"@instructure/ui-axe-check": "11.7.4-pr-snapshot-1781695314229",
|
|
32
|
+
"@instructure/ui-babel-preset": "11.7.4-pr-snapshot-1781695314229"
|
|
33
33
|
},
|
|
34
34
|
"peerDependencies": {
|
|
35
35
|
"react": ">=18 <=19"
|
|
@@ -39,7 +39,6 @@
|
|
|
39
39
|
},
|
|
40
40
|
"sideEffects": false,
|
|
41
41
|
"exports": {
|
|
42
|
-
"./lib/*": "./lib/*",
|
|
43
42
|
"./es/*": "./es/*",
|
|
44
43
|
"./types/*": "./types/*",
|
|
45
44
|
"./package.json": "./package.json",
|
|
@@ -48,28 +47,24 @@
|
|
|
48
47
|
"src": "./src/exports/a.ts",
|
|
49
48
|
"types": "./types/exports/a.d.ts",
|
|
50
49
|
"import": "./es/exports/a.js",
|
|
51
|
-
"require": "./lib/exports/a.js",
|
|
52
50
|
"default": "./es/exports/a.js"
|
|
53
51
|
},
|
|
54
52
|
"./v11_6": {
|
|
55
53
|
"src": "./src/exports/a.ts",
|
|
56
54
|
"types": "./types/exports/a.d.ts",
|
|
57
55
|
"import": "./es/exports/a.js",
|
|
58
|
-
"require": "./lib/exports/a.js",
|
|
59
56
|
"default": "./es/exports/a.js"
|
|
60
57
|
},
|
|
61
58
|
"./v11_7": {
|
|
62
59
|
"src": "./src/exports/b.ts",
|
|
63
60
|
"types": "./types/exports/b.d.ts",
|
|
64
61
|
"import": "./es/exports/b.js",
|
|
65
|
-
"require": "./lib/exports/b.js",
|
|
66
62
|
"default": "./es/exports/b.js"
|
|
67
63
|
},
|
|
68
64
|
"./latest": {
|
|
69
65
|
"src": "./src/exports/b.ts",
|
|
70
66
|
"types": "./types/exports/b.d.ts",
|
|
71
67
|
"import": "./es/exports/b.js",
|
|
72
|
-
"require": "./lib/exports/b.js",
|
|
73
68
|
"default": "./es/exports/b.js"
|
|
74
69
|
}
|
|
75
70
|
},
|
|
@@ -77,7 +72,7 @@
|
|
|
77
72
|
"lint": "ui-scripts lint",
|
|
78
73
|
"lint:fix": "ui-scripts lint --fix",
|
|
79
74
|
"clean": "ui-scripts clean",
|
|
80
|
-
"build": "ui-scripts build
|
|
75
|
+
"build": "ui-scripts build",
|
|
81
76
|
"build:watch": "pnpm run ts:check -- --watch & ui-scripts build --watch",
|
|
82
77
|
"build:types": "tsc -p tsconfig.build.json",
|
|
83
78
|
"ts:check": "tsc -p tsconfig.build.json --noEmit --emitDeclarationOnly false"
|
package/src/Img/v1/index.tsx
CHANGED
|
@@ -29,10 +29,10 @@ import { passthroughProps } from '@instructure/ui-react-utils'
|
|
|
29
29
|
|
|
30
30
|
import { withStyle } from '@instructure/emotion'
|
|
31
31
|
|
|
32
|
-
import generateStyle from './styles'
|
|
33
|
-
import generateComponentTheme from './theme'
|
|
32
|
+
import generateStyle from './styles.js'
|
|
33
|
+
import generateComponentTheme from './theme.js'
|
|
34
34
|
|
|
35
|
-
import { allowedProps } from './props'
|
|
35
|
+
import { allowedProps } from './props.js'
|
|
36
36
|
import type { ImgProps } from './props'
|
|
37
37
|
|
|
38
38
|
/**
|
|
@@ -42,6 +42,7 @@ category: components
|
|
|
42
42
|
**/
|
|
43
43
|
@withStyle(generateStyle, generateComponentTheme)
|
|
44
44
|
class Img extends Component<ImgProps> {
|
|
45
|
+
static displayName = 'Img'
|
|
45
46
|
static readonly componentId = 'Img'
|
|
46
47
|
|
|
47
48
|
static allowedProps = allowedProps
|
package/src/Img/v2/index.tsx
CHANGED
|
@@ -29,9 +29,9 @@ import { passthroughProps } from '@instructure/ui-react-utils'
|
|
|
29
29
|
|
|
30
30
|
import { withStyleNew } from '@instructure/emotion'
|
|
31
31
|
|
|
32
|
-
import generateStyle from './styles'
|
|
32
|
+
import generateStyle from './styles.js'
|
|
33
33
|
|
|
34
|
-
import { allowedProps } from './props'
|
|
34
|
+
import { allowedProps } from './props.js'
|
|
35
35
|
import type { ImgProps } from './props'
|
|
36
36
|
|
|
37
37
|
/**
|
|
@@ -41,6 +41,7 @@ category: components
|
|
|
41
41
|
**/
|
|
42
42
|
@withStyleNew(generateStyle)
|
|
43
43
|
class Img extends Component<ImgProps> {
|
|
44
|
+
static displayName = 'Img'
|
|
44
45
|
static readonly componentId = 'Img'
|
|
45
46
|
|
|
46
47
|
static allowedProps = allowedProps
|
package/src/exports/a.ts
CHANGED
package/src/exports/b.ts
CHANGED