odaptos_design_system 1.4.91 → 1.4.92
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/odaptos_design_system.cjs.development.js +24 -24
- package/dist/odaptos_design_system.cjs.development.js.map +1 -1
- package/dist/odaptos_design_system.cjs.production.min.js +1 -1
- package/dist/odaptos_design_system.cjs.production.min.js.map +1 -1
- package/dist/odaptos_design_system.esm.js +24 -24
- package/dist/odaptos_design_system.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/Icons/Arrows/ArrowDoubleLineDownIcon.tsx +1 -1
- package/src/Icons/Arrows/ArrowDoubleLineLeftIcon.tsx +1 -1
- package/src/Icons/Arrows/ArrowDoubleLineRightIcon.tsx +1 -1
- package/src/Icons/Arrows/ArrowDoubleLineUpIcon.tsx +1 -1
- package/src/Icons/Arrows/ArrowLineDownIcon.tsx +1 -1
- package/src/Icons/Arrows/ArrowLineLeftIcon.tsx +1 -1
- package/src/Icons/Arrows/ArrowLineRightIcon.tsx +1 -1
- package/src/Icons/Arrows/ArrowLineUpIcon.tsx +1 -1
- package/src/Icons/Arrows/ArrowPointerDown.tsx +1 -1
- package/src/Icons/Arrows/ArrowPointerDownLeft.tsx +1 -1
- package/src/Icons/Arrows/ArrowPointerDownRight.tsx +1 -1
- package/src/Icons/Arrows/ArrowPointerLeft.tsx +1 -1
- package/src/Icons/Arrows/ArrowPointerUp.tsx +1 -1
- package/src/Icons/Arrows/ArrowPointerUpLeft.tsx +1 -1
- package/src/Icons/Arrows/ArrowPointerUpRight.tsx +1 -1
- package/src/Icons/Interaction/AddIcon.tsx +1 -1
- package/src/Icons/MediaControl/PlayIcon.tsx +1 -1
- package/src/Icons/Miscellaneous/BookFlipPageIcon.tsx +1 -1
- package/src/Icons/Miscellaneous/SendEmailIcon.tsx +1 -1
- package/src/Icons/Notifications/AlamBellIdleIcon.tsx +4 -4
- package/src/Icons/Notifications/AlarmBellStatusIcon.tsx +1 -1
|
@@ -140,7 +140,7 @@ function ArrowDoubleLineDownIcon({
|
|
|
140
140
|
...rest
|
|
141
141
|
}) {
|
|
142
142
|
return /*#__PURE__*/React__default.createElement(material.SvgIcon, Object.assign({
|
|
143
|
-
strokeWidth: strokeWidth ?? 0.
|
|
143
|
+
strokeWidth: strokeWidth ?? 0.5,
|
|
144
144
|
stroke: stroke ? stroke : 'currentColor',
|
|
145
145
|
sx: {
|
|
146
146
|
height: getIconSize(size),
|
|
@@ -181,7 +181,7 @@ function ArrowDoubleLineLeftIcon({
|
|
|
181
181
|
...rest
|
|
182
182
|
}) {
|
|
183
183
|
return /*#__PURE__*/React__default.createElement(material.SvgIcon, Object.assign({
|
|
184
|
-
strokeWidth: strokeWidth ?? 0.
|
|
184
|
+
strokeWidth: strokeWidth ?? 0.5,
|
|
185
185
|
stroke: stroke ? stroke : 'currentColor',
|
|
186
186
|
sx: {
|
|
187
187
|
height: getIconSize(size),
|
|
@@ -222,7 +222,7 @@ function ArrowDoubleLineRightIcon({
|
|
|
222
222
|
...rest
|
|
223
223
|
}) {
|
|
224
224
|
return /*#__PURE__*/React__default.createElement(material.SvgIcon, Object.assign({
|
|
225
|
-
strokeWidth: strokeWidth ?? 0.
|
|
225
|
+
strokeWidth: strokeWidth ?? 0.5,
|
|
226
226
|
stroke: stroke ? stroke : 'currentColor',
|
|
227
227
|
sx: {
|
|
228
228
|
height: getIconSize(size),
|
|
@@ -263,7 +263,7 @@ function ArrowDoubleLineUpIcon({
|
|
|
263
263
|
...rest
|
|
264
264
|
}) {
|
|
265
265
|
return /*#__PURE__*/React__default.createElement(material.SvgIcon, Object.assign({
|
|
266
|
-
strokeWidth: strokeWidth ?? 0.
|
|
266
|
+
strokeWidth: strokeWidth ?? 0.5,
|
|
267
267
|
stroke: stroke ? stroke : 'currentColor',
|
|
268
268
|
sx: {
|
|
269
269
|
height: getIconSize(size),
|
|
@@ -408,7 +408,7 @@ function ArrowLineDowIcon({
|
|
|
408
408
|
...rest
|
|
409
409
|
}) {
|
|
410
410
|
return /*#__PURE__*/React__default.createElement(material.SvgIcon, Object.assign({
|
|
411
|
-
strokeWidth: strokeWidth ?? 0.
|
|
411
|
+
strokeWidth: strokeWidth ?? 0.5,
|
|
412
412
|
stroke: stroke ? stroke : 'currentColor',
|
|
413
413
|
sx: {
|
|
414
414
|
height: getIconSize(size),
|
|
@@ -444,7 +444,7 @@ function ArrowLineLeftIcon({
|
|
|
444
444
|
...rest
|
|
445
445
|
}) {
|
|
446
446
|
return /*#__PURE__*/React__default.createElement(material.SvgIcon, Object.assign({
|
|
447
|
-
strokeWidth: strokeWidth ?? 0.
|
|
447
|
+
strokeWidth: strokeWidth ?? 0.5,
|
|
448
448
|
stroke: stroke ? stroke : 'currentColor',
|
|
449
449
|
sx: {
|
|
450
450
|
height: getIconSize(size),
|
|
@@ -480,7 +480,7 @@ function ArrowLineRightIcon({
|
|
|
480
480
|
...rest
|
|
481
481
|
}) {
|
|
482
482
|
return /*#__PURE__*/React__default.createElement(material.SvgIcon, Object.assign({
|
|
483
|
-
strokeWidth: strokeWidth ?? 0.
|
|
483
|
+
strokeWidth: strokeWidth ?? 0.5,
|
|
484
484
|
stroke: stroke ? stroke : 'currentColor',
|
|
485
485
|
sx: {
|
|
486
486
|
height: getIconSize(size),
|
|
@@ -516,7 +516,7 @@ function ArrowLineUpIcon({
|
|
|
516
516
|
...rest
|
|
517
517
|
}) {
|
|
518
518
|
return /*#__PURE__*/React__default.createElement(material.SvgIcon, Object.assign({
|
|
519
|
-
strokeWidth: strokeWidth ?? 0.
|
|
519
|
+
strokeWidth: strokeWidth ?? 0.5,
|
|
520
520
|
stroke: stroke ? stroke : 'currentColor',
|
|
521
521
|
sx: {
|
|
522
522
|
height: getIconSize(size),
|
|
@@ -552,7 +552,7 @@ function ArrowPointerDown({
|
|
|
552
552
|
...rest
|
|
553
553
|
}) {
|
|
554
554
|
return /*#__PURE__*/React__default.createElement(material.SvgIcon, Object.assign({
|
|
555
|
-
strokeWidth: strokeWidth ?? 0.
|
|
555
|
+
strokeWidth: strokeWidth ?? 0.5,
|
|
556
556
|
stroke: stroke ? stroke : 'currentColor',
|
|
557
557
|
sx: {
|
|
558
558
|
height: getIconSize(size),
|
|
@@ -593,7 +593,7 @@ function ArrowPointerDownLeft({
|
|
|
593
593
|
...rest
|
|
594
594
|
}) {
|
|
595
595
|
return /*#__PURE__*/React__default.createElement(material.SvgIcon, Object.assign({
|
|
596
|
-
strokeWidth: strokeWidth ?? 0.
|
|
596
|
+
strokeWidth: strokeWidth ?? 0.5,
|
|
597
597
|
stroke: stroke ? stroke : 'currentColor',
|
|
598
598
|
sx: {
|
|
599
599
|
height: getIconSize(size),
|
|
@@ -626,7 +626,7 @@ function ArrowPointerDownRight({
|
|
|
626
626
|
...rest
|
|
627
627
|
}) {
|
|
628
628
|
return /*#__PURE__*/React__default.createElement(material.SvgIcon, Object.assign({
|
|
629
|
-
strokeWidth: strokeWidth ?? 0.
|
|
629
|
+
strokeWidth: strokeWidth ?? 0.5,
|
|
630
630
|
stroke: stroke ? stroke : 'currentColor',
|
|
631
631
|
sx: {
|
|
632
632
|
height: getIconSize(size),
|
|
@@ -659,7 +659,7 @@ function ArrowPointerLeft({
|
|
|
659
659
|
...rest
|
|
660
660
|
}) {
|
|
661
661
|
return /*#__PURE__*/React__default.createElement(material.SvgIcon, Object.assign({
|
|
662
|
-
strokeWidth: strokeWidth ?? 0.
|
|
662
|
+
strokeWidth: strokeWidth ?? 0.5,
|
|
663
663
|
stroke: stroke ? stroke : 'currentColor',
|
|
664
664
|
sx: {
|
|
665
665
|
height: getIconSize(size),
|
|
@@ -741,7 +741,7 @@ function ArrowPointerUp({
|
|
|
741
741
|
...rest
|
|
742
742
|
}) {
|
|
743
743
|
return /*#__PURE__*/React__default.createElement(material.SvgIcon, Object.assign({
|
|
744
|
-
strokeWidth: strokeWidth ?? 0.
|
|
744
|
+
strokeWidth: strokeWidth ?? 0.5,
|
|
745
745
|
stroke: stroke ? stroke : 'currentColor',
|
|
746
746
|
sx: {
|
|
747
747
|
height: getIconSize(size),
|
|
@@ -782,7 +782,7 @@ function ArrowPointerUpLeft({
|
|
|
782
782
|
...rest
|
|
783
783
|
}) {
|
|
784
784
|
return /*#__PURE__*/React__default.createElement(material.SvgIcon, Object.assign({
|
|
785
|
-
strokeWidth: strokeWidth ?? 0.
|
|
785
|
+
strokeWidth: strokeWidth ?? 0.5,
|
|
786
786
|
stroke: stroke ? stroke : 'currentColor',
|
|
787
787
|
sx: {
|
|
788
788
|
height: getIconSize(size),
|
|
@@ -815,7 +815,7 @@ function ArrowPointerUpRight({
|
|
|
815
815
|
...rest
|
|
816
816
|
}) {
|
|
817
817
|
return /*#__PURE__*/React__default.createElement(material.SvgIcon, Object.assign({
|
|
818
|
-
strokeWidth: strokeWidth ?? 0.
|
|
818
|
+
strokeWidth: strokeWidth ?? 0.5,
|
|
819
819
|
stroke: stroke ? stroke : 'currentColor',
|
|
820
820
|
sx: {
|
|
821
821
|
height: getIconSize(size),
|
|
@@ -3685,7 +3685,7 @@ function AddIcon({
|
|
|
3685
3685
|
...rest
|
|
3686
3686
|
}) {
|
|
3687
3687
|
return /*#__PURE__*/React__default.createElement(material.SvgIcon, Object.assign({
|
|
3688
|
-
strokeWidth: strokeWidth ?? 0.
|
|
3688
|
+
strokeWidth: strokeWidth ?? 0.5,
|
|
3689
3689
|
stroke: stroke ? stroke : 'currentColor',
|
|
3690
3690
|
sx: {
|
|
3691
3691
|
height: getIconSize(size),
|
|
@@ -4974,7 +4974,7 @@ function PlayIcon({
|
|
|
4974
4974
|
...rest
|
|
4975
4975
|
}) {
|
|
4976
4976
|
return /*#__PURE__*/React__default.createElement(material.SvgIcon, Object.assign({
|
|
4977
|
-
strokeWidth: strokeWidth ?? 1.
|
|
4977
|
+
strokeWidth: strokeWidth ?? 1.7,
|
|
4978
4978
|
stroke: stroke ? stroke : 'currentColor'
|
|
4979
4979
|
}, rest), /*#__PURE__*/React__default.createElement("svg", {
|
|
4980
4980
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -5319,7 +5319,7 @@ function BookFlipPageIcon({
|
|
|
5319
5319
|
...rest
|
|
5320
5320
|
}) {
|
|
5321
5321
|
return /*#__PURE__*/React__default.createElement(material.SvgIcon, Object.assign({
|
|
5322
|
-
strokeWidth: strokeWidth ??
|
|
5322
|
+
strokeWidth: strokeWidth ?? 3,
|
|
5323
5323
|
stroke: stroke ? stroke : 'currentColor',
|
|
5324
5324
|
sx: {
|
|
5325
5325
|
height: getIconSize(size),
|
|
@@ -6634,7 +6634,7 @@ function SendEmailIcon({
|
|
|
6634
6634
|
...rest
|
|
6635
6635
|
}) {
|
|
6636
6636
|
return /*#__PURE__*/React__default.createElement(material.SvgIcon, Object.assign({
|
|
6637
|
-
strokeWidth: strokeWidth ??
|
|
6637
|
+
strokeWidth: strokeWidth ?? 1,
|
|
6638
6638
|
stroke: stroke ? stroke : 'currentColor',
|
|
6639
6639
|
sx: {
|
|
6640
6640
|
height: getIconSize(size),
|
|
@@ -6967,7 +6967,7 @@ function AlamBellIdleIcon({
|
|
|
6967
6967
|
...rest
|
|
6968
6968
|
}) {
|
|
6969
6969
|
return /*#__PURE__*/React__default.createElement(material.SvgIcon, Object.assign({
|
|
6970
|
-
strokeWidth: strokeWidth ??
|
|
6970
|
+
strokeWidth: strokeWidth ?? 1.7,
|
|
6971
6971
|
stroke: stroke ? stroke : 'currentColor',
|
|
6972
6972
|
sx: {
|
|
6973
6973
|
height: getIconSize(size),
|
|
@@ -6982,19 +6982,19 @@ function AlamBellIdleIcon({
|
|
|
6982
6982
|
}, /*#__PURE__*/React__default.createElement("path", {
|
|
6983
6983
|
d: "M10 21.75C10.127 22.1827 10.3908 22.5626 10.7518 22.8328C11.1127 23.1031 11.5516 23.2492 12.0025 23.2492C12.4534 23.2492 12.8923 23.1031 13.2532 22.8328C13.6142 22.5626 13.878 22.1827 14.005 21.75",
|
|
6984
6984
|
stroke: stroke,
|
|
6985
|
-
strokeWidth
|
|
6985
|
+
// strokeWidth="1.5"
|
|
6986
6986
|
strokeLinecap: "round",
|
|
6987
6987
|
strokeLinejoin: "round"
|
|
6988
6988
|
}), /*#__PURE__*/React__default.createElement("path", {
|
|
6989
6989
|
d: "M12 3V0.75",
|
|
6990
6990
|
stroke: stroke,
|
|
6991
|
-
strokeWidth
|
|
6991
|
+
// strokeWidth="1.5"
|
|
6992
6992
|
strokeLinecap: "round",
|
|
6993
6993
|
strokeLinejoin: "round"
|
|
6994
6994
|
}), /*#__PURE__*/React__default.createElement("path", {
|
|
6995
6995
|
d: "M12 3C13.9891 3 15.8968 3.79018 17.3033 5.1967C18.7098 6.60322 19.5 8.51088 19.5 10.5C19.5 17.546 21 18.75 21 18.75H3C3 18.75 4.5 16.834 4.5 10.5C4.5 8.51088 5.29018 6.60322 6.6967 5.1967C8.10322 3.79018 10.0109 3 12 3Z",
|
|
6996
6996
|
stroke: stroke,
|
|
6997
|
-
strokeWidth
|
|
6997
|
+
// strokeWidth="1.5"
|
|
6998
6998
|
strokeLinecap: "round",
|
|
6999
6999
|
strokeLinejoin: "round"
|
|
7000
7000
|
})));
|
|
@@ -7008,7 +7008,7 @@ function AlarmBellStatusIcon({
|
|
|
7008
7008
|
...rest
|
|
7009
7009
|
}) {
|
|
7010
7010
|
return /*#__PURE__*/React__default.createElement(material.SvgIcon, Object.assign({
|
|
7011
|
-
strokeWidth: strokeWidth ?? 0.
|
|
7011
|
+
strokeWidth: strokeWidth ?? 0.3,
|
|
7012
7012
|
stroke: stroke ? stroke : 'currentColor',
|
|
7013
7013
|
sx: {
|
|
7014
7014
|
height: getIconSize(size),
|