@libxai/board 0.17.47 → 0.17.48
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.cjs +22 -22
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +39 -1
- package/dist/index.d.ts +39 -1
- package/dist/index.js +22 -22
- package/dist/index.js.map +1 -1
- package/dist/styles.css +182 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -10484,6 +10484,188 @@ body {
|
|
|
10484
10484
|
}
|
|
10485
10485
|
|
|
10486
10486
|
|
|
10487
|
+
/* ============================================================================
|
|
10488
|
+
ADD COLUMN BUTTON (v0.9.0)
|
|
10489
|
+
Button component for adding new columns to the board
|
|
10490
|
+
============================================================================ */
|
|
10491
|
+
|
|
10492
|
+
|
|
10493
|
+
.asakaa-add-column {
|
|
10494
|
+
display: flex;
|
|
10495
|
+
flex-direction: column;
|
|
10496
|
+
min-width: var(--column-width);
|
|
10497
|
+
max-width: var(--column-width);
|
|
10498
|
+
flex-shrink: 0;
|
|
10499
|
+
padding: var(--space-4);
|
|
10500
|
+
}
|
|
10501
|
+
|
|
10502
|
+
|
|
10503
|
+
.asakaa-add-column__button {
|
|
10504
|
+
display: flex;
|
|
10505
|
+
align-items: center;
|
|
10506
|
+
justify-content: center;
|
|
10507
|
+
gap: var(--space-2);
|
|
10508
|
+
width: 100%;
|
|
10509
|
+
height: 48px;
|
|
10510
|
+
padding: var(--space-3) var(--space-4);
|
|
10511
|
+
font-size: var(--font-sm);
|
|
10512
|
+
font-weight: var(--font-medium);
|
|
10513
|
+
color: var(--color-text-tertiary);
|
|
10514
|
+
background: transparent;
|
|
10515
|
+
border: 2px dashed var(--color-border-primary);
|
|
10516
|
+
border-radius: var(--radius-lg);
|
|
10517
|
+
cursor: pointer;
|
|
10518
|
+
transition: all var(--duration-fast) var(--ease-smooth);
|
|
10519
|
+
}
|
|
10520
|
+
|
|
10521
|
+
|
|
10522
|
+
.asakaa-add-column__button:hover:not(:disabled) {
|
|
10523
|
+
color: var(--color-blue);
|
|
10524
|
+
border-color: var(--color-blue);
|
|
10525
|
+
background: rgba(59, 130, 246, var(--opacity-subtle));
|
|
10526
|
+
}
|
|
10527
|
+
|
|
10528
|
+
|
|
10529
|
+
.asakaa-add-column__button:disabled {
|
|
10530
|
+
opacity: 0.5;
|
|
10531
|
+
cursor: not-allowed;
|
|
10532
|
+
}
|
|
10533
|
+
|
|
10534
|
+
|
|
10535
|
+
/* Editing mode */
|
|
10536
|
+
|
|
10537
|
+
|
|
10538
|
+
.asakaa-add-column--editing {
|
|
10539
|
+
min-width: var(--column-width);
|
|
10540
|
+
max-width: var(--column-width);
|
|
10541
|
+
}
|
|
10542
|
+
|
|
10543
|
+
|
|
10544
|
+
.asakaa-add-column__input-wrapper {
|
|
10545
|
+
display: flex;
|
|
10546
|
+
flex-direction: column;
|
|
10547
|
+
gap: var(--space-2);
|
|
10548
|
+
padding: var(--space-3);
|
|
10549
|
+
background: var(--color-bg-tertiary);
|
|
10550
|
+
border: 1px solid var(--color-border-primary);
|
|
10551
|
+
border-radius: var(--radius-lg);
|
|
10552
|
+
}
|
|
10553
|
+
|
|
10554
|
+
|
|
10555
|
+
.asakaa-add-column__input {
|
|
10556
|
+
width: 100%;
|
|
10557
|
+
height: 40px;
|
|
10558
|
+
padding: var(--space-2) var(--space-3);
|
|
10559
|
+
font-size: var(--font-sm);
|
|
10560
|
+
color: var(--color-text-primary);
|
|
10561
|
+
background: var(--color-bg-secondary);
|
|
10562
|
+
border: 1px solid var(--color-border-primary);
|
|
10563
|
+
border-radius: var(--radius-md);
|
|
10564
|
+
outline: none;
|
|
10565
|
+
transition: border-color var(--duration-fast) var(--ease-smooth);
|
|
10566
|
+
}
|
|
10567
|
+
|
|
10568
|
+
|
|
10569
|
+
.asakaa-add-column__input:focus {
|
|
10570
|
+
border-color: var(--color-blue);
|
|
10571
|
+
}
|
|
10572
|
+
|
|
10573
|
+
|
|
10574
|
+
.asakaa-add-column__input::-moz-placeholder {
|
|
10575
|
+
color: var(--color-text-tertiary);
|
|
10576
|
+
}
|
|
10577
|
+
|
|
10578
|
+
|
|
10579
|
+
.asakaa-add-column__input::placeholder {
|
|
10580
|
+
color: var(--color-text-tertiary);
|
|
10581
|
+
}
|
|
10582
|
+
|
|
10583
|
+
|
|
10584
|
+
.asakaa-add-column__actions {
|
|
10585
|
+
display: flex;
|
|
10586
|
+
gap: var(--space-2);
|
|
10587
|
+
justify-content: flex-end;
|
|
10588
|
+
}
|
|
10589
|
+
|
|
10590
|
+
|
|
10591
|
+
.asakaa-add-column__submit,
|
|
10592
|
+
.asakaa-add-column__cancel {
|
|
10593
|
+
display: flex;
|
|
10594
|
+
align-items: center;
|
|
10595
|
+
justify-content: center;
|
|
10596
|
+
width: 32px;
|
|
10597
|
+
height: 32px;
|
|
10598
|
+
padding: 0;
|
|
10599
|
+
border: none;
|
|
10600
|
+
border-radius: var(--radius-md);
|
|
10601
|
+
cursor: pointer;
|
|
10602
|
+
transition: all var(--duration-fast) var(--ease-smooth);
|
|
10603
|
+
}
|
|
10604
|
+
|
|
10605
|
+
|
|
10606
|
+
.asakaa-add-column__submit {
|
|
10607
|
+
color: white;
|
|
10608
|
+
background: var(--color-blue);
|
|
10609
|
+
}
|
|
10610
|
+
|
|
10611
|
+
|
|
10612
|
+
.asakaa-add-column__submit:hover:not(:disabled) {
|
|
10613
|
+
background: var(--color-blue-dark);
|
|
10614
|
+
}
|
|
10615
|
+
|
|
10616
|
+
|
|
10617
|
+
.asakaa-add-column__submit:disabled {
|
|
10618
|
+
opacity: 0.5;
|
|
10619
|
+
cursor: not-allowed;
|
|
10620
|
+
}
|
|
10621
|
+
|
|
10622
|
+
|
|
10623
|
+
.asakaa-add-column__cancel {
|
|
10624
|
+
color: var(--color-text-tertiary);
|
|
10625
|
+
background: transparent;
|
|
10626
|
+
}
|
|
10627
|
+
|
|
10628
|
+
|
|
10629
|
+
.asakaa-add-column__cancel:hover {
|
|
10630
|
+
color: var(--color-text-primary);
|
|
10631
|
+
background: rgba(255, 255, 255, var(--opacity-subtle));
|
|
10632
|
+
}
|
|
10633
|
+
|
|
10634
|
+
|
|
10635
|
+
/* Light theme overrides */
|
|
10636
|
+
|
|
10637
|
+
|
|
10638
|
+
.asakaa-board:not(.dark) .asakaa-add-column__button {
|
|
10639
|
+
border-color: rgba(0, 0, 0, 0.15);
|
|
10640
|
+
color: var(--color-text-tertiary);
|
|
10641
|
+
}
|
|
10642
|
+
|
|
10643
|
+
|
|
10644
|
+
.asakaa-board:not(.dark) .asakaa-add-column__button:hover:not(:disabled) {
|
|
10645
|
+
border-color: var(--color-blue);
|
|
10646
|
+
color: var(--color-blue);
|
|
10647
|
+
background: rgba(59, 130, 246, 0.05);
|
|
10648
|
+
}
|
|
10649
|
+
|
|
10650
|
+
|
|
10651
|
+
.asakaa-board:not(.dark) .asakaa-add-column__input-wrapper {
|
|
10652
|
+
background: var(--color-bg-secondary);
|
|
10653
|
+
border-color: rgba(0, 0, 0, 0.1);
|
|
10654
|
+
}
|
|
10655
|
+
|
|
10656
|
+
|
|
10657
|
+
.asakaa-board:not(.dark) .asakaa-add-column__input {
|
|
10658
|
+
background: white;
|
|
10659
|
+
border-color: rgba(0, 0, 0, 0.1);
|
|
10660
|
+
color: var(--color-text-primary);
|
|
10661
|
+
}
|
|
10662
|
+
|
|
10663
|
+
|
|
10664
|
+
.asakaa-board:not(.dark) .asakaa-add-column__cancel:hover {
|
|
10665
|
+
background: rgba(0, 0, 0, 0.05);
|
|
10666
|
+
}
|
|
10667
|
+
|
|
10668
|
+
|
|
10487
10669
|
.placeholder\:text-\[\#6B7280\]::-moz-placeholder {
|
|
10488
10670
|
--tw-text-opacity: 1;
|
|
10489
10671
|
color: rgb(107 114 128 / var(--tw-text-opacity, 1));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@libxai/board",
|
|
3
|
-
"version": "0.17.
|
|
3
|
+
"version": "0.17.48",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Professional Gantt Chart + Kanban Board + ListView + CalendarBoard for React - Part of LibXAI Suite - TypeScript - Production-Ready - Zero Config",
|
|
6
6
|
"author": "LibXAI <hello@libxai.com>",
|