anentrypoint-design 1.0.25 → 1.0.26

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "anentrypoint-design",
3
- "version": "1.0.25",
3
+ "version": "1.0.26",
4
4
  "description": "247420 design system SDK — webjsx + modified ripple-ui, single-file ESM bundle for reproducible use of the AnEntrypoint design.",
5
5
  "type": "module",
6
6
  "main": "./dist/247420.js",
@@ -1991,3 +1991,54 @@ html.ds-247420 { touch-action: pan-x pan-y; overscroll-behavior: none; -webkit-t
1991
1991
  * iframe 16px on every side; the browser pane is full-bleed. --- */
1992
1992
  /* (0,3,0) beats the generic `.app-pane` (0,1,0) prose padding on specificity. */
1993
1993
  .ds-247420 .app-pane.browser-app { padding: 0; }
1994
+
1995
+ /* --- chat send-queue indicator + per-item cancel list (F2): a rapid
1996
+ * double/triple send while a turn is busy queues silently with no undo
1997
+ * beyond a fading count; clicking the indicator reveals queued texts with
1998
+ * a per-row remove control. --- */
1999
+ .ds-247420 .tb-chat-queue-indicator-hidden { display: none; }
2000
+ .ds-247420 .tb-chat-queue-indicator {
2001
+ cursor: pointer;
2002
+ font-size: 12px;
2003
+ color: var(--panel-text-2);
2004
+ padding: 2px 8px;
2005
+ user-select: none;
2006
+ }
2007
+ .ds-247420 .tb-chat-queue-indicator:hover { color: var(--panel-text); }
2008
+ .ds-247420 .tb-chat-queue-list {
2009
+ display: flex;
2010
+ flex-direction: column;
2011
+ gap: var(--space-1);
2012
+ padding: var(--space-2);
2013
+ margin: 0 8px 8px;
2014
+ border-radius: var(--r-2);
2015
+ background: var(--panel-1);
2016
+ border: 1px solid var(--panel-border);
2017
+ }
2018
+ .ds-247420 .tb-chat-queue-row {
2019
+ display: flex;
2020
+ align-items: center;
2021
+ justify-content: space-between;
2022
+ gap: var(--space-2);
2023
+ }
2024
+ .ds-247420 .tb-chat-queue-row-text {
2025
+ font-size: 12px;
2026
+ color: var(--panel-text-2);
2027
+ overflow: hidden;
2028
+ text-overflow: ellipsis;
2029
+ white-space: nowrap;
2030
+ flex: 1;
2031
+ }
2032
+ .ds-247420 .tb-chat-queue-row-remove {
2033
+ font-size: 11px;
2034
+ padding: 2px 8px;
2035
+ border-radius: var(--r-1);
2036
+ border: 1px solid var(--panel-border);
2037
+ background: transparent;
2038
+ color: var(--panel-text-2);
2039
+ cursor: pointer;
2040
+ }
2041
+ .ds-247420 .tb-chat-queue-row-remove:hover {
2042
+ background: var(--panel-2);
2043
+ color: var(--panel-text);
2044
+ }