@instructure/ui-flex 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/Flex/v1/Item/index.js +3 -3
- package/es/Flex/v1/index.js +5 -5
- package/es/Flex/v2/Item/index.js +3 -3
- package/es/Flex/v2/index.js +4 -4
- package/es/exports/a.js +2 -1
- package/es/exports/b.js +2 -1
- package/lib/Flex/v1/Item/index.js +3 -3
- package/lib/Flex/v1/index.js +7 -7
- package/lib/Flex/v2/Item/index.js +3 -3
- package/lib/Flex/v2/index.js +6 -6
- package/lib/exports/a.js +3 -3
- package/lib/exports/b.js +3 -3
- package/package.json +9 -9
- package/src/Flex/v1/Item/index.tsx +3 -2
- package/src/Flex/v1/index.tsx +5 -4
- package/src/Flex/v2/Item/index.tsx +3 -2
- package/src/Flex/v2/index.tsx +4 -3
- package/src/exports/a.ts +1 -1
- package/src/exports/b.ts +1 -1
- package/tsconfig.build.tsbuildinfo +1 -1
- package/types/Flex/v1/Item/index.d.ts +1 -0
- package/types/Flex/v1/Item/index.d.ts.map +1 -1
- package/types/Flex/v1/index.d.ts +2 -1
- package/types/Flex/v1/index.d.ts.map +1 -1
- package/types/Flex/v2/Item/index.d.ts +1 -0
- package/types/Flex/v2/Item/index.d.ts.map +1 -1
- package/types/Flex/v2/index.d.ts +2 -1
- package/types/Flex/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
|
**Note:** Version bump only for package @instructure/ui-flex
|
|
9
9
|
|
package/LICENSE.md
CHANGED
package/es/Flex/v1/Item/index.js
CHANGED
|
@@ -27,8 +27,8 @@ import { Component } from 'react';
|
|
|
27
27
|
import { omitProps } from '@instructure/ui-react-utils';
|
|
28
28
|
import { View } from '@instructure/ui-view/v11_6';
|
|
29
29
|
import { withStyle } 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 } from "@emotion/react/jsx-runtime";
|
|
33
33
|
/**
|
|
34
34
|
---
|
|
@@ -37,7 +37,7 @@ id: Flex.Item
|
|
|
37
37
|
---
|
|
38
38
|
**/
|
|
39
39
|
let Item = (_dec = withStyle(generateStyle, null), _dec(_class = class Item extends Component {
|
|
40
|
-
static displayName =
|
|
40
|
+
static displayName = 'Item';
|
|
41
41
|
static componentId = 'Flex.Item';
|
|
42
42
|
componentDidMount() {
|
|
43
43
|
this.props.makeStyles?.();
|
package/es/Flex/v1/index.js
CHANGED
|
@@ -27,10 +27,10 @@ import { Children, Component } from 'react';
|
|
|
27
27
|
import { safeCloneElement, passthroughProps, matchComponentTypes, callRenderProp } from '@instructure/ui-react-utils';
|
|
28
28
|
import { View } from '@instructure/ui-view/v11_6';
|
|
29
29
|
import { withStyle } from '@instructure/emotion';
|
|
30
|
-
import { Item } from
|
|
31
|
-
import generateStyle from
|
|
32
|
-
import generateComponentTheme from
|
|
33
|
-
import { allowedProps } from
|
|
30
|
+
import { Item } from './Item/index.js';
|
|
31
|
+
import generateStyle from './styles.js';
|
|
32
|
+
import generateComponentTheme from './theme.js';
|
|
33
|
+
import { allowedProps } from './props.js';
|
|
34
34
|
import { jsx as _jsx } from "@emotion/react/jsx-runtime";
|
|
35
35
|
/**
|
|
36
36
|
---
|
|
@@ -39,7 +39,7 @@ category: components
|
|
|
39
39
|
@module Flex
|
|
40
40
|
**/
|
|
41
41
|
let Flex = (_dec = withStyle(generateStyle, generateComponentTheme), _dec(_class = class Flex extends Component {
|
|
42
|
-
static displayName =
|
|
42
|
+
static displayName = 'Flex';
|
|
43
43
|
static componentId = 'Flex';
|
|
44
44
|
componentDidMount() {
|
|
45
45
|
this.props.makeStyles?.();
|
package/es/Flex/v2/Item/index.js
CHANGED
|
@@ -27,8 +27,8 @@ import { Component } from 'react';
|
|
|
27
27
|
import { omitProps } from '@instructure/ui-react-utils';
|
|
28
28
|
import { View } from '@instructure/ui-view/latest';
|
|
29
29
|
import { withStyle } 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 } from "@emotion/react/jsx-runtime";
|
|
33
33
|
/**
|
|
34
34
|
---
|
|
@@ -37,7 +37,7 @@ id: Flex.Item
|
|
|
37
37
|
---
|
|
38
38
|
**/
|
|
39
39
|
let Item = (_dec = withStyle(generateStyle, null), _dec(_class = class Item extends Component {
|
|
40
|
-
static displayName =
|
|
40
|
+
static displayName = 'Item';
|
|
41
41
|
static componentId = 'Flex.Item';
|
|
42
42
|
componentDidMount() {
|
|
43
43
|
this.props.makeStyles?.();
|
package/es/Flex/v2/index.js
CHANGED
|
@@ -27,9 +27,9 @@ import { Children, Component } from 'react';
|
|
|
27
27
|
import { safeCloneElement, passthroughProps, matchComponentTypes, callRenderProp } from '@instructure/ui-react-utils';
|
|
28
28
|
import { View } from '@instructure/ui-view/latest';
|
|
29
29
|
import { withStyleNew } from '@instructure/emotion';
|
|
30
|
-
import { Item } from
|
|
31
|
-
import generateStyle from
|
|
32
|
-
import { allowedProps } from
|
|
30
|
+
import { Item } from './Item/index.js';
|
|
31
|
+
import generateStyle from './styles.js';
|
|
32
|
+
import { allowedProps } from './props.js';
|
|
33
33
|
import { jsx as _jsx } from "@emotion/react/jsx-runtime";
|
|
34
34
|
/**
|
|
35
35
|
---
|
|
@@ -38,7 +38,7 @@ category: components
|
|
|
38
38
|
@module Flex
|
|
39
39
|
**/
|
|
40
40
|
let Flex = (_dec = withStyleNew(generateStyle), _dec(_class = class Flex extends Component {
|
|
41
|
-
static displayName =
|
|
41
|
+
static displayName = 'Flex';
|
|
42
42
|
static componentId = 'Flex';
|
|
43
43
|
componentDidMount() {
|
|
44
44
|
this.props.makeStyles?.();
|
package/es/exports/a.js
CHANGED
package/es/exports/b.js
CHANGED
|
@@ -9,8 +9,8 @@ var _react = require("react");
|
|
|
9
9
|
var _omitProps = require("@instructure/ui-react-utils/lib/omitProps.js");
|
|
10
10
|
var _v11_ = require("@instructure/ui-view/v11_6");
|
|
11
11
|
var _emotion = require("@instructure/emotion");
|
|
12
|
-
var _styles = _interopRequireDefault(require("./styles"));
|
|
13
|
-
var _props = require("./props");
|
|
12
|
+
var _styles = _interopRequireDefault(require("./styles.js"));
|
|
13
|
+
var _props = require("./props.js");
|
|
14
14
|
var _jsxRuntime = require("@emotion/react/jsx-runtime");
|
|
15
15
|
var _dec, _class;
|
|
16
16
|
/*
|
|
@@ -43,7 +43,7 @@ id: Flex.Item
|
|
|
43
43
|
---
|
|
44
44
|
**/
|
|
45
45
|
let Item = exports.Item = (_dec = (0, _emotion.withStyle)(_styles.default, null), _dec(_class = class Item extends _react.Component {
|
|
46
|
-
static displayName =
|
|
46
|
+
static displayName = 'Item';
|
|
47
47
|
static componentId = 'Flex.Item';
|
|
48
48
|
componentDidMount() {
|
|
49
49
|
this.props.makeStyles?.();
|
package/lib/Flex/v1/index.js
CHANGED
|
@@ -8,7 +8,7 @@ exports.Flex = void 0;
|
|
|
8
8
|
Object.defineProperty(exports, "FlexItem", {
|
|
9
9
|
enumerable: true,
|
|
10
10
|
get: function () {
|
|
11
|
-
return
|
|
11
|
+
return _index.Item;
|
|
12
12
|
}
|
|
13
13
|
});
|
|
14
14
|
exports.default = void 0;
|
|
@@ -19,10 +19,10 @@ var _matchComponentTypes = require("@instructure/ui-react-utils/lib/matchCompone
|
|
|
19
19
|
var _callRenderProp = require("@instructure/ui-react-utils/lib/callRenderProp.js");
|
|
20
20
|
var _v11_ = require("@instructure/ui-view/v11_6");
|
|
21
21
|
var _emotion = require("@instructure/emotion");
|
|
22
|
-
var
|
|
23
|
-
var _styles = _interopRequireDefault(require("./styles"));
|
|
24
|
-
var _theme = _interopRequireDefault(require("./theme"));
|
|
25
|
-
var _props = require("./props");
|
|
22
|
+
var _index = require("./Item/index.js");
|
|
23
|
+
var _styles = _interopRequireDefault(require("./styles.js"));
|
|
24
|
+
var _theme = _interopRequireDefault(require("./theme.js"));
|
|
25
|
+
var _props = require("./props.js");
|
|
26
26
|
var _jsxRuntime = require("@emotion/react/jsx-runtime");
|
|
27
27
|
var _dec, _class;
|
|
28
28
|
/*
|
|
@@ -55,7 +55,7 @@ category: components
|
|
|
55
55
|
@module Flex
|
|
56
56
|
**/
|
|
57
57
|
let Flex = exports.Flex = (_dec = (0, _emotion.withStyle)(_styles.default, _theme.default), _dec(_class = class Flex extends _react.Component {
|
|
58
|
-
static displayName =
|
|
58
|
+
static displayName = 'Flex';
|
|
59
59
|
static componentId = 'Flex';
|
|
60
60
|
componentDidMount() {
|
|
61
61
|
this.props.makeStyles?.();
|
|
@@ -63,7 +63,7 @@ let Flex = exports.Flex = (_dec = (0, _emotion.withStyle)(_styles.default, _them
|
|
|
63
63
|
componentDidUpdate() {
|
|
64
64
|
this.props.makeStyles?.();
|
|
65
65
|
}
|
|
66
|
-
static Item =
|
|
66
|
+
static Item = _index.Item;
|
|
67
67
|
static allowedProps = _props.allowedProps;
|
|
68
68
|
static defaultProps = {
|
|
69
69
|
as: 'span',
|
|
@@ -9,8 +9,8 @@ var _react = require("react");
|
|
|
9
9
|
var _omitProps = require("@instructure/ui-react-utils/lib/omitProps.js");
|
|
10
10
|
var _latest = require("@instructure/ui-view/latest");
|
|
11
11
|
var _emotion = require("@instructure/emotion");
|
|
12
|
-
var _styles = _interopRequireDefault(require("./styles"));
|
|
13
|
-
var _props = require("./props");
|
|
12
|
+
var _styles = _interopRequireDefault(require("./styles.js"));
|
|
13
|
+
var _props = require("./props.js");
|
|
14
14
|
var _jsxRuntime = require("@emotion/react/jsx-runtime");
|
|
15
15
|
var _dec, _class;
|
|
16
16
|
/*
|
|
@@ -43,7 +43,7 @@ id: Flex.Item
|
|
|
43
43
|
---
|
|
44
44
|
**/
|
|
45
45
|
let Item = exports.Item = (_dec = (0, _emotion.withStyle)(_styles.default, null), _dec(_class = class Item extends _react.Component {
|
|
46
|
-
static displayName =
|
|
46
|
+
static displayName = 'Item';
|
|
47
47
|
static componentId = 'Flex.Item';
|
|
48
48
|
componentDidMount() {
|
|
49
49
|
this.props.makeStyles?.();
|
package/lib/Flex/v2/index.js
CHANGED
|
@@ -8,7 +8,7 @@ exports.Flex = void 0;
|
|
|
8
8
|
Object.defineProperty(exports, "FlexItem", {
|
|
9
9
|
enumerable: true,
|
|
10
10
|
get: function () {
|
|
11
|
-
return
|
|
11
|
+
return _index.Item;
|
|
12
12
|
}
|
|
13
13
|
});
|
|
14
14
|
exports.default = void 0;
|
|
@@ -19,9 +19,9 @@ var _matchComponentTypes = require("@instructure/ui-react-utils/lib/matchCompone
|
|
|
19
19
|
var _callRenderProp = require("@instructure/ui-react-utils/lib/callRenderProp.js");
|
|
20
20
|
var _latest = require("@instructure/ui-view/latest");
|
|
21
21
|
var _emotion = require("@instructure/emotion");
|
|
22
|
-
var
|
|
23
|
-
var _styles = _interopRequireDefault(require("./styles"));
|
|
24
|
-
var _props = require("./props");
|
|
22
|
+
var _index = require("./Item/index.js");
|
|
23
|
+
var _styles = _interopRequireDefault(require("./styles.js"));
|
|
24
|
+
var _props = require("./props.js");
|
|
25
25
|
var _jsxRuntime = require("@emotion/react/jsx-runtime");
|
|
26
26
|
var _dec, _class;
|
|
27
27
|
/*
|
|
@@ -54,7 +54,7 @@ category: components
|
|
|
54
54
|
@module Flex
|
|
55
55
|
**/
|
|
56
56
|
let Flex = exports.Flex = (_dec = (0, _emotion.withStyleNew)(_styles.default), _dec(_class = class Flex extends _react.Component {
|
|
57
|
-
static displayName =
|
|
57
|
+
static displayName = 'Flex';
|
|
58
58
|
static componentId = 'Flex';
|
|
59
59
|
componentDidMount() {
|
|
60
60
|
this.props.makeStyles?.();
|
|
@@ -62,7 +62,7 @@ let Flex = exports.Flex = (_dec = (0, _emotion.withStyleNew)(_styles.default), _
|
|
|
62
62
|
componentDidUpdate() {
|
|
63
63
|
this.props.makeStyles?.();
|
|
64
64
|
}
|
|
65
|
-
static Item =
|
|
65
|
+
static Item = _index.Item;
|
|
66
66
|
static allowedProps = _props.allowedProps;
|
|
67
67
|
static defaultProps = {
|
|
68
68
|
as: 'span',
|
package/lib/exports/a.js
CHANGED
|
@@ -6,13 +6,13 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
Object.defineProperty(exports, "Flex", {
|
|
7
7
|
enumerable: true,
|
|
8
8
|
get: function () {
|
|
9
|
-
return
|
|
9
|
+
return _index.Flex;
|
|
10
10
|
}
|
|
11
11
|
});
|
|
12
12
|
Object.defineProperty(exports, "FlexItem", {
|
|
13
13
|
enumerable: true,
|
|
14
14
|
get: function () {
|
|
15
|
-
return
|
|
15
|
+
return _index.FlexItem;
|
|
16
16
|
}
|
|
17
17
|
});
|
|
18
|
-
var
|
|
18
|
+
var _index = require("../Flex/v1/index.js");
|
package/lib/exports/b.js
CHANGED
|
@@ -6,13 +6,13 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
Object.defineProperty(exports, "Flex", {
|
|
7
7
|
enumerable: true,
|
|
8
8
|
get: function () {
|
|
9
|
-
return
|
|
9
|
+
return _index.Flex;
|
|
10
10
|
}
|
|
11
11
|
});
|
|
12
12
|
Object.defineProperty(exports, "FlexItem", {
|
|
13
13
|
enumerable: true,
|
|
14
14
|
get: function () {
|
|
15
|
-
return
|
|
15
|
+
return _index.FlexItem;
|
|
16
16
|
}
|
|
17
17
|
});
|
|
18
|
-
var
|
|
18
|
+
var _index = require("../Flex/v2/index.js");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/ui-flex",
|
|
3
|
-
"version": "11.7.4-snapshot-
|
|
3
|
+
"version": "11.7.4-snapshot-49",
|
|
4
4
|
"description": "A component that makes it easy to align content using flexbox CSS",
|
|
5
5
|
"author": "Instructure, Inc. Engineering and Product Design",
|
|
6
6
|
"module": "./es/index.js",
|
|
@@ -15,19 +15,19 @@
|
|
|
15
15
|
"license": "MIT",
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@babel/runtime": "^7.29.2",
|
|
18
|
-
"@instructure/console": "11.7.4-snapshot-
|
|
19
|
-
"@instructure/
|
|
20
|
-
"@instructure/
|
|
21
|
-
"@instructure/
|
|
22
|
-
"@instructure/ui-themes": "11.7.4-snapshot-
|
|
23
|
-
"@instructure/ui-view": "11.7.4-snapshot-
|
|
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-react-utils": "11.7.4-snapshot-49",
|
|
22
|
+
"@instructure/ui-themes": "11.7.4-snapshot-49",
|
|
23
|
+
"@instructure/ui-view": "11.7.4-snapshot-49"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"@testing-library/jest-dom": "^6.6.3",
|
|
27
27
|
"@testing-library/react": "15.0.7",
|
|
28
28
|
"vitest": "^3.2.2",
|
|
29
|
-
"@instructure/ui-axe-check": "11.7.4-snapshot-
|
|
30
|
-
"@instructure/ui-babel-preset": "11.7.4-snapshot-
|
|
29
|
+
"@instructure/ui-axe-check": "11.7.4-snapshot-49",
|
|
30
|
+
"@instructure/ui-babel-preset": "11.7.4-snapshot-49"
|
|
31
31
|
},
|
|
32
32
|
"peerDependencies": {
|
|
33
33
|
"react": ">=18 <=19"
|
|
@@ -28,9 +28,9 @@ import { omitProps } from '@instructure/ui-react-utils'
|
|
|
28
28
|
import { View } from '@instructure/ui-view/v11_6'
|
|
29
29
|
import { withStyle } from '@instructure/emotion'
|
|
30
30
|
|
|
31
|
-
import generateStyle from './styles'
|
|
31
|
+
import generateStyle from './styles.js'
|
|
32
32
|
|
|
33
|
-
import { allowedProps } from './props'
|
|
33
|
+
import { allowedProps } from './props.js'
|
|
34
34
|
import type { FlexItemProps } from './props'
|
|
35
35
|
|
|
36
36
|
/**
|
|
@@ -41,6 +41,7 @@ id: Flex.Item
|
|
|
41
41
|
**/
|
|
42
42
|
@withStyle(generateStyle, null)
|
|
43
43
|
class Item extends Component<FlexItemProps> {
|
|
44
|
+
static displayName = 'Item'
|
|
44
45
|
static readonly componentId = 'Flex.Item'
|
|
45
46
|
|
|
46
47
|
componentDidMount() {
|
package/src/Flex/v1/index.tsx
CHANGED
|
@@ -33,13 +33,13 @@ import {
|
|
|
33
33
|
import { View } from '@instructure/ui-view/v11_6'
|
|
34
34
|
import { withStyle } from '@instructure/emotion'
|
|
35
35
|
|
|
36
|
-
import { Item } from './Item'
|
|
36
|
+
import { Item } from './Item/index.js'
|
|
37
37
|
import type { FlexItemProps } from './Item/props'
|
|
38
38
|
|
|
39
|
-
import generateStyle from './styles'
|
|
40
|
-
import generateComponentTheme from './theme'
|
|
39
|
+
import generateStyle from './styles.js'
|
|
40
|
+
import generateComponentTheme from './theme.js'
|
|
41
41
|
|
|
42
|
-
import { allowedProps } from './props'
|
|
42
|
+
import { allowedProps } from './props.js'
|
|
43
43
|
import type { FlexProps } from './props'
|
|
44
44
|
|
|
45
45
|
/**
|
|
@@ -50,6 +50,7 @@ category: components
|
|
|
50
50
|
**/
|
|
51
51
|
@withStyle(generateStyle, generateComponentTheme)
|
|
52
52
|
class Flex extends Component<FlexProps> {
|
|
53
|
+
static displayName = 'Flex'
|
|
53
54
|
static readonly componentId = 'Flex'
|
|
54
55
|
|
|
55
56
|
componentDidMount() {
|
|
@@ -28,9 +28,9 @@ import { omitProps } from '@instructure/ui-react-utils'
|
|
|
28
28
|
import { View } from '@instructure/ui-view/latest'
|
|
29
29
|
import { withStyle } from '@instructure/emotion'
|
|
30
30
|
|
|
31
|
-
import generateStyle from './styles'
|
|
31
|
+
import generateStyle from './styles.js'
|
|
32
32
|
|
|
33
|
-
import { allowedProps } from './props'
|
|
33
|
+
import { allowedProps } from './props.js'
|
|
34
34
|
import type { FlexItemProps } from './props'
|
|
35
35
|
|
|
36
36
|
/**
|
|
@@ -41,6 +41,7 @@ id: Flex.Item
|
|
|
41
41
|
**/
|
|
42
42
|
@withStyle(generateStyle, null)
|
|
43
43
|
class Item extends Component<FlexItemProps> {
|
|
44
|
+
static displayName = 'Item'
|
|
44
45
|
static readonly componentId = 'Flex.Item'
|
|
45
46
|
|
|
46
47
|
componentDidMount() {
|
package/src/Flex/v2/index.tsx
CHANGED
|
@@ -33,12 +33,12 @@ import {
|
|
|
33
33
|
import { View } from '@instructure/ui-view/latest'
|
|
34
34
|
import { withStyleNew } from '@instructure/emotion'
|
|
35
35
|
|
|
36
|
-
import { Item } from './Item'
|
|
36
|
+
import { Item } from './Item/index.js'
|
|
37
37
|
import type { FlexItemProps } from './Item/props'
|
|
38
38
|
|
|
39
|
-
import generateStyle from './styles'
|
|
39
|
+
import generateStyle from './styles.js'
|
|
40
40
|
|
|
41
|
-
import { allowedProps } from './props'
|
|
41
|
+
import { allowedProps } from './props.js'
|
|
42
42
|
import type { FlexProps } from './props'
|
|
43
43
|
|
|
44
44
|
/**
|
|
@@ -49,6 +49,7 @@ category: components
|
|
|
49
49
|
**/
|
|
50
50
|
@withStyleNew(generateStyle)
|
|
51
51
|
class Flex extends Component<FlexProps> {
|
|
52
|
+
static displayName = 'Flex'
|
|
52
53
|
static readonly componentId = 'Flex'
|
|
53
54
|
|
|
54
55
|
componentDidMount() {
|
package/src/exports/a.ts
CHANGED
package/src/exports/b.ts
CHANGED