unifyedx-storybook-new 0.1.12 → 0.1.14
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/unifyedx-storybook-new.css +134 -87
- package/dist/unifyedx-storybook-new.es.js +2738 -2737
- package/package.json +4 -3
|
@@ -1431,7 +1431,7 @@
|
|
|
1431
1431
|
}
|
|
1432
1432
|
|
|
1433
1433
|
.pagination-select {
|
|
1434
|
-
padding: 0.375rem
|
|
1434
|
+
padding: 0.375rem 2rem 0.375rem 0.75rem;
|
|
1435
1435
|
border: 1px solid #d1d5db;
|
|
1436
1436
|
border-radius: 0.375rem;
|
|
1437
1437
|
font-size: 0.875rem;
|
|
@@ -1551,6 +1551,35 @@
|
|
|
1551
1551
|
}
|
|
1552
1552
|
}
|
|
1553
1553
|
|
|
1554
|
+
.page-input-form {
|
|
1555
|
+
display: flex;
|
|
1556
|
+
align-items: center;
|
|
1557
|
+
gap: 0.5rem;
|
|
1558
|
+
font-size: 0.875rem;
|
|
1559
|
+
color: #6b7280;
|
|
1560
|
+
}
|
|
1561
|
+
|
|
1562
|
+
.page-input {
|
|
1563
|
+
width: 2rem; /* 56px */
|
|
1564
|
+
padding: 0.5rem;
|
|
1565
|
+
border: 1px solid #d1d5db;
|
|
1566
|
+
border-radius: 0.375rem;
|
|
1567
|
+
text-align: center;
|
|
1568
|
+
font-size: 0.875rem;
|
|
1569
|
+
}
|
|
1570
|
+
|
|
1571
|
+
/* Hides the default number input spinners on some browsers */
|
|
1572
|
+
|
|
1573
|
+
.page-input::-webkit-outer-spin-button,
|
|
1574
|
+
.page-input::-webkit-inner-spin-button {
|
|
1575
|
+
-webkit-appearance: none;
|
|
1576
|
+
margin: 0;
|
|
1577
|
+
}
|
|
1578
|
+
|
|
1579
|
+
.page-input[type="number"] {
|
|
1580
|
+
-moz-appearance: textfield;
|
|
1581
|
+
}
|
|
1582
|
+
|
|
1554
1583
|
.radiogroup-wrapper {
|
|
1555
1584
|
width: 100%;
|
|
1556
1585
|
font-family: sans-serif;
|
|
@@ -2643,11 +2672,12 @@
|
|
|
2643
2672
|
.wizard-body {
|
|
2644
2673
|
flex-grow: 1;
|
|
2645
2674
|
overflow-y: auto;
|
|
2646
|
-
|
|
2647
|
-
|
|
2648
|
-
|
|
2649
|
-
/*
|
|
2650
|
-
|
|
2675
|
+
background-color: white;
|
|
2676
|
+
/* ⛔️ The "position: relative;" rule that was here should be REMOVED. */
|
|
2677
|
+
|
|
2678
|
+
/* Custom scrollbar styles */
|
|
2679
|
+
scrollbar-width: thin;
|
|
2680
|
+
scrollbar-color: #9ca3af #f3f4f6;
|
|
2651
2681
|
}
|
|
2652
2682
|
|
|
2653
2683
|
.wizard-body::-webkit-scrollbar {
|
|
@@ -2655,13 +2685,13 @@
|
|
|
2655
2685
|
}
|
|
2656
2686
|
|
|
2657
2687
|
.wizard-body::-webkit-scrollbar-track {
|
|
2658
|
-
background:
|
|
2688
|
+
background: #f3f4f6;
|
|
2659
2689
|
}
|
|
2660
2690
|
|
|
2661
2691
|
.wizard-body::-webkit-scrollbar-thumb {
|
|
2662
|
-
background-color:
|
|
2692
|
+
background-color: #9ca3af;
|
|
2663
2693
|
border-radius: 10px;
|
|
2664
|
-
border: 2px solid
|
|
2694
|
+
border: 2px solid #f3f4f6;
|
|
2665
2695
|
}
|
|
2666
2696
|
|
|
2667
2697
|
.wizard-step {
|
|
@@ -2687,10 +2717,6 @@
|
|
|
2687
2717
|
left: 0;
|
|
2688
2718
|
width: 100%;
|
|
2689
2719
|
height: 100%;
|
|
2690
|
-
/* Add these properties to prevent horizontal overflow */
|
|
2691
|
-
overflow-x: hidden;
|
|
2692
|
-
padding: 0 1.5rem;
|
|
2693
|
-
box-sizing: border-box; /* Include padding in width calculation */
|
|
2694
2720
|
}
|
|
2695
2721
|
|
|
2696
2722
|
@media (max-width: 640px) {
|
|
@@ -5495,7 +5521,7 @@
|
|
|
5495
5521
|
}
|
|
5496
5522
|
|
|
5497
5523
|
.pagination-select {
|
|
5498
|
-
padding: 0.375rem
|
|
5524
|
+
padding: 0.375rem 2rem 0.375rem 0.75rem;
|
|
5499
5525
|
border: 1px solid #d1d5db;
|
|
5500
5526
|
border-radius: 0.375rem;
|
|
5501
5527
|
font-size: 0.875rem;
|
|
@@ -5613,6 +5639,33 @@
|
|
|
5613
5639
|
justify-content: center;
|
|
5614
5640
|
}
|
|
5615
5641
|
}
|
|
5642
|
+
|
|
5643
|
+
.page-input-form {
|
|
5644
|
+
display: flex;
|
|
5645
|
+
align-items: center;
|
|
5646
|
+
gap: 0.5rem;
|
|
5647
|
+
font-size: 0.875rem;
|
|
5648
|
+
color: #6b7280;
|
|
5649
|
+
}
|
|
5650
|
+
|
|
5651
|
+
.page-input {
|
|
5652
|
+
width: 2rem; /* 56px */
|
|
5653
|
+
padding: 0.5rem;
|
|
5654
|
+
border: 1px solid #d1d5db;
|
|
5655
|
+
border-radius: 0.375rem;
|
|
5656
|
+
text-align: center;
|
|
5657
|
+
font-size: 0.875rem;
|
|
5658
|
+
}
|
|
5659
|
+
|
|
5660
|
+
/* Hides the default number input spinners on some browsers */
|
|
5661
|
+
.page-input::-webkit-outer-spin-button,
|
|
5662
|
+
.page-input::-webkit-inner-spin-button {
|
|
5663
|
+
-webkit-appearance: none;
|
|
5664
|
+
margin: 0;
|
|
5665
|
+
}
|
|
5666
|
+
.page-input[type="number"] {
|
|
5667
|
+
-moz-appearance: textfield;
|
|
5668
|
+
}
|
|
5616
5669
|
.radiogroup-wrapper {
|
|
5617
5670
|
width: 100%;
|
|
5618
5671
|
font-family: sans-serif;
|
|
@@ -5873,6 +5926,64 @@
|
|
|
5873
5926
|
color: #dc2626;
|
|
5874
5927
|
margin-top: 0.25rem;
|
|
5875
5928
|
}
|
|
5929
|
+
.search-bar-wrapper {
|
|
5930
|
+
position: relative;
|
|
5931
|
+
}
|
|
5932
|
+
|
|
5933
|
+
.search-bar-icon-wrapper {
|
|
5934
|
+
position: absolute;
|
|
5935
|
+
top: 0;
|
|
5936
|
+
bottom: 0;
|
|
5937
|
+
left: 0;
|
|
5938
|
+
display: flex;
|
|
5939
|
+
align-items: center;
|
|
5940
|
+
padding-left: 1rem; /* 16px */
|
|
5941
|
+
pointer-events: none;
|
|
5942
|
+
}
|
|
5943
|
+
|
|
5944
|
+
.search-bar-icon {
|
|
5945
|
+
height: 1.25rem; /* 20px */
|
|
5946
|
+
width: 1.25rem; /* 20px */
|
|
5947
|
+
color: #6b7280; /* gray-500 */
|
|
5948
|
+
}
|
|
5949
|
+
|
|
5950
|
+
.search-bar-input {
|
|
5951
|
+
display: block;
|
|
5952
|
+
width: 100%;
|
|
5953
|
+
border: 1px solid #d1d5db; /* gray-300 */
|
|
5954
|
+
border-radius: 18px;
|
|
5955
|
+
padding-top: 8px;
|
|
5956
|
+
padding-bottom: 8px;
|
|
5957
|
+
padding-left: 3rem; /* 48px to make space for the icon */
|
|
5958
|
+
padding-right: 1rem; /* 16px */
|
|
5959
|
+
color: #111827; /* gray-900 */
|
|
5960
|
+
font-size: 0.875rem; /* sm:text-sm */
|
|
5961
|
+
line-height: 1.25rem;
|
|
5962
|
+
}
|
|
5963
|
+
|
|
5964
|
+
.search-bar-input::placeholder {
|
|
5965
|
+
color: #9ca3af; /* gray-400 */
|
|
5966
|
+
}
|
|
5967
|
+
|
|
5968
|
+
.search-bar-input:focus {
|
|
5969
|
+
outline: 1px solid #0ea5e9; /* Or your preferred focus color */
|
|
5970
|
+
border-color: #0ea5e9;
|
|
5971
|
+
box-shadow: none; /* Replicates focus:ring-0 */
|
|
5972
|
+
}
|
|
5973
|
+
|
|
5974
|
+
/* A standard accessibility class to hide labels visually
|
|
5975
|
+
but keep them available for screen readers. */
|
|
5976
|
+
.sr-only {
|
|
5977
|
+
position: absolute;
|
|
5978
|
+
width: 1px;
|
|
5979
|
+
height: 1px;
|
|
5980
|
+
padding: 0;
|
|
5981
|
+
margin: -1px;
|
|
5982
|
+
overflow: hidden;
|
|
5983
|
+
clip: rect(0, 0, 0, 0);
|
|
5984
|
+
white-space: nowrap;
|
|
5985
|
+
border-width: 0;
|
|
5986
|
+
}
|
|
5876
5987
|
/* --- CSS Variables --- */
|
|
5877
5988
|
:root {
|
|
5878
5989
|
/* Dimensions */
|
|
@@ -6626,25 +6737,23 @@
|
|
|
6626
6737
|
.wizard-body {
|
|
6627
6738
|
flex-grow: 1;
|
|
6628
6739
|
overflow-y: auto;
|
|
6629
|
-
|
|
6630
|
-
|
|
6631
|
-
position: relative;
|
|
6632
|
-
/* Adjust padding if needed */
|
|
6633
|
-
padding: 0;
|
|
6634
|
-
}
|
|
6740
|
+
background-color: white;
|
|
6741
|
+
/* ⛔️ The "position: relative;" rule that was here should be REMOVED. */
|
|
6635
6742
|
|
|
6743
|
+
/* Custom scrollbar styles */
|
|
6744
|
+
scrollbar-width: thin;
|
|
6745
|
+
scrollbar-color: #9ca3af #f3f4f6;
|
|
6746
|
+
}
|
|
6636
6747
|
.wizard-body::-webkit-scrollbar {
|
|
6637
6748
|
width: 8px;
|
|
6638
6749
|
}
|
|
6639
|
-
|
|
6640
6750
|
.wizard-body::-webkit-scrollbar-track {
|
|
6641
|
-
background:
|
|
6751
|
+
background: #f3f4f6;
|
|
6642
6752
|
}
|
|
6643
|
-
|
|
6644
6753
|
.wizard-body::-webkit-scrollbar-thumb {
|
|
6645
|
-
background-color:
|
|
6754
|
+
background-color: #9ca3af;
|
|
6646
6755
|
border-radius: 10px;
|
|
6647
|
-
border: 2px solid
|
|
6756
|
+
border: 2px solid #f3f4f6;
|
|
6648
6757
|
}
|
|
6649
6758
|
|
|
6650
6759
|
.wizard-step {
|
|
@@ -6669,10 +6778,6 @@
|
|
|
6669
6778
|
left: 0;
|
|
6670
6779
|
width: 100%;
|
|
6671
6780
|
height: 100%;
|
|
6672
|
-
/* Add these properties to prevent horizontal overflow */
|
|
6673
|
-
overflow-x: hidden;
|
|
6674
|
-
padding: 0 1.5rem;
|
|
6675
|
-
box-sizing: border-box; /* Include padding in width calculation */
|
|
6676
6781
|
}
|
|
6677
6782
|
|
|
6678
6783
|
@media (max-width: 640px) {
|
|
@@ -6692,64 +6797,6 @@
|
|
|
6692
6797
|
padding: 0 1rem;
|
|
6693
6798
|
}
|
|
6694
6799
|
}
|
|
6695
|
-
.search-bar-wrapper {
|
|
6696
|
-
position: relative;
|
|
6697
|
-
}
|
|
6698
|
-
|
|
6699
|
-
.search-bar-icon-wrapper {
|
|
6700
|
-
position: absolute;
|
|
6701
|
-
top: 0;
|
|
6702
|
-
bottom: 0;
|
|
6703
|
-
left: 0;
|
|
6704
|
-
display: flex;
|
|
6705
|
-
align-items: center;
|
|
6706
|
-
padding-left: 1rem; /* 16px */
|
|
6707
|
-
pointer-events: none;
|
|
6708
|
-
}
|
|
6709
|
-
|
|
6710
|
-
.search-bar-icon {
|
|
6711
|
-
height: 1.25rem; /* 20px */
|
|
6712
|
-
width: 1.25rem; /* 20px */
|
|
6713
|
-
color: #6b7280; /* gray-500 */
|
|
6714
|
-
}
|
|
6715
|
-
|
|
6716
|
-
.search-bar-input {
|
|
6717
|
-
display: block;
|
|
6718
|
-
width: 100%;
|
|
6719
|
-
border: 1px solid #d1d5db; /* gray-300 */
|
|
6720
|
-
border-radius: 18px;
|
|
6721
|
-
padding-top: 8px;
|
|
6722
|
-
padding-bottom: 8px;
|
|
6723
|
-
padding-left: 3rem; /* 48px to make space for the icon */
|
|
6724
|
-
padding-right: 1rem; /* 16px */
|
|
6725
|
-
color: #111827; /* gray-900 */
|
|
6726
|
-
font-size: 0.875rem; /* sm:text-sm */
|
|
6727
|
-
line-height: 1.25rem;
|
|
6728
|
-
}
|
|
6729
|
-
|
|
6730
|
-
.search-bar-input::placeholder {
|
|
6731
|
-
color: #9ca3af; /* gray-400 */
|
|
6732
|
-
}
|
|
6733
|
-
|
|
6734
|
-
.search-bar-input:focus {
|
|
6735
|
-
outline: 1px solid #0ea5e9; /* Or your preferred focus color */
|
|
6736
|
-
border-color: #0ea5e9;
|
|
6737
|
-
box-shadow: none; /* Replicates focus:ring-0 */
|
|
6738
|
-
}
|
|
6739
|
-
|
|
6740
|
-
/* A standard accessibility class to hide labels visually
|
|
6741
|
-
but keep them available for screen readers. */
|
|
6742
|
-
.sr-only {
|
|
6743
|
-
position: absolute;
|
|
6744
|
-
width: 1px;
|
|
6745
|
-
height: 1px;
|
|
6746
|
-
padding: 0;
|
|
6747
|
-
margin: -1px;
|
|
6748
|
-
overflow: hidden;
|
|
6749
|
-
clip: rect(0, 0, 0, 0);
|
|
6750
|
-
white-space: nowrap;
|
|
6751
|
-
border-width: 0;
|
|
6752
|
-
}
|
|
6753
6800
|
.page-layout {
|
|
6754
6801
|
position: relative;
|
|
6755
6802
|
width: 100%;
|