@hh.ru/magritte-ui 55.2.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/_css-variables.less +3827 -0
- package/base-variables.less +879 -0
- package/breakpoints.less +121 -0
- package/fonts.less +1 -0
- package/icon.d.ts +1 -0
- package/icon.js +2 -0
- package/icon.js.map +1 -0
- package/index.d.ts +58 -0
- package/index.js +58 -0
- package/index.js.map +1 -0
- package/index.mock.d.ts +52 -0
- package/index.mock.js +52 -0
- package/index.mock.js.map +1 -0
- package/package.json +91 -0
- package/product.d.ts +1 -0
- package/product.js +2 -0
- package/product.js.map +1 -0
- package/reset.less +1 -0
- package/service.d.ts +1 -0
- package/service.js +2 -0
- package/service.js.map +1 -0
- package/tokens.less +1509 -0
- package/types.d.ts +3 -0
- package/types.js +2 -0
- package/types.js.map +1 -0
package/breakpoints.less
ADDED
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
@page-min-width: 320px;
|
|
2
|
+
|
|
3
|
+
@breakpoint-xs-end: (@breakpoint-s-start - 1px);
|
|
4
|
+
@breakpoint-s-start: 600px;
|
|
5
|
+
@breakpoint-s-end: (@breakpoint-m-start - 1px);
|
|
6
|
+
@breakpoint-m-start: 1024px;
|
|
7
|
+
@breakpoint-m-end: (@breakpoint-l-start - 1px);
|
|
8
|
+
@breakpoint-l-start: 1280px;
|
|
9
|
+
@breakpoint-l-end: (@breakpoint-xl-start - 1px);
|
|
10
|
+
@breakpoint-xl-start: 1440px;
|
|
11
|
+
@breakpoint-xl-end: (@breakpoint-xxl-start - 1px);
|
|
12
|
+
@breakpoint-xxl-start: 1920px;
|
|
13
|
+
|
|
14
|
+
@screen-magritte-gt-xs: ~'(min-width: @{breakpoint-s-start})';
|
|
15
|
+
@screen-magritte-s: ~'(min-width: @{breakpoint-s-start}) and (max-width: @{breakpoint-s-end})';
|
|
16
|
+
@screen-magritte-gt-s: ~'(min-width: @{breakpoint-m-start})';
|
|
17
|
+
@screen-magritte-m: ~'(min-width: @{breakpoint-m-start}) and (max-width: @{breakpoint-m-end})';
|
|
18
|
+
@screen-magritte-gt-m: ~'(min-width: @{breakpoint-l-start})';
|
|
19
|
+
@screen-magritte-gt-l: ~'(min-width: @{breakpoint-xl-start})';
|
|
20
|
+
@screen-magritte-l: ~'(min-width: @{breakpoint-l-start}) and (max-width: @{breakpoint-l-end})';
|
|
21
|
+
@screen-magritte-gt-xl: ~'(min-width: @{breakpoint-xxl-start})';
|
|
22
|
+
@screen-magritte-xl: ~'(min-width: @{breakpoint-xl-start}) and (max-width: @{breakpoint-xl-end})';
|
|
23
|
+
@screen-magritte-xxl: ~'(min-width: @{breakpoint-xxl-start})';
|
|
24
|
+
|
|
25
|
+
// bloko
|
|
26
|
+
|
|
27
|
+
@breakpoint-bloko-xs-end: (@breakpoint-bloko-s-start - 1px);
|
|
28
|
+
@breakpoint-bloko-s-start: 700px;
|
|
29
|
+
@breakpoint-bloko-s-end: (@breakpoint-bloko-m-start - 1px);
|
|
30
|
+
@breakpoint-bloko-m-start: 1020px;
|
|
31
|
+
@breakpoint-bloko-m-end: (@breakpoint-bloko-l-start - 1px);
|
|
32
|
+
@breakpoint-bloko-l-start: 1340px;
|
|
33
|
+
|
|
34
|
+
@screen-bloko-gt-xs: ~'(min-width: @{breakpoint-bloko-s-start})';
|
|
35
|
+
@screen-bloko-s: ~'(min-width: @{breakpoint-bloko-s-start}) and (max-width: @{breakpoint-bloko-s-end})';
|
|
36
|
+
@screen-bloko-gt-s: ~'(min-width: @{breakpoint-bloko-m-start})';
|
|
37
|
+
@screen-bloko-m: ~'(min-width: @{breakpoint-bloko-m-start}) and (max-width: @{breakpoint-bloko-m-end})';
|
|
38
|
+
@screen-bloko-gt-m: ~'(min-width: @{breakpoint-bloko-l-start})';
|
|
39
|
+
@screen-bloko-l: ~'(min-width: @{breakpoint-bloko-l-start})';
|
|
40
|
+
|
|
41
|
+
.screen-gt-xs(@rules) {
|
|
42
|
+
@media @screen-bloko-gt-xs {
|
|
43
|
+
body:global(.magritte-old-layout) & {
|
|
44
|
+
@rules();
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
@media @screen-magritte-gt-xs {
|
|
49
|
+
body:not(:global(.magritte-old-layout)) & {
|
|
50
|
+
@rules();
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.screen-gt-s(@rules) {
|
|
56
|
+
@media @screen-bloko-gt-s {
|
|
57
|
+
body:global(.magritte-old-layout) & {
|
|
58
|
+
@rules();
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
@media @screen-magritte-gt-s {
|
|
63
|
+
body:not(:global(.magritte-old-layout)) & {
|
|
64
|
+
@rules();
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.screen-gt-m(@rules) {
|
|
70
|
+
@media @screen-bloko-gt-m {
|
|
71
|
+
body:global(.magritte-old-layout) & {
|
|
72
|
+
@rules();
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
@media @screen-magritte-gt-m {
|
|
77
|
+
body:not(:global(.magritte-old-layout)) & {
|
|
78
|
+
@rules();
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.screen-gt-l(@rules) {
|
|
84
|
+
@media @screen-magritte-gt-l {
|
|
85
|
+
body:not(:global(.magritte-old-layout)) & {
|
|
86
|
+
@rules();
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.screen-gt-xl(@rules) {
|
|
92
|
+
@media @screen-magritte-gt-xl {
|
|
93
|
+
body:not(:global(.magritte-old-layout)) & {
|
|
94
|
+
@rules();
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.only-bloko-layout(@rules) {
|
|
100
|
+
body:global(.magritte-old-layout) & {
|
|
101
|
+
@rules();
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.only-bloko-layout(@rules, @with-body-class) {
|
|
106
|
+
body:global(.magritte-old-layout)& {
|
|
107
|
+
@rules();
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.only-magritte-layout(@rules) {
|
|
112
|
+
body:not(:global(.magritte-old-layout)) & {
|
|
113
|
+
@rules();
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.only-magritte-layout(@rules, @with-body-class) {
|
|
118
|
+
body:not(:global(.magritte-old-layout))& {
|
|
119
|
+
@rules();
|
|
120
|
+
}
|
|
121
|
+
}
|
package/fonts.less
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import (inline) '@hh.ru/magritte-fonts/fonts.css';
|
package/icon.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@hh.ru/magritte-ui-icon/icon';
|
package/icon.js
ADDED
package/icon.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"icon.js","sources":[],"sourcesContent":[],"names":[],"mappings":""}
|
package/index.d.ts
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
export { Dummy } from '@hh.ru/magritte-ui-dummy';
|
|
2
|
+
export { GridHighlighter, GridColumn, GridLayout, GridRow, type GridColumnProps, type GridLayoutProps, } from '@hh.ru/magritte-ui-grid';
|
|
3
|
+
export { useBreakpoint, BreakpointProvider, Breakpoint } from '@hh.ru/magritte-ui-breakpoint';
|
|
4
|
+
export { useResize } from '@hh.ru/magritte-common-resize';
|
|
5
|
+
export { useCloseByClickOutside } from '@hh.ru/magritte-common-mouse';
|
|
6
|
+
export { useMultipleRefs } from '@hh.ru/magritte-common-use-multiple-refs';
|
|
7
|
+
export { Cookies } from '@hh.ru/magritte-common-cookies';
|
|
8
|
+
export { ThemeProvider } from '@hh.ru/magritte-ui-theme-provider';
|
|
9
|
+
export { Counter } from '@hh.ru/magritte-ui-counter';
|
|
10
|
+
export { Placeholder, type PlaceholderVerticalAlign, type PlaceholderButtonsAlign, type PlaceholderProps, } from '@hh.ru/magritte-ui-placeholder';
|
|
11
|
+
export { Divider } from '@hh.ru/magritte-ui-divider';
|
|
12
|
+
export { type IconColor, type IconDisabledColor, type IconHoveredColor } from '@hh.ru/magritte-ui-icon';
|
|
13
|
+
export { Loader } from '@hh.ru/magritte-ui-loader';
|
|
14
|
+
export { Button, type ButtonStyle, type ButtonMode, type ButtonSize, type ButtonProps, } from '@hh.ru/magritte-ui-button';
|
|
15
|
+
export { type InputSize, Input, NumberInput, DateTimeInput, PasswordInput, SearchInput, UncontrolledInput, UncontrolledNumberInput, UncontrolledDateTimeInput, UncontrolledPasswordInput, UncontrolledSearchInput, useInputAriaProps, } from '@hh.ru/magritte-ui-input';
|
|
16
|
+
export { Tag, type TagSize, type TagStyle, type TagProps } from '@hh.ru/magritte-ui-tag';
|
|
17
|
+
export { useEscapeToClose, keyboardKeys } from '@hh.ru/magritte-common-keyboard';
|
|
18
|
+
export { useDebounce } from '@hh.ru/magritte-common-func-utils';
|
|
19
|
+
export { Snackbar, SnackbarContainer, SnackbarContextProvider, type SnackbarProps, type SnackbarContainerProps, useAriaSnackbar, } from '@hh.ru/magritte-ui-snackbar';
|
|
20
|
+
export { useTimer, Timer, type TimerProps } from '@hh.ru/magritte-ui-timer';
|
|
21
|
+
export { Layer, LayerName } from '@hh.ru/magritte-ui-layer';
|
|
22
|
+
export { Text, type TextStyle, type TextTypography, type TextProps } from '@hh.ru/magritte-ui-typography';
|
|
23
|
+
export * from '@hh.ru/magritte-ui-link';
|
|
24
|
+
export * from '@hh.ru/magritte-ui-card';
|
|
25
|
+
export * from '@hh.ru/magritte-ui-tooltip';
|
|
26
|
+
export { Switch } from '@hh.ru/magritte-ui-switch';
|
|
27
|
+
export { CheckableChip, CustomChip, ChipsContainer, type ChipStyle, type CustomChipProps, type CheckableChipProps, } from '@hh.ru/magritte-ui-chips';
|
|
28
|
+
export { Title, type TitleProps } from '@hh.ru/magritte-ui-title';
|
|
29
|
+
export { BottomSheet, BottomSheetFooter, type BottomSheetHeight, type BottomSheetProps, type BottomSheetShowDivider, } from '@hh.ru/magritte-ui-bottom-sheet';
|
|
30
|
+
export { Tabs, Tab, type TabId } from '@hh.ru/magritte-ui-tabs';
|
|
31
|
+
export * from '@hh.ru/magritte-ui-drop';
|
|
32
|
+
export { CheckableCard, CheckableCardScrollableContainer } from '@hh.ru/magritte-ui-checkable-card';
|
|
33
|
+
export { Checkbox, Radio } from '@hh.ru/magritte-ui-checkbox-radio';
|
|
34
|
+
export { Action, type ActionMode, type ActionStyle, type ActionProps } from '@hh.ru/magritte-ui-action';
|
|
35
|
+
export * from '@hh.ru/magritte-ui-avatar';
|
|
36
|
+
export * from '@hh.ru/magritte-ui-textarea';
|
|
37
|
+
export { Cell, LabelRight, CellText, type CellTextProps, type LabelRightProps, type CellProps, } from '@hh.ru/magritte-ui-cell';
|
|
38
|
+
export { Accordion, type AccordionPadding, type AccordionBorderRadius } from '@hh.ru/magritte-ui-accordion';
|
|
39
|
+
export { Modal } from '@hh.ru/magritte-ui-modal';
|
|
40
|
+
export * from '@hh.ru/magritte-ui-number-pages';
|
|
41
|
+
export * from '@hh.ru/magritte-ui-breadcrumbs';
|
|
42
|
+
export { ProgressBar, type ProgressBarStyle, type ProgressBarProps } from '@hh.ru/magritte-ui-progress-bar';
|
|
43
|
+
export { Banner, type BannerProps } from '@hh.ru/magritte-ui-banner';
|
|
44
|
+
export { DotPages, type DotPagesProps } from '@hh.ru/magritte-ui-dot-pages';
|
|
45
|
+
export { ActionList, type ActionListProps } from '@hh.ru/magritte-ui-action-list';
|
|
46
|
+
export { NavigationBar, type NavigationBarSize, type NavigationBarProps, type NavigationBarIconProps, type NavigationBarItemProps, type NavigationBarItemArrayProps, } from '@hh.ru/magritte-ui-navigation-bar';
|
|
47
|
+
export * from '@hh.ru/magritte-ui-suggest';
|
|
48
|
+
export * from '@hh.ru/magritte-ui-select';
|
|
49
|
+
export * from '@hh.ru/magritte-ui-scrollable-container';
|
|
50
|
+
export * from '@hh.ru/magritte-ui-spacing';
|
|
51
|
+
export * from '@hh.ru/magritte-ui-form-label';
|
|
52
|
+
export * from '@hh.ru/magritte-ui-date-picker';
|
|
53
|
+
export * from '@hh.ru/magritte-ui-alert';
|
|
54
|
+
export { useCollapsible } from '@hh.ru/magritte-common-use-collapsible';
|
|
55
|
+
export * from '@hh.ru/magritte-ui-badge';
|
|
56
|
+
export * from '@hh.ru/magritte-ui-button-stack';
|
|
57
|
+
export * from '@hh.ru/magritte-ui-skeleton';
|
|
58
|
+
export * from '@hh.ru/magritte-common-use-loading-state';
|
package/index.js
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
export { Dummy } from '@hh.ru/magritte-ui-dummy';
|
|
2
|
+
export { GridColumn, GridHighlighter, GridLayout, GridRow } from '@hh.ru/magritte-ui-grid';
|
|
3
|
+
export { Breakpoint, BreakpointProvider, useBreakpoint } from '@hh.ru/magritte-ui-breakpoint';
|
|
4
|
+
export { useResize } from '@hh.ru/magritte-common-resize';
|
|
5
|
+
export { useCloseByClickOutside } from '@hh.ru/magritte-common-mouse';
|
|
6
|
+
export { useMultipleRefs } from '@hh.ru/magritte-common-use-multiple-refs';
|
|
7
|
+
export { Cookies } from '@hh.ru/magritte-common-cookies';
|
|
8
|
+
export { ThemeProvider } from '@hh.ru/magritte-ui-theme-provider';
|
|
9
|
+
export { Counter } from '@hh.ru/magritte-ui-counter';
|
|
10
|
+
export { Placeholder } from '@hh.ru/magritte-ui-placeholder';
|
|
11
|
+
export { Divider } from '@hh.ru/magritte-ui-divider';
|
|
12
|
+
export { Loader } from '@hh.ru/magritte-ui-loader';
|
|
13
|
+
export { Button } from '@hh.ru/magritte-ui-button';
|
|
14
|
+
export { DateTimeInput, Input, NumberInput, PasswordInput, SearchInput, UncontrolledDateTimeInput, UncontrolledInput, UncontrolledNumberInput, UncontrolledPasswordInput, UncontrolledSearchInput, useInputAriaProps } from '@hh.ru/magritte-ui-input';
|
|
15
|
+
export { Tag } from '@hh.ru/magritte-ui-tag';
|
|
16
|
+
export { keyboardKeys, useEscapeToClose } from '@hh.ru/magritte-common-keyboard';
|
|
17
|
+
export { useDebounce } from '@hh.ru/magritte-common-func-utils';
|
|
18
|
+
export { Snackbar, SnackbarContainer, SnackbarContextProvider, useAriaSnackbar } from '@hh.ru/magritte-ui-snackbar';
|
|
19
|
+
export { Timer, useTimer } from '@hh.ru/magritte-ui-timer';
|
|
20
|
+
export { Layer, LayerName } from '@hh.ru/magritte-ui-layer';
|
|
21
|
+
export { Text } from '@hh.ru/magritte-ui-typography';
|
|
22
|
+
export * from '@hh.ru/magritte-ui-link';
|
|
23
|
+
export * from '@hh.ru/magritte-ui-card';
|
|
24
|
+
export * from '@hh.ru/magritte-ui-tooltip';
|
|
25
|
+
export { Switch } from '@hh.ru/magritte-ui-switch';
|
|
26
|
+
export { CheckableChip, ChipsContainer, CustomChip } from '@hh.ru/magritte-ui-chips';
|
|
27
|
+
export { Title } from '@hh.ru/magritte-ui-title';
|
|
28
|
+
export { BottomSheet, BottomSheetFooter } from '@hh.ru/magritte-ui-bottom-sheet';
|
|
29
|
+
export { Tab, Tabs } from '@hh.ru/magritte-ui-tabs';
|
|
30
|
+
export * from '@hh.ru/magritte-ui-drop';
|
|
31
|
+
export { CheckableCard, CheckableCardScrollableContainer } from '@hh.ru/magritte-ui-checkable-card';
|
|
32
|
+
export { Checkbox, Radio } from '@hh.ru/magritte-ui-checkbox-radio';
|
|
33
|
+
export { Action } from '@hh.ru/magritte-ui-action';
|
|
34
|
+
export * from '@hh.ru/magritte-ui-avatar';
|
|
35
|
+
export * from '@hh.ru/magritte-ui-textarea';
|
|
36
|
+
export { Cell, CellText, LabelRight } from '@hh.ru/magritte-ui-cell';
|
|
37
|
+
export { Accordion } from '@hh.ru/magritte-ui-accordion';
|
|
38
|
+
export { Modal } from '@hh.ru/magritte-ui-modal';
|
|
39
|
+
export * from '@hh.ru/magritte-ui-number-pages';
|
|
40
|
+
export * from '@hh.ru/magritte-ui-breadcrumbs';
|
|
41
|
+
export { ProgressBar } from '@hh.ru/magritte-ui-progress-bar';
|
|
42
|
+
export { Banner } from '@hh.ru/magritte-ui-banner';
|
|
43
|
+
export { DotPages } from '@hh.ru/magritte-ui-dot-pages';
|
|
44
|
+
export { ActionList } from '@hh.ru/magritte-ui-action-list';
|
|
45
|
+
export { NavigationBar } from '@hh.ru/magritte-ui-navigation-bar';
|
|
46
|
+
export * from '@hh.ru/magritte-ui-suggest';
|
|
47
|
+
export * from '@hh.ru/magritte-ui-select';
|
|
48
|
+
export * from '@hh.ru/magritte-ui-scrollable-container';
|
|
49
|
+
export * from '@hh.ru/magritte-ui-spacing';
|
|
50
|
+
export * from '@hh.ru/magritte-ui-form-label';
|
|
51
|
+
export * from '@hh.ru/magritte-ui-date-picker';
|
|
52
|
+
export * from '@hh.ru/magritte-ui-alert';
|
|
53
|
+
export { useCollapsible } from '@hh.ru/magritte-common-use-collapsible';
|
|
54
|
+
export * from '@hh.ru/magritte-ui-badge';
|
|
55
|
+
export * from '@hh.ru/magritte-ui-button-stack';
|
|
56
|
+
export * from '@hh.ru/magritte-ui-skeleton';
|
|
57
|
+
export * from '@hh.ru/magritte-common-use-loading-state';
|
|
58
|
+
//# sourceMappingURL=index.js.map
|
package/index.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
package/index.mock.d.ts
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
export { Dummy } from '@hh.ru/magritte-ui-dummy';
|
|
2
|
+
export { GridHighlighter, GridColumn, GridLayout, GridRow, type GridColumnProps, type GridLayoutProps, } from '@hh.ru/magritte-ui-grid';
|
|
3
|
+
export { useBreakpoint, BreakpointProvider, Breakpoint } from '@hh.ru/magritte-ui-breakpoint';
|
|
4
|
+
export { useResize } from '@hh.ru/magritte-common-resize';
|
|
5
|
+
export { useCloseByClickOutside } from '@hh.ru/magritte-common-mouse';
|
|
6
|
+
export { useMultipleRefs } from '@hh.ru/magritte-common-use-multiple-refs';
|
|
7
|
+
export { Cookies } from '@hh.ru/magritte-common-cookies';
|
|
8
|
+
export { ThemeProvider } from '@hh.ru/magritte-ui-theme-provider';
|
|
9
|
+
export { Counter } from '@hh.ru/magritte-ui-counter';
|
|
10
|
+
export { Divider } from '@hh.ru/magritte-ui-divider';
|
|
11
|
+
export { type IconColor, type IconDisabledColor, type IconHoveredColor } from '@hh.ru/magritte-ui-icon';
|
|
12
|
+
export { Loader } from '@hh.ru/magritte-ui-loader/index.mock';
|
|
13
|
+
export { Button, type ButtonStyle, type ButtonMode, type ButtonSize, type ButtonProps, } from '@hh.ru/magritte-ui-button/index.mock';
|
|
14
|
+
export { type InputSize, Input, NumberInput, DateTimeInput, PasswordInput, SearchInput, UncontrolledInput, UncontrolledNumberInput, UncontrolledDateTimeInput, UncontrolledPasswordInput, UncontrolledSearchInput, } from '@hh.ru/magritte-ui-input/index.mock';
|
|
15
|
+
export { useInputAriaProps } from '@hh.ru/magritte-ui-input';
|
|
16
|
+
export { Tag, type TagSize, type TagStyle, type TagProps } from '@hh.ru/magritte-ui-tag/index.mock';
|
|
17
|
+
export { useEscapeToClose, keyboardKeys } from '@hh.ru/magritte-common-keyboard';
|
|
18
|
+
export { useDebounce } from '@hh.ru/magritte-common-func-utils';
|
|
19
|
+
export { Snackbar, SnackbarContainer, SnackbarContextProvider, type SnackbarProps, type SnackbarContainerProps, useAriaSnackbar, } from '@hh.ru/magritte-ui-snackbar';
|
|
20
|
+
export { useTimer, Timer, type TimerProps } from '@hh.ru/magritte-ui-timer';
|
|
21
|
+
export { Layer, LayerName } from '@hh.ru/magritte-ui-layer';
|
|
22
|
+
export { Text, type TextStyle, type TextTypography, type TextProps } from '@hh.ru/magritte-ui-typography/index.mock';
|
|
23
|
+
export * from '@hh.ru/magritte-ui-link';
|
|
24
|
+
export * from '@hh.ru/magritte-ui-card';
|
|
25
|
+
export * from '@hh.ru/magritte-ui-tooltip';
|
|
26
|
+
export { Switch } from '@hh.ru/magritte-ui-switch';
|
|
27
|
+
export { CheckableChip, CustomChip, type ChipStyle, ChipsContainer, type CustomChipProps, type CheckableChipProps, } from '@hh.ru/magritte-ui-chips/index.mock';
|
|
28
|
+
export { Title, type TitleProps } from '@hh.ru/magritte-ui-title';
|
|
29
|
+
export { BottomSheet, BottomSheetFooter, type BottomSheetHeight, type BottomSheetProps, type BottomSheetShowDivider, } from '@hh.ru/magritte-ui-bottom-sheet/index.mock';
|
|
30
|
+
export { Tabs, Tab, type TabId } from '@hh.ru/magritte-ui-tabs';
|
|
31
|
+
export * from '@hh.ru/magritte-ui-drop';
|
|
32
|
+
export { CheckableCard, CheckableCardScrollableContainer } from '@hh.ru/magritte-ui-checkable-card/index.mock';
|
|
33
|
+
export { Checkbox, Radio } from '@hh.ru/magritte-ui-checkbox-radio';
|
|
34
|
+
export { Action, type ActionMode, type ActionStyle, type ActionProps } from '@hh.ru/magritte-ui-action/index.mock';
|
|
35
|
+
export * from '@hh.ru/magritte-ui-avatar/index.mock';
|
|
36
|
+
export * from '@hh.ru/magritte-ui-textarea';
|
|
37
|
+
export { Cell, LabelRight, CellText, type CellTextProps, type LabelRightProps, type CellProps, } from '@hh.ru/magritte-ui-cell/index.mock';
|
|
38
|
+
export { Accordion, type AccordionPadding, type AccordionBorderRadius } from '@hh.ru/magritte-ui-accordion';
|
|
39
|
+
export { Modal } from '@hh.ru/magritte-ui-modal/index.mock';
|
|
40
|
+
export * from '@hh.ru/magritte-ui-number-pages';
|
|
41
|
+
export * from '@hh.ru/magritte-ui-breadcrumbs/index.mock';
|
|
42
|
+
export { ProgressBar, type ProgressBarStyle, type ProgressBarProps } from '@hh.ru/magritte-ui-progress-bar/index.mock';
|
|
43
|
+
export { Banner, type BannerProps } from '@hh.ru/magritte-ui-banner';
|
|
44
|
+
export { DotPages, type DotPagesProps } from '@hh.ru/magritte-ui-dot-pages/index.mock';
|
|
45
|
+
export { ActionList, type ActionListProps } from '@hh.ru/magritte-ui-action-list';
|
|
46
|
+
export { NavigationBar, type NavigationBarSize, type NavigationBarProps, type NavigationBarIconProps, type NavigationBarItemProps, type NavigationBarItemArrayProps, } from '@hh.ru/magritte-ui-navigation-bar/index.mock';
|
|
47
|
+
export * from '@hh.ru/magritte-ui-suggest/index.mock';
|
|
48
|
+
export * from '@hh.ru/magritte-ui-spacing/index.mock';
|
|
49
|
+
export * from '@hh.ru/magritte-ui-form-label/index.mock';
|
|
50
|
+
export * from '@hh.ru/magritte-ui-button-stack/index.mock';
|
|
51
|
+
export { Placeholder, type PlaceholderVerticalAlign, type PlaceholderButtonsAlign, type PlaceholderProps, } from '@hh.ru/magritte-ui-placeholder';
|
|
52
|
+
export { useCollapsible } from '@hh.ru/magritte-common-use-collapsible';
|
package/index.mock.js
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
export { Dummy } from '@hh.ru/magritte-ui-dummy';
|
|
2
|
+
export { GridColumn, GridHighlighter, GridLayout, GridRow } from '@hh.ru/magritte-ui-grid';
|
|
3
|
+
export { Breakpoint, BreakpointProvider, useBreakpoint } from '@hh.ru/magritte-ui-breakpoint';
|
|
4
|
+
export { useResize } from '@hh.ru/magritte-common-resize';
|
|
5
|
+
export { useCloseByClickOutside } from '@hh.ru/magritte-common-mouse';
|
|
6
|
+
export { useMultipleRefs } from '@hh.ru/magritte-common-use-multiple-refs';
|
|
7
|
+
export { Cookies } from '@hh.ru/magritte-common-cookies';
|
|
8
|
+
export { ThemeProvider } from '@hh.ru/magritte-ui-theme-provider';
|
|
9
|
+
export { Counter } from '@hh.ru/magritte-ui-counter';
|
|
10
|
+
export { Divider } from '@hh.ru/magritte-ui-divider';
|
|
11
|
+
export { Loader } from '@hh.ru/magritte-ui-loader/index.mock';
|
|
12
|
+
export { Button } from '@hh.ru/magritte-ui-button/index.mock';
|
|
13
|
+
export { DateTimeInput, Input, NumberInput, PasswordInput, SearchInput, UncontrolledDateTimeInput, UncontrolledInput, UncontrolledNumberInput, UncontrolledPasswordInput, UncontrolledSearchInput } from '@hh.ru/magritte-ui-input/index.mock';
|
|
14
|
+
export { useInputAriaProps } from '@hh.ru/magritte-ui-input';
|
|
15
|
+
export { Tag } from '@hh.ru/magritte-ui-tag/index.mock';
|
|
16
|
+
export { keyboardKeys, useEscapeToClose } from '@hh.ru/magritte-common-keyboard';
|
|
17
|
+
export { useDebounce } from '@hh.ru/magritte-common-func-utils';
|
|
18
|
+
export { Snackbar, SnackbarContainer, SnackbarContextProvider, useAriaSnackbar } from '@hh.ru/magritte-ui-snackbar';
|
|
19
|
+
export { Timer, useTimer } from '@hh.ru/magritte-ui-timer';
|
|
20
|
+
export { Layer, LayerName } from '@hh.ru/magritte-ui-layer';
|
|
21
|
+
export { Text } from '@hh.ru/magritte-ui-typography/index.mock';
|
|
22
|
+
export * from '@hh.ru/magritte-ui-link';
|
|
23
|
+
export * from '@hh.ru/magritte-ui-card';
|
|
24
|
+
export * from '@hh.ru/magritte-ui-tooltip';
|
|
25
|
+
export { Switch } from '@hh.ru/magritte-ui-switch';
|
|
26
|
+
export { CheckableChip, ChipsContainer, CustomChip } from '@hh.ru/magritte-ui-chips/index.mock';
|
|
27
|
+
export { Title } from '@hh.ru/magritte-ui-title';
|
|
28
|
+
export { BottomSheet, BottomSheetFooter } from '@hh.ru/magritte-ui-bottom-sheet/index.mock';
|
|
29
|
+
export { Tab, Tabs } from '@hh.ru/magritte-ui-tabs';
|
|
30
|
+
export * from '@hh.ru/magritte-ui-drop';
|
|
31
|
+
export { CheckableCard, CheckableCardScrollableContainer } from '@hh.ru/magritte-ui-checkable-card/index.mock';
|
|
32
|
+
export { Checkbox, Radio } from '@hh.ru/magritte-ui-checkbox-radio';
|
|
33
|
+
export { Action } from '@hh.ru/magritte-ui-action/index.mock';
|
|
34
|
+
export * from '@hh.ru/magritte-ui-avatar/index.mock';
|
|
35
|
+
export * from '@hh.ru/magritte-ui-textarea';
|
|
36
|
+
export { Cell, CellText, LabelRight } from '@hh.ru/magritte-ui-cell/index.mock';
|
|
37
|
+
export { Accordion } from '@hh.ru/magritte-ui-accordion';
|
|
38
|
+
export { Modal } from '@hh.ru/magritte-ui-modal/index.mock';
|
|
39
|
+
export * from '@hh.ru/magritte-ui-number-pages';
|
|
40
|
+
export * from '@hh.ru/magritte-ui-breadcrumbs/index.mock';
|
|
41
|
+
export { ProgressBar } from '@hh.ru/magritte-ui-progress-bar/index.mock';
|
|
42
|
+
export { Banner } from '@hh.ru/magritte-ui-banner';
|
|
43
|
+
export { DotPages } from '@hh.ru/magritte-ui-dot-pages/index.mock';
|
|
44
|
+
export { ActionList } from '@hh.ru/magritte-ui-action-list';
|
|
45
|
+
export { NavigationBar } from '@hh.ru/magritte-ui-navigation-bar/index.mock';
|
|
46
|
+
export * from '@hh.ru/magritte-ui-suggest/index.mock';
|
|
47
|
+
export * from '@hh.ru/magritte-ui-spacing/index.mock';
|
|
48
|
+
export * from '@hh.ru/magritte-ui-form-label/index.mock';
|
|
49
|
+
export * from '@hh.ru/magritte-ui-button-stack/index.mock';
|
|
50
|
+
export { Placeholder } from '@hh.ru/magritte-ui-placeholder';
|
|
51
|
+
export { useCollapsible } from '@hh.ru/magritte-common-use-collapsible';
|
|
52
|
+
//# sourceMappingURL=index.mock.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.mock.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
package/package.json
ADDED
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@hh.ru/magritte-ui",
|
|
3
|
+
"version": "55.2.1",
|
|
4
|
+
"main": "index.js",
|
|
5
|
+
"types": "index.d.ts",
|
|
6
|
+
"sideEffects": false,
|
|
7
|
+
"scripts": {
|
|
8
|
+
"build": "yarn root:build $(pwd)",
|
|
9
|
+
"build-test-branch": "yarn root:build-test-branch $(pwd)",
|
|
10
|
+
"changelog": "yarn root:changelog $(pwd)",
|
|
11
|
+
"prepack": "yarn root:prepack $(pwd)",
|
|
12
|
+
"postpublish": "yarn root:postpublish $(pwd)",
|
|
13
|
+
"eslint-test": "yarn root:eslint-test $(pwd)",
|
|
14
|
+
"stylelint-test": "yarn root:stylelint-test $(pwd)",
|
|
15
|
+
"ts-config": "yarn root:ts-config $(pwd)",
|
|
16
|
+
"ts-check": "yarn root:ts-check $(pwd)",
|
|
17
|
+
"test": "yarn root:test $(pwd)"
|
|
18
|
+
},
|
|
19
|
+
"dependencies": {
|
|
20
|
+
"@hh.ru/magritte-common-cookies": "0.1.10",
|
|
21
|
+
"@hh.ru/magritte-common-func-utils": "1.3.6",
|
|
22
|
+
"@hh.ru/magritte-common-keyboard": "3.0.2",
|
|
23
|
+
"@hh.ru/magritte-common-mouse": "1.1.8",
|
|
24
|
+
"@hh.ru/magritte-common-resize": "0.1.12",
|
|
25
|
+
"@hh.ru/magritte-common-use-collapsible": "1.0.3",
|
|
26
|
+
"@hh.ru/magritte-common-use-loading-state": "1.0.4",
|
|
27
|
+
"@hh.ru/magritte-common-use-multiple-refs": "1.1.2",
|
|
28
|
+
"@hh.ru/magritte-design-tokens": "18.1.1",
|
|
29
|
+
"@hh.ru/magritte-fonts": "1.0.7",
|
|
30
|
+
"@hh.ru/magritte-reset-css": "1.0.7",
|
|
31
|
+
"@hh.ru/magritte-ui-accordion": "2.5.9",
|
|
32
|
+
"@hh.ru/magritte-ui-action": "4.3.3",
|
|
33
|
+
"@hh.ru/magritte-ui-action-list": "5.2.42",
|
|
34
|
+
"@hh.ru/magritte-ui-alert": "1.2.8",
|
|
35
|
+
"@hh.ru/magritte-ui-avatar": "4.1.3",
|
|
36
|
+
"@hh.ru/magritte-ui-badge": "2.1.9",
|
|
37
|
+
"@hh.ru/magritte-ui-banner": "2.3.24",
|
|
38
|
+
"@hh.ru/magritte-ui-bottom-sheet": "4.1.22",
|
|
39
|
+
"@hh.ru/magritte-ui-breadcrumbs": "3.3.39",
|
|
40
|
+
"@hh.ru/magritte-ui-breakpoint": "4.0.1",
|
|
41
|
+
"@hh.ru/magritte-ui-button": "3.1.14",
|
|
42
|
+
"@hh.ru/magritte-ui-button-stack": "2.0.4",
|
|
43
|
+
"@hh.ru/magritte-ui-card": "6.0.2",
|
|
44
|
+
"@hh.ru/magritte-ui-cell": "2.2.4",
|
|
45
|
+
"@hh.ru/magritte-ui-checkable-card": "3.0.2",
|
|
46
|
+
"@hh.ru/magritte-ui-checkbox-radio": "2.1.4",
|
|
47
|
+
"@hh.ru/magritte-ui-chips": "3.0.23",
|
|
48
|
+
"@hh.ru/magritte-ui-counter": "4.0.8",
|
|
49
|
+
"@hh.ru/magritte-ui-date-picker": "3.1.2",
|
|
50
|
+
"@hh.ru/magritte-ui-divider": "1.1.24",
|
|
51
|
+
"@hh.ru/magritte-ui-dot-pages": "2.1.30",
|
|
52
|
+
"@hh.ru/magritte-ui-drop": "5.0.8",
|
|
53
|
+
"@hh.ru/magritte-ui-dummy": "1.1.22",
|
|
54
|
+
"@hh.ru/magritte-ui-form-label": "3.2.41",
|
|
55
|
+
"@hh.ru/magritte-ui-grid": "2.1.4",
|
|
56
|
+
"@hh.ru/magritte-ui-icon": "7.1.3",
|
|
57
|
+
"@hh.ru/magritte-ui-input": "5.0.12",
|
|
58
|
+
"@hh.ru/magritte-ui-layer": "2.0.3",
|
|
59
|
+
"@hh.ru/magritte-ui-link": "4.1.1",
|
|
60
|
+
"@hh.ru/magritte-ui-loader": "1.2.35",
|
|
61
|
+
"@hh.ru/magritte-ui-modal": "3.0.14",
|
|
62
|
+
"@hh.ru/magritte-ui-navigation-bar": "4.1.8",
|
|
63
|
+
"@hh.ru/magritte-ui-number-pages": "3.0.23",
|
|
64
|
+
"@hh.ru/magritte-ui-placeholder": "6.0.2",
|
|
65
|
+
"@hh.ru/magritte-ui-progress-bar": "3.1.3",
|
|
66
|
+
"@hh.ru/magritte-ui-scrollable-container": "4.3.8",
|
|
67
|
+
"@hh.ru/magritte-ui-select": "5.1.8",
|
|
68
|
+
"@hh.ru/magritte-ui-skeleton": "2.1.2",
|
|
69
|
+
"@hh.ru/magritte-ui-snackbar": "3.2.20",
|
|
70
|
+
"@hh.ru/magritte-ui-spacing": "2.0.21",
|
|
71
|
+
"@hh.ru/magritte-ui-suggest": "3.1.20",
|
|
72
|
+
"@hh.ru/magritte-ui-switch": "1.4.4",
|
|
73
|
+
"@hh.ru/magritte-ui-tabs": "3.1.44",
|
|
74
|
+
"@hh.ru/magritte-ui-tag": "2.0.11",
|
|
75
|
+
"@hh.ru/magritte-ui-textarea": "2.0.13",
|
|
76
|
+
"@hh.ru/magritte-ui-theme-provider": "1.1.21",
|
|
77
|
+
"@hh.ru/magritte-ui-timer": "1.2.24",
|
|
78
|
+
"@hh.ru/magritte-ui-title": "3.0.8",
|
|
79
|
+
"@hh.ru/magritte-ui-tooltip": "6.0.10",
|
|
80
|
+
"@hh.ru/magritte-ui-translate-guard": "0.1.10",
|
|
81
|
+
"@hh.ru/magritte-ui-typography": "3.0.8"
|
|
82
|
+
},
|
|
83
|
+
"peerDependencies": {
|
|
84
|
+
"classnames": ">=2.3.2",
|
|
85
|
+
"react": ">=18.2.0"
|
|
86
|
+
},
|
|
87
|
+
"publishConfig": {
|
|
88
|
+
"access": "public"
|
|
89
|
+
},
|
|
90
|
+
"gitHead": "b660dd64fca3eaad5ec44ea9a73f92bb0d9694aa"
|
|
91
|
+
}
|
package/product.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@hh.ru/magritte-ui-icon/product';
|
package/product.js
ADDED
package/product.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"product.js","sources":[],"sourcesContent":[],"names":[],"mappings":""}
|
package/reset.less
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import (inline) '@hh.ru/magritte-reset-css/reset.css';
|
package/service.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@hh.ru/magritte-ui-icon/service';
|
package/service.js
ADDED
package/service.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"service.js","sources":[],"sourcesContent":[],"names":[],"mappings":""}
|