microboard-ui-temp 0.1.169 → 0.3.0
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/_redirects +1 -0
- package/dist/{chunk-g9f7dzez.js → chunk-dy5ccdyb.js} +73513 -73170
- package/dist/{chunk-d2kcyv9d.css → chunk-f0mvcsbm.css} +424 -223
- package/dist/env.js +5 -0
- package/dist/example.html +2 -2
- package/dist/index.css +424 -223
- package/dist/index.html +96 -0
- package/dist/index.js +73513 -73170
- package/dist/spa.css +424 -223
- package/dist/spa.js +73513 -73170
- package/dist/titlePanel.js +21 -8
- package/dist/types/App/Connection.d.ts +11 -15
- package/dist/types/App/Storage.d.ts +2 -0
- package/dist/types/entities/comments/Thread/message/Message.d.ts +1 -1
- package/dist/types/entities/comments/{useScrollToUnreadMessage.d.ts → hooks/useScrollToUnreadMessage.d.ts} +2 -1
- package/dist/types/entities/comments/index.d.ts +1 -1
- package/dist/types/features/BoardItemsPanel/BoardItemsPanel.d.ts +2 -0
- package/dist/types/features/BoardItemsPanel/BoardItemsPanelContext.d.ts +11 -0
- package/dist/types/features/BoardItemsPanel/index.d.ts +2 -0
- package/dist/types/features/SidePanel/BoardItemsList.d.ts +6 -0
- package/dist/types/features/SidePanel/SidePanelContext.d.ts +3 -0
- package/dist/types/features/Templates/SelectTemplateModal/TemplateItemPreview/TemplateItemPreview.d.ts +3 -8
- package/dist/types/features/Templates/SelectTemplateModal/TemplateItemsGrid/TemplateItem/TemplateItem.d.ts +1 -1
- package/dist/types/features/Templates/SelectTemplateModal/TemplateItemsGrid/TemplateItemsGrid.d.ts +1 -1
- package/dist/types/features/Templates/lib.d.ts +1 -0
- package/dist/types/features/Templates/types.d.ts +8 -0
- package/dist/types/pages/TemplateBoardPage.d.ts +2 -0
- package/dist/types/shared/Lang/index.d.ts +2 -0
- package/dist/types/shared/api/base/base.d.ts +1 -0
- package/dist/types/shared/api/billing/types.d.ts +2 -2
- package/dist/types/shared/api/users/api.d.ts +3 -1
- package/dist/types/shared/lib/useHotkey.d.ts +8 -0
- package/package.json +8 -3
- /package/dist/types/entities/comments/{useCommentsMerge.d.ts → hooks/useCommentsMerge.d.ts} +0 -0
- /package/dist/types/entities/comments/{useIntersectionObserver.d.ts → hooks/useIntersectionObserver.d.ts} +0 -0
- /package/dist/types/{entities/comments → shared/date}/lib.d.ts +0 -0
|
@@ -229,6 +229,150 @@ input:-webkit-autofill:active {
|
|
|
229
229
|
margin: 0 10px;
|
|
230
230
|
}
|
|
231
231
|
|
|
232
|
+
/* src/entities/account/AuthForm.module.css */
|
|
233
|
+
.wrapper_nFyDWw {
|
|
234
|
+
display: flex;
|
|
235
|
+
background-color: #fff;
|
|
236
|
+
flex-direction: column;
|
|
237
|
+
justify-content: center;
|
|
238
|
+
align-items: stretch;
|
|
239
|
+
width: 100%;
|
|
240
|
+
height: 100%;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
.form_nFyDWw {
|
|
244
|
+
box-sizing: border-box;
|
|
245
|
+
display: flex;
|
|
246
|
+
border-radius: 8px;
|
|
247
|
+
flex-direction: column;
|
|
248
|
+
gap: 16px;
|
|
249
|
+
width: 100%;
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
.link_nFyDWw {
|
|
253
|
+
text-decoration: none;
|
|
254
|
+
color: #6c7173;
|
|
255
|
+
display: flex;
|
|
256
|
+
justify-content: center;
|
|
257
|
+
align-self: flex-start;
|
|
258
|
+
width: 100%;
|
|
259
|
+
margin-top: 10px;
|
|
260
|
+
font-family: Manrope, Arial;
|
|
261
|
+
font-size: 14px;
|
|
262
|
+
font-weight: 600;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
.link_nFyDWw:hover {
|
|
266
|
+
text-decoration: underline;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
.link_nFyDWw:visited {
|
|
270
|
+
color: #6c7173;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
.title_nFyDWw {
|
|
274
|
+
text-align: center;
|
|
275
|
+
margin-bottom: 32px;
|
|
276
|
+
font-family: Manrope, Arial;
|
|
277
|
+
font-weight: 600;
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
.error_nFyDWw {
|
|
281
|
+
color: red;
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
.button_nFyDWw {
|
|
285
|
+
color: #fff;
|
|
286
|
+
cursor: pointer;
|
|
287
|
+
outline-color: #0000;
|
|
288
|
+
box-sizing: border-box;
|
|
289
|
+
display: flex;
|
|
290
|
+
background-color: #14151a;
|
|
291
|
+
border: 1px solid #14151a;
|
|
292
|
+
border-radius: 12px;
|
|
293
|
+
justify-content: center;
|
|
294
|
+
align-items: center;
|
|
295
|
+
gap: 8px;
|
|
296
|
+
width: 100%;
|
|
297
|
+
height: 40px;
|
|
298
|
+
margin-top: 32px;
|
|
299
|
+
font-family: Manrope, Arial;
|
|
300
|
+
font-size: 14px;
|
|
301
|
+
font-weight: 500;
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
.button_nFyDWw:disabled {
|
|
305
|
+
color: #0a0f2940;
|
|
306
|
+
background-color: #e9eaec;
|
|
307
|
+
border-color: #e9eaec;
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
.button_nFyDWw:disabled:hover {
|
|
311
|
+
cursor: not-allowed;
|
|
312
|
+
color: #0a0f2940;
|
|
313
|
+
background-color: #e9eaec;
|
|
314
|
+
border-color: #e9eaec;
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
.button_nFyDWw:active {
|
|
318
|
+
outline: 2px solid #c8b2ff80;
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
.button_nFyDWw:hover {
|
|
322
|
+
background-color: #1f2228;
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
.forgot_nFyDWw {
|
|
326
|
+
font-weight: 600 !important;
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
.btns_nFyDWw {
|
|
330
|
+
display: flex;
|
|
331
|
+
flex-direction: column;
|
|
332
|
+
align-items: center;
|
|
333
|
+
gap: 12px;
|
|
334
|
+
width: 100%;
|
|
335
|
+
margin-top: 16px;
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
.anotherBtns_nFyDWw {
|
|
339
|
+
display: flex;
|
|
340
|
+
flex-direction: column;
|
|
341
|
+
gap: 16px;
|
|
342
|
+
width: 100%;
|
|
343
|
+
margin: 0 0 40px;
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
@media screen and (max-width: 640px) {
|
|
347
|
+
.title_nFyDWw {
|
|
348
|
+
margin-bottom: 8px;
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
.policy_nFyDWw {
|
|
352
|
+
text-align: center;
|
|
353
|
+
margin-bottom: 20px;
|
|
354
|
+
font-size: 14px;
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
.policyLink_nFyDWw {
|
|
358
|
+
text-decoration: none;
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
.policyLink_nFyDWw:after {
|
|
362
|
+
content: "";
|
|
363
|
+
position: absolute;
|
|
364
|
+
background-color: #0000;
|
|
365
|
+
width: 100%;
|
|
366
|
+
height: 2px;
|
|
367
|
+
bottom: -3px;
|
|
368
|
+
left: 0;
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
.btns_nFyDWw {
|
|
372
|
+
margin-top: 8px;
|
|
373
|
+
}
|
|
374
|
+
}
|
|
375
|
+
|
|
232
376
|
/* src/shared/ui-lib/UiButton/UiButton.module.css */
|
|
233
377
|
.default_XNHIwg {
|
|
234
378
|
--background-color: #924fe8;
|
|
@@ -836,182 +980,29 @@ input:-webkit-autofill:active {
|
|
|
836
980
|
opacity: 0;
|
|
837
981
|
}
|
|
838
982
|
|
|
839
|
-
100% {
|
|
840
|
-
opacity: 1;
|
|
841
|
-
}
|
|
842
|
-
}
|
|
843
|
-
|
|
844
|
-
@keyframes fadeOut_Bde5bA {
|
|
845
|
-
0% {
|
|
846
|
-
opacity: 1;
|
|
847
|
-
}
|
|
848
|
-
|
|
849
|
-
100% {
|
|
850
|
-
opacity: 0;
|
|
851
|
-
}
|
|
852
|
-
}
|
|
853
|
-
|
|
854
|
-
/* src/shared/ui-lib/Loader/Loader.module.css */
|
|
855
|
-
.loader_U95jQg {
|
|
856
|
-
animation: loaderAnimation 1s infinite steps(12);
|
|
857
|
-
}
|
|
858
|
-
|
|
859
|
-
@keyframes loaderAnimation_XZFUtg {
|
|
860
|
-
100% {
|
|
861
|
-
transform: rotate(1turn);
|
|
862
|
-
}
|
|
863
|
-
}
|
|
864
|
-
|
|
865
|
-
/* src/features/WalletLoginButton/WalletLoginButton.module.css */
|
|
866
|
-
.btn_JyYbVQ {
|
|
867
|
-
position: relative;
|
|
868
|
-
width: 100%;
|
|
869
|
-
max-width: 252px;
|
|
870
|
-
margin: 0 auto;
|
|
871
|
-
font-weight: 500;
|
|
872
|
-
}
|
|
873
|
-
|
|
874
|
-
/* src/entities/account/AuthForm.module.css */
|
|
875
|
-
.wrapper_nFyDWw {
|
|
876
|
-
display: flex;
|
|
877
|
-
background-color: #fff;
|
|
878
|
-
flex-direction: column;
|
|
879
|
-
justify-content: center;
|
|
880
|
-
align-items: stretch;
|
|
881
|
-
width: 100%;
|
|
882
|
-
height: 100%;
|
|
883
|
-
}
|
|
884
|
-
|
|
885
|
-
.form_nFyDWw {
|
|
886
|
-
box-sizing: border-box;
|
|
887
|
-
display: flex;
|
|
888
|
-
border-radius: 8px;
|
|
889
|
-
flex-direction: column;
|
|
890
|
-
gap: 16px;
|
|
891
|
-
width: 100%;
|
|
892
|
-
}
|
|
893
|
-
|
|
894
|
-
.link_nFyDWw {
|
|
895
|
-
text-decoration: none;
|
|
896
|
-
color: #6c7173;
|
|
897
|
-
display: flex;
|
|
898
|
-
justify-content: center;
|
|
899
|
-
align-self: flex-start;
|
|
900
|
-
width: 100%;
|
|
901
|
-
margin-top: 10px;
|
|
902
|
-
font-family: Manrope, Arial;
|
|
903
|
-
font-size: 14px;
|
|
904
|
-
font-weight: 600;
|
|
905
|
-
}
|
|
906
|
-
|
|
907
|
-
.link_nFyDWw:hover {
|
|
908
|
-
text-decoration: underline;
|
|
909
|
-
}
|
|
910
|
-
|
|
911
|
-
.link_nFyDWw:visited {
|
|
912
|
-
color: #6c7173;
|
|
913
|
-
}
|
|
914
|
-
|
|
915
|
-
.title_nFyDWw {
|
|
916
|
-
text-align: center;
|
|
917
|
-
margin-bottom: 32px;
|
|
918
|
-
font-family: Manrope, Arial;
|
|
919
|
-
font-weight: 600;
|
|
920
|
-
}
|
|
921
|
-
|
|
922
|
-
.error_nFyDWw {
|
|
923
|
-
color: red;
|
|
924
|
-
}
|
|
925
|
-
|
|
926
|
-
.button_nFyDWw {
|
|
927
|
-
color: #fff;
|
|
928
|
-
cursor: pointer;
|
|
929
|
-
outline-color: #0000;
|
|
930
|
-
box-sizing: border-box;
|
|
931
|
-
display: flex;
|
|
932
|
-
background-color: #14151a;
|
|
933
|
-
border: 1px solid #14151a;
|
|
934
|
-
border-radius: 12px;
|
|
935
|
-
justify-content: center;
|
|
936
|
-
align-items: center;
|
|
937
|
-
gap: 8px;
|
|
938
|
-
width: 100%;
|
|
939
|
-
height: 40px;
|
|
940
|
-
margin-top: 32px;
|
|
941
|
-
font-family: Manrope, Arial;
|
|
942
|
-
font-size: 14px;
|
|
943
|
-
font-weight: 500;
|
|
944
|
-
}
|
|
945
|
-
|
|
946
|
-
.button_nFyDWw:disabled {
|
|
947
|
-
color: #0a0f2940;
|
|
948
|
-
background-color: #e9eaec;
|
|
949
|
-
border-color: #e9eaec;
|
|
950
|
-
}
|
|
951
|
-
|
|
952
|
-
.button_nFyDWw:disabled:hover {
|
|
953
|
-
cursor: not-allowed;
|
|
954
|
-
color: #0a0f2940;
|
|
955
|
-
background-color: #e9eaec;
|
|
956
|
-
border-color: #e9eaec;
|
|
957
|
-
}
|
|
958
|
-
|
|
959
|
-
.button_nFyDWw:active {
|
|
960
|
-
outline: 2px solid #c8b2ff80;
|
|
961
|
-
}
|
|
962
|
-
|
|
963
|
-
.button_nFyDWw:hover {
|
|
964
|
-
background-color: #1f2228;
|
|
965
|
-
}
|
|
966
|
-
|
|
967
|
-
.forgot_nFyDWw {
|
|
968
|
-
font-weight: 600 !important;
|
|
969
|
-
}
|
|
970
|
-
|
|
971
|
-
.btns_nFyDWw {
|
|
972
|
-
display: flex;
|
|
973
|
-
flex-direction: column;
|
|
974
|
-
align-items: center;
|
|
975
|
-
gap: 12px;
|
|
976
|
-
width: 100%;
|
|
977
|
-
margin-top: 16px;
|
|
978
|
-
}
|
|
979
|
-
|
|
980
|
-
.anotherBtns_nFyDWw {
|
|
981
|
-
display: flex;
|
|
982
|
-
flex-direction: column;
|
|
983
|
-
gap: 16px;
|
|
984
|
-
width: 100%;
|
|
985
|
-
margin: 0 0 40px;
|
|
986
|
-
}
|
|
987
|
-
|
|
988
|
-
@media screen and (max-width: 640px) {
|
|
989
|
-
.title_nFyDWw {
|
|
990
|
-
margin-bottom: 8px;
|
|
991
|
-
}
|
|
992
|
-
|
|
993
|
-
.policy_nFyDWw {
|
|
994
|
-
text-align: center;
|
|
995
|
-
margin-bottom: 20px;
|
|
996
|
-
font-size: 14px;
|
|
983
|
+
100% {
|
|
984
|
+
opacity: 1;
|
|
997
985
|
}
|
|
986
|
+
}
|
|
998
987
|
|
|
999
|
-
|
|
1000
|
-
|
|
988
|
+
@keyframes fadeOut_Bde5bA {
|
|
989
|
+
0% {
|
|
990
|
+
opacity: 1;
|
|
1001
991
|
}
|
|
1002
992
|
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
position: absolute;
|
|
1006
|
-
background-color: #0000;
|
|
1007
|
-
width: 100%;
|
|
1008
|
-
height: 2px;
|
|
1009
|
-
bottom: -3px;
|
|
1010
|
-
left: 0;
|
|
993
|
+
100% {
|
|
994
|
+
opacity: 0;
|
|
1011
995
|
}
|
|
996
|
+
}
|
|
1012
997
|
|
|
1013
|
-
|
|
1014
|
-
|
|
998
|
+
/* src/shared/ui-lib/Loader/Loader.module.css */
|
|
999
|
+
.loader_U95jQg {
|
|
1000
|
+
animation: loaderAnimation 1s infinite steps(12);
|
|
1001
|
+
}
|
|
1002
|
+
|
|
1003
|
+
@keyframes loaderAnimation_XZFUtg {
|
|
1004
|
+
100% {
|
|
1005
|
+
transform: rotate(1turn);
|
|
1015
1006
|
}
|
|
1016
1007
|
}
|
|
1017
1008
|
|
|
@@ -7272,6 +7263,92 @@ td.currentTariff_0VfwRg {
|
|
|
7272
7263
|
font-weight: 400;
|
|
7273
7264
|
}
|
|
7274
7265
|
|
|
7266
|
+
/* src/features/SidePanel/BoardItemsList.module.css */
|
|
7267
|
+
.list_Jwe-NQ {
|
|
7268
|
+
display: flex;
|
|
7269
|
+
overflow-y: auto;
|
|
7270
|
+
flex-direction: column;
|
|
7271
|
+
flex: 1 1 0;
|
|
7272
|
+
padding: 2px 0 6px;
|
|
7273
|
+
}
|
|
7274
|
+
|
|
7275
|
+
.list_Jwe-NQ::-webkit-scrollbar {
|
|
7276
|
+
width: 4px;
|
|
7277
|
+
}
|
|
7278
|
+
|
|
7279
|
+
.list_Jwe-NQ::-webkit-scrollbar-thumb {
|
|
7280
|
+
background-color: #dee1e8;
|
|
7281
|
+
border-radius: 2px;
|
|
7282
|
+
}
|
|
7283
|
+
|
|
7284
|
+
.row_Jwe-NQ {
|
|
7285
|
+
display: flex;
|
|
7286
|
+
align-items: center;
|
|
7287
|
+
gap: 2px;
|
|
7288
|
+
padding-right: 4px;
|
|
7289
|
+
}
|
|
7290
|
+
|
|
7291
|
+
.item_Jwe-NQ {
|
|
7292
|
+
display: flex;
|
|
7293
|
+
color: var(--text-base-primary);
|
|
7294
|
+
cursor: pointer;
|
|
7295
|
+
text-align: left;
|
|
7296
|
+
overflow: hidden;
|
|
7297
|
+
background: none;
|
|
7298
|
+
border: none;
|
|
7299
|
+
border-radius: 5px;
|
|
7300
|
+
flex: 1;
|
|
7301
|
+
align-items: center;
|
|
7302
|
+
gap: 5px;
|
|
7303
|
+
min-width: 0;
|
|
7304
|
+
padding: 3px 4px;
|
|
7305
|
+
font-family: Manrope, sans-serif;
|
|
7306
|
+
font-size: 12px;
|
|
7307
|
+
}
|
|
7308
|
+
|
|
7309
|
+
.chevronBtn_Jwe-NQ {
|
|
7310
|
+
display: flex;
|
|
7311
|
+
cursor: pointer;
|
|
7312
|
+
color: var(--text-base-secondary, #888);
|
|
7313
|
+
background: none;
|
|
7314
|
+
border: none;
|
|
7315
|
+
border-radius: 3px;
|
|
7316
|
+
flex-shrink: 0;
|
|
7317
|
+
justify-content: center;
|
|
7318
|
+
align-items: center;
|
|
7319
|
+
width: 20px;
|
|
7320
|
+
height: 20px;
|
|
7321
|
+
padding: 0;
|
|
7322
|
+
}
|
|
7323
|
+
|
|
7324
|
+
.chevronBtn_Jwe-NQ:hover, .item_Jwe-NQ:hover {
|
|
7325
|
+
background-color: var(--bg-action-secondary-hover, #0000000d);
|
|
7326
|
+
}
|
|
7327
|
+
|
|
7328
|
+
.typeIcon_Jwe-NQ {
|
|
7329
|
+
opacity: .55;
|
|
7330
|
+
flex-shrink: 0;
|
|
7331
|
+
}
|
|
7332
|
+
|
|
7333
|
+
.label_Jwe-NQ {
|
|
7334
|
+
overflow: hidden;
|
|
7335
|
+
text-overflow: ellipsis;
|
|
7336
|
+
white-space: nowrap;
|
|
7337
|
+
}
|
|
7338
|
+
|
|
7339
|
+
.empty_Jwe-NQ {
|
|
7340
|
+
color: var(--text-base-secondary, #888);
|
|
7341
|
+
padding: 4px 8px 6px 28px;
|
|
7342
|
+
font-family: Manrope, sans-serif;
|
|
7343
|
+
font-size: 12px;
|
|
7344
|
+
}
|
|
7345
|
+
|
|
7346
|
+
.highlight_Jwe-NQ {
|
|
7347
|
+
color: inherit;
|
|
7348
|
+
background-color: #924fe833;
|
|
7349
|
+
border-radius: 2px;
|
|
7350
|
+
}
|
|
7351
|
+
|
|
7275
7352
|
/* src/features/SidePanel/ResizableEdge.module.css */
|
|
7276
7353
|
.resizeHandle_n80Fqw {
|
|
7277
7354
|
position: absolute;
|
|
@@ -7378,6 +7455,55 @@ td.currentTariff_0VfwRg {
|
|
|
7378
7455
|
color: var(--text-base-primary);
|
|
7379
7456
|
}
|
|
7380
7457
|
|
|
7458
|
+
.itemsSearch_5QMOig {
|
|
7459
|
+
display: flex;
|
|
7460
|
+
border: 1px solid var(--border-action-normal, #0000001f);
|
|
7461
|
+
background: var(--bg-action-secondary, #f5f5f7);
|
|
7462
|
+
border-radius: 8px;
|
|
7463
|
+
flex-shrink: 0;
|
|
7464
|
+
align-items: center;
|
|
7465
|
+
gap: 6px;
|
|
7466
|
+
margin: 4px 14px 6px;
|
|
7467
|
+
padding: 5px 8px;
|
|
7468
|
+
}
|
|
7469
|
+
|
|
7470
|
+
.itemsSearchIcon_5QMOig {
|
|
7471
|
+
opacity: .45;
|
|
7472
|
+
flex-shrink: 0;
|
|
7473
|
+
}
|
|
7474
|
+
|
|
7475
|
+
.itemsSearchInput_5QMOig {
|
|
7476
|
+
outline: none;
|
|
7477
|
+
color: var(--text-base-primary);
|
|
7478
|
+
background: none;
|
|
7479
|
+
border: none;
|
|
7480
|
+
flex: 1;
|
|
7481
|
+
min-width: 0;
|
|
7482
|
+
font-family: Manrope, sans-serif;
|
|
7483
|
+
font-size: 12px;
|
|
7484
|
+
}
|
|
7485
|
+
|
|
7486
|
+
.itemsSearchInput_5QMOig::placeholder {
|
|
7487
|
+
color: var(--text-base-secondary, #aaa);
|
|
7488
|
+
}
|
|
7489
|
+
|
|
7490
|
+
.itemsSearchClear_5QMOig {
|
|
7491
|
+
display: flex;
|
|
7492
|
+
cursor: pointer;
|
|
7493
|
+
opacity: .45;
|
|
7494
|
+
background: none;
|
|
7495
|
+
border: none;
|
|
7496
|
+
border-radius: 3px;
|
|
7497
|
+
flex-shrink: 0;
|
|
7498
|
+
justify-content: center;
|
|
7499
|
+
align-items: center;
|
|
7500
|
+
padding: 0;
|
|
7501
|
+
}
|
|
7502
|
+
|
|
7503
|
+
.itemsSearchClear_5QMOig:hover {
|
|
7504
|
+
opacity: .8;
|
|
7505
|
+
}
|
|
7506
|
+
|
|
7381
7507
|
.importMiroBtnWr_5QMOig {
|
|
7382
7508
|
padding: 0 16px 16px;
|
|
7383
7509
|
}
|
|
@@ -8705,56 +8831,6 @@ td.currentTariff_0VfwRg {
|
|
|
8705
8831
|
color: #0a0f2940;
|
|
8706
8832
|
}
|
|
8707
8833
|
|
|
8708
|
-
/* src/features/LandingMenu/LandingMenu.module.css */
|
|
8709
|
-
.menuPanel_N49qJQ {
|
|
8710
|
-
position: absolute;
|
|
8711
|
-
overflow: hidden;
|
|
8712
|
-
border-radius: 900px;
|
|
8713
|
-
top: 12px;
|
|
8714
|
-
left: 50%;
|
|
8715
|
-
transform: translateX(-50%);
|
|
8716
|
-
}
|
|
8717
|
-
|
|
8718
|
-
.link_N49qJQ {
|
|
8719
|
-
background: linear-gradient(270deg, #944fe7 0%, #a347e7 24.15%, #b240e7 66.97%, #c239e7 100%);
|
|
8720
|
-
-webkit-text-fill-color: transparent;
|
|
8721
|
-
overflow: hidden;
|
|
8722
|
-
white-space: nowrap;
|
|
8723
|
-
-webkit-background-clip: text;
|
|
8724
|
-
background-clip: text;
|
|
8725
|
-
padding-left: 18px;
|
|
8726
|
-
padding-right: 18px;
|
|
8727
|
-
font-size: 16px;
|
|
8728
|
-
font-weight: 500;
|
|
8729
|
-
}
|
|
8730
|
-
|
|
8731
|
-
.linksWrapper_N49qJQ {
|
|
8732
|
-
display: flex;
|
|
8733
|
-
align-items: center;
|
|
8734
|
-
max-width: 0;
|
|
8735
|
-
transition: max-width .3s ease-in-out;
|
|
8736
|
-
}
|
|
8737
|
-
|
|
8738
|
-
.open_N49qJQ .linksWrapper_N49qJQ {
|
|
8739
|
-
max-width: 999px;
|
|
8740
|
-
}
|
|
8741
|
-
|
|
8742
|
-
.menuPanel_N49qJQ:not(.open_N49qJQ) .openBtn_N49qJQ {
|
|
8743
|
-
--padding: 12px 24px;
|
|
8744
|
-
}
|
|
8745
|
-
|
|
8746
|
-
@media screen and (max-width: 1620px) {
|
|
8747
|
-
.menuPanel_N49qJQ {
|
|
8748
|
-
transform: translateX(-24%);
|
|
8749
|
-
}
|
|
8750
|
-
}
|
|
8751
|
-
|
|
8752
|
-
@media screen and (max-width: 1360px) {
|
|
8753
|
-
.menuPanel_N49qJQ {
|
|
8754
|
-
display: none;
|
|
8755
|
-
}
|
|
8756
|
-
}
|
|
8757
|
-
|
|
8758
8834
|
/* src/features/LandingMenu/MobileLandingMenu.module.css */
|
|
8759
8835
|
.mobileLandingMenuWrapper_e5mELA {
|
|
8760
8836
|
position: absolute;
|
|
@@ -8949,7 +9025,6 @@ td.currentTariff_0VfwRg {
|
|
|
8949
9025
|
position: absolute;
|
|
8950
9026
|
top: -60px;
|
|
8951
9027
|
left: var(--absolute-position-panel-padding);
|
|
8952
|
-
overflow: hidden;
|
|
8953
9028
|
}
|
|
8954
9029
|
|
|
8955
9030
|
.logoWrapper_i3VZwA.viewMode_i3VZwA {
|
|
@@ -9176,7 +9251,30 @@ input.rename_i3VZwA {
|
|
|
9176
9251
|
width: 50%;
|
|
9177
9252
|
}
|
|
9178
9253
|
|
|
9179
|
-
.btn_FAHvNA {
|
|
9254
|
+
.btn_FAHvNA, .previewUpload_FAHvNA {
|
|
9255
|
+
width: 100%;
|
|
9256
|
+
}
|
|
9257
|
+
|
|
9258
|
+
.fileInputHidden_FAHvNA {
|
|
9259
|
+
display: none;
|
|
9260
|
+
}
|
|
9261
|
+
|
|
9262
|
+
.previewImageWrapper_FAHvNA {
|
|
9263
|
+
display: flex;
|
|
9264
|
+
flex-direction: column;
|
|
9265
|
+
align-items: center;
|
|
9266
|
+
gap: 8px;
|
|
9267
|
+
width: 100%;
|
|
9268
|
+
}
|
|
9269
|
+
|
|
9270
|
+
.previewImage_FAHvNA {
|
|
9271
|
+
object-fit: cover;
|
|
9272
|
+
border-radius: 8px;
|
|
9273
|
+
width: 100%;
|
|
9274
|
+
max-height: 200px;
|
|
9275
|
+
}
|
|
9276
|
+
|
|
9277
|
+
.changePreviewBtn_FAHvNA {
|
|
9180
9278
|
width: 100%;
|
|
9181
9279
|
}
|
|
9182
9280
|
|
|
@@ -10781,6 +10879,109 @@ input.rename_i3VZwA {
|
|
|
10781
10879
|
border-color: #ff3b3b !important;
|
|
10782
10880
|
}
|
|
10783
10881
|
|
|
10882
|
+
/* src/features/BoardItemsPanel/BoardItemsPanel.module.css */
|
|
10883
|
+
.panel_8tFAuw {
|
|
10884
|
+
overflow: hidden;
|
|
10885
|
+
box-shadow: none;
|
|
10886
|
+
position: relative;
|
|
10887
|
+
display: flex;
|
|
10888
|
+
border: none;
|
|
10889
|
+
flex-direction: column;
|
|
10890
|
+
align-items: stretch;
|
|
10891
|
+
width: 0;
|
|
10892
|
+
margin-left: 0;
|
|
10893
|
+
transition: width .3s, max-width .3s, min-width .3s;
|
|
10894
|
+
}
|
|
10895
|
+
|
|
10896
|
+
.panel_8tFAuw.open_8tFAuw {
|
|
10897
|
+
visibility: visible;
|
|
10898
|
+
border: 1px solid var(--border-action-normal);
|
|
10899
|
+
width: 260px;
|
|
10900
|
+
min-width: 180px;
|
|
10901
|
+
max-width: 35dvw;
|
|
10902
|
+
margin-left: 12px;
|
|
10903
|
+
box-shadow: 0 4px 4px #00000040;
|
|
10904
|
+
padding: 8px 4px !important;
|
|
10905
|
+
}
|
|
10906
|
+
|
|
10907
|
+
.header_8tFAuw {
|
|
10908
|
+
display: flex;
|
|
10909
|
+
justify-content: space-between;
|
|
10910
|
+
align-items: center;
|
|
10911
|
+
padding: 0 4px;
|
|
10912
|
+
}
|
|
10913
|
+
|
|
10914
|
+
.title_8tFAuw {
|
|
10915
|
+
flex: 1 0;
|
|
10916
|
+
padding: 4px 8px;
|
|
10917
|
+
font-size: 14px;
|
|
10918
|
+
font-weight: 500;
|
|
10919
|
+
line-height: 20px;
|
|
10920
|
+
}
|
|
10921
|
+
|
|
10922
|
+
.close_8tFAuw {
|
|
10923
|
+
--padding: 4px;
|
|
10924
|
+
--min-width: 28px;
|
|
10925
|
+
--min-height: 28px;
|
|
10926
|
+
color: var(--text-base-primary);
|
|
10927
|
+
border-radius: 12px;
|
|
10928
|
+
}
|
|
10929
|
+
|
|
10930
|
+
.search_8tFAuw {
|
|
10931
|
+
display: flex;
|
|
10932
|
+
border: 1px solid var(--border-action-normal, #0000001f);
|
|
10933
|
+
background: var(--bg-action-secondary, #f5f5f7);
|
|
10934
|
+
border-radius: 8px;
|
|
10935
|
+
align-items: center;
|
|
10936
|
+
gap: 6px;
|
|
10937
|
+
margin: 4px 8px 2px;
|
|
10938
|
+
padding: 5px 8px;
|
|
10939
|
+
}
|
|
10940
|
+
|
|
10941
|
+
.searchIcon_8tFAuw {
|
|
10942
|
+
opacity: .45;
|
|
10943
|
+
flex-shrink: 0;
|
|
10944
|
+
}
|
|
10945
|
+
|
|
10946
|
+
.searchInput_8tFAuw {
|
|
10947
|
+
outline: none;
|
|
10948
|
+
color: var(--text-base-primary);
|
|
10949
|
+
background: none;
|
|
10950
|
+
border: none;
|
|
10951
|
+
flex: 1;
|
|
10952
|
+
min-width: 0;
|
|
10953
|
+
font-family: Manrope, sans-serif;
|
|
10954
|
+
font-size: 12px;
|
|
10955
|
+
}
|
|
10956
|
+
|
|
10957
|
+
.searchInput_8tFAuw::placeholder {
|
|
10958
|
+
color: var(--text-base-secondary, #aaa);
|
|
10959
|
+
}
|
|
10960
|
+
|
|
10961
|
+
.searchClear_8tFAuw {
|
|
10962
|
+
display: flex;
|
|
10963
|
+
cursor: pointer;
|
|
10964
|
+
opacity: .45;
|
|
10965
|
+
background: none;
|
|
10966
|
+
border: none;
|
|
10967
|
+
border-radius: 3px;
|
|
10968
|
+
flex-shrink: 0;
|
|
10969
|
+
justify-content: center;
|
|
10970
|
+
align-items: center;
|
|
10971
|
+
padding: 0;
|
|
10972
|
+
}
|
|
10973
|
+
|
|
10974
|
+
.searchClear_8tFAuw:hover {
|
|
10975
|
+
opacity: .8;
|
|
10976
|
+
}
|
|
10977
|
+
|
|
10978
|
+
.content_8tFAuw {
|
|
10979
|
+
overflow: hidden;
|
|
10980
|
+
display: flex;
|
|
10981
|
+
flex-direction: column;
|
|
10982
|
+
flex: 1 1 0;
|
|
10983
|
+
}
|
|
10984
|
+
|
|
10784
10985
|
/* src/features/SidePanelsContainer/SidePanelsContainer.module.css */
|
|
10785
10986
|
.sidePanels_r8Vrbw {
|
|
10786
10987
|
display: flex;
|
|
@@ -11671,7 +11872,7 @@ input.rename_i3VZwA {
|
|
|
11671
11872
|
flex-direction: column;
|
|
11672
11873
|
align-items: center;
|
|
11673
11874
|
width: 420px;
|
|
11674
|
-
max-width:
|
|
11875
|
+
max-width: 96dvw;
|
|
11675
11876
|
padding: 0 !important;
|
|
11676
11877
|
}
|
|
11677
11878
|
|
package/dist/env.js
ADDED
package/dist/example.html
CHANGED
|
@@ -31,8 +31,8 @@
|
|
|
31
31
|
rel="stylesheet"
|
|
32
32
|
/>
|
|
33
33
|
|
|
34
|
-
<link rel="stylesheet" crossorigin href="/chunk-
|
|
35
|
-
<script type="module" crossorigin src="/chunk-
|
|
34
|
+
<link rel="stylesheet" crossorigin href="/chunk-f0mvcsbm.css"><script src="/env.js"></script>
|
|
35
|
+
<script type="module" crossorigin src="/chunk-dy5ccdyb.js"></script></head>
|
|
36
36
|
|
|
37
37
|
<body
|
|
38
38
|
style="
|