@pillar-ai/sdk 0.1.17 → 0.1.18
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/core/config.d.ts +0 -10
- package/dist/pillar.esm.js +1 -1
- package/package.json +1 -1
package/dist/core/config.d.ts
CHANGED
|
@@ -38,8 +38,6 @@ export interface ThemeColors {
|
|
|
38
38
|
border?: string;
|
|
39
39
|
/** Border color for subtle/light borders */
|
|
40
40
|
borderLight?: string;
|
|
41
|
-
/** Outline/focus ring color for interactive elements */
|
|
42
|
-
outlineColor?: string;
|
|
43
41
|
}
|
|
44
42
|
/**
|
|
45
43
|
* Theme configuration for customizing panel appearance
|
|
@@ -102,12 +100,6 @@ export interface PanelConfig {
|
|
|
102
100
|
* @default 500
|
|
103
101
|
*/
|
|
104
102
|
fullWidthBreakpoint?: number;
|
|
105
|
-
/**
|
|
106
|
-
* Whether to open the panel automatically on initialization.
|
|
107
|
-
* Takes priority over localStorage persisted state.
|
|
108
|
-
* @default false
|
|
109
|
-
*/
|
|
110
|
-
initialOpen?: boolean;
|
|
111
103
|
}
|
|
112
104
|
export interface UrlParamsConfig {
|
|
113
105
|
/** Whether to check URL params for auto-opening the panel (default: true) */
|
|
@@ -356,8 +348,6 @@ export interface ResolvedPanelConfig {
|
|
|
356
348
|
hoverBackdrop: boolean;
|
|
357
349
|
/** Viewport width below which panel takes full screen width */
|
|
358
350
|
fullWidthBreakpoint: number;
|
|
359
|
-
/** Whether to open the panel automatically on initialization */
|
|
360
|
-
initialOpen: boolean;
|
|
361
351
|
}
|
|
362
352
|
export interface ResolvedMobileTriggerConfig {
|
|
363
353
|
enabled: boolean;
|