-
Notifications
You must be signed in to change notification settings - Fork 0
classfunc #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
zerolethanh
wants to merge
43
commits into
main
Choose a base branch
from
classfunc
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
classfunc #1
Changes from 5 commits
Commits
Show all changes
43 commits
Select commit
Hold shift + click to select a range
a002c63
any type for OUTResultMaybeData
zerolethanh 4b59141
add Form
zerolethanh 90e69c2
update ignore
zerolethanh 4453e5d
add EffectSchema
zerolethanh 789ef98
fix run twice
zerolethanh ac1cd7a
add saveOnChange props
zerolethanh 40aeb0e
update InputForm
zerolethanh 8e9fe89
remove comment
zerolethanh 06c607e
remove comment
zerolethanh 0f6662b
add nativeComponentRegistry.tsx
zerolethanh af066e8
update
zerolethanh c9cfd76
update
zerolethanh 73432a6
update no warning for radio type
zerolethanh 7d0270c
Merge remote-tracking branch 'origin/classfunc' into classfunc
zerolethanh 20822d8
add for render component Recursively
zerolethanh 265e449
add seeMoreLink
zerolethanh 6ff87f4
add PassthroughFields
zerolethanh 0c39b05
update UI nestedObject
zerolethanh 8aa96ee
catch all generation
zerolethanh 8790d3a
fix catchall
zerolethanh ab0374b
fix for chrome extension
zerolethanh 820fab1
simpler useFn.template.tsx
zerolethanh ec0452d
add successMessage?: React.ReactNode;
zerolethanh a3b10d1
add DataDisplayTable.tsx
zerolethanh 163b02c
add TriggerSubmitComponent
zerolethanh e218b01
update for infiniteScroll
zerolethanh 5edf012
add lastFiredData
zerolethanh f0c7131
update dataDisplayTable
zerolethanh b7e1f8b
add defaultConfig
zerolethanh 33a0298
update form
zerolethanh f34268f
add option title for DataDisplayTable
zerolethanh 38566c4
export endpoint
zerolethanh 2109d60
add some settings for form and datatable
zerolethanh 235bb76
update handleRefresh
zerolethanh 5872780
darkmode
zerolethanh 88b4e6a
darkmode
zerolethanh d5d2828
Merge remote-tracking branch 'origin/classfunc' into classfunc
zerolethanh b37be55
update form
zerolethanh 865e898
show default response header for DataTable
zerolethanh 5e5c372
DataPathFieldConfig as string
zerolethanh a469623
DataPathFieldConfig as string
zerolethanh 4767a06
Merge remote-tracking branch 'origin/classfunc' into classfunc
zerolethanh 3ded14b
Merge remote-tracking branch 'origin/classfunc' into classfunc
zerolethanh File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
.formContainer { | ||
width: 100%; | ||
max-width: 2000px; | ||
background-color: white; | ||
padding: 2rem; | ||
border-radius: 0.5rem; | ||
box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); | ||
} | ||
|
||
.form { | ||
display: grid; | ||
grid-template-columns: 1fr; | ||
gap: 1.5rem; | ||
} | ||
|
||
@media (min-width: 768px) { | ||
.form { | ||
grid-template-columns: repeat(2, 1fr); | ||
} | ||
} | ||
|
||
@media (min-width: 1024px) { | ||
.form { | ||
grid-template-columns: repeat(3, 1fr); | ||
} | ||
} | ||
|
||
.formGroup { | ||
display: flex; | ||
flex-direction: column; | ||
gap: 0.625rem; | ||
} | ||
|
||
.label { | ||
font-size: 0.875rem; | ||
font-weight: 600; | ||
color: #1f2937; | ||
} | ||
|
||
.input { | ||
width: 100%; | ||
padding: 0.625rem 0.875rem; | ||
border: 1px solid #D1D5DB; | ||
border-radius: 0.375rem; | ||
transition: border-color 0.2s, box-shadow 0.2s; | ||
font-size: 1rem; | ||
color: #111827; | ||
} | ||
|
||
.input::placeholder { | ||
color: #9ca3af; | ||
} | ||
|
||
.input:focus { | ||
outline: none; | ||
border-color: #2563EB; | ||
box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.4); | ||
} | ||
|
||
.description { | ||
font-size: 0.875rem; | ||
color: #4b5563; | ||
margin-top: 0.25rem; | ||
} | ||
|
||
.description a { | ||
color: #2563EB; | ||
text-decoration: none; | ||
} | ||
|
||
.description a:hover { | ||
text-decoration: underline; | ||
} | ||
|
||
.helperText { | ||
font-size: 0.875rem; | ||
color: #6B7280; | ||
} | ||
|
||
.errorMessage { | ||
margin-top: 1rem; | ||
color: #DC2626; | ||
background-color: #FEE2E2; | ||
padding: 0.75rem; | ||
border-radius: 0.375rem; | ||
grid-column: 1 / -1; | ||
@apply break-all; | ||
} | ||
|
||
.fieldSet { | ||
display: flex; | ||
flex-direction: column; | ||
gap: 0.75rem; | ||
border: 1px solid #D1D5DB; | ||
padding: 1rem; | ||
border-radius: 0.375rem; | ||
} | ||
|
||
.optionLabel { | ||
display: flex; | ||
align-items: center; | ||
gap: 0.5rem; | ||
cursor: pointer; | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The
@apply
directive is specific to Tailwind CSS and is not standard CSS. This will cause a parsing error in browsers and will not work unless this CSS module is processed by a tool like PostCSS with the Tailwind CSS plugin.If that build setup is not in place, you should replace this with standard CSS properties to ensure the styles are applied correctly.