@hh.ru/magritte-ui 131.2.0 → 132.0.0
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/index.d.ts +2 -1
- package/index.js +1 -0
- package/index.js.map +1 -1
- package/index.mock.d.ts +2 -1
- package/index.mock.js +1 -0
- package/index.mock.js.map +1 -1
- package/package.json +10 -9
package/index.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ export { useResize } from '@hh.ru/magritte-common-resize';
|
|
|
5
5
|
export { useCloseByClickOutside } from '@hh.ru/magritte-common-mouse';
|
|
6
6
|
export { useMultipleRefs } from '@hh.ru/magritte-common-use-multiple-refs';
|
|
7
7
|
export { Cookies } from '@hh.ru/magritte-common-cookies';
|
|
8
|
-
export { Placeholder, type
|
|
8
|
+
export { Placeholder, type PlaceholderProps, type PlaceholderVerticalAlign } from '@hh.ru/magritte-ui-placeholder';
|
|
9
9
|
export { Divider } from '@hh.ru/magritte-ui-divider';
|
|
10
10
|
export { type IconColor, type IconDisabledColor, type IconHoveredColor } from '@hh.ru/magritte-ui-icon';
|
|
11
11
|
export { Loader } from '@hh.ru/magritte-ui-loader';
|
|
@@ -82,3 +82,4 @@ export * from '@hh.ru/magritte-ui-content-overlay';
|
|
|
82
82
|
export * from '@hh.ru/magritte-ui-floating-button';
|
|
83
83
|
export * from '@hh.ru/magritte-ui-nav-bar';
|
|
84
84
|
export * from '@hh.ru/magritte-ui-full-screen-loader';
|
|
85
|
+
export * from '@hh.ru/magritte-ui-media-viewer';
|
package/index.js
CHANGED
|
@@ -80,4 +80,5 @@ export * from '@hh.ru/magritte-ui-content-overlay';
|
|
|
80
80
|
export * from '@hh.ru/magritte-ui-floating-button';
|
|
81
81
|
export * from '@hh.ru/magritte-ui-nav-bar';
|
|
82
82
|
export * from '@hh.ru/magritte-ui-full-screen-loader';
|
|
83
|
+
export * from '@hh.ru/magritte-ui-media-viewer';
|
|
83
84
|
//# sourceMappingURL=index.js.map
|
package/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
package/index.mock.d.ts
CHANGED
|
@@ -47,7 +47,7 @@ export * from '@hh.ru/magritte-ui-suggest/index.mock';
|
|
|
47
47
|
export * from '@hh.ru/magritte-ui-spacing/index.mock';
|
|
48
48
|
export * from '@hh.ru/magritte-ui-form-label/index.mock';
|
|
49
49
|
export * from '@hh.ru/magritte-ui-button-stack/index.mock';
|
|
50
|
-
export { Placeholder, type
|
|
50
|
+
export { Placeholder, type PlaceholderProps, type PlaceholderVerticalAlign } from '@hh.ru/magritte-ui-placeholder';
|
|
51
51
|
export { useCollapsible } from '@hh.ru/magritte-common-use-collapsible';
|
|
52
52
|
export * from '@hh.ru/magritte-ui-branded-button/index.mock';
|
|
53
53
|
export * from '@hh.ru/magritte-ui-form-helper/index.mock';
|
|
@@ -74,3 +74,4 @@ export * from '@hh.ru/magritte-ui-content-overlay/index.mock';
|
|
|
74
74
|
export * from '@hh.ru/magritte-ui-floating-button/index.mock';
|
|
75
75
|
export * from '@hh.ru/magritte-ui-nav-bar/index.mock';
|
|
76
76
|
export * from '@hh.ru/magritte-ui-full-screen-loader';
|
|
77
|
+
export * from '@hh.ru/magritte-ui-media-viewer/index.mock';
|
package/index.mock.js
CHANGED
|
@@ -73,4 +73,5 @@ export * from '@hh.ru/magritte-ui-content-overlay/index.mock';
|
|
|
73
73
|
export * from '@hh.ru/magritte-ui-floating-button/index.mock';
|
|
74
74
|
export * from '@hh.ru/magritte-ui-nav-bar/index.mock';
|
|
75
75
|
export * from '@hh.ru/magritte-ui-full-screen-loader';
|
|
76
|
+
export * from '@hh.ru/magritte-ui-media-viewer/index.mock';
|
|
76
77
|
//# sourceMappingURL=index.mock.js.map
|
package/index.mock.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.mock.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.mock.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hh.ru/magritte-ui",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "132.0.0",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"types": "index.d.ts",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -39,19 +39,19 @@
|
|
|
39
39
|
"@hh.ru/magritte-ui-assistant": "1.0.25",
|
|
40
40
|
"@hh.ru/magritte-ui-avatar": "8.0.15",
|
|
41
41
|
"@hh.ru/magritte-ui-badge": "4.0.5",
|
|
42
|
-
"@hh.ru/magritte-ui-banner": "6.1.
|
|
42
|
+
"@hh.ru/magritte-ui-banner": "6.1.8",
|
|
43
43
|
"@hh.ru/magritte-ui-bottom-sheet": "9.2.10",
|
|
44
44
|
"@hh.ru/magritte-ui-branded-button": "2.2.4",
|
|
45
45
|
"@hh.ru/magritte-ui-breadcrumbs": "7.1.15",
|
|
46
46
|
"@hh.ru/magritte-ui-breakpoint": "6.0.6",
|
|
47
47
|
"@hh.ru/magritte-ui-button": "7.1.3",
|
|
48
|
-
"@hh.ru/magritte-ui-button-stack": "
|
|
48
|
+
"@hh.ru/magritte-ui-button-stack": "3.0.0",
|
|
49
49
|
"@hh.ru/magritte-ui-card": "8.3.7",
|
|
50
50
|
"@hh.ru/magritte-ui-cell": "7.2.4",
|
|
51
51
|
"@hh.ru/magritte-ui-checkable-card": "5.0.6",
|
|
52
52
|
"@hh.ru/magritte-ui-checkbox-radio": "4.1.3",
|
|
53
53
|
"@hh.ru/magritte-ui-chips": "6.2.2",
|
|
54
|
-
"@hh.ru/magritte-ui-chips-input": "9.3.
|
|
54
|
+
"@hh.ru/magritte-ui-chips-input": "9.3.16",
|
|
55
55
|
"@hh.ru/magritte-ui-chips-trigger": "4.2.10",
|
|
56
56
|
"@hh.ru/magritte-ui-content-overlay": "1.1.1",
|
|
57
57
|
"@hh.ru/magritte-ui-date-picker": "6.1.6",
|
|
@@ -68,13 +68,14 @@
|
|
|
68
68
|
"@hh.ru/magritte-ui-layer": "3.2.1",
|
|
69
69
|
"@hh.ru/magritte-ui-link": "7.1.5",
|
|
70
70
|
"@hh.ru/magritte-ui-loader": "2.1.3",
|
|
71
|
+
"@hh.ru/magritte-ui-media-viewer": "1.2.0",
|
|
71
72
|
"@hh.ru/magritte-ui-modal": "9.7.10",
|
|
72
73
|
"@hh.ru/magritte-ui-nav-bar": "1.3.3",
|
|
73
74
|
"@hh.ru/magritte-ui-navigation-bar": "10.1.6",
|
|
74
75
|
"@hh.ru/magritte-ui-number-pages": "4.1.4",
|
|
75
|
-
"@hh.ru/magritte-ui-phone-input": "4.2.
|
|
76
|
+
"@hh.ru/magritte-ui-phone-input": "4.2.6",
|
|
76
77
|
"@hh.ru/magritte-ui-pincode-input": "2.4.2",
|
|
77
|
-
"@hh.ru/magritte-ui-placeholder": "
|
|
78
|
+
"@hh.ru/magritte-ui-placeholder": "11.0.0",
|
|
78
79
|
"@hh.ru/magritte-ui-progress-bar": "5.0.17",
|
|
79
80
|
"@hh.ru/magritte-ui-rating-review": "3.1.4",
|
|
80
81
|
"@hh.ru/magritte-ui-rating-smiles": "2.0.16",
|
|
@@ -82,7 +83,7 @@
|
|
|
82
83
|
"@hh.ru/magritte-ui-scrollable-container": "6.1.2",
|
|
83
84
|
"@hh.ru/magritte-ui-scrollbar": "1.0.17",
|
|
84
85
|
"@hh.ru/magritte-ui-segmented": "2.1.4",
|
|
85
|
-
"@hh.ru/magritte-ui-select": "12.4.
|
|
86
|
+
"@hh.ru/magritte-ui-select": "12.4.16",
|
|
86
87
|
"@hh.ru/magritte-ui-skeleton": "3.0.16",
|
|
87
88
|
"@hh.ru/magritte-ui-snackbar": "6.2.5",
|
|
88
89
|
"@hh.ru/magritte-ui-spacing": "2.1.10",
|
|
@@ -103,7 +104,7 @@
|
|
|
103
104
|
"@hh.ru/magritte-ui-tree-selector": "5.5.1",
|
|
104
105
|
"@hh.ru/magritte-ui-trigger": "4.2.2",
|
|
105
106
|
"@hh.ru/magritte-ui-typography": "4.5.1",
|
|
106
|
-
"@hh.ru/magritte-ui-upload": "4.2.
|
|
107
|
+
"@hh.ru/magritte-ui-upload": "4.2.5"
|
|
107
108
|
},
|
|
108
109
|
"peerDependencies": {
|
|
109
110
|
"classnames": ">=2.3.2",
|
|
@@ -114,5 +115,5 @@
|
|
|
114
115
|
"publishConfig": {
|
|
115
116
|
"access": "public"
|
|
116
117
|
},
|
|
117
|
-
"gitHead": "
|
|
118
|
+
"gitHead": "494e7d82d7d01dfd9a60460b9b94f08a7ef609d5"
|
|
118
119
|
}
|