pixel-priya 1.2.56 → 1.2.57
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/lib/ComponentProps/TreeNodeProps.d.ts +2 -0
- package/lib/_virtual/index10.js +2 -2
- package/lib/_virtual/index11.js +2 -2
- package/lib/assets/icons/apps_icon.svg.js +6 -0
- package/lib/assets/icons/apps_icon.svg.js.map +1 -0
- package/lib/assets/icons/home_icon.svg.js +6 -0
- package/lib/assets/icons/home_icon.svg.js.map +1 -0
- package/lib/components/Charts/BarChart/BarChart.js +38 -8
- package/lib/components/Charts/BarChart/BarChart.js.map +1 -1
- package/lib/components/Excel/ExcelToolBar/ExcelToolBar.js +8 -8
- package/lib/components/Excel/ExcelToolBar/ExcelToolBar.js.map +1 -1
- package/lib/components/Icon/iconList.js +4 -0
- package/lib/components/Icon/iconList.js.map +1 -1
- package/lib/components/IconButton/IconButton.js +5 -1
- package/lib/components/IconButton/IconButton.js.map +1 -1
- package/lib/components/IconButton/types.d.ts +1 -0
- package/lib/components/InputWithDropdown/InputWithDropdown.js +4 -2
- package/lib/components/InputWithDropdown/InputWithDropdown.js.map +1 -1
- package/lib/components/InputWithDropdown/types.d.ts +1 -0
- package/lib/components/MultiSelect/Dropdown.js +2 -1
- package/lib/components/MultiSelect/Dropdown.js.map +1 -1
- package/lib/components/MultiSelect/MultiSelect.js +1 -1
- package/lib/components/MultiSelect/MultiSelect.js.map +1 -1
- package/lib/index.cjs +64 -21
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.ts +4 -0
- package/lib/node_modules/js-beautify/js/src/css/options.js +1 -1
- package/lib/node_modules/js-beautify/js/src/html/index.js +1 -1
- package/lib/node_modules/js-beautify/js/src/html/options.js +1 -1
- package/lib/node_modules/js-beautify/js/src/javascript/index.js +1 -1
- package/lib/node_modules/js-beautify/js/src/javascript/options.js +1 -1
- package/lib/styles.css +1 -1
- package/lib/styles.css.map +1 -1
- package/package.json +2 -2
package/lib/index.d.ts
CHANGED
|
@@ -1897,6 +1897,7 @@ interface InputWithDropdownProps {
|
|
|
1897
1897
|
*/
|
|
1898
1898
|
disableSelectHover?: boolean;
|
|
1899
1899
|
inputRefWithDropdown?: RefObject<HTMLInputElement>;
|
|
1900
|
+
autoFocus?: boolean;
|
|
1900
1901
|
}
|
|
1901
1902
|
|
|
1902
1903
|
declare const InputWithDropdown: React$1.ForwardRefExoticComponent<InputWithDropdownProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
@@ -2214,6 +2215,8 @@ type TreeNodeProps = {
|
|
|
2214
2215
|
duration?: string;
|
|
2215
2216
|
headless?: boolean;
|
|
2216
2217
|
recordedVideoUrlId?: string;
|
|
2218
|
+
videoRecorderPath?: string;
|
|
2219
|
+
includeIteration?: boolean;
|
|
2217
2220
|
};
|
|
2218
2221
|
|
|
2219
2222
|
interface NewNode$1 {
|
|
@@ -2592,6 +2595,7 @@ interface IconButtonProps {
|
|
|
2592
2595
|
iconHide?: boolean;
|
|
2593
2596
|
isDisable?: boolean;
|
|
2594
2597
|
variant?: 'default' | 'primary';
|
|
2598
|
+
type?: 'button' | 'submit' | 'reset';
|
|
2595
2599
|
}
|
|
2596
2600
|
|
|
2597
2601
|
declare const IconButton: React$1.ForwardRefExoticComponent<Omit<IconButtonProps, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { __module as html } from '../../../../../_virtual/
|
|
1
|
+
import { __module as html } from '../../../../../_virtual/index10.js';
|
|
2
2
|
import { __require as requireBeautifier } from './beautifier.js';
|
|
3
3
|
import { __require as requireOptions } from './options.js';
|
|
4
4
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { __module as javascript } from '../../../../../_virtual/
|
|
1
|
+
import { __module as javascript } from '../../../../../_virtual/index11.js';
|
|
2
2
|
import { __require as requireBeautifier } from './beautifier.js';
|
|
3
3
|
import { __require as requireOptions } from './options.js';
|
|
4
4
|
|