pixel-react 1.14.55 → 1.14.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/assets/icons/jSON_code_icon.svg.js +6 -0
- package/lib/assets/icons/jSON_code_icon.svg.js.map +1 -0
- package/lib/assets/icons/list_icon.svg.js +6 -0
- package/lib/assets/icons/list_icon.svg.js.map +1 -0
- package/lib/components/AppHeader/AppHeader.js +9 -6
- package/lib/components/AppHeader/AppHeader.js.map +1 -1
- package/lib/components/DatePicker/DatePicker.js +20 -3
- package/lib/components/DatePicker/DatePicker.js.map +1 -1
- package/lib/components/DatePicker/types.d.ts +5 -1
- package/lib/components/Icon/iconList.js +4 -0
- package/lib/components/Icon/iconList.js.map +1 -1
- package/lib/components/MobileSkin/MobileSkin.js +22 -2
- package/lib/components/MobileSkin/MobileSkin.js.map +1 -1
- package/lib/components/MobileSkin/MobileSkinInterface.d.ts +1 -1
- package/lib/components/PromptContainer/PromptContainer.js +4 -2
- package/lib/components/PromptContainer/PromptContainer.js.map +1 -1
- package/lib/components/PromptContainer/types.d.ts +1 -0
- package/lib/index.cjs +61 -13
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.ts +7 -2
- package/lib/node_modules/js-beautify/js/src/css/beautifier.js +1 -1
- package/lib/node_modules/js-beautify/js/src/css/options.js +1 -1
- package/lib/node_modules/js-beautify/js/src/html/beautifier.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/beautifier.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 +1 -1
package/lib/index.d.ts
CHANGED
@@ -2496,7 +2496,7 @@ interface DatePickerProps {
|
|
2496
2496
|
/**
|
2497
2497
|
* Function to handle date selection.
|
2498
2498
|
*/
|
2499
|
-
onChange: (value: DateValue) => void;
|
2499
|
+
onChange: (value: DateValue, formatted?: string) => void;
|
2500
2500
|
/**
|
2501
2501
|
* Placeholder text for the input field.
|
2502
2502
|
*/
|
@@ -2547,6 +2547,10 @@ interface DatePickerProps {
|
|
2547
2547
|
* Function to handle onBlur for datepicker.
|
2548
2548
|
*/
|
2549
2549
|
onBlur?: (date: DateValue) => void;
|
2550
|
+
/**
|
2551
|
+
* Default:False,if true, the date picker will not apply any date formatting.
|
2552
|
+
*/
|
2553
|
+
withOutDateFormat?: boolean;
|
2550
2554
|
}
|
2551
2555
|
type DateValue = Date | undefined;
|
2552
2556
|
|
@@ -3896,7 +3900,7 @@ interface MobileSkinProps {
|
|
3896
3900
|
UtilityBar?: boolean;
|
3897
3901
|
background?: string;
|
3898
3902
|
tooltip?: Record<string, string>;
|
3899
|
-
navBarPosition?: 'top' | 'bottom';
|
3903
|
+
navBarPosition?: 'top' | 'bottom' | 'left';
|
3900
3904
|
tooltipFormatter?: ((title: string) => React.ReactNode) | undefined;
|
3901
3905
|
}
|
3902
3906
|
|
@@ -4075,6 +4079,7 @@ interface PromptContainerProps {
|
|
4075
4079
|
isViewAccess?: boolean;
|
4076
4080
|
versionsLength?: number;
|
4077
4081
|
count?: number;
|
4082
|
+
hiddenActions?: string[] | string;
|
4078
4083
|
}
|
4079
4084
|
|
4080
4085
|
declare const PromptContainer: React__default.FC<PromptContainerProps>;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { __exports as beautifier } from '../../../../../_virtual/
|
1
|
+
import { __exports as beautifier } from '../../../../../_virtual/beautifier.js';
|
2
2
|
import { __require as requireOptions } from './options.js';
|
3
3
|
import { __require as requireOutput } from '../core/output.js';
|
4
4
|
import { __require as requireInputscanner } from '../core/inputscanner.js';
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { __exports as beautifier } from '../../../../../_virtual/
|
1
|
+
import { __exports as beautifier } from '../../../../../_virtual/beautifier2.js';
|
2
2
|
import { __require as requireOptions } from './options.js';
|
3
3
|
import { __require as requireOutput } from '../core/output.js';
|
4
4
|
import { __require as requireTokenizer } from './tokenizer.js';
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { __exports as beautifier } from '../../../../../_virtual/
|
1
|
+
import { __exports as beautifier } from '../../../../../_virtual/beautifier3.js';
|
2
2
|
import { __require as requireOutput } from '../core/output.js';
|
3
3
|
import { __require as requireToken } from '../core/token.js';
|
4
4
|
import { __require as requireAcorn } from './acorn.js';
|