@rankingcoach/vanguard 1.4.2 → 1.5.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-Accordion2.js +1 -1
- package/dist/index-CalendarPicker.js +1 -1
- package/dist/index-DateInput.js +4 -4
- package/dist/index-DateRange.js +1 -1
- package/dist/index-DropdownMenu.js +1 -1
- package/dist/index-InputRangeField.js +1 -1
- package/dist/index-LoginButton.js +1 -1
- package/dist/index-Menu.js +43 -251
- package/dist/index-Menu.module.scss.js +7 -0
- package/dist/index-Menu2.js +254 -0
- package/dist/index-MenuItem.js +38 -237
- package/dist/index-MenuItem2.js +240 -0
- package/dist/index-Month.js +2 -2
- package/dist/index-MonthPicker.js +1 -1
- package/dist/index-Parser2.js +2 -3
- package/dist/index-SearchableSelect.js +1 -1
- package/dist/index-Select.js +1 -1
- package/dist/index-SelectInput2.js +2 -2
- package/dist/index-Tooltip.js +1 -1
- package/dist/index-YearPicker.js +1 -1
- package/dist/index-_virtual10.js +5 -3
- package/dist/index-_virtual11.js +5 -5
- package/dist/index-_virtual12.js +2 -5
- package/dist/index-_virtual18.js +7 -2
- package/dist/index-_virtual19.js +2 -7
- package/dist/index-_virtual69.js +2 -2
- package/dist/index-_virtual70.js +4 -2
- package/dist/index-_virtual71.js +2 -4
- package/dist/index-_virtual72.js +4 -2
- package/dist/index-_virtual73.js +1 -1
- package/dist/index-_virtual74.js +1 -1
- package/dist/index-_virtual75.js +2 -4
- package/dist/index-_virtual76.js +2 -2
- package/dist/index-_virtual9.js +3 -2
- package/dist/index-accessibility.js +1 -1
- package/dist/index-dist3.js +1 -1
- package/dist/index-http.store.js +1 -1
- package/dist/index-useAutocomplete.js +1 -1
- package/dist/index-useControlled.js +26 -2
- package/dist/index-useControlled2.js +2 -26
- package/dist/index-useSlider.js +1 -1
- package/dist/index-useViews.js +1 -1
- package/dist/index-video.es.js +2 -2
- package/dist/index.js +396 -392
- package/dist/types/core/Menu/Menu.d.ts +17 -0
- package/dist/types/core/Menu/index.d.ts +2 -0
- package/dist/types/core/MenuItem/MenuItem.d.ts +14 -0
- package/dist/types/core/MenuItem/index.d.ts +2 -0
- package/dist/types/index.d.ts +62 -58
- package/dist/vanguard-asset-analysis.json +1 -1
- package/dist/vanguard.css +1 -1
- package/dist-wordpress/vanguard.css +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { MenuProps as MuiMenuProps } from '@mui/material';
|
|
2
|
+
import { MenuItemProps } from '../MenuItem/MenuItem';
|
|
3
|
+
import { default as React } from 'react';
|
|
4
|
+
export type MenuItemConfig = MenuItemProps & {
|
|
5
|
+
key?: React.Key;
|
|
6
|
+
};
|
|
7
|
+
export type MenuProps = {
|
|
8
|
+
testId?: string;
|
|
9
|
+
items?: MenuItemConfig[];
|
|
10
|
+
width?: React.CSSProperties['width'];
|
|
11
|
+
height?: React.CSSProperties['height'];
|
|
12
|
+
maxWidth?: React.CSSProperties['maxWidth'];
|
|
13
|
+
maxHeight?: React.CSSProperties['maxHeight'];
|
|
14
|
+
} & Omit<MuiMenuProps, 'children'> & {
|
|
15
|
+
children?: React.ReactNode;
|
|
16
|
+
};
|
|
17
|
+
export declare const Menu: ({ testId, items, children, width, height, maxWidth, maxHeight, ...rest }: MenuProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { MenuItemProps as MuiMenuItemProps } from '@mui/material';
|
|
2
|
+
import { IconNames } from '../Icon';
|
|
3
|
+
import { IconProps } from '../Icon/Icon';
|
|
4
|
+
import { TextTypes } from '../Text/Text';
|
|
5
|
+
export type MenuItemIconPosition = 'before' | 'after';
|
|
6
|
+
export type MenuItemProps = {
|
|
7
|
+
testId?: string;
|
|
8
|
+
className?: string;
|
|
9
|
+
textType?: TextTypes;
|
|
10
|
+
icon?: IconNames;
|
|
11
|
+
iconProps?: Omit<IconProps, 'children'>;
|
|
12
|
+
iconPosition?: MenuItemIconPosition;
|
|
13
|
+
} & Omit<MuiMenuItemProps, 'className'>;
|
|
14
|
+
export declare const MenuItem: ({ testId, className, children, textType, icon, iconProps, iconPosition, ...rest }: MenuItemProps) => import("react/jsx-runtime").JSX.Element;
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
export * as VanguardStyle from './styles/general.module.tsx';
|
|
2
|
-
export * from './styles';
|
|
3
|
-
export { ComponentContainer } from './core/ComponentContainer/ComponentContainer.tsx';
|
|
4
2
|
export type { ComponentContainerProps } from './core/ComponentContainer/ComponentContainer.tsx';
|
|
3
|
+
export { ComponentContainer } from './core/ComponentContainer/ComponentContainer.tsx';
|
|
4
|
+
export * from './styles';
|
|
5
5
|
export type { LinkReplacements, LinkReplacementsData, TextProps, TextReplacements } from './core/Text';
|
|
6
|
-
export { FontWeights, Text, TextTypes } from './core/Text';
|
|
7
6
|
export type { Props, SeeMoreConfig, TextWordBreak } from './core/Text';
|
|
7
|
+
export { FontWeights, Text, TextTypes } from './core/Text';
|
|
8
8
|
export { childrenAsText } from './core/Text';
|
|
9
9
|
export type { TextHighlightedProps } from './core/TextHighlighted';
|
|
10
10
|
export { TextHighlighted } from './core/TextHighlighted';
|
|
@@ -17,25 +17,29 @@ export { Textarea } from './core/Textarea';
|
|
|
17
17
|
export type { ButtonProps, ButtonShape } from './core/Button';
|
|
18
18
|
export { Button, ButtonSizes, ButtonTypes } from './core/Button';
|
|
19
19
|
export type { FormStatus } from './core/Form';
|
|
20
|
-
export {
|
|
20
|
+
export { extractErrorScopes, extractSetErrorsFromConfig, Form } from './core/Form';
|
|
21
21
|
export type { CheckBoxProps } from './core/CheckBox';
|
|
22
22
|
export { CheckBox } from './core/CheckBox';
|
|
23
23
|
export type { InputAdornmentProps, InputCounterProps, InputEventsProps, InputFormConfigProps, InputHighlightsProps, InputLabelProps, InputPopoverProps, InputSelectProps, InputValueProps, } from './core/_internal';
|
|
24
24
|
export { InputBase } from './core/_internal';
|
|
25
|
-
export type { InputProps } from './core/Input';
|
|
26
|
-
export { Input } from './core/Input';
|
|
27
25
|
export type { IMaskInputProps } from './core/IMaskInput';
|
|
28
26
|
export { IMaskInput } from './core/IMaskInput';
|
|
27
|
+
export type { InputProps } from './core/Input';
|
|
28
|
+
export { Input } from './core/Input';
|
|
29
29
|
export type { LinkProps } from './core/Link';
|
|
30
30
|
export { Link } from './core/Link';
|
|
31
31
|
export type { SelectOnChange, SelectOptionProp, SelectOptionProps, SelectProps } from './core/Select';
|
|
32
32
|
export type { SelectOptionsComponentProps } from './core/Select';
|
|
33
33
|
export { Select } from './core/Select';
|
|
34
|
+
export type { MenuItemConfig, MenuProps } from './core/Menu';
|
|
35
|
+
export { Menu } from './core/Menu';
|
|
36
|
+
export type { MenuItemIconPosition, MenuItemProps } from './core/MenuItem';
|
|
37
|
+
export { MenuItem } from './core/MenuItem';
|
|
34
38
|
export type { TabProps } from './core/Tabs';
|
|
35
39
|
export type { TabConfig, TabsProps } from './core/Tabs';
|
|
36
40
|
export { Tabs } from './core/Tabs';
|
|
37
41
|
export type { IconProps } from './core/Icon';
|
|
38
|
-
export { Icon,
|
|
42
|
+
export { Icon, IconNames, IconSize } from './core/Icon';
|
|
39
43
|
export type { InfoIconProps } from './common/InfoIcon/InfoIcon.tsx';
|
|
40
44
|
export { InfoIcon } from './common/InfoIcon/InfoIcon.tsx';
|
|
41
45
|
export type { InfoIconModalProps } from './common/InfoIcon/InfoIconModal/InfoIconModal.tsx';
|
|
@@ -44,7 +48,7 @@ export type { GeneratedWithAIPillProps } from './common/GeneratedWithAIPill/Gene
|
|
|
44
48
|
export { GeneratedWithAIPill } from './common/GeneratedWithAIPill/GeneratedWithAIPill.tsx';
|
|
45
49
|
export type { AccordionProps } from './core/Accordion';
|
|
46
50
|
export { Accordion } from './core/Accordion';
|
|
47
|
-
export type { PageSectionProps,
|
|
51
|
+
export type { PageSectionProps, PageSectionWithoutTitle, PageSectionWithTitle } from './core/PageSection';
|
|
48
52
|
export { PageSection, PageSectionBackground, PageSectionRoundedEdges } from './core/PageSection';
|
|
49
53
|
export type { PageSectionLoadingProps } from './common/PageSectionLoading/PageSectionLoading.tsx';
|
|
50
54
|
export { PageSectionLoading } from './common/PageSectionLoading/PageSectionLoading.tsx';
|
|
@@ -52,22 +56,22 @@ export { AnimatedConditional } from './core/AnimatedConditional';
|
|
|
52
56
|
export type { FrostedGlassProps } from './core/FrostedGlass';
|
|
53
57
|
export { FrostedGlass } from './core/FrostedGlass';
|
|
54
58
|
export type { EditModalProps } from './core/CustomModals';
|
|
55
|
-
export { FullScreenModalContainer } from './core/Modal';
|
|
56
59
|
export type { ModalProps } from './core/Modal';
|
|
60
|
+
export type { ModalFooterAction, ModalFooterProps, SubButtonProps } from './core/Modal';
|
|
61
|
+
export type { ModalType } from './core/Modal';
|
|
62
|
+
export type { ModalResponse } from './core/Modal';
|
|
63
|
+
export type { ModalResponseHandler, ModalState, StandardModalProps } from './core/Modal';
|
|
64
|
+
export type { ComponentWithId, ModalOpts } from './core/Modal';
|
|
65
|
+
export type { Step } from './core/Modal';
|
|
66
|
+
export { FullScreenModalContainer } from './core/Modal';
|
|
57
67
|
export { Modal } from './core/Modal';
|
|
58
68
|
export { ModalBody } from './core/Modal';
|
|
59
69
|
export { ModalProvider, useModalContext } from './core/Modal';
|
|
60
|
-
export type { ModalFooterAction, ModalFooterProps, SubButtonProps } from './core/Modal';
|
|
61
70
|
export { ModalFooter } from './core/Modal';
|
|
62
|
-
export type { ModalType } from './core/Modal';
|
|
63
71
|
export { ModalHeader } from './core/Modal';
|
|
64
|
-
export type { ModalResponse } from './core/Modal';
|
|
65
|
-
export type { ModalResponseHandler, ModalState, StandardModalProps } from './core/Modal';
|
|
66
72
|
export { ModalRoot } from './core/Modal';
|
|
67
|
-
export type { ComponentWithId, ModalOpts } from './core/Modal';
|
|
68
73
|
export { ModalService } from './core/Modal';
|
|
69
74
|
export { ModalSplitView } from './core/Modal';
|
|
70
|
-
export type { Step } from './core/Modal';
|
|
71
75
|
export { ModalStepper } from './core/Modal';
|
|
72
76
|
export { BigAssEditModal } from './core/CustomModals';
|
|
73
77
|
export { EditModal } from './core/CustomModals';
|
|
@@ -76,8 +80,8 @@ export { Tag } from './core/TagList';
|
|
|
76
80
|
export { TagType } from './core/TagList';
|
|
77
81
|
export { TagList } from './core/TagList';
|
|
78
82
|
export type { ListElementSchema, ListProps, ListType } from './core/List';
|
|
79
|
-
export { List } from './core/List';
|
|
80
83
|
export type { ListShowMoreProps } from './core/List';
|
|
84
|
+
export { List } from './core/List';
|
|
81
85
|
export { ListShowMore } from './core/List';
|
|
82
86
|
export type { PopoverPosition, PopoverProps, PopoverTheme } from './core/Popover';
|
|
83
87
|
export { Popover } from './core/Popover';
|
|
@@ -92,8 +96,8 @@ export { TogglerWithText } from './core/TogglerWithText';
|
|
|
92
96
|
export type { EditableCardProps, EditableCardTitleAIType } from './common/EditableCard/EditableCard.tsx';
|
|
93
97
|
export { EditableCard } from './common/EditableCard/EditableCard.tsx';
|
|
94
98
|
export type { StatusBadgeBoostStatus, StatusBadgeIconVariant, StatusBadgePostStatus, StatusBadgeProps, StatusBadgeReviewStatus, StatusBadgeStatus, } from './core/StatusBadge';
|
|
95
|
-
export { StatusBadge } from './core/StatusBadge';
|
|
96
99
|
export type { StatusBadgeIconProps } from './core/StatusBadge';
|
|
100
|
+
export { StatusBadge } from './core/StatusBadge';
|
|
97
101
|
export { StatusBadgeIcon } from './core/StatusBadge';
|
|
98
102
|
export type { AutocompleteProps } from './core/Autocomplete';
|
|
99
103
|
export { Autocomplete } from './core/Autocomplete';
|
|
@@ -101,42 +105,42 @@ export { SvgImage } from './core/SvgImage';
|
|
|
101
105
|
export type { AIOrbProps } from './core/AIOrb';
|
|
102
106
|
export { AIOrb, AIOrbSize, AIOrbStatus } from './core/AIOrb';
|
|
103
107
|
export type { Listener, LottieOptions, LottieRef, LottieRefCurrentProps, PartialListener, } from './core/LottieAnimationLoader';
|
|
108
|
+
export type { Action, Axis, InitInteractivity, InteractivityProps, Position } from './core/LottieAnimationLoader';
|
|
109
|
+
export type { LottieAnimationLoaderProps, LottieAnimationType } from './core/LottieAnimationLoader';
|
|
104
110
|
export { useLottie } from './core/LottieAnimationLoader';
|
|
105
|
-
export type { Action, Axis, InitInteractivity, InteractivityProps, Position, } from './core/LottieAnimationLoader';
|
|
106
111
|
export { getContainerCursorPosition, getContainerVisibility, useInitInteractivity, useLottieInteractivity, } from './core/LottieAnimationLoader';
|
|
107
|
-
export type { LottieAnimationLoaderProps, LottieAnimationType, } from './core/LottieAnimationLoader';
|
|
108
112
|
export declare const lottieAnimation = "";
|
|
109
|
-
export { LottieAnimationLoader } from './core/LottieAnimationLoader';
|
|
110
113
|
export type { LottieBaseProps } from './core/LottieAnimationLoader';
|
|
114
|
+
export { LottieAnimationLoader } from './core/LottieAnimationLoader';
|
|
111
115
|
export { LottieBase } from './core/LottieAnimationLoader';
|
|
112
116
|
export type { SlideTransitionProps } from './core/SlideTransition';
|
|
113
117
|
export { SlideTransition } from './core/SlideTransition';
|
|
114
|
-
export type { OnboardingWelcomeAnimationProps
|
|
118
|
+
export type { OnboardingWelcomeAnimationProps } from './common/OnboardingWelcomeAnimation/OnboardingWelcomeAnimation.tsx';
|
|
115
119
|
export { OnboardingWelcomeAnimation } from './common/OnboardingWelcomeAnimation/OnboardingWelcomeAnimation.tsx';
|
|
116
120
|
export type { RcSvgProps } from './core/StyledSVG';
|
|
117
121
|
export { StyledSVG } from './core/StyledSVG';
|
|
118
122
|
export type { AIBudgetEndProps } from './common/AIBudgetEnd/AIBudgetEnd.tsx';
|
|
119
123
|
export { AIBudgetEnd } from './common/AIBudgetEnd/AIBudgetEnd.tsx';
|
|
120
124
|
export type { KeyOfAvatarIconMap, ValueOfAvatarIconMap } from './core/Avatar';
|
|
121
|
-
export { AvatarIconMap } from './core/Avatar';
|
|
122
125
|
export type { AvatarIcon, AvatarProps, AvatarSize } from './core/Avatar';
|
|
123
|
-
export { Avatar } from './core/Avatar';
|
|
124
126
|
export type { AvatarPreloadProps } from './core/Avatar';
|
|
127
|
+
export { AvatarIconMap } from './core/Avatar';
|
|
128
|
+
export { Avatar } from './core/Avatar';
|
|
125
129
|
export { AvatarPreload } from './core/Avatar';
|
|
126
130
|
export type { AiGlowProps } from './core/AiGlow';
|
|
127
131
|
export { AiGlow } from './core/AiGlow';
|
|
128
132
|
export type { ArcGaugeProps } from './core/ArcGauge';
|
|
129
133
|
export { ArcGauge } from './core/ArcGauge';
|
|
130
|
-
export { actionBarService } from './core/ActionBar';
|
|
131
134
|
export type { ActionBarProps } from './core/ActionBar';
|
|
135
|
+
export type { ActionBarFooterButton, ActionBarFooterProps } from './core/ActionBar';
|
|
136
|
+
export { actionBarService } from './core/ActionBar';
|
|
132
137
|
export { ActionBar } from './core/ActionBar';
|
|
133
138
|
export { ActionBarRoot } from './core/ActionBar';
|
|
134
|
-
export type { ActionBarFooterButton, ActionBarFooterProps, } from './core/ActionBar';
|
|
135
139
|
export type { ActionButtonProps } from './core/ActionButton';
|
|
136
140
|
export { ActionButton } from './core/ActionButton';
|
|
137
141
|
export type { ActionCardProps } from './core/ActionCard';
|
|
138
|
-
export { ActionCard } from './core/ActionCard';
|
|
139
142
|
export type { ActionCardActionProps } from './core/ActionCard';
|
|
143
|
+
export { ActionCard } from './core/ActionCard';
|
|
140
144
|
export { ActionCardAction } from './core/ActionCard';
|
|
141
145
|
export { ActionCardActions } from './core/ActionCard';
|
|
142
146
|
export { ActionCardBody } from './core/ActionCard';
|
|
@@ -155,25 +159,25 @@ export { AvatarCheckbox } from './core/AvatarCheckbox';
|
|
|
155
159
|
export type { AvatarStackItem, AvatarStackProps } from './core/AvatarStack';
|
|
156
160
|
export { AvatarStack } from './core/AvatarStack';
|
|
157
161
|
export type { AreaChartProps } from './core/Charts';
|
|
158
|
-
export { AreaChart } from './core/Charts';
|
|
159
162
|
export type { BarChartProps, BarChartSeries } from './core/Charts';
|
|
160
|
-
export { BarChart } from './core/Charts';
|
|
161
163
|
export type { BigLegendProps } from './core/Charts';
|
|
162
|
-
export { BigLegend } from './core/Charts';
|
|
163
164
|
export type { BigLegendItemProps } from './core/Charts';
|
|
165
|
+
export type { ChartTabsProps } from './core/Charts';
|
|
166
|
+
export type { DonutChartDirectoriesProps } from './core/Charts';
|
|
167
|
+
export type { DonutChartStatisticsProps } from './core/Charts';
|
|
168
|
+
export type { DonutChartProps } from './core/Charts';
|
|
169
|
+
export type { HSBChartProps, HSBChartSeries, RenderBigLegendFnType } from './core/Charts';
|
|
170
|
+
export type { BigLegendDataTypeBase, LineChartBaseProps, lineChartBaseSeriesType } from './core/Charts';
|
|
171
|
+
export { AreaChart } from './core/Charts';
|
|
172
|
+
export { BarChart } from './core/Charts';
|
|
173
|
+
export { BigLegend } from './core/Charts';
|
|
164
174
|
export { BigLegendItem } from './core/Charts';
|
|
165
175
|
export { ChartsPlaceholder } from './core/Charts';
|
|
166
|
-
export type { ChartTabsProps } from './core/Charts';
|
|
167
176
|
export { ChartTabs } from './core/Charts';
|
|
168
|
-
export type { DonutChartDirectoriesProps } from './core/Charts';
|
|
169
177
|
export { DonutChartDirectories } from './core/Charts';
|
|
170
|
-
export type { DonutChartStatisticsProps } from './core/Charts';
|
|
171
178
|
export { DonutChartStatistics } from './core/Charts';
|
|
172
|
-
export type { DonutChartProps } from './core/Charts';
|
|
173
179
|
export { DonutChart } from './core/Charts';
|
|
174
|
-
export type { HSBChartProps, HSBChartSeries, RenderBigLegendFnType } from './core/Charts';
|
|
175
180
|
export { HSBChart } from './core/Charts';
|
|
176
|
-
export type { BigLegendDataTypeBase, LineChartBaseProps, lineChartBaseSeriesType, } from './core/Charts';
|
|
177
181
|
export { LineChartBase } from './core/Charts';
|
|
178
182
|
export type { ClipboardTextProps } from './core/ClipboardText';
|
|
179
183
|
export { ClipboardText } from './core/ClipboardText';
|
|
@@ -183,33 +187,33 @@ export { ColorPicker } from './core/ColorPicker';
|
|
|
183
187
|
export type { CreditCardProps } from './core/CreditCard';
|
|
184
188
|
export { CreditCard, CreditCardType } from './core/CreditCard';
|
|
185
189
|
export type { MultiSelectDrawerProps } from './core/CustomDrawers';
|
|
186
|
-
export { MultiSelectDrawer } from './core/CustomDrawers';
|
|
187
190
|
export type { TextEditDrawerProps } from './core/CustomDrawers';
|
|
191
|
+
export { MultiSelectDrawer } from './core/CustomDrawers';
|
|
188
192
|
export { TextEditDrawer } from './core/CustomDrawers';
|
|
189
193
|
export type { DatePickerProps } from './core/DatePicker';
|
|
190
194
|
export { DatePicker } from './core/DatePicker';
|
|
191
195
|
export { DateRangeInput } from './core/DateRangeInput';
|
|
192
|
-
export { areDatesEqual, createDatePickerRange, ensureIsRealDate, formatDateForComparison, } from './core/DateRangePicker';
|
|
193
196
|
export type { StaticRangeWithDefault } from './core/DateRangePicker';
|
|
194
|
-
export type { DateRangePickerProps, DateRangePickerReturn, DateRangePickerState
|
|
197
|
+
export type { DateRangePickerProps, DateRangePickerReturn, DateRangePickerState } from './core/DateRangePicker';
|
|
198
|
+
export { areDatesEqual, createDatePickerRange, ensureIsRealDate, formatDateForComparison, } from './core/DateRangePicker';
|
|
195
199
|
export { DateRangePicker } from './core/DateRangePicker';
|
|
196
200
|
export { DateRangePickerIMaskInput as maskInput } from './core/DateRangePicker/DateRangePickerIMaskInput.tsx';
|
|
197
|
-
export { isBackendDateAfterNow, isDateTimePickerAfterNow, mapBackendDateToDateTimePicker, mapDateTimePickerToBackendDate, mapDateTimePickerToBackendDatePlusOneDay, mapDateTimePickerToUnix, mapToBackendDate, } from './core/DateTimePicker';
|
|
198
201
|
export type { DateTimePickerProps } from './core/DateTimePicker';
|
|
202
|
+
export { isBackendDateAfterNow, isDateTimePickerAfterNow, mapBackendDateToDateTimePicker, mapDateTimePickerToBackendDate, mapDateTimePickerToBackendDatePlusOneDay, mapDateTimePickerToUnix, mapToBackendDate, } from './core/DateTimePicker';
|
|
199
203
|
export { DateTimePicker } from './core/DateTimePicker';
|
|
200
204
|
export { Divider } from './core/Divider';
|
|
201
205
|
export type { DocumentDataType, DocumentFileMimeType, MediaItemFileType } from './core/Documents';
|
|
202
|
-
export { CONTENT_TYPE_IMAGE_ANY, CONTENT_TYPE_IMAGE_JPEG, CONTENT_TYPE_IMAGE_JPG, CONTENT_TYPE_IMAGE_PNG, CONTENT_TYPE_UNKNOWN, CONTENT_TYPE_VIDEO_MOV, CONTENT_TYPE_VIDEO_MP4, ContentType, CONTENY_TYPE_APPLICATION_PDF, } from './core/Documents';
|
|
203
206
|
export type { DocumentDisplayProps } from './core/Documents';
|
|
204
|
-
export { DocumentDisplay } from './core/Documents';
|
|
205
207
|
export type { DocumentUploadProps } from './core/Documents';
|
|
208
|
+
export { CONTENT_TYPE_IMAGE_ANY, CONTENT_TYPE_IMAGE_JPEG, CONTENT_TYPE_IMAGE_JPG, CONTENT_TYPE_IMAGE_PNG, CONTENT_TYPE_UNKNOWN, CONTENT_TYPE_VIDEO_MOV, CONTENT_TYPE_VIDEO_MP4, ContentType, CONTENY_TYPE_APPLICATION_PDF, } from './core/Documents';
|
|
209
|
+
export { DocumentDisplay } from './core/Documents';
|
|
206
210
|
export { DocumentUpload } from './core/Documents';
|
|
207
211
|
export type { DragAndDropFileProps } from './core/DragAndDropFile';
|
|
208
212
|
export { DragAndDropFile } from './core/DragAndDropFile';
|
|
209
213
|
export type { AllowedDrawerProps, DrawerProps } from './core/Drawer';
|
|
214
|
+
export type { BaseDrawerProps } from './core/Drawer';
|
|
210
215
|
export { Drawer } from './core/Drawer';
|
|
211
216
|
export { DrawerRoot } from './core/Drawer';
|
|
212
|
-
export type { BaseDrawerProps } from './core/Drawer';
|
|
213
217
|
export { DrawerService } from './core/Drawer';
|
|
214
218
|
export type { DropdownMenuItemProps, DropdownMenuProps } from './core/DropdownMenu';
|
|
215
219
|
export { DropdownMenu } from './core/DropdownMenu';
|
|
@@ -236,17 +240,17 @@ export { PhotoPlaceholder } from './core/Gallery';
|
|
|
236
240
|
export { GallerySummary } from './core/GallerySummary';
|
|
237
241
|
export type { GlobalStateComponentProps } from './core/GlobalStateComponent';
|
|
238
242
|
export { GlobalStateComponent } from './core/GlobalStateComponent';
|
|
239
|
-
export { panToOffset } from './core/GoogleMaps';
|
|
240
243
|
export type { GoogleMapsProps } from './core/GoogleMaps';
|
|
241
|
-
export { GoogleMaps } from './core/GoogleMaps';
|
|
242
244
|
export type { GoogleMapsCircleProps } from './core/GoogleMaps';
|
|
245
|
+
export type { GoogleMapsMarkerProps } from './core/GoogleMaps';
|
|
246
|
+
export type { GoogleMapsMarkerDefaultProps } from './core/GoogleMaps';
|
|
247
|
+
export { panToOffset } from './core/GoogleMaps';
|
|
248
|
+
export { GoogleMaps } from './core/GoogleMaps';
|
|
243
249
|
export { GoogleMapsCircle } from './core/GoogleMaps';
|
|
244
250
|
export { MarkerF } from './core/GoogleMaps';
|
|
245
|
-
export type { GoogleMapsMarkerProps } from './core/GoogleMaps';
|
|
246
251
|
export { GoogleMapsMarker } from './core/GoogleMaps';
|
|
247
|
-
export type { GoogleMapsMarkerDefaultProps } from './core/GoogleMaps';
|
|
248
252
|
export { GoogleMapsMarkerDefault } from './core/GoogleMaps';
|
|
249
|
-
export {
|
|
253
|
+
export { defaultGoogleMarker, defaultMarkerIcon } from './core/GoogleMaps';
|
|
250
254
|
export type { IconButtonProps } from './core/IconButton';
|
|
251
255
|
export { IconButton } from './core/IconButton';
|
|
252
256
|
export type { IllustrationBlobProps } from './core/IllustrationBlob';
|
|
@@ -268,10 +272,10 @@ export type { ListItemsProps } from './core/ListItems';
|
|
|
268
272
|
export { ListItems } from './core/ListItems';
|
|
269
273
|
export { ListLoader } from './core/ListLoader';
|
|
270
274
|
export { Loader } from './core/Loader';
|
|
271
|
-
export { ContentPlaceholder } from './core/Notification';
|
|
272
275
|
export type { NotificationProps } from './core/Notification';
|
|
273
|
-
export { Notification } from './core/Notification';
|
|
274
276
|
export type { NotificationActionProps } from './core/Notification';
|
|
277
|
+
export { ContentPlaceholder } from './core/Notification';
|
|
278
|
+
export { Notification } from './core/Notification';
|
|
275
279
|
export { NotificationAction } from './core/Notification';
|
|
276
280
|
export { NotificationReview } from './core/Notification';
|
|
277
281
|
export { NotificationSocialPost } from './core/Notification';
|
|
@@ -298,8 +302,8 @@ export type { LinkComponentProps } from './core/RcNavLink';
|
|
|
298
302
|
export { RcNavLink } from './core/RcNavLink';
|
|
299
303
|
export type { RichTextEditorProps } from './core/RichTextEditor';
|
|
300
304
|
export { RichTextEditor } from './core/RichTextEditor';
|
|
301
|
-
export { sanitizeHtml } from './helpers/sanitize-html';
|
|
302
305
|
export type { SanitizeHtmlOptions } from './helpers/sanitize-html';
|
|
306
|
+
export { sanitizeHtml } from './helpers/sanitize-html';
|
|
303
307
|
export type { SearchableSelectProps } from './core/SearchableSelect';
|
|
304
308
|
export { SearchableSelect } from './core/SearchableSelect';
|
|
305
309
|
export type { SliderProps } from './core/Slider';
|
|
@@ -317,21 +321,21 @@ export { DateRangeModal } from './core/StandardModals';
|
|
|
317
321
|
export { ErrorModal } from './core/StandardModals';
|
|
318
322
|
export { LoadingModal } from './core/StandardModals';
|
|
319
323
|
export { SuccessModal } from './core/StandardModals';
|
|
320
|
-
export { Star } from './core/StarRating';
|
|
321
324
|
export type { StarValueChangedEventHandler } from './core/StarRating';
|
|
322
325
|
export type { StarRatingProps } from './core/StarRating';
|
|
326
|
+
export { Star } from './core/StarRating';
|
|
323
327
|
export { StarRating } from './core/StarRating';
|
|
324
|
-
export type { TableColumnProps, TableDataProps, TableOptionsProps, TableProps, TableRowProps
|
|
325
|
-
export { Table } from './core/Table';
|
|
328
|
+
export type { TableColumnProps, TableDataProps, TableOptionsProps, TableProps, TableRowProps } from './core/Table';
|
|
326
329
|
export type { TableBodyProps } from './core/Table';
|
|
327
|
-
export { TableBody } from './core/Table';
|
|
328
330
|
export type { TableCellProps } from './core/Table';
|
|
329
|
-
export { TableCell } from './core/Table';
|
|
330
331
|
export type { TableFooterProps } from './core/Table';
|
|
331
|
-
export { TableFooter } from './core/Table';
|
|
332
332
|
export type { TableHeaderProps } from './core/Table';
|
|
333
|
-
export { TableHeader } from './core/Table';
|
|
334
333
|
export type { CtaWithIconProps } from './core/Table';
|
|
334
|
+
export { Table } from './core/Table';
|
|
335
|
+
export { TableBody } from './core/Table';
|
|
336
|
+
export { TableCell } from './core/Table';
|
|
337
|
+
export { TableFooter } from './core/Table';
|
|
338
|
+
export { TableHeader } from './core/Table';
|
|
335
339
|
export { CtaWithIcon } from './core/Table';
|
|
336
340
|
export type { TimePickerProps } from './core/TimePicker';
|
|
337
341
|
export { TimePicker } from './core/TimePicker';
|
|
@@ -342,8 +346,8 @@ export type { VideoPlayerProps } from './core/VideoPlayer';
|
|
|
342
346
|
export { VideoPlayer } from './core/VideoPlayer';
|
|
343
347
|
export { videoPlayerService } from './core/VideoPlayer';
|
|
344
348
|
export { isYouTubeUrl } from './core/VideoPlayer';
|
|
345
|
-
export { Header, HeaderTypes } from './core/Header';
|
|
346
349
|
export type { HeaderProps } from './core/Header';
|
|
350
|
+
export { Header, HeaderTypes } from './core/Header';
|
|
347
351
|
/**
|
|
348
352
|
* Custom hooks
|
|
349
353
|
*
|