@instructure/ui-time-select 11.6.0 → 11.6.1-snapshot-129

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instructure/ui-time-select",
3
- "version": "11.6.0",
3
+ "version": "11.6.1-snapshot-129",
4
4
  "description": "A component for selecting time values.",
5
5
  "author": "Instructure, Inc. Engineering and Product Design",
6
6
  "module": "./es/index.js",
@@ -15,13 +15,13 @@
15
15
  "license": "MIT",
16
16
  "dependencies": {
17
17
  "@babel/runtime": "^7.27.6",
18
- "@instructure/shared-types": "11.6.0",
19
- "@instructure/ui-form-field": "11.6.0",
20
- "@instructure/ui-position": "11.6.0",
21
- "@instructure/ui-react-utils": "11.6.0",
22
- "@instructure/ui-i18n": "11.6.0",
23
- "@instructure/ui-select": "11.6.0",
24
- "@instructure/ui-utils": "11.6.0"
18
+ "@instructure/shared-types": "11.6.1-snapshot-129",
19
+ "@instructure/ui-i18n": "11.6.1-snapshot-129",
20
+ "@instructure/ui-form-field": "11.6.1-snapshot-129",
21
+ "@instructure/ui-react-utils": "11.6.1-snapshot-129",
22
+ "@instructure/ui-position": "11.6.1-snapshot-129",
23
+ "@instructure/ui-select": "11.6.1-snapshot-129",
24
+ "@instructure/ui-utils": "11.6.1-snapshot-129"
25
25
  },
26
26
  "devDependencies": {
27
27
  "@testing-library/jest-dom": "^6.6.3",
@@ -29,7 +29,7 @@
29
29
  "@testing-library/user-event": "^14.6.1",
30
30
  "moment-timezone": "^0.6.0",
31
31
  "vitest": "^3.2.2",
32
- "@instructure/ui-babel-preset": "11.6.0"
32
+ "@instructure/ui-babel-preset": "11.6.1-snapshot-129"
33
33
  },
34
34
  "peerDependencies": {
35
35
  "react": ">=18 <=19"
@@ -39,17 +39,39 @@
39
39
  },
40
40
  "sideEffects": false,
41
41
  "exports": {
42
- ".": {
43
- "types": "./types/index.d.ts",
44
- "import": "./es/index.js",
45
- "require": "./lib/index.js",
46
- "default": "./es/index.js"
47
- },
48
42
  "./lib/*": "./lib/*",
49
43
  "./es/*": "./es/*",
50
44
  "./types/*": "./types/*",
51
45
  "./package.json": "./package.json",
52
- "./src/*": "./src/*"
46
+ "./src/*": "./src/*",
47
+ ".": {
48
+ "src": "./src/exports/a.ts",
49
+ "types": "./types/exports/a.d.ts",
50
+ "import": "./es/exports/a.js",
51
+ "require": "./lib/exports/a.js",
52
+ "default": "./es/exports/a.js"
53
+ },
54
+ "./v11_6": {
55
+ "src": "./src/exports/a.ts",
56
+ "types": "./types/exports/a.d.ts",
57
+ "import": "./es/exports/a.js",
58
+ "require": "./lib/exports/a.js",
59
+ "default": "./es/exports/a.js"
60
+ },
61
+ "./v11_7": {
62
+ "src": "./src/exports/a.ts",
63
+ "types": "./types/exports/a.d.ts",
64
+ "import": "./es/exports/a.js",
65
+ "require": "./lib/exports/a.js",
66
+ "default": "./es/exports/a.js"
67
+ },
68
+ "./latest": {
69
+ "src": "./src/exports/a.ts",
70
+ "types": "./types/exports/a.d.ts",
71
+ "import": "./es/exports/a.js",
72
+ "require": "./lib/exports/a.js",
73
+ "default": "./es/exports/a.js"
74
+ }
53
75
  },
54
76
  "scripts": {
55
77
  "lint": "ui-scripts lint",
@@ -31,10 +31,10 @@ import {
31
31
  callRenderProp,
32
32
  withDeterministicId
33
33
  } from '@instructure/ui-react-utils'
34
- import { Select } from '@instructure/ui-select'
34
+ import { Select } from '@instructure/ui-select/v11_6'
35
35
  import * as utils from '@instructure/ui-utils'
36
36
 
37
- import type { SelectProps } from '@instructure/ui-select'
37
+ import type { SelectProps } from '@instructure/ui-select/v11_6'
38
38
  import type {
39
39
  TimeSelectProps,
40
40
  TimeSelectState,
@@ -24,7 +24,7 @@
24
24
 
25
25
  import { InputHTMLAttributes } from 'react'
26
26
 
27
- import type { FormMessage } from '@instructure/ui-form-field'
27
+ import type { FormMessage } from '@instructure/ui-form-field/v11_6'
28
28
  import type { OtherHTMLAttributes } from '@instructure/shared-types'
29
29
  import type {
30
30
  PlacementPropValues,
@@ -22,5 +22,5 @@
22
22
  * SOFTWARE.
23
23
  */
24
24
 
25
- export { TimeSelect } from './TimeSelect'
26
- export type { TimeSelectProps } from './TimeSelect/props'
25
+ export { TimeSelect } from '../TimeSelect/v1'
26
+ export type { TimeSelectProps } from '../TimeSelect/v1/props'