@commercetools-frontend/experimental-components 5.4.2 → 5.4.4
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/dist/commercetools-frontend-experimental-components.cjs.dev.js +323 -173
- package/dist/commercetools-frontend-experimental-components.cjs.prod.js +323 -173
- package/dist/commercetools-frontend-experimental-components.esm.js +324 -175
- package/dist/styles.css +69 -60
- package/package.json +16 -15
package/dist/styles.css
CHANGED
|
@@ -134,6 +134,17 @@
|
|
|
134
134
|
border-bottom-left-radius: 0;
|
|
135
135
|
margin-left: 0;
|
|
136
136
|
}
|
|
137
|
+
/* imported from validated-input.module.css */
|
|
138
|
+
|
|
139
|
+
.validated-input-module__invalid___380EL {
|
|
140
|
+
/* this needs !important because react-select has a :focus style that
|
|
141
|
+
stops the border colour being set unless the element is blurred */
|
|
142
|
+
border-color: var(--color-error) !important;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
.validated-input-module__container___3L2KB {
|
|
146
|
+
display: inline;
|
|
147
|
+
}
|
|
137
148
|
/* imported from search-input.module.css */
|
|
138
149
|
|
|
139
150
|
.search-input-module__block___1uM-y {
|
|
@@ -250,16 +261,41 @@
|
|
|
250
261
|
margin-top: 2px;
|
|
251
262
|
position: absolute;
|
|
252
263
|
}
|
|
253
|
-
/*
|
|
264
|
+
/* imported from file-input.module.css */
|
|
254
265
|
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
266
|
+
/** Button */
|
|
267
|
+
|
|
268
|
+
.file-input-module__button___2KypN {
|
|
269
|
+
display: inline-flex;
|
|
270
|
+
background-color: var(--color-surface);
|
|
271
|
+
border: var(--border-for-button-as-secondary);
|
|
272
|
+
box-shadow: none;
|
|
273
|
+
border-radius: var(--border-radius-4);
|
|
274
|
+
color: var(--color-solid);
|
|
275
|
+
height: var(--height-for-button-as-big);
|
|
276
|
+
font-size: var(--font-size-20);
|
|
277
|
+
font-weight: var(--font-weight-500);
|
|
278
|
+
align-items: center;
|
|
279
|
+
transition: background-color var(--transition-linear-80ms);
|
|
280
|
+
padding: 0 var(--spacing-m);
|
|
259
281
|
}
|
|
260
282
|
|
|
261
|
-
.
|
|
262
|
-
|
|
283
|
+
.file-input-module__button___2KypN:hover,
|
|
284
|
+
.file-input-module__button___2KypN:focus {
|
|
285
|
+
cursor: pointer;
|
|
286
|
+
background-color: var(--background-color-for-button-when-hovered);
|
|
287
|
+
box-shadow: none;
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
.file-input-module__button___2KypN:active {
|
|
291
|
+
box-shadow: var(--shadow-9);
|
|
292
|
+
background-color: var(--color-surface);
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
.file-input-module__input___3MP4D {
|
|
296
|
+
visibility: hidden;
|
|
297
|
+
width: 1px;
|
|
298
|
+
height: 1px;
|
|
263
299
|
}
|
|
264
300
|
/* imported from button.module.css */
|
|
265
301
|
|
|
@@ -464,57 +500,6 @@
|
|
|
464
500
|
.button-module__add-button___1f093 {
|
|
465
501
|
min-height: 32px;
|
|
466
502
|
}
|
|
467
|
-
/* imported from file-input.module.css */
|
|
468
|
-
|
|
469
|
-
/** Button */
|
|
470
|
-
|
|
471
|
-
.file-input-module__button___2KypN {
|
|
472
|
-
display: inline-flex;
|
|
473
|
-
background-color: var(--color-surface);
|
|
474
|
-
border: var(--border-for-button-as-secondary);
|
|
475
|
-
box-shadow: none;
|
|
476
|
-
border-radius: var(--border-radius-4);
|
|
477
|
-
color: var(--color-solid);
|
|
478
|
-
height: var(--height-for-button-as-big);
|
|
479
|
-
font-size: var(--font-size-20);
|
|
480
|
-
font-weight: var(--font-weight-500);
|
|
481
|
-
align-items: center;
|
|
482
|
-
transition: background-color var(--transition-linear-80ms);
|
|
483
|
-
padding: 0 var(--spacing-m);
|
|
484
|
-
}
|
|
485
|
-
|
|
486
|
-
.file-input-module__button___2KypN:hover,
|
|
487
|
-
.file-input-module__button___2KypN:focus {
|
|
488
|
-
cursor: pointer;
|
|
489
|
-
background-color: var(--background-color-for-button-when-hovered);
|
|
490
|
-
box-shadow: none;
|
|
491
|
-
}
|
|
492
|
-
|
|
493
|
-
.file-input-module__button___2KypN:active {
|
|
494
|
-
box-shadow: var(--shadow-9);
|
|
495
|
-
background-color: var(--color-surface);
|
|
496
|
-
}
|
|
497
|
-
|
|
498
|
-
.file-input-module__input___3MP4D {
|
|
499
|
-
visibility: hidden;
|
|
500
|
-
width: 1px;
|
|
501
|
-
height: 1px;
|
|
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
|
-
}
|
|
518
503
|
/* imported from centered-loading-spinner.module.css */
|
|
519
504
|
|
|
520
505
|
.centered-loading-spinner-module__loading-container___3_9-h {
|
|
@@ -528,11 +513,20 @@
|
|
|
528
513
|
|
|
529
514
|
.divider-module__divider___4-vdy {
|
|
530
515
|
box-sizing: border-box;
|
|
531
|
-
width: 100%;
|
|
532
516
|
margin: 0;
|
|
533
517
|
border: 0;
|
|
518
|
+
border-color: var(--color-neutral-90);
|
|
519
|
+
}
|
|
520
|
+
|
|
521
|
+
.divider-module__divider-horizontal___RuUcj {
|
|
522
|
+
width: 100%;
|
|
534
523
|
border-top-width: 1px;
|
|
535
|
-
|
|
524
|
+
}
|
|
525
|
+
|
|
526
|
+
.divider-module__divider-vertical___32kJG {
|
|
527
|
+
width: 1px;
|
|
528
|
+
height: 2vmax;
|
|
529
|
+
border-left-width: 1px;
|
|
536
530
|
}
|
|
537
531
|
|
|
538
532
|
.divider-module__divider-solid___3Fs4q {
|
|
@@ -542,6 +536,21 @@
|
|
|
542
536
|
.divider-module__divider-dashed___2Em8A {
|
|
543
537
|
border-style: dashed;
|
|
544
538
|
}
|
|
539
|
+
/* imported from reference-search.module.css */
|
|
540
|
+
|
|
541
|
+
.reference-search-module__container___3-iK3 {
|
|
542
|
+
width: 100%;
|
|
543
|
+
}
|
|
544
|
+
|
|
545
|
+
.reference-search-module__container___3-iK3 > div {
|
|
546
|
+
width: 100%;
|
|
547
|
+
}
|
|
548
|
+
|
|
549
|
+
.reference-search-module__missing-label___az9AO {
|
|
550
|
+
color: var(--color-warning);
|
|
551
|
+
font-size: 0.9rem;
|
|
552
|
+
margin-left: var(--spacing-xs);
|
|
553
|
+
}
|
|
545
554
|
/* imported from custom-money-input.module.css */
|
|
546
555
|
|
|
547
556
|
.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.
|
|
3
|
+
"version": "5.4.4",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/commercetools-frontend-experimental-components.cjs.js",
|
|
6
6
|
"module": "dist/commercetools-frontend-experimental-components.esm.js",
|
|
@@ -13,14 +13,14 @@
|
|
|
13
13
|
"@babel/core": "^7.22.11",
|
|
14
14
|
"@babel/runtime": "^7.21.0",
|
|
15
15
|
"@babel/runtime-corejs3": "^7.21.0",
|
|
16
|
-
"@commercetools-frontend/actions-global": "^22.
|
|
17
|
-
"@commercetools-frontend/application-components": "^22.
|
|
18
|
-
"@commercetools-frontend/application-shell": "^22.
|
|
19
|
-
"@commercetools-frontend/application-shell-connectors": "^22.
|
|
20
|
-
"@commercetools-frontend/constants": "^22.
|
|
21
|
-
"@commercetools-frontend/l10n": "^22.
|
|
22
|
-
"@commercetools-frontend/sdk": "^22.
|
|
23
|
-
"@commercetools-frontend/sentry": "^22.
|
|
16
|
+
"@commercetools-frontend/actions-global": "^22.9.1",
|
|
17
|
+
"@commercetools-frontend/application-components": "^22.9.1",
|
|
18
|
+
"@commercetools-frontend/application-shell": "^22.9.1",
|
|
19
|
+
"@commercetools-frontend/application-shell-connectors": "^22.9.1",
|
|
20
|
+
"@commercetools-frontend/constants": "^22.9.1",
|
|
21
|
+
"@commercetools-frontend/l10n": "^22.9.1",
|
|
22
|
+
"@commercetools-frontend/sdk": "^22.9.1",
|
|
23
|
+
"@commercetools-frontend/sentry": "^22.9.1",
|
|
24
24
|
"@commercetools-frontend/ui-kit": "^16.7.5",
|
|
25
25
|
"@commercetools-uikit/design-system": "^16.7.5",
|
|
26
26
|
"@commercetools-uikit/select-utils": "^16.7.5",
|
|
@@ -44,13 +44,14 @@
|
|
|
44
44
|
"reselect": "4.1.8",
|
|
45
45
|
"tiny-invariant": "1.3.1",
|
|
46
46
|
"tiny-warning": "1.0.3",
|
|
47
|
-
"uuid": "9.0.1"
|
|
47
|
+
"uuid": "9.0.1",
|
|
48
|
+
"react-beautiful-dnd": "13.1.1"
|
|
48
49
|
},
|
|
49
50
|
"devDependencies": {
|
|
50
51
|
"@apollo/client": "^3.7.10",
|
|
51
|
-
"@commercetools-test-data/channel": "^
|
|
52
|
-
"@commercetools-test-data/commons": "^
|
|
53
|
-
"@commercetools-test-data/core": "^
|
|
52
|
+
"@commercetools-test-data/channel": "^6.0.0",
|
|
53
|
+
"@commercetools-test-data/commons": "^6.0.0",
|
|
54
|
+
"@commercetools-test-data/core": "^6.0.0",
|
|
54
55
|
"@testing-library/react": "^12.1.5",
|
|
55
56
|
"@testing-library/react-hooks": "^8.0.1",
|
|
56
57
|
"enzyme": "^3.11.0",
|
|
@@ -67,8 +68,8 @@
|
|
|
67
68
|
"redux": "^4.2.1",
|
|
68
69
|
"typescript": "5.2.2",
|
|
69
70
|
"xhr-mock": "^2.5.1",
|
|
70
|
-
"@commercetools-local/test-data": "1.2.
|
|
71
|
-
"@commercetools-local/test-utils": "1.2.
|
|
71
|
+
"@commercetools-local/test-data": "1.2.4",
|
|
72
|
+
"@commercetools-local/test-utils": "1.2.4"
|
|
72
73
|
},
|
|
73
74
|
"peerDependencies": {
|
|
74
75
|
"@apollo/client": "3.x",
|