diginet-core-ui 1.3.28 → 1.3.29

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 CHANGED
@@ -4683,6 +4683,42 @@ export const ReviewAdd = /*#__PURE__*/memo(({
4683
4683
  fill: colors[color] || color
4684
4684
  }));
4685
4685
  });
4686
+ export const Link = /*#__PURE__*/memo(({
4687
+ width,
4688
+ height,
4689
+ color = '#7F828E',
4690
+ viewBox = false
4691
+ }) => {
4692
+ return viewBox ? /*#__PURE__*/React.createElement("svg", {
4693
+ width: width || 24,
4694
+ height: height || 24,
4695
+ viewBox: "0 0 24 24",
4696
+ fill: "none"
4697
+ }, /*#__PURE__*/React.createElement("path", {
4698
+ d: "M17 7H13V9H17C18.65 9 20 10.35 20 12C20 13.65 18.65 15 17 15H13V17H17C19.76 17 22 14.76 22 12C22 9.24 19.76 7 17 7Z",
4699
+ fill: colors[color] || color
4700
+ }), /*#__PURE__*/React.createElement("path", {
4701
+ d: "M11 15H7C5.35 15 4 13.65 4 12C4 10.35 5.35 9 7 9H11V7H7C4.24 7 2 9.24 2 12C2 14.76 4.24 17 7 17H11V15Z",
4702
+ fill: colors[color] || color
4703
+ }), /*#__PURE__*/React.createElement("path", {
4704
+ d: "M8 11H16V13H8V11Z",
4705
+ fill: colors[color] || color
4706
+ })) : /*#__PURE__*/React.createElement("svg", {
4707
+ width: width || 20,
4708
+ height: height || 10,
4709
+ viewBox: "0 0 20 10",
4710
+ fill: "none"
4711
+ }, /*#__PURE__*/React.createElement("path", {
4712
+ d: "M15 0H11V2H15C16.65 2 18 3.35 18 5C18 6.65 16.65 8 15 8H11V10H15C17.76 10 20 7.76 20 5C20 2.24 17.76 0 15 0Z",
4713
+ fill: colors[color] || color
4714
+ }), /*#__PURE__*/React.createElement("path", {
4715
+ d: "M9 8H5C3.35 8 2 6.65 2 5C2 3.35 3.35 2 5 2H9V0H5C2.24 0 0 2.24 0 5C0 7.76 2.24 10 5 10H9V8Z",
4716
+ fill: colors[color] || color
4717
+ }), /*#__PURE__*/React.createElement("path", {
4718
+ d: "M6 4H14V6H6V4Z",
4719
+ fill: colors[color] || color
4720
+ }));
4721
+ });
4686
4722
  export const Save = /*#__PURE__*/memo(({
4687
4723
  width,
4688
4724
  height,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "diginet-core-ui",
3
- "version": "1.3.28",
3
+ "version": "1.3.29",
4
4
  "description": "The DigiNet core ui",
5
5
  "homepage": "https://diginet.com.vn",
6
6
  "main": "index.js",
package/styles/general.js CHANGED
@@ -100,6 +100,18 @@ export const ellipsis = css`
100
100
  text-overflow: ellipsis;
101
101
  overflow: hidden;
102
102
  `;
103
+ export const whiteSpaceNoWrap = css`
104
+ white-space: nowrap;
105
+ `;
106
+ export const breakWord = css`
107
+ word-break: break-word;
108
+ `;
109
+ export const textCapitalize = css`
110
+ text-transform: capitalize;
111
+ `;
112
+ export const textUppercase = css`
113
+ text-transform: uppercase;
114
+ `;
103
115
  export const outlineNone = css`
104
116
  outline: none;
105
117
  `;