@guillotinaweb/react-gmi 0.22.3 → 0.23.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/css/style.css +8837 -6233
- package/dist/css/style.css.map +1 -0
- package/dist/react-gmi.esm.js +205 -209
- package/dist/react-gmi.esm.js.map +1 -1
- package/dist/react-gmi.js +205 -209
- package/dist/react-gmi.js.map +1 -1
- package/dist/react-gmi.modern.js +142 -146
- package/dist/react-gmi.modern.js.map +1 -1
- package/dist/react-gmi.umd.js +205 -209
- package/dist/react-gmi.umd.js.map +1 -1
- package/package.json +8 -8
- package/CHANGELOG.md +0 -245
- package/dist/components/panel/requester.d.ts +0 -1
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.
|
|
2
|
+
"version": "0.23.0",
|
|
3
3
|
"repository": {
|
|
4
4
|
"type": "git",
|
|
5
5
|
"url": "git@github.com:guillotinaweb/guillotina_react.git"
|
|
@@ -15,15 +15,14 @@
|
|
|
15
15
|
"name": "@guillotinaweb/react-gmi",
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"brace": "0.11.1",
|
|
18
|
-
"bulma": "0.9.
|
|
18
|
+
"bulma": "0.9.4",
|
|
19
19
|
"jwt-decode": "3.1.2",
|
|
20
20
|
"prop-types": "15.7.2",
|
|
21
|
-
"react-ace": "9.2.1",
|
|
22
21
|
"react-useportal": "1.0.13"
|
|
23
22
|
},
|
|
24
23
|
"peerDependencies": {
|
|
25
|
-
"react": "^16.12.0",
|
|
26
|
-
"react-dom": "^16.12.0"
|
|
24
|
+
"react": "^16.12.0 || ^17.0.0 || ^18.0.0",
|
|
25
|
+
"react-dom": "^16.12.0 || ^17.0.0 || ^18.0.0"
|
|
27
26
|
},
|
|
28
27
|
"devDependencies": {
|
|
29
28
|
"@babel/cli": "7.12.10",
|
|
@@ -33,7 +32,7 @@
|
|
|
33
32
|
"@testing-library/user-event": "12.6.0",
|
|
34
33
|
"husky": "4.3.6",
|
|
35
34
|
"microbundle": "0.13.0",
|
|
36
|
-
"
|
|
35
|
+
"sass": "1.69.5",
|
|
37
36
|
"prettier": "2.2.1",
|
|
38
37
|
"serialize-javascript": "5.0.1"
|
|
39
38
|
},
|
|
@@ -43,7 +42,7 @@
|
|
|
43
42
|
"format:check": "prettier --check \"src/**/*.js\"",
|
|
44
43
|
"build": "yarn build:js && yarn build:css",
|
|
45
44
|
"build:js": "rm -rf ./dist && microbundle --jsx React.createElement --no-compress --sourcemap",
|
|
46
|
-
"build:css": "rm -rf ./dist/css && mkdir ./dist/css &&
|
|
45
|
+
"build:css": "rm -rf ./dist/css && mkdir ./dist/css && sass ./src/guillo-gmi/scss/styles.sass ./dist/css/style.css",
|
|
47
46
|
"prepublish": "yarn build"
|
|
48
47
|
},
|
|
49
48
|
"eslintConfig": {
|
|
@@ -74,5 +73,6 @@
|
|
|
74
73
|
},
|
|
75
74
|
"author": "Jordi Collell <jordic@gmail.com> ",
|
|
76
75
|
"license": "MIT",
|
|
77
|
-
"homepage": "https://github.com/guillotinaweb/guillotina_react/"
|
|
76
|
+
"homepage": "https://github.com/guillotinaweb/guillotina_react/",
|
|
77
|
+
"packageManager": "yarn@1.22.19"
|
|
78
78
|
}
|
package/CHANGELOG.md
DELETED
|
@@ -1,245 +0,0 @@
|
|
|
1
|
-
0.22.3
|
|
2
|
-
------
|
|
3
|
-
- fix: remove items path #167
|
|
4
|
-
- feat: select principals show id if fullname not exist
|
|
5
|
-
- chore: update dependences
|
|
6
|
-
|
|
7
|
-
0.22.2
|
|
8
|
-
------
|
|
9
|
-
- chore: update dependences
|
|
10
|
-
|
|
11
|
-
0.22.1
|
|
12
|
-
------
|
|
13
|
-
- Fix export
|
|
14
|
-
|
|
15
|
-
0.22.0
|
|
16
|
-
------
|
|
17
|
-
- Refactor get current context in client and rest utilities. #118
|
|
18
|
-
- Fixed default values in copy action
|
|
19
|
-
- Added some tests of copy and move elements in panel of items.
|
|
20
|
-
|
|
21
|
-
0.21.0
|
|
22
|
-
------
|
|
23
|
-
- Allow override RenderFieldComponent. #146
|
|
24
|
-
|
|
25
|
-
0.20.1
|
|
26
|
-
------
|
|
27
|
-
- Fix principal select options in permissions tab #147
|
|
28
|
-
|
|
29
|
-
0.20.0
|
|
30
|
-
------
|
|
31
|
-
- Add users in principals to modify their permissions and handle errors when change permission in some object. #145
|
|
32
|
-
|
|
33
|
-
0.19.0
|
|
34
|
-
------
|
|
35
|
-
- Add date type input in edit component #144
|
|
36
|
-
|
|
37
|
-
0.18.0
|
|
38
|
-
------
|
|
39
|
-
- Add itemsColumn in registry to allow configure columns in items panel by type #142
|
|
40
|
-
|
|
41
|
-
0.17.0
|
|
42
|
-
------
|
|
43
|
-
- Search: use always search function and allow to configure depth param #133
|
|
44
|
-
|
|
45
|
-
0.16.0
|
|
46
|
-
------
|
|
47
|
-
- Add GMI project #97
|
|
48
|
-
- Add search engine configuration #97
|
|
49
|
-
|
|
50
|
-
0.15.1
|
|
51
|
-
------
|
|
52
|
-
- Normalize upload file name #129
|
|
53
|
-
|
|
54
|
-
0.15.0
|
|
55
|
-
------
|
|
56
|
-
- Make more generic the search input field #125
|
|
57
|
-
|
|
58
|
-
0.14.1
|
|
59
|
-
------
|
|
60
|
-
- Allow open new tab navigation #116
|
|
61
|
-
- Fix microbundle bundle bug #115
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
0.14.0
|
|
65
|
-
------
|
|
66
|
-
- Add key as fallback to value.title + hide table if all properties are ignored + update docs (#109)
|
|
67
|
-
- e2e cypress retry failed tests (#110)
|
|
68
|
-
- Implement refresh without spinner (transparent=true) (#111)
|
|
69
|
-
- Add data-test property in createBtn context tool bar (#113)
|
|
70
|
-
- Add datatest search input (#114)
|
|
71
|
-
|
|
72
|
-
0.13.1
|
|
73
|
-
------
|
|
74
|
-
- Add classNameInput prop in checkbox and modify placeholder input_list (#106)
|
|
75
|
-
- Add error message in search_input (#106)
|
|
76
|
-
- Add loading in add item action (#106)
|
|
77
|
-
|
|
78
|
-
0.13.0
|
|
79
|
-
------
|
|
80
|
-
- Add filter type in items panel. (#105)
|
|
81
|
-
|
|
82
|
-
0.12.2
|
|
83
|
-
------
|
|
84
|
-
- Fix open new tab downloadFile, firefox (#104)
|
|
85
|
-
|
|
86
|
-
0.12.1
|
|
87
|
-
------
|
|
88
|
-
- Fix attachment and multiattachment behaviors (#103)
|
|
89
|
-
|
|
90
|
-
0.12.0
|
|
91
|
-
------
|
|
92
|
-
- Add querycondition prop in search_input (#100)
|
|
93
|
-
- Fix - Export actions panel (#101)
|
|
94
|
-
- Edit properties fields (#96)
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
0.11.0
|
|
98
|
-
------
|
|
99
|
-
- add actions panel in container folder and item types (#99)
|
|
100
|
-
|
|
101
|
-
0.10.0
|
|
102
|
-
------
|
|
103
|
-
- Improve build (#95)
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
0.9.0
|
|
107
|
-
------
|
|
108
|
-
- Isolate client (#91)
|
|
109
|
-
- Improvement fields (#90)
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
0.8.0
|
|
113
|
-
------
|
|
114
|
-
|
|
115
|
-
- Replace react-use to own hooks (#82)
|
|
116
|
-
- Add prettier (#83)
|
|
117
|
-
- Add LICENSE and CONTRIBUTING.md (#86)
|
|
118
|
-
- e2e test own project (#84)
|
|
119
|
-
- Some fixes (#88)
|
|
120
|
-
- CI run workflows (#89)
|
|
121
|
-
|
|
122
|
-
0.7.1
|
|
123
|
-
------
|
|
124
|
-
- e2e test own project
|
|
125
|
-
- fix github actions
|
|
126
|
-
|
|
127
|
-
0.7.0
|
|
128
|
-
------
|
|
129
|
-
- Package upgrades
|
|
130
|
-
- More resource personalized from registry
|
|
131
|
-
|
|
132
|
-
0.6.4
|
|
133
|
-
------
|
|
134
|
-
- Allow to add a custom flash function on config
|
|
135
|
-
|
|
136
|
-
0.4.11
|
|
137
|
-
----
|
|
138
|
-
- Fix issue with React and microbundle
|
|
139
|
-
|
|
140
|
-
0.4.10
|
|
141
|
-
----
|
|
142
|
-
- Fix open breadcrumb links in a new browser tab [aralroca]
|
|
143
|
-
|
|
144
|
-
0.4.9
|
|
145
|
-
----
|
|
146
|
-
- Add pagination also in the bottom of the page [aralroca]
|
|
147
|
-
|
|
148
|
-
0.4.8
|
|
149
|
-
----
|
|
150
|
-
- Allow modify id copying items [aralroca]
|
|
151
|
-
- Fill current path as default path when copying items [aralroca]
|
|
152
|
-
|
|
153
|
-
0.4.7
|
|
154
|
-
----
|
|
155
|
-
- Move column definition to GuillotinaClient to overwrite in an easier way [aralroca]
|
|
156
|
-
|
|
157
|
-
0.4.6
|
|
158
|
-
----
|
|
159
|
-
- Fix duplicate items in same folder (add a suffix to the id) [aralroca]
|
|
160
|
-
|
|
161
|
-
0.4.5
|
|
162
|
-
----
|
|
163
|
-
- Fix TabsPanel crash when 'current' tab doesn't exist in 'tabs'
|
|
164
|
-
[masipcat]
|
|
165
|
-
|
|
166
|
-
0.4.4
|
|
167
|
-
----
|
|
168
|
-
- Fix return value of rest.getHeaders() and auth.getHeadres() when not authenticated
|
|
169
|
-
[masipcat]
|
|
170
|
-
|
|
171
|
-
0.4.3
|
|
172
|
-
----
|
|
173
|
-
- Scroll to top after call to Ctx.flash
|
|
174
|
-
|
|
175
|
-
0.4.2
|
|
176
|
-
----
|
|
177
|
-
- fix bug on behaviors change
|
|
178
|
-
|
|
179
|
-
0.4.1
|
|
180
|
-
----
|
|
181
|
-
- Add ErrorBoundary as view in registry that can be overwritten
|
|
182
|
-
[masipcat]
|
|
183
|
-
- Remove panel requester (too much bundle size for what it provides)
|
|
184
|
-
|
|
185
|
-
0.4.0
|
|
186
|
-
----
|
|
187
|
-
- e2e first test
|
|
188
|
-
- e2e github action
|
|
189
|
-
- e2e test content
|
|
190
|
-
[psanlorenzo]
|
|
191
|
-
|
|
192
|
-
- Fix issue when selecting multiple items on different depths with same id
|
|
193
|
-
- Return back the delete button (it's more ergonomic)
|
|
194
|
-
- Fix compatibility with braking changes on Guillotina 6
|
|
195
|
-
- Correctly report failed delete actions, showing a stringify version of the error
|
|
196
|
-
- Add a preload spinner on delete.
|
|
197
|
-
- Add a new config setting to be able to set a delay after delete
|
|
198
|
-
(That's mostly to workaround elastic delay index)
|
|
199
|
-
[jordic]
|
|
200
|
-
|
|
201
|
-
0.3.4
|
|
202
|
-
----
|
|
203
|
-
- Be able to setup default properties showing on panel properties
|
|
204
|
-
- Fix auth header on client
|
|
205
|
-
|
|
206
|
-
0.3.3
|
|
207
|
-
----
|
|
208
|
-
- If there is no @addable-type hide the button
|
|
209
|
-
- Swap columns modified/created (are wrong)
|
|
210
|
-
- Be able to customize properties view
|
|
211
|
-
|
|
212
|
-
0.3.2
|
|
213
|
-
----
|
|
214
|
-
- If there is only one @addable-type just show it (without dropdown)
|
|
215
|
-
|
|
216
|
-
0.3.1
|
|
217
|
-
----
|
|
218
|
-
- Small UI improvements
|
|
219
|
-
- Fix bug when search pagination it's not reset
|
|
220
|
-
|
|
221
|
-
0.3.0
|
|
222
|
-
----
|
|
223
|
-
- Move/copy/delete multiple items
|
|
224
|
-
[aralroca]
|
|
225
|
-
- Some fixes
|
|
226
|
-
[jordic]
|
|
227
|
-
|
|
228
|
-
0.2.2 alpha
|
|
229
|
-
---
|
|
230
|
-
- Fix issue on container creation
|
|
231
|
-
- Be able to personalize icons for custom content types
|
|
232
|
-
- Fix bug when providing custom config
|
|
233
|
-
- Compat layer on serializer for G5
|
|
234
|
-
|
|
235
|
-
0.1.0alpha
|
|
236
|
-
---
|
|
237
|
-
- Don't let registry fail when looking up new from content-types
|
|
238
|
-
- Added initial view for editing group properties
|
|
239
|
-
- Added microbundle to package the library as npm package
|
|
240
|
-
- Added an integration example (still rude) of guillotina with
|
|
241
|
-
next.js
|
|
242
|
-
- Fix some issues with ciruclar dependencies when exporting the npm package.
|
|
243
|
-
- Never use the registry directly, The registry should be obtained throught the Context.
|
|
244
|
-
|
|
245
|
-
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export function PanelRequester(): any;
|