sccoreui 2.5.2 → 2.5.4

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.
@@ -306,11 +306,12 @@ a {
306
306
  margin: 0;
307
307
  }
308
308
  .p-autocomplete .p-autocomplete-multiple-container .p-autocomplete-token {
309
- padding: 0.375rem 0.75rem;
309
+ padding: 2px 4px;
310
310
  margin-right: 0.5rem;
311
- background: #eef2ff;
312
- color: #4338ca;
311
+ background: var(--gray-50);
312
+ color: var(--gray-700);
313
313
  border-radius: 6px;
314
+ border: 1px solid var(--gray-300);
314
315
  }
315
316
  .p-autocomplete
316
317
  .p-autocomplete-multiple-container
@@ -1733,8 +1734,8 @@ a {
1733
1734
  .p-multiselect:not(.p-disabled).p-focus {
1734
1735
  outline: 0 none;
1735
1736
  outline-offset: 0;
1736
- /* box-shadow: 0 0 0 0.2rem #C7D2FE; */
1737
- border-color: var(--gray-900);
1737
+ box-shadow: 0 0 0 0.2rem #C7D2FE;
1738
+
1738
1739
  }
1739
1740
  .p-multiselect.p-multiselect-clearable .p-multiselect-label {
1740
1741
  padding-right: 1.75rem;
@@ -1747,28 +1748,29 @@ a {
1747
1748
  box-shadow 0.2s;
1748
1749
  }
1749
1750
  .p-multiselect .p-multiselect-label.p-placeholder {
1750
- color: #6c757d;
1751
- font-size: 12px;
1751
+ color: var(--gray-500);
1752
+ font-size: 16px;
1752
1753
  font-weight: lighter;
1753
1754
  }
1754
1755
  .p-multiselect.p-multiselect-chip .p-multiselect-token {
1755
- padding: 0px 15px;
1756
+ padding: 0px 10px;
1756
1757
  margin-right: 0.5rem;
1758
+ gap: 4px;
1757
1759
  height: 30px;
1758
1760
  background: #fff;
1759
- color: var(--gray-900);
1760
- border-radius: 30px;
1761
- border: 1px solid var(--gray-900);
1761
+ color: var(--gray-700);
1762
+ border-radius: 6px;
1763
+ border: 1px solid var(--gray-300);
1762
1764
  }
1763
1765
 
1764
- .p-multiselect.p-multiselect-chip
1766
+ /* .p-multiselect.p-multiselect-chip
1765
1767
  .p-multiselect-token
1766
1768
  .p-multiselect-token-label::before {
1767
1769
  content: url("../assets//svg//done_all.svg");
1768
1770
  position: relative;
1769
1771
  top: -1px;
1770
1772
  left: -3px;
1771
- }
1773
+ } */
1772
1774
 
1773
1775
  .p-multiselect.p-multiselect-chip
1774
1776
  .p-multiselect-token
@@ -1866,7 +1868,7 @@ a {
1866
1868
  }
1867
1869
  .p-multiselect-panel .p-multiselect-items .p-multiselect-item {
1868
1870
  margin: 0;
1869
- padding: 0px 20px;
1871
+ padding: 0px 4px;
1870
1872
  height: 40px;
1871
1873
  line-height: 40px;
1872
1874
  border: 0 none;
@@ -1877,23 +1879,23 @@ a {
1877
1879
  margin-bottom: 2px;
1878
1880
  }
1879
1881
  .p-multiselect-panel .p-multiselect-items .p-multiselect-item.p-highlight {
1880
- background: #f6f8ff;
1882
+ background: var(--gray-50);
1881
1883
  color: #162578;
1882
1884
  position: relative;
1883
1885
  }
1884
1886
 
1885
- .p-multiselect-panel
1887
+ /* .p-multiselect-panel
1886
1888
  .p-multiselect-items
1887
1889
  .p-multiselect-item.p-highlight::after {
1888
1890
  content: url("../assets/svg/done_all.svg");
1889
1891
  position: absolute;
1890
1892
  right: 14px;
1891
- }
1893
+ } */
1892
1894
  .p-multiselect-panel
1893
1895
  .p-multiselect-items
1894
1896
  .p-multiselect-item:not(.p-highlight):not(.p-disabled):hover {
1895
1897
  color: #495057;
1896
- background: #f6f8ff;
1898
+ background: var(--gray-50);
1897
1899
  }
1898
1900
  .p-multiselect-panel .p-multiselect-items .p-multiselect-item:focus {
1899
1901
  outline: 0 none;
@@ -8703,6 +8705,17 @@ input[type="number"]::-webkit-outer-spin-button {
8703
8705
  width: 320px;
8704
8706
  }
8705
8707
 
8708
+ .p-multiselect-item.p-highlight>span{
8709
+ width: 100%;
8710
+ }
8711
+
8712
+
8713
+ .p-autocomplete-multiple-container.p-component.p-inputtext{
8714
+ height: 40px;
8715
+ padding: 4px 14px;
8716
+ line-height: 20px;
8717
+ }
8718
+
8706
8719
  /* SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
8707
8720
 
8708
8721
 
@@ -28,6 +28,6 @@ const SvgComponent = ({ icon, size, color, className }) => {
28
28
  if (data === undefined) {
29
29
  return null;
30
30
  }
31
- return ((0, jsx_runtime_1.jsx)("span", { className: `flex align-items-center justify-content-center ${className}`, dangerouslySetInnerHTML: { __html: data } }));
31
+ return (0, jsx_runtime_1.jsx)("span", { className: `flex align-items-center justify-content-center${!className ? "" : ` ${className}`}`, dangerouslySetInnerHTML: { __html: data } });
32
32
  };
33
33
  exports.default = SvgComponent;
@@ -8931,3 +8931,4 @@ exports.iconList = [
8931
8931
  `,
8932
8932
  },
8933
8933
  ];
8934
+ console.log(exports.iconList.length);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sccoreui",
3
- "version": "2.5.2",
3
+ "version": "2.5.4",
4
4
  "description": "ui-sccore",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",
@@ -35,6 +35,7 @@
35
35
  "react-dom": "^18.2.0",
36
36
  "react-router-dom": "^6.12.0",
37
37
  "react-scripts": "^5.0.1",
38
+ "sccoreui": "^2.5.2",
38
39
  "typescript": "^4.9.5"
39
40
  },
40
41
  "browserslist": {