diginet-core-ui 1.4.66-beta.5 → 1.4.67-beta.1
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/icons/basic.js +28 -0
- package/package.json +1 -1
- package/readme.md +9 -0
package/icons/basic.js
CHANGED
|
@@ -5296,6 +5296,34 @@ export const PersonArrowRight = /*#__PURE__*/memo(({
|
|
|
5296
5296
|
fill: fillColor(color)
|
|
5297
5297
|
}));
|
|
5298
5298
|
});
|
|
5299
|
+
export const PersonEdit = /*#__PURE__*/memo(({
|
|
5300
|
+
width,
|
|
5301
|
+
height,
|
|
5302
|
+
color = 'system/rest',
|
|
5303
|
+
viewBox = false
|
|
5304
|
+
}) => {
|
|
5305
|
+
return viewBox ? /*#__PURE__*/React.createElement("svg", {
|
|
5306
|
+
width: width || 24,
|
|
5307
|
+
height: height || 24,
|
|
5308
|
+
viewBox: "0 0 24 24",
|
|
5309
|
+
fill: "none"
|
|
5310
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
5311
|
+
fillRule: "evenodd",
|
|
5312
|
+
clipRule: "evenodd",
|
|
5313
|
+
d: "M14 21V17.925L19.525 12.425C19.675 12.275 19.8417 12.1667 20.025 12.1C20.2083 12.0333 20.3917 12 20.575 12C20.775 12 20.9667 12.0375 21.15 12.1125C21.3333 12.1875 21.5 12.3 21.65 12.45L22.575 13.375C22.7083 13.525 22.8125 13.6917 22.8875 13.875C22.9625 14.0583 23 14.2417 23 14.425C23 14.6083 22.9667 14.7958 22.9 14.9875C22.8333 15.1792 22.725 15.35 22.575 15.5L17.075 21H14ZM4 20V17.2C4 16.6333 4.14583 16.1125 4.4375 15.6375C4.72917 15.1625 5.11667 14.8 5.6 14.55C6.63333 14.0333 7.68333 13.6458 8.75 13.3875C9.81667 13.1292 10.9 13 12 13C12.6167 13 13.225 13.0375 13.825 13.1125C14.425 13.1875 15.025 13.3083 15.625 13.475L12 17.1V20H4ZM20.575 15.4L21.5 14.425L20.575 13.5L19.625 14.45L20.575 15.4ZM9.175 10.825C8.39167 10.0417 8 9.1 8 8C8 6.9 8.39167 5.95833 9.175 5.175C9.95833 4.39167 10.9 4 12 4C13.1 4 14.0417 4.39167 14.825 5.175C15.6083 5.95833 16 6.9 16 8C16 9.1 15.6083 10.0417 14.825 10.825C14.0417 11.6083 13.1 12 12 12C10.9 12 9.95833 11.6083 9.175 10.825Z",
|
|
5314
|
+
fill: fillColor(color)
|
|
5315
|
+
})) : /*#__PURE__*/React.createElement("svg", {
|
|
5316
|
+
width: width || 19,
|
|
5317
|
+
height: height || 17,
|
|
5318
|
+
viewBox: "0 0 19 17",
|
|
5319
|
+
fill: "none"
|
|
5320
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
5321
|
+
fillRule: "evenodd",
|
|
5322
|
+
clipRule: "evenodd",
|
|
5323
|
+
d: "M10 17V13.925L15.525 8.425C15.675 8.275 15.8417 8.16667 16.025 8.1C16.2083 8.03333 16.3917 8 16.575 8C16.775 8 16.9667 8.0375 17.15 8.1125C17.3333 8.1875 17.5 8.3 17.65 8.45L18.575 9.375C18.7083 9.525 18.8125 9.69167 18.8875 9.875C18.9625 10.0583 19 10.2417 19 10.425C19 10.6083 18.9667 10.7958 18.9 10.9875C18.8333 11.1792 18.725 11.35 18.575 11.5L13.075 17H10ZM0 16V13.2C0 12.6333 0.145833 12.1125 0.4375 11.6375C0.729167 11.1625 1.11667 10.8 1.6 10.55C2.63333 10.0333 3.68333 9.64583 4.75 9.3875C5.81667 9.12917 6.9 9 8 9C8.61667 9 9.225 9.0375 9.825 9.1125C10.425 9.1875 11.025 9.30833 11.625 9.475L8 13.1V16H0ZM16.575 11.4L17.5 10.425L16.575 9.5L15.625 10.45L16.575 11.4ZM5.175 6.825C4.39167 6.04167 4 5.1 4 4C4 2.9 4.39167 1.95833 5.175 1.175C5.95833 0.391667 6.9 0 8 0C9.1 0 10.0417 0.391667 10.825 1.175C11.6083 1.95833 12 2.9 12 4C12 5.1 11.6083 6.04167 10.825 6.825C10.0417 7.60833 9.1 8 8 8C6.9 8 5.95833 7.60833 5.175 6.825Z",
|
|
5324
|
+
fill: fillColor(color)
|
|
5325
|
+
}));
|
|
5326
|
+
});
|
|
5299
5327
|
export const PersonGroup = /*#__PURE__*/memo(({
|
|
5300
5328
|
width,
|
|
5301
5329
|
height,
|
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -41,6 +41,15 @@ npm test
|
|
|
41
41
|
```
|
|
42
42
|
|
|
43
43
|
## Changelog
|
|
44
|
+
## 1.4.67
|
|
45
|
+
- \[Added\]: ButtonIcon – Add the title prop to ButtonIcon to display the text as a tooltip on hover.
|
|
46
|
+
- \[Added\]: Icon – Add IconMenu MHRP75N0025
|
|
47
|
+
- \[Added\]: Icon – Add Icon LockReset
|
|
48
|
+
- \[Fixed\]: NumberInput - Fix the NumberInput issue where entering 0 does not trigger the delayOnChange prop.
|
|
49
|
+
- \[Fixed\]: DateRangePicker - Fix the issue where the calendar icon is missing and the clear icon is not displayed.
|
|
50
|
+
- \[Fixed\]: Dropdown - Fix the issue where the selected value is not displayed correctly in the Dropdown.
|
|
51
|
+
- \[Added\]: Icon – Add Icon TruckApproval
|
|
52
|
+
- \[Added\]: MoneyInput – Add support for converting decimal numbers to words in Vietnamese, English, and Chinese.
|
|
44
53
|
|
|
45
54
|
## 1.4.66
|
|
46
55
|
- \[Added\]: Icon – Add Icon Import
|