pixel-react 1.21.83 → 1.21.85

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.
Files changed (30) hide show
  1. package/lib/components/Charts/BarChart/BarChart.d.ts +1 -0
  2. package/lib/components/Charts/BarChart/BarChart.js +8 -3
  3. package/lib/components/Charts/BarChart/BarChart.js.map +1 -1
  4. package/lib/components/ConditionalDropdown/ConditionalDropdown.js +2 -2
  5. package/lib/components/ConditionalDropdown/ConditionalDropdown.js.map +1 -1
  6. package/lib/components/ConditionalDropdown/types.d.ts +1 -0
  7. package/lib/components/Input/Input.js +2 -1
  8. package/lib/components/Input/Input.js.map +1 -1
  9. package/lib/components/Input/types.d.ts +1 -0
  10. package/lib/components/OverviewModal/constant.d.ts +24 -0
  11. package/lib/components/OverviewModal/constant.js +25 -0
  12. package/lib/components/OverviewModal/constant.js.map +1 -0
  13. package/lib/components/OverviewModal/overviewModal.js +60 -40
  14. package/lib/components/OverviewModal/overviewModal.js.map +1 -1
  15. package/lib/components/OverviewModal/types.d.ts +48 -10
  16. package/lib/components/Select/Select.js +2 -1
  17. package/lib/components/Select/Select.js.map +1 -1
  18. package/lib/components/Select/types.d.ts +1 -0
  19. package/lib/components/TableTreeFn/Components/TableCell.js +4 -12
  20. package/lib/components/TableTreeFn/Components/TableCell.js.map +1 -1
  21. package/lib/components/TableTreeFn/TableTreeFn.js +17 -34
  22. package/lib/components/TableTreeFn/TableTreeFn.js.map +1 -1
  23. package/lib/components/variableSuggestionInputDropDown/VariableSuggestionInputDropDown.js +2 -2
  24. package/lib/components/variableSuggestionInputDropDown/VariableSuggestionInputDropDown.js.map +1 -1
  25. package/lib/components/variableSuggestionInputDropDown/types.d.ts +1 -0
  26. package/lib/index.d.ts +53 -10
  27. package/lib/index.js +8 -8
  28. package/lib/styles.css +1 -1
  29. package/lib/tsconfig.tsbuildinfo +1 -1
  30. package/package.json +1 -1
@@ -171,6 +171,7 @@ export interface VariableSuggestionInputDropDownProps {
171
171
  isIconDisable?: boolean;
172
172
  iconColor?: string;
173
173
  };
174
+ isCapitalize?: boolean;
174
175
  }
175
176
  export interface OptionsDropdownProps {
176
177
  /**
package/lib/index.d.ts CHANGED
@@ -910,6 +910,7 @@ interface InputProps {
910
910
  */
911
911
  isClearIcon?: boolean;
912
912
  };
913
+ isCapitalize?: boolean;
913
914
  }
914
915
 
915
916
  declare const Input: React$1.ForwardRefExoticComponent<InputProps & React$1.RefAttributes<HTMLInputElement>>;
@@ -1076,6 +1077,7 @@ interface SelectProps$1 {
1076
1077
  dropdownPlacement?: 'top' | 'bottom' | 'auto';
1077
1078
  dropdownClassName?: string;
1078
1079
  variant?: 'default' | 'ai' | 'machines';
1080
+ isCapitalize?: boolean;
1079
1081
  }
1080
1082
  type OptionValue$3 = any;
1081
1083
  interface Option$5 {
@@ -2185,6 +2187,53 @@ interface MiniEditModalProps {
2185
2187
 
2186
2188
  declare const MiniModal: React$1.ForwardRefExoticComponent<MiniEditModalProps & React$1.RefAttributes<HTMLDivElement>>;
2187
2189
 
2190
+ interface StreamUrls {
2191
+ Web?: string;
2192
+ Android?: string;
2193
+ iOS?: string;
2194
+ [platform: string]: string | undefined;
2195
+ }
2196
+ interface BrowserInfo {
2197
+ subType: string;
2198
+ type: string;
2199
+ osName: string;
2200
+ name: string;
2201
+ platform: string;
2202
+ version: string;
2203
+ fireflinkDeviceType: string | null;
2204
+ }
2205
+ interface DeviceInfo$1 {
2206
+ subType?: string;
2207
+ type?: string;
2208
+ osName?: string;
2209
+ name?: string;
2210
+ platform?: string;
2211
+ version?: string;
2212
+ fireflinkDeviceType?: string | null;
2213
+ [key: string]: any;
2214
+ }
2215
+ interface LiveExecutionStreamData {
2216
+ id: string;
2217
+ executionId: string;
2218
+ runId: string;
2219
+ scriptId: string;
2220
+ scriptName: string;
2221
+ runName: string;
2222
+ src?: string;
2223
+ currentScripts?: number;
2224
+ icon?: string;
2225
+ machineId: string;
2226
+ machineName: string;
2227
+ type: string;
2228
+ isRunning: boolean;
2229
+ access: string;
2230
+ currentPlatform: keyof StreamUrls;
2231
+ currentScript: number;
2232
+ totalScripts: number;
2233
+ streamUrls: StreamUrls;
2234
+ browserInfo: BrowserInfo | null;
2235
+ deviceInfo: DeviceInfo$1 | null;
2236
+ }
2188
2237
  interface OverviewModalProps {
2189
2238
  isOpen: boolean;
2190
2239
  isMaximized: boolean;
@@ -2203,16 +2252,7 @@ interface OverviewModalProps {
2203
2252
  downloadHandler: () => void;
2204
2253
  zIndex?: number;
2205
2254
  customStyle?: React.CSSProperties;
2206
- multiData?: Array<{
2207
- machineName?: string;
2208
- scriptName?: string;
2209
- icon?: string;
2210
- src: string;
2211
- alt?: string;
2212
- runId?: string;
2213
- currentScripts?: number;
2214
- totalScripts?: number;
2215
- }>;
2255
+ multiData?: Array<LiveExecutionStreamData>;
2216
2256
  setSelectedVideo?: (video: {
2217
2257
  currentVideoData?: {
2218
2258
  machineName?: string;
@@ -5243,6 +5283,7 @@ type BarChartProps = {
5243
5283
  type?: string;
5244
5284
  isMemory?: boolean;
5245
5285
  tooltipWidth?: string;
5286
+ useSectionBasedWidth?: boolean;
5246
5287
  };
5247
5288
  declare const BarChart: React__default.FC<BarChartProps>;
5248
5289
 
@@ -5582,6 +5623,7 @@ interface ConditionalDropdownProps {
5582
5623
  truncateTextValue?: number;
5583
5624
  isClearIconShow?: boolean;
5584
5625
  width?: string;
5626
+ isCapitalize?: boolean;
5585
5627
  }
5586
5628
 
5587
5629
  declare const ConditionalDropdown: React$1.ForwardRefExoticComponent<ConditionalDropdownProps & React$1.RefAttributes<HTMLInputElement>>;
@@ -5837,6 +5879,7 @@ interface VariableSuggestionInputDropDownProps {
5837
5879
  isIconDisable?: boolean;
5838
5880
  iconColor?: string;
5839
5881
  };
5882
+ isCapitalize?: boolean;
5840
5883
  }
5841
5884
 
5842
5885
  declare const VariableSuggestionInputDropDown: React$1.ForwardRefExoticComponent<VariableSuggestionInputDropDownProps & React$1.RefAttributes<HTMLInputElement>>;