@instructure/ui 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 +44 -0
- package/LICENSE.md +1 -0
- package/babel.config.cjs +36 -0
- package/es/v11_7.js +1 -1
- package/package.json +77 -82
- package/src/v11_7.ts +0 -2
- package/tsconfig.build.tsbuildinfo +1 -1
- package/types/v11_7.d.ts +2 -2
- package/types/v11_7.d.ts.map +1 -1
- package/lib/package.json +0 -1
- package/lib/v11_6.js +0 -1337
- package/lib/v11_7.js +0 -1330
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,50 @@
|
|
|
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
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **many:** remove deprecated v2 items ([eaf8876](https://github.com/instructure/instructure-ui/commit/eaf88767c9beb95c4e09ee5705c387dfd79e4cb7))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### BREAKING CHANGES
|
|
15
|
+
|
|
16
|
+
* **many:** Removed FormFieldLabel component
|
|
17
|
+
|
|
18
|
+
Removed _content prop from DrawerLayout.Tray and DrawerLayout.Content
|
|
19
|
+
|
|
20
|
+
Removed _link prop from Link
|
|
21
|
+
|
|
22
|
+
Removed _node prop from Menu.Item
|
|
23
|
+
|
|
24
|
+
Removed _root prop from Pagination, TreeBrowser
|
|
25
|
+
|
|
26
|
+
Removed _select prop from SimpleSelect and TimeSelect
|
|
27
|
+
|
|
28
|
+
Removed _ref prop from TruncateText
|
|
29
|
+
|
|
30
|
+
Removed _element prop from View
|
|
31
|
+
|
|
32
|
+
Removed color="ai" from Heading
|
|
33
|
+
|
|
34
|
+
Removed variant="inline-small" and variant="standalone-small" from Link
|
|
35
|
+
|
|
36
|
+
Removed title prop from Tag
|
|
37
|
+
|
|
38
|
+
Removed focusRingBorderRadius prop from View
|
|
39
|
+
|
|
40
|
+
Removed hideActionsUserSeparator prop from TopNavBar.Layout
|
|
41
|
+
|
|
42
|
+
Removed handleFocusOutlineColor, handleFocusOutlineWidth, handleShadowColor from RangeInput
|
|
43
|
+
|
|
44
|
+
INSTUI-5025
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
|
|
6
50
|
## [11.7.3](https://github.com/instructure/instructure-ui/compare/v11.7.2...v11.7.3) (2026-05-07)
|
|
7
51
|
|
|
8
52
|
|
package/LICENSE.md
CHANGED
package/babel.config.cjs
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* The MIT License (MIT)
|
|
3
|
+
*
|
|
4
|
+
* Copyright (c) 2015 - present Instructure, Inc.
|
|
5
|
+
*
|
|
6
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7
|
+
* of this software and associated documentation files (the "Software"), to deal
|
|
8
|
+
* in the Software without restriction, including without limitation the rights
|
|
9
|
+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
10
|
+
* copies of the Software, and to permit persons to whom the Software is
|
|
11
|
+
* furnished to do so, subject to the following conditions:
|
|
12
|
+
*
|
|
13
|
+
* The above copyright notice and this permission notice shall be included in all
|
|
14
|
+
* copies or substantial portions of the Software.
|
|
15
|
+
*
|
|
16
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
17
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
18
|
+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
19
|
+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
20
|
+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
21
|
+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
22
|
+
* SOFTWARE.
|
|
23
|
+
*/
|
|
24
|
+
|
|
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/v11_7.js
CHANGED
|
@@ -44,7 +44,7 @@ export { Expandable } from '@instructure/ui-expandable';
|
|
|
44
44
|
export { FileDrop } from '@instructure/ui-file-drop/v11_7';
|
|
45
45
|
export { Flex, FlexItem } from '@instructure/ui-flex/v11_7';
|
|
46
46
|
export { Focusable } from '@instructure/ui-focusable';
|
|
47
|
-
export { FormField,
|
|
47
|
+
export { FormField, FormFieldMessage, FormFieldMessages, FormFieldLayout, FormFieldGroup } from '@instructure/ui-form-field/v11_7';
|
|
48
48
|
export { Grid, GridRow, GridCol } from '@instructure/ui-grid/v11_7';
|
|
49
49
|
export { Heading } from '@instructure/ui-heading/v11_7';
|
|
50
50
|
export { ApplyLocale, TextDirectionContext, ApplyLocaleContext, textDirectionContextConsumer, DateTime, getTextDirection, Locale, DIRECTION } from '@instructure/ui-i18n';
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/ui",
|
|
3
|
-
"version": "11.7.
|
|
3
|
+
"version": "11.7.4-pr-snapshot-1781695314229",
|
|
4
|
+
"type": "module",
|
|
4
5
|
"description": "A meta package exporting all UI components",
|
|
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,82 +15,82 @@
|
|
|
15
15
|
"license": "MIT",
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@babel/runtime": "^7.29.2",
|
|
18
|
-
"@instructure/emotion": "11.7.
|
|
19
|
-
"@instructure/ui-
|
|
20
|
-
"@instructure/ui-
|
|
21
|
-
"@instructure/ui-avatar": "11.7.
|
|
22
|
-
"@instructure/ui-badge": "11.7.
|
|
23
|
-
"@instructure/ui-
|
|
24
|
-
"@instructure/ui-billboard": "11.7.
|
|
25
|
-
"@instructure/ui-
|
|
26
|
-
"@instructure/ui-
|
|
27
|
-
"@instructure/ui-
|
|
28
|
-
"@instructure/ui-checkbox": "11.7.
|
|
29
|
-
"@instructure/ui-
|
|
30
|
-
"@instructure/ui-date-input": "11.7.
|
|
31
|
-
"@instructure/ui-date-time-input": "11.7.
|
|
32
|
-
"@instructure/ui-
|
|
33
|
-
"@instructure/ui-
|
|
34
|
-
"@instructure/ui-
|
|
35
|
-
"@instructure/ui-
|
|
36
|
-
"@instructure/ui-editable": "11.7.
|
|
37
|
-
"@instructure/ui-
|
|
38
|
-
"@instructure/ui-
|
|
39
|
-
"@instructure/ui-focusable": "11.7.
|
|
40
|
-
"@instructure/ui-
|
|
41
|
-
"@instructure/ui-
|
|
42
|
-
"@instructure/ui-heading": "11.7.
|
|
43
|
-
"@instructure/ui-
|
|
44
|
-
"@instructure/ui-
|
|
45
|
-
"@instructure/ui-img": "11.7.
|
|
46
|
-
"@instructure/ui-
|
|
47
|
-
"@instructure/ui-
|
|
48
|
-
"@instructure/ui-metric": "11.7.
|
|
49
|
-
"@instructure/ui-
|
|
50
|
-
"@instructure/ui-
|
|
51
|
-
"@instructure/ui-
|
|
52
|
-
"@instructure/ui-options": "11.7.
|
|
53
|
-
"@instructure/ui-
|
|
54
|
-
"@instructure/ui-
|
|
55
|
-
"@instructure/ui-number-input": "11.7.
|
|
56
|
-
"@instructure/ui-
|
|
57
|
-
"@instructure/ui-pagination": "11.7.
|
|
58
|
-
"@instructure/ui-
|
|
59
|
-
"@instructure/ui-
|
|
60
|
-
"@instructure/ui-popover": "11.7.
|
|
61
|
-
"@instructure/ui-
|
|
62
|
-
"@instructure/ui-
|
|
63
|
-
"@instructure/ui-
|
|
64
|
-
"@instructure/ui-
|
|
65
|
-
"@instructure/ui-
|
|
66
|
-
"@instructure/ui-responsive": "11.7.
|
|
67
|
-
"@instructure/ui-
|
|
68
|
-
"@instructure/ui-
|
|
69
|
-
"@instructure/ui-
|
|
70
|
-
"@instructure/ui-
|
|
71
|
-
"@instructure/ui-
|
|
72
|
-
"@instructure/ui-
|
|
73
|
-
"@instructure/ui-
|
|
74
|
-
"@instructure/ui-
|
|
75
|
-
"@instructure/ui-
|
|
76
|
-
"@instructure/ui-
|
|
77
|
-
"@instructure/ui-text": "11.7.
|
|
78
|
-
"@instructure/ui-
|
|
79
|
-
"@instructure/ui-text-input": "11.7.
|
|
80
|
-
"@instructure/ui-themes": "11.7.
|
|
81
|
-
"@instructure/ui-
|
|
82
|
-
"@instructure/ui-
|
|
83
|
-
"@instructure/ui-toggle-details": "11.7.
|
|
84
|
-
"@instructure/ui-
|
|
85
|
-
"@instructure/ui-
|
|
86
|
-
"@instructure/ui-
|
|
87
|
-
"@instructure/ui-
|
|
88
|
-
"@instructure/ui-
|
|
89
|
-
"@instructure/ui-
|
|
90
|
-
"@instructure/ui-
|
|
18
|
+
"@instructure/emotion": "11.7.4-pr-snapshot-1781695314229",
|
|
19
|
+
"@instructure/ui-alerts": "11.7.4-pr-snapshot-1781695314229",
|
|
20
|
+
"@instructure/ui-a11y-content": "11.7.4-pr-snapshot-1781695314229",
|
|
21
|
+
"@instructure/ui-avatar": "11.7.4-pr-snapshot-1781695314229",
|
|
22
|
+
"@instructure/ui-badge": "11.7.4-pr-snapshot-1781695314229",
|
|
23
|
+
"@instructure/ui-breadcrumb": "11.7.4-pr-snapshot-1781695314229",
|
|
24
|
+
"@instructure/ui-billboard": "11.7.4-pr-snapshot-1781695314229",
|
|
25
|
+
"@instructure/ui-buttons": "11.7.4-pr-snapshot-1781695314229",
|
|
26
|
+
"@instructure/ui-calendar": "11.7.4-pr-snapshot-1781695314229",
|
|
27
|
+
"@instructure/ui-color-picker": "11.7.4-pr-snapshot-1781695314229",
|
|
28
|
+
"@instructure/ui-checkbox": "11.7.4-pr-snapshot-1781695314229",
|
|
29
|
+
"@instructure/ui-byline": "11.7.4-pr-snapshot-1781695314229",
|
|
30
|
+
"@instructure/ui-date-input": "11.7.4-pr-snapshot-1781695314229",
|
|
31
|
+
"@instructure/ui-date-time-input": "11.7.4-pr-snapshot-1781695314229",
|
|
32
|
+
"@instructure/ui-drawer-layout": "11.7.4-pr-snapshot-1781695314229",
|
|
33
|
+
"@instructure/ui-drilldown": "11.7.4-pr-snapshot-1781695314229",
|
|
34
|
+
"@instructure/ui-dialog": "11.7.4-pr-snapshot-1781695314229",
|
|
35
|
+
"@instructure/ui-file-drop": "11.7.4-pr-snapshot-1781695314229",
|
|
36
|
+
"@instructure/ui-editable": "11.7.4-pr-snapshot-1781695314229",
|
|
37
|
+
"@instructure/ui-flex": "11.7.4-pr-snapshot-1781695314229",
|
|
38
|
+
"@instructure/ui-form-field": "11.7.4-pr-snapshot-1781695314229",
|
|
39
|
+
"@instructure/ui-focusable": "11.7.4-pr-snapshot-1781695314229",
|
|
40
|
+
"@instructure/ui-grid": "11.7.4-pr-snapshot-1781695314229",
|
|
41
|
+
"@instructure/ui-expandable": "11.7.4-pr-snapshot-1781695314229",
|
|
42
|
+
"@instructure/ui-heading": "11.7.4-pr-snapshot-1781695314229",
|
|
43
|
+
"@instructure/ui-i18n": "11.7.4-pr-snapshot-1781695314229",
|
|
44
|
+
"@instructure/ui-icons": "11.7.4-pr-snapshot-1781695314229",
|
|
45
|
+
"@instructure/ui-img": "11.7.4-pr-snapshot-1781695314229",
|
|
46
|
+
"@instructure/ui-instructure": "11.7.4-pr-snapshot-1781695314229",
|
|
47
|
+
"@instructure/ui-link": "11.7.4-pr-snapshot-1781695314229",
|
|
48
|
+
"@instructure/ui-metric": "11.7.4-pr-snapshot-1781695314229",
|
|
49
|
+
"@instructure/ui-modal": "11.7.4-pr-snapshot-1781695314229",
|
|
50
|
+
"@instructure/ui-list": "11.7.4-pr-snapshot-1781695314229",
|
|
51
|
+
"@instructure/ui-navigation": "11.7.4-pr-snapshot-1781695314229",
|
|
52
|
+
"@instructure/ui-options": "11.7.4-pr-snapshot-1781695314229",
|
|
53
|
+
"@instructure/ui-overlays": "11.7.4-pr-snapshot-1781695314229",
|
|
54
|
+
"@instructure/ui-menu": "11.7.4-pr-snapshot-1781695314229",
|
|
55
|
+
"@instructure/ui-number-input": "11.7.4-pr-snapshot-1781695314229",
|
|
56
|
+
"@instructure/ui-motion": "11.7.4-pr-snapshot-1781695314229",
|
|
57
|
+
"@instructure/ui-pagination": "11.7.4-pr-snapshot-1781695314229",
|
|
58
|
+
"@instructure/ui-pages": "11.7.4-pr-snapshot-1781695314229",
|
|
59
|
+
"@instructure/ui-pill": "11.7.4-pr-snapshot-1781695314229",
|
|
60
|
+
"@instructure/ui-popover": "11.7.4-pr-snapshot-1781695314229",
|
|
61
|
+
"@instructure/ui-portal": "11.7.4-pr-snapshot-1781695314229",
|
|
62
|
+
"@instructure/ui-radio-input": "11.7.4-pr-snapshot-1781695314229",
|
|
63
|
+
"@instructure/ui-position": "11.7.4-pr-snapshot-1781695314229",
|
|
64
|
+
"@instructure/ui-range-input": "11.7.4-pr-snapshot-1781695314229",
|
|
65
|
+
"@instructure/ui-rating": "11.7.4-pr-snapshot-1781695314229",
|
|
66
|
+
"@instructure/ui-responsive": "11.7.4-pr-snapshot-1781695314229",
|
|
67
|
+
"@instructure/ui-selectable": "11.7.4-pr-snapshot-1781695314229",
|
|
68
|
+
"@instructure/ui-side-nav-bar": "11.7.4-pr-snapshot-1781695314229",
|
|
69
|
+
"@instructure/ui-simple-select": "11.7.4-pr-snapshot-1781695314229",
|
|
70
|
+
"@instructure/ui-source-code-editor": "11.7.4-pr-snapshot-1781695314229",
|
|
71
|
+
"@instructure/ui-progress": "11.7.4-pr-snapshot-1781695314229",
|
|
72
|
+
"@instructure/ui-spinner": "11.7.4-pr-snapshot-1781695314229",
|
|
73
|
+
"@instructure/ui-svg-images": "11.7.4-pr-snapshot-1781695314229",
|
|
74
|
+
"@instructure/ui-select": "11.7.4-pr-snapshot-1781695314229",
|
|
75
|
+
"@instructure/ui-table": "11.7.4-pr-snapshot-1781695314229",
|
|
76
|
+
"@instructure/ui-tabs": "11.7.4-pr-snapshot-1781695314229",
|
|
77
|
+
"@instructure/ui-text": "11.7.4-pr-snapshot-1781695314229",
|
|
78
|
+
"@instructure/ui-text-area": "11.7.4-pr-snapshot-1781695314229",
|
|
79
|
+
"@instructure/ui-text-input": "11.7.4-pr-snapshot-1781695314229",
|
|
80
|
+
"@instructure/ui-themes": "11.7.4-pr-snapshot-1781695314229",
|
|
81
|
+
"@instructure/ui-time-select": "11.7.4-pr-snapshot-1781695314229",
|
|
82
|
+
"@instructure/ui-tag": "11.7.4-pr-snapshot-1781695314229",
|
|
83
|
+
"@instructure/ui-toggle-details": "11.7.4-pr-snapshot-1781695314229",
|
|
84
|
+
"@instructure/ui-top-nav-bar": "11.7.4-pr-snapshot-1781695314229",
|
|
85
|
+
"@instructure/ui-tooltip": "11.7.4-pr-snapshot-1781695314229",
|
|
86
|
+
"@instructure/ui-tray": "11.7.4-pr-snapshot-1781695314229",
|
|
87
|
+
"@instructure/ui-tree-browser": "11.7.4-pr-snapshot-1781695314229",
|
|
88
|
+
"@instructure/ui-truncate-list": "11.7.4-pr-snapshot-1781695314229",
|
|
89
|
+
"@instructure/ui-truncate-text": "11.7.4-pr-snapshot-1781695314229",
|
|
90
|
+
"@instructure/ui-view": "11.7.4-pr-snapshot-1781695314229"
|
|
91
91
|
},
|
|
92
92
|
"devDependencies": {
|
|
93
|
-
"@instructure/ui-babel-preset": "11.7.
|
|
93
|
+
"@instructure/ui-babel-preset": "11.7.4-pr-snapshot-1781695314229"
|
|
94
94
|
},
|
|
95
95
|
"peerDependencies": {
|
|
96
96
|
"react": ">=18 <=19",
|
|
@@ -101,7 +101,6 @@
|
|
|
101
101
|
},
|
|
102
102
|
"sideEffects": false,
|
|
103
103
|
"exports": {
|
|
104
|
-
"./lib/*": "./lib/*",
|
|
105
104
|
"./es/*": "./es/*",
|
|
106
105
|
"./types/*": "./types/*",
|
|
107
106
|
"./package.json": "./package.json",
|
|
@@ -110,28 +109,24 @@
|
|
|
110
109
|
"src": "./src/v11_6.ts",
|
|
111
110
|
"types": "./types/v11_6.d.ts",
|
|
112
111
|
"import": "./es/v11_6.js",
|
|
113
|
-
"require": "./lib/v11_6.js",
|
|
114
112
|
"default": "./es/v11_6.js"
|
|
115
113
|
},
|
|
116
114
|
"./v11_6": {
|
|
117
115
|
"src": "./src/v11_6.ts",
|
|
118
116
|
"types": "./types/v11_6.d.ts",
|
|
119
117
|
"import": "./es/v11_6.js",
|
|
120
|
-
"require": "./lib/v11_6.js",
|
|
121
118
|
"default": "./es/v11_6.js"
|
|
122
119
|
},
|
|
123
120
|
"./v11_7": {
|
|
124
121
|
"src": "./src/v11_7.ts",
|
|
125
122
|
"types": "./types/v11_7.d.ts",
|
|
126
123
|
"import": "./es/v11_7.js",
|
|
127
|
-
"require": "./lib/v11_7.js",
|
|
128
124
|
"default": "./es/v11_7.js"
|
|
129
125
|
},
|
|
130
126
|
"./latest": {
|
|
131
127
|
"src": "./src/v11_7.ts",
|
|
132
128
|
"types": "./types/v11_7.d.ts",
|
|
133
129
|
"import": "./es/v11_7.js",
|
|
134
|
-
"require": "./lib/v11_7.js",
|
|
135
130
|
"default": "./es/v11_7.js"
|
|
136
131
|
}
|
|
137
132
|
},
|
|
@@ -139,7 +134,7 @@
|
|
|
139
134
|
"lint": "ui-scripts lint",
|
|
140
135
|
"lint:fix": "ui-scripts lint --fix",
|
|
141
136
|
"clean": "ui-scripts clean",
|
|
142
|
-
"build": "ui-scripts build
|
|
137
|
+
"build": "ui-scripts build",
|
|
143
138
|
"build:watch": "pnpm run ts:check -- --watch & ui-scripts build --watch",
|
|
144
139
|
"build:types": "tsc -p tsconfig.build.json",
|
|
145
140
|
"ts:check": "tsc -p tsconfig.build.json --noEmit --emitDeclarationOnly false"
|
package/src/v11_7.ts
CHANGED
|
@@ -152,7 +152,6 @@ export { Focusable } from '@instructure/ui-focusable'
|
|
|
152
152
|
export type { FocusableProps } from '@instructure/ui-focusable'
|
|
153
153
|
export {
|
|
154
154
|
FormField,
|
|
155
|
-
FormFieldLabel,
|
|
156
155
|
FormFieldMessage,
|
|
157
156
|
FormFieldMessages,
|
|
158
157
|
FormFieldLayout,
|
|
@@ -161,7 +160,6 @@ export {
|
|
|
161
160
|
export type {
|
|
162
161
|
FormFieldGroupProps,
|
|
163
162
|
FormFieldMessageProps,
|
|
164
|
-
FormFieldLabelProps,
|
|
165
163
|
FormFieldMessagesProps,
|
|
166
164
|
FormFieldLayoutProps,
|
|
167
165
|
FormFieldOwnProps,
|