sccoreui 6.3.49 → 6.3.50

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/App.scss CHANGED
@@ -1125,6 +1125,7 @@ button[aria-expanded="true"] {
1125
1125
  padding: 4px 8px;
1126
1126
  border-radius: var(--border-radius);
1127
1127
  color: var(--primary-400);
1128
+ background-color: transparent;
1128
1129
  svg {
1129
1130
  path {
1130
1131
  stroke: var(--primary-400);
@@ -1142,8 +1143,44 @@ button[aria-expanded="true"] {
1142
1143
  }
1143
1144
  }
1144
1145
  }
1145
-
1146
-
1146
+ }
1147
+
1148
+ .p-button.list_box_btn {
1149
+ font-weight: 600;
1150
+ border-radius: var(--border-radius);
1151
+ display: flex;
1152
+ align-items: center;
1153
+ padding: 8px 16px;
1154
+ cursor: pointer;
1155
+ font-size: 14px;
1156
+ padding-inline: 6px 10px !important;
1157
+ color: var(--primary-400);
1158
+ background: transparent;
1159
+ &:not(.section_btn) {
1160
+ height: 28px;
1161
+ }
1162
+ &.section_btn {
1163
+ padding: 6px 10px 6px 6px;
1164
+ }
1165
+ &:hover {
1166
+ background-color: var(--primary-25);
1167
+ color: var(--primary-700);
1168
+ svg {
1169
+ path {
1170
+ stroke: var(--primary-700);
1171
+ }
1172
+ }
1173
+ }
1174
+ &:has(svg) {
1175
+ display: flex;
1176
+ align-items: center;
1177
+ gap: 4px;
1178
+ }
1179
+ svg {
1180
+ path {
1181
+ stroke: var(--primary-400);
1182
+ }
1183
+ }
1147
1184
  }
1148
1185
 
1149
1186
  .list_box_chips {
@@ -1156,29 +1193,32 @@ button[aria-expanded="true"] {
1156
1193
  gap: 8px;
1157
1194
 
1158
1195
  .list_box_chip {
1159
- padding:4px 8px;
1160
- border: 1px solid var(--gray-200);
1161
- border-radius: var(--border-radius);
1162
- color: var(--gray-700);
1163
- display: flex;
1164
- align-items: center;
1165
- font-size: 14px;
1166
- svg {
1167
- path {
1168
- stroke: var(--gray-400);
1169
- }
1170
- }
1171
- &:hover {
1172
- border: 1px solid var(--gray-300);
1173
- background-color: var(--primary-25);
1196
+ padding: 3px 4px 3px 8px;
1197
+ border: 1px solid var(--gray-200);
1198
+ border-radius: var(--border-radius);
1199
+ color: var(--gray-700);
1200
+ display: flex;
1201
+ align-items: center;
1202
+ font-size: 14px;
1203
+ gap: 4px;
1174
1204
  svg {
1175
- transform: scale(1.1);
1176
- cursor: pointer;
1205
+ width: 15px;
1206
+ height: 15px;
1177
1207
  path {
1178
- stroke: var(--red-500);
1208
+ stroke: var(--gray-400);
1209
+ }
1210
+ }
1211
+ &:hover {
1212
+ border: 1px solid var(--gray-300);
1213
+ background-color: var(--primary-25);
1214
+ svg {
1215
+ transform: scale(1.1);
1216
+ cursor: pointer;
1217
+ path {
1218
+ stroke: var(--red-500);
1219
+ }
1179
1220
  }
1180
1221
  }
1181
- }
1182
1222
  }
1183
1223
  }
1184
1224
 
@@ -1228,8 +1268,6 @@ button[aria-expanded="true"] {
1228
1268
  }
1229
1269
  }
1230
1270
 
1231
-
1232
-
1233
1271
  /////// Custom list_box_dropdown ///////////
1234
1272
 
1235
1273
  //ScMulti Select//
@@ -2222,8 +2260,6 @@ button[aria-expanded="true"] {
2222
2260
  }
2223
2261
  }
2224
2262
 
2225
-
2226
-
2227
2263
  /////// Custom list_box_dropdown ///////////
2228
2264
 
2229
2265
  //ScMulti Select//
@@ -2934,4 +2970,156 @@ button[aria-expanded="true"] {
2934
2970
  }
2935
2971
  }
2936
2972
 
2937
- // listbox styles
2973
+ // button styles
2974
+ // .p-button.sc_btn,
2975
+ // div.sc_btn {
2976
+ // font-weight: 600;
2977
+ // border-radius: var(--border-radius);
2978
+ // display: flex;
2979
+ // align-items: center;
2980
+ // padding: 8px 16px;
2981
+ // cursor: pointer;
2982
+ // font-size: 14px;
2983
+ // padding: 8px 16px;
2984
+
2985
+ // &:has(svg) {
2986
+ // display: flex;
2987
+ // align-items: center;
2988
+ // gap: 6px;
2989
+ // }
2990
+ // svg {
2991
+ // width: 18px;
2992
+ // height: 18px;
2993
+ // path {
2994
+ // stroke: #fff;
2995
+ // }
2996
+ // }
2997
+ // &.primary {
2998
+ // background-color: var(--primary-500);
2999
+ // color: #fff;
3000
+ // &:hover {
3001
+ // background-color: var(--primary-700);
3002
+ // }
3003
+ // }
3004
+ // &.destructive {
3005
+ // background-color: var(--red-600);
3006
+ // color: #fff;
3007
+ // &:hover {
3008
+ // background-color: var(--red-700);
3009
+ // }
3010
+ // }
3011
+
3012
+ // &.secondary {
3013
+ // background-color: var(--bg-white);
3014
+ // padding-block: 7px !important;
3015
+ // // outline-offset: -1px;
3016
+ // color: var(--gray-700);
3017
+ // border: 1px solid var(--gray-300) !important;
3018
+ // &:hover {
3019
+ // background-color: var(--gray-50);
3020
+ // color: var(--gray-900);
3021
+ // }
3022
+ // }
3023
+
3024
+ // // Teritiary buttons
3025
+ // &.tertiary {
3026
+ // background-color: transparent;
3027
+ // &.primary_text {
3028
+ // color: var(--primary-500);
3029
+ // &:hover {
3030
+ // background-color: var(--primary-25);
3031
+ // color: var(--primary-700);
3032
+ // svg {
3033
+ // path {
3034
+ // stroke: var(--primary-700);
3035
+ // }
3036
+ // }
3037
+ // }
3038
+ // svg {
3039
+ // path {
3040
+ // stroke: var(--primary-600);
3041
+ // }
3042
+ // }
3043
+ // }
3044
+ // &.destructive_text {
3045
+ // color: var(--red-600);
3046
+ // &:hover {
3047
+ // background-color: var(--red-50);
3048
+ // color: var(--red-700);
3049
+ // svg {
3050
+ // path {
3051
+ // stroke: var(--red-700);
3052
+ // }
3053
+ // }
3054
+ // }
3055
+ // svg {
3056
+ // path {
3057
+ // stroke: var(--red-600);
3058
+ // }
3059
+ // }
3060
+ // }
3061
+ // &.secondary_text {
3062
+ // color: var(--gray-600);
3063
+ // &:hover {
3064
+ // background-color: var(--gray-50);
3065
+ // color: var(--gray-700);
3066
+ // svg {
3067
+ // path {
3068
+ // stroke: var(--gray-700);
3069
+ // }
3070
+ // }
3071
+ // }
3072
+ // svg {
3073
+ // path {
3074
+ // stroke: var(--gray-600);
3075
+ // }
3076
+ // }
3077
+ // }
3078
+ // }
3079
+ // &.icon_right {
3080
+ // padding: 8px 12px 8px 16px;
3081
+ // }
3082
+ // &.icon_left {
3083
+ // padding: 8px 16px 8px 12px;
3084
+ // }
3085
+ // &.icon_both {
3086
+ // padding: 8px 12px;
3087
+ // }
3088
+ // &.icon_btn {
3089
+ // padding: 8px 12px;
3090
+ // border-radius: var(--border-radius);
3091
+ // background-color: transparent;
3092
+ // border: 0 !important;
3093
+
3094
+ // &.primary {
3095
+ // svg {
3096
+ // path {
3097
+ // stroke: var(--primary-500);
3098
+ // }
3099
+ // }
3100
+ // &:hover {
3101
+ // background-color: var(--primary-25);
3102
+ // svg {
3103
+ // path {
3104
+ // stroke: var(--primary-700);
3105
+ // }
3106
+ // }
3107
+ // }
3108
+ // }
3109
+ // &.secondary {
3110
+ // svg {
3111
+ // path {
3112
+ // stroke: var(--gray-600);
3113
+ // }
3114
+ // }
3115
+ // &:hover {
3116
+ // background-color: var(--gray-50);
3117
+ // svg {
3118
+ // path {
3119
+ // stroke: var(--gray-700);
3120
+ // }
3121
+ // }
3122
+ // }
3123
+ // }
3124
+ // }
3125
+ // }
@@ -13,7 +13,7 @@ const ListBoxDropdown = ({ selectAll,
13
13
  // onSelectAll,
14
14
  onChange, footeTemplate, headerTemplate, labelIcon, labelIconPos, label, labelIconSize, listItems, filter, multiple, filterPlaceholder, optionLabel, listClassName, menuClassName, listBoxParentClassName, listBoxclassName, optionTemplate, values, link, className, scrollElementId,
15
15
  // buttonClassName,
16
- showChips, chipTemplate, chipClassName, chipsParentClassName, showRemoveIcon, removeIconSize, removeIconClassName, onRemoveItem, isDraggable, onDranghandle, onShow, onHide, onFocus, confirmationOption, selectedOptionNone, }) => {
16
+ showChips, chipTemplate, chipClassName, chipsParentClassName, showRemoveIcon, removeIconSize, removeIconClassName, onRemoveItem, isDraggable, onDranghandle, onShow, onHide, onFocus, confirmationOption, selectedOptionNone, type, }) => {
17
17
  const [selectedItems, setSelectedItems] = (0, react_1.useState)([]);
18
18
  // const [inpValue, setInpValue] = useState<any>();
19
19
  const optionsMenuRef = (0, react_1.useRef)();
@@ -105,7 +105,7 @@ showChips, chipTemplate, chipClassName, chipsParentClassName, showRemoveIcon, re
105
105
  template: () => ((0, jsx_runtime_1.jsxs)("div", Object.assign({ className: listBoxParentClassName
106
106
  ? listBoxParentClassName +
107
107
  " list_box_dropdown border-round-lg border-1 overflow-hidden border-gray-200"
108
- : "list_box_dropdown" }, { children: [headerTemplate && (0, jsx_runtime_1.jsx)(jsx_runtime_1.Fragment, { children: headerTemplate() }), (0, jsx_runtime_1.jsx)(listbox_1.ListBox, { itemTemplate: (option) => ((0, jsx_runtime_1.jsx)(jsx_runtime_1.Fragment, { children: optionTemplate ? (optionTemplate(option)) : ((0, jsx_runtime_1.jsx)("span", { children: option[`${optionLabel}`] })) })), listClassName: `${selectedOptionNone ? "selected-none" : ""} ${listClassName ? listClassName : " h-18rem overflow-auto "} ${selectAll && ""}`, filter: filter ? true : false, multiple: multiple ? true : false, value: selectedItems, onChange: (e) => onSelectOption(e), options: selectedOptionNone
108
+ : "list_box_dropdown" }, { children: [headerTemplate && (0, jsx_runtime_1.jsx)(jsx_runtime_1.Fragment, { children: headerTemplate() }), (0, jsx_runtime_1.jsx)(listbox_1.ListBox, { type: "sectionHeader", itemTemplate: (option) => ((0, jsx_runtime_1.jsx)(jsx_runtime_1.Fragment, { children: optionTemplate ? (optionTemplate(option)) : ((0, jsx_runtime_1.jsx)("span", { children: option[`${optionLabel}`] })) })), listClassName: `${selectedOptionNone ? "selected-none" : ""} ${listClassName ? listClassName : " h-18rem overflow-auto "} ${selectAll && ""}`, filter: filter ? true : false, multiple: multiple ? true : false, value: selectedItems, onChange: (e) => onSelectOption(e), options: selectedOptionNone
109
109
  ? listItems.length === selectedItems.length
110
110
  ? []
111
111
  : listItems
@@ -113,17 +113,17 @@ showChips, chipTemplate, chipClassName, chipsParentClassName, showRemoveIcon, re
113
113
  ? listBoxclassName
114
114
  : "w-16rem border-none "} `, filterPlaceholder: filterPlaceholder ? filterPlaceholder : "" }), footeTemplate && (0, jsx_runtime_1.jsx)(jsx_runtime_1.Fragment, { children: footeTemplate() })] }))),
115
115
  },
116
- ] }), !showChips ? ((0, jsx_runtime_1.jsx)(button_1.Button, { type: "button", className: "sc_list_box_btn", link: link ? true : false, icon: labelIcon ? labelIcon : "", size: labelIconSize ? labelIconSize : "", iconPos: labelIconPos ? labelIconPos : "", label: label, onClick: (event) => optionsMenuRef.current.toggle(event) })) : ((0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex flex-wrap gap-2" }, { children: [(0, jsx_runtime_1.jsx)(button_1.Button, { type: "button",
116
+ ] }), !showChips ? ((0, jsx_runtime_1.jsx)(button_1.Button, { type: "button", className: `list_box_btn ${type === "sectionHeader" ? "section_btn" : ""}`, link: link ? true : false, icon: labelIcon ? labelIcon : "", size: labelIconSize ? labelIconSize : "", iconPos: labelIconPos ? labelIconPos : "", label: label, onClick: (event) => optionsMenuRef.current.toggle(event) })) : ((0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex flex-wrap gap-2" }, { children: [(0, jsx_runtime_1.jsx)(button_1.Button, { type: "button",
117
117
  // className={`list_box_button focus:shadow-none p-0 h-max h-auto mx-2`}
118
118
  // link={link ? true : false}
119
- icon: labelIcon ? labelIcon : "", size: labelIconSize ? labelIconSize : "", iconPos: labelIconPos ? labelIconPos : "", label: label, onClick: (event) => optionsMenuRef.current.toggle(event), "aria-controls": "popup_menu_right", "aria-haspopup": true, ref: buttonRef, className: "sc_list_box_btn", text: true }), (0, jsx_runtime_1.jsx)("ul", Object.assign({ className: `list_box_chips ${chipsParentClassName}` }, { children: selectedItems &&
119
+ icon: labelIcon ? labelIcon : "", size: labelIconSize ? labelIconSize : "", iconPos: labelIconPos ? labelIconPos : "", label: label, onClick: (event) => optionsMenuRef.current.toggle(event), "aria-controls": "popup_menu_right", "aria-haspopup": true, ref: buttonRef, className: `list_box_btn ${type === "sectionHeader" ? "section_btn" : ""}` }), (0, jsx_runtime_1.jsx)("ul", Object.assign({ className: `list_box_chips ${chipsParentClassName}` }, { children: selectedItems &&
120
120
  (selectedItems === null || selectedItems === void 0 ? void 0 : selectedItems.map((item, index) => {
121
121
  var _a, _b;
122
- return ((0, jsx_runtime_1.jsx)(jsx_runtime_1.Fragment, { children: isDraggable !== undefined ? ((0, jsx_runtime_1.jsx)("li", Object.assign({ draggable: isDraggable, onDragStart: (e) => handleDragStart(e, index), onDragOver: (e) => handleDragOver(e), onDrop: (e) => handleDrop(e, index), className: `select-none ${chipClassName ? chipClassName : ""} ${showRemoveIcon ? "pr-6 relative text-gray-700" : ""}` }, { children: chipTemplate ? (chipTemplate(item)) : ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [typeof item === "object"
122
+ return ((0, jsx_runtime_1.jsx)(jsx_runtime_1.Fragment, { children: isDraggable !== undefined ? ((0, jsx_runtime_1.jsx)("li", Object.assign({ draggable: isDraggable, onDragStart: (e) => handleDragStart(e, index), onDragOver: (e) => handleDragOver(e), onDrop: (e) => handleDrop(e, index), className: `select-none ${chipClassName ? chipClassName : "list_box_chip"} ${showRemoveIcon ? "relative text-gray-700" : ""}` }, { children: chipTemplate ? (chipTemplate(item)) : ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [typeof item === "object"
123
123
  ? item[`${optionLabel}`]
124
- : (_a = listItems.find((x) => x.value === item)) === null || _a === void 0 ? void 0 : _a[`${optionLabel}`], showRemoveIcon && ((0, jsx_runtime_1.jsxs)("span", Object.assign({ onClick: () => onRemoveItem(item), className: `absolute right-0 p-1` }, { children: [" ", (0, jsx_runtime_1.jsx)(svg_component_1.default, { icon: showRemoveIcon, size: removeIconSize ? removeIconSize : 15 })] })))] })) }), index)) : ((0, jsx_runtime_1.jsx)("li", Object.assign({ className: `select-none ${chipClassName ? chipClassName : "list_box_chip"} ${showRemoveIcon ? "pr-6 relative" : ""}` }, { children: chipTemplate ? (chipTemplate(item)) : ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [typeof item === "object"
124
+ : (_a = listItems.find((x) => x.value === item)) === null || _a === void 0 ? void 0 : _a[`${optionLabel}`], showRemoveIcon && ((0, jsx_runtime_1.jsxs)("span", Object.assign({ onClick: () => onRemoveItem(item), className: `absolute right-0 p-1` }, { children: [" ", (0, jsx_runtime_1.jsx)(svg_component_1.default, { icon: showRemoveIcon, size: removeIconSize ? removeIconSize : 15 })] })))] })) }), index)) : ((0, jsx_runtime_1.jsx)("li", Object.assign({ className: `select-none ${chipClassName ? chipClassName : "list_box_chip"} ${showRemoveIcon ? "relative" : ""}` }, { children: chipTemplate ? (chipTemplate(item)) : ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [typeof item === "object"
125
125
  ? item[`${optionLabel}`]
126
- : (_b = listItems.find((x) => x.value === item)) === null || _b === void 0 ? void 0 : _b[`${optionLabel}`], showRemoveIcon && ((0, jsx_runtime_1.jsxs)("span", Object.assign({ onClick: () => onRemoveItem(item), className: `absolute right-0 p-1 ${removeIconClassName}` }, { children: [" ", (0, jsx_runtime_1.jsx)(svg_component_1.default, { icon: showRemoveIcon, size: removeIconSize ? removeIconSize : 15 })] })))] })) }), index)) }));
126
+ : (_b = listItems.find((x) => x.value === item)) === null || _b === void 0 ? void 0 : _b[`${optionLabel}`], showRemoveIcon && ((0, jsx_runtime_1.jsxs)("span", Object.assign({ onClick: () => onRemoveItem(item), className: `${removeIconClassName}` }, { children: [" ", (0, jsx_runtime_1.jsx)(svg_component_1.default, { icon: showRemoveIcon, size: removeIconSize ? removeIconSize : 15 })] })))] })) }), index)) }));
127
127
  })) }))] })))] })) }));
128
128
  };
129
129
  exports.default = ListBoxDropdown;
@@ -5,11 +5,11 @@ const jsx_runtime_1 = require("react/jsx-runtime");
5
5
  const tree_1 = require("primereact/tree");
6
6
  const svg_component_1 = tslib_1.__importDefault(require("../../directives/svg-component"));
7
7
  const badge_1 = require("primereact/badge");
8
- const TreeDropdownSelect = ({ treeData, expandedKeys, clickOnNode, classNames, displayLabelName }) => {
8
+ const TreeDropdownSelect = ({ treeData, expandedKeys, clickOnNode, classNames, displayLabelName, icon, }) => {
9
9
  const onClickNode = (e) => {
10
10
  if (clickOnNode)
11
11
  clickOnNode(e);
12
12
  };
13
- return ((0, jsx_runtime_1.jsx)(tree_1.Tree, { value: treeData, expandedKeys: expandedKeys, selectionMode: "single", className: `treeNoCollaps ${classNames ? classNames : ''}`, nodeTemplate: (node) => (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: 'flex gap-2 align-items-center justify-content-between w-full' }, { children: [" ", (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: 'treeItem flex gap-2 h-2rem align-items-center w-full h-full font-semibold' }, { children: [(0, jsx_runtime_1.jsx)(svg_component_1.default, { icon: "chart-breakout-square" }), node[displayLabelName]] })), " ", (node === null || node === void 0 ? void 0 : node.badgeValue) && (0, jsx_runtime_1.jsx)(badge_1.Badge, { className: 'treeBadge w-auto text-gray-700', value: node === null || node === void 0 ? void 0 : node.badgeValue })] })), onNodeClick: (e) => onClickNode(e) }));
13
+ return ((0, jsx_runtime_1.jsx)(tree_1.Tree, { value: treeData, expandedKeys: expandedKeys, selectionMode: "single", className: `treeNoCollaps ${classNames ? classNames : ""}`, nodeTemplate: (node) => ((0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "flex gap-2 align-items-center justify-content-between w-full" }, { children: [" ", (0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "treeItem flex gap-2 h-2rem align-items-center w-full h-full font-semibold" }, { children: [(0, jsx_runtime_1.jsx)(svg_component_1.default, { icon: node[icon] ? node[icon] : "chart-breakout-square" }), node[displayLabelName]] })), " ", (node === null || node === void 0 ? void 0 : node.badgeValue) && ((0, jsx_runtime_1.jsx)(badge_1.Badge, { className: "treeBadge w-auto text-gray-700", value: node === null || node === void 0 ? void 0 : node.badgeValue }))] }))), onNodeClick: (e) => onClickNode(e) }));
14
14
  };
15
15
  exports.default = TreeDropdownSelect;
@@ -9286,6 +9286,28 @@ exports.iconList = [
9286
9286
  <path d="M13.2859 3.88755C12.4676 4.58494 11.4501 5.00639 10.3783 5.09192C7.87719 5.29151 5.89112 7.27759 5.69153 9.77868C5.606 10.8505 5.18454 11.8679 4.48716 12.6863C2.85975 14.596 2.85975 17.4047 4.48716 19.3144C5.18454 20.1327 5.606 21.1502 5.69153 22.222C5.89112 24.7231 7.87719 26.7091 10.3783 26.9087C11.4501 26.9943 12.4676 27.4157 13.2859 28.1131C15.1956 29.7405 18.0043 29.7405 19.914 28.1131C20.7323 27.4157 21.7498 26.9943 22.8216 26.9087C25.3227 26.7091 27.3088 24.7231 27.5083 22.222C27.5939 21.1502 28.0153 20.1327 28.7127 19.3144C30.3401 17.4047 30.3401 14.596 28.7127 12.6863C28.0153 11.8679 27.5939 10.8505 27.5083 9.77868C27.3088 7.27759 25.3227 5.29151 22.8216 5.09192C21.7498 5.00639 20.7323 4.58494 19.914 3.88755C18.0043 2.26014 15.1956 2.26014 13.2859 3.88755Z" fill="#039855"/>
9287
9287
  <path d="M12.5999 16.0003L15.2666 18.667L21.2666 12.667M10.3783 5.09192C11.4501 5.00639 12.4676 4.58494 13.2859 3.88755C15.1956 2.26014 18.0043 2.26014 19.914 3.88755C20.7323 4.58494 21.7498 5.00639 22.8216 5.09192C25.3227 5.29151 27.3088 7.27759 27.5083 9.77868C27.5939 10.8505 28.0153 11.8679 28.7127 12.6863C30.3401 14.596 30.3401 17.4047 28.7127 19.3144C28.0153 20.1327 27.5939 21.1502 27.5083 22.222C27.3088 24.7231 25.3227 26.7091 22.8216 26.9087C21.7498 26.9943 20.7323 27.4157 19.914 28.1131C18.0043 29.7405 15.1956 29.7405 13.2859 28.1131C12.4676 27.4157 11.4501 26.9943 10.3783 26.9087C7.87719 26.7091 5.89112 24.7231 5.69153 22.222C5.606 21.1502 5.18454 20.1327 4.48716 19.3144C2.85975 17.4047 2.85975 14.596 4.48716 12.6863C5.18454 11.8679 5.606 10.8505 5.69153 9.77868C5.89112 7.27759 7.87719 5.29151 10.3783 5.09192Z" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
9288
9288
  </svg>`,
9289
+ },
9290
+ {
9291
+ name: "partner-org-01",
9292
+ svg: `<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
9293
+ <g clip-path="url(#clip0_1_71179)">
9294
+ <path d="M8.95345 2.76562H7.66202C7.4642 2.76576 7.27259 2.83473 7.12005 2.96069C6.96752 3.08666 6.86357 3.26177 6.82603 3.456C6.78849 3.65023 6.8197 3.85146 6.91431 4.02519C7.00892 4.19892 7.16103 4.33432 7.34456 4.40816L8.6544 4.93197C8.83833 5.00555 8.99088 5.14092 9.0858 5.3148C9.18073 5.48869 9.2121 5.69021 9.17452 5.88472C9.13694 6.07922 9.03276 6.25456 8.8799 6.38057C8.72703 6.50657 8.53504 6.57538 8.33694 6.57515H7.04868" stroke="#667085" stroke-width="0.9" stroke-linecap="round" stroke-linejoin="round"/>
9295
+ <path d="M8 2.76525V2.28906" stroke="#667085" stroke-width="0.9" stroke-linecap="round" stroke-linejoin="round"/>
9296
+ <path d="M8 7.05041V6.57422" stroke="#667085" stroke-width="0.9" stroke-linecap="round" stroke-linejoin="round"/>
9297
+ <path d="M10.4474 1.7489C9.75733 1.1707 8.88479 0.855574 7.98451 0.85941C7.08424 0.863245 6.21441 1.1858 5.5293 1.76986" stroke="#667085" stroke-width="0.9" stroke-linecap="round" stroke-linejoin="round"/>
9298
+ <path d="M6.94141 8.32866C7.63774 8.52912 8.37671 8.52758 9.0722 8.32422" stroke="#667085" stroke-width="0.9" stroke-linecap="round" stroke-linejoin="round"/>
9299
+ <path d="M1.33398 4.67039C1.33398 5.17556 1.53466 5.66004 1.89188 6.01726C2.24909 6.37447 2.73357 6.57515 3.23875 6.57515C3.74392 6.57515 4.2284 6.37447 4.58562 6.01726C4.94283 5.66004 5.14351 5.17556 5.14351 4.67039C5.14351 4.16521 4.94283 3.68073 4.58562 3.32352C4.2284 2.9663 3.74392 2.76562 3.23875 2.76562C2.73357 2.76562 2.24909 2.9663 1.89188 3.32352C1.53466 3.68073 1.33398 4.16521 1.33398 4.67039Z" stroke="#667085" stroke-width="0.9" stroke-linecap="round" stroke-linejoin="round"/>
9300
+ <path d="M5.61933 11.3369V9.9083C5.61933 9.27683 5.36848 8.67122 4.92196 8.22471C4.47545 7.77819 3.86984 7.52734 3.23837 7.52734C2.60691 7.52734 2.0013 7.77819 1.55479 8.22471C1.10827 8.67122 0.857422 9.27683 0.857422 9.9083V11.3369H1.8098L2.28599 15.1464H4.19076L4.66695 11.3369H5.61933Z" stroke="#667085" stroke-width="0.9" stroke-linecap="round" stroke-linejoin="round"/>
9301
+ <path d="M10.8574 4.67039C10.8574 5.17556 11.0581 5.66004 11.4153 6.01726C11.7725 6.37447 12.257 6.57515 12.7622 6.57515C13.2674 6.57515 13.7518 6.37447 14.1091 6.01726C14.4663 5.66004 14.6669 5.17556 14.6669 4.67039C14.6669 4.16521 14.4663 3.68073 14.1091 3.32352C13.7518 2.9663 13.2674 2.76562 12.7622 2.76562C12.257 2.76562 11.7725 2.9663 11.4153 3.32352C11.0581 3.68073 10.8574 4.16521 10.8574 4.67039Z" stroke="#667085" stroke-width="0.9" stroke-linecap="round" stroke-linejoin="round"/>
9302
+ <path d="M15.1447 11.3369V9.9083C15.1447 9.27683 14.8939 8.67122 14.4474 8.22471C14.0008 7.77819 13.3952 7.52734 12.7638 7.52734C12.1323 7.52734 11.5267 7.77819 11.0802 8.22471C10.6337 8.67122 10.3828 9.27683 10.3828 9.9083V11.3369H11.3352L11.8114 15.1464H13.7161L14.1923 11.3369H15.1447Z" stroke="#667085" stroke-width="0.9" stroke-linecap="round" stroke-linejoin="round"/>
9303
+ </g>
9304
+ <defs>
9305
+ <clipPath id="clip0_1_71179">
9306
+ <rect width="16" height="16" fill="white"/>
9307
+ </clipPath>
9308
+ </defs>
9309
+ </svg>
9310
+ `,
9289
9311
  },
9290
9312
  {
9291
9313
  name: "word",
@@ -1,3 +1,3 @@
1
1
  import { ListBoxDropdownTypes } from "../types/type";
2
- declare const ListBoxDropdown: ({ selectAll, onChange, footeTemplate, headerTemplate, labelIcon, labelIconPos, label, labelIconSize, listItems, filter, multiple, filterPlaceholder, optionLabel, listClassName, menuClassName, listBoxParentClassName, listBoxclassName, optionTemplate, values, link, className, scrollElementId, showChips, chipTemplate, chipClassName, chipsParentClassName, showRemoveIcon, removeIconSize, removeIconClassName, onRemoveItem, isDraggable, onDranghandle, onShow, onHide, onFocus, confirmationOption, selectedOptionNone, }: ListBoxDropdownTypes) => import("react/jsx-runtime").JSX.Element;
2
+ declare const ListBoxDropdown: ({ selectAll, onChange, footeTemplate, headerTemplate, labelIcon, labelIconPos, label, labelIconSize, listItems, filter, multiple, filterPlaceholder, optionLabel, listClassName, menuClassName, listBoxParentClassName, listBoxclassName, optionTemplate, values, link, className, scrollElementId, showChips, chipTemplate, chipClassName, chipsParentClassName, showRemoveIcon, removeIconSize, removeIconClassName, onRemoveItem, isDraggable, onDranghandle, onShow, onHide, onFocus, confirmationOption, selectedOptionNone, type, }: ListBoxDropdownTypes) => import("react/jsx-runtime").JSX.Element;
3
3
  export default ListBoxDropdown;
@@ -1,3 +1,3 @@
1
- import { TreeDropdownSelectTypes } from '../types/type';
2
- declare const TreeDropdownSelect: ({ treeData, expandedKeys, clickOnNode, classNames, displayLabelName }: TreeDropdownSelectTypes) => import("react/jsx-runtime").JSX.Element;
1
+ import { TreeDropdownSelectTypes } from "../types/type";
2
+ declare const TreeDropdownSelect: ({ treeData, expandedKeys, clickOnNode, classNames, displayLabelName, icon, }: TreeDropdownSelectTypes) => import("react/jsx-runtime").JSX.Element;
3
3
  export default TreeDropdownSelect;
@@ -195,6 +195,7 @@ export interface TreeDropdownSelectTypes {
195
195
  expandedKeys: any;
196
196
  classNames?: any;
197
197
  isLoading?: boolean;
198
+ icon?: any;
198
199
  }
199
200
  export interface CustomColorPickerTypes {
200
201
  onChange?: any;
@@ -255,6 +256,7 @@ export interface ListBoxDropdownTypes {
255
256
  onFocus?: (payload: any) => void;
256
257
  confirmationOption?: boolean;
257
258
  selectedOptionNone?: boolean;
259
+ type?: any;
258
260
  }
259
261
  export interface DatePickerTypes {
260
262
  value: any;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sccoreui",
3
- "version": "6.3.49",
3
+ "version": "6.3.50",
4
4
  "description": "ui-sccore",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",