@michalrakus/x-react-web-lib 1.0.0 → 1.1.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/LICENSE.md +21 -0
- package/XInputTextarea.d.ts +3 -0
- package/XInputTextarea.js +5 -0
- package/gulpfile.js +1 -0
- package/lib/administration/XBrowseMetaBrowse.js +2 -1
- package/lib/administration/XBrowseMetaForm.js +4 -2
- package/lib/administration/XUserBrowse.js +3 -2
- package/lib/administration/XUserForm.js +5 -3
- package/lib/components/SourceCodeLinkEntity.js +3 -2
- package/lib/components/XAutoComplete.d.ts +3 -3
- package/lib/components/XAutoComplete.js +19 -38
- package/lib/components/XAutoCompleteBase.d.ts +1 -1
- package/lib/components/XAutoCompleteBase.js +27 -23
- package/lib/components/XBrowse.js +11 -5
- package/lib/components/XButton.js +2 -1
- package/lib/components/XButtonIconSmall.js +2 -1
- package/lib/components/XChangePasswordForm.js +12 -7
- package/lib/components/XCheckbox.d.ts +8 -10
- package/lib/components/XCheckbox.js +39 -31
- package/lib/components/XCheckboxDT.js +2 -1
- package/lib/components/XDataTable.js +16 -10
- package/lib/components/XDropdown.d.ts +4 -3
- package/lib/components/XDropdown.js +24 -45
- package/lib/components/XDropdownDT.js +10 -5
- package/lib/components/XDropdownDTFilter.js +12 -7
- package/lib/components/XDropdownFormDTFilter.js +12 -7
- package/lib/components/XEditColumnDialog.js +12 -7
- package/lib/components/XErrors.d.ts +1 -0
- package/lib/components/XExportRowsDialog.js +13 -8
- package/lib/components/XFieldSelector.js +11 -6
- package/lib/components/XFormBase.d.ts +1 -0
- package/lib/components/XFormBase.js +50 -22
- package/lib/components/XFormBaseT.js +3 -1
- package/lib/components/XFormComponent.d.ts +10 -6
- package/lib/components/XFormComponent.js +63 -49
- package/lib/components/XFormDataTable2.d.ts +8 -3
- package/lib/components/XFormDataTable2.js +115 -32
- package/lib/components/XFormFooter.js +2 -1
- package/lib/components/XFormNavigator3.js +18 -7
- package/lib/components/XHolders.js +4 -2
- package/lib/components/XInput.d.ts +13 -0
- package/lib/components/XInput.js +38 -0
- package/lib/components/XInputDate.js +3 -2
- package/lib/components/XInputDateDT.js +3 -2
- package/lib/components/XInputDecimal.js +2 -1
- package/lib/components/XInputDecimalDT.js +2 -1
- package/lib/components/XInputText.d.ts +6 -11
- package/lib/components/XInputText.js +17 -50
- package/lib/components/XInputTextDT.js +4 -4
- package/lib/components/XInputTextarea.d.ts +18 -0
- package/lib/components/XInputTextarea.js +85 -0
- package/lib/components/XLazyDataTable.d.ts +3 -0
- package/lib/components/XLazyDataTable.js +166 -79
- package/lib/components/XLoginDialog.js +2 -1
- package/lib/components/XLoginForm.js +11 -6
- package/lib/components/XResponseError.js +4 -2
- package/lib/components/XSearchButton.d.ts +2 -3
- package/lib/components/XSearchButton.js +15 -36
- package/lib/components/XSearchButtonDT.js +13 -8
- package/lib/components/XSearchButtonOld.js +13 -8
- package/lib/components/XToOneAssocButton.js +2 -1
- package/lib/components/XUtils.d.ts +3 -1
- package/lib/components/XUtils.js +32 -5
- package/lib/components/XUtilsConversions.js +10 -2
- package/lib/components/XUtilsMetadata.d.ts +1 -1
- package/lib/components/XUtilsMetadata.js +20 -11
- package/lib/components/useXToken.js +1 -1
- package/lib/serverApi/ExportImportParam.d.ts +3 -3
- package/lib/serverApi/FindParam.d.ts +3 -13
- package/lib/serverApi/FindParam.js +14 -0
- package/lib/serverApi/XUtilsCommon.js +2 -2
- package/package.json +24 -25
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@michalrakus/x-react-web-lib",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"clean": "rimraf lib",
|
|
@@ -18,33 +18,32 @@
|
|
|
18
18
|
"preinstall": "npx only-allow pnpm"
|
|
19
19
|
},
|
|
20
20
|
"author": "Michal Rakus",
|
|
21
|
-
"license": "
|
|
22
|
-
"dependencies": {
|
|
21
|
+
"license": "MIT",
|
|
22
|
+
"dependencies": {
|
|
23
|
+
"dateformat": "^4.6.3",
|
|
24
|
+
"lodash": "^4.17.21"
|
|
25
|
+
},
|
|
23
26
|
"devDependencies": {
|
|
24
|
-
"@testing-library/jest-dom": "^
|
|
25
|
-
"@testing-library/react": "^
|
|
26
|
-
"@testing-library/user-event": "^
|
|
27
|
-
"@types/
|
|
28
|
-
"@types/
|
|
29
|
-
"@types/
|
|
30
|
-
"@types/
|
|
31
|
-
"@types/react": "^
|
|
32
|
-
"@types/react-
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"
|
|
27
|
+
"@testing-library/jest-dom": "^5.16.5",
|
|
28
|
+
"@testing-library/react": "^14.0.0",
|
|
29
|
+
"@testing-library/user-event": "^14.4.3",
|
|
30
|
+
"@types/jest": "^29.5.0",
|
|
31
|
+
"@types/lodash": "^4.14.191",
|
|
32
|
+
"@types/node": "^18.15.3",
|
|
33
|
+
"@types/react": "^18.0.28",
|
|
34
|
+
"@types/react-dom": "^18.0.11",
|
|
35
|
+
"@types/react-transition-group": "^4.4.5",
|
|
36
|
+
"gulp": "^4.0.2",
|
|
37
|
+
"rimraf": "^4.4.0",
|
|
38
|
+
"typescript": "^4.9.5"
|
|
39
|
+
},
|
|
40
|
+
"peerDependencies": {
|
|
36
41
|
"primeflex": "^3.3.0",
|
|
37
42
|
"primeicons": "^6.0.1",
|
|
38
|
-
"primereact": "
|
|
39
|
-
"
|
|
40
|
-
"react": "^
|
|
41
|
-
"react-
|
|
42
|
-
"react-scripts": "3.4.3",
|
|
43
|
-
"react-transition-group": "^4.4.1",
|
|
44
|
-
"gulp": "^4.0.2",
|
|
45
|
-
"rimraf": "^3.0.2",
|
|
46
|
-
"typescript": "^3.2.1",
|
|
47
|
-
"dateformat": "^4.4.1"
|
|
43
|
+
"primereact": "~9.2.1",
|
|
44
|
+
"react": "^18.2.0",
|
|
45
|
+
"react-dom": "^18.2.0",
|
|
46
|
+
"react-transition-group": "^4.4.5"
|
|
48
47
|
},
|
|
49
48
|
"files": [
|
|
50
49
|
"lib/**/*",
|