@commercetools-frontend/experimental-components 5.4.1 → 5.4.2

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/styles.css +99 -99
  2. package/package.json +3 -3
package/dist/styles.css CHANGED
@@ -50,6 +50,90 @@
50
50
  border-bottom-left-radius: var(--border-radius-for-input);
51
51
  border-bottom-right-radius: var(--border-radius-for-input);
52
52
  }
53
+ /* imported from numeric-format-input.module.css */
54
+
55
+ .numeric-format-input-module__invalid___3LcyE {
56
+ /* this needs !important because react-select has a :focus style that
57
+ stops the border colour being set unless the element is blurred */
58
+ border-color: var(--color-error) !important;
59
+ border: 1px solid;
60
+ }
61
+
62
+ .numeric-format-input-module__disabled___hb6h4 {
63
+ cursor: not-allowed;
64
+ }
65
+ /* imported from throttled-field.module.css */
66
+
67
+ .throttled-field-module__size___324jx {
68
+ width: 100%;
69
+ }
70
+
71
+ .throttled-field-module__size___324jx {
72
+ min-height: var(--height-for-input);
73
+ }
74
+
75
+ .throttled-field-module__input-text___3zFFp {
76
+ transition: 0.2s ease;
77
+ border-radius: 6px;
78
+ border-style: solid;
79
+ border-width: 1px;
80
+ color: var(--color-solid);
81
+ font-weight: 500;
82
+ font-size: 1rem;
83
+ font-family: 'Open Sans', sans-serif !important;
84
+ padding: 7.5px 10px;
85
+ outline: none;
86
+ box-shadow: none;
87
+ appearance: none;
88
+ }
89
+
90
+ .throttled-field-module__input-secondary___cFo9e {
91
+ background-color: var(--color-neutral-95);
92
+ border-color: var(--color-surface);
93
+ width: 100%;
94
+ }
95
+
96
+ .throttled-field-module__input-primary___26G3R {
97
+ border-color: var(--color-neutral);
98
+ background-color: var(--color-surface);
99
+ }
100
+
101
+ .throttled-field-module__textarea___3ZNEs {
102
+ width: 100%;
103
+ min-height: 36px;
104
+ resize: vertical;
105
+ }
106
+
107
+ .throttled-field-module__textarea-primary___24Wwt {
108
+ border-color: var(--color-neutral);
109
+ background-color: var(--color-surface);
110
+ }
111
+
112
+ .throttled-field-module__textarea-secondary___2rmFG {
113
+ background-color: var(--color-neutral-95);
114
+ border-color: var(--color-surface);
115
+ width: 100%;
116
+ }
117
+
118
+ .throttled-field-module__invalid___1yZLW {
119
+ /* this needs !important because react-select has a :focus style that
120
+ stops the border colour being set unless the element is blurred */
121
+ border-color: var(--color-error) !important;
122
+ border: 1px solid;
123
+ }
124
+
125
+ .throttled-field-module__disabled___qVj79 {
126
+ cursor: not-allowed;
127
+ background-color: var(--color-accent-98);
128
+ color: var(--color-solid);
129
+ opacity: 1; /* fix for mobile safari */
130
+ }
131
+
132
+ .throttled-field-module__granular___2LXJf {
133
+ border-top-left-radius: 0;
134
+ border-bottom-left-radius: 0;
135
+ margin-left: 0;
136
+ }
53
137
  /* imported from search-input.module.css */
54
138
 
55
139
  .search-input-module__block___1uM-y {
@@ -177,90 +261,6 @@
177
261
  .validated-input-module__container___3L2KB {
178
262
  display: inline;
179
263
  }
180
- /* imported from numeric-format-input.module.css */
181
-
182
- .numeric-format-input-module__invalid___3LcyE {
183
- /* this needs !important because react-select has a :focus style that
184
- stops the border colour being set unless the element is blurred */
185
- border-color: var(--color-error) !important;
186
- border: 1px solid;
187
- }
188
-
189
- .numeric-format-input-module__disabled___hb6h4 {
190
- cursor: not-allowed;
191
- }
192
- /* imported from throttled-field.module.css */
193
-
194
- .throttled-field-module__size___324jx {
195
- width: 100%;
196
- }
197
-
198
- .throttled-field-module__size___324jx {
199
- min-height: var(--height-for-input);
200
- }
201
-
202
- .throttled-field-module__input-text___3zFFp {
203
- transition: 0.2s ease;
204
- border-radius: 6px;
205
- border-style: solid;
206
- border-width: 1px;
207
- color: var(--color-solid);
208
- font-weight: 500;
209
- font-size: 1rem;
210
- font-family: 'Open Sans', sans-serif !important;
211
- padding: 7.5px 10px;
212
- outline: none;
213
- box-shadow: none;
214
- appearance: none;
215
- }
216
-
217
- .throttled-field-module__input-secondary___cFo9e {
218
- background-color: var(--color-neutral-95);
219
- border-color: var(--color-surface);
220
- width: 100%;
221
- }
222
-
223
- .throttled-field-module__input-primary___26G3R {
224
- border-color: var(--color-neutral);
225
- background-color: var(--color-surface);
226
- }
227
-
228
- .throttled-field-module__textarea___3ZNEs {
229
- width: 100%;
230
- min-height: 36px;
231
- resize: vertical;
232
- }
233
-
234
- .throttled-field-module__textarea-primary___24Wwt {
235
- border-color: var(--color-neutral);
236
- background-color: var(--color-surface);
237
- }
238
-
239
- .throttled-field-module__textarea-secondary___2rmFG {
240
- background-color: var(--color-neutral-95);
241
- border-color: var(--color-surface);
242
- width: 100%;
243
- }
244
-
245
- .throttled-field-module__invalid___1yZLW {
246
- /* this needs !important because react-select has a :focus style that
247
- stops the border colour being set unless the element is blurred */
248
- border-color: var(--color-error) !important;
249
- border: 1px solid;
250
- }
251
-
252
- .throttled-field-module__disabled___qVj79 {
253
- cursor: not-allowed;
254
- background-color: var(--color-accent-98);
255
- color: var(--color-solid);
256
- opacity: 1; /* fix for mobile safari */
257
- }
258
-
259
- .throttled-field-module__granular___2LXJf {
260
- border-top-left-radius: 0;
261
- border-bottom-left-radius: 0;
262
- margin-left: 0;
263
- }
264
264
  /* imported from button.module.css */
265
265
 
266
266
  /* Generic button */
@@ -500,6 +500,21 @@
500
500
  width: 1px;
501
501
  height: 1px;
502
502
  }
503
+ /* imported from reference-search.module.css */
504
+
505
+ .reference-search-module__container___3-iK3 {
506
+ width: 100%;
507
+ }
508
+
509
+ .reference-search-module__container___3-iK3 > div {
510
+ width: 100%;
511
+ }
512
+
513
+ .reference-search-module__missing-label___az9AO {
514
+ color: var(--color-warning);
515
+ font-size: 0.9rem;
516
+ margin-left: var(--spacing-xs);
517
+ }
503
518
  /* imported from centered-loading-spinner.module.css */
504
519
 
505
520
  .centered-loading-spinner-module__loading-container___3_9-h {
@@ -527,21 +542,6 @@
527
542
  .divider-module__divider-dashed___2Em8A {
528
543
  border-style: dashed;
529
544
  }
530
- /* imported from reference-search.module.css */
531
-
532
- .reference-search-module__container___3-iK3 {
533
- width: 100%;
534
- }
535
-
536
- .reference-search-module__container___3-iK3 > div {
537
- width: 100%;
538
- }
539
-
540
- .reference-search-module__missing-label___az9AO {
541
- color: var(--color-warning);
542
- font-size: 0.9rem;
543
- margin-left: var(--spacing-xs);
544
- }
545
545
  /* imported from custom-money-input.module.css */
546
546
 
547
547
  .custom-money-input-module__container___1fdO2 {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@commercetools-frontend/experimental-components",
3
- "version": "5.4.1",
3
+ "version": "5.4.2",
4
4
  "description": "",
5
5
  "main": "dist/commercetools-frontend-experimental-components.cjs.js",
6
6
  "module": "dist/commercetools-frontend-experimental-components.esm.js",
@@ -67,8 +67,8 @@
67
67
  "redux": "^4.2.1",
68
68
  "typescript": "5.2.2",
69
69
  "xhr-mock": "^2.5.1",
70
- "@commercetools-local/test-data": "1.2.2",
71
- "@commercetools-local/test-utils": "1.2.2"
70
+ "@commercetools-local/test-data": "1.2.3",
71
+ "@commercetools-local/test-utils": "1.2.3"
72
72
  },
73
73
  "peerDependencies": {
74
74
  "@apollo/client": "3.x",