@instructure/ui 10.12.0 → 10.12.1-snapshot-0
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 +11 -0
- package/es/index.js +1 -1
- package/lib/index.js +0 -7
- package/package.json +75 -75
- package/src/index.ts +0 -2
- package/tsconfig.build.tsbuildinfo +1 -1
- package/types/index.d.ts +2 -2
- package/types/index.d.ts.map +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
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
|
+
## [10.12.1-snapshot-0](https://github.com/instructure/instructure-ui/compare/v10.12.0...v10.12.1-snapshot-0) (2025-02-26)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **many:** fix form label not read by NVDA in hover mode and other layout issues ([ef77281](https://github.com/instructure/instructure-ui/commit/ef77281890511e8eea794196445d3ef2454537ba))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [10.12.0](https://github.com/instructure/instructure-ui/compare/v10.11.0...v10.12.0) (2025-02-24)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @instructure/ui
|
package/es/index.js
CHANGED
|
@@ -45,7 +45,7 @@ export { Expandable } from '@instructure/ui-expandable';
|
|
|
45
45
|
export { FileDrop } from '@instructure/ui-file-drop';
|
|
46
46
|
export { Flex, FlexItem } from '@instructure/ui-flex';
|
|
47
47
|
export { Focusable } from '@instructure/ui-focusable';
|
|
48
|
-
export { FormField,
|
|
48
|
+
export { FormField, FormFieldMessage, FormFieldMessages, FormFieldLayout, FormFieldGroup, FormPropTypes } from '@instructure/ui-form-field';
|
|
49
49
|
export { Grid, GridRow, GridCol } from '@instructure/ui-grid';
|
|
50
50
|
export { Heading } from '@instructure/ui-heading';
|
|
51
51
|
export { ApplyLocale, TextDirectionContext, ApplyLocaleContext, textDirectionContextConsumer, DateTime, getTextDirection, I18nPropTypes, Locale, DIRECTION } from '@instructure/ui-i18n';
|
package/lib/index.js
CHANGED
|
@@ -54,7 +54,6 @@ var _exportNames = {
|
|
|
54
54
|
FlexItem: true,
|
|
55
55
|
Focusable: true,
|
|
56
56
|
FormField: true,
|
|
57
|
-
FormFieldLabel: true,
|
|
58
57
|
FormFieldMessage: true,
|
|
59
58
|
FormFieldMessages: true,
|
|
60
59
|
FormFieldLayout: true,
|
|
@@ -493,12 +492,6 @@ Object.defineProperty(exports, "FormFieldGroup", {
|
|
|
493
492
|
return _uiFormField.FormFieldGroup;
|
|
494
493
|
}
|
|
495
494
|
});
|
|
496
|
-
Object.defineProperty(exports, "FormFieldLabel", {
|
|
497
|
-
enumerable: true,
|
|
498
|
-
get: function () {
|
|
499
|
-
return _uiFormField.FormFieldLabel;
|
|
500
|
-
}
|
|
501
|
-
});
|
|
502
495
|
Object.defineProperty(exports, "FormFieldLayout", {
|
|
503
496
|
enumerable: true,
|
|
504
497
|
get: function () {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instructure/ui",
|
|
3
|
-
"version": "10.12.0",
|
|
3
|
+
"version": "10.12.1-snapshot-0",
|
|
4
4
|
"description": "A meta package exporting all UI components",
|
|
5
5
|
"author": "Instructure, Inc. Engineering and Product Design",
|
|
6
6
|
"module": "./es/index.js",
|
|
@@ -24,82 +24,82 @@
|
|
|
24
24
|
"license": "MIT",
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"@babel/runtime": "^7.26.0",
|
|
27
|
-
"@instructure/emotion": "10.12.0",
|
|
28
|
-
"@instructure/ui-a11y-content": "10.12.0",
|
|
29
|
-
"@instructure/ui-alerts": "10.12.0",
|
|
30
|
-
"@instructure/ui-avatar": "10.12.0",
|
|
31
|
-
"@instructure/ui-badge": "10.12.0",
|
|
32
|
-
"@instructure/ui-billboard": "10.12.0",
|
|
33
|
-
"@instructure/ui-breadcrumb": "10.12.0",
|
|
34
|
-
"@instructure/ui-buttons": "10.12.0",
|
|
35
|
-
"@instructure/ui-byline": "10.12.0",
|
|
36
|
-
"@instructure/ui-calendar": "10.12.0",
|
|
37
|
-
"@instructure/ui-checkbox": "10.12.0",
|
|
38
|
-
"@instructure/ui-code-editor": "10.12.0",
|
|
39
|
-
"@instructure/ui-color-picker": "10.12.0",
|
|
40
|
-
"@instructure/ui-date-input": "10.12.0",
|
|
41
|
-
"@instructure/ui-date-time-input": "10.12.0",
|
|
42
|
-
"@instructure/ui-dialog": "10.12.0",
|
|
43
|
-
"@instructure/ui-drawer-layout": "10.12.0",
|
|
44
|
-
"@instructure/ui-drilldown": "10.12.0",
|
|
45
|
-
"@instructure/ui-editable": "10.12.0",
|
|
46
|
-
"@instructure/ui-expandable": "10.12.0",
|
|
47
|
-
"@instructure/ui-file-drop": "10.12.0",
|
|
48
|
-
"@instructure/ui-flex": "10.12.0",
|
|
49
|
-
"@instructure/ui-focusable": "10.12.0",
|
|
50
|
-
"@instructure/ui-form-field": "10.12.0",
|
|
51
|
-
"@instructure/ui-grid": "10.12.0",
|
|
52
|
-
"@instructure/ui-heading": "10.12.0",
|
|
53
|
-
"@instructure/ui-i18n": "10.12.0",
|
|
54
|
-
"@instructure/ui-icons": "10.12.0",
|
|
55
|
-
"@instructure/ui-img": "10.12.0",
|
|
56
|
-
"@instructure/ui-link": "10.12.0",
|
|
57
|
-
"@instructure/ui-list": "10.12.0",
|
|
58
|
-
"@instructure/ui-menu": "10.12.0",
|
|
59
|
-
"@instructure/ui-metric": "10.12.0",
|
|
60
|
-
"@instructure/ui-modal": "10.12.0",
|
|
61
|
-
"@instructure/ui-motion": "10.12.0",
|
|
62
|
-
"@instructure/ui-navigation": "10.12.0",
|
|
63
|
-
"@instructure/ui-number-input": "10.12.0",
|
|
64
|
-
"@instructure/ui-options": "10.12.0",
|
|
65
|
-
"@instructure/ui-overlays": "10.12.0",
|
|
66
|
-
"@instructure/ui-pages": "10.12.0",
|
|
67
|
-
"@instructure/ui-pagination": "10.12.0",
|
|
68
|
-
"@instructure/ui-pill": "10.12.0",
|
|
69
|
-
"@instructure/ui-popover": "10.12.0",
|
|
70
|
-
"@instructure/ui-portal": "10.12.0",
|
|
71
|
-
"@instructure/ui-position": "10.12.0",
|
|
72
|
-
"@instructure/ui-progress": "10.12.0",
|
|
73
|
-
"@instructure/ui-radio-input": "10.12.0",
|
|
74
|
-
"@instructure/ui-range-input": "10.12.0",
|
|
75
|
-
"@instructure/ui-rating": "10.12.0",
|
|
76
|
-
"@instructure/ui-responsive": "10.12.0",
|
|
77
|
-
"@instructure/ui-select": "10.12.0",
|
|
78
|
-
"@instructure/ui-selectable": "10.12.0",
|
|
79
|
-
"@instructure/ui-side-nav-bar": "10.12.0",
|
|
80
|
-
"@instructure/ui-simple-select": "10.12.0",
|
|
81
|
-
"@instructure/ui-source-code-editor": "10.12.0",
|
|
82
|
-
"@instructure/ui-spinner": "10.12.0",
|
|
83
|
-
"@instructure/ui-svg-images": "10.12.0",
|
|
84
|
-
"@instructure/ui-table": "10.12.0",
|
|
85
|
-
"@instructure/ui-tabs": "10.12.0",
|
|
86
|
-
"@instructure/ui-tag": "10.12.0",
|
|
87
|
-
"@instructure/ui-text": "10.12.0",
|
|
88
|
-
"@instructure/ui-text-area": "10.12.0",
|
|
89
|
-
"@instructure/ui-text-input": "10.12.0",
|
|
90
|
-
"@instructure/ui-themes": "10.12.0",
|
|
91
|
-
"@instructure/ui-time-select": "10.12.0",
|
|
92
|
-
"@instructure/ui-toggle-details": "10.12.0",
|
|
93
|
-
"@instructure/ui-tooltip": "10.12.0",
|
|
94
|
-
"@instructure/ui-top-nav-bar": "10.12.0",
|
|
95
|
-
"@instructure/ui-tray": "10.12.0",
|
|
96
|
-
"@instructure/ui-tree-browser": "10.12.0",
|
|
97
|
-
"@instructure/ui-truncate-list": "10.12.0",
|
|
98
|
-
"@instructure/ui-truncate-text": "10.12.0",
|
|
99
|
-
"@instructure/ui-view": "10.12.0"
|
|
27
|
+
"@instructure/emotion": "10.12.1-snapshot-0",
|
|
28
|
+
"@instructure/ui-a11y-content": "10.12.1-snapshot-0",
|
|
29
|
+
"@instructure/ui-alerts": "10.12.1-snapshot-0",
|
|
30
|
+
"@instructure/ui-avatar": "10.12.1-snapshot-0",
|
|
31
|
+
"@instructure/ui-badge": "10.12.1-snapshot-0",
|
|
32
|
+
"@instructure/ui-billboard": "10.12.1-snapshot-0",
|
|
33
|
+
"@instructure/ui-breadcrumb": "10.12.1-snapshot-0",
|
|
34
|
+
"@instructure/ui-buttons": "10.12.1-snapshot-0",
|
|
35
|
+
"@instructure/ui-byline": "10.12.1-snapshot-0",
|
|
36
|
+
"@instructure/ui-calendar": "10.12.1-snapshot-0",
|
|
37
|
+
"@instructure/ui-checkbox": "10.12.1-snapshot-0",
|
|
38
|
+
"@instructure/ui-code-editor": "10.12.1-snapshot-0",
|
|
39
|
+
"@instructure/ui-color-picker": "10.12.1-snapshot-0",
|
|
40
|
+
"@instructure/ui-date-input": "10.12.1-snapshot-0",
|
|
41
|
+
"@instructure/ui-date-time-input": "10.12.1-snapshot-0",
|
|
42
|
+
"@instructure/ui-dialog": "10.12.1-snapshot-0",
|
|
43
|
+
"@instructure/ui-drawer-layout": "10.12.1-snapshot-0",
|
|
44
|
+
"@instructure/ui-drilldown": "10.12.1-snapshot-0",
|
|
45
|
+
"@instructure/ui-editable": "10.12.1-snapshot-0",
|
|
46
|
+
"@instructure/ui-expandable": "10.12.1-snapshot-0",
|
|
47
|
+
"@instructure/ui-file-drop": "10.12.1-snapshot-0",
|
|
48
|
+
"@instructure/ui-flex": "10.12.1-snapshot-0",
|
|
49
|
+
"@instructure/ui-focusable": "10.12.1-snapshot-0",
|
|
50
|
+
"@instructure/ui-form-field": "10.12.1-snapshot-0",
|
|
51
|
+
"@instructure/ui-grid": "10.12.1-snapshot-0",
|
|
52
|
+
"@instructure/ui-heading": "10.12.1-snapshot-0",
|
|
53
|
+
"@instructure/ui-i18n": "10.12.1-snapshot-0",
|
|
54
|
+
"@instructure/ui-icons": "10.12.1-snapshot-0",
|
|
55
|
+
"@instructure/ui-img": "10.12.1-snapshot-0",
|
|
56
|
+
"@instructure/ui-link": "10.12.1-snapshot-0",
|
|
57
|
+
"@instructure/ui-list": "10.12.1-snapshot-0",
|
|
58
|
+
"@instructure/ui-menu": "10.12.1-snapshot-0",
|
|
59
|
+
"@instructure/ui-metric": "10.12.1-snapshot-0",
|
|
60
|
+
"@instructure/ui-modal": "10.12.1-snapshot-0",
|
|
61
|
+
"@instructure/ui-motion": "10.12.1-snapshot-0",
|
|
62
|
+
"@instructure/ui-navigation": "10.12.1-snapshot-0",
|
|
63
|
+
"@instructure/ui-number-input": "10.12.1-snapshot-0",
|
|
64
|
+
"@instructure/ui-options": "10.12.1-snapshot-0",
|
|
65
|
+
"@instructure/ui-overlays": "10.12.1-snapshot-0",
|
|
66
|
+
"@instructure/ui-pages": "10.12.1-snapshot-0",
|
|
67
|
+
"@instructure/ui-pagination": "10.12.1-snapshot-0",
|
|
68
|
+
"@instructure/ui-pill": "10.12.1-snapshot-0",
|
|
69
|
+
"@instructure/ui-popover": "10.12.1-snapshot-0",
|
|
70
|
+
"@instructure/ui-portal": "10.12.1-snapshot-0",
|
|
71
|
+
"@instructure/ui-position": "10.12.1-snapshot-0",
|
|
72
|
+
"@instructure/ui-progress": "10.12.1-snapshot-0",
|
|
73
|
+
"@instructure/ui-radio-input": "10.12.1-snapshot-0",
|
|
74
|
+
"@instructure/ui-range-input": "10.12.1-snapshot-0",
|
|
75
|
+
"@instructure/ui-rating": "10.12.1-snapshot-0",
|
|
76
|
+
"@instructure/ui-responsive": "10.12.1-snapshot-0",
|
|
77
|
+
"@instructure/ui-select": "10.12.1-snapshot-0",
|
|
78
|
+
"@instructure/ui-selectable": "10.12.1-snapshot-0",
|
|
79
|
+
"@instructure/ui-side-nav-bar": "10.12.1-snapshot-0",
|
|
80
|
+
"@instructure/ui-simple-select": "10.12.1-snapshot-0",
|
|
81
|
+
"@instructure/ui-source-code-editor": "10.12.1-snapshot-0",
|
|
82
|
+
"@instructure/ui-spinner": "10.12.1-snapshot-0",
|
|
83
|
+
"@instructure/ui-svg-images": "10.12.1-snapshot-0",
|
|
84
|
+
"@instructure/ui-table": "10.12.1-snapshot-0",
|
|
85
|
+
"@instructure/ui-tabs": "10.12.1-snapshot-0",
|
|
86
|
+
"@instructure/ui-tag": "10.12.1-snapshot-0",
|
|
87
|
+
"@instructure/ui-text": "10.12.1-snapshot-0",
|
|
88
|
+
"@instructure/ui-text-area": "10.12.1-snapshot-0",
|
|
89
|
+
"@instructure/ui-text-input": "10.12.1-snapshot-0",
|
|
90
|
+
"@instructure/ui-themes": "10.12.1-snapshot-0",
|
|
91
|
+
"@instructure/ui-time-select": "10.12.1-snapshot-0",
|
|
92
|
+
"@instructure/ui-toggle-details": "10.12.1-snapshot-0",
|
|
93
|
+
"@instructure/ui-tooltip": "10.12.1-snapshot-0",
|
|
94
|
+
"@instructure/ui-top-nav-bar": "10.12.1-snapshot-0",
|
|
95
|
+
"@instructure/ui-tray": "10.12.1-snapshot-0",
|
|
96
|
+
"@instructure/ui-tree-browser": "10.12.1-snapshot-0",
|
|
97
|
+
"@instructure/ui-truncate-list": "10.12.1-snapshot-0",
|
|
98
|
+
"@instructure/ui-truncate-text": "10.12.1-snapshot-0",
|
|
99
|
+
"@instructure/ui-view": "10.12.1-snapshot-0"
|
|
100
100
|
},
|
|
101
101
|
"devDependencies": {
|
|
102
|
-
"@instructure/ui-babel-preset": "10.12.0"
|
|
102
|
+
"@instructure/ui-babel-preset": "10.12.1-snapshot-0"
|
|
103
103
|
},
|
|
104
104
|
"publishConfig": {
|
|
105
105
|
"access": "public"
|
package/src/index.ts
CHANGED
|
@@ -148,7 +148,6 @@ export { Focusable } from '@instructure/ui-focusable'
|
|
|
148
148
|
export type { FocusableProps } from '@instructure/ui-focusable'
|
|
149
149
|
export {
|
|
150
150
|
FormField,
|
|
151
|
-
FormFieldLabel,
|
|
152
151
|
FormFieldMessage,
|
|
153
152
|
FormFieldMessages,
|
|
154
153
|
FormFieldLayout,
|
|
@@ -157,7 +156,6 @@ export {
|
|
|
157
156
|
} from '@instructure/ui-form-field'
|
|
158
157
|
export type {
|
|
159
158
|
FormFieldGroupProps,
|
|
160
|
-
FormFieldLabelProps,
|
|
161
159
|
FormFieldMessageProps,
|
|
162
160
|
FormFieldMessagesProps,
|
|
163
161
|
FormFieldLayoutProps,
|