@deque/cauldron-styles 6.2.1-canary.2d4991a8 → 6.2.1-canary.3e6e4cd8

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 (2) hide show
  1. package/dist/index.css +23 -0
  2. package/package.json +1 -1
package/dist/index.css CHANGED
@@ -997,6 +997,10 @@ textarea.Field--has-error:focus:hover,
997
997
  color: var(--text-field-wrapper-font-color);
998
998
  }
999
999
 
1000
+ .TextFieldWrapper > :not(input) {
1001
+ flex-shrink: 0;
1002
+ }
1003
+
1000
1004
  .TextFieldWrapper:focus-within {
1001
1005
  border: 1px solid var(--text-field-wrapper-border-focus-color);
1002
1006
  box-shadow: 0 0 0 1px var(--text-field-wrapper-border-focus-color),
@@ -5325,3 +5329,22 @@ button.Accordion__trigger {
5325
5329
  .SearchField input::-webkit-search-cancel-button {
5326
5330
  margin-left: var(--space-smallest);
5327
5331
  }
5332
+
5333
+ .TextEllipsis {
5334
+ display: block !important;
5335
+ white-space: nowrap;
5336
+ text-overflow: ellipsis;
5337
+ overflow: hidden;
5338
+ }
5339
+
5340
+ .TextEllipsis:where([role='button']) {
5341
+ text-align: inherit;
5342
+ -moz-user-select: inherit;
5343
+ user-select: inherit;
5344
+ }
5345
+
5346
+ .TextEllipsis--multiline {
5347
+ display: -webkit-box !important;
5348
+ -webkit-box-orient: vertical;
5349
+ white-space: normal;
5350
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deque/cauldron-styles",
3
- "version": "6.2.1-canary.2d4991a8",
3
+ "version": "6.2.1-canary.3e6e4cd8",
4
4
  "license": "MPL-2.0",
5
5
  "description": "deque cauldron pattern library styles",
6
6
  "repository": "https://github.com/dequelabs/cauldron",