sccoreui 2.2.3 → 2.2.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.
Files changed (136) hide show
  1. package/dist/App.js +10 -9
  2. package/dist/assets/flex.css +120 -120
  3. package/dist/assets/sccoreui.css +96 -17
  4. package/dist/assets/svg/svg.js +32 -32
  5. package/dist/assets/theme.css +2 -1
  6. package/dist/components/accordion/accordion.js +11 -11
  7. package/dist/components/auto-complete/auto-complete.js +10 -10
  8. package/dist/components/avatar/avatar-group.js +4 -4
  9. package/dist/components/avatar/avatar.js +4 -4
  10. package/dist/components/badge/badge.js +4 -4
  11. package/dist/components/button/button.js +10 -10
  12. package/dist/components/button/speed-dial.js +4 -4
  13. package/dist/components/button/split-button.js +4 -4
  14. package/dist/components/calendar/calendar.js +4 -4
  15. package/dist/components/card/card.js +4 -4
  16. package/dist/components/carousel/carousel.js +4 -4
  17. package/dist/components/carousel/tag.js +4 -4
  18. package/dist/components/chart/chart.js +4 -0
  19. package/dist/components/checkbox/checkbox.js +10 -10
  20. package/dist/components/chips/chip.js +4 -4
  21. package/dist/components/chips/chips.js +4 -4
  22. package/dist/components/color-picker/color-picker.js +4 -4
  23. package/dist/components/data-table/column.js +4 -4
  24. package/dist/components/data-table/data-table.js +4 -4
  25. package/dist/components/data-table/paginator.js +4 -4
  26. package/dist/components/data-view/data-view.js +6 -6
  27. package/dist/components/dialogs/confirm-dialog.js +4 -4
  28. package/dist/components/dialogs/confirm-popup.js +4 -4
  29. package/dist/components/dialogs/dialog.js +4 -4
  30. package/dist/components/dropdown/dropdown.js +19 -19
  31. package/dist/components/file-upload/file-upload.js +4 -4
  32. package/dist/components/image/image.js +4 -4
  33. package/dist/components/input/input-mask.js +4 -4
  34. package/dist/components/input/input-number.js +4 -4
  35. package/dist/components/input/input-switch.js +4 -4
  36. package/dist/components/input/input-textarea.js +4 -4
  37. package/dist/components/input/input.js +12 -12
  38. package/dist/components/multi-select/multi-select.js +4 -4
  39. package/dist/components/overlays/overlay-panel.js +4 -4
  40. package/dist/components/password/password.js +4 -4
  41. package/dist/components/radio-button/radio-button.js +4 -4
  42. package/dist/components/range-slider/slider.js +4 -4
  43. package/dist/components/rating/rating.js +4 -4
  44. package/dist/components/side-panel/side-panel.js +4 -4
  45. package/dist/components/skeleton/skeleton.js +4 -4
  46. package/dist/components/spinner/spinner.js +4 -4
  47. package/dist/components/tab-menu/tab-menu.js +4 -4
  48. package/dist/components/tabview/tabview.js +6 -6
  49. package/dist/components/toast/toast.js +4 -4
  50. package/dist/components/toggle/toggle-button.js +4 -4
  51. package/dist/components/tooltip/tooltip.js +4 -4
  52. package/dist/components/utils/classnames.js +4 -4
  53. package/dist/directives/svg-component.js +11 -11
  54. package/dist/directives/svg-icons.js +165 -151
  55. package/dist/index.js +106 -104
  56. package/dist/pages/avatar/avatar.js +7 -7
  57. package/dist/pages/badges/badge.js +55 -55
  58. package/dist/pages/checkbox/checkbox.js +26 -26
  59. package/dist/pages/checkbox-group/checkbox-group-component.js +43 -0
  60. package/dist/pages/color-picker/color-picker.js +13 -13
  61. package/dist/pages/dropdown/dropdown-component.js +36 -36
  62. package/dist/pages/flex.js +15 -0
  63. package/dist/pages/home.js +21 -19
  64. package/dist/pages/input/input-text.js +109 -109
  65. package/dist/pages/progress-bar/progress-bar.js +24 -7
  66. package/dist/pages/radio-button/radio-button-component.js +11 -11
  67. package/dist/pages/tags/tags.js +11 -7
  68. package/dist/pages/toast/toast.js +47 -47
  69. package/dist/pages/types/type.js +2 -2
  70. package/dist/types/App.d.ts +3 -3
  71. package/dist/types/assets/svg/svg.d.ts +7 -7
  72. package/dist/types/components/accordion/accordion.d.ts +3 -3
  73. package/dist/types/components/auto-complete/auto-complete.d.ts +3 -3
  74. package/dist/types/components/avatar/avatar-group.d.ts +2 -2
  75. package/dist/types/components/avatar/avatar.d.ts +2 -2
  76. package/dist/types/components/badge/badge.d.ts +2 -2
  77. package/dist/types/components/button/button.d.ts +3 -3
  78. package/dist/types/components/button/speed-dial.d.ts +2 -2
  79. package/dist/types/components/button/split-button.d.ts +2 -2
  80. package/dist/types/components/calendar/calendar.d.ts +2 -2
  81. package/dist/types/components/card/card.d.ts +2 -2
  82. package/dist/types/components/carousel/carousel.d.ts +2 -2
  83. package/dist/types/components/carousel/tag.d.ts +2 -2
  84. package/dist/types/components/chart/chart.d.ts +2 -0
  85. package/dist/types/components/checkbox/checkbox.d.ts +3 -3
  86. package/dist/types/components/chips/chip.d.ts +2 -2
  87. package/dist/types/components/chips/chips.d.ts +2 -2
  88. package/dist/types/components/color-picker/color-picker.d.ts +2 -2
  89. package/dist/types/components/data-table/column.d.ts +2 -2
  90. package/dist/types/components/data-table/data-table.d.ts +2 -2
  91. package/dist/types/components/data-table/paginator.d.ts +2 -2
  92. package/dist/types/components/data-view/data-view.d.ts +2 -2
  93. package/dist/types/components/dialogs/confirm-dialog.d.ts +2 -2
  94. package/dist/types/components/dialogs/confirm-popup.d.ts +2 -2
  95. package/dist/types/components/dialogs/dialog.d.ts +2 -2
  96. package/dist/types/components/dropdown/dropdown.d.ts +3 -3
  97. package/dist/types/components/file-upload/file-upload.d.ts +2 -2
  98. package/dist/types/components/image/image.d.ts +2 -2
  99. package/dist/types/components/input/input-mask.d.ts +2 -2
  100. package/dist/types/components/input/input-number.d.ts +2 -2
  101. package/dist/types/components/input/input-switch.d.ts +2 -2
  102. package/dist/types/components/input/input-textarea.d.ts +2 -2
  103. package/dist/types/components/input/input.d.ts +3 -3
  104. package/dist/types/components/multi-select/multi-select.d.ts +2 -2
  105. package/dist/types/components/overlays/overlay-panel.d.ts +2 -2
  106. package/dist/types/components/password/password.d.ts +2 -2
  107. package/dist/types/components/radio-button/radio-button.d.ts +2 -2
  108. package/dist/types/components/range-slider/slider.d.ts +2 -2
  109. package/dist/types/components/rating/rating.d.ts +2 -2
  110. package/dist/types/components/side-panel/side-panel.d.ts +2 -2
  111. package/dist/types/components/skeleton/skeleton.d.ts +2 -2
  112. package/dist/types/components/spinner/spinner.d.ts +2 -2
  113. package/dist/types/components/tab-menu/tab-menu.d.ts +2 -2
  114. package/dist/types/components/tabview/tabview.d.ts +2 -2
  115. package/dist/types/components/toast/toast.d.ts +2 -2
  116. package/dist/types/components/toggle/toggle-button.d.ts +2 -2
  117. package/dist/types/components/tooltip/tooltip.d.ts +2 -2
  118. package/dist/types/components/utils/classnames.d.ts +2 -2
  119. package/dist/types/directives/svg-component.d.ts +4 -4
  120. package/dist/types/directives/svg-icons.d.ts +4 -4
  121. package/dist/types/index.d.ts +52 -51
  122. package/dist/types/pages/avatar/avatar.d.ts +2 -2
  123. package/dist/types/pages/badges/badge.d.ts +3 -3
  124. package/dist/types/pages/checkbox/checkbox.d.ts +2 -2
  125. package/dist/types/pages/checkbox-group/checkbox-group-component.d.ts +3 -0
  126. package/dist/types/pages/color-picker/color-picker.d.ts +2 -2
  127. package/dist/types/pages/dropdown/dropdown-component.d.ts +2 -2
  128. package/dist/types/pages/flex.d.ts +2 -0
  129. package/dist/types/pages/home.d.ts +2 -2
  130. package/dist/types/pages/input/input-text.d.ts +3 -3
  131. package/dist/types/pages/progress-bar/progress-bar.d.ts +3 -2
  132. package/dist/types/pages/radio-button/radio-button-component.d.ts +2 -2
  133. package/dist/types/pages/tags/tags.d.ts +2 -2
  134. package/dist/types/pages/toast/toast.d.ts +2 -2
  135. package/dist/types/pages/types/type.d.ts +4 -4
  136. package/package.json +3 -2
@@ -191,16 +191,16 @@ a {
191
191
  --pink-700: #a5326b;
192
192
  --pink-800: #822854;
193
193
  --pink-900: #5e1d3d;
194
- --indigo-50: #f7f7fe;
195
- --indigo-100: #dadafc;
196
- --indigo-200: #bcbdf9;
197
- --indigo-300: #9ea0f6;
198
- --indigo-400: #8183f4;
199
- --indigo-500: #6366f1;
200
- --indigo-600: #5457cd;
201
- --indigo-700: #4547a9;
202
- --indigo-800: #363885;
203
- --indigo-900: #282960;
194
+ --indigo-50: #e3dfff;
195
+ --indigo-100: #d5cfff;
196
+ --indigo-200: #c7bfff;
197
+ --indigo-300: #b9afff;
198
+ --indigo-400: #907fff;
199
+ --indigo-500: #e5f3ff;
200
+ --indigo-600: #5137ff;
201
+ --indigo-700: #3b1eff;
202
+ --indigo-800: #2504ff;
203
+ --indigo-900: #1f00ea;
204
204
  --teal-50: #f3fbfb;
205
205
  --teal-100: #c7eeea;
206
206
  --teal-200: #9ae0d9;
@@ -761,6 +761,84 @@ a {
761
761
  }
762
762
  /* ############################################################## Checkbox CSS changes END ############################################################### */
763
763
 
764
+ /* ############################################################# New CSS Classes for checkbox groups ##################################################### */
765
+ .p-checkbox-group {
766
+ background: #ffffff;
767
+ border: 1px solid var(--gray-200);
768
+ line-height: 20px;
769
+ user-select: none;
770
+ -webkit-user-select: none;
771
+ transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
772
+ }
773
+
774
+ .p-checkbox-group:not(.p-group-disabled) .p-header-highlight {
775
+ background-color: var(--primary-50);
776
+ border-top-left-radius: 12px;
777
+ border-top-right-radius: 12px;
778
+ color: var(--primary-800) !important;
779
+ }
780
+
781
+ .p-checkbox-group:not(.p-group-disabled):not(.p-group-highlight):has(.p-header-highlight) {
782
+ border: 1px solid var(--primary-600);
783
+ }
784
+
785
+ .p-checkbox-group.group-wide {
786
+ width: 767px;
787
+ }
788
+ .p-checkbox-group.group-narrow {
789
+ width: 343px;
790
+ }
791
+
792
+ #separator {
793
+ height: 1px;
794
+ margin-bottom: 14px;
795
+ background: var(--gray-200);
796
+ transition: background-color 0.2s;
797
+ }
798
+
799
+ .p-checkbox-group:not(.p-group-disabled):hover #separator {
800
+ background: var(--primary-300);
801
+ }
802
+
803
+ .p-checkbox-group:not(.p-group-disabled).p-group-focus #separator {
804
+ background: var(--primary-300);
805
+ }
806
+
807
+ .p-checkbox-group:not(.p-group-disabled).p-group-highlight #separator {
808
+ background: var(--primary-600);
809
+ }
810
+
811
+ .p-checkbox-group:not(.p-group-disabled):not(.p-group-highlight):has(.p-header-highlight) #separator {
812
+ background: var(--primary-600);
813
+ }
814
+
815
+ .p-checkbox-group:not(.p-group-disabled):hover {
816
+ border: 1px solid var(--primary-300);
817
+ cursor: pointer;
818
+ }
819
+
820
+ .p-checkbox-group:not(.p-group-disabled).p-group-focus {
821
+ border: 1px solid var(--primary-300);
822
+ box-shadow: 0px 0px 0px 4px var(--primary-100);
823
+ }
824
+
825
+ .p-checkbox-group:not(.p-group-disabled).p-group-highlight {
826
+ border: 1px solid var(--primary-600);
827
+ background: var(--primary-50);
828
+ color: var(--primary-700);
829
+ }
830
+
831
+ .p-checkbox-group:not(.p-group-disabled).p-group-highlight .group-text span:first-child {
832
+ color: var(--primary-800) !important;
833
+ }
834
+ .p-checkbox-group:not(.p-group-disabled).p-group-highlight .group-text span:last-child {
835
+ color: var(--primary-700) !important;
836
+ }
837
+
838
+ .p-checkbox-group.p-group-disabled {
839
+ background: var(--gray-50);
840
+ }
841
+ /* ############################################################# Checkbox group styles END ################################################# */
764
842
  .p-input-filled .p-checkbox .p-checkbox-box {
765
843
  background-color: #e9ecef;
766
844
  }
@@ -889,7 +967,7 @@ a {
889
967
  outline: 0 none;
890
968
  outline-offset: 0;
891
969
  border: 1px solid var(--red-300);
892
- box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05), 0px 0px 0px 4px var(--red-100);
970
+ box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05), 0px 0px 0px 4px var(--red-100);
893
971
  }
894
972
  .p-inputgroup > .p-dropdown:not(.p-disabled).p-focus {
895
973
  outline: 0 none;
@@ -1310,7 +1388,7 @@ box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05), 0px 0px 0px 4px var(--red-100);
1310
1388
  background: #b6bfc8;
1311
1389
  }
1312
1390
  .p-inputswitch.p-inputswitch-checked .p-inputswitch-slider {
1313
- background: #6366f1;
1391
+ background: var(--primary-600);
1314
1392
  }
1315
1393
  .p-inputswitch.p-inputswitch-checked .p-inputswitch-slider:before {
1316
1394
  background: #ffffff;
@@ -5382,7 +5460,6 @@ box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05), 0px 0px 0px 4px var(--red-100);
5382
5460
  padding: 0;
5383
5461
  }
5384
5462
  .p-card .p-card-footer {
5385
- padding: 6px 24px;
5386
5463
  border-top: 1px solid #eaecf0;
5387
5464
  }
5388
5465
 
@@ -7707,14 +7784,14 @@ box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05), 0px 0px 0px 4px var(--red-100);
7707
7784
 
7708
7785
  .p-progressbar {
7709
7786
  border: 0 none;
7710
- height: 1.5rem;
7711
- background: #dee2e6;
7712
- border-radius: 6px;
7787
+ height: 8px;
7788
+ background: var(--gray-200);
7789
+ border-radius: 4px;
7713
7790
  }
7714
7791
  .p-progressbar .p-progressbar-value {
7715
7792
  border: 0 none;
7716
7793
  margin: 0;
7717
- background: #6366f1;
7794
+ background: var(--primary-500);
7718
7795
  }
7719
7796
  .p-progressbar .p-progressbar-label {
7720
7797
  color: #ffffff;
@@ -8077,3 +8154,5 @@ input[type="number"]::-webkit-outer-spin-button {
8077
8154
  -webkit-appearance: none;
8078
8155
  margin: 0;
8079
8156
  }
8157
+
8158
+
@@ -1,32 +1,32 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.Times = exports.Copy = exports.Dollar = exports.Message = exports.Error = exports.Card = exports.InfoLogo = void 0;
4
- const jsx_runtime_1 = require("react/jsx-runtime");
5
- const InfoLogo = () => {
6
- return ((0, jsx_runtime_1.jsx)("svg", { width: "16", height: "16", viewBox: "0 0 16 16", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: (0, jsx_runtime_1.jsx)("path", { d: "M6.05992 5.99998C6.21665 5.55442 6.52602 5.17872 6.93322 4.9394C7.34042 4.70009 7.81918 4.61261 8.2847 4.69245C8.75022 4.7723 9.17246 5.01433 9.47664 5.37567C9.78081 5.737 9.94729 6.19433 9.94659 6.66665C9.94659 7.99998 7.94659 8.66665 7.94659 8.66665M7.99992 11.3333H8.00659M14.6666 7.99998C14.6666 11.6819 11.6818 14.6666 7.99992 14.6666C4.31802 14.6666 1.33325 11.6819 1.33325 7.99998C1.33325 4.31808 4.31802 1.33331 7.99992 1.33331C11.6818 1.33331 14.6666 4.31808 14.6666 7.99998Z", stroke: "#98A2B3", strokeWidth: "1.33333", strokeLinecap: "round", strokeLinejoin: "round" }) }));
7
- };
8
- exports.InfoLogo = InfoLogo;
9
- const Card = () => {
10
- return ((0, jsx_runtime_1.jsxs)("svg", { width: "34", height: "24", viewBox: "0 0 34 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [(0, jsx_runtime_1.jsx)("rect", { x: "0.5", y: "0.5", width: "33", height: "23", rx: "3.5", fill: "white" }), (0, jsx_runtime_1.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M17.179 16.8295C15.9949 17.8275 14.459 18.43 12.7807 18.43C9.03582 18.43 6 15.4303 6 11.73C6 8.02972 9.03582 5.03003 12.7807 5.03003C14.459 5.03003 15.9949 5.63253 17.179 6.63057C18.363 5.63253 19.8989 5.03003 21.5773 5.03003C25.3221 5.03003 28.358 8.02972 28.358 11.73C28.358 15.4303 25.3221 18.43 21.5773 18.43C19.8989 18.43 18.363 17.8275 17.179 16.8295Z", fill: "#ED0006" }), (0, jsx_runtime_1.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M17.1792 16.8295C18.6371 15.6006 19.5616 13.772 19.5616 11.73C19.5616 9.68807 18.6371 7.85947 17.1792 6.63057C18.3632 5.63253 19.8992 5.03003 21.5775 5.03003C25.3224 5.03003 28.3582 8.02972 28.3582 11.73C28.3582 15.4303 25.3224 18.43 21.5775 18.43C19.8992 18.43 18.3632 17.8275 17.1792 16.8295Z", fill: "#F9A000" }), (0, jsx_runtime_1.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M17.1788 16.8295C18.6367 15.6006 19.5611 13.772 19.5611 11.7301C19.5611 9.68811 18.6367 7.85952 17.1788 6.63062C15.7208 7.85952 14.7964 9.68811 14.7964 11.7301C14.7964 13.772 15.7208 15.6006 17.1788 16.8295Z", fill: "#FF5E00" }), (0, jsx_runtime_1.jsx)("rect", { x: "0.5", y: "0.5", width: "33", height: "23", rx: "3.5", stroke: "#F2F4F7" })] }));
11
- };
12
- exports.Card = Card;
13
- const Error = () => {
14
- return ((0, jsx_runtime_1.jsx)("svg", { width: "16", height: "16", viewBox: "0 0 16 16", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: (0, jsx_runtime_1.jsx)("path", { d: "M7.99992 5.33337V8.00004M7.99992 10.6667H8.00659M14.6666 8.00004C14.6666 11.6819 11.6818 14.6667 7.99992 14.6667C4.31802 14.6667 1.33325 11.6819 1.33325 8.00004C1.33325 4.31814 4.31802 1.33337 7.99992 1.33337C11.6818 1.33337 14.6666 4.31814 14.6666 8.00004Z", stroke: "var(--red-500)", strokeWidth: "1.33333", strokeLinecap: "round", strokeLinejoin: "round" }) }));
15
- };
16
- exports.Error = Error;
17
- const Message = () => {
18
- return ((0, jsx_runtime_1.jsx)("svg", { width: "20", height: "16", viewBox: "0 0 20 16", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: (0, jsx_runtime_1.jsx)("path", { d: "M1.66675 3.83331L8.47085 8.59618C9.02182 8.98187 9.29731 9.17471 9.59697 9.2494C9.86166 9.31538 10.1385 9.31538 10.4032 9.2494C10.7029 9.17471 10.9783 8.98187 11.5293 8.59618L18.3334 3.83331M5.66675 14.6666H14.3334C15.7335 14.6666 16.4336 14.6666 16.9684 14.3942C17.4388 14.1545 17.8212 13.772 18.0609 13.3016C18.3334 12.7668 18.3334 12.0668 18.3334 10.6666V5.33331C18.3334 3.93318 18.3334 3.23312 18.0609 2.69834C17.8212 2.22793 17.4388 1.84548 16.9684 1.6058C16.4336 1.33331 15.7335 1.33331 14.3334 1.33331H5.66675C4.26662 1.33331 3.56655 1.33331 3.03177 1.6058C2.56137 1.84548 2.17892 2.22793 1.93923 2.69834C1.66675 3.23312 1.66675 3.93318 1.66675 5.33331V10.6666C1.66675 12.0668 1.66675 12.7668 1.93923 13.3016C2.17892 13.772 2.56137 14.1545 3.03177 14.3942C3.56655 14.6666 4.26662 14.6666 5.66675 14.6666Z", stroke: "#667085", strokeWidth: "1.66667", strokeLinecap: "round", strokeLinejoin: "round" }) }));
19
- };
20
- exports.Message = Message;
21
- const Dollar = () => {
22
- return ((0, jsx_runtime_1.jsx)("svg", { width: "16", height: "16", viewBox: "0 0 9 16", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: (0, jsx_runtime_1.jsx)("path", { d: "M4.904 12.904C5.256 12.872 5.56533 12.7973 5.832 12.68C6.09867 12.5573 6.32267 12.4027 6.504 12.216C6.69067 12.0293 6.82933 11.8133 6.92 11.568C7.016 11.3173 7.064 11.0427 7.064 10.744C7.064 10.4773 7.01333 10.248 6.912 10.056C6.816 9.864 6.68267 9.69867 6.512 9.56C6.34133 9.416 6.14133 9.296 5.912 9.2C5.68267 9.09867 5.43733 9.00533 5.176 8.92L4.904 12.904ZM4.64 3.656C4.29333 3.688 3.992 3.75733 3.736 3.864C3.48533 3.97067 3.27733 4.104 3.112 4.264C2.94667 4.424 2.824 4.60533 2.744 4.808C2.664 5.00533 2.624 5.21333 2.624 5.432C2.624 5.688 2.66933 5.912 2.76 6.104C2.85067 6.29067 2.976 6.456 3.136 6.6C3.296 6.744 3.48267 6.86933 3.696 6.976C3.90933 7.08267 4.14133 7.17867 4.392 7.264L4.64 3.656ZM5.272 7.544C5.656 7.66667 6.03467 7.79733 6.408 7.936C6.78133 8.07467 7.11733 8.25333 7.416 8.472C7.71467 8.69067 7.95467 8.96533 8.136 9.296C8.32267 9.62133 8.416 10.0293 8.416 10.52C8.416 11 8.336 11.4507 8.176 11.872C8.016 12.2933 7.78133 12.664 7.472 12.984C7.168 13.304 6.792 13.5653 6.344 13.768C5.90133 13.9653 5.39467 14.0827 4.824 14.12L4.728 15.52C4.72267 15.6213 4.68267 15.7093 4.608 15.784C4.53333 15.864 4.44 15.904 4.328 15.904H3.8L3.92 14.104C3.27467 14.04 2.68533 13.88 2.152 13.624C1.624 13.3627 1.168 13.032 0.784 12.632L1.216 11.976C1.25867 11.9173 1.312 11.8693 1.376 11.832C1.44 11.7947 1.50933 11.776 1.584 11.776C1.68533 11.776 1.8 11.8267 1.928 11.928C2.056 12.0293 2.21333 12.144 2.4 12.272C2.592 12.4 2.816 12.5253 3.072 12.648C3.33333 12.7707 3.64533 12.8533 4.008 12.896L4.296 8.648C3.92267 8.536 3.55467 8.41067 3.192 8.272C2.83467 8.13333 2.512 7.94933 2.224 7.72C1.94133 7.49067 1.712 7.20533 1.536 6.864C1.36533 6.52267 1.28 6.09333 1.28 5.576C1.28 5.18667 1.35467 4.808 1.504 4.44C1.65867 4.06667 1.88267 3.736 2.176 3.448C2.46933 3.16 2.82933 2.92533 3.256 2.744C3.68267 2.55733 4.17067 2.45333 4.72 2.432L4.8 1.28C4.80533 1.17867 4.84267 1.088 4.912 1.008C4.98667 0.927999 5.08267 0.888 5.2 0.888H5.728L5.624 2.464C6.17867 2.53333 6.65867 2.67733 7.064 2.896C7.47467 3.11467 7.83733 3.38133 8.152 3.696L7.808 4.224C7.70133 4.384 7.57867 4.464 7.44 4.464C7.36533 4.464 7.272 4.432 7.16 4.368C7.05333 4.29867 6.92267 4.21867 6.768 4.128C6.61867 4.03733 6.44 3.94933 6.232 3.864C6.02933 3.77867 5.79733 3.71467 5.536 3.672L5.272 7.544Z", fill: "#475467" }) }));
23
- };
24
- exports.Dollar = Dollar;
25
- const Copy = () => {
26
- return ((0, jsx_runtime_1.jsx)("svg", { width: "20", height: "20", viewBox: "0 0 20 20", fill: "none", stroke: "var(--gray-700)", xmlns: "http://www.w3.org/2000/svg", children: (0, jsx_runtime_1.jsx)("path", { d: "M4.1665 12.5C3.38993 12.5 3.00165 12.5 2.69536 12.3732C2.28698 12.204 1.96253 11.8795 1.79337 11.4712C1.6665 11.1649 1.6665 10.7766 1.6665 10V4.33335C1.6665 3.39993 1.6665 2.93322 1.84816 2.5767C2.00795 2.2631 2.26292 2.00813 2.57652 1.84834C2.93304 1.66669 3.39975 1.66669 4.33317 1.66669H9.99984C10.7764 1.66669 11.1647 1.66669 11.471 1.79355C11.8794 1.96271 12.2038 2.28717 12.373 2.69555C12.4998 3.00183 12.4998 3.39012 12.4998 4.16669M10.1665 18.3334H15.6665C16.5999 18.3334 17.0666 18.3334 17.4232 18.1517C17.7368 17.9919 17.9917 17.7369 18.1515 17.4233C18.3332 17.0668 18.3332 16.6001 18.3332 15.6667V10.1667C18.3332 9.23327 18.3332 8.76656 18.1515 8.41004C17.9917 8.09643 17.7368 7.84147 17.4232 7.68168C17.0666 7.50002 16.5999 7.50002 15.6665 7.50002H10.1665C9.23308 7.50002 8.76637 7.50002 8.40985 7.68168C8.09625 7.84147 7.84128 8.09643 7.68149 8.41004C7.49984 8.76656 7.49984 9.23327 7.49984 10.1667V15.6667C7.49984 16.6001 7.49984 17.0668 7.68149 17.4233C7.84128 17.7369 8.09625 17.9919 8.40985 18.1517C8.76637 18.3334 9.23308 18.3334 10.1665 18.3334Z", stroke: "#344054", strokeWidth: "1.66667", strokeLinecap: "round", strokeLinejoin: "round" }) }));
27
- };
28
- exports.Copy = Copy;
29
- const Times = () => {
30
- return ((0, jsx_runtime_1.jsx)("svg", { width: "8", height: "8", viewBox: "0 0 8 8", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: (0, jsx_runtime_1.jsx)("path", { d: "M7 1L1 7M1 1L7 7", stroke: "#98A2B3", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }) }));
31
- };
32
- exports.Times = Times;
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.Times = exports.Copy = exports.Dollar = exports.Message = exports.Error = exports.Card = exports.InfoLogo = void 0;
4
+ const jsx_runtime_1 = require("react/jsx-runtime");
5
+ const InfoLogo = () => {
6
+ return ((0, jsx_runtime_1.jsx)("svg", Object.assign({ width: "16", height: "16", viewBox: "0 0 16 16", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, { children: (0, jsx_runtime_1.jsx)("path", { d: "M6.05992 5.99998C6.21665 5.55442 6.52602 5.17872 6.93322 4.9394C7.34042 4.70009 7.81918 4.61261 8.2847 4.69245C8.75022 4.7723 9.17246 5.01433 9.47664 5.37567C9.78081 5.737 9.94729 6.19433 9.94659 6.66665C9.94659 7.99998 7.94659 8.66665 7.94659 8.66665M7.99992 11.3333H8.00659M14.6666 7.99998C14.6666 11.6819 11.6818 14.6666 7.99992 14.6666C4.31802 14.6666 1.33325 11.6819 1.33325 7.99998C1.33325 4.31808 4.31802 1.33331 7.99992 1.33331C11.6818 1.33331 14.6666 4.31808 14.6666 7.99998Z", stroke: "#98A2B3", strokeWidth: "1.33333", strokeLinecap: "round", strokeLinejoin: "round" }) })));
7
+ };
8
+ exports.InfoLogo = InfoLogo;
9
+ const Card = () => {
10
+ return ((0, jsx_runtime_1.jsxs)("svg", Object.assign({ width: "34", height: "24", viewBox: "0 0 34 24", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, { children: [(0, jsx_runtime_1.jsx)("rect", { x: "0.5", y: "0.5", width: "33", height: "23", rx: "3.5", fill: "white" }), (0, jsx_runtime_1.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M17.179 16.8295C15.9949 17.8275 14.459 18.43 12.7807 18.43C9.03582 18.43 6 15.4303 6 11.73C6 8.02972 9.03582 5.03003 12.7807 5.03003C14.459 5.03003 15.9949 5.63253 17.179 6.63057C18.363 5.63253 19.8989 5.03003 21.5773 5.03003C25.3221 5.03003 28.358 8.02972 28.358 11.73C28.358 15.4303 25.3221 18.43 21.5773 18.43C19.8989 18.43 18.363 17.8275 17.179 16.8295Z", fill: "#ED0006" }), (0, jsx_runtime_1.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M17.1792 16.8295C18.6371 15.6006 19.5616 13.772 19.5616 11.73C19.5616 9.68807 18.6371 7.85947 17.1792 6.63057C18.3632 5.63253 19.8992 5.03003 21.5775 5.03003C25.3224 5.03003 28.3582 8.02972 28.3582 11.73C28.3582 15.4303 25.3224 18.43 21.5775 18.43C19.8992 18.43 18.3632 17.8275 17.1792 16.8295Z", fill: "#F9A000" }), (0, jsx_runtime_1.jsx)("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M17.1788 16.8295C18.6367 15.6006 19.5611 13.772 19.5611 11.7301C19.5611 9.68811 18.6367 7.85952 17.1788 6.63062C15.7208 7.85952 14.7964 9.68811 14.7964 11.7301C14.7964 13.772 15.7208 15.6006 17.1788 16.8295Z", fill: "#FF5E00" }), (0, jsx_runtime_1.jsx)("rect", { x: "0.5", y: "0.5", width: "33", height: "23", rx: "3.5", stroke: "#F2F4F7" })] })));
11
+ };
12
+ exports.Card = Card;
13
+ const Error = () => {
14
+ return ((0, jsx_runtime_1.jsx)("svg", Object.assign({ width: "16", height: "16", viewBox: "0 0 16 16", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, { children: (0, jsx_runtime_1.jsx)("path", { d: "M7.99992 5.33337V8.00004M7.99992 10.6667H8.00659M14.6666 8.00004C14.6666 11.6819 11.6818 14.6667 7.99992 14.6667C4.31802 14.6667 1.33325 11.6819 1.33325 8.00004C1.33325 4.31814 4.31802 1.33337 7.99992 1.33337C11.6818 1.33337 14.6666 4.31814 14.6666 8.00004Z", stroke: "var(--red-500)", strokeWidth: "1.33333", strokeLinecap: "round", strokeLinejoin: "round" }) })));
15
+ };
16
+ exports.Error = Error;
17
+ const Message = () => {
18
+ return ((0, jsx_runtime_1.jsx)("svg", Object.assign({ width: "20", height: "16", viewBox: "0 0 20 16", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, { children: (0, jsx_runtime_1.jsx)("path", { d: "M1.66675 3.83331L8.47085 8.59618C9.02182 8.98187 9.29731 9.17471 9.59697 9.2494C9.86166 9.31538 10.1385 9.31538 10.4032 9.2494C10.7029 9.17471 10.9783 8.98187 11.5293 8.59618L18.3334 3.83331M5.66675 14.6666H14.3334C15.7335 14.6666 16.4336 14.6666 16.9684 14.3942C17.4388 14.1545 17.8212 13.772 18.0609 13.3016C18.3334 12.7668 18.3334 12.0668 18.3334 10.6666V5.33331C18.3334 3.93318 18.3334 3.23312 18.0609 2.69834C17.8212 2.22793 17.4388 1.84548 16.9684 1.6058C16.4336 1.33331 15.7335 1.33331 14.3334 1.33331H5.66675C4.26662 1.33331 3.56655 1.33331 3.03177 1.6058C2.56137 1.84548 2.17892 2.22793 1.93923 2.69834C1.66675 3.23312 1.66675 3.93318 1.66675 5.33331V10.6666C1.66675 12.0668 1.66675 12.7668 1.93923 13.3016C2.17892 13.772 2.56137 14.1545 3.03177 14.3942C3.56655 14.6666 4.26662 14.6666 5.66675 14.6666Z", stroke: "#667085", strokeWidth: "1.66667", strokeLinecap: "round", strokeLinejoin: "round" }) })));
19
+ };
20
+ exports.Message = Message;
21
+ const Dollar = () => {
22
+ return ((0, jsx_runtime_1.jsx)("svg", Object.assign({ width: "16", height: "16", viewBox: "0 0 9 16", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, { children: (0, jsx_runtime_1.jsx)("path", { d: "M4.904 12.904C5.256 12.872 5.56533 12.7973 5.832 12.68C6.09867 12.5573 6.32267 12.4027 6.504 12.216C6.69067 12.0293 6.82933 11.8133 6.92 11.568C7.016 11.3173 7.064 11.0427 7.064 10.744C7.064 10.4773 7.01333 10.248 6.912 10.056C6.816 9.864 6.68267 9.69867 6.512 9.56C6.34133 9.416 6.14133 9.296 5.912 9.2C5.68267 9.09867 5.43733 9.00533 5.176 8.92L4.904 12.904ZM4.64 3.656C4.29333 3.688 3.992 3.75733 3.736 3.864C3.48533 3.97067 3.27733 4.104 3.112 4.264C2.94667 4.424 2.824 4.60533 2.744 4.808C2.664 5.00533 2.624 5.21333 2.624 5.432C2.624 5.688 2.66933 5.912 2.76 6.104C2.85067 6.29067 2.976 6.456 3.136 6.6C3.296 6.744 3.48267 6.86933 3.696 6.976C3.90933 7.08267 4.14133 7.17867 4.392 7.264L4.64 3.656ZM5.272 7.544C5.656 7.66667 6.03467 7.79733 6.408 7.936C6.78133 8.07467 7.11733 8.25333 7.416 8.472C7.71467 8.69067 7.95467 8.96533 8.136 9.296C8.32267 9.62133 8.416 10.0293 8.416 10.52C8.416 11 8.336 11.4507 8.176 11.872C8.016 12.2933 7.78133 12.664 7.472 12.984C7.168 13.304 6.792 13.5653 6.344 13.768C5.90133 13.9653 5.39467 14.0827 4.824 14.12L4.728 15.52C4.72267 15.6213 4.68267 15.7093 4.608 15.784C4.53333 15.864 4.44 15.904 4.328 15.904H3.8L3.92 14.104C3.27467 14.04 2.68533 13.88 2.152 13.624C1.624 13.3627 1.168 13.032 0.784 12.632L1.216 11.976C1.25867 11.9173 1.312 11.8693 1.376 11.832C1.44 11.7947 1.50933 11.776 1.584 11.776C1.68533 11.776 1.8 11.8267 1.928 11.928C2.056 12.0293 2.21333 12.144 2.4 12.272C2.592 12.4 2.816 12.5253 3.072 12.648C3.33333 12.7707 3.64533 12.8533 4.008 12.896L4.296 8.648C3.92267 8.536 3.55467 8.41067 3.192 8.272C2.83467 8.13333 2.512 7.94933 2.224 7.72C1.94133 7.49067 1.712 7.20533 1.536 6.864C1.36533 6.52267 1.28 6.09333 1.28 5.576C1.28 5.18667 1.35467 4.808 1.504 4.44C1.65867 4.06667 1.88267 3.736 2.176 3.448C2.46933 3.16 2.82933 2.92533 3.256 2.744C3.68267 2.55733 4.17067 2.45333 4.72 2.432L4.8 1.28C4.80533 1.17867 4.84267 1.088 4.912 1.008C4.98667 0.927999 5.08267 0.888 5.2 0.888H5.728L5.624 2.464C6.17867 2.53333 6.65867 2.67733 7.064 2.896C7.47467 3.11467 7.83733 3.38133 8.152 3.696L7.808 4.224C7.70133 4.384 7.57867 4.464 7.44 4.464C7.36533 4.464 7.272 4.432 7.16 4.368C7.05333 4.29867 6.92267 4.21867 6.768 4.128C6.61867 4.03733 6.44 3.94933 6.232 3.864C6.02933 3.77867 5.79733 3.71467 5.536 3.672L5.272 7.544Z", fill: "#475467" }) })));
23
+ };
24
+ exports.Dollar = Dollar;
25
+ const Copy = () => {
26
+ return ((0, jsx_runtime_1.jsx)("svg", Object.assign({ width: "20", height: "20", viewBox: "0 0 20 20", fill: "none", stroke: "var(--gray-700)", xmlns: "http://www.w3.org/2000/svg" }, { children: (0, jsx_runtime_1.jsx)("path", { d: "M4.1665 12.5C3.38993 12.5 3.00165 12.5 2.69536 12.3732C2.28698 12.204 1.96253 11.8795 1.79337 11.4712C1.6665 11.1649 1.6665 10.7766 1.6665 10V4.33335C1.6665 3.39993 1.6665 2.93322 1.84816 2.5767C2.00795 2.2631 2.26292 2.00813 2.57652 1.84834C2.93304 1.66669 3.39975 1.66669 4.33317 1.66669H9.99984C10.7764 1.66669 11.1647 1.66669 11.471 1.79355C11.8794 1.96271 12.2038 2.28717 12.373 2.69555C12.4998 3.00183 12.4998 3.39012 12.4998 4.16669M10.1665 18.3334H15.6665C16.5999 18.3334 17.0666 18.3334 17.4232 18.1517C17.7368 17.9919 17.9917 17.7369 18.1515 17.4233C18.3332 17.0668 18.3332 16.6001 18.3332 15.6667V10.1667C18.3332 9.23327 18.3332 8.76656 18.1515 8.41004C17.9917 8.09643 17.7368 7.84147 17.4232 7.68168C17.0666 7.50002 16.5999 7.50002 15.6665 7.50002H10.1665C9.23308 7.50002 8.76637 7.50002 8.40985 7.68168C8.09625 7.84147 7.84128 8.09643 7.68149 8.41004C7.49984 8.76656 7.49984 9.23327 7.49984 10.1667V15.6667C7.49984 16.6001 7.49984 17.0668 7.68149 17.4233C7.84128 17.7369 8.09625 17.9919 8.40985 18.1517C8.76637 18.3334 9.23308 18.3334 10.1665 18.3334Z", stroke: "#344054", strokeWidth: "1.66667", strokeLinecap: "round", strokeLinejoin: "round" }) })));
27
+ };
28
+ exports.Copy = Copy;
29
+ const Times = () => {
30
+ return ((0, jsx_runtime_1.jsx)("svg", Object.assign({ width: "8", height: "8", viewBox: "0 0 8 8", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, { children: (0, jsx_runtime_1.jsx)("path", { d: "M7 1L1 7M1 1L7 7", stroke: "#98A2B3", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }) })));
31
+ };
32
+ exports.Times = Times;
@@ -4558,10 +4558,11 @@ input.p-dropdown-label {
4558
4558
  align-items: center;
4559
4559
  justify-content: center;
4560
4560
  overflow: hidden;
4561
+ border-radius: 4px;
4561
4562
  }
4562
4563
 
4563
4564
  .p-progressbar-determinate .p-progressbar-label {
4564
- display: inline-flex;
4565
+ display: none;
4565
4566
  }
4566
4567
 
4567
4568
  .p-progressbar-determinate .p-progressbar-value-animate {
@@ -1,11 +1,11 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.AccordionTab = exports.Accordion = exports.AccordionComponent = void 0;
4
- const jsx_runtime_1 = require("react/jsx-runtime");
5
- const accordion_1 = require("primereact/accordion");
6
- Object.defineProperty(exports, "Accordion", { enumerable: true, get: function () { return accordion_1.Accordion; } });
7
- Object.defineProperty(exports, "AccordionTab", { enumerable: true, get: function () { return accordion_1.AccordionTab; } });
8
- const AccordionComponent = () => {
9
- return ((0, jsx_runtime_1.jsx)("div", { children: "Accordion" }));
10
- };
11
- exports.AccordionComponent = AccordionComponent;
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.AccordionTab = exports.Accordion = exports.AccordionComponent = void 0;
4
+ const jsx_runtime_1 = require("react/jsx-runtime");
5
+ const accordion_1 = require("primereact/accordion");
6
+ Object.defineProperty(exports, "Accordion", { enumerable: true, get: function () { return accordion_1.Accordion; } });
7
+ Object.defineProperty(exports, "AccordionTab", { enumerable: true, get: function () { return accordion_1.AccordionTab; } });
8
+ const AccordionComponent = () => {
9
+ return ((0, jsx_runtime_1.jsx)("div", { children: "Accordion" }));
10
+ };
11
+ exports.AccordionComponent = AccordionComponent;
@@ -1,10 +1,10 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.AutoCompleteComponent = void 0;
4
- const jsx_runtime_1 = require("react/jsx-runtime");
5
- const autocomplete_1 = require("primereact/autocomplete");
6
- const AutoCompleteComponent = () => {
7
- return ((0, jsx_runtime_1.jsx)("div", { children: "auto-complete" }));
8
- };
9
- exports.AutoCompleteComponent = AutoCompleteComponent;
10
- exports.default = autocomplete_1.AutoComplete;
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.AutoCompleteComponent = void 0;
4
+ const jsx_runtime_1 = require("react/jsx-runtime");
5
+ const autocomplete_1 = require("primereact/autocomplete");
6
+ const AutoCompleteComponent = () => {
7
+ return ((0, jsx_runtime_1.jsx)("div", { children: "auto-complete" }));
8
+ };
9
+ exports.AutoCompleteComponent = AutoCompleteComponent;
10
+ exports.default = autocomplete_1.AutoComplete;
@@ -1,4 +1,4 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const avatargroup_1 = require("primereact/avatargroup");
4
- exports.default = avatargroup_1.AvatarGroup;
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const avatargroup_1 = require("primereact/avatargroup");
4
+ exports.default = avatargroup_1.AvatarGroup;
@@ -1,4 +1,4 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const avatar_1 = require("primereact/avatar");
4
- exports.default = avatar_1.Avatar;
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const avatar_1 = require("primereact/avatar");
4
+ exports.default = avatar_1.Avatar;
@@ -1,4 +1,4 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const badge_1 = require("primereact/badge");
4
- exports.default = badge_1.Badge;
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const badge_1 = require("primereact/badge");
4
+ exports.default = badge_1.Badge;
@@ -1,10 +1,10 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ButtonComponent = void 0;
4
- const jsx_runtime_1 = require("react/jsx-runtime");
5
- const button_1 = require("primereact/button");
6
- const ButtonComponent = () => {
7
- return ((0, jsx_runtime_1.jsxs)("div", { children: ["ButtonComponent", (0, jsx_runtime_1.jsx)(button_1.Button, { label: "Click Me" })] }));
8
- };
9
- exports.ButtonComponent = ButtonComponent;
10
- exports.default = button_1.Button;
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ButtonComponent = void 0;
4
+ const jsx_runtime_1 = require("react/jsx-runtime");
5
+ const button_1 = require("primereact/button");
6
+ const ButtonComponent = () => {
7
+ return ((0, jsx_runtime_1.jsxs)("div", { children: ["ButtonComponent", (0, jsx_runtime_1.jsx)(button_1.Button, { label: "Click Me" })] }));
8
+ };
9
+ exports.ButtonComponent = ButtonComponent;
10
+ exports.default = button_1.Button;
@@ -1,4 +1,4 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const speeddial_1 = require("primereact/speeddial");
4
- exports.default = speeddial_1.SpeedDial;
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const speeddial_1 = require("primereact/speeddial");
4
+ exports.default = speeddial_1.SpeedDial;
@@ -1,4 +1,4 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const splitbutton_1 = require("primereact/splitbutton");
4
- exports.default = splitbutton_1.SplitButton;
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const splitbutton_1 = require("primereact/splitbutton");
4
+ exports.default = splitbutton_1.SplitButton;
@@ -1,4 +1,4 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const calendar_1 = require("primereact/calendar");
4
- exports.default = calendar_1.Calendar;
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const calendar_1 = require("primereact/calendar");
4
+ exports.default = calendar_1.Calendar;
@@ -1,4 +1,4 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const card_1 = require("primereact/card");
4
- exports.default = card_1.Card;
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const card_1 = require("primereact/card");
4
+ exports.default = card_1.Card;
@@ -1,4 +1,4 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const carousel_1 = require("primereact/carousel");
4
- exports.default = carousel_1.Carousel;
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const carousel_1 = require("primereact/carousel");
4
+ exports.default = carousel_1.Carousel;
@@ -1,4 +1,4 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const tag_1 = require("primereact/tag");
4
- exports.default = tag_1.Tag;
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tag_1 = require("primereact/tag");
4
+ exports.default = tag_1.Tag;
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const chart_1 = require("primereact/chart");
4
+ exports.default = chart_1.Chart;
@@ -1,10 +1,10 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.CheckboxComponent = void 0;
4
- const jsx_runtime_1 = require("react/jsx-runtime");
5
- const checkbox_1 = require("primereact/checkbox");
6
- const CheckboxComponent = () => {
7
- return (0, jsx_runtime_1.jsx)("div", { children: "checkbox" });
8
- };
9
- exports.CheckboxComponent = CheckboxComponent;
10
- exports.default = checkbox_1.Checkbox;
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CheckboxComponent = void 0;
4
+ const jsx_runtime_1 = require("react/jsx-runtime");
5
+ const checkbox_1 = require("primereact/checkbox");
6
+ const CheckboxComponent = () => {
7
+ return (0, jsx_runtime_1.jsx)("div", { children: "checkbox" });
8
+ };
9
+ exports.CheckboxComponent = CheckboxComponent;
10
+ exports.default = checkbox_1.Checkbox;
@@ -1,4 +1,4 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const chip_1 = require("primereact/chip");
4
- exports.default = chip_1.Chip;
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const chip_1 = require("primereact/chip");
4
+ exports.default = chip_1.Chip;
@@ -1,4 +1,4 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const chips_1 = require("primereact/chips");
4
- exports.default = chips_1.Chips;
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const chips_1 = require("primereact/chips");
4
+ exports.default = chips_1.Chips;
@@ -1,4 +1,4 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const colorpicker_1 = require("primereact/colorpicker");
4
- exports.default = colorpicker_1.ColorPicker;
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const colorpicker_1 = require("primereact/colorpicker");
4
+ exports.default = colorpicker_1.ColorPicker;
@@ -1,4 +1,4 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const column_1 = require("primereact/column");
4
- exports.default = column_1.Column;
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const column_1 = require("primereact/column");
4
+ exports.default = column_1.Column;
@@ -1,4 +1,4 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const datatable_1 = require("primereact/datatable");
4
- exports.default = datatable_1.DataTable;
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const datatable_1 = require("primereact/datatable");
4
+ exports.default = datatable_1.DataTable;
@@ -1,4 +1,4 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const paginator_1 = require("primereact/paginator");
4
- exports.default = paginator_1.Paginator;
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const paginator_1 = require("primereact/paginator");
4
+ exports.default = paginator_1.Paginator;
@@ -1,6 +1,6 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DataViewLayoutOptions = exports.DataView = void 0;
4
- const dataview_1 = require("primereact/dataview");
5
- Object.defineProperty(exports, "DataView", { enumerable: true, get: function () { return dataview_1.DataView; } });
6
- Object.defineProperty(exports, "DataViewLayoutOptions", { enumerable: true, get: function () { return dataview_1.DataViewLayoutOptions; } });
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.DataViewLayoutOptions = exports.DataView = void 0;
4
+ const dataview_1 = require("primereact/dataview");
5
+ Object.defineProperty(exports, "DataView", { enumerable: true, get: function () { return dataview_1.DataView; } });
6
+ Object.defineProperty(exports, "DataViewLayoutOptions", { enumerable: true, get: function () { return dataview_1.DataViewLayoutOptions; } });
@@ -1,4 +1,4 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const confirmdialog_1 = require("primereact/confirmdialog");
4
- exports.default = confirmdialog_1.ConfirmDialog;
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const confirmdialog_1 = require("primereact/confirmdialog");
4
+ exports.default = confirmdialog_1.ConfirmDialog;
@@ -1,4 +1,4 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const confirmpopup_1 = require("primereact/confirmpopup");
4
- exports.default = confirmpopup_1.ConfirmPopup;
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const confirmpopup_1 = require("primereact/confirmpopup");
4
+ exports.default = confirmpopup_1.ConfirmPopup;
@@ -1,4 +1,4 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const dialog_1 = require("primereact/dialog");
4
- exports.default = dialog_1.Dialog;
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const dialog_1 = require("primereact/dialog");
4
+ exports.default = dialog_1.Dialog;
@@ -1,19 +1,19 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DropdownComponent = void 0;
4
- const jsx_runtime_1 = require("react/jsx-runtime");
5
- const react_1 = require("react");
6
- const dropdown_1 = require("primereact/dropdown");
7
- const DropdownComponent = () => {
8
- const [selectedCity, setSelectedCity] = (0, react_1.useState)(null);
9
- const cities = [
10
- { name: 'New York', code: 'NY' },
11
- { name: 'Rome', code: 'RM' },
12
- { name: 'London', code: 'LDN' },
13
- { name: 'Istanbul', code: 'IST' },
14
- { name: 'Paris', code: 'PRS' },
15
- ];
16
- return ((0, jsx_runtime_1.jsx)("div", { className: "card flex justify-content-center", children: (0, jsx_runtime_1.jsx)(dropdown_1.Dropdown, { value: selectedCity, onChange: (e) => setSelectedCity(e.value), options: cities, optionLabel: "name", placeholder: "Select a City", className: "w-full md:w-14rem" }) }));
17
- };
18
- exports.DropdownComponent = DropdownComponent;
19
- exports.default = dropdown_1.Dropdown;
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.DropdownComponent = void 0;
4
+ const jsx_runtime_1 = require("react/jsx-runtime");
5
+ const react_1 = require("react");
6
+ const dropdown_1 = require("primereact/dropdown");
7
+ const DropdownComponent = () => {
8
+ const [selectedCity, setSelectedCity] = (0, react_1.useState)(null);
9
+ const cities = [
10
+ { name: 'New York', code: 'NY' },
11
+ { name: 'Rome', code: 'RM' },
12
+ { name: 'London', code: 'LDN' },
13
+ { name: 'Istanbul', code: 'IST' },
14
+ { name: 'Paris', code: 'PRS' },
15
+ ];
16
+ return ((0, jsx_runtime_1.jsx)("div", Object.assign({ className: "card flex justify-content-center" }, { children: (0, jsx_runtime_1.jsx)(dropdown_1.Dropdown, { value: selectedCity, onChange: (e) => setSelectedCity(e.value), options: cities, optionLabel: "name", placeholder: "Select a City", className: "w-full md:w-14rem" }) })));
17
+ };
18
+ exports.DropdownComponent = DropdownComponent;
19
+ exports.default = dropdown_1.Dropdown;
@@ -1,4 +1,4 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const fileupload_1 = require("primereact/fileupload");
4
- exports.default = fileupload_1.FileUpload;
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const fileupload_1 = require("primereact/fileupload");
4
+ exports.default = fileupload_1.FileUpload;
@@ -1,4 +1,4 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const image_1 = require("primereact/image");
4
- exports.default = image_1.Image;
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const image_1 = require("primereact/image");
4
+ exports.default = image_1.Image;