@epam/ai-dial-sidebar 0.0.0-dev.0 → 1.0.0-dev.459
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/components/SearchInput/SearchInput.d.ts +5 -1
- package/components/SearchInput/SearchInput.d.ts.map +1 -1
- package/index.css +1 -1
- package/index.js +81977 -83
- package/package.json +10 -3
|
@@ -12,6 +12,10 @@ export interface SearchInputProps {
|
|
|
12
12
|
/** CSS class applied to the search icon. Defaults to `'text-secondary'`. */
|
|
13
13
|
iconClassName?: string;
|
|
14
14
|
}
|
|
15
|
-
/**
|
|
15
|
+
/**
|
|
16
|
+
* Minimal search input with icon positioned to align with sibling action buttons.
|
|
17
|
+
* Reuses the shared {@link SearchBar} default colors (border, hover/focus, icon
|
|
18
|
+
* and text colors) and only adjusts shape (pill) and background for the sidebar.
|
|
19
|
+
*/
|
|
16
20
|
export declare const SearchInput: FC<SearchInputProps>;
|
|
17
21
|
//# sourceMappingURL=SearchInput.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SearchInput.d.ts","sourceRoot":"","sources":["../../../src/components/SearchInput/SearchInput.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"SearchInput.d.ts","sourceRoot":"","sources":["../../../src/components/SearchInput/SearchInput.tsx"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,EAAE,EAAQ,MAAM,OAAO,CAAC;AAEtC,+BAA+B;AAC/B,MAAM,WAAW,gBAAgB;IAC/B,gDAAgD;IAChD,WAAW,EAAE,MAAM,CAAC;IACpB,kCAAkC;IAClC,KAAK,EAAE,MAAM,CAAC;IACd,yCAAyC;IACzC,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IAClC,oDAAoD;IACpD,UAAU,EAAE,MAAM,CAAC;IACnB,4EAA4E;IAC5E,aAAa,CAAC,EAAE,MAAM,CAAC;CACxB;AAED;;;;GAIG;AACH,eAAO,MAAM,WAAW,EAAE,EAAE,CAAC,gBAAgB,CAsB5C,CAAC"}
|
package/index.css
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
._wrapper_x6z5j_1{background:var(--sb-bg,var(--bg-layer-3,#fcfcfc));border-color:var(--sb-border,var(--stroke-tertiary,#e0e6f0))}._header_x6z5j_6{color:var(--sb-text,var(--text-primary,#161b2d))}._divider_x6z5j_10{border-color:var(--sb-border,var(--stroke-tertiary,#e0e6f0))}._panel_x6z5j_14{border-color:var(--sb-border,var(--stroke-tertiary,#e0e6f0));border-inline-end-color:var(--sb-border-inline-end,var(--sb-border,var(--stroke-tertiary,#e0e6f0)))}@keyframes _fadeIn_x6z5j_1{0%{opacity:0}to{opacity:1}}._appear_x6z5j_27{animation:.2s ease-out forwards _fadeIn_x6z5j_1}._resizeHandler_x6z5j_31{background:var(--sb-bg-resize-handler,var(--text-success,#007274));width:4px!important;color:var(--sb-resize-handler,var(--text-success,#007274))!important}
|
|
1
|
+
._wrapper_x6z5j_1{background:var(--sb-bg,var(--bg-layer-3,#fcfcfc));border-color:var(--sb-border,var(--stroke-tertiary,#e0e6f0))}._header_x6z5j_6{color:var(--sb-text,var(--text-primary,#161b2d))}._divider_x6z5j_10{border-color:var(--sb-border,var(--stroke-tertiary,#e0e6f0))}._panel_x6z5j_14{border-color:var(--sb-border,var(--stroke-tertiary,#e0e6f0));border-inline-end-color:var(--sb-border-inline-end,var(--sb-border,var(--stroke-tertiary,#e0e6f0)))}@keyframes _fadeIn_x6z5j_1{0%{opacity:0}to{opacity:1}}._appear_x6z5j_27{animation:.2s ease-out forwards _fadeIn_x6z5j_1}._resizeHandler_x6z5j_31{background:var(--sb-bg-resize-handler,var(--text-success,#007274));width:4px!important;color:var(--sb-resize-handler,var(--text-success,#007274))!important}
|
|
2
2
|
/*$vite$:1*/
|