@muraldevkit/ui-toolkit 4.41.7 → 4.42.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@muraldevkit/ui-toolkit",
3
- "version": "4.41.7",
3
+ "version": "4.42.0",
4
4
  "description": "Mural's UI Toolkit",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",
@@ -39,11 +39,8 @@
39
39
  },
40
40
  "license": "https://www.mural.co/terms/developer-addendum",
41
41
  "peerDependencies": {
42
- "@react-spring/web": "9.4.2",
43
42
  "@tactivos/mural-shared": "2.8.0",
44
- "lottie-web": "^5.9.6",
45
- "react": ">=16.9",
46
- "react-dom": ">=16.9"
43
+ "lottie-web": "^5.9.6"
47
44
  },
48
45
  "devDependencies": {
49
46
  "@babel/core": "7.21.4",
@@ -78,8 +75,8 @@
78
75
  "@types/lodash.debounce": "4.0.7",
79
76
  "@types/lodash.isequal": "4.5.8",
80
77
  "@types/path-browserify": "1.0.2",
81
- "@types/react": "17.0.83",
82
- "@types/react-dom": "17.0.26",
78
+ "@types/react": "18.2.22",
79
+ "@types/react-dom": "18.2.7",
83
80
  "@types/react-router-dom": "5.3.3",
84
81
  "@typescript-eslint/eslint-plugin": "4.33.0",
85
82
  "@typescript-eslint/parser": "4.33.0",
@@ -125,13 +122,13 @@
125
122
  "webpack-cli": "5.0.1"
126
123
  },
127
124
  "dependencies": {
128
- "@react-spring/web": "9.4.2",
125
+ "@react-spring/web": "9.4.5",
129
126
  "classnames": "2.5.1",
130
127
  "lodash.debounce": "4.0.8",
131
128
  "lodash.isequal": "4.4.0",
132
129
  "path-browserify": "1.0.1",
133
- "react": ">=16.9",
134
- "react-dom": ">=16.9",
130
+ "react": "18.2.0",
131
+ "react-dom": "18.2.0",
135
132
  "react-router-dom": "5.3.4",
136
133
  "react-select": "5.8.2"
137
134
  },
@@ -1,9 +0,0 @@
1
- /// <reference types="react" />
2
- import { MenuWithTriggerProps } from './MenuWithTrigger';
3
- /**
4
- * Demo of a menu with a trigger for stories and testing
5
- *
6
- * @param {MenuWithTriggerProps} props - The props for the menu with trigger
7
- * @returns {Element} The menu with trigger demo
8
- */
9
- export declare const MenuGroupWithTrigger: ({ alignment, position, spacing, actionState, customPosition, onClose }: MenuWithTriggerProps) => JSX.Element;
@@ -1,19 +0,0 @@
1
- /// <reference types="react" />
2
- import { CustomMenuPosition } from '..';
3
- import { MenuPosition, MenuAlignment } from '../constants';
4
- interface MenuWithTriggerProps {
5
- position?: MenuPosition;
6
- spacing?: 'default' | 'compact';
7
- alignment?: MenuAlignment;
8
- onClose?: () => void;
9
- customPosition?: CustomMenuPosition;
10
- triggerAlignment?: 'left' | 'right' | 'center';
11
- }
12
- /**
13
- * Demo of a menu that is manually opened by setting the action state.
14
- *
15
- * @param {MenuWithTriggerProps} props - The props for the menu with trigger
16
- * @returns {Element} The menu with trigger demo
17
- */
18
- export declare const MenuWithActionState: ({ alignment, position, spacing, customPosition, onClose, triggerAlignment }: MenuWithTriggerProps) => JSX.Element;
19
- export {};
@@ -1,19 +0,0 @@
1
- /// <reference types="react" />
2
- import { CustomMenuPosition } from '..';
3
- import { MenuPosition, ActionState, MenuAlignment } from '../constants';
4
- export interface MenuWithIconTriggerProps {
5
- position?: MenuPosition;
6
- spacing?: 'default' | 'compact';
7
- alignment?: MenuAlignment;
8
- actionState?: ActionState;
9
- onClose?: () => void;
10
- customPosition?: CustomMenuPosition;
11
- triggerAlignment?: 'left' | 'right' | 'center';
12
- }
13
- /**
14
- * Demo of a menu with a trigger for stories and testing
15
- *
16
- * @param {MenuWithIconTriggerProps} props - The props for the menu with trigger
17
- * @returns {Element} The menu with trigger demo
18
- */
19
- export declare const MenuWithIconTrigger: ({ alignment, position, spacing, actionState, customPosition, onClose, triggerAlignment }: MenuWithIconTriggerProps) => JSX.Element;
@@ -1,18 +0,0 @@
1
- /// <reference types="react" />
2
- import { MenuPosition, MenuAlignment, ActionState } from '../constants';
3
- interface MenuWithLinkProps {
4
- menuAlign?: MenuPosition;
5
- spacing?: 'default' | 'compact';
6
- alignment?: MenuAlignment;
7
- menuState?: ActionState;
8
- onClose?: () => void;
9
- triggerAlignment?: 'left' | 'right' | 'center';
10
- }
11
- /**
12
- * Demo of a menu with a trigger for stories and testing
13
- *
14
- * @param {MenuWithLinkProps} props - The props for the menu with trigger
15
- * @returns {Element} The menu with trigger demo
16
- */
17
- export declare const MenuWithLink: ({ menuAlign, alignment, menuState, spacing, onClose, triggerAlignment }: MenuWithLinkProps) => JSX.Element;
18
- export {};
@@ -1,19 +0,0 @@
1
- /// <reference types="react" />
2
- import { CustomMenuPosition } from '..';
3
- import { MenuPosition, ActionState, MenuAlignment } from '../constants';
4
- export interface MenuWithRTIProps {
5
- position?: MenuPosition;
6
- spacing?: 'default' | 'compact';
7
- alignment?: MenuAlignment;
8
- actionState?: ActionState;
9
- onClose?: () => void;
10
- customPosition?: CustomMenuPosition;
11
- triggerAlignment?: 'left' | 'right' | 'center';
12
- }
13
- /**
14
- * Demo of a menu within an instance of a roving tabindex
15
- *
16
- * @param {MenuWithRTIProps} props - The props for the menu with trigger
17
- * @returns {Element} The menu with trigger demo
18
- */
19
- export declare const MenuWithRTI: ({ alignment, position, spacing, actionState, customPosition, onClose }: MenuWithRTIProps) => JSX.Element;