@sikka/hawa 0.1.55 → 0.1.57
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/1.bug_report.yml +100 -0
- package/.github/ISSUE_TEMPLATE/custom.md +10 -0
- package/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
- package/dist/index.d.mts +7 -6
- package/dist/index.d.ts +7 -6
- package/dist/index.js +529 -541
- package/dist/index.mjs +794 -801
- package/package.json +1 -1
- package/src/blocks/AuthForms/SignUpForm.tsx +3 -1
- package/src/elements/Card.tsx +9 -11
- package/src/elements/DropdownMenu.tsx +14 -4
- package/src/elements/HawaItemCard.tsx +2 -2
- package/src/elements/HawaRadio.tsx +0 -1
- package/src/elements/HawaTable.tsx +298 -147
- package/src/elements/InterfaceSettings.tsx +0 -5
- package/.github/ISSUE_TEMPLATE.yml +0 -121
|
@@ -1,121 +0,0 @@
|
|
|
1
|
-
name: Bug Report
|
|
2
|
-
description: Create a bug report for Hawa UI Kit
|
|
3
|
-
labels: ['template: bug']
|
|
4
|
-
body:
|
|
5
|
-
- type: markdown
|
|
6
|
-
attributes:
|
|
7
|
-
value: |
|
|
8
|
-
This template is to report Next.js bugs. [Examples](https://github.com/vercel/next.js/tree/canary/examples) related issues should be reported using [this](https://github.com/vercel/next.js/issues/new?assignees=&labels=type%3A+example%2Ctemplate%3A+bug&template=2.example_bug_report.yml) issue template instead.
|
|
9
|
-
Feature requests should be opened as [discussions](https://github.com/vercel/next.js/discussions/new?category=ideas). [Read more](https://github.com/vercel/next.js/blob/canary/contributing/core/adding-features.md).
|
|
10
|
-
|
|
11
|
-
Before opening a new issue, please do a [search](https://github.com/vercel/next.js/issues) of existing issues and :+1: upvote the existing issue instead. This will result in a quicker resolution.
|
|
12
|
-
|
|
13
|
-
If you need help with your own project, you can:
|
|
14
|
-
- Start a discussion in the ["Help" section](https://github.com/vercel/next.js/discussions/categories/help)
|
|
15
|
-
- Ask a question on the [Next.js Discord](https://discord.com/invite/nextjs) server
|
|
16
|
-
- type: input
|
|
17
|
-
attributes:
|
|
18
|
-
label: Link to the code that reproduces this issue or a replay of the bug
|
|
19
|
-
description: |
|
|
20
|
-
A link to a **public** [GitHub repository](https://github.com/vercel/next.js/tree/canary/examples/reproduction-template) or a [CodeSandbox](https://codesandbox.io/p/sandbox/github/vercel/next.js/tree/canary/examples/reproduction-template) minimal reproduction. Minimal reproductions should be created from our [bug report template with `npx create-next-app -e reproduction-template`](https://github.com/vercel/next.js/tree/canary/examples/reproduction-template) and should include only changes that contribute to the issue. To report a Pages Router related issue, you can use these templates: [`npx create-next-app -e reproduction-template-pages`](https://github.com/vercel/next.js/tree/canary/examples/reproduction-template-pages) or [CodeSandbox](https://codesandbox.io/p/sandbox/github/vercel/next.js/tree/canary/examples/reproduction-template-pages)
|
|
21
|
-
|
|
22
|
-
If a minimal reproduction can't be created, please share a [replay](https://www.replay.io/) of the bug which doesn't require sharing a private repo.
|
|
23
|
-
|
|
24
|
-
**Skipping this/providing an invalid link will result in the issue being closed**
|
|
25
|
-
placeholder: 'https://github.com/user/my-minimal-nextjs-issue-reproduction'
|
|
26
|
-
validations:
|
|
27
|
-
required: true
|
|
28
|
-
- type: textarea
|
|
29
|
-
attributes:
|
|
30
|
-
label: To Reproduce
|
|
31
|
-
description: A step-by-step description of how to reproduce the issue, based on the linked reproduction. Screenshots can be provided in the issue body below. If using code blocks, make sure that [syntax highlighting is correct](https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/creating-and-highlighting-code-blocks#syntax-highlighting) and double check that the rendered preview is not broken.
|
|
32
|
-
placeholder: |
|
|
33
|
-
1. Start the application in development (next dev)
|
|
34
|
-
2. Click X
|
|
35
|
-
3. Y will happen
|
|
36
|
-
validations:
|
|
37
|
-
required: true
|
|
38
|
-
- type: textarea
|
|
39
|
-
attributes:
|
|
40
|
-
label: Current vs. Expected behavior
|
|
41
|
-
description: A clear and concise description of what the bug is, and what you expected to happen.
|
|
42
|
-
placeholder: 'Following the steps from the previous section, I expected A to happen, but I observed B instead'
|
|
43
|
-
validations:
|
|
44
|
-
required: true
|
|
45
|
-
- type: checkboxes
|
|
46
|
-
attributes:
|
|
47
|
-
label: Verify canary release
|
|
48
|
-
description: 'Please run `npm install next@canary` to try the canary version of Next.js that ships daily. It includes all features and fixes that have not been released to the stable version yet. Some issues may already be fixed in the canary version, so please verify that your issue reproduces before opening a new issue.'
|
|
49
|
-
options:
|
|
50
|
-
- label: I verified that the issue exists in the latest Next.js canary release
|
|
51
|
-
required: true
|
|
52
|
-
- type: textarea
|
|
53
|
-
attributes:
|
|
54
|
-
label: Provide environment information
|
|
55
|
-
description: Please run `next info` in the root directory of your project and paste the results. You might need to use `npx --no-install next info` if next is not in the current PATH.
|
|
56
|
-
render: bash
|
|
57
|
-
placeholder: |
|
|
58
|
-
Operating System:
|
|
59
|
-
Platform: darwin
|
|
60
|
-
Arch: arm64
|
|
61
|
-
Version: Darwin Kernel Version 22.5.0
|
|
62
|
-
Binaries:
|
|
63
|
-
Node: 18.17.1
|
|
64
|
-
npm: 9.5.1
|
|
65
|
-
Yarn: 1.22.19
|
|
66
|
-
pnpm: N/A
|
|
67
|
-
Relevant Packages:
|
|
68
|
-
next: 13.4.20
|
|
69
|
-
eslint-config-next: 13.4.20
|
|
70
|
-
react: 18.2.0
|
|
71
|
-
react-dom: 18.2.0
|
|
72
|
-
typescript: 5.2.2
|
|
73
|
-
Next.js Config:
|
|
74
|
-
output: N/A
|
|
75
|
-
validations:
|
|
76
|
-
required: true
|
|
77
|
-
- type: dropdown
|
|
78
|
-
attributes:
|
|
79
|
-
label: Which area(s) are affected? (Select all that apply)
|
|
80
|
-
multiple: true
|
|
81
|
-
options:
|
|
82
|
-
- 'Not sure'
|
|
83
|
-
- 'App Router'
|
|
84
|
-
- 'CLI (create-next-app)'
|
|
85
|
-
- 'Data fetching (gS(S)P, getInitialProps)'
|
|
86
|
-
- 'Dynamic imports (next/dynamic)'
|
|
87
|
-
- 'ESLint (eslint-config-next)'
|
|
88
|
-
- 'Font optimization (next/font)'
|
|
89
|
-
- 'Image optimization (next/image, next/legacy/image)'
|
|
90
|
-
- 'Internationalization (i18n)'
|
|
91
|
-
- 'Jest (next/jest)'
|
|
92
|
-
- 'MDX (@next/mdx)'
|
|
93
|
-
- 'Metadata (metadata, generateMetadata, next/head)'
|
|
94
|
-
- 'Middleware / Edge (API routes, runtime)'
|
|
95
|
-
- 'Operating System (Windows, MacOS, Linux)'
|
|
96
|
-
- 'Package manager (npm, pnpm, Yarn)'
|
|
97
|
-
- 'Routing (next/router, next/navigation, next/link)'
|
|
98
|
-
- 'Script optimization (next/script)'
|
|
99
|
-
- 'Standalone mode (output: "standalone")'
|
|
100
|
-
- 'Static HTML Export (output: "export")'
|
|
101
|
-
- 'SWC minifier (swcMinify: true)'
|
|
102
|
-
- 'SWC transpilation'
|
|
103
|
-
- 'Turbopack (--turbo)'
|
|
104
|
-
- 'TypeScript (plugin, built-in types)'
|
|
105
|
-
validations:
|
|
106
|
-
required: true
|
|
107
|
-
- type: markdown
|
|
108
|
-
attributes:
|
|
109
|
-
value: |
|
|
110
|
-
Another way you can help the maintainers' job is to pinpoint the `canary` version of `next` that introduced the issue. Check out our [releases](https://github.com/vercel/next.js/releases), and try to find the first `canary` release that introduced the issue. This will help us narrow down the scope of the issue, and possibly point to the PR/code change that introduced it. You can install a specific version of `next` by running `npm install next@<version>`.
|
|
111
|
-
- type: textarea
|
|
112
|
-
attributes:
|
|
113
|
-
label: Additional context
|
|
114
|
-
description: |
|
|
115
|
-
Any extra information that might help us investigate. For example, where are you deploying your application (Vercel, Docker, other platform)? Is it only reproducible on that platform, or locally too? Is the issue only happening in a specific browser? etc.
|
|
116
|
-
placeholder: |
|
|
117
|
-
I tested my reproduction against different canary releases, and the first one that introduced the bug was "13.4.20-canary.13", since reverting to "13.4.20-canary.12" works.
|
|
118
|
-
|
|
119
|
-
or
|
|
120
|
-
|
|
121
|
-
I am hosting via Docker with the recommended `output: "standalone"` option", and if I remove that option or try a different hosting option, I cannot reproduce the same issue.
|