abdul-react 0.0.28 → 0.0.30
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 +1 -0
- package/lib/_virtual/index10.js +2 -2
- package/lib/_virtual/index9.js +2 -2
- package/lib/assets/icons/access_key.svg.js +6 -0
- package/lib/assets/icons/access_key.svg.js.map +1 -0
- 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/ChatModalAi/ChatModalAi.js +7 -2
- package/lib/components/ChatModalAi/ChatModalAi.js.map +1 -1
- package/lib/components/ChatModalAi/types.d.ts +1 -0
- 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/Excel/ExcelFile/ExcelFile.d.ts +7 -4
- package/lib/components/Excel/ExcelFile/ExcelFile.js +107 -4
- package/lib/components/Excel/ExcelFile/ExcelFile.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/ActiveCell.js +8 -4
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/ActiveCell.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/ColumnIndicator.js +25 -6
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/ColumnIndicator.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/Copied.d.ts +9 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/Copied.js +26 -7
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/Copied.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/RowIndicator.js +14 -6
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/RowIndicator.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/Selected.d.ts +4 -0
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/Selected.js +15 -20
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/Selected.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.d.ts +5 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.js +74 -32
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/reducer.js +23 -19
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/reducer.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/reducerFunctions.js +3 -3
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/reducerFunctions.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/types.d.ts +14 -0
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/util.d.ts +1 -0
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/util.js +33 -44
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/util.js.map +1 -1
- package/lib/components/Icon/iconList.js +6 -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/Prompt/Prompt.js +4 -2
- package/lib/components/Prompt/Prompt.js.map +1 -1
- package/lib/components/Prompt/types.d.ts +1 -0
- 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/components/SequentialConnectingBranch/components/Branches/Branches.js +1 -1
- package/lib/components/SequentialConnectingBranch/components/Branches/Branches.js.map +1 -1
- package/lib/components/TableTreeFn/Components/TableHead.js +12 -1
- package/lib/components/TableTreeFn/Components/TableHead.js.map +1 -1
- package/lib/index.cjs +411 -160
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.ts +17 -6
- package/lib/node_modules/js-beautify/js/src/html/beautifier.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/html/tokenizer.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/index.js +1 -1
- package/lib/node_modules/js-beautify/js/src/javascript/options.js +1 -1
- package/lib/node_modules/js-beautify/js/src/javascript/tokenizer.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
|
@@ -2199,6 +2199,7 @@ type TreeNodeProps = {
|
|
|
2199
2199
|
conditionId?: string;
|
|
2200
2200
|
machInstanceId?: string;
|
|
2201
2201
|
duration?: string;
|
|
2202
|
+
headless?: boolean;
|
|
2202
2203
|
};
|
|
2203
2204
|
|
|
2204
2205
|
interface NewNode$1 {
|
|
@@ -2495,7 +2496,7 @@ interface DatePickerProps {
|
|
|
2495
2496
|
/**
|
|
2496
2497
|
* Function to handle date selection.
|
|
2497
2498
|
*/
|
|
2498
|
-
onChange: (value: DateValue) => void;
|
|
2499
|
+
onChange: (value: DateValue, formatted?: string) => void;
|
|
2499
2500
|
/**
|
|
2500
2501
|
* Placeholder text for the input field.
|
|
2501
2502
|
*/
|
|
@@ -2546,6 +2547,10 @@ interface DatePickerProps {
|
|
|
2546
2547
|
* Function to handle onBlur for datepicker.
|
|
2547
2548
|
*/
|
|
2548
2549
|
onBlur?: (date: DateValue) => void;
|
|
2550
|
+
/**
|
|
2551
|
+
* Default:False,if true, the date picker will not apply any date formatting.
|
|
2552
|
+
*/
|
|
2553
|
+
withOutDateFormat?: boolean;
|
|
2549
2554
|
}
|
|
2550
2555
|
type DateValue = Date | undefined;
|
|
2551
2556
|
|
|
@@ -3341,10 +3346,13 @@ interface ExcelFileProps {
|
|
|
3341
3346
|
* This helps in determining the structure of the sheet.
|
|
3342
3347
|
*/
|
|
3343
3348
|
colCount?: number;
|
|
3344
|
-
|
|
3345
|
-
|
|
3346
|
-
|
|
3347
|
-
|
|
3349
|
+
onSave?: (saveData: SaveData[], headerOldNewData?: {
|
|
3350
|
+
sheetName: string;
|
|
3351
|
+
headers: {
|
|
3352
|
+
newData: string;
|
|
3353
|
+
oldData: string;
|
|
3354
|
+
}[];
|
|
3355
|
+
}[]) => void;
|
|
3348
3356
|
onSaveInfoChange?: (info: string) => void;
|
|
3349
3357
|
/**
|
|
3350
3358
|
* Delay time (in milliseconds) before the onSave callback is executed.
|
|
@@ -3892,7 +3900,7 @@ interface MobileSkinProps {
|
|
|
3892
3900
|
UtilityBar?: boolean;
|
|
3893
3901
|
background?: string;
|
|
3894
3902
|
tooltip?: Record<string, string>;
|
|
3895
|
-
navBarPosition?: 'top' | 'bottom';
|
|
3903
|
+
navBarPosition?: 'top' | 'bottom' | 'left';
|
|
3896
3904
|
tooltipFormatter?: ((title: string) => React.ReactNode) | undefined;
|
|
3897
3905
|
}
|
|
3898
3906
|
|
|
@@ -3911,6 +3919,7 @@ interface promptProp {
|
|
|
3911
3919
|
iconColor?: string;
|
|
3912
3920
|
tooltipTitle?: string;
|
|
3913
3921
|
value: string;
|
|
3922
|
+
disableInput?: boolean;
|
|
3914
3923
|
onPromptChange?: (event: React.ChangeEvent<HTMLInputElement>) => void;
|
|
3915
3924
|
onBlur?: (event: React.FocusEvent<HTMLInputElement>) => void;
|
|
3916
3925
|
onFocus?: (event: React.FocusEvent<HTMLInputElement>) => void;
|
|
@@ -3994,6 +4003,7 @@ interface ChatModalAiProps {
|
|
|
3994
4003
|
iconHeight?: number;
|
|
3995
4004
|
iconWidth?: number;
|
|
3996
4005
|
hoverTitle?: string;
|
|
4006
|
+
onVisibilityChange?: (visible: boolean) => void;
|
|
3997
4007
|
}
|
|
3998
4008
|
|
|
3999
4009
|
declare const ChatModalAi: React$1.ForwardRefExoticComponent<ChatModalAiProps & React$1.RefAttributes<ChatModalRef>>;
|
|
@@ -4069,6 +4079,7 @@ interface PromptContainerProps {
|
|
|
4069
4079
|
isViewAccess?: boolean;
|
|
4070
4080
|
versionsLength?: number;
|
|
4071
4081
|
count?: number;
|
|
4082
|
+
hiddenActions?: string[] | string;
|
|
4072
4083
|
}
|
|
4073
4084
|
|
|
4074
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 requireTokenizer } from './tokenizer.js';
|
|
@@ -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 { __exports as tokenizer } from '../../../../../_virtual/
|
|
1
|
+
import { __exports as tokenizer } from '../../../../../_virtual/tokenizer.js';
|
|
2
2
|
import { __require as requireTokenizer$1 } from '../core/tokenizer.js';
|
|
3
3
|
import { __require as requireDirectives } from '../core/directives.js';
|
|
4
4
|
import { __require as requireTemplatablepattern } from '../core/templatablepattern.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 requireOutput } from '../core/output.js';
|
|
3
3
|
import { __require as requireToken } from '../core/token.js';
|
|
4
4
|
import { __require as requireAcorn } from './acorn.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { __module as javascript } from '../../../../../_virtual/
|
|
1
|
+
import { __module as javascript } from '../../../../../_virtual/index9.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 { __exports as tokenizer } from '../../../../../_virtual/
|
|
1
|
+
import { __exports as tokenizer } from '../../../../../_virtual/tokenizer2.js';
|
|
2
2
|
import { __require as requireInputscanner } from '../core/inputscanner.js';
|
|
3
3
|
import { __require as requireTokenizer$1 } from '../core/tokenizer.js';
|
|
4
4
|
import { __require as requireDirectives } from '../core/directives.js';
|