@applica-software-guru/react-admin 1.0.16 → 1.0.30
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/README.md +8 -25
- package/dist/components/Layout/Header/HeaderContent/Notification.d.ts +1 -1
- package/dist/components/Layout/Header/HeaderContent/NotificationItem.d.ts +1 -1
- package/dist/components/Layout/index.d.ts.map +1 -1
- package/dist/components/ra-lists/NotificationList/NotificationList.d.ts.map +1 -1
- package/dist/components/ra-lists/NotificationList/button/MarkAsReadedButton.d.ts.map +1 -1
- package/dist/components/ra-lists/NotificationList/button/MarkAsUnreadedButton.d.ts.map +1 -1
- package/dist/hooks/useBreadcrumbs.d.ts.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/react-admin.cjs.js +3 -3
- package/dist/react-admin.es.js +111 -95
- package/dist/react-admin.umd.js +3 -3
- package/package.json +13 -9
package/README.md
CHANGED
|
@@ -13,31 +13,14 @@ Libreria di componenti React per la creazione di applicativi web basati su React
|
|
|
13
13
|
|
|
14
14
|
Lo scopo di questa libreria è fornire un set di strumenti per la prototipazione rapida di applicativi web (generalmente di tipo gestionale) basati su React-Admin, personalizzati con il tema Mantis e che seguono le direttive grafiche del Design System ideato da Applica.
|
|
15
15
|
|
|
16
|
-
##
|
|
16
|
+
## Contribuire
|
|
17
17
|
|
|
18
|
-
|
|
18
|
+
Puoi avviare un ambiente locale di sviluppo ed utilizzarlo per testare le modifiche che apporti alla libreria.
|
|
19
|
+
Per farlo, segui questi passi:
|
|
19
20
|
|
|
20
|
-
|
|
21
|
+
- `nvm use` per impostare la versione di Node.js corretta;
|
|
22
|
+
- `npm install` per installare le dipendenze;
|
|
23
|
+
- `npm run setup` per installare dipendenze e configurare il playground;
|
|
24
|
+
- `npm run dev` in **un terminale separato** per avviare la compilazione in watch mode della libreria;
|
|
21
25
|
|
|
22
|
-
|
|
23
|
-
- segnalando bug e richieste di nuove funzionalità
|
|
24
|
-
- scrivendo codice o documentando il codice esistente
|
|
25
|
-
|
|
26
|
-
Per scrivere nuovo codice o verificare quello esistente direttamente sul tuo computer, segui questi passaggi:
|
|
27
|
-
- clona il repository
|
|
28
|
-
- installa le dipendenze eseguendo il comando `yarn install`
|
|
29
|
-
- attiva il controllo del codice eseguendo il comando `yarn prepare` (consente di attivare tutti i controlli di qualità del codice)
|
|
30
|
-
- apri il progetto all'interno del quale hai già una dipendenza del pacchetto e crea un link alla versione di `react` installata:
|
|
31
|
-
```sh
|
|
32
|
-
cd <progetto>/node_modules/react
|
|
33
|
-
yarn link
|
|
34
|
-
```
|
|
35
|
-
- torna nella cartella del pacchetto e crea un link alla versione di `react` installata:
|
|
36
|
-
```sh
|
|
37
|
-
cd <pacchetto>
|
|
38
|
-
yarn link react
|
|
39
|
-
```
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
TODO: descrivere come contribuire
|
|
26
|
+
> Se vuoi ripulire l'ambiente: `npm run clear` (questo comando rimuove qualsiasi dipendenza e file generato dallo script di installazione), successivamente dovrai necessariamente rieseguire il comando `npm run prepare` per reinstallare le dipendenze e configurare il playground.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.jsx"],"names":[],"mappings":";AAcA;;;;;;;;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.jsx"],"names":[],"mappings":";AAcA;;;;;;;;QAgHC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NotificationList.d.ts","sourceRoot":"","sources":["NotificationList.jsx"],"names":[],"mappings":";AASA;;
|
|
1
|
+
{"version":3,"file":"NotificationList.d.ts","sourceRoot":"","sources":["NotificationList.jsx"],"names":[],"mappings":";AASA;;QA8BC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MarkAsReadedButton.d.ts","sourceRoot":"","sources":["MarkAsReadedButton.jsx"],"names":[],"mappings":";AAKA,
|
|
1
|
+
{"version":3,"file":"MarkAsReadedButton.d.ts","sourceRoot":"","sources":["MarkAsReadedButton.jsx"],"names":[],"mappings":";AAKA,2CAqCC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MarkAsUnreadedButton.d.ts","sourceRoot":"","sources":["MarkAsUnreadedButton.jsx"],"names":[],"mappings":";AAIA,
|
|
1
|
+
{"version":3,"file":"MarkAsUnreadedButton.d.ts","sourceRoot":"","sources":["MarkAsUnreadedButton.jsx"],"names":[],"mappings":";AAIA,6CAqCC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useBreadcrumbs.d.ts","sourceRoot":"","sources":["useBreadcrumbs.jsx"],"names":[],"mappings":";AAKA;;;;;;
|
|
1
|
+
{"version":3,"file":"useBreadcrumbs.d.ts","sourceRoot":"","sources":["useBreadcrumbs.jsx"],"names":[],"mappings":";AAKA;;;;;;EA0EC"}
|
package/dist/index.d.ts
CHANGED
|
@@ -4,5 +4,5 @@ export * from "./hooks";
|
|
|
4
4
|
export * from "./components";
|
|
5
5
|
export * from "./contexts";
|
|
6
6
|
export * from "./utils";
|
|
7
|
-
export { ArrayInput, ArrayInputContext, BooleanField, BulkDeleteWithConfirmButton, Button, ChipField, choices, Confirm, Create, CreateButton, CreateContextProvider, DeleteWithConfirmButton, DeleteWithUndoButton, EditButton, email, Form, ListToolbar, maxLength, maxValue, minLength, minValue, number, Pagination, RecordContextProvider, ReferenceArrayField, ReferenceField,
|
|
7
|
+
export { ArrayInput, ArrayInputContext, BooleanField, BulkDeleteWithConfirmButton, Button, ChipField, choices, Confirm, Create, CreateButton, CreateContextProvider, DeleteWithConfirmButton, DeleteWithUndoButton, EditButton, email, Form, HttpError, ListToolbar, maxLength, maxValue, minLength, minValue, number, Pagination, RecordContextProvider, ReferenceArrayField, ReferenceField, regex, required, Resource, ResourceContextProvider, SaveButton, SimpleFormIterator, SimpleFormIteratorContext, SimpleList, SingleFieldList, TopToolbar, useArrayInput, useAuthProvider, useDataProvider, useGetIdentity, useGetList, useGetMany, useGetManyReference, useGetOne, useListContext, useNotify, usePermissions, useRecordContext, useResourceContext, useResourceDefinition, useResourceDefinitions, useTranslate, useUnselect, useUnselectAll, useUpdateMany } from "react-admin";
|
|
8
8
|
//# sourceMappingURL=index.d.ts.map
|