odaptos_design_system 2.0.337 → 2.0.339
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/index.cjs +25 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +192 -180
- package/dist/index.d.ts +192 -180
- package/dist/index.js +25 -2
- package/dist/index.js.map +1 -1
- package/package.json +15 -15
package/dist/index.cjs
CHANGED
|
@@ -8714,6 +8714,29 @@ function PlayIcon({ stroke, strokeWidth, fill, size = "base",...rest }) {
|
|
|
8714
8714
|
})));
|
|
8715
8715
|
}
|
|
8716
8716
|
|
|
8717
|
+
//#endregion
|
|
8718
|
+
//#region src/DesignTokens/Icons/MediaControl/ScreenShareIcon.tsx
|
|
8719
|
+
function ScreenShareIcon({ stroke, strokeWidth, fill, size = "base",...rest }) {
|
|
8720
|
+
return /* @__PURE__ */ react.default.createElement(__mui_material.SvgIcon, {
|
|
8721
|
+
strokeWidth: strokeWidth ?? .1,
|
|
8722
|
+
stroke: stroke ? stroke : "currentColor",
|
|
8723
|
+
sx: {
|
|
8724
|
+
height: getIconSize(size),
|
|
8725
|
+
width: getIconSize(size)
|
|
8726
|
+
},
|
|
8727
|
+
...rest
|
|
8728
|
+
}, /* @__PURE__ */ react.default.createElement("svg", {
|
|
8729
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8730
|
+
width: "16",
|
|
8731
|
+
height: "14",
|
|
8732
|
+
viewBox: "0 0 16 14",
|
|
8733
|
+
fill: "none"
|
|
8734
|
+
}, /* @__PURE__ */ react.default.createElement("path", {
|
|
8735
|
+
d: "M14.8086 0C15.4665 6.86031e-05 15.9999 0.535369 16 1.19531V10.0732C16 10.7332 15.4666 11.2685 14.8086 11.2686H8.85156V12.9756H11.4043C11.6863 12.9756 11.915 13.2054 11.915 13.4883C11.915 13.7711 11.6863 14 11.4043 14H5.27637C4.99455 13.9998 4.76571 13.771 4.76562 13.4883C4.76562 13.2055 4.9945 12.9758 5.27637 12.9756H7.83008V11.2686H1.19141C0.533404 11.2685 0 10.7333 0 10.0732V1.19531C7.26748e-05 0.535353 0.533448 4.3162e-05 1.19141 0H14.8086ZM1.19141 1.02441C1.09748 1.02446 1.02156 1.10111 1.02148 1.19531V10.0732C1.02148 10.1675 1.09744 10.2441 1.19141 10.2441H14.8086C14.9025 10.2441 14.9785 10.1675 14.9785 10.0732V1.19531C14.9784 1.10112 14.9025 1.02448 14.8086 1.02441H1.19141ZM8.34082 2.15137C8.45827 2.15149 8.57 2.20247 8.64746 2.29102L11.0303 5.02246C11.1788 5.19267 11.1627 5.4525 10.9932 5.60156C10.8447 5.73186 10.6278 5.73521 10.4766 5.62012L10.416 5.56348L8.74902 3.65137V8.70801C8.74883 8.934 8.56611 9.11695 8.34082 9.11719C8.11533 9.11719 7.93184 8.93414 7.93164 8.70801V3.65137L6.26465 5.56348C6.11612 5.73319 5.8581 5.75009 5.68848 5.60156C5.51895 5.45251 5.50191 5.19268 5.65039 5.02246L8.03223 2.29102L8.09668 2.23145C8.16642 2.17964 8.25252 2.15137 8.34082 2.15137Z",
|
|
8736
|
+
fill: "#26292E"
|
|
8737
|
+
})));
|
|
8738
|
+
}
|
|
8739
|
+
|
|
8717
8740
|
//#endregion
|
|
8718
8741
|
//#region src/DesignTokens/Icons/MediaControl/PlayFillIcon.tsx
|
|
8719
8742
|
function PlayFillIcon({ stroke, strokeWidth, fill, size = "base",...rest }) {
|
|
@@ -76643,7 +76666,7 @@ const TextInput = (0, react.forwardRef)((props$1, ref) => {
|
|
|
76643
76666
|
placeholder: `${placeholder}`,
|
|
76644
76667
|
name,
|
|
76645
76668
|
type: type ?? "text",
|
|
76646
|
-
value: value ? value : "",
|
|
76669
|
+
value: value != null ? String(value) : "",
|
|
76647
76670
|
disabled,
|
|
76648
76671
|
required,
|
|
76649
76672
|
error,
|
|
@@ -77045,6 +77068,7 @@ exports.RoleIcon = RoleIcon;
|
|
|
77045
77068
|
exports.SadInterviewee = SadInterviewee;
|
|
77046
77069
|
exports.Scenario = Scenario;
|
|
77047
77070
|
exports.ScheduleTasks = ScheduleTasks;
|
|
77071
|
+
exports.ScreenShareIcon = ScreenShareIcon;
|
|
77048
77072
|
exports.Search = Search;
|
|
77049
77073
|
exports.SearchCircledIcon = SearchCircledIcon;
|
|
77050
77074
|
exports.SearchIcon = SearchIcon;
|