@interopio/groups-ui-react 2.6.0 → 2.6.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.
- package/dist/cjs/index.js +133 -223
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +146 -236
- package/dist/esm/index.js.map +1 -1
- package/dist/styles/groups.css +51 -17
- package/dist/styles/vars.css +1 -2
- package/package.json +3 -3
package/dist/styles/groups.css
CHANGED
|
@@ -5,7 +5,13 @@
|
|
|
5
5
|
box-sizing: border-box;
|
|
6
6
|
transition-timing-function: cubic-bezier(0.45, 0, 0.15, 1);
|
|
7
7
|
transition-duration: 240ms;
|
|
8
|
-
transition-property: background-color
|
|
8
|
+
transition-property: background-color;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
*::before,
|
|
12
|
+
*::after {
|
|
13
|
+
transition-timing-function: cubic-bezier(0.45, 0, 0.15, 1);
|
|
14
|
+
transition-duration: 240ms;
|
|
9
15
|
}
|
|
10
16
|
|
|
11
17
|
body {
|
|
@@ -52,6 +58,8 @@ input {
|
|
|
52
58
|
|
|
53
59
|
.t42-internal-caption-bar {
|
|
54
60
|
flex-direction: row;
|
|
61
|
+
align-items: center;
|
|
62
|
+
width: 100%;
|
|
55
63
|
}
|
|
56
64
|
|
|
57
65
|
.t42-react-caption-bar {
|
|
@@ -109,7 +117,9 @@ input {
|
|
|
109
117
|
display: flex;
|
|
110
118
|
flex-grow: 1;
|
|
111
119
|
align-items: center;
|
|
120
|
+
height: 100%;
|
|
112
121
|
min-width: var(--t42-move-area-min-width);
|
|
122
|
+
-webkit-app-region: drag;
|
|
113
123
|
}
|
|
114
124
|
|
|
115
125
|
.t42-buttons-container {
|
|
@@ -196,6 +206,14 @@ input {
|
|
|
196
206
|
color: var(--t42-caption-bar-button-close-hover-text);
|
|
197
207
|
}
|
|
198
208
|
|
|
209
|
+
.t42-standard-button-collapse::before {
|
|
210
|
+
content: "\e918";
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
.t42-standard-button-expand::before {
|
|
214
|
+
content: "\e90e";
|
|
215
|
+
}
|
|
216
|
+
|
|
199
217
|
.t42-standard-button-minimize::before {
|
|
200
218
|
content: "\e904";
|
|
201
219
|
}
|
|
@@ -275,6 +293,10 @@ input {
|
|
|
275
293
|
content: "\e902";
|
|
276
294
|
}
|
|
277
295
|
|
|
296
|
+
.t42-group-caption-bar-container {
|
|
297
|
+
display: flex;
|
|
298
|
+
}
|
|
299
|
+
|
|
278
300
|
.t42-group-caption-bar {
|
|
279
301
|
height: auto;
|
|
280
302
|
}
|
|
@@ -552,8 +574,7 @@ input {
|
|
|
552
574
|
height: calc(var(--t42-tab-bar-tab-close-button-size) + var(--t42-tab-bar-tab-close-button-padding) * 2);
|
|
553
575
|
border-radius: 50%;
|
|
554
576
|
background-color: var(--t42-tab-bar-tab-close-button-background);
|
|
555
|
-
transition-
|
|
556
|
-
transition-property: background-color, fill, color;
|
|
577
|
+
transition-property: fill, color;
|
|
557
578
|
}
|
|
558
579
|
|
|
559
580
|
.t42-tab-close-button-content svg {
|
|
@@ -570,6 +591,10 @@ input {
|
|
|
570
591
|
background-color: var(--t42-tab-bar-tab-close-button-bg-hover);
|
|
571
592
|
}
|
|
572
593
|
|
|
594
|
+
.t42-tab-close-button-content:hover::before {
|
|
595
|
+
color: var(--t42-tab-bar-tab-text-hover);
|
|
596
|
+
}
|
|
597
|
+
|
|
573
598
|
.t42-tab-close-button-content:hover .t42-standard-button-image {
|
|
574
599
|
fill: var(--t42-tab-bar-tab-text-hover);
|
|
575
600
|
}
|
|
@@ -604,24 +629,28 @@ input {
|
|
|
604
629
|
fill: var(--t42-tab-bar-selected-tab-text);
|
|
605
630
|
}
|
|
606
631
|
|
|
607
|
-
.t42-channel-selector-content-light::before {
|
|
608
|
-
color: hsl(var(--io-white));
|
|
609
|
-
transition-property: color;
|
|
610
|
-
}
|
|
611
|
-
|
|
612
|
-
.t42-channel-selector-content-dark::before {
|
|
613
|
-
color: hsl(var(--io-black));
|
|
614
|
-
transition-property: color;
|
|
615
|
-
}
|
|
616
|
-
|
|
617
632
|
.t42-channel-selector-direction {
|
|
618
|
-
width:
|
|
633
|
+
width: auto;
|
|
634
|
+
min-width: var(--t42-tab-bar-tab-channels-width);
|
|
619
635
|
height: var(--t42-channel-selector-direction-height);
|
|
620
636
|
gap: var(--t42-channel-selector-direction-gap);
|
|
621
637
|
}
|
|
622
638
|
|
|
623
639
|
.t42-channel-selector-direction .icon {
|
|
624
640
|
gap: var(--t42-channel-selector-direction-gap);
|
|
641
|
+
width: var(--t42-channel-selector-direction-width);
|
|
642
|
+
}
|
|
643
|
+
|
|
644
|
+
.t42-channel-selector-content-light,
|
|
645
|
+
.t42-channel-selector-content-light::before,
|
|
646
|
+
.t42-channel-selector-content-light i::before {
|
|
647
|
+
color: hsl(var(--io-white));
|
|
648
|
+
}
|
|
649
|
+
|
|
650
|
+
.t42-channel-selector-content-dark,
|
|
651
|
+
.t42-channel-selector-content-dark::before,
|
|
652
|
+
.t42-channel-selector-content-dark i::before {
|
|
653
|
+
color: hsl(var(--io-black));
|
|
625
654
|
}
|
|
626
655
|
|
|
627
656
|
@keyframes approaching-edge-animation {
|
|
@@ -679,6 +708,7 @@ input {
|
|
|
679
708
|
|
|
680
709
|
.t42-sizing-border-group:hover {
|
|
681
710
|
background-color: var(--t42-hover-sizing-border-group-color);
|
|
711
|
+
z-index: 150;
|
|
682
712
|
}
|
|
683
713
|
|
|
684
714
|
.t42-active-sizing-border-group {
|
|
@@ -734,6 +764,11 @@ input {
|
|
|
734
764
|
}
|
|
735
765
|
}
|
|
736
766
|
|
|
767
|
+
.loader-container {
|
|
768
|
+
display: flex;
|
|
769
|
+
flex-grow: 1;
|
|
770
|
+
}
|
|
771
|
+
|
|
737
772
|
.loader-wrapper {
|
|
738
773
|
display: flex;
|
|
739
774
|
flex-direction: column;
|
|
@@ -799,8 +834,7 @@ input {
|
|
|
799
834
|
|
|
800
835
|
@container normal-tabs (max-width: 50px) {
|
|
801
836
|
.t42-tab-channel-selector {
|
|
802
|
-
--t42-tab-bar-tab-channels-
|
|
803
|
-
--t42-tab-bar-tab-channels-width: 0;
|
|
837
|
+
--t42-tab-bar-tab-channels-size:0;
|
|
804
838
|
--t42-tab-bar-tab-channels-margin: 0;
|
|
805
839
|
}
|
|
806
840
|
}
|
|
@@ -823,7 +857,7 @@ input {
|
|
|
823
857
|
}
|
|
824
858
|
|
|
825
859
|
.t42-tabs-overflow .t42-tab {
|
|
826
|
-
min-width: var(--t42-tab-bar-tab-overflowable-min-width);
|
|
860
|
+
min-width: var(--t42-tab-bar-tab-overflowable-min-width);
|
|
827
861
|
}
|
|
828
862
|
|
|
829
863
|
.t42-tabs-overflow .t42-tabs {
|
package/dist/styles/vars.css
CHANGED
|
@@ -110,7 +110,6 @@
|
|
|
110
110
|
--t42-hover-sizing-border-group-color: hsl(var(--io-highlight-Interactive));
|
|
111
111
|
--t42-active-sizing-border-group-color: hsl(var(--io-interactive-primary));
|
|
112
112
|
|
|
113
|
-
|
|
114
113
|
--t42-wg-tab-over-max-height: 100vh;
|
|
115
114
|
--t42-wg-tab-over-max-width: 200px;
|
|
116
115
|
--t42-wg-tab-over-min-width: 200px;
|
|
@@ -174,4 +173,4 @@
|
|
|
174
173
|
--sticky-icon-off-hover: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 16 17'%3E%3Cpath fill='%231B6ADE' d='M11.3,3.8L9.5,5.6c-0.2,0.2-0.2,0.5,0,0.7s0.5,0.2,0.7,0L12,4.5c0.2-0.2,0.2-0.5,0-0.7 C11.8,3.6,11.5,3.6,11.3,3.8z M5.6,9.5l-1.8,1.8c-0.2,0.2-0.2,0.5,0,0.7c0.2,0.2,0.5,0.2,0.7,0l1.8-1.8c0.2-0.2,0.2-0.5,0-0.7 S5.8,9.3,5.6,9.5z'/%3E%3Cpath fill='%23626F81' d='M15.9,2L14,0.1c-0.2-0.2-0.5-0.1-0.6,0.2L13,2.6C13,2.8,13.2,3,13.4,3l2.3-0.4C16,2.6,16.1,2.3,15.9,2z M0.1,14 L2,15.9c0.2,0.2,0.5,0.1,0.6-0.2L3,13.4C3,13.2,2.8,13,2.6,13l-2.3,0.4C0,13.4-0.1,13.7,0.1,14z M6.5,0h-5C0.7,0,0,0.7,0,1.5v5 C0,7.3,0.7,8,1.5,8h5C7.3,8,8,7.3,8,6.5v-5C8,0.7,7.3,0,6.5,0z M6.5,7h-5C1.2,7,1,6.8,1,6.5V2h6v4.5C7,6.8,6.8,7,6.5,7z M14.5,8h-5 C8.7,8,8,8.7,8,9.5v5C8,15.3,8.7,16,9.5,16h5c0.8,0,1.5-0.7,1.5-1.5v-5C16,8.7,15.3,8,14.5,8z M14.5,15h-5C9.2,15,9,14.8,9,14.5V10 h6v4.5C15,14.8,14.8,15,14.5,15z'/%3E%3C/svg%3E%0A");
|
|
175
174
|
--sticky-icon-on: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 16 16'%3E%3Cpath fill='%23626F81' d='M6.5,4h-5C0.7,4,0,4.7,0,5.5v5C0,11.3,0.7,12,1.5,12h5C7.3,12,8,11.3,8,10.5v-5C8,4.7,7.3,4,6.5,4z M6.5,11h-5 C1.2,11,1,10.8,1,10.5V6h6v4.5C7,10.8,6.8,11,6.5,11z M14.5,4h-5C8.7,4,8,4.7,8,5.5v5C8,11.3,8.7,12,9.5,12h5c0.8,0,1.5-0.7,1.5-1.5 v-5C16,4.7,15.3,4,14.5,4z M14.5,11h-5C9.2,11,9,10.8,9,10.5V6h6v4.5C15,10.8,14.8,11,14.5,11z'/%3E%3Cpath fill='%23A4B1C3' d='M6.6,0l2.7,0c0.3,0,0.5,0.3,0.3,0.5L8.5,2.1v1.4C8.5,3.8,8.3,4,8,4C7.7,4,7.5,3.8,7.5,3.5V2.1L6.3,0.5 C6.2,0.3,6.3,0,6.6,0z M7.5,13.9v-1.4C7.5,12.2,7.7,12,8,12c0.3,0,0.5,0.2,0.5,0.5v1.4l1.2,1.6c0.2,0.2,0,0.5-0.3,0.5H6.6 c-0.3,0-0.5-0.3-0.3-0.5L7.5,13.9z M8,11c-0.3,0-0.5-0.2-0.5-0.5v-4C7.5,6.2,7.7,6,8,6c0.3,0,0.5,0.2,0.5,0.5v4 C8.5,10.8,8.3,11,8,11z'/%3E%3C/svg%3E");
|
|
176
175
|
--sticky-icon-on-hover: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 16 16'%3E%3Cpath fill='%23626F81' d='M6.5,4h-5C0.7,4,0,4.7,0,5.5v5C0,11.3,0.7,12,1.5,12h5C7.3,12,8,11.3,8,10.5v-5C8,4.7,7.3,4,6.5,4z M6.5,11h-5 C1.2,11,1,10.8,1,10.5V6h6v4.5C7,10.8,6.8,11,6.5,11z M14.5,4h-5C8.7,4,8,4.7,8,5.5v5C8,11.3,8.7,12,9.5,12h5c0.8,0,1.5-0.7,1.5-1.5 v-5C16,4.7,15.3,4,14.5,4z M14.5,11h-5C9.2,11,9,10.8,9,10.5V6h6v4.5C15,10.8,14.8,11,14.5,11z'/%3E%3Cpath fill='%234B92FB' d='M6.6,0l2.7,0c0.3,0,0.5,0.3,0.3,0.5L8.3,2.4c-0.1,0.2-0.4,0.2-0.6,0L6.3,0.5C6.2,0.3,6.3,0,6.6,0z M6.6,16h2.7 c0.3,0,0.5-0.3,0.3-0.5l-1.4-1.9c-0.1-0.2-0.4-0.2-0.6,0l-1.4,1.9C6.2,15.7,6.3,16,6.6,16z'/%3E%3Cpath fill='%234B92FB' d='M8.5,13.5v1C8.5,14.8,8.3,15,8,15c-0.3,0-0.5-0.2-0.5-0.5v-1v-1v-11C7.5,1.2,7.7,1,8,1c0.3,0,0.5,0.2,0.5,0.5 v11V13.5C8.5,13.5,8.5,13.5,8.5,13.5z'/%3E%3C/svg%3E");
|
|
177
|
-
}
|
|
176
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@interopio/groups-ui-react",
|
|
3
|
-
"version": "2.6.
|
|
3
|
+
"version": "2.6.2",
|
|
4
4
|
"description": "React library for building a Web Group App for io.Connect Desktop.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "interop.io",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"prepublishOnly": "npm run build",
|
|
29
29
|
"preversion": "npm run build",
|
|
30
30
|
"version": "npm run build",
|
|
31
|
-
"clean": "
|
|
31
|
+
"clean": ""
|
|
32
32
|
},
|
|
33
33
|
"publishConfig": {
|
|
34
34
|
"access": "public"
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"callback-registry": "^2.7.2",
|
|
39
39
|
"color2k": "^2.0.0",
|
|
40
40
|
"overlayscrollbars": "^2.8.3",
|
|
41
|
-
"use-sync-external-store": "^1.
|
|
41
|
+
"use-sync-external-store": "^1.4.0"
|
|
42
42
|
},
|
|
43
43
|
"peerDependencies": {
|
|
44
44
|
"@interopio/react-hooks": "^3.0.2",
|