@foi/design-system 0.0.4 → 0.0.7
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 -0
- package/dist/DatePicker.utils-ytCEcs6T.js +2680 -0
- package/dist/DatePicker.utils-ytCEcs6T.js.map +1 -0
- package/dist/RadioGroup-D2s7AY6E.js +325 -0
- package/dist/RadioGroup-D2s7AY6E.js.map +1 -0
- package/dist/RadioGroup.context-zJGC5Sjc.js +395 -0
- package/dist/RadioGroup.context-zJGC5Sjc.js.map +1 -0
- package/dist/Switch-CBpbDGqG.js +3830 -0
- package/dist/Switch-CBpbDGqG.js.map +1 -0
- package/dist/ThemeProvider-oFEpvMxv.js +37 -0
- package/dist/ThemeProvider-oFEpvMxv.js.map +1 -0
- package/dist/atoms.d.ts +18 -0
- package/dist/atoms.mjs +3 -0
- package/dist/emotion-react-jsx-runtime.browser.esm-BFNmScj4.js +992 -0
- package/dist/emotion-react-jsx-runtime.browser.esm-BFNmScj4.js.map +1 -0
- package/dist/hocs.d.ts +2 -0
- package/dist/hocs.mjs +2 -0
- package/dist/hooks.d.ts +2 -0
- package/dist/hooks.mjs +2 -0
- package/dist/index.mjs +6 -8654
- package/dist/molecules.d.ts +6 -0
- package/dist/molecules.mjs +2 -0
- package/dist/theme-DEqiATmv.js +436 -0
- package/dist/theme-DEqiATmv.js.map +1 -0
- package/dist/theme.d.ts +1 -0
- package/dist/theme.mjs +2 -0
- package/dist/useStateCallback-D9fqdxiO.js +26 -0
- package/dist/useStateCallback-D9fqdxiO.js.map +1 -0
- package/dist/utilities/cleaner/input.d.ts +1 -0
- package/dist/utilities/formatter/date.d.ts +3 -0
- package/dist/utilities/formatter/input.d.ts +1 -0
- package/dist/utilities/formatter/number.d.ts +2 -0
- package/dist/utilities/formatter/strings.d.ts +2 -0
- package/dist/utilities/regex/input.d.ts +4 -0
- package/dist/utilities/validator/input.d.ts +1 -0
- package/dist/utilities.d.ts +7 -0
- package/dist/utilities.mjs +23 -0
- package/dist/utilities.mjs.map +1 -0
- package/package.json +25 -1
- package/dist/index.mjs.map +0 -1
package/README.md
CHANGED
|
@@ -31,6 +31,14 @@ npm run pretty # Format all files with Prettier
|
|
|
31
31
|
npm run eslint # Lint and auto-fix with ESLint
|
|
32
32
|
```
|
|
33
33
|
|
|
34
|
+
## Publishing to npm
|
|
35
|
+
|
|
36
|
+
```bash
|
|
37
|
+
npm run build:lib # Build the library (JS + type declarations)
|
|
38
|
+
npm version patch # Bump version: 0.0.x → 0.0.x+1
|
|
39
|
+
npm publish --access public
|
|
40
|
+
```
|
|
41
|
+
|
|
34
42
|
## Components
|
|
35
43
|
|
|
36
44
|
### Atoms
|