@bodynarf/react.components 0.1.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.
- package/.github/ISSUE_TEMPLATE/bug_report.md +25 -0
- package/dist/assets/bootstrap-icons.48902042.woff +0 -0
- package/dist/assets/bootstrap-icons.a29357cb.woff2 +0 -0
- package/dist/assets/index.19ed8c21.css +1 -0
- package/dist/assets/index.517219b4.js +2 -0
- package/dist/assets/index.517219b4.js.map +1 -0
- package/dist/assets/vendor.92043335.js +41 -0
- package/dist/assets/vendor.92043335.js.map +1 -0
- package/dist/index.html +16 -0
- package/index.html +13 -0
- package/package.json +44 -0
- package/src/components/anchor/anchor.scss +15 -0
- package/src/components/anchor/components/anchorWithIcon/anchorWithIcon.tsx +45 -0
- package/src/components/anchor/components/simpleAnchor/simpleAnchor.tsx +16 -0
- package/src/components/anchor/index.tsx +64 -0
- package/src/components/anchor/types.ts +26 -0
- package/src/components/button/button.scss +12 -0
- package/src/components/button/components/buttonWithIcon/buttonWithIcon.tsx +47 -0
- package/src/components/button/components/simpleButton/simpleButton.tsx +16 -0
- package/src/components/button/index.tsx +83 -0
- package/src/components/button/types.ts +40 -0
- package/src/components/dropdown/components/dropdownItem/dropdownItem.tsx +30 -0
- package/src/components/dropdown/components/dropdownLabel/dropdownLabel.tsx +60 -0
- package/src/components/dropdown/dropdown.scss +89 -0
- package/src/components/dropdown/index.tsx +141 -0
- package/src/components/dropdown/types.ts +11 -0
- package/src/components/icon/icon.scss +18 -0
- package/src/components/icon/index.tsx +34 -0
- package/src/components/primitives/date/index.tsx +103 -0
- package/src/components/primitives/multiline/components/multilineWithLabel/index.tsx +93 -0
- package/src/components/primitives/multiline/components/multilineWithoutLabel/index.tsx +51 -0
- package/src/components/primitives/multiline/index.tsx +28 -0
- package/src/components/primitives/text/components/textWithLabel/index.tsx +92 -0
- package/src/components/primitives/text/components/textWithoutLabel/index.tsx +49 -0
- package/src/components/primitives/text/index.tsx +21 -0
- package/src/components/primitives/types.ts +65 -0
- package/src/components/search/index.tsx +127 -0
- package/src/components/search/search.scss +24 -0
- package/src/components/types.ts +41 -0
- package/src/hooks/useComponentOutsideClick.ts +48 -0
- package/src/main.tsx +9 -0
- package/tsconfig.json +48 -0
- package/tsconfig.node.json +8 -0
- package/vite.config.ts +14 -0
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: Bug report
|
|
3
|
+
about: Create a report to help us improve
|
|
4
|
+
title: "[Bug]"
|
|
5
|
+
labels: bug
|
|
6
|
+
assignees: bodynar
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
**Describe the bug**
|
|
11
|
+
A clear and concise description of what the bug is.
|
|
12
|
+
|
|
13
|
+
**To Reproduce**
|
|
14
|
+
Steps to reproduce the behavior:
|
|
15
|
+
1. Go to '...'
|
|
16
|
+
2. Click on '....'
|
|
17
|
+
|
|
18
|
+
**Expected behavior**
|
|
19
|
+
A clear and concise description of what you expected to happen.
|
|
20
|
+
|
|
21
|
+
**Screenshots**
|
|
22
|
+
If applicable, add screenshots to help explain your problem.
|
|
23
|
+
|
|
24
|
+
**Additional context**
|
|
25
|
+
Add any other context about the problem here.
|
|
Binary file
|
|
Binary file
|