@loadsmart/miranda-react 3.11.0 → 3.12.1
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.d.ts +28 -10
- package/dist/index.js +24 -4
- package/dist/tokens.d.ts +8 -8
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -81,6 +81,8 @@ import { TableSize } from '@loadsmart/miranda-wc';
|
|
|
81
81
|
import { TableSortDirection } from '@loadsmart/miranda-wc';
|
|
82
82
|
import { TableV2Size } from '@loadsmart/miranda-wc';
|
|
83
83
|
import { TableV2SortDirection } from '@loadsmart/miranda-wc';
|
|
84
|
+
import { TagExpand as TagExpand_2 } from '@loadsmart/miranda-wc';
|
|
85
|
+
import { TagRemove as TagRemove_2 } from '@loadsmart/miranda-wc';
|
|
84
86
|
import { TagSize } from '@loadsmart/miranda-wc';
|
|
85
87
|
import { TagVariant } from '@loadsmart/miranda-wc';
|
|
86
88
|
import { TimelineItemVariant } from '@loadsmart/miranda-wc';
|
|
@@ -1158,12 +1160,26 @@ onTabChange: EventName<CustomEvent<TabChangeEventDetail>>;
|
|
|
1158
1160
|
|
|
1159
1161
|
export declare type TabsProps = ComponentProps<typeof Tabs>;
|
|
1160
1162
|
|
|
1161
|
-
export declare const Tag: default_2.ForwardRefExoticComponent<
|
|
1163
|
+
export declare const Tag: default_2.ForwardRefExoticComponent<TagProps & default_2.RefAttributes<WCTag>> & {
|
|
1164
|
+
Remove: typeof TagRemove;
|
|
1165
|
+
Expand: typeof TagExpand;
|
|
1166
|
+
};
|
|
1167
|
+
|
|
1168
|
+
export declare const TagExpand: ReactWebComponent<TagExpand_2, {}>;
|
|
1169
|
+
|
|
1170
|
+
export declare type TagExpandProps = ComponentProps<typeof TagExpand>;
|
|
1162
1171
|
|
|
1163
1172
|
export declare type TagProps = ComponentProps<typeof WiredTag> & {
|
|
1164
1173
|
leading?: ReactNode;
|
|
1174
|
+
trailing?: ReactNode;
|
|
1165
1175
|
};
|
|
1166
1176
|
|
|
1177
|
+
export declare const TagRemove: ReactWebComponent<TagRemove_2, {
|
|
1178
|
+
onClick: string;
|
|
1179
|
+
}>;
|
|
1180
|
+
|
|
1181
|
+
export declare type TagRemoveProps = ComponentProps<typeof TagRemove>;
|
|
1182
|
+
|
|
1167
1183
|
export { TagSize }
|
|
1168
1184
|
|
|
1169
1185
|
export { TagVariant }
|
|
@@ -1720,7 +1736,9 @@ declare const WiredSideNavigationItem: ReactWebComponent<WCSideNavigationItem, {
|
|
|
1720
1736
|
|
|
1721
1737
|
declare const WiredTab: ReactWebComponent<WCTab, {}>;
|
|
1722
1738
|
|
|
1723
|
-
declare const WiredTag: ReactWebComponent<WCTag, {
|
|
1739
|
+
declare const WiredTag: ReactWebComponent<WCTag, {
|
|
1740
|
+
onChange: EventName<MirandaChangeEvent<WCTag>>;
|
|
1741
|
+
}>;
|
|
1724
1742
|
|
|
1725
1743
|
declare const WiredTextArea: ReactWebComponent<WCTextArea, {
|
|
1726
1744
|
onInput: EventName<MirandaChangeEvent<WCTextArea>>;
|
|
@@ -1791,25 +1809,25 @@ declare module 'react' {
|
|
|
1791
1809
|
'--m-table-border-top-right-radius'?: string;
|
|
1792
1810
|
'--m-table-border-bottom-left-radius'?: string;
|
|
1793
1811
|
'--m-table-border-bottom-right-radius'?: string;
|
|
1812
|
+
'--m-table-border-width'?: string;
|
|
1794
1813
|
}
|
|
1795
1814
|
}
|
|
1796
1815
|
|
|
1797
1816
|
|
|
1798
1817
|
declare module 'react' {
|
|
1799
1818
|
interface CSSProperties {
|
|
1800
|
-
'--m-
|
|
1801
|
-
'--m-
|
|
1802
|
-
'--m-table-border-top-right-radius'?: string;
|
|
1803
|
-
'--m-table-border-bottom-left-radius'?: string;
|
|
1804
|
-
'--m-table-border-bottom-right-radius'?: string;
|
|
1805
|
-
'--m-table-border-width'?: string;
|
|
1819
|
+
'--m-text-display'?: string;
|
|
1820
|
+
'--m-text-max-width'?: string;
|
|
1806
1821
|
}
|
|
1807
1822
|
}
|
|
1808
1823
|
|
|
1809
1824
|
|
|
1810
1825
|
declare module 'react' {
|
|
1811
1826
|
interface CSSProperties {
|
|
1812
|
-
'--m-
|
|
1813
|
-
'--m-
|
|
1827
|
+
'--m-table-border-radius'?: string;
|
|
1828
|
+
'--m-table-border-top-left-radius'?: string;
|
|
1829
|
+
'--m-table-border-top-right-radius'?: string;
|
|
1830
|
+
'--m-table-border-bottom-left-radius'?: string;
|
|
1831
|
+
'--m-table-border-bottom-right-radius'?: string;
|
|
1814
1832
|
}
|
|
1815
1833
|
}
|
package/dist/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AccordionTitle as AccordionTitle$1, AccordionContent as AccordionContent$1, Accordion as Accordion$1, BackButton as BackButton$1, Badge as Badge$1, BannerActionPrimary as BannerActionPrimary$1, BannerActions as BannerActions$1, BannerActionSecondary as BannerActionSecondary$1, BannerDescription as BannerDescription$1, BannerIcon as BannerIcon$1, BannerTitle as BannerTitle$1, Banner as Banner$1, Button as Button$1, CardTitle as CardTitle$1, CardSubtitle as CardSubtitle$1, CardBody as CardBody$1, CardDivider as CardDivider$1, CardActionPrimary as CardActionPrimary$1, CardActionSecondary as CardActionSecondary$1, CardActionTertiary as CardActionTertiary$1, CardFooter as CardFooter$1, Card as Card$1, Checkbox as Checkbox$1, DialogActionPrimary as DialogActionPrimary$1, DialogActionSecondary as DialogActionSecondary$1, DialogActionTertiary as DialogActionTertiary$1, DialogActions as DialogActions$1, DialogBody as DialogBody$1, DialogClose as DialogClose$1, DialogFooter as DialogFooter$1, DialogHeader as DialogHeader$1, Dialog as Dialog$1, Divider as Divider$1, DrawerActionPrimary as DrawerActionPrimary$1, DrawerActionSecondary as DrawerActionSecondary$1, DrawerActionTertiary as DrawerActionTertiary$1, DrawerActions as DrawerActions$1, DrawerBody as DrawerBody$1, DrawerClose as DrawerClose$1, DrawerHeader as DrawerHeader$1, Drawer as Drawer$1, DropdownItem as DropdownItem$1, DropdownDivider as DropdownDivider$1, DropdownMenu as DropdownMenu$1, DropdownTrigger as DropdownTrigger$1, Dropdown as Dropdown$1, EmptyStateIllustration as EmptyStateIllustration$1, EmptyStateHeader as EmptyStateHeader$1, EmptyStateMessage as EmptyStateMessage$1, EmptyStateAction as EmptyStateAction$1, EmptyState as EmptyState$1, FieldLabel as FieldLabel$1, FieldHint as FieldHint$1, Field as Field$1, HeaderActions as HeaderActions$1, HeaderContent as HeaderContent$1, HeaderTitle as HeaderTitle$1, SubHeader as SubHeader$1, HeaderTabs as HeaderTabs$1, Header as Header$1, Icon as Icon$1, LabeledValueLabel as LabeledValueLabel$1, LabeledValueValue as LabeledValueValue$1, LabeledValue as LabeledValue$1, Box as Box$1, Group as Group$1, Stack as Stack$1, Grid as Grid$1, Sidebar as Sidebar$1, Switcher as Switcher$1, Container as Container$1, Row as Row$1, Column as Column$1, Link as Link$1, Body as Body$1, PageContent as PageContent$1, Pagination as Pagination$1, ProgressBar as ProgressBar$1, ProgressBarCountdown as ProgressBarCountdown$1, Radio as Radio$1, RadioGroup as RadioGroup$1, SectionTitle as SectionTitle$1, Section as Section$1, SelectOption as SelectOption$1, Select as Select$1, SideNavigationBody as SideNavigationBody$1, SideNavigationDivider as SideNavigationDivider$1, SideNavigationFooter as SideNavigationFooter$1, SideNavigationHeader as SideNavigationHeader$1, SideNavigationItem as SideNavigationItem$1, SideNavigationSubNav as SideNavigationSubNav$1, SideNavigationSubNavContent as SideNavigationSubNavContent$1, SideNavigationSubNavItem as SideNavigationSubNavItem$1, SideNavigationSubNavTitle as SideNavigationSubNavTitle$1, SideNavigation as SideNavigation$1, SpinnerWheel as SpinnerWheel$1, Step as Step$1, Steps as Steps$1, Switch as Switch$1, TableHead as TableHead$2, TableBody as TableBody$2, TableFoot as TableFoot$2, TableRow as TableRow$2, TableCell as TableCell$2, TableToolbar as TableToolbar$1, TableHeadCell as TableHeadCell$2, TableFeedback as TableFeedback$1, TableActions as TableActions$1, TableSelectionCell as TableSelectionCell$1, Table as Table$2, TableHeadV2, TableBodyV2, TableFootV2, TableRowV2, TableCellV2, TableHeadCellV2, TableRowSelectV2, TableRowExpandV2, TableV2, TableLayoutToolbar as TableLayoutToolbar$1, TableLayoutFeedback as TableLayoutFeedback$1, TableLayoutActions as TableLayoutActions$1, TableLayout as TableLayout$1, Tab as Tab$1, TabPanel as TabPanel$1, Tabs as Tabs$1, Tag as Tag$1, ActionableTag as ActionableTag$1, Text as Text$1, TextArea as TextArea$1, TextField as TextField$1, TimelineItem as TimelineItem$1, TimelineExpandableItem as TimelineExpandableItem$1, TimelineItemBody as TimelineItemBody$1, TimelineItemFooter as TimelineItemFooter$1, TimelineItemHeader as TimelineItemHeader$1, TimelineItemHeaderSubtitle as TimelineItemHeaderSubtitle$1, TimelineItemHeaderTitle as TimelineItemHeaderTitle$1, TimelineItemIcon as TimelineItemIcon$1, Timeline as Timeline$1, Toggle as Toggle$1, ToggleGroup as ToggleGroup$1, Tooltip as Tooltip$1, TopNavigationActions as TopNavigationActions$1, TopNavigationItem as TopNavigationItem$1, TopNavigation as TopNavigation$1, LogoLoader as LogoLoader$1, DotsLoader as DotsLoader$1, FileItem, FilePicker as FilePicker$1 } from "@loadsmart/miranda-wc";
|
|
1
|
+
import { AccordionTitle as AccordionTitle$1, AccordionContent as AccordionContent$1, Accordion as Accordion$1, BackButton as BackButton$1, Badge as Badge$1, BannerActionPrimary as BannerActionPrimary$1, BannerActions as BannerActions$1, BannerActionSecondary as BannerActionSecondary$1, BannerDescription as BannerDescription$1, BannerIcon as BannerIcon$1, BannerTitle as BannerTitle$1, Banner as Banner$1, Button as Button$1, CardTitle as CardTitle$1, CardSubtitle as CardSubtitle$1, CardBody as CardBody$1, CardDivider as CardDivider$1, CardActionPrimary as CardActionPrimary$1, CardActionSecondary as CardActionSecondary$1, CardActionTertiary as CardActionTertiary$1, CardFooter as CardFooter$1, Card as Card$1, Checkbox as Checkbox$1, DialogActionPrimary as DialogActionPrimary$1, DialogActionSecondary as DialogActionSecondary$1, DialogActionTertiary as DialogActionTertiary$1, DialogActions as DialogActions$1, DialogBody as DialogBody$1, DialogClose as DialogClose$1, DialogFooter as DialogFooter$1, DialogHeader as DialogHeader$1, Dialog as Dialog$1, Divider as Divider$1, DrawerActionPrimary as DrawerActionPrimary$1, DrawerActionSecondary as DrawerActionSecondary$1, DrawerActionTertiary as DrawerActionTertiary$1, DrawerActions as DrawerActions$1, DrawerBody as DrawerBody$1, DrawerClose as DrawerClose$1, DrawerHeader as DrawerHeader$1, Drawer as Drawer$1, DropdownItem as DropdownItem$1, DropdownDivider as DropdownDivider$1, DropdownMenu as DropdownMenu$1, DropdownTrigger as DropdownTrigger$1, Dropdown as Dropdown$1, EmptyStateIllustration as EmptyStateIllustration$1, EmptyStateHeader as EmptyStateHeader$1, EmptyStateMessage as EmptyStateMessage$1, EmptyStateAction as EmptyStateAction$1, EmptyState as EmptyState$1, FieldLabel as FieldLabel$1, FieldHint as FieldHint$1, Field as Field$1, HeaderActions as HeaderActions$1, HeaderContent as HeaderContent$1, HeaderTitle as HeaderTitle$1, SubHeader as SubHeader$1, HeaderTabs as HeaderTabs$1, Header as Header$1, Icon as Icon$1, LabeledValueLabel as LabeledValueLabel$1, LabeledValueValue as LabeledValueValue$1, LabeledValue as LabeledValue$1, Box as Box$1, Group as Group$1, Stack as Stack$1, Grid as Grid$1, Sidebar as Sidebar$1, Switcher as Switcher$1, Container as Container$1, Row as Row$1, Column as Column$1, Link as Link$1, Body as Body$1, PageContent as PageContent$1, Pagination as Pagination$1, ProgressBar as ProgressBar$1, ProgressBarCountdown as ProgressBarCountdown$1, Radio as Radio$1, RadioGroup as RadioGroup$1, SectionTitle as SectionTitle$1, Section as Section$1, SelectOption as SelectOption$1, Select as Select$1, SideNavigationBody as SideNavigationBody$1, SideNavigationDivider as SideNavigationDivider$1, SideNavigationFooter as SideNavigationFooter$1, SideNavigationHeader as SideNavigationHeader$1, SideNavigationItem as SideNavigationItem$1, SideNavigationSubNav as SideNavigationSubNav$1, SideNavigationSubNavContent as SideNavigationSubNavContent$1, SideNavigationSubNavItem as SideNavigationSubNavItem$1, SideNavigationSubNavTitle as SideNavigationSubNavTitle$1, SideNavigation as SideNavigation$1, SpinnerWheel as SpinnerWheel$1, Step as Step$1, Steps as Steps$1, Switch as Switch$1, TableHead as TableHead$2, TableBody as TableBody$2, TableFoot as TableFoot$2, TableRow as TableRow$2, TableCell as TableCell$2, TableToolbar as TableToolbar$1, TableHeadCell as TableHeadCell$2, TableFeedback as TableFeedback$1, TableActions as TableActions$1, TableSelectionCell as TableSelectionCell$1, Table as Table$2, TableHeadV2, TableBodyV2, TableFootV2, TableRowV2, TableCellV2, TableHeadCellV2, TableRowSelectV2, TableRowExpandV2, TableV2, TableLayoutToolbar as TableLayoutToolbar$1, TableLayoutFeedback as TableLayoutFeedback$1, TableLayoutActions as TableLayoutActions$1, TableLayout as TableLayout$1, Tab as Tab$1, TabPanel as TabPanel$1, Tabs as Tabs$1, TagRemove as TagRemove$1, TagExpand as TagExpand$1, Tag as Tag$1, ActionableTag as ActionableTag$1, Text as Text$1, TextArea as TextArea$1, TextField as TextField$1, TimelineItem as TimelineItem$1, TimelineExpandableItem as TimelineExpandableItem$1, TimelineItemBody as TimelineItemBody$1, TimelineItemFooter as TimelineItemFooter$1, TimelineItemHeader as TimelineItemHeader$1, TimelineItemHeaderSubtitle as TimelineItemHeaderSubtitle$1, TimelineItemHeaderTitle as TimelineItemHeaderTitle$1, TimelineItemIcon as TimelineItemIcon$1, Timeline as Timeline$1, Toggle as Toggle$1, ToggleGroup as ToggleGroup$1, Tooltip as Tooltip$1, TopNavigationActions as TopNavigationActions$1, TopNavigationItem as TopNavigationItem$1, TopNavigation as TopNavigation$1, LogoLoader as LogoLoader$1, DotsLoader as DotsLoader$1, FileItem, FilePicker as FilePicker$1 } from "@loadsmart/miranda-wc";
|
|
2
2
|
import { DIALOG_SIZES, DIALOG_VARIANTS, DRAWER_SIZES, EMPTY_STATE_VARIANTS, Accordion, AccordionContent, AccordionTitle, ActionableTag, BackButton, Badge, Banner, BannerActionPrimary, BannerActionSecondary, BannerActions, BannerDescription, BannerIcon, BannerTitle, Body, Box, Button, Card, CardActionPrimary, CardActionSecondary, CardActionTertiary, CardBody, CardDivider, CardFooter, CardSubtitle, CardTitle, CaretButton, Checkbox, CloseButton, Column, Container, Dialog, DialogActionPrimary, DialogActionSecondary, DialogActionTertiary, DialogActions, DialogBody, DialogClose, DialogFooter, DialogHeader, Divider, Drawer, DrawerActionPrimary, DrawerActionSecondary, DrawerActionTertiary, DrawerActions, DrawerBody, DrawerClose, DrawerHeader, Dropdown, DropdownItem, DropdownMenu, DropdownTrigger, EmptyState, EmptyStateAction, EmptyStateHeader, EmptyStateIllustration, EmptyStateMessage, Field, FieldHint, FieldLabel, FilePicker, Grid, Group, Header, HeaderActions, HeaderContent, HeaderTitle, Icon, Label, LabeledValue, LabeledValueLabel, LabeledValueValue, Link, LogoLoader, PageContent, Pagination, ProgressBar, ProgressBarCountdown, Radio, RadioGroup, Row, Section, SectionTitle, Select, SelectOption, SideNavigation, SideNavigationBody, SideNavigationDivider, SideNavigationFooter, SideNavigationHeader, SideNavigationItem, SideNavigationSubNav, SideNavigationSubNavContent, SideNavigationSubNavItem, SideNavigationSubNavTitle, Sidebar, SpinnerWheel, Stack, Step, Steps, SubHeader, Switch, Switcher, Tab, TabPanel, Table, TableActions, TableBody, TableCell, TableFeedback, TableFoot, TableHead, TableHeadCell, TableRow, TableToolbar, TableV2 as TableV22, Tabs, Tag, Text, TextArea, TextField, Timeline, TimelineExpandableItem, TimelineItem, TimelineItemBody, TimelineItemFooter, TimelineItemHeader, TimelineItemHeaderSubtitle, TimelineItemHeaderTitle, TimelineItemIcon, Toggle, ToggleGroup, Tooltip } from "@loadsmart/miranda-wc";
|
|
3
3
|
import * as React from "react";
|
|
4
4
|
import React__default, { forwardRef, useState, useCallback, Children, isValidElement, cloneElement } from "react";
|
|
@@ -1112,16 +1112,34 @@ const Tabs2 = createComponent({
|
|
|
1112
1112
|
Panel: TabPanel2
|
|
1113
1113
|
}
|
|
1114
1114
|
});
|
|
1115
|
+
const TagRemove = createComponent({
|
|
1116
|
+
tagName: "m-tag-remove",
|
|
1117
|
+
elementClass: TagRemove$1,
|
|
1118
|
+
displayName: "TagRemove",
|
|
1119
|
+
events: {
|
|
1120
|
+
onClick: "click"
|
|
1121
|
+
}
|
|
1122
|
+
});
|
|
1123
|
+
const TagExpand = createComponent({
|
|
1124
|
+
tagName: "m-tag-expand",
|
|
1125
|
+
elementClass: TagExpand$1,
|
|
1126
|
+
displayName: "TagExpand"
|
|
1127
|
+
});
|
|
1115
1128
|
const WiredTag = createComponent({
|
|
1116
1129
|
tagName: "m-tag",
|
|
1117
1130
|
elementClass: Tag$1,
|
|
1118
|
-
displayName: "Tag"
|
|
1131
|
+
displayName: "Tag",
|
|
1132
|
+
events: {
|
|
1133
|
+
onChange: "change"
|
|
1134
|
+
}
|
|
1119
1135
|
});
|
|
1120
1136
|
const SLOTTED_STYLE$1 = { display: "contents" };
|
|
1121
1137
|
const Tag2 = forwardRef((props, ref) => {
|
|
1122
|
-
const { leading, children, ...rest } = props;
|
|
1123
|
-
return /* @__PURE__ */ React__default.createElement(WiredTag, { ...rest, ref }, leading != null && /* @__PURE__ */ React__default.createElement("span", { style: SLOTTED_STYLE$1, slot: "leading" }, leading), children);
|
|
1138
|
+
const { leading, trailing, children, ...rest } = props;
|
|
1139
|
+
return /* @__PURE__ */ React__default.createElement(WiredTag, { ...rest, ref }, leading != null && /* @__PURE__ */ React__default.createElement("span", { style: SLOTTED_STYLE$1, slot: "leading" }, leading), children, trailing != null && /* @__PURE__ */ React__default.createElement("span", { style: SLOTTED_STYLE$1, slot: "trailing" }, trailing));
|
|
1124
1140
|
});
|
|
1141
|
+
Tag2.Remove = TagRemove;
|
|
1142
|
+
Tag2.Expand = TagExpand;
|
|
1125
1143
|
const WiredActionableTag = createComponent({
|
|
1126
1144
|
tagName: "m-actionable-tag",
|
|
1127
1145
|
elementClass: ActionableTag$1,
|
|
@@ -1447,6 +1465,8 @@ export {
|
|
|
1447
1465
|
Table2 as TableV2,
|
|
1448
1466
|
Tabs2 as Tabs,
|
|
1449
1467
|
Tag2 as Tag,
|
|
1468
|
+
TagExpand,
|
|
1469
|
+
TagRemove,
|
|
1450
1470
|
Text2 as Text,
|
|
1451
1471
|
TextArea2 as TextArea,
|
|
1452
1472
|
TextField2 as TextField,
|
package/dist/tokens.d.ts
CHANGED
|
@@ -52,25 +52,25 @@ declare module 'react' {
|
|
|
52
52
|
'--m-table-border-top-right-radius'?: string;
|
|
53
53
|
'--m-table-border-bottom-left-radius'?: string;
|
|
54
54
|
'--m-table-border-bottom-right-radius'?: string;
|
|
55
|
+
'--m-table-border-width'?: string;
|
|
55
56
|
}
|
|
56
57
|
}
|
|
57
58
|
|
|
58
59
|
|
|
59
60
|
declare module 'react' {
|
|
60
61
|
interface CSSProperties {
|
|
61
|
-
'--m-
|
|
62
|
-
'--m-
|
|
63
|
-
'--m-table-border-top-right-radius'?: string;
|
|
64
|
-
'--m-table-border-bottom-left-radius'?: string;
|
|
65
|
-
'--m-table-border-bottom-right-radius'?: string;
|
|
66
|
-
'--m-table-border-width'?: string;
|
|
62
|
+
'--m-text-display'?: string;
|
|
63
|
+
'--m-text-max-width'?: string;
|
|
67
64
|
}
|
|
68
65
|
}
|
|
69
66
|
|
|
70
67
|
|
|
71
68
|
declare module 'react' {
|
|
72
69
|
interface CSSProperties {
|
|
73
|
-
'--m-
|
|
74
|
-
'--m-
|
|
70
|
+
'--m-table-border-radius'?: string;
|
|
71
|
+
'--m-table-border-top-left-radius'?: string;
|
|
72
|
+
'--m-table-border-top-right-radius'?: string;
|
|
73
|
+
'--m-table-border-bottom-left-radius'?: string;
|
|
74
|
+
'--m-table-border-bottom-right-radius'?: string;
|
|
75
75
|
}
|
|
76
76
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@loadsmart/miranda-react",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.12.1",
|
|
4
4
|
"description": "React component library based on Miranda Web Components",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -49,8 +49,8 @@
|
|
|
49
49
|
"dependencies": {
|
|
50
50
|
"@figma/code-connect": "^1.3.3",
|
|
51
51
|
"@lit/react": "^1.0.5",
|
|
52
|
-
"@loadsmart/miranda-tokens": "4.
|
|
53
|
-
"@loadsmart/miranda-wc": "3.
|
|
52
|
+
"@loadsmart/miranda-tokens": "4.12.1",
|
|
53
|
+
"@loadsmart/miranda-wc": "3.12.1",
|
|
54
54
|
"react-is": "^18.3.1"
|
|
55
55
|
},
|
|
56
56
|
"directories": {
|