@instructure/ui-truncate-text 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.
Files changed (100) hide show
  1. package/CHANGELOG.md +29 -277
  2. package/es/TruncateText/{index.js → v1/index.js} +1 -1
  3. package/es/TruncateText/v2/index.js +264 -0
  4. package/es/TruncateText/v2/props.js +26 -0
  5. package/es/TruncateText/v2/styles.js +58 -0
  6. package/es/TruncateText/v2/utils/cleanData.js +158 -0
  7. package/es/TruncateText/v2/utils/cleanString.js +53 -0
  8. package/es/TruncateText/v2/utils/measureText.js +74 -0
  9. package/es/TruncateText/v2/utils/truncate.js +341 -0
  10. package/es/{index.js → exports/a.js} +1 -1
  11. package/{src/index.ts → es/exports/b.js} +1 -2
  12. package/lib/TruncateText/{index.js → v1/index.js} +1 -1
  13. package/lib/TruncateText/v2/index.js +271 -0
  14. package/lib/TruncateText/v2/props.js +31 -0
  15. package/lib/TruncateText/v2/styles.js +64 -0
  16. package/lib/TruncateText/v2/utils/cleanData.js +164 -0
  17. package/lib/TruncateText/v2/utils/cleanString.js +59 -0
  18. package/lib/TruncateText/v2/utils/measureText.js +79 -0
  19. package/lib/TruncateText/v2/utils/truncate.js +350 -0
  20. package/lib/{index.js → exports/a.js} +2 -2
  21. package/lib/exports/b.js +12 -0
  22. package/package.json +42 -20
  23. package/src/TruncateText/{index.tsx → v1/index.tsx} +1 -1
  24. package/src/TruncateText/v2/README.md +230 -0
  25. package/src/TruncateText/v2/index.tsx +314 -0
  26. package/src/TruncateText/v2/props.ts +113 -0
  27. package/src/TruncateText/v2/styles.ts +60 -0
  28. package/src/TruncateText/v2/utils/cleanData.ts +178 -0
  29. package/src/TruncateText/v2/utils/cleanString.ts +61 -0
  30. package/src/TruncateText/v2/utils/measureText.ts +86 -0
  31. package/src/TruncateText/v2/utils/truncate.ts +451 -0
  32. package/src/exports/a.ts +25 -0
  33. package/src/exports/b.ts +25 -0
  34. package/tsconfig.build.tsbuildinfo +1 -1
  35. package/types/TruncateText/v1/index.d.ts.map +1 -0
  36. package/types/TruncateText/v1/props.d.ts.map +1 -0
  37. package/types/TruncateText/v1/styles.d.ts.map +1 -0
  38. package/types/TruncateText/v1/theme.d.ts.map +1 -0
  39. package/types/TruncateText/v1/utils/cleanData.d.ts.map +1 -0
  40. package/types/TruncateText/v1/utils/cleanString.d.ts.map +1 -0
  41. package/types/TruncateText/v1/utils/measureText.d.ts.map +1 -0
  42. package/types/TruncateText/v1/utils/truncate.d.ts.map +1 -0
  43. package/types/TruncateText/v2/index.d.ts +47 -0
  44. package/types/TruncateText/v2/index.d.ts.map +1 -0
  45. package/types/TruncateText/v2/props.d.ts +61 -0
  46. package/types/TruncateText/v2/props.d.ts.map +1 -0
  47. package/types/TruncateText/v2/styles.d.ts +15 -0
  48. package/types/TruncateText/v2/styles.d.ts.map +1 -0
  49. package/types/TruncateText/v2/utils/cleanData.d.ts +19 -0
  50. package/types/TruncateText/v2/utils/cleanData.d.ts.map +1 -0
  51. package/types/TruncateText/v2/utils/cleanString.d.ts +16 -0
  52. package/types/TruncateText/v2/utils/cleanString.d.ts.map +1 -0
  53. package/types/TruncateText/v2/utils/measureText.d.ts +13 -0
  54. package/types/TruncateText/v2/utils/measureText.d.ts.map +1 -0
  55. package/types/TruncateText/v2/utils/truncate.d.ts +35 -0
  56. package/types/TruncateText/v2/utils/truncate.d.ts.map +1 -0
  57. package/types/exports/a.d.ts +3 -0
  58. package/types/exports/a.d.ts.map +1 -0
  59. package/types/exports/b.d.ts +3 -0
  60. package/types/exports/b.d.ts.map +1 -0
  61. package/types/TruncateText/index.d.ts.map +0 -1
  62. package/types/TruncateText/props.d.ts.map +0 -1
  63. package/types/TruncateText/styles.d.ts.map +0 -1
  64. package/types/TruncateText/theme.d.ts.map +0 -1
  65. package/types/TruncateText/utils/cleanData.d.ts.map +0 -1
  66. package/types/TruncateText/utils/cleanString.d.ts.map +0 -1
  67. package/types/TruncateText/utils/measureText.d.ts.map +0 -1
  68. package/types/TruncateText/utils/truncate.d.ts.map +0 -1
  69. package/types/index.d.ts +0 -3
  70. package/types/index.d.ts.map +0 -1
  71. /package/es/TruncateText/{props.js → v1/props.js} +0 -0
  72. /package/es/TruncateText/{styles.js → v1/styles.js} +0 -0
  73. /package/es/TruncateText/{theme.js → v1/theme.js} +0 -0
  74. /package/es/TruncateText/{utils → v1/utils}/cleanData.js +0 -0
  75. /package/es/TruncateText/{utils → v1/utils}/cleanString.js +0 -0
  76. /package/es/TruncateText/{utils → v1/utils}/measureText.js +0 -0
  77. /package/es/TruncateText/{utils → v1/utils}/truncate.js +0 -0
  78. /package/lib/TruncateText/{props.js → v1/props.js} +0 -0
  79. /package/lib/TruncateText/{styles.js → v1/styles.js} +0 -0
  80. /package/lib/TruncateText/{theme.js → v1/theme.js} +0 -0
  81. /package/lib/TruncateText/{utils → v1/utils}/cleanData.js +0 -0
  82. /package/lib/TruncateText/{utils → v1/utils}/cleanString.js +0 -0
  83. /package/lib/TruncateText/{utils → v1/utils}/measureText.js +0 -0
  84. /package/lib/TruncateText/{utils → v1/utils}/truncate.js +0 -0
  85. /package/src/TruncateText/{README.md → v1/README.md} +0 -0
  86. /package/src/TruncateText/{props.ts → v1/props.ts} +0 -0
  87. /package/src/TruncateText/{styles.ts → v1/styles.ts} +0 -0
  88. /package/src/TruncateText/{theme.ts → v1/theme.ts} +0 -0
  89. /package/src/TruncateText/{utils → v1/utils}/cleanData.ts +0 -0
  90. /package/src/TruncateText/{utils → v1/utils}/cleanString.ts +0 -0
  91. /package/src/TruncateText/{utils → v1/utils}/measureText.ts +0 -0
  92. /package/src/TruncateText/{utils → v1/utils}/truncate.ts +0 -0
  93. /package/types/TruncateText/{index.d.ts → v1/index.d.ts} +0 -0
  94. /package/types/TruncateText/{props.d.ts → v1/props.d.ts} +0 -0
  95. /package/types/TruncateText/{styles.d.ts → v1/styles.d.ts} +0 -0
  96. /package/types/TruncateText/{theme.d.ts → v1/theme.d.ts} +0 -0
  97. /package/types/TruncateText/{utils → v1/utils}/cleanData.d.ts +0 -0
  98. /package/types/TruncateText/{utils → v1/utils}/cleanString.d.ts +0 -0
  99. /package/types/TruncateText/{utils → v1/utils}/measureText.d.ts +0 -0
  100. /package/types/TruncateText/{utils → v1/utils}/truncate.d.ts +0 -0
package/CHANGELOG.md CHANGED
@@ -3,552 +3,304 @@
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.6.0](https://github.com/instructure/instructure-ui/compare/v11.5.0...v11.6.0) (2026-02-18)
6
+ ## [11.6.1-snapshot-129](https://github.com/instructure/instructure-ui/compare/v11.6.0...v11.6.1-snapshot-129) (2026-03-16)
7
7
 
8
- **Note:** Version bump only for package @instructure/ui-truncate-text
9
8
 
9
+ ### Features
10
10
 
11
+ * **many:** add solution for using both old and new token system in the same app ([688a713](https://github.com/instructure/instructure-ui/commit/688a713ff715433bb085323dbad61285387c5141))
12
+ * **ui-breadcrumb:** migrate to new theming system and add new lucide icon and change separator style calculation ([d6c8006](https://github.com/instructure/instructure-ui/commit/d6c8006d213e95c6502d611d9a8e6792ba46e55d))
13
+ * **ui-truncate-text:** rework TruncateText and sort the upgrade guide alphabetically ([61ea852](https://github.com/instructure/instructure-ui/commit/61ea8524000d08423249ff2f76acdb643ba1d047))
11
14
 
12
15
 
13
16
 
14
- # [11.5.0](https://github.com/instructure/instructure-ui/compare/v11.4.0...v11.5.0) (2026-02-03)
15
17
 
16
- **Note:** Version bump only for package @instructure/ui-truncate-text
17
18
 
19
+ # [11.6.0](https://github.com/instructure/instructure-ui/compare/v11.5.0...v11.6.0) (2026-02-18)
18
20
 
21
+ **Note:** Version bump only for package @instructure/ui-truncate-text
19
22
 
23
+ # [11.5.0](https://github.com/instructure/instructure-ui/compare/v11.4.0...v11.5.0) (2026-02-03)
20
24
 
25
+ **Note:** Version bump only for package @instructure/ui-truncate-text
21
26
 
22
27
  # [11.4.0](https://github.com/instructure/instructure-ui/compare/v11.3.0...v11.4.0) (2026-01-20)
23
28
 
24
29
  **Note:** Version bump only for package @instructure/ui-truncate-text
25
30
 
26
-
27
-
28
-
29
-
30
31
  # [11.3.0](https://github.com/instructure/instructure-ui/compare/v11.2.0...v11.3.0) (2026-01-12)
31
32
 
32
33
  **Note:** Version bump only for package @instructure/ui-truncate-text
33
34
 
34
-
35
-
36
-
37
-
38
35
  # [11.2.0](https://github.com/instructure/instructure-ui/compare/v11.0.1...v11.2.0) (2025-11-06)
39
36
 
40
-
41
37
  ### Features
42
38
 
43
- * **many:** migrate from npm to pnpm ([f7bb16e](https://github.com/instructure/instructure-ui/commit/f7bb16e114df83984c67d5a6e07fb4d9c65efc53))
44
-
45
-
46
-
47
-
39
+ - **many:** migrate from npm to pnpm ([f7bb16e](https://github.com/instructure/instructure-ui/commit/f7bb16e114df83984c67d5a6e07fb4d9c65efc53))
48
40
 
49
41
  # [11.1.0](https://github.com/instructure/instructure-ui/compare/v11.0.1...v11.1.0) (2025-11-05)
50
42
 
51
-
52
43
  ### Features
53
44
 
54
- * **many:** migrate from npm to pnpm ([f7bb16e](https://github.com/instructure/instructure-ui/commit/f7bb16e114df83984c67d5a6e07fb4d9c65efc53))
55
-
56
-
57
-
58
-
45
+ - **many:** migrate from npm to pnpm ([f7bb16e](https://github.com/instructure/instructure-ui/commit/f7bb16e114df83984c67d5a6e07fb4d9c65efc53))
59
46
 
60
47
  ## [11.0.1](https://github.com/instructure/instructure-ui/compare/v11.0.0...v11.0.1) (2025-10-13)
61
48
 
62
49
  **Note:** Version bump only for package @instructure/ui-truncate-text
63
50
 
64
-
65
-
66
-
67
-
68
51
  # [11.0.0](https://github.com/instructure/instructure-ui/compare/v10.26.0...v11.0.0) (2025-10-06)
69
52
 
70
-
71
53
  ### Features
72
54
 
73
- * **many:** instUI v11 release ([36f5438](https://github.com/instructure/instructure-ui/commit/36f54382669186227ba24798bbf7201ef2f5cd4c))
74
-
55
+ - **many:** instUI v11 release ([36f5438](https://github.com/instructure/instructure-ui/commit/36f54382669186227ba24798bbf7201ef2f5cd4c))
75
56
 
76
57
  ### BREAKING CHANGES
77
58
 
78
- * **many:** InstUI v11 contains the following breaking changes:
79
- - React 16 and 17 are no longer supported
80
- - remove `PropTypes` from all packages
81
- - remove `CodeEditor` component
82
- - remove `@instui/theme-registry` package
83
- - remove `@testable`, `@experimental`, `@hack` decorators
84
- - InstUISettingsProvider's `as` prop is removed
85
- - `canvas.use()`, `canvasHighContrast.use()` functions are removed
86
- - `canvasThemeLocal`, `canvasHighContrastThemeLocal` are removed
87
- - `variables` field on theme objects are removed
88
- - remove deprecated props from Table: Row's `isStacked`, Body's
59
+ - **many:** InstUI v11 contains the following breaking changes:
60
+
61
+ * React 16 and 17 are no longer supported
62
+ * remove `PropTypes` from all packages
63
+ * remove `CodeEditor` component
64
+ * remove `@instui/theme-registry` package
65
+ * remove `@testable`, `@experimental`, `@hack` decorators
66
+ * InstUISettingsProvider's `as` prop is removed
67
+ * `canvas.use()`, `canvasHighContrast.use()` functions are removed
68
+ * `canvasThemeLocal`, `canvasHighContrastThemeLocal` are removed
69
+ * `variables` field on theme objects are removed
70
+ * remove deprecated props from Table: Row's `isStacked`, Body's
89
71
  `isStacked`, `hover`, and `headers`
90
- - `Table`'s `caption` prop is now required
91
- - `ui-dom-utils`'s `getComputedStyle` can now return `undefined`
92
-
93
-
94
-
95
-
72
+ * `Table`'s `caption` prop is now required
73
+ * `ui-dom-utils`'s `getComputedStyle` can now return `undefined`
96
74
 
97
75
  # [10.26.0](https://github.com/instructure/instructure-ui/compare/v10.25.0...v10.26.0) (2025-10-01)
98
76
 
99
77
  **Note:** Version bump only for package @instructure/ui-truncate-text
100
78
 
101
-
102
-
103
-
104
-
105
79
  # [10.25.0](https://github.com/instructure/instructure-ui/compare/v10.24.2...v10.25.0) (2025-09-09)
106
80
 
107
81
  **Note:** Version bump only for package @instructure/ui-truncate-text
108
82
 
109
-
110
-
111
-
112
-
113
83
  ## [10.24.2](https://github.com/instructure/instructure-ui/compare/v10.24.1...v10.24.2) (2025-08-11)
114
84
 
115
85
  **Note:** Version bump only for package @instructure/ui-truncate-text
116
86
 
117
-
118
-
119
-
120
-
121
87
  ## [10.24.1](https://github.com/instructure/instructure-ui/compare/v10.24.0...v10.24.1) (2025-07-30)
122
88
 
123
89
  **Note:** Version bump only for package @instructure/ui-truncate-text
124
90
 
125
-
126
-
127
-
128
-
129
91
  # [10.24.0](https://github.com/instructure/instructure-ui/compare/v10.23.0...v10.24.0) (2025-07-18)
130
92
 
131
93
  **Note:** Version bump only for package @instructure/ui-truncate-text
132
94
 
133
-
134
-
135
-
136
-
137
95
  # [10.23.0](https://github.com/instructure/instructure-ui/compare/v10.22.0...v10.23.0) (2025-07-09)
138
96
 
139
97
  **Note:** Version bump only for package @instructure/ui-truncate-text
140
98
 
141
-
142
-
143
-
144
-
145
99
  # [10.22.0](https://github.com/instructure/instructure-ui/compare/v10.21.0...v10.22.0) (2025-07-04)
146
100
 
147
101
  **Note:** Version bump only for package @instructure/ui-truncate-text
148
102
 
149
-
150
-
151
-
152
-
153
103
  # [10.21.0](https://github.com/instructure/instructure-ui/compare/v10.20.1...v10.21.0) (2025-06-27)
154
104
 
155
105
  **Note:** Version bump only for package @instructure/ui-truncate-text
156
106
 
157
-
158
-
159
-
160
-
161
107
  ## [10.20.1](https://github.com/instructure/instructure-ui/compare/v10.20.0...v10.20.1) (2025-06-17)
162
108
 
163
109
  **Note:** Version bump only for package @instructure/ui-truncate-text
164
110
 
165
-
166
-
167
-
168
-
169
111
  # [10.20.0](https://github.com/instructure/instructure-ui/compare/v10.19.1...v10.20.0) (2025-06-13)
170
112
 
171
-
172
113
  ### Bug Fixes
173
114
 
174
- * **many:** update dependencies, browsersdb and moment timezone database ([3813636](https://github.com/instructure/instructure-ui/commit/3813636458c901ad4bc74a4d5ae015cb55defcb2))
175
-
176
-
177
-
178
-
115
+ - **many:** update dependencies, browsersdb and moment timezone database ([3813636](https://github.com/instructure/instructure-ui/commit/3813636458c901ad4bc74a4d5ae015cb55defcb2))
179
116
 
180
117
  ## [10.19.1](https://github.com/instructure/instructure-ui/compare/v10.19.0...v10.19.1) (2025-06-05)
181
118
 
182
119
  **Note:** Version bump only for package @instructure/ui-truncate-text
183
120
 
184
-
185
-
186
-
187
-
188
121
  # [10.19.0](https://github.com/instructure/instructure-ui/compare/v10.18.1...v10.19.0) (2025-06-03)
189
122
 
190
123
  **Note:** Version bump only for package @instructure/ui-truncate-text
191
124
 
192
-
193
-
194
-
195
-
196
125
  ## [10.18.1](https://github.com/instructure/instructure-ui/compare/v10.18.0...v10.18.1) (2025-05-29)
197
126
 
198
127
  **Note:** Version bump only for package @instructure/ui-truncate-text
199
128
 
200
-
201
-
202
-
203
-
204
129
  # [10.18.0](https://github.com/instructure/instructure-ui/compare/v10.17.0...v10.18.0) (2025-05-26)
205
130
 
206
131
  **Note:** Version bump only for package @instructure/ui-truncate-text
207
132
 
208
-
209
-
210
-
211
-
212
133
  # [10.17.0](https://github.com/instructure/instructure-ui/compare/v10.16.4...v10.17.0) (2025-05-20)
213
134
 
214
135
  **Note:** Version bump only for package @instructure/ui-truncate-text
215
136
 
216
-
217
-
218
-
219
-
220
137
  ## [10.16.4](https://github.com/instructure/instructure-ui/compare/v10.16.3...v10.16.4) (2025-05-09)
221
138
 
222
139
  **Note:** Version bump only for package @instructure/ui-truncate-text
223
140
 
224
-
225
-
226
-
227
-
228
141
  ## [10.16.3](https://github.com/instructure/instructure-ui/compare/v10.16.1...v10.16.3) (2025-04-30)
229
142
 
230
143
  **Note:** Version bump only for package @instructure/ui-truncate-text
231
144
 
232
-
233
-
234
-
235
-
236
145
  ## [10.16.2](https://github.com/instructure/instructure-ui/compare/v10.16.1...v10.16.2) (2025-04-22)
237
146
 
238
147
  **Note:** Version bump only for package @instructure/ui-truncate-text
239
148
 
240
-
241
-
242
-
243
-
244
149
  ## [10.16.1](https://github.com/instructure/instructure-ui/compare/v10.16.0...v10.16.1) (2025-04-22)
245
150
 
246
151
  **Note:** Version bump only for package @instructure/ui-truncate-text
247
152
 
248
-
249
-
250
-
251
-
252
153
  # [10.16.0](https://github.com/instructure/instructure-ui/compare/v10.15.2...v10.16.0) (2025-04-11)
253
154
 
254
155
  **Note:** Version bump only for package @instructure/ui-truncate-text
255
156
 
256
-
257
-
258
-
259
-
260
157
  ## [10.15.2](https://github.com/instructure/instructure-ui/compare/v10.15.1...v10.15.2) (2025-04-07)
261
158
 
262
159
  **Note:** Version bump only for package @instructure/ui-truncate-text
263
160
 
264
-
265
-
266
-
267
-
268
161
  ## [10.15.1](https://github.com/instructure/instructure-ui/compare/v10.15.0...v10.15.1) (2025-04-03)
269
162
 
270
163
  **Note:** Version bump only for package @instructure/ui-truncate-text
271
164
 
272
-
273
-
274
-
275
-
276
165
  # [10.15.0](https://github.com/instructure/instructure-ui/compare/v10.14.0...v10.15.0) (2025-03-31)
277
166
 
278
167
  **Note:** Version bump only for package @instructure/ui-truncate-text
279
168
 
280
-
281
-
282
-
283
-
284
169
  # [10.14.0](https://github.com/instructure/instructure-ui/compare/v10.13.0...v10.14.0) (2025-03-17)
285
170
 
286
171
  **Note:** Version bump only for package @instructure/ui-truncate-text
287
172
 
288
-
289
-
290
-
291
-
292
173
  # [10.13.0](https://github.com/instructure/instructure-ui/compare/v10.12.0...v10.13.0) (2025-03-06)
293
174
 
294
175
  **Note:** Version bump only for package @instructure/ui-truncate-text
295
176
 
296
-
297
-
298
-
299
-
300
177
  # [10.12.0](https://github.com/instructure/instructure-ui/compare/v10.11.0...v10.12.0) (2025-02-24)
301
178
 
302
179
  **Note:** Version bump only for package @instructure/ui-truncate-text
303
180
 
304
-
305
-
306
-
307
-
308
181
  # [10.11.0](https://github.com/instructure/instructure-ui/compare/v10.10.0...v10.11.0) (2025-02-03)
309
182
 
310
183
  **Note:** Version bump only for package @instructure/ui-truncate-text
311
184
 
312
-
313
-
314
-
315
-
316
185
  # [10.10.0](https://github.com/instructure/instructure-ui/compare/v10.9.0...v10.10.0) (2024-12-18)
317
186
 
318
187
  **Note:** Version bump only for package @instructure/ui-truncate-text
319
188
 
320
-
321
-
322
-
323
-
324
189
  # [10.9.0](https://github.com/instructure/instructure-ui/compare/v10.8.0...v10.9.0) (2024-12-12)
325
190
 
326
191
  **Note:** Version bump only for package @instructure/ui-truncate-text
327
192
 
328
-
329
-
330
-
331
-
332
193
  # [10.8.0](https://github.com/instructure/instructure-ui/compare/v10.7.0...v10.8.0) (2024-12-09)
333
194
 
334
195
  **Note:** Version bump only for package @instructure/ui-truncate-text
335
196
 
336
-
337
-
338
-
339
-
340
197
  # [10.7.0](https://github.com/instructure/instructure-ui/compare/v10.6.1...v10.7.0) (2024-12-03)
341
198
 
342
199
  **Note:** Version bump only for package @instructure/ui-truncate-text
343
200
 
344
-
345
-
346
-
347
-
348
201
  ## [10.6.1](https://github.com/instructure/instructure-ui/compare/v10.6.0...v10.6.1) (2024-11-26)
349
202
 
350
203
  **Note:** Version bump only for package @instructure/ui-truncate-text
351
204
 
352
-
353
-
354
-
355
-
356
205
  # [10.6.0](https://github.com/instructure/instructure-ui/compare/v10.5.0...v10.6.0) (2024-11-18)
357
206
 
358
207
  **Note:** Version bump only for package @instructure/ui-truncate-text
359
208
 
360
-
361
-
362
-
363
-
364
209
  # [10.5.0](https://github.com/instructure/instructure-ui/compare/v10.4.1...v10.5.0) (2024-11-07)
365
210
 
366
211
  **Note:** Version bump only for package @instructure/ui-truncate-text
367
212
 
368
-
369
-
370
-
371
-
372
213
  ## [10.4.1](https://github.com/instructure/instructure-ui/compare/v10.4.0...v10.4.1) (2024-10-28)
373
214
 
374
-
375
215
  ### Bug Fixes
376
216
 
377
- * docs screenreader alerts are no longer screendeader focusable ([c225853](https://github.com/instructure/instructure-ui/commit/c2258531aa377b698fe932012112704f1879b501))
378
- * update license ([1c039d9](https://github.com/instructure/instructure-ui/commit/1c039d9cbf5a3ea99b59803ddde5c6c0b2d76ba5))
379
-
380
-
381
-
382
-
217
+ - docs screenreader alerts are no longer screendeader focusable ([c225853](https://github.com/instructure/instructure-ui/commit/c2258531aa377b698fe932012112704f1879b501))
218
+ - update license ([1c039d9](https://github.com/instructure/instructure-ui/commit/1c039d9cbf5a3ea99b59803ddde5c6c0b2d76ba5))
383
219
 
384
220
  # [10.4.0](https://github.com/instructure/instructure-ui/compare/v10.3.0...v10.4.0) (2024-10-16)
385
221
 
386
222
  **Note:** Version bump only for package @instructure/ui-truncate-text
387
223
 
388
-
389
-
390
-
391
-
392
224
  # [10.3.0](https://github.com/instructure/instructure-ui/compare/v10.2.2...v10.3.0) (2024-10-03)
393
225
 
394
226
  **Note:** Version bump only for package @instructure/ui-truncate-text
395
227
 
396
-
397
-
398
-
399
-
400
228
  ## [10.2.2](https://github.com/instructure/instructure-ui/compare/v10.2.1...v10.2.2) (2024-09-13)
401
229
 
402
230
  **Note:** Version bump only for package @instructure/ui-truncate-text
403
231
 
404
-
405
-
406
-
407
-
408
232
  ## [10.2.1](https://github.com/instructure/instructure-ui/compare/v10.2.0...v10.2.1) (2024-08-30)
409
233
 
410
234
  **Note:** Version bump only for package @instructure/ui-truncate-text
411
235
 
412
-
413
-
414
-
415
-
416
236
  # [10.2.0](https://github.com/instructure/instructure-ui/compare/v10.0.0...v10.2.0) (2024-08-23)
417
237
 
418
238
  **Note:** Version bump only for package @instructure/ui-truncate-text
419
239
 
420
-
421
-
422
-
423
-
424
240
  # [10.1.0](https://github.com/instructure/instructure-ui/compare/v10.0.0...v10.1.0) (2024-08-23)
425
241
 
426
242
  **Note:** Version bump only for package @instructure/ui-truncate-text
427
243
 
428
-
429
-
430
-
431
-
432
244
  # [10.0.0](https://github.com/instructure/instructure-ui/compare/v9.5.1...v10.0.0) (2024-07-31)
433
245
 
434
246
  **Note:** Version bump only for package @instructure/ui-truncate-text
435
247
 
436
-
437
-
438
-
439
-
440
248
  ## [9.5.1](https://github.com/instructure/instructure-ui/compare/v9.5.0...v9.5.1) (2024-07-30)
441
249
 
442
250
  **Note:** Version bump only for package @instructure/ui-truncate-text
443
251
 
444
-
445
-
446
-
447
-
448
252
  # [9.5.0](https://github.com/instructure/instructure-ui/compare/v9.3.0...v9.5.0) (2024-07-26)
449
253
 
450
254
  **Note:** Version bump only for package @instructure/ui-truncate-text
451
255
 
452
-
453
-
454
-
455
-
456
256
  # [9.4.0](https://github.com/instructure/instructure-ui/compare/v9.3.0...v9.4.0) (2024-07-26)
457
257
 
458
258
  **Note:** Version bump only for package @instructure/ui-truncate-text
459
259
 
460
-
461
-
462
-
463
-
464
260
  # [9.3.0](https://github.com/instructure/instructure-ui/compare/v9.2.0...v9.3.0) (2024-07-17)
465
261
 
466
262
  **Note:** Version bump only for package @instructure/ui-truncate-text
467
263
 
468
-
469
-
470
-
471
-
472
264
  # [9.2.0](https://github.com/instructure/instructure-ui/compare/v9.1.0...v9.2.0) (2024-07-09)
473
265
 
474
266
  **Note:** Version bump only for package @instructure/ui-truncate-text
475
267
 
476
-
477
-
478
-
479
-
480
268
  # [9.1.0](https://github.com/instructure/instructure-ui/compare/v9.0.1...v9.1.0) (2024-06-14)
481
269
 
482
270
  **Note:** Version bump only for package @instructure/ui-truncate-text
483
271
 
484
-
485
-
486
-
487
-
488
272
  ## [9.0.1](https://github.com/instructure/instructure-ui/compare/v9.0.0...v9.0.1) (2024-05-09)
489
273
 
490
274
  **Note:** Version bump only for package @instructure/ui-truncate-text
491
275
 
492
-
493
-
494
-
495
-
496
276
  # [9.0.0](https://github.com/instructure/instructure-ui/compare/v8.56.0...v9.0.0) (2024-05-09)
497
277
 
498
278
  **Note:** Version bump only for package @instructure/ui-truncate-text
499
279
 
500
-
501
-
502
-
503
-
504
280
  # [8.56.0](https://github.com/instructure/instructure-ui/compare/v8.55.1...v8.56.0) (2024-05-06)
505
281
 
506
282
  **Note:** Version bump only for package @instructure/ui-truncate-text
507
283
 
508
-
509
-
510
-
511
-
512
284
  ## [8.55.1](https://github.com/instructure/instructure-ui/compare/v8.55.0...v8.55.1) (2024-04-30)
513
285
 
514
286
  **Note:** Version bump only for package @instructure/ui-truncate-text
515
287
 
516
-
517
-
518
-
519
-
520
288
  # [8.55.0](https://github.com/instructure/instructure-ui/compare/v8.54.0...v8.55.0) (2024-04-09)
521
289
 
522
290
  **Note:** Version bump only for package @instructure/ui-truncate-text
523
291
 
524
-
525
-
526
-
527
-
528
292
  # [8.54.0](https://github.com/instructure/instructure-ui/compare/v8.53.2...v8.54.0) (2024-03-21)
529
293
 
530
294
  **Note:** Version bump only for package @instructure/ui-truncate-text
531
295
 
532
-
533
-
534
-
535
-
536
296
  ## [8.53.2](https://github.com/instructure/instructure-ui/compare/v8.53.1...v8.53.2) (2024-02-15)
537
297
 
538
298
  **Note:** Version bump only for package @instructure/ui-truncate-text
539
299
 
540
-
541
-
542
-
543
-
544
300
  ## [8.53.1](https://github.com/instructure/instructure-ui/compare/v8.53.0...v8.53.1) (2024-02-09)
545
301
 
546
302
  **Note:** Version bump only for package @instructure/ui-truncate-text
547
303
 
548
-
549
-
550
-
551
-
552
304
  # [8.53.0](https://github.com/instructure/instructure-ui/compare/v8.52.0...v8.53.0) (2024-02-08)
553
305
 
554
306
  **Note:** Version bump only for package @instructure/ui-truncate-text
@@ -28,7 +28,7 @@ import { debounce } from '@instructure/debounce';
28
28
  import { canUseDOM, getBoundingClientRect } from '@instructure/ui-dom-utils';
29
29
  import { safeCloneElement, ensureSingleChild } from '@instructure/ui-react-utils';
30
30
  import { logError as error } from '@instructure/console';
31
- import { withStyle } from '@instructure/emotion';
31
+ import { withStyleLegacy as withStyle } from '@instructure/emotion';
32
32
  import generateStyle from "./styles.js";
33
33
  import generateComponentTheme from "./theme.js";
34
34
  import truncate from "./utils/truncate.js";