@channel.io/bezier-react 1.1.0 → 1.2.0
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/README.md +2 -2
- package/build/index.cjs.js +58 -3
- package/build/index.cjs.js.map +1 -1
- package/build/src/components/Icon/LegacyIcon/utils.d.ts +1 -1
- package/build/src/components/Icon/LegacyIcon/utils.d.ts.map +1 -1
- package/build/src/components/Icon/generated/Crop.d.ts +3 -0
- package/build/src/components/Icon/generated/Crop.d.ts.map +1 -0
- package/build/src/components/Icon/generated/Crop.js +21 -0
- package/build/src/components/Icon/generated/Crop.js.map +1 -0
- package/build/src/components/Icon/generated/Screenshare.d.ts +3 -0
- package/build/src/components/Icon/generated/Screenshare.d.ts.map +1 -0
- package/build/src/components/Icon/generated/Screenshare.js +22 -0
- package/build/src/components/Icon/generated/Screenshare.js.map +1 -0
- package/build/src/components/Icon/generated/ScreenshareFilled.d.ts +3 -0
- package/build/src/components/Icon/generated/ScreenshareFilled.d.ts.map +1 -0
- package/build/src/components/Icon/generated/ScreenshareFilled.js +21 -0
- package/build/src/components/Icon/generated/ScreenshareFilled.js.map +1 -0
- package/build/src/components/Icon/generated/Wifi.js +1 -1
- package/build/src/components/Icon/generated/Wifi.js.map +1 -1
- package/build/src/components/Icon/generated/WifiOff.js +1 -1
- package/build/src/components/Icon/generated/WifiOff.js.map +1 -1
- package/build/src/components/Icon/generated/WifiPoor.js +1 -1
- package/build/src/components/Icon/generated/WifiPoor.js.map +1 -1
- package/build/src/components/Icon/generated/index.d.ts +7 -1
- package/build/src/components/Icon/generated/index.d.ts.map +1 -1
- package/build/src/components/Icon/generated/index.js +9 -0
- package/build/src/components/Icon/generated/index.js.map +1 -1
- package/build/src/index.js +3 -0
- package/build/src/index.js.map +1 -1
- package/package.json +4 -3
- package/src/components/Icon/assets/crop.svg +3 -0
- package/src/components/Icon/assets/screenshare-filled.svg +3 -0
- package/src/components/Icon/assets/screenshare.svg +4 -0
- package/src/components/Icon/assets/wifi-off.svg +4 -4
- package/src/components/Icon/assets/wifi-poor.svg +2 -2
- package/src/components/Icon/assets/wifi.svg +3 -3
- package/src/components/Icon/generated/Crop.tsx +23 -0
- package/src/components/Icon/generated/Screenshare.tsx +25 -0
- package/src/components/Icon/generated/ScreenshareFilled.tsx +23 -0
- package/src/components/Icon/generated/Wifi.tsx +1 -1
- package/src/components/Icon/generated/WifiOff.tsx +1 -1
- package/src/components/Icon/generated/WifiPoor.tsx +1 -1
- package/src/components/Icon/generated/index.ts +9 -0
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Bezier React is a React components library that implements Bezier Design System.
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## Installation
|
|
6
6
|
|
|
7
7
|
### npm
|
|
8
8
|
|
|
@@ -38,7 +38,7 @@ root.render(
|
|
|
38
38
|
)
|
|
39
39
|
```
|
|
40
40
|
|
|
41
|
-
##
|
|
41
|
+
## Contributing
|
|
42
42
|
|
|
43
43
|
See [contribution guide](../../CONTRIBUTING.md).
|
|
44
44
|
|
package/build/index.cjs.js
CHANGED
|
@@ -4841,6 +4841,22 @@ function SvgCreditcard(props) {
|
|
|
4841
4841
|
}
|
|
4842
4842
|
var Creditcard = createBezierIcon(SvgCreditcard);
|
|
4843
4843
|
|
|
4844
|
+
function SvgCrop(props) {
|
|
4845
|
+
return React__namespace.createElement("svg", Object.assign({
|
|
4846
|
+
width: "1em",
|
|
4847
|
+
height: "1em",
|
|
4848
|
+
viewBox: "0 0 24 24",
|
|
4849
|
+
fill: "none",
|
|
4850
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
4851
|
+
}, props), React__namespace.createElement("path", {
|
|
4852
|
+
fill: "currentColor",
|
|
4853
|
+
fillRule: "evenodd",
|
|
4854
|
+
clipRule: "evenodd",
|
|
4855
|
+
d: "M5 7v9a3 3 0 0 0 3 3h9v4h2v-4h4v-2h-4V8a3 3 0 0 0-3-3H7V1H5v4H1v2h4Zm2 0v9a1 1 0 0 0 1 1h9V8a1 1 0 0 0-1-1H7Z"
|
|
4856
|
+
}));
|
|
4857
|
+
}
|
|
4858
|
+
var Crop = createBezierIcon(SvgCrop);
|
|
4859
|
+
|
|
4844
4860
|
function SvgCrownFilled(props) {
|
|
4845
4861
|
return React__namespace.createElement("svg", Object.assign({
|
|
4846
4862
|
width: "1em",
|
|
@@ -8207,6 +8223,39 @@ function SvgRuler(props) {
|
|
|
8207
8223
|
}
|
|
8208
8224
|
var Ruler = createBezierIcon(SvgRuler);
|
|
8209
8225
|
|
|
8226
|
+
function SvgScreenshareFilled(props) {
|
|
8227
|
+
return React__namespace.createElement("svg", Object.assign({
|
|
8228
|
+
width: "1em",
|
|
8229
|
+
height: "1em",
|
|
8230
|
+
viewBox: "0 0 24 24",
|
|
8231
|
+
fill: "none",
|
|
8232
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
8233
|
+
}, props), React__namespace.createElement("path", {
|
|
8234
|
+
fill: "currentColor",
|
|
8235
|
+
fillRule: "evenodd",
|
|
8236
|
+
clipRule: "evenodd",
|
|
8237
|
+
d: "M6 4a4 4 0 0 0-4 4v8a4 4 0 0 0 4 4h12a4 4 0 0 0 4-4V8a4 4 0 0 0-4-4H6Zm1.293 8.707a1 1 0 0 1 0-1.414L10.586 8a2 2 0 0 1 2.828 0l3.293 3.293a1 1 0 0 1-1.414 1.414L13 10.414V17a1 1 0 1 1-2 0v-6.586l-2.293 2.293a1 1 0 0 1-1.414 0Z"
|
|
8238
|
+
}));
|
|
8239
|
+
}
|
|
8240
|
+
var ScreenshareFilled = createBezierIcon(SvgScreenshareFilled);
|
|
8241
|
+
|
|
8242
|
+
function SvgScreenshare(props) {
|
|
8243
|
+
return React__namespace.createElement("svg", Object.assign({
|
|
8244
|
+
width: "1em",
|
|
8245
|
+
height: "1em",
|
|
8246
|
+
viewBox: "0 0 24 24",
|
|
8247
|
+
fill: "none",
|
|
8248
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
8249
|
+
}, props), React__namespace.createElement("path", {
|
|
8250
|
+
fill: "currentColor",
|
|
8251
|
+
d: "M2 8a4 4 0 0 1 4-4h12a4 4 0 0 1 4 4v8a4 4 0 0 1-4 4h-2.5a1 1 0 1 1 0-2H18a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h2.5a1 1 0 1 1 0 2H6a4 4 0 0 1-4-4V8Z"
|
|
8252
|
+
}), React__namespace.createElement("path", {
|
|
8253
|
+
fill: "currentColor",
|
|
8254
|
+
d: "M13 11.414V19a1 1 0 1 1-2 0v-7.586l-2.293 2.293a1 1 0 0 1-1.414-1.414L10.586 9a2 2 0 0 1 2.828 0l3.293 3.293a1 1 0 0 1-1.414 1.414L13 11.414Z"
|
|
8255
|
+
}));
|
|
8256
|
+
}
|
|
8257
|
+
var Screenshare = createBezierIcon(SvgScreenshare);
|
|
8258
|
+
|
|
8210
8259
|
function SvgSearchBold(props) {
|
|
8211
8260
|
return React__namespace.createElement("svg", Object.assign({
|
|
8212
8261
|
width: "1em",
|
|
@@ -9901,7 +9950,7 @@ function SvgWifiOff(props) {
|
|
|
9901
9950
|
xmlns: "http://www.w3.org/2000/svg"
|
|
9902
9951
|
}, props), React__namespace.createElement("path", {
|
|
9903
9952
|
fill: "currentColor",
|
|
9904
|
-
d: "M3.814 1.807a1 1 0 0 0 0 1.414l15.97 15.971a1 1 0 0 0 1.415-1.414l-3.643-3.643.943-.995c.21-.22.2-.57-.03-.767a9.96 9.96 0 0 0-4.93-2.255l-2.105-2.105a11.
|
|
9953
|
+
d: "M3.814 1.807a1 1 0 0 0 0 1.414l15.97 15.971a1 1 0 0 0 1.415-1.414l-3.643-3.643.943-.995c.21-.22.2-.57-.03-.767a9.96 9.96 0 0 0-4.93-2.255l-2.105-2.105a11.954 11.954 0 0 1 8.449 2.94.517.517 0 0 0 .714-.027l1.341-1.416c.209-.22.2-.57-.028-.77A14.943 14.943 0 0 0 12 5c-1.109 0-2.19.12-3.23.349L5.228 1.807a1 1 0 0 0-1.414 0ZM2.09 8.74a15.02 15.02 0 0 1 3.516-2.313L7.898 8.72c-1.4.51-2.68 1.272-3.78 2.233a.517.517 0 0 1-.715-.027L2.062 9.51a.535.535 0 0 1 .028-.77ZM5.532 12.373a9.972 9.972 0 0 1 3.963-2.057l2.686 2.686a6.971 6.971 0 0 0-4.62 1.585.529.529 0 0 1-.72-.032l-1.34-1.415a.527.527 0 0 1 .03-.767ZM8.94 16.77c-.21-.221-.202-.572.04-.755A4.978 4.978 0 0 1 12 15c1.134 0 2.18.378 3.02 1.015.242.183.25.534.04.754l-2.697 2.848a.5.5 0 0 1-.726 0l-2.698-2.848Z"
|
|
9905
9954
|
}));
|
|
9906
9955
|
}
|
|
9907
9956
|
var WifiOff = createBezierIcon(SvgWifiOff);
|
|
@@ -9918,7 +9967,7 @@ function SvgWifiPoor(props) {
|
|
|
9918
9967
|
opacity: 0.3
|
|
9919
9968
|
}, React__namespace.createElement("path", {
|
|
9920
9969
|
fill: "currentColor",
|
|
9921
|
-
d: "M16.44 14.588a.
|
|
9970
|
+
d: "M16.44 14.588a.53.53 0 0 0 .718-.033L18.5 13.14c.21-.22.2-.57-.03-.767A9.96 9.96 0 0 0 12 10a9.96 9.96 0 0 0-6.468 2.373.527.527 0 0 0-.031.767l1.34 1.415c.19.2.506.208.72.033A6.971 6.971 0 0 1 12 13c1.685 0 3.231.595 4.44 1.588Z"
|
|
9922
9971
|
}), React__namespace.createElement("path", {
|
|
9923
9972
|
fill: "currentColor",
|
|
9924
9973
|
d: "M19.883 10.952a.517.517 0 0 0 .714-.027l1.341-1.415c.209-.22.2-.57-.028-.77A14.943 14.943 0 0 0 12 5a14.943 14.943 0 0 0-9.91 3.74.535.535 0 0 0-.028.77l1.341 1.415c.19.201.506.209.714.027A11.954 11.954 0 0 1 12 8c3.017 0 5.774 1.114 7.883 2.952Z"
|
|
@@ -9956,7 +10005,7 @@ function SvgWifi(props) {
|
|
|
9956
10005
|
xmlns: "http://www.w3.org/2000/svg"
|
|
9957
10006
|
}, props), React__namespace.createElement("path", {
|
|
9958
10007
|
fill: "currentColor",
|
|
9959
|
-
d: "M8.98 16.015c-.242.183-.25.534-.04.754l2.697 2.848a.5.5 0 0 0 .726 0l2.697-2.848c.21-.22.202-.57-.04-.754A4.978 4.978 0 0 0 12 15c-1.134 0-2.18.378-3.02 1.015ZM16.44 14.588a.
|
|
10008
|
+
d: "M8.98 16.015c-.242.183-.25.534-.04.754l2.697 2.848a.5.5 0 0 0 .726 0l2.697-2.848c.21-.22.202-.57-.04-.754A4.978 4.978 0 0 0 12 15c-1.134 0-2.18.378-3.02 1.015ZM16.44 14.588a.529.529 0 0 0 .718-.033L18.5 13.14c.21-.22.2-.57-.03-.767A9.96 9.96 0 0 0 12 10a9.96 9.96 0 0 0-6.468 2.373.527.527 0 0 0-.031.767l1.34 1.415c.19.2.506.208.72.033A6.971 6.971 0 0 1 12 13c1.685 0 3.231.595 4.44 1.588Z"
|
|
9960
10009
|
}), React__namespace.createElement("path", {
|
|
9961
10010
|
fill: "currentColor",
|
|
9962
10011
|
d: "M19.883 10.952a.517.517 0 0 0 .714-.027l1.341-1.415c.209-.22.2-.57-.028-.77A14.943 14.943 0 0 0 12 5a14.943 14.943 0 0 0-9.91 3.74.535.535 0 0 0-.028.77l1.341 1.415c.19.201.506.209.714.027A11.954 11.954 0 0 1 12 8c3.017 0 5.774 1.114 7.883 2.952Z"
|
|
@@ -10277,6 +10326,7 @@ const icons = {
|
|
|
10277
10326
|
coupon: Coupon,
|
|
10278
10327
|
credit: Credit,
|
|
10279
10328
|
creditcard: Creditcard,
|
|
10329
|
+
crop: Crop,
|
|
10280
10330
|
'crown-filled': CrownFilled,
|
|
10281
10331
|
data: Data,
|
|
10282
10332
|
desktop: Desktop,
|
|
@@ -10484,6 +10534,8 @@ const icons = {
|
|
|
10484
10534
|
rotate: Rotate,
|
|
10485
10535
|
row: Row,
|
|
10486
10536
|
ruler: Ruler,
|
|
10537
|
+
'screenshare-filled': ScreenshareFilled,
|
|
10538
|
+
screenshare: Screenshare,
|
|
10487
10539
|
'search-bold': SearchBold,
|
|
10488
10540
|
search: Search,
|
|
10489
10541
|
'security-person': SecurityPerson,
|
|
@@ -28573,6 +28625,7 @@ exports.CookieIcon = Cookie;
|
|
|
28573
28625
|
exports.CouponIcon = Coupon;
|
|
28574
28626
|
exports.CreditIcon = Credit;
|
|
28575
28627
|
exports.CreditcardIcon = Creditcard;
|
|
28628
|
+
exports.CropIcon = Crop;
|
|
28576
28629
|
exports.CrownFilledIcon = CrownFilled;
|
|
28577
28630
|
exports.DarkFoundation = DarkFoundation;
|
|
28578
28631
|
exports.DataIcon = Data;
|
|
@@ -28821,6 +28874,8 @@ exports.RotateIcon = Rotate;
|
|
|
28821
28874
|
exports.Rounding = Rounding;
|
|
28822
28875
|
exports.RowIcon = Row;
|
|
28823
28876
|
exports.RulerIcon = Ruler;
|
|
28877
|
+
exports.ScreenshareFilledIcon = ScreenshareFilled;
|
|
28878
|
+
exports.ScreenshareIcon = Screenshare;
|
|
28824
28879
|
exports.SearchBoldIcon = SearchBold;
|
|
28825
28880
|
exports.SearchIcon = Search;
|
|
28826
28881
|
exports.SectionLabel = SectionLabel;
|