add all frontend files

This commit is contained in:
2026-01-17 15:16:36 -05:00
parent ff16ae7858
commit e40287e4aa
25704 changed files with 1935289 additions and 0 deletions

27
node_modules/rc-input/assets/index.css generated vendored Normal file
View File

@@ -0,0 +1,27 @@
.rc-input-out-of-range {
color: red;
}
.rc-input-affix-wrapper {
padding: 2px 8px;
overflow: hidden;
border: 1px solid lightgray;
border-radius: 2px;
}
.rc-input-affix-wrapper:hover,
.rc-input-affix-wrapper:focus-within {
border-color: #000;
}
.rc-input-affix-wrapper input {
padding: 0;
border: none;
outline: none;
}
.rc-input-clear-icon {
padding: 0;
font-size: 12px;
background: none;
border: none;
}
.rc-input-clear-icon-hidden {
display: none;
}

34
node_modules/rc-input/assets/index.less generated vendored Normal file
View File

@@ -0,0 +1,34 @@
.rc-input {
&-out-of-range {
color: red;
}
&-affix-wrapper {
padding: 2px 8px;
overflow: hidden;
border: 1px solid lightgray;
border-radius: 2px;
&:hover,
&:focus-within {
border-color: #000;
}
input {
padding: 0;
border: none;
outline: none;
}
}
&-clear-icon {
padding: 0;
font-size: 12px;
background: none;
border: none;
&-hidden {
display: none;
}
}
}