@applica-software-guru/react-admin 1.5.359 → 1.5.362-alpha1
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/Pagination/Pagination.d.ts.map +1 -1
- package/dist/components/Pagination/PaginationActions.d.ts.map +1 -1
- package/dist/components/ra-inputs/AutocompleteInput.d.ts +3 -1
- package/dist/components/ra-inputs/AutocompleteInput.d.ts.map +1 -1
- package/dist/i18n/it.json.gz +0 -0
- package/dist/react-admin.cjs.js +26 -26
- package/dist/react-admin.cjs.js.gz +0 -0
- package/dist/react-admin.cjs.js.map +1 -1
- package/dist/react-admin.es.js +1066 -1051
- package/dist/react-admin.es.js.gz +0 -0
- package/dist/react-admin.es.js.map +1 -1
- package/dist/react-admin.umd.js +24 -24
- package/dist/react-admin.umd.js.gz +0 -0
- package/dist/react-admin.umd.js.map +1 -1
- package/dist/style.css.gz +0 -0
- package/package.json +1 -1
- package/src/components/Pagination/Pagination.tsx +34 -8
- package/src/components/Pagination/PaginationActions.tsx +21 -6
- package/src/components/ra-inputs/AutocompleteInput.tsx +9 -6
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Pagination.d.ts","sourceRoot":"","sources":["../../../../src/components/Pagination/Pagination.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAmB,wBAAwB,EAA2C,MAAM,eAAe,CAAC;AAEnH,OAAO,EAEL,0BAA0B,
|
|
1
|
+
{"version":3,"file":"Pagination.d.ts","sourceRoot":"","sources":["../../../../src/components/Pagination/Pagination.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAmB,wBAAwB,EAA2C,MAAM,eAAe,CAAC;AAEnH,OAAO,EAEL,0BAA0B,EAM3B,MAAM,SAAS,CAAC;AACjB,OAAO,EAAE,EAAE,EAAE,YAAY,EAAmD,MAAM,OAAO,CAAC;AAG1F,OAAO,EAAqB,sBAAsB,EAAE,MAAM,qBAAqB,CAAC;AAEhF,QAAA,MAAM,UAAU,EAAE,EAAE,CAAC,eAAe,CAqOlC,CAAC;AAmBH,UAAU,eAAgB,SAAQ,wBAAwB,EAAE,OAAO,CAAC,0BAA0B,CAAC;IAC7F,kBAAkB,CAAC,EAAE,KAAK,CAAC,MAAM,GAAG;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;IACtE,OAAO,CAAC,EAAE,EAAE,CAAC,sBAAsB,CAAC,CAAC;IACrC,KAAK,CAAC,EAAE,YAAY,CAAC;IACrB,YAAY,CAAC,EAAE,MAAM,GAAG,UAAU,CAAC;CACpC;AAED,OAAO,EAAE,UAAU,EAAE,CAAC;AACtB,YAAY,EAAE,eAAe,EAAE,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PaginationActions.d.ts","sourceRoot":"","sources":["../../../../src/components/Pagination/PaginationActions.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAQ,MAAM,OAAO,CAAC;AAEjC,OAAO,EAAc,eAAe,EAAE,MAAM,eAAe,CAAC;AAI5D,QAAA,MAAM,iBAAiB,EAAE,EAAE,CAAC,sBAAsB,
|
|
1
|
+
{"version":3,"file":"PaginationActions.d.ts","sourceRoot":"","sources":["../../../../src/components/Pagination/PaginationActions.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAQ,MAAM,OAAO,CAAC;AAEjC,OAAO,EAAc,eAAe,EAAE,MAAM,eAAe,CAAC;AAI5D,QAAA,MAAM,iBAAiB,EAAE,EAAE,CAAC,sBAAsB,CAsDhD,CAAC;AAEH,UAAU,sBAAuB,SAAQ,eAAe;IACtD,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,KAAK,EAAE,MAAM,CAAC;IACd,YAAY,EAAE,CAAC,KAAK,EAAE,UAAU,EAAE,IAAI,EAAE,MAAM,KAAK,IAAI,CAAC;CACzD;AA8BD,OAAO,EAAE,iBAAiB,EAAE,CAAC;AAC7B,YAAY,EAAE,sBAAsB,EAAE,CAAC"}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import {
|
|
2
|
+
import { LabeledInputProps } from '../../components/ra-inputs/LabeledInput';
|
|
3
|
+
import { AutocompleteInputProps as RaAutocompleteInputProps } from 'react-admin';
|
|
4
|
+
type AutocompleteInputProps = RaAutocompleteInputProps & LabeledInputProps;
|
|
3
5
|
declare function AutocompleteInput({ size, ...props }: AutocompleteInputProps): JSX.Element;
|
|
4
6
|
export { AutocompleteInput };
|
|
5
7
|
export type { AutocompleteInputProps };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AutocompleteInput.d.ts","sourceRoot":"","sources":["../../../../src/components/ra-inputs/AutocompleteInput.tsx"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"AutocompleteInput.d.ts","sourceRoot":"","sources":["../../../../src/components/ra-inputs/AutocompleteInput.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAgB,iBAAiB,EAAE,MAAM,qCAAqC,CAAC;AAEtF,OAAO,EAEL,sBAAsB,IAAI,wBAAwB,EACnD,MAAM,aAAa,CAAC;AAarB,KAAK,sBAAsB,GAAG,wBAAwB,GAAG,iBAAiB,CAAC;AAE3E,iBAAS,iBAAiB,CAAC,EAAE,IAAc,EAAE,GAAG,KAAK,EAAE,EAAE,sBAAsB,GAAG,GAAG,CAAC,OAAO,CAW5F;AAED,OAAO,EAAE,iBAAiB,EAAE,CAAC;AAC7B,YAAY,EAAE,sBAAsB,EAAE,CAAC"}
|
package/dist/i18n/it.json.gz
CHANGED
|
Binary file
|