
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
@promaster-sdk/react-property-selectors
Advanced tools
Hooks for building UI for selection of property values
Hooks for building UI for selection of property values
A common task in product selection tools is to have an UI that allows the user to make a valid property value selection. This package contains a react components for showing different UI for selection of a single property, such as a dropdown, textbox etc.
This package uses hooks and prop-getters to create headless UI components. Similar to downshift and react-table.
NOTE: Starting with v7 the old component based versions of the selectors are deprecated. See the old README for info on them.
npm install --save @promaster-sdk/react-property-selectors
The library is compiled to ES5 and no polyfills are required.
This is a library of react components so it cannot be run directly. To demonstrate and test the react component react-storybook is used. To start storybook just run:
yarn storybook
The storybooks stories is currently the best examples how to use this package.
const sel = usePropertiesSelector<MyItem, MyPropertyInfo>({
units,
unitsFormat,
unitLookup,
properties: propInfo.properties,
selectedProperties: pvs,
onChange: (properties: PropertyValueSet.PropertyValueSet, _changedProperties: ReadonlyArray<string>) => {
setPvs(properties);
},
getUndefinedValueItem: () => ({
value: undefined,
sortNo: -1,
text: "",
validationFilter: PropertyFilter.Empty,
}),
showCodes,
getItemValue: (item) => item.value,
getItemFilter: (item) => item.validationFilter,
getPropertyInfo: (p) => p,
});
const sel = useAmountInputBox({
value: state.amount,
inputUnit: state.selectedUnit,
inputDecimalCount: state.selectedDecimalCount,
onValueChange,
readonly: false,
errorMessage: "",
isRequiredMessage: "Is required",
notNumericMessage: "Not numeric",
debounceTime: 350,
});
const sel = useAmountFormatSelector({
selectedUnit: state.selectedUnit,
selectedDecimalCount: state.selectedDecimalCount,
onFormatChanged: (selectedUnit: Unit.Unit<unknown>, selectedDecimalCount: number) =>
setState({ ...state, selectedUnit, selectedDecimalCount }),
onFormatCleared: () =>
setState({
...state,
selectedUnit: BaseUnits.Meter,
selectedDecimalCount: 2,
}),
unitsFormat: unitsFormat,
units: units,
});
const sel = useAmountPropertySelector({
fieldName: "a",
propertyName: "a",
propertyValueSet: state.propertyValueSet,
inputUnit: state.selectedUnit,
inputDecimalCount: state.selectedDecimalCount,
onValueChange,
filterPrettyPrint: filterPrettyPrint,
validationFilter: validationFilter,
readonly: false,
isRequiredMessage: "Is required",
notNumericMessage: "Not numeric",
onFormatChanged,
onFormatCleared,
unitsFormat: unitsFormat,
units: units,
});
const sel = useDiscretePropertySelector({
propertyName: "a",
items: valueItems1,
propertyValueSet: myState,
onValueChange: (pv) => setMyState(PropertyValueSet.set("a", pv as PropertyValue.PropertyValue, myState)),
getUndefinedValueItem: () => undefinedValueItem,
showCodes: true,
sortValidFirst: true,
filterPrettyPrint: filterPrettyPrint,
getItemValue: (item) => item.value,
getItemFilter: (item) => item.validationFilter,
});
const { getInputProps } = useTextboxPropertySelector({
propertyName: "a",
propertyValueSet: myState,
onValueChange,
readOnly: false,
debounceTime: 600,
});
FAQs
Hooks for building UI for selection of property values
The npm package @promaster-sdk/react-property-selectors receives a total of 157 weekly downloads. As such, @promaster-sdk/react-property-selectors popularity was classified as not popular.
We found that @promaster-sdk/react-property-selectors demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 11 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.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.