abdul-react 0.0.27 → 0.0.29
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/components/CreateVariable/CreateVariableSlider.js +15 -7
- package/lib/components/CreateVariable/CreateVariableSlider.js.map +1 -1
- package/lib/components/Editor/Editor.js +3 -0
- package/lib/components/Editor/Editor.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFile.d.ts +7 -6
- package/lib/components/Excel/ExcelFile/ExcelFile.js +106 -21
- package/lib/components/Excel/ExcelFile/ExcelFile.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/ColumnIndicator.js +16 -5
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/ColumnIndicator.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.d.ts +2 -0
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.js +9 -3
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.js.map +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/types.d.ts +2 -0
- package/lib/components/Excel/ExcelToolBar/ExcelToolBar.js +5 -1
- package/lib/components/Excel/ExcelToolBar/ExcelToolBar.js.map +1 -1
- package/lib/components/InputWithDropdown/InputWithDropdown.js +1 -1
- package/lib/components/InputWithDropdown/InputWithDropdown.js.map +1 -1
- package/lib/components/MenuOption/MenuOption.js +7 -2
- package/lib/components/MenuOption/MenuOption.js.map +1 -1
- package/lib/components/NLPInput/NlpInput.js +2 -2
- package/lib/components/NLPInput/NlpInput.js.map +1 -1
- package/lib/components/NLPInput/components/ChipsFolder/ChipsAccordion.js +2 -2
- package/lib/components/NLPInput/components/ChipsFolder/ChipsAccordion.js.map +1 -1
- package/lib/components/TextEditor/TextEditor.js +38 -35
- package/lib/components/TextEditor/TextEditor.js.map +1 -1
- package/lib/index.cjs +200 -76
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.ts +7 -6
- 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
|
@@ -3333,10 +3333,13 @@ interface ExcelFileProps {
|
|
|
3333
3333
|
* This helps in determining the structure of the sheet.
|
|
3334
3334
|
*/
|
|
3335
3335
|
colCount?: number;
|
|
3336
|
-
|
|
3337
|
-
|
|
3338
|
-
|
|
3339
|
-
|
|
3336
|
+
onSave?: (saveData: SaveData[], headerOldNewData?: {
|
|
3337
|
+
sheetName: string;
|
|
3338
|
+
headers: {
|
|
3339
|
+
newData: string;
|
|
3340
|
+
oldData: string;
|
|
3341
|
+
}[];
|
|
3342
|
+
}[]) => void;
|
|
3340
3343
|
onSaveInfoChange?: (info: string) => void;
|
|
3341
3344
|
/**
|
|
3342
3345
|
* Delay time (in milliseconds) before the onSave callback is executed.
|
|
@@ -3380,8 +3383,6 @@ interface ExcelFileProps {
|
|
|
3380
3383
|
maxRowLimit?: number;
|
|
3381
3384
|
maxColLimit?: number;
|
|
3382
3385
|
maxSheetLimit?: number;
|
|
3383
|
-
selectedSheetName?: string;
|
|
3384
|
-
onSheetChange?: React__default.Dispatch<React__default.SetStateAction<string | undefined>>;
|
|
3385
3386
|
}
|
|
3386
3387
|
declare const ExcelFile: React__default.FC<ExcelFileProps>;
|
|
3387
3388
|
|
|
@@ -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/beautifier.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';
|