@momentum-design/components 0.121.3 → 0.121.5
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 +97 -97
- 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/slider/slider.component.d.ts +4 -0
- package/dist/components/slider/slider.component.js +9 -1
- package/dist/components/slider/slider.types.d.ts +1 -1
- package/dist/custom-elements.json +287 -233
- package/dist/index.d.ts +2 -1
- package/dist/react/index.d.ts +1 -1
- package/dist/react/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -93,11 +93,12 @@ import type { TextType as TypewriterType } from './components/typewriter/typewri
|
|
|
93
93
|
import type { MenuPopoverActionEvent, MenuPopoverChangeEvent } from './components/menupopover/menupopover.types';
|
|
94
94
|
import type { SelectChangeEvent, SelectInputEvent } from './components/select/select.types';
|
|
95
95
|
import type { MenuSectionChangeEvent } from './components/menusection/menusection.types';
|
|
96
|
+
import type { SliderChangeEvent } from './components/slider/slider.types';
|
|
96
97
|
import type { InputInputEvent, InputChangeEvent, InputFocusEvent, InputBlurEvent, InputClearEvent } from './components/input/input.types';
|
|
97
98
|
import type { VirtualizedListScrollEvent } from './components/virtualizedlist/virtualizedlist.types';
|
|
98
99
|
import { BUTTON_COLORS, BUTTON_VARIANTS, ICON_BUTTON_SIZES, PILL_BUTTON_SIZES } from './components/button/button.constants';
|
|
99
100
|
import { SKELETON_VARIANTS } from './components/skeleton/skeleton.constants';
|
|
100
101
|
import { inMemoryCache, webAPIAssetsCache } from './utils/assets-cache';
|
|
101
102
|
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, };
|
|
102
|
-
export type { BadgeType, ButtonColor, ButtonVariant, IconButtonSize, MenuPopoverActionEvent, MenuPopoverChangeEvent, MenuSectionChangeEvent, PillButtonSize, PopoverPlacement, SkeletonVariant, SelectChangeEvent, SelectInputEvent, SpinnerSize, SpinnerVariant, TextType, TypewriterType, InputInputEvent, InputChangeEvent, InputFocusEvent, InputBlurEvent, InputClearEvent, VirtualizedListScrollEvent, };
|
|
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, };
|
|
103
104
|
export { BUTTON_COLORS, BUTTON_VARIANTS, ICON_BUTTON_SIZES, inMemoryCache, PILL_BUTTON_SIZES, SKELETON_VARIANTS, webAPIAssetsCache, };
|
package/dist/react/index.d.ts
CHANGED
|
@@ -38,10 +38,10 @@ export { default as InputChip } from './inputchip';
|
|
|
38
38
|
export { default as Link } from './link';
|
|
39
39
|
export { default as LinkButton } from './linkbutton';
|
|
40
40
|
export { default as Linksimple } from './linksimple';
|
|
41
|
+
export { default as List } from './list';
|
|
41
42
|
export { default as ListBox } from './listbox';
|
|
42
43
|
export { default as Listheader } from './listheader';
|
|
43
44
|
export { default as ListItem } from './listitem';
|
|
44
|
-
export { default as List } from './list';
|
|
45
45
|
export { default as Marker } from './marker';
|
|
46
46
|
export { default as MenuBar } from './menubar';
|
|
47
47
|
export { default as MenuItem } from './menuitem';
|
package/dist/react/index.js
CHANGED
|
@@ -38,10 +38,10 @@ export { default as InputChip } from './inputchip';
|
|
|
38
38
|
export { default as Link } from './link';
|
|
39
39
|
export { default as LinkButton } from './linkbutton';
|
|
40
40
|
export { default as Linksimple } from './linksimple';
|
|
41
|
+
export { default as List } from './list';
|
|
41
42
|
export { default as ListBox } from './listbox';
|
|
42
43
|
export { default as Listheader } from './listheader';
|
|
43
44
|
export { default as ListItem } from './listitem';
|
|
44
|
-
export { default as List } from './list';
|
|
45
45
|
export { default as Marker } from './marker';
|
|
46
46
|
export { default as MenuBar } from './menubar';
|
|
47
47
|
export { default as MenuItem } from './menuitem';
|