Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
starh-comp-common
Advanced tools
Libreria di componenti React specifica per la piattaforma StarH.
AjaxTable.propTypes = {
endpoint: PropTypes.string.isRequired, // enpoint da invocare per recuperare i dati
requestHeaders: PropTypes.object,
onLoad: PropTypes.func,
dataKey: PropTypes.string,
emptyMessage: PropTypes.string,
currentPageReportTemplate: PropTypes.string,
paginatorTemplate: PropTypes.string,
rowsPerPageOptions: PropTypes.array,
rows: PropTypes.number,
filteredText: PropTypes.string,
borderColor: PropTypes.string,
totalRecordsLabel: PropTypes.string,
fullTextSearchLabel: PropTypes.string,
fullTextSearchOperator: PropTypes.string,
exportLabel: PropTypes.string,
advancedSearchLabel: PropTypes.string,
advancedSearchBarTitle: PropTypes.string,
columns: PropTypes.arrayOf(
PropTypes.shape({
header: PropTypes.string.isRequired,
field: PropTypes.string.isRequired,
sortable: PropTypes.bool,
sortableField: PropTypes.string,
renderer: PropTypes.func,
}),
).isRequired,
fullTextSearchFields: PropTypes.arrayOf(PropTypes.string),
exportFields: PropTypes.arrayOf(
PropTypes.shape({
header: PropTypes.string.isRequired,
field: PropTypes.string.isRequired,
}),
),
advancedSearchFields: PropTypes.arrayOf(
PropTypes.shape({
header: PropTypes.string.isRequired,
field: PropTypes.string.isRequired,
}),
),
};
AjaxTable.defaultProps = {
onLoad: (data) => {
return data;
},
dataKey: 'id',
emptyMessage: 'No data',
currentPageReportTemplate: 'Showing {first} to {last} of {totalRecords} entries',
paginatorTemplate:
'CurrentPageReport FirstPageLink PrevPageLink PageLinks NextPageLink LastPageLink RowsPerPageDropdown',
rowsPerPageOptions: [10, 20, 50],
rows: 10,
borderColor: '#dddddd',
totalRecordsLabel: 'Total Records:',
fullTextSearchLabel: 'Search ...',
fullTextSearchOperator: 'like',
filteredText: '(filtered)',
exportLabel: 'Export',
advancedSearchLabel: 'Search (Ctrl+f)',
advancedSearchBarTitle: 'Advanced Search',
};
Crafted with 💗 by LinearIT.
FAQs
Libreria di componenti React specifica per la piattaforma StarH.
The npm package starh-comp-common receives a total of 9 weekly downloads. As such, starh-comp-common popularity was classified as not popular.
We found that starh-comp-common demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.