@solidstarters/solid-core-ui 1.1.65 → 1.1.67
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/components/Svg/FileSvg.d.ts.map +1 -1
- package/dist/components/Svg/FileSvg.js +1 -1
- package/dist/components/Svg/FileSvg.js.map +1 -1
- package/dist/components/core/common/FilterComponent.d.ts.map +1 -1
- package/dist/components/core/common/FilterComponent.js +1 -1
- package/dist/components/core/common/FilterComponent.js.map +1 -1
- package/dist/components/core/common/SolidGlobalSearchElement.d.ts.map +1 -1
- package/dist/components/core/common/SolidGlobalSearchElement.js +1 -1
- package/dist/components/core/common/SolidGlobalSearchElement.js.map +1 -1
- package/dist/components/core/form/SolidFormView.d.ts +0 -1
- package/dist/components/core/form/SolidFormView.d.ts.map +1 -1
- package/dist/components/core/form/SolidFormView.js +2 -5
- package/dist/components/core/form/SolidFormView.js.map +1 -1
- package/dist/components/core/form/fields/ISolidField.d.ts +1 -2
- package/dist/components/core/form/fields/ISolidField.d.ts.map +1 -1
- package/dist/components/core/form/fields/SolidRelationField.d.ts +1 -1
- package/dist/components/core/form/fields/relations/SolidRelationManyToOneField.d.ts +1 -1
- package/dist/components/core/form/fields/relations/SolidRelationManyToOneField.d.ts.map +1 -1
- package/dist/components/core/form/fields/relations/SolidRelationManyToOneField.js +14 -29
- package/dist/components/core/form/fields/relations/SolidRelationManyToOneField.js.map +1 -1
- package/dist/components/core/form/fields/relations/SolidRelationOneToManyField.d.ts.map +1 -1
- package/dist/components/core/form/fields/relations/SolidRelationOneToManyField.js +18 -25
- package/dist/components/core/form/fields/relations/SolidRelationOneToManyField.js.map +1 -1
- package/dist/components/core/form/fields/widgets/SolidBooleanCheckboxFieldWidget.d.ts.map +1 -1
- package/dist/components/core/form/fields/widgets/SolidBooleanCheckboxFieldWidget.js +1 -0
- package/dist/components/core/form/fields/widgets/SolidBooleanCheckboxFieldWidget.js.map +1 -1
- package/dist/components/core/users/CreateUser.d.ts.map +1 -1
- package/dist/components/core/users/CreateUser.js +9 -3
- package/dist/components/core/users/CreateUser.js.map +1 -1
- package/dist/resources/globals.css +17 -69
- package/dist/resources/stylesheets/_menu.scss +0 -5
- package/dist/resources/themes/solid-dark-purple/theme.css +844 -741
- package/dist/resources/themes/solid-light-purple/theme.css +109 -3
- package/package.json +1 -1
- package/src/components/Svg/FileSvg.tsx +13 -12
- package/src/components/core/common/FilterComponent.tsx +3 -7
- package/src/components/core/common/SolidGlobalSearchElement.tsx +3 -2
- package/src/components/core/form/SolidFormView.tsx +2 -7
- package/src/components/core/form/fields/ISolidField.tsx +2 -3
- package/src/components/core/form/fields/relations/SolidRelationManyToOneField.tsx +6 -25
- package/src/components/core/form/fields/relations/SolidRelationOneToManyField.tsx +0 -3
- package/src/components/core/form/fields/widgets/SolidBooleanCheckboxFieldWidget.tsx +1 -0
- package/src/components/core/users/CreateUser.tsx +10 -6
- package/src/resources/globals.css +17 -69
- package/src/resources/stylesheets/_menu.scss +0 -5
- package/src/resources/themes/solid-dark-purple/theme.css +844 -741
- package/src/resources/themes/solid-light-purple/theme.css +109 -3
|
@@ -224,6 +224,11 @@ a {
|
|
|
224
224
|
}
|
|
225
225
|
|
|
226
226
|
/* Navbar - left sidebar */
|
|
227
|
+
|
|
228
|
+
.active-menu-image {
|
|
229
|
+
border-radius: 4px;
|
|
230
|
+
}
|
|
231
|
+
|
|
227
232
|
.navbar-brand {
|
|
228
233
|
display: inline-block;
|
|
229
234
|
margin-bottom: 30px;
|
|
@@ -436,7 +441,6 @@ a {
|
|
|
436
441
|
|
|
437
442
|
.form-field-label {
|
|
438
443
|
font-weight: 400;
|
|
439
|
-
color: rgba(0, 0, 0, 0.88) !important;
|
|
440
444
|
}
|
|
441
445
|
|
|
442
446
|
.form-wrapper-subtitle {
|
|
@@ -1650,10 +1654,17 @@ li.header-li-px {
|
|
|
1650
1654
|
|
|
1651
1655
|
.solid-form-wrapper {
|
|
1652
1656
|
overflow: hidden;
|
|
1657
|
+
display: flex;
|
|
1658
|
+
}
|
|
1659
|
+
|
|
1660
|
+
.solid-form-section {
|
|
1661
|
+
position: relative;
|
|
1662
|
+
flex-grow: 1;
|
|
1663
|
+
transition: width 0.3s ease;
|
|
1653
1664
|
}
|
|
1654
1665
|
|
|
1655
1666
|
.solid-form-wrapper .solid-form-content {
|
|
1656
|
-
height: calc(100vh -
|
|
1667
|
+
height: calc(100vh - 116px);
|
|
1657
1668
|
/* height: calc(100vh - 111px); */
|
|
1658
1669
|
/* If No Breadcrumb */
|
|
1659
1670
|
/* height: calc(100vh - 64px); */
|
|
@@ -1668,6 +1679,7 @@ li.header-li-px {
|
|
|
1668
1679
|
align-items: center;
|
|
1669
1680
|
justify-content: space-between;
|
|
1670
1681
|
background: var(--solid-light-grey);
|
|
1682
|
+
border-bottom: 1px solid var(--primary-light-color);
|
|
1671
1683
|
}
|
|
1672
1684
|
|
|
1673
1685
|
.solid-form-stepper {
|
|
@@ -1709,7 +1721,7 @@ li.header-li-px {
|
|
|
1709
1721
|
.solid-dropzone {
|
|
1710
1722
|
border-radius: 0.5rem;
|
|
1711
1723
|
border: 1px dashed var(--solid-primary-border);
|
|
1712
|
-
background:
|
|
1724
|
+
background: var(--solid-dropzone-bg);
|
|
1713
1725
|
display: flex;
|
|
1714
1726
|
align-items: center;
|
|
1715
1727
|
justify-content: center;
|
|
@@ -1724,7 +1736,7 @@ li.header-li-px {
|
|
|
1724
1736
|
|
|
1725
1737
|
.solid-file-upload-wrapper {
|
|
1726
1738
|
border-radius: 8px;
|
|
1727
|
-
border: 1px solid
|
|
1739
|
+
border: 1px solid var(--solid-file-wrapper);
|
|
1728
1740
|
padding: 10px;
|
|
1729
1741
|
margin-top: 10px;
|
|
1730
1742
|
}
|
|
@@ -1741,7 +1753,7 @@ li.header-li-px {
|
|
|
1741
1753
|
|
|
1742
1754
|
.active-step-arrow {
|
|
1743
1755
|
left: -21px;
|
|
1744
|
-
z-index:
|
|
1756
|
+
z-index: 2;
|
|
1745
1757
|
top: 50%;
|
|
1746
1758
|
transform: translateY(-38%);
|
|
1747
1759
|
}
|
|
@@ -1819,7 +1831,6 @@ li.header-li-px {
|
|
|
1819
1831
|
|
|
1820
1832
|
.solid-step-button.p-button.p-button-text {
|
|
1821
1833
|
background-color: transparent;
|
|
1822
|
-
color: #0D0B26;
|
|
1823
1834
|
border: 0;
|
|
1824
1835
|
min-width: 130px;
|
|
1825
1836
|
/* padding-left: 0; */
|
|
@@ -1832,23 +1843,19 @@ li.header-li-px {
|
|
|
1832
1843
|
|
|
1833
1844
|
.solid-step-button.p-button.p-button-text:not(:disabled):active {
|
|
1834
1845
|
background-color: transparent;
|
|
1835
|
-
color: #0D0B26;
|
|
1836
1846
|
}
|
|
1837
1847
|
|
|
1838
1848
|
.solid-step-button.p-button.p-button-text:not(:disabled):hover {
|
|
1839
1849
|
background-color: transparent;
|
|
1840
|
-
color: #0D0B26;
|
|
1841
1850
|
}
|
|
1842
1851
|
|
|
1843
1852
|
.solid-step-button.btn-step-first {
|
|
1844
1853
|
/* border: 1px solid var(--solid-stepper-border) !important; */
|
|
1845
1854
|
background-color: #EAEDF1;
|
|
1846
|
-
color: #0D0B26;
|
|
1847
1855
|
}
|
|
1848
1856
|
|
|
1849
1857
|
.solid-step-button.btn-step-last {
|
|
1850
1858
|
background-color: transparent;
|
|
1851
|
-
color: #0D0B26;
|
|
1852
1859
|
}
|
|
1853
1860
|
|
|
1854
1861
|
.solid-step-button.btn-step {
|
|
@@ -2448,7 +2455,6 @@ li.header-li-px {
|
|
|
2448
2455
|
}
|
|
2449
2456
|
|
|
2450
2457
|
.solid-global-search-element {
|
|
2451
|
-
border: 1px solid #d1d5db;
|
|
2452
2458
|
border-radius: 8px;
|
|
2453
2459
|
display: flex;
|
|
2454
2460
|
align-items: center;
|
|
@@ -2468,7 +2474,6 @@ li.header-li-px {
|
|
|
2468
2474
|
right: 0;
|
|
2469
2475
|
top: 50%;
|
|
2470
2476
|
transform: translateY(-50%);
|
|
2471
|
-
border-left: 1px solid #d1d5db;
|
|
2472
2477
|
border-radius: 0;
|
|
2473
2478
|
height: 35.5px;
|
|
2474
2479
|
}
|
|
@@ -2538,14 +2543,6 @@ li.header-li-px {
|
|
|
2538
2543
|
font-size: 0.625rem !important;
|
|
2539
2544
|
}
|
|
2540
2545
|
|
|
2541
|
-
.primary-filter-fieldset {
|
|
2542
|
-
background-color: #F8F7FC;
|
|
2543
|
-
}
|
|
2544
|
-
|
|
2545
|
-
.nested-custom-filter .primary-filter-fieldset {
|
|
2546
|
-
background-color: #FFF;
|
|
2547
|
-
}
|
|
2548
|
-
|
|
2549
2546
|
.custom-filter-chip .p-chips-token {
|
|
2550
2547
|
padding: 0.25rem 0.5rem !important;
|
|
2551
2548
|
color: var(--primary-color) !important;
|
|
@@ -2622,7 +2619,6 @@ li.header-li-px {
|
|
|
2622
2619
|
}
|
|
2623
2620
|
|
|
2624
2621
|
.solid-layout-accordion label {
|
|
2625
|
-
color: #000;
|
|
2626
2622
|
font-weight: 400;
|
|
2627
2623
|
}
|
|
2628
2624
|
|
|
@@ -2631,10 +2627,7 @@ li.header-li-px {
|
|
|
2631
2627
|
}
|
|
2632
2628
|
|
|
2633
2629
|
.solid-standard-autocomplete .p-autocomplete-dropdown.p-button {
|
|
2634
|
-
background-color: #fff;
|
|
2635
2630
|
border-left: none;
|
|
2636
|
-
border-color: #d1d5db;
|
|
2637
|
-
color: rgba(0, 0, 0, 0.60);
|
|
2638
2631
|
}
|
|
2639
2632
|
|
|
2640
2633
|
.solid-standard-autocomplete:hover .p-autocomplete-dropdown.p-button,
|
|
@@ -2642,16 +2635,6 @@ li.header-li-px {
|
|
|
2642
2635
|
border-color: var(--primary-color);
|
|
2643
2636
|
}
|
|
2644
2637
|
|
|
2645
|
-
/* Hide right shadow of input and left shadow of button to make them merge */
|
|
2646
|
-
.solid-standard-autocomplete .p-inputtext:focus {
|
|
2647
|
-
/* box-shadow: 0 0 0 0.2rem #d3b5f5, inset -2px 0 0 #fff, inset 2px 0 0 transparent; */
|
|
2648
|
-
}
|
|
2649
|
-
|
|
2650
|
-
.solid-standard-autocomplete .p-inputtext:focus+.p-button {
|
|
2651
|
-
/* box-shadow: 0 0 0 0.2rem #d3b5f5, inset -2px 0 0 transparent, inset 2px 0 0 #fff; */
|
|
2652
|
-
border-color: #d1d5db !important;
|
|
2653
|
-
}
|
|
2654
|
-
|
|
2655
2638
|
.solid-dialog .p-dialog-content {
|
|
2656
2639
|
padding: 0 !important;
|
|
2657
2640
|
border-radius: 0;
|
|
@@ -2714,13 +2697,11 @@ li.header-li-px {
|
|
|
2714
2697
|
}
|
|
2715
2698
|
|
|
2716
2699
|
.solid-custom-editor .ql-toolbar.ql-snow {
|
|
2717
|
-
border: 1px solid #d1d5db;
|
|
2718
2700
|
border-top-right-radius: 6px;
|
|
2719
2701
|
border-top-left-radius: 6px;
|
|
2720
2702
|
}
|
|
2721
2703
|
|
|
2722
2704
|
.solid-custom-editor .ql-container.ql-snow {
|
|
2723
|
-
border: 1px solid #d1d5db;
|
|
2724
2705
|
border-bottom-right-radius: 6px;
|
|
2725
2706
|
border-bottom-left-radius: 6px;
|
|
2726
2707
|
}
|
|
@@ -2760,8 +2741,6 @@ li.header-li-px {
|
|
|
2760
2741
|
} */
|
|
2761
2742
|
|
|
2762
2743
|
.solid-column-panel.p-panel .p-panel-header {
|
|
2763
|
-
border: 1px solid rgba(216, 226, 234, 0.40);
|
|
2764
|
-
background: #F9F9F9;
|
|
2765
2744
|
color: var(--solid-form-title);
|
|
2766
2745
|
border-top-right-radius: 0.5rem;
|
|
2767
2746
|
border-top-left-radius: 0.5rem;
|
|
@@ -2772,7 +2751,6 @@ li.header-li-px {
|
|
|
2772
2751
|
}
|
|
2773
2752
|
|
|
2774
2753
|
.solid-column-panel.p-panel .p-panel-content {
|
|
2775
|
-
border: 1px solid rgba(216, 226, 234, 0.40);
|
|
2776
2754
|
border-bottom-right-radius: 0.5rem;
|
|
2777
2755
|
border-bottom-left-radius: 0.5rem;
|
|
2778
2756
|
border-top: 0;
|
|
@@ -2963,35 +2941,20 @@ li.header-li-px {
|
|
|
2963
2941
|
.solid-kanban-card {
|
|
2964
2942
|
box-shadow: none;
|
|
2965
2943
|
border-radius: 0.5rem;
|
|
2966
|
-
border: 1px solid #E0E0E0;
|
|
2967
|
-
background: #FAFAFA;
|
|
2968
2944
|
padding: 9px;
|
|
2969
2945
|
transition: 0.2s linear;
|
|
2970
2946
|
}
|
|
2971
2947
|
|
|
2972
|
-
.solid-kanban-card:hover {
|
|
2973
|
-
border: 1px solid #722ED1;
|
|
2974
|
-
background: #F9F0FF;
|
|
2975
|
-
}
|
|
2976
|
-
|
|
2977
2948
|
.solid-media-card {
|
|
2978
2949
|
box-shadow: none;
|
|
2979
2950
|
border-radius: 0.5rem;
|
|
2980
|
-
border: 1px solid #E0E0E0;
|
|
2981
|
-
background: #FAFAFA;
|
|
2982
2951
|
padding: 9px;
|
|
2983
2952
|
height: 100%;
|
|
2984
2953
|
transition: 0.2s linear;
|
|
2985
2954
|
}
|
|
2986
2955
|
|
|
2987
|
-
.solid-media-card:hover {
|
|
2988
|
-
border: 1px solid #722ED1;
|
|
2989
|
-
background: #F9F0FF;
|
|
2990
|
-
}
|
|
2991
|
-
|
|
2992
2956
|
.solid-mimetype-chip {
|
|
2993
2957
|
border-radius: 0.25rem;
|
|
2994
|
-
background: #F0F0F0;
|
|
2995
2958
|
padding: 0.25rem 0.5rem;
|
|
2996
2959
|
color: var(--secondary-dark-color);
|
|
2997
2960
|
font-size: 12px;
|
|
@@ -3015,10 +2978,8 @@ li.header-li-px {
|
|
|
3015
2978
|
align-items: center;
|
|
3016
2979
|
flex-shrink: 0;
|
|
3017
2980
|
border-radius: 6.25rem;
|
|
3018
|
-
background: #F6FAFF;
|
|
3019
2981
|
font-size: 0.75rem;
|
|
3020
2982
|
font-weight: 600;
|
|
3021
|
-
color: var(--primary-color);
|
|
3022
2983
|
}
|
|
3023
2984
|
|
|
3024
2985
|
.kanban-image-preview {
|
|
@@ -3031,10 +2992,8 @@ flex-shrink: 0; */
|
|
|
3031
2992
|
max-height: 120px;
|
|
3032
2993
|
object-fit: contain;
|
|
3033
2994
|
/* box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px; */
|
|
3034
|
-
background-color: #fff;
|
|
3035
2995
|
}
|
|
3036
2996
|
|
|
3037
|
-
|
|
3038
2997
|
.kanban-media-image-preview {
|
|
3039
2998
|
/* width: 100px; */
|
|
3040
2999
|
/* width: 240px;
|
|
@@ -3044,7 +3003,6 @@ flex-shrink: 0; */
|
|
|
3044
3003
|
border-radius: 8px;
|
|
3045
3004
|
height: 145px;
|
|
3046
3005
|
object-fit: contain;
|
|
3047
|
-
background-color: #fff;
|
|
3048
3006
|
}
|
|
3049
3007
|
|
|
3050
3008
|
.kanban-media-view-card {
|
|
@@ -3052,19 +3010,12 @@ flex-shrink: 0; */
|
|
|
3052
3010
|
border-radius: 8px;
|
|
3053
3011
|
height: 145px;
|
|
3054
3012
|
object-fit: contain;
|
|
3055
|
-
background-color: #fff;
|
|
3056
3013
|
display: flex;
|
|
3057
3014
|
align-items: center;
|
|
3058
3015
|
justify-content: center;
|
|
3059
3016
|
}
|
|
3060
3017
|
|
|
3061
|
-
.kanban-image-preview:hover {
|
|
3062
|
-
box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
|
|
3063
|
-
}
|
|
3064
|
-
|
|
3065
|
-
|
|
3066
3018
|
.solid-kanban-board-wrapper {
|
|
3067
|
-
border-top: 1px solid #CED0D6;
|
|
3068
3019
|
overflow: hidden;
|
|
3069
3020
|
height: calc(100vh - 65px) !important;
|
|
3070
3021
|
}
|
|
@@ -3088,7 +3039,6 @@ flex-shrink: 0; */
|
|
|
3088
3039
|
}
|
|
3089
3040
|
|
|
3090
3041
|
.view-widget-chip.p-chip {
|
|
3091
|
-
background-color: #f9f9f9 !important;
|
|
3092
3042
|
padding: 4px 10px !important;
|
|
3093
3043
|
}
|
|
3094
3044
|
|
|
@@ -3097,8 +3047,6 @@ flex-shrink: 0; */
|
|
|
3097
3047
|
margin-bottom: 0 !important;
|
|
3098
3048
|
}
|
|
3099
3049
|
|
|
3100
|
-
|
|
3101
|
-
|
|
3102
3050
|
.solid-global-search-element input {
|
|
3103
3051
|
|
|
3104
3052
|
min-width: 300px;
|