@muraldevkit/ui-toolkit 2.64.0 → 2.66.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/dist/components/index.d.ts +1 -0
- package/dist/components/menu/MrlMenu/MrlMenu.d.ts +15 -1
- package/dist/components/rovingTabindex/MrlRovingTabindex/MrlRovingTabindex.d.ts +127 -0
- package/dist/components/rovingTabindex/MrlRovingTabindex/index.d.ts +1 -0
- package/dist/components/rovingTabindex/index.d.ts +1 -0
- package/dist/components/svg/config.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/utils/layers/index.d.ts +4 -0
- package/package.json +3 -1
|
@@ -30,6 +30,10 @@ export declare const PORTAL_LAYERS: {
|
|
|
30
30
|
readonly name: "mrl-tooltip-portal";
|
|
31
31
|
readonly zIndex: 50006;
|
|
32
32
|
};
|
|
33
|
+
readonly TOP: {
|
|
34
|
+
readonly name: "mrl-top-portal";
|
|
35
|
+
readonly zIndex: 50007;
|
|
36
|
+
};
|
|
33
37
|
};
|
|
34
38
|
/**
|
|
35
39
|
* Get the current portal layer based on the provided element
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@muraldevkit/ui-toolkit",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.66.0",
|
|
4
4
|
"description": "Mural's UI Toolkit",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.js",
|
|
@@ -80,6 +80,7 @@
|
|
|
80
80
|
"@types/classnames": "2.2.5",
|
|
81
81
|
"@types/jest": "29.5.1",
|
|
82
82
|
"@types/lodash.debounce": "4.0.7",
|
|
83
|
+
"@types/lodash.isequal": "4.5.8",
|
|
83
84
|
"@types/path-browserify": "1.0.2",
|
|
84
85
|
"@types/react": "16.8.25",
|
|
85
86
|
"@types/react-dom": "16.9.0",
|
|
@@ -134,6 +135,7 @@
|
|
|
134
135
|
"@react-spring/web": "9.4.2",
|
|
135
136
|
"classnames": "2.2.5",
|
|
136
137
|
"lodash.debounce": "4.0.8",
|
|
138
|
+
"lodash.isequal": "4.4.0",
|
|
137
139
|
"path-browserify": "1.0.1",
|
|
138
140
|
"react": ">=16.9",
|
|
139
141
|
"react-dom": ">=16.9"
|