@hachej/boring-agent 0.1.82 → 0.1.83
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/dist/front/styles.css +61 -18
- package/package.json +2 -2
package/dist/front/styles.css
CHANGED
|
@@ -42,7 +42,6 @@
|
|
|
42
42
|
--radius-md: var(--radius-md);
|
|
43
43
|
--radius-lg: var(--radius-lg);
|
|
44
44
|
--radius-xl: var(--radius-xl);
|
|
45
|
-
--ease-out: cubic-bezier(0, 0, 0.2, 1);
|
|
46
45
|
--ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
|
|
47
46
|
--animate-spin: spin 1s linear infinite;
|
|
48
47
|
--animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
@@ -2828,7 +2827,6 @@
|
|
|
2828
2827
|
--tracking-widest: 0.1em;
|
|
2829
2828
|
--leading-snug: 1.375;
|
|
2830
2829
|
--radius-xs: 0.125rem;
|
|
2831
|
-
--ease-out: cubic-bezier(0, 0, 0.2, 1);
|
|
2832
2830
|
--ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2833
2831
|
--animate-spin: spin 1s linear infinite;
|
|
2834
2832
|
--animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
@@ -2972,6 +2970,9 @@
|
|
|
2972
2970
|
.grid {
|
|
2973
2971
|
display: grid;
|
|
2974
2972
|
}
|
|
2973
|
+
.inline {
|
|
2974
|
+
display: inline;
|
|
2975
|
+
}
|
|
2975
2976
|
.inline-block {
|
|
2976
2977
|
display: inline-block;
|
|
2977
2978
|
}
|
|
@@ -3514,9 +3515,6 @@
|
|
|
3514
3515
|
.bg-\[color\:var\(--boring-success-soft\,var\(--secondary\)\)\] {
|
|
3515
3516
|
background-color: var(--boring-success-soft,var(--secondary));
|
|
3516
3517
|
}
|
|
3517
|
-
.bg-\[color\:var\(--boring-warning\,var\(--accent-foreground\)\)\] {
|
|
3518
|
-
background-color: var(--boring-warning,var(--accent-foreground));
|
|
3519
|
-
}
|
|
3520
3518
|
.bg-\[color\:var\(--boring-warning-soft\,var\(--accent\)\)\] {
|
|
3521
3519
|
background-color: var(--boring-warning-soft,var(--accent));
|
|
3522
3520
|
}
|
|
@@ -3934,11 +3932,6 @@
|
|
|
3934
3932
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
3935
3933
|
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
3936
3934
|
}
|
|
3937
|
-
.transition-\[width\] {
|
|
3938
|
-
transition-property: width;
|
|
3939
|
-
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
3940
|
-
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
3941
|
-
}
|
|
3942
3935
|
.transition-all {
|
|
3943
3936
|
transition-property: all;
|
|
3944
3937
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
@@ -3975,18 +3968,10 @@
|
|
|
3975
3968
|
--tw-duration: 200ms;
|
|
3976
3969
|
transition-duration: 200ms;
|
|
3977
3970
|
}
|
|
3978
|
-
.duration-300 {
|
|
3979
|
-
--tw-duration: 300ms;
|
|
3980
|
-
transition-duration: 300ms;
|
|
3981
|
-
}
|
|
3982
3971
|
.ease-in-out {
|
|
3983
3972
|
--tw-ease: var(--ease-in-out);
|
|
3984
3973
|
transition-timing-function: var(--ease-in-out);
|
|
3985
3974
|
}
|
|
3986
|
-
.ease-out {
|
|
3987
|
-
--tw-ease: var(--ease-out);
|
|
3988
|
-
transition-timing-function: var(--ease-out);
|
|
3989
|
-
}
|
|
3990
3975
|
.outline-none {
|
|
3991
3976
|
--tw-outline-style: none;
|
|
3992
3977
|
outline-style: none;
|
|
@@ -5244,6 +5229,64 @@
|
|
|
5244
5229
|
height: calc(var(--spacing) * 4);
|
|
5245
5230
|
}
|
|
5246
5231
|
}
|
|
5232
|
+
.\[\&\:\:-moz-progress-bar\]\:rounded-full {
|
|
5233
|
+
&::-moz-progress-bar {
|
|
5234
|
+
border-radius: calc(infinity * 1px);
|
|
5235
|
+
}
|
|
5236
|
+
}
|
|
5237
|
+
.\[\&\:\:-moz-progress-bar\]\:bg-\[color\:var\(--boring-warning\,var\(--accent-foreground\)\)\] {
|
|
5238
|
+
&::-moz-progress-bar {
|
|
5239
|
+
background-color: var(--boring-warning,var(--accent-foreground));
|
|
5240
|
+
}
|
|
5241
|
+
}
|
|
5242
|
+
.\[\&\:\:-moz-progress-bar\]\:bg-destructive {
|
|
5243
|
+
&::-moz-progress-bar {
|
|
5244
|
+
background-color: var(--boring-destructive);
|
|
5245
|
+
}
|
|
5246
|
+
}
|
|
5247
|
+
.\[\&\:\:-moz-progress-bar\]\:bg-primary {
|
|
5248
|
+
&::-moz-progress-bar {
|
|
5249
|
+
background-color: var(--boring-primary);
|
|
5250
|
+
}
|
|
5251
|
+
}
|
|
5252
|
+
.\[\&\:\:-webkit-progress-bar\]\:bg-muted {
|
|
5253
|
+
&::-webkit-progress-bar {
|
|
5254
|
+
background-color: var(--boring-muted);
|
|
5255
|
+
}
|
|
5256
|
+
}
|
|
5257
|
+
.\[\&\:\:-webkit-progress-value\]\:rounded-full {
|
|
5258
|
+
&::-webkit-progress-value {
|
|
5259
|
+
border-radius: calc(infinity * 1px);
|
|
5260
|
+
}
|
|
5261
|
+
}
|
|
5262
|
+
.\[\&\:\:-webkit-progress-value\]\:bg-\[color\:var\(--boring-warning\,var\(--accent-foreground\)\)\] {
|
|
5263
|
+
&::-webkit-progress-value {
|
|
5264
|
+
background-color: var(--boring-warning,var(--accent-foreground));
|
|
5265
|
+
}
|
|
5266
|
+
}
|
|
5267
|
+
.\[\&\:\:-webkit-progress-value\]\:bg-destructive {
|
|
5268
|
+
&::-webkit-progress-value {
|
|
5269
|
+
background-color: var(--boring-destructive);
|
|
5270
|
+
}
|
|
5271
|
+
}
|
|
5272
|
+
.\[\&\:\:-webkit-progress-value\]\:bg-primary {
|
|
5273
|
+
&::-webkit-progress-value {
|
|
5274
|
+
background-color: var(--boring-primary);
|
|
5275
|
+
}
|
|
5276
|
+
}
|
|
5277
|
+
.\[\&\:\:-webkit-progress-value\]\:transition-all {
|
|
5278
|
+
&::-webkit-progress-value {
|
|
5279
|
+
transition-property: all;
|
|
5280
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
5281
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
5282
|
+
}
|
|
5283
|
+
}
|
|
5284
|
+
.\[\&\:\:-webkit-progress-value\]\:duration-300 {
|
|
5285
|
+
&::-webkit-progress-value {
|
|
5286
|
+
--tw-duration: 300ms;
|
|
5287
|
+
transition-duration: 300ms;
|
|
5288
|
+
}
|
|
5289
|
+
}
|
|
5247
5290
|
.\[\&\:\:-webkit-scrollbar\]\:hidden {
|
|
5248
5291
|
&::-webkit-scrollbar {
|
|
5249
5292
|
display: none;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hachej/boring-agent",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.83",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"description": "Pane-embeddable coding agent. Ships direct/local/vercel-sandbox execution modes behind one interface.",
|
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
"use-stick-to-bottom": "^1.1.6",
|
|
85
85
|
"yaml": "^2.9.0",
|
|
86
86
|
"zod": "^3.25.76",
|
|
87
|
-
"@hachej/boring-ui-kit": "0.1.
|
|
87
|
+
"@hachej/boring-ui-kit": "0.1.83"
|
|
88
88
|
},
|
|
89
89
|
"devDependencies": {
|
|
90
90
|
"@antithesishq/bombadil": "0.6.1",
|