ywana-core8 0.2.87 → 0.2.88
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/index.css +15 -3
- package/package.json +1 -1
- package/src/widgets/kanban/Kanban.css +15 -3
- package/src/widgets/kanban/Kanban.stories.jsx +819 -750
package/dist/index.css
CHANGED
|
@@ -17134,7 +17134,18 @@ li.selected,
|
|
|
17134
17134
|
height: 100%;
|
|
17135
17135
|
|
|
17136
17136
|
&.with-swimlanes {
|
|
17137
|
-
flex-
|
|
17137
|
+
flex-direction: column;
|
|
17138
|
+
}
|
|
17139
|
+
|
|
17140
|
+
&.with-swimlanes .kanban-header,
|
|
17141
|
+
&.with-swimlanes .kanban-swimlane,
|
|
17142
|
+
&.with-swimlanes .kanban-footer {
|
|
17143
|
+
min-width: max-content;
|
|
17144
|
+
}
|
|
17145
|
+
|
|
17146
|
+
&.with-swimlanes .kanban-swimlane > header {
|
|
17147
|
+
width: 100cqi;
|
|
17148
|
+
min-width: auto;
|
|
17138
17149
|
}
|
|
17139
17150
|
}
|
|
17140
17151
|
|
|
@@ -17243,6 +17254,7 @@ li.selected,
|
|
|
17243
17254
|
|
|
17244
17255
|
position: sticky;
|
|
17245
17256
|
top: 4rem;
|
|
17257
|
+
left: 0;
|
|
17246
17258
|
z-index: 50;
|
|
17247
17259
|
background-color: var(--paper-color);
|
|
17248
17260
|
|
|
@@ -17268,7 +17280,7 @@ li.selected,
|
|
|
17268
17280
|
width: 100%;
|
|
17269
17281
|
display: flex;
|
|
17270
17282
|
flex-direction: row;
|
|
17271
|
-
overflow:
|
|
17283
|
+
overflow: visible;
|
|
17272
17284
|
border-top: solid 1px var(--divider-color);
|
|
17273
17285
|
}
|
|
17274
17286
|
|
|
@@ -17281,7 +17293,7 @@ li.selected,
|
|
|
17281
17293
|
|
|
17282
17294
|
&>main.unfold {
|
|
17283
17295
|
max-height: fit-content;
|
|
17284
|
-
overflow:
|
|
17296
|
+
overflow: visible;
|
|
17285
17297
|
transition: all .5s ease-in-out;
|
|
17286
17298
|
}
|
|
17287
17299
|
}
|
package/package.json
CHANGED
|
@@ -14,7 +14,18 @@
|
|
|
14
14
|
height: 100%;
|
|
15
15
|
|
|
16
16
|
&.with-swimlanes {
|
|
17
|
-
flex-
|
|
17
|
+
flex-direction: column;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
&.with-swimlanes .kanban-header,
|
|
21
|
+
&.with-swimlanes .kanban-swimlane,
|
|
22
|
+
&.with-swimlanes .kanban-footer {
|
|
23
|
+
min-width: max-content;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
&.with-swimlanes .kanban-swimlane > header {
|
|
27
|
+
width: 100cqi;
|
|
28
|
+
min-width: auto;
|
|
18
29
|
}
|
|
19
30
|
}
|
|
20
31
|
|
|
@@ -123,6 +134,7 @@
|
|
|
123
134
|
|
|
124
135
|
position: sticky;
|
|
125
136
|
top: 4rem;
|
|
137
|
+
left: 0;
|
|
126
138
|
z-index: 50;
|
|
127
139
|
background-color: var(--paper-color);
|
|
128
140
|
|
|
@@ -148,7 +160,7 @@
|
|
|
148
160
|
width: 100%;
|
|
149
161
|
display: flex;
|
|
150
162
|
flex-direction: row;
|
|
151
|
-
overflow:
|
|
163
|
+
overflow: visible;
|
|
152
164
|
border-top: solid 1px var(--divider-color);
|
|
153
165
|
}
|
|
154
166
|
|
|
@@ -161,7 +173,7 @@
|
|
|
161
173
|
|
|
162
174
|
&>main.unfold {
|
|
163
175
|
max-height: fit-content;
|
|
164
|
-
overflow:
|
|
176
|
+
overflow: visible;
|
|
165
177
|
transition: all .5s ease-in-out;
|
|
166
178
|
}
|
|
167
179
|
}
|