@univerjs-pro/drill-down-extraction 0.4.2-nightly.202411071606 → 0.4.2-nightly.202411091134

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 (46) hide show
  1. package/lib/cjs/index.js +1 -0
  2. package/lib/cjs/locale/en-US.js +1 -0
  3. package/lib/cjs/locale/fa-IR.js +1 -0
  4. package/lib/cjs/locale/ru-RU.js +1 -0
  5. package/lib/cjs/locale/vi-VN.js +1 -0
  6. package/lib/cjs/locale/zh-CN.js +1 -0
  7. package/lib/cjs/locale/zh-TW.js +1 -0
  8. package/lib/es/index.js +1 -1
  9. package/lib/es/locale/en-US.js +1 -0
  10. package/lib/es/locale/fa-IR.js +1 -0
  11. package/lib/es/locale/ru-RU.js +1 -0
  12. package/lib/es/locale/vi-VN.js +1 -0
  13. package/lib/es/locale/zh-CN.js +1 -0
  14. package/lib/es/locale/zh-TW.js +1 -0
  15. package/lib/types/index.d.ts +95 -3
  16. package/lib/umd/index.js +1 -1
  17. package/lib/umd/locale/en-US.js +1 -1
  18. package/lib/umd/locale/fa-IR.js +1 -1
  19. package/lib/umd/locale/ru-RU.js +1 -1
  20. package/lib/umd/locale/vi-VN.js +1 -1
  21. package/lib/umd/locale/zh-CN.js +1 -1
  22. package/lib/umd/locale/zh-TW.js +1 -1
  23. package/package.json +27 -21
  24. package/lib/locale/en-US.js +0 -1
  25. package/lib/locale/fa-IR.js +0 -1
  26. package/lib/locale/ru-RU.js +0 -1
  27. package/lib/locale/vi-VN.js +0 -1
  28. package/lib/locale/zh-CN.js +0 -1
  29. package/lib/locale/zh-TW.js +0 -1
  30. package/lib/types/common/extraction-field.d.ts +0 -24
  31. package/lib/types/common/field-extraction-event.d.ts +0 -34
  32. package/lib/types/constants.d.ts +0 -1
  33. package/lib/types/controllers/config.schema.d.ts +0 -5
  34. package/lib/types/controllers/drill-down-extraction-hyper-link.controller.d.ts +0 -21
  35. package/lib/types/controllers/drill-down-extraction-ui.controller.d.ts +0 -7
  36. package/lib/types/controllers/drill-down-extraction.controller.d.ts +0 -61
  37. package/lib/types/locale/en-US.d.ts +0 -3
  38. package/lib/types/locale/fa-IR.d.ts +0 -3
  39. package/lib/types/locale/ru-RU.d.ts +0 -3
  40. package/lib/types/locale/vi-VN.d.ts +0 -3
  41. package/lib/types/locale/zh-CN.d.ts +0 -46
  42. package/lib/types/locale/zh-TW.d.ts +0 -3
  43. package/lib/types/plugin.d.ts +0 -13
  44. package/lib/types/services/suggestion-manager.service.d.ts +0 -62
  45. package/lib/types/views/components/ExtractionFieldForm.d.ts +0 -2
  46. package/lib/types/views/components/FloatingButton.d.ts +0 -25
@@ -1,62 +0,0 @@
1
- import { DisposableCollection, IDisposable, IRange, Nullable } from '@univerjs/core';
2
- export interface ISuggestionManagerServiceParam {
3
- unitId: string;
4
- subUnitId: string;
5
- range: IRange;
6
- disposable: DisposableCollection;
7
- }
8
- export interface ISuggestManagerServiceRequestParam {
9
- minInterval: number | null;
10
- maxInterval: number | null;
11
- }
12
- export declare enum SuggestStateEnum {
13
- CONFIG = 0,
14
- REQUESTING = 1,
15
- COMPLETE = 2,
16
- ERROR = 3,
17
- STOP = 4,
18
- IDLE = 5
19
- }
20
- export declare enum OperationTypeEnum {
21
- REQUEST = 0,
22
- CLEAR = 1,
23
- STOP = 2,
24
- START = 3
25
- }
26
- export interface ISuggestionManagerOptions {
27
- label: string;
28
- value: string;
29
- selected?: boolean;
30
- }
31
- export declare class SuggestionManagerService {
32
- private _suggestionParam;
33
- private _requestParam;
34
- private _suggestState;
35
- private _request$;
36
- readonly request$: import('rxjs').Observable<SuggestStateEnum>;
37
- private _operation$;
38
- readonly operation$: import('rxjs').Observable<OperationTypeEnum>;
39
- private _extensionInstalled;
40
- constructor();
41
- get extensionInstalled(): boolean;
42
- get suggestState(): SuggestStateEnum;
43
- dispose(): void;
44
- suggest(suggestState?: SuggestStateEnum): void;
45
- operation(state?: OperationTypeEnum): void;
46
- isSuggesting(): boolean;
47
- updateRange(range: IRange): void;
48
- disposeSuggestion(): void;
49
- addDisposable(disposable: IDisposable): void;
50
- setRequestParam(value: Nullable<ISuggestManagerServiceRequestParam>): void;
51
- setSuggestionParam(value: Nullable<ISuggestionManagerServiceParam>): void;
52
- getRequestParam(): Nullable<ISuggestManagerServiceRequestParam>;
53
- getSuggestionParam(): Nullable<ISuggestionManagerServiceParam>;
54
- getSuggestionRange(): IRange | undefined;
55
- private _hyperlinkOptions;
56
- getHyperlinkOptions(): ISuggestionManagerOptions[];
57
- setHyperlinkOptions(options: ISuggestionManagerOptions[]): void;
58
- private _columnOptions;
59
- getColumnOptions(): ISuggestionManagerOptions[];
60
- setColumnOptions(options: ISuggestionManagerOptions[]): void;
61
- getSelectedColumns(): number[];
62
- }
@@ -1,2 +0,0 @@
1
- import { default as React } from 'react';
2
- export declare const ExtractionFieldForm: React.NamedExoticComponent<import('@univerjs/sheets-hyper-link-ui/services/side-panel.service.js').ICustomHyperLinkFormProps>;
@@ -1,25 +0,0 @@
1
- import { default as React } from 'react';
2
- export default function DrillDownExtractionFloatingButton(): React.JSX.Element;
3
- interface IDrillDownExtractionColumnSelectorProps {
4
- options: {
5
- label: string;
6
- value: string;
7
- }[];
8
- value: string[];
9
- onChange: (value: string[]) => void;
10
- }
11
- export declare function DrillDownExtractionColumnSelector(props: IDrillDownExtractionColumnSelectorProps): React.JSX.Element;
12
- export declare function DrillDownExtractionFloatingHeader(): React.JSX.Element;
13
- export declare function DrillDownExtractionLimitationDialog(props: {
14
- visible: boolean;
15
- onClose?: () => void;
16
- limit?: number;
17
- }): React.JSX.Element;
18
- export declare function InstallExtensionDialog(props: {
19
- visible: boolean;
20
- onClose?: () => void;
21
- }): React.JSX.Element;
22
- export declare function DrillDownExtractionStartFooter(props: {
23
- onStart: () => void;
24
- }): React.JSX.Element;
25
- export {};