@solid-primitives/props
Creates a primitive to provide props signals for simple component testing
Installation
npm install @solid-primitives/props
# or
yarn add @solid-primitives/props
How to use it
You can either create a single prop:
const [string, setString, stringField] = createProp("stringValue", "test");
const [language, setLanguage, languageField] = createProp(
"language",
{ initialValue: "en", options: ["de", "en", "fr", "it"] as const }
);
enum Currency {
AUD,
GBP,
EUR,
USD,
CHF,
JPY,
CNY
}
const [currency, setCurrency, currencyField] = createProp("currency", {
initialValue: Currency.USD,
options: Currency
});
return { languageField(); };
or multiple props in one call:
enum Test { One, Two, Three };
const languages = ['de', 'en', 'fr', 'it'] as const;
const [props, fields] = createProps({
boolean: true,
number: 42,
string: 'text',
array: { initialValue: 'en', options: languages },
enum: { initialValue: Test.Three, options: Test }
});
props == {
boolean: Accessor<boolean>,
setBoolean: Setter<boolean>,
number: Accessor<number>,
setNumber: Setter<number>,
string: Accessor<string>,
setString: Setter<string>,
array: Accessor<string>,
setArray: Setter<string>,
enum: Accessor<Test>,
setEnum: Setter<Test>
};
fields == JSX.Element[];
Demo
TODO
Changelog
Expand Changelog
0.0.100
Initial release
1.0.2
Release initial version with CJS support.