wx-svelte-menu 2.4.2 → 2.5.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.
Files changed (2) hide show
  1. package/package.json +3 -3
  2. package/whatsnew.md +13 -81
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wx-svelte-menu",
3
- "version": "2.4.2",
3
+ "version": "2.5.0",
4
4
  "description": "Svelte menu component for creating dropdown menus, context menus, or complex menu bars",
5
5
  "productTag": "menu",
6
6
  "productTrial": false,
@@ -33,8 +33,8 @@
33
33
  },
34
34
  "homepage": "https://svar.dev/svelte/core/",
35
35
  "dependencies": {
36
- "@svar-ui/svelte-core": "2.4.1",
37
- "@svar-ui/lib-dom": "0.12.0"
36
+ "@svar-ui/svelte-core": "2.5.0",
37
+ "@svar-ui/lib-dom": "0.12.1"
38
38
  },
39
39
  "files": [
40
40
  "src",
package/whatsnew.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## 2.5.0
2
+
3
+ ### Fixes
4
+
5
+ - Incorrect submenu position when there is not enough space to the right
6
+
1
7
  ## 2.4.2
2
8
 
3
9
  ### Fixes
@@ -47,7 +53,7 @@ API changes with backward compatibility until 3.0
47
53
 
48
54
  ## 2.2.0
49
55
 
50
- - Using core@2.2.0
56
+ - Using Svelte Core v2.2.0
51
57
 
52
58
  ## 2.1.0
53
59
 
@@ -64,84 +70,10 @@ API changes with backward compatibility until 3.0
64
70
 
65
71
  ### 1.3.0
66
72
 
67
- - Public release, using core@1.3.0
68
-
69
- ## 1.2.4
70
-
71
- ### Updates
72
-
73
- - Ability to define custom css class for top Menu and submenu's containers
74
-
75
- ### Fixes
76
-
77
- - Incorrect z-index when shown from Popup
78
-
79
- ## 1.2.3
80
-
81
- ### Updates
82
-
83
- - When Menu is closed it doesn't affect other popup elements
84
-
85
- ### Fixes
86
-
87
- - Regression in repositioning Menu when clicking on next active area
88
-
89
- ## 1.2.1
90
-
91
- ### Fixes
92
-
93
- - Regression in popup closing in some cases
94
-
95
- ## 1.2.0
96
-
97
- - Using core@1.2.0
98
-
99
- ## 1.1.1
100
-
101
- ### Fixes
102
-
103
- - Incorrect positioning in "point" mode when menu initialized not as child of document.body
104
- - Submenus lost context values
105
-
106
- ## 1.1.0
107
-
108
- ### Updates
109
-
110
- - Visual improvements
111
-
112
- ### Fixes
113
-
114
- - Incorrect auto-position logic
115
-
116
- #### 0.0.1-rc21
117
-
118
- - [fix] space between icon and text
119
-
120
- #### 0.0.1-rc20
121
-
122
- - [add] auto-fit for sub menus
123
-
124
- #### 0.0.1-rc19
125
-
126
- - [add] MenuBar - top level menu bar
127
-
128
- #### 0.0.1-rc18
129
-
130
- - menu doesn't require that all items have an unique IDs ( will generate missed ids on its own )
131
-
132
- #### 0.0.1-rc17
133
-
134
- - fix position in scrolled container
135
- - temporary fix for cypress tests
136
-
137
- #### 0.0.1-rc11
138
-
139
- - updated styles
140
- - bottom-fit mode
141
-
142
- #### 0.0.1-rc10
73
+ ### Initial features
143
74
 
144
- - ability to init menu in some specific container
145
- - ability to define subtext ( hotkey, etc. )
146
- - ability to use custom components as menu items
147
- - ability to use left and bottom-left position strategies
75
+ - Adding menu widgets: Menu, MenuBar, DropDownMenu, ContextMenu, ActionMenu
76
+ - Ability to init Menu in some specific container
77
+ - Ability to define subtext ( hotkey, etc. )
78
+ - Ability to use custom components as menu items
79
+ - Ability to use left and bottom-left position strategies