microboard-ui-temp 0.1.26 → 0.1.27
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.js +6 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -355497,7 +355497,8 @@ function GetCard({ cardPosition, rounded = "none" }) {
|
|
|
355497
355497
|
tooltipPosition: "top",
|
|
355498
355498
|
onClick: handleClick,
|
|
355499
355499
|
variant: "secondary",
|
|
355500
|
-
rounded
|
|
355500
|
+
rounded,
|
|
355501
|
+
hotkey: getHotkeyLabel(`getCard-${cardPosition}`)
|
|
355501
355502
|
}, /* @__PURE__ */ import_react282.default.createElement(Icon, {
|
|
355502
355503
|
iconName: "GetCard"
|
|
355503
355504
|
}));
|
|
@@ -355740,7 +355741,8 @@ function FlipDeck({ rounded = "none" }) {
|
|
|
355740
355741
|
tooltipPosition: "top",
|
|
355741
355742
|
onClick: handleClick,
|
|
355742
355743
|
variant: "secondary",
|
|
355743
|
-
rounded
|
|
355744
|
+
rounded,
|
|
355745
|
+
hotkey: getHotkeyLabel("flipDeck")
|
|
355744
355746
|
}, /* @__PURE__ */ import_react287.default.createElement(Icon, {
|
|
355745
355747
|
iconName: "RotateCard",
|
|
355746
355748
|
width: 24,
|
|
@@ -423666,7 +423668,7 @@ var MouseOrTrackpadModal = () => {
|
|
|
423666
423668
|
}
|
|
423667
423669
|
})), /* @__PURE__ */ import_react403.default.createElement("div", {
|
|
423668
423670
|
className: MouseOrTracpadModal_module_default.cardsGrid
|
|
423669
|
-
}, getCardsArray().map((card) => /* @__PURE__ */ import_react403.default.createElement(
|
|
423671
|
+
}, getCardsArray().map((card) => /* @__PURE__ */ import_react403.default.createElement(Card6, {
|
|
423670
423672
|
key: card.iconName,
|
|
423671
423673
|
iconName: card.iconName,
|
|
423672
423674
|
text: card.text,
|
|
@@ -423675,7 +423677,7 @@ var MouseOrTrackpadModal = () => {
|
|
|
423675
423677
|
onClick: setControlMode
|
|
423676
423678
|
}, t11("common.save"))));
|
|
423677
423679
|
};
|
|
423678
|
-
var
|
|
423680
|
+
var Card6 = ({ iconName, style: style3, text: text5 }) => {
|
|
423679
423681
|
return /* @__PURE__ */ import_react403.default.createElement("div", {
|
|
423680
423682
|
className: MouseOrTracpadModal_module_default.card,
|
|
423681
423683
|
style: style3
|