@momentum-design/components 0.121.4 → 0.121.6
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/browser/index.js +103 -99
- package/dist/browser/index.js.map +3 -3
- package/dist/components/accordion/accordion.component.d.ts +8 -0
- package/dist/components/accordion/accordion.component.js +10 -2
- package/dist/components/input/input.styles.js +8 -4
- package/dist/components/password/password.component.js +2 -2
- package/dist/components/textarea/textarea.types.d.ts +11 -6
- package/dist/custom-elements.json +685 -647
- package/dist/index.d.ts +2 -1
- package/dist/react/index.d.ts +2 -2
- package/dist/react/index.js +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -96,9 +96,10 @@ import type { MenuSectionChangeEvent } from './components/menusection/menusectio
|
|
|
96
96
|
import type { SliderChangeEvent } from './components/slider/slider.types';
|
|
97
97
|
import type { InputInputEvent, InputChangeEvent, InputFocusEvent, InputBlurEvent, InputClearEvent } from './components/input/input.types';
|
|
98
98
|
import type { VirtualizedListScrollEvent } from './components/virtualizedlist/virtualizedlist.types';
|
|
99
|
+
import type { TextareaInputEvent, TextareaChangeEvent, TextareaFocusEvent, TextareaBlurEvent, TextareaLimitExceededEvent } from './components/textarea/textarea.types';
|
|
99
100
|
import { BUTTON_COLORS, BUTTON_VARIANTS, ICON_BUTTON_SIZES, PILL_BUTTON_SIZES } from './components/button/button.constants';
|
|
100
101
|
import { SKELETON_VARIANTS } from './components/skeleton/skeleton.constants';
|
|
101
102
|
import { inMemoryCache, webAPIAssetsCache } from './utils/assets-cache';
|
|
102
103
|
export { Accordion, AccordionButton, AccordionGroup, AlertChip, Animation, AnnouncementDialog, Appheader, Avatar, AvatarButton, Badge, Brandvisual, Bullet, Button, ButtonGroup, ButtonLink, Card, CardButton, CardCheckbox, CardRadio, Checkbox, Chip, Coachmark, ControlTypeProvider, Dialog, Divider, FilterChip, FormfieldGroup, Icon, IconProvider, Illustration, IllustrationProvider, Input, InputChip, Link, LinkButton, Linksimple, List, Listheader, ListItem, Marker, MenuBar, MenuItem, MenuItemCheckbox, MenuItemRadio, MenuPopover, MenuSection, NavMenuItem, OptGroup, Option, Password, Popover, Presence, Progressbar, Progressspinner, Radio, RadioGroup, ScreenreaderAnnouncer, Searchfield, Select, SelectListbox, SideNavigation, Skeleton, Spinner, StaticChip, StaticCheckbox, StaticRadio, StaticToggle, Stepper, StepperConnector, StepperItem, Tab, TabList, Text, Textarea, ThemeProvider, Toast, Toggle, Typewriter, ToggleTip, Tooltip, VirtualizedList, Combobox, Slider, ListBox, Banner, };
|
|
103
|
-
export type { BadgeType, ButtonColor, ButtonVariant, IconButtonSize, MenuPopoverActionEvent, MenuPopoverChangeEvent, MenuSectionChangeEvent, PillButtonSize, PopoverPlacement, SkeletonVariant, SelectChangeEvent, SelectInputEvent, SpinnerSize, SpinnerVariant, SliderChangeEvent, TextType, TypewriterType, InputInputEvent, InputChangeEvent, InputFocusEvent, InputBlurEvent, InputClearEvent, VirtualizedListScrollEvent, };
|
|
104
|
+
export type { BadgeType, ButtonColor, ButtonVariant, IconButtonSize, MenuPopoverActionEvent, MenuPopoverChangeEvent, MenuSectionChangeEvent, PillButtonSize, PopoverPlacement, SkeletonVariant, SelectChangeEvent, SelectInputEvent, SpinnerSize, SpinnerVariant, SliderChangeEvent, TextType, TypewriterType, InputInputEvent, InputChangeEvent, InputFocusEvent, InputBlurEvent, InputClearEvent, VirtualizedListScrollEvent, TextareaInputEvent, TextareaChangeEvent, TextareaFocusEvent, TextareaBlurEvent, TextareaLimitExceededEvent, };
|
|
104
105
|
export { BUTTON_COLORS, BUTTON_VARIANTS, ICON_BUTTON_SIZES, inMemoryCache, PILL_BUTTON_SIZES, SKELETON_VARIANTS, webAPIAssetsCache, };
|
package/dist/react/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export { default as Accordion } from './accordion';
|
|
2
|
+
export { default as AccordionButton } from './accordionbutton';
|
|
2
3
|
export { default as AccordionGroup } from './accordiongroup';
|
|
3
4
|
export { default as AlertChip } from './alertchip';
|
|
4
|
-
export { default as AccordionButton } from './accordionbutton';
|
|
5
5
|
export { default as Animation } from './animation';
|
|
6
6
|
export { default as AnnouncementDialog } from './announcementdialog';
|
|
7
7
|
export { default as Appheader } from './appheader';
|
|
@@ -73,8 +73,8 @@ export { default as StaticRadio } from './staticradio';
|
|
|
73
73
|
export { default as StaticToggle } from './statictoggle';
|
|
74
74
|
export { default as Stepper } from './stepper';
|
|
75
75
|
export { default as StepperConnector } from './stepperconnector';
|
|
76
|
-
export { default as Tab } from './tab';
|
|
77
76
|
export { default as StepperItem } from './stepperitem';
|
|
77
|
+
export { default as Tab } from './tab';
|
|
78
78
|
export { default as TabList } from './tablist';
|
|
79
79
|
export { default as Text } from './text';
|
|
80
80
|
export { default as Textarea } from './textarea';
|
package/dist/react/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export { default as Accordion } from './accordion';
|
|
2
|
+
export { default as AccordionButton } from './accordionbutton';
|
|
2
3
|
export { default as AccordionGroup } from './accordiongroup';
|
|
3
4
|
export { default as AlertChip } from './alertchip';
|
|
4
|
-
export { default as AccordionButton } from './accordionbutton';
|
|
5
5
|
export { default as Animation } from './animation';
|
|
6
6
|
export { default as AnnouncementDialog } from './announcementdialog';
|
|
7
7
|
export { default as Appheader } from './appheader';
|
|
@@ -73,8 +73,8 @@ export { default as StaticRadio } from './staticradio';
|
|
|
73
73
|
export { default as StaticToggle } from './statictoggle';
|
|
74
74
|
export { default as Stepper } from './stepper';
|
|
75
75
|
export { default as StepperConnector } from './stepperconnector';
|
|
76
|
-
export { default as Tab } from './tab';
|
|
77
76
|
export { default as StepperItem } from './stepperitem';
|
|
77
|
+
export { default as Tab } from './tab';
|
|
78
78
|
export { default as TabList } from './tablist';
|
|
79
79
|
export { default as Text } from './text';
|
|
80
80
|
export { default as Textarea } from './textarea';
|