forstok-ui-lib 4.1.0 → 5.0.0

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.
Files changed (33) hide show
  1. package/dist/index.d.ts +1 -1
  2. package/dist/index.js.map +1 -1
  3. package/dist/index.mjs.map +1 -1
  4. package/package.json +1 -1
  5. package/src/components/button/{button.tsx → index.tsx} +1 -1
  6. package/src/components/checkbox/{checkbox.tsx → index.tsx} +2 -2
  7. package/src/components/dropdown/{dropdown.tsx → index.tsx} +3 -3
  8. package/src/components/dropdown/{dropdown.styles.ts → styles.ts} +1 -1
  9. package/src/components/icon/{icon.tsx → index.tsx} +2 -2
  10. package/src/components/index.ts +16 -16
  11. package/src/components/input/{input.tsx → index.tsx} +1 -1
  12. package/src/components/label/{label.tsx → index.tsx} +1 -1
  13. package/src/components/link/{link.tsx → index.tsx} +1 -1
  14. package/src/components/loading/{loading.tsx → index.tsx} +1 -1
  15. package/src/components/loading/{loading.styles.ts → styles.ts} +1 -1
  16. package/src/components/message/{message.tsx → index.tsx} +3 -3
  17. package/src/components/message/{message_question.tsx → question.tsx} +4 -4
  18. package/src/components/popup/{popup.tsx → index.tsx} +4 -4
  19. package/src/components/popup/{popup.typed.ts → typed.ts} +2 -2
  20. package/src/components/text/{text.tsx → index.tsx} +1 -1
  21. package/src/typeds/shares.typed.ts +3 -3
  22. /package/src/components/button/{button.styles.ts → styles.ts} +0 -0
  23. /package/src/components/checkbox/{checkbox.styles.ts → styles.ts} +0 -0
  24. /package/src/components/dropdown/{dropdown.typed.ts → typed.ts} +0 -0
  25. /package/src/components/icon/{icon.styles.ts → styles.ts} +0 -0
  26. /package/src/components/input/{input.styles.ts → styles.ts} +0 -0
  27. /package/src/components/label/{label.styles.ts → styles.ts} +0 -0
  28. /package/src/components/link/{link.styles.ts → styles.ts} +0 -0
  29. /package/src/components/message/{message.styles.ts → styles.ts} +0 -0
  30. /package/src/components/message/{message.typed.ts → typed.ts} +0 -0
  31. /package/src/components/popup/{popup.styles.ts → styles.ts} +0 -0
  32. /package/src/components/portal/{react_portal.tsx → index.tsx} +0 -0
  33. /package/src/components/text/{text.styles.ts → styles.ts} +0 -0
package/dist/index.d.ts CHANGED
@@ -205,7 +205,7 @@ type TPopupFunctionGroup = {
205
205
  };
206
206
  type TPopupContainer = {
207
207
  isOpen: boolean;
208
- } & Required<TPopupFunctionParam> & Required<TPopupFunctionGroup>;
208
+ } & Required<TPopupFunctionParam> & TPopupFunctionGroup;
209
209
  type TPopup = {
210
210
  isOpen: boolean;
211
211
  body?: string;