@k8slens/extensions 5.3.1-git.b7cb10521e.0 → 5.3.1-git.b7d29f8c49.0
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/dist/src/common/catalog/catalog-entity.d.ts +69 -3
- package/dist/src/common/routes/preferences.d.ts +2 -0
- package/dist/src/common/user-store/preferences-helpers.d.ts +7 -1
- package/dist/src/common/user-store/user-store.d.ts +2 -1
- package/dist/src/common/utils/__tests__/bind.test.d.ts +1 -0
- package/dist/src/common/utils/collection-functions.d.ts +12 -0
- package/dist/src/common/utils/index.d.ts +5 -0
- package/dist/src/common/vars.d.ts +3 -0
- package/dist/src/extensions/common-api/registrations.d.ts +1 -1
- package/dist/src/extensions/extension-api.js +33 -33
- package/dist/src/extensions/lens-renderer-extension.d.ts +4 -1
- package/dist/src/extensions/registries/index.d.ts +0 -1
- package/dist/src/extensions/renderer-api/components.d.ts +1 -0
- package/dist/src/main/routes/port-forward/port-forward.d.ts +0 -2
- package/dist/src/renderer/components/+catalog/__tests__/custom-columns.test.d.ts +5 -0
- package/dist/src/renderer/components/+catalog/custom-category-columns.d.ts +74 -0
- package/dist/src/renderer/components/+catalog/custom-category-columns.injectable.d.ts +5 -0
- package/dist/src/renderer/components/+catalog/get-category-columns.injectable.d.ts +9 -0
- package/dist/src/renderer/components/+catalog/internal-category-columns.d.ts +8 -0
- package/dist/src/renderer/components/+preferences/app-preferences/app-preferences.injectable.d.ts +7 -0
- package/dist/src/renderer/components/+preferences/app-preferences/get-app-preferences.d.ts +12 -0
- package/dist/src/renderer/components/+preferences/application.d.ts +4 -1
- package/dist/src/renderer/components/+preferences/extension-settings.d.ts +2 -2
- package/dist/src/renderer/components/+preferences/extensions.d.ts +4 -1
- package/dist/src/renderer/components/+preferences/preferences.d.ts +3 -6
- package/dist/src/renderer/components/+preferences/telemetry.d.ts +4 -1
- package/dist/src/renderer/components/+preferences/terminal.d.ts +5 -0
- package/dist/src/renderer/components/dock/terminal/terminal.d.ts +3 -0
- package/dist/src/renderer/components/input/input.d.ts +1 -0
- package/dist/src/renderer/components/table/table-cell.d.ts +37 -0
- package/dist/src/renderer/components/wizard/wizard.d.ts +3 -1
- package/package.json +1 -1
- package/dist/src/extensions/registries/app-preference-registry.d.ts +0 -22
|
@@ -13,12 +13,14 @@ import type { KubernetesCluster } from "../common/catalog-entities";
|
|
|
13
13
|
import type { WelcomeMenuRegistration } from "../renderer/components/+welcome/welcome-menu-items/welcome-menu-registration";
|
|
14
14
|
import type { WelcomeBannerRegistration } from "../renderer/components/+welcome/welcome-banner-items/welcome-banner-registration";
|
|
15
15
|
import type { CommandRegistration } from "../renderer/components/command-palette/registered-commands/commands";
|
|
16
|
+
import type { AppPreferenceRegistration } from "../renderer/components/+preferences/app-preferences/app-preference-registration";
|
|
17
|
+
import type { AdditionalCategoryColumnRegistration } from "../renderer/components/+catalog/custom-category-columns";
|
|
16
18
|
export declare class LensRendererExtension extends LensExtension {
|
|
17
19
|
globalPages: registries.PageRegistration[];
|
|
18
20
|
clusterPages: registries.PageRegistration[];
|
|
19
21
|
clusterPageMenus: registries.ClusterPageMenuRegistration[];
|
|
20
22
|
kubeObjectStatusTexts: registries.KubeObjectStatusRegistration[];
|
|
21
|
-
appPreferences:
|
|
23
|
+
appPreferences: AppPreferenceRegistration[];
|
|
22
24
|
entitySettings: registries.EntitySettingRegistration[];
|
|
23
25
|
statusBarItems: registries.StatusBarRegistration[];
|
|
24
26
|
kubeObjectDetailItems: registries.KubeObjectDetailRegistration[];
|
|
@@ -29,6 +31,7 @@ export declare class LensRendererExtension extends LensExtension {
|
|
|
29
31
|
welcomeBanners: WelcomeBannerRegistration[];
|
|
30
32
|
catalogEntityDetailItems: registries.CatalogEntityDetailRegistration<CatalogEntity>[];
|
|
31
33
|
topBarItems: TopBarRegistration[];
|
|
34
|
+
additionalCategoryColumns: AdditionalCategoryColumnRegistration[];
|
|
32
35
|
navigate<P extends object>(pageId?: string, params?: P): Promise<void>;
|
|
33
36
|
/**
|
|
34
37
|
* Defines if extension is enabled for a given cluster. This method is only
|
|
@@ -12,6 +12,7 @@ export * from "../../renderer/components/slider";
|
|
|
12
12
|
export * from "../../renderer/components/switch";
|
|
13
13
|
export * from "../../renderer/components/input/input";
|
|
14
14
|
export declare const CommandOverlay: import("../../renderer/components/command-palette/command-overlay.injectable").CommandOverlay;
|
|
15
|
+
export type { CategoryColumnRegistration, AdditionalCategoryColumnRegistration, } from "../../renderer/components/+catalog/custom-category-columns";
|
|
15
16
|
export * from "../../renderer/components/icon";
|
|
16
17
|
export * from "../../renderer/components/tooltip";
|
|
17
18
|
export * from "../../renderer/components/tabs";
|
|
@@ -7,7 +7,6 @@ export interface PortForwardArgs {
|
|
|
7
7
|
name: string;
|
|
8
8
|
port: number;
|
|
9
9
|
forwardPort: number;
|
|
10
|
-
protocol?: string;
|
|
11
10
|
}
|
|
12
11
|
interface Dependencies {
|
|
13
12
|
getKubectlBinPath: (bundled: boolean) => Promise<string>;
|
|
@@ -24,7 +23,6 @@ export declare class PortForward {
|
|
|
24
23
|
name: string;
|
|
25
24
|
port: number;
|
|
26
25
|
forwardPort: number;
|
|
27
|
-
protocol: string;
|
|
28
26
|
constructor(dependencies: Dependencies, pathToKubeConfig: string, args: PortForwardArgs);
|
|
29
27
|
start(): Promise<boolean>;
|
|
30
28
|
stop(): Promise<void>;
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
3
|
+
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
4
|
+
*/
|
|
5
|
+
import type React from "react";
|
|
6
|
+
import type { CatalogEntity } from "../../../common/catalog";
|
|
7
|
+
import type { TableCellProps } from "../table";
|
|
8
|
+
/**
|
|
9
|
+
* These are the supported props for the title cell
|
|
10
|
+
*/
|
|
11
|
+
export interface TitleCellProps {
|
|
12
|
+
className?: string;
|
|
13
|
+
title: React.ReactNode;
|
|
14
|
+
}
|
|
15
|
+
export interface CategoryColumnRegistration {
|
|
16
|
+
/**
|
|
17
|
+
* The sorting order value.
|
|
18
|
+
*
|
|
19
|
+
* @default 50
|
|
20
|
+
*/
|
|
21
|
+
priority?: number;
|
|
22
|
+
/**
|
|
23
|
+
* This value MUST to be unique to your extension
|
|
24
|
+
*/
|
|
25
|
+
id: string;
|
|
26
|
+
/**
|
|
27
|
+
* This function will be called to generate the cells (on demand) for the column
|
|
28
|
+
*/
|
|
29
|
+
renderCell: (entity: CatalogEntity) => React.ReactNode;
|
|
30
|
+
/**
|
|
31
|
+
* This function will be used to generate the columns title cell.
|
|
32
|
+
*/
|
|
33
|
+
titleProps: TitleCellProps;
|
|
34
|
+
/**
|
|
35
|
+
* If provided then the column will support sorting and this function will be called to
|
|
36
|
+
* determine a row's ordering.
|
|
37
|
+
*
|
|
38
|
+
* strings are sorted ahead of numbers, and arrays determine ordering between equal
|
|
39
|
+
* elements of the previous index.
|
|
40
|
+
*/
|
|
41
|
+
sortCallback?: (entity: CatalogEntity) => string | number | (string | number)[];
|
|
42
|
+
/**
|
|
43
|
+
* If provided then searching is supported on this column and this function will be called
|
|
44
|
+
* to determine if the current search string matches for this row.
|
|
45
|
+
*/
|
|
46
|
+
searchFilter?: (entity: CatalogEntity) => string | string[];
|
|
47
|
+
}
|
|
48
|
+
/**
|
|
49
|
+
* This is the type used to declare new catalog category columns
|
|
50
|
+
*/
|
|
51
|
+
export interface AdditionalCategoryColumnRegistration extends CategoryColumnRegistration {
|
|
52
|
+
/**
|
|
53
|
+
* The catalog entity kind that is declared by the category for this registration
|
|
54
|
+
*
|
|
55
|
+
* e.g.
|
|
56
|
+
* - `"KubernetesCluster"`
|
|
57
|
+
*/
|
|
58
|
+
kind: string;
|
|
59
|
+
/**
|
|
60
|
+
* The catalog entity group that is declared by the category for this registration
|
|
61
|
+
*
|
|
62
|
+
* e.g.
|
|
63
|
+
* - `"entity.k8slens.dev"`
|
|
64
|
+
*/
|
|
65
|
+
group: string;
|
|
66
|
+
}
|
|
67
|
+
export interface RegisteredAdditionalCategoryColumn {
|
|
68
|
+
id: string;
|
|
69
|
+
priority: number;
|
|
70
|
+
renderCell: (entity: CatalogEntity) => React.ReactNode;
|
|
71
|
+
titleProps: TableCellProps;
|
|
72
|
+
sortCallback?: (entity: CatalogEntity) => string | number | (string | number)[];
|
|
73
|
+
searchFilter?: (entity: CatalogEntity) => string | string[];
|
|
74
|
+
}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
/// <reference types="@ogre-tools/injectable" />
|
|
2
|
+
import { IComputedValue } from "mobx";
|
|
3
|
+
import type { RegisteredAdditionalCategoryColumn } from "./custom-category-columns";
|
|
4
|
+
declare const categoryColumnsInjectable: import("@ogre-tools/injectable").Injectable<import("@ogre-tools/injectable").InjectionToken<IComputedValue<Map<string, Map<string, RegisteredAdditionalCategoryColumn[]>>>, unknown>, IComputedValue<Map<string, Map<string, RegisteredAdditionalCategoryColumn[]>>>, unknown>;
|
|
5
|
+
export default categoryColumnsInjectable;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/// <reference types="@ogre-tools/injectable" />
|
|
2
|
+
import type { CatalogCategory, CatalogEntity } from "../../../common/catalog";
|
|
3
|
+
import type { ItemListLayoutProps } from "../item-object-list";
|
|
4
|
+
export interface GetCategoryColumnsParams {
|
|
5
|
+
activeCategory: CatalogCategory | null | undefined;
|
|
6
|
+
}
|
|
7
|
+
export declare type CategoryColumns = Required<Pick<ItemListLayoutProps<CatalogEntity>, "sortingCallbacks" | "searchFilters" | "renderTableContents" | "renderTableHeader">>;
|
|
8
|
+
declare const getCategoryColumnsInjectable: import("@ogre-tools/injectable").Injectable<import("@ogre-tools/injectable").InjectionToken<(args_0: GetCategoryColumnsParams) => Required<Pick<ItemListLayoutProps<CatalogEntity<import("../../../common/catalog").CatalogEntityMetadata, import("../../../common/catalog").CatalogEntityStatus, import("../../../common/catalog").CatalogEntitySpec>>, "searchFilters" | "sortingCallbacks" | "renderTableHeader" | "renderTableContents">>, unknown>, (args_0: GetCategoryColumnsParams) => Required<Pick<ItemListLayoutProps<CatalogEntity<import("../../../common/catalog").CatalogEntityMetadata, import("../../../common/catalog").CatalogEntityStatus, import("../../../common/catalog").CatalogEntitySpec>>, "searchFilters" | "sortingCallbacks" | "renderTableHeader" | "renderTableContents">>, unknown>;
|
|
9
|
+
export default getCategoryColumnsInjectable;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
3
|
+
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
4
|
+
*/
|
|
5
|
+
import type { RegisteredAdditionalCategoryColumn } from "./custom-category-columns";
|
|
6
|
+
export declare const browseAllColumns: RegisteredAdditionalCategoryColumn[];
|
|
7
|
+
export declare const nameCategoryColumn: RegisteredAdditionalCategoryColumn;
|
|
8
|
+
export declare const defaultCategoryColumns: RegisteredAdditionalCategoryColumn[];
|
package/dist/src/renderer/components/+preferences/app-preferences/app-preferences.injectable.d.ts
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
3
|
+
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
4
|
+
*/
|
|
5
|
+
/// <reference types="@ogre-tools/injectable" />
|
|
6
|
+
declare const appPreferencesInjectable: import("@ogre-tools/injectable").Injectable<import("@ogre-tools/injectable").InjectionToken<import("mobx").IComputedValue<import("./app-preference-registration").RegisteredAppPreference[]>, unknown>, import("mobx").IComputedValue<import("./app-preference-registration").RegisteredAppPreference[]>, unknown>;
|
|
7
|
+
export default appPreferencesInjectable;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
3
|
+
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
4
|
+
*/
|
|
5
|
+
import { IComputedValue } from "mobx";
|
|
6
|
+
import type { LensRendererExtension } from "../../../../extensions/lens-renderer-extension";
|
|
7
|
+
import type { RegisteredAppPreference } from "./app-preference-registration";
|
|
8
|
+
interface Dependencies {
|
|
9
|
+
extensions: IComputedValue<LensRendererExtension[]>;
|
|
10
|
+
}
|
|
11
|
+
export declare const getAppPreferences: ({ extensions }: Dependencies) => IComputedValue<RegisteredAppPreference[]>;
|
|
12
|
+
export {};
|
|
@@ -2,4 +2,7 @@
|
|
|
2
2
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
3
3
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
4
4
|
*/
|
|
5
|
-
|
|
5
|
+
import React from "react";
|
|
6
|
+
export declare const Application: React.ForwardRefExoticComponent<React.RefAttributes<any> & {
|
|
7
|
+
children?: React.ReactNode;
|
|
8
|
+
}>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { AppPreferenceRegistration } from "./app-preferences/app-preference-registration";
|
|
2
2
|
interface ExtensionSettingsProps {
|
|
3
|
-
setting:
|
|
3
|
+
setting: AppPreferenceRegistration;
|
|
4
4
|
size: "small" | "normal";
|
|
5
5
|
}
|
|
6
6
|
export declare function ExtensionSettings({ setting, size }: ExtensionSettingsProps): JSX.Element;
|
|
@@ -2,4 +2,7 @@
|
|
|
2
2
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
3
3
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
4
4
|
*/
|
|
5
|
-
|
|
5
|
+
import React from "react";
|
|
6
|
+
export declare const Extensions: React.ForwardRefExoticComponent<React.RefAttributes<any> & {
|
|
7
|
+
children?: React.ReactNode;
|
|
8
|
+
}>;
|
|
@@ -4,9 +4,6 @@
|
|
|
4
4
|
*/
|
|
5
5
|
import "./preferences.scss";
|
|
6
6
|
import React from "react";
|
|
7
|
-
export declare
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
renderNavigation(): JSX.Element;
|
|
11
|
-
render(): JSX.Element;
|
|
12
|
-
}
|
|
7
|
+
export declare const Preferences: React.ForwardRefExoticComponent<React.RefAttributes<any> & {
|
|
8
|
+
children?: React.ReactNode;
|
|
9
|
+
}>;
|
|
@@ -12,6 +12,7 @@ export declare class Terminal {
|
|
|
12
12
|
private dependencies;
|
|
13
13
|
tabId: TabId;
|
|
14
14
|
protected api: TerminalApi;
|
|
15
|
+
private terminalConfig;
|
|
15
16
|
static get spawningPool(): HTMLElement;
|
|
16
17
|
static preloadFonts(): Promise<void>;
|
|
17
18
|
private xterm;
|
|
@@ -37,6 +38,8 @@ export declare class Terminal {
|
|
|
37
38
|
onClickLink: (evt: MouseEvent, link: string) => void;
|
|
38
39
|
onContextMenu: () => void;
|
|
39
40
|
onSelectionChange: () => void;
|
|
41
|
+
setFontSize: (size: number) => void;
|
|
42
|
+
setFontFamily: (family: string) => void;
|
|
40
43
|
keyHandler: (evt: KeyboardEvent) => boolean;
|
|
41
44
|
}
|
|
42
45
|
export {};
|
|
@@ -51,6 +51,7 @@ export declare type InputProps = Omit<InputElementProps, "onChange" | "onSubmit"
|
|
|
51
51
|
iconRight?: IconData;
|
|
52
52
|
contentRight?: string | React.ReactNode;
|
|
53
53
|
validators?: InputValidator | InputValidator[];
|
|
54
|
+
blurOnEnter?: boolean;
|
|
54
55
|
onChange?(value: string, evt: React.ChangeEvent<InputElement>): void;
|
|
55
56
|
onSubmit?(value: string, evt: React.KeyboardEvent<InputElement>): void;
|
|
56
57
|
};
|
|
@@ -7,17 +7,54 @@ import type { TableSortBy, TableSortParams } from "./table";
|
|
|
7
7
|
import React, { ReactNode } from "react";
|
|
8
8
|
export declare type TableCellElem = React.ReactElement<TableCellProps>;
|
|
9
9
|
export interface TableCellProps extends React.DOMAttributes<HTMLDivElement> {
|
|
10
|
+
/**
|
|
11
|
+
* used for configuration visibility of columns
|
|
12
|
+
*/
|
|
10
13
|
id?: string;
|
|
14
|
+
/**
|
|
15
|
+
* Any css class names for this table cell. Only used if `title` is a "simple" react node
|
|
16
|
+
*/
|
|
11
17
|
className?: string;
|
|
18
|
+
/**
|
|
19
|
+
* The actual value of the cell
|
|
20
|
+
*/
|
|
12
21
|
title?: ReactNode;
|
|
22
|
+
/**
|
|
23
|
+
* content inside could be scrolled
|
|
24
|
+
*/
|
|
13
25
|
scrollable?: boolean;
|
|
26
|
+
/**
|
|
27
|
+
* render cell with a checkbox
|
|
28
|
+
*/
|
|
14
29
|
checkbox?: boolean;
|
|
30
|
+
/**
|
|
31
|
+
* mark checkbox as checked or not
|
|
32
|
+
*/
|
|
15
33
|
isChecked?: boolean;
|
|
34
|
+
/**
|
|
35
|
+
* show "true" or "false" for all of the children elements are "typeof boolean"
|
|
36
|
+
*/
|
|
16
37
|
renderBoolean?: boolean;
|
|
38
|
+
/**
|
|
39
|
+
* column name, must be same as key in sortable object <Table sortable={}/>
|
|
40
|
+
*/
|
|
17
41
|
sortBy?: TableSortBy;
|
|
42
|
+
/**
|
|
43
|
+
* id of the column which follow same visibility rules
|
|
44
|
+
*/
|
|
18
45
|
showWithColumn?: string;
|
|
46
|
+
/**
|
|
47
|
+
* @internal
|
|
48
|
+
*/
|
|
19
49
|
_sorting?: Partial<TableSortParams>;
|
|
50
|
+
/**
|
|
51
|
+
* @internal
|
|
52
|
+
*/
|
|
20
53
|
_sort?(sortBy: TableSortBy): void;
|
|
54
|
+
/**
|
|
55
|
+
* @internal
|
|
56
|
+
* indicator, might come from parent <TableHead>, don't use this prop outside (!)
|
|
57
|
+
*/
|
|
21
58
|
_nowrap?: boolean;
|
|
22
59
|
}
|
|
23
60
|
export declare class TableCell extends React.Component<TableCellProps> {
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
3
3
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
4
4
|
*/
|
|
5
|
+
/// <reference types="lodash" />
|
|
5
6
|
import "./wizard.scss";
|
|
6
7
|
import React from "react";
|
|
7
8
|
interface WizardCommonProps<D = any> {
|
|
@@ -73,8 +74,9 @@ export declare class WizardStep extends React.Component<WizardStepProps, WizardS
|
|
|
73
74
|
componentWillUnmount(): void;
|
|
74
75
|
prev: () => void;
|
|
75
76
|
next: () => void;
|
|
76
|
-
submit: () => void
|
|
77
|
+
submit: import("lodash").DebouncedFunc<() => void>;
|
|
77
78
|
renderLoading(): JSX.Element;
|
|
79
|
+
keyDown(evt: React.KeyboardEvent<HTMLElement>): void;
|
|
78
80
|
render(): JSX.Element;
|
|
79
81
|
}
|
|
80
82
|
export {};
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@k8slens/extensions",
|
|
3
3
|
"productName": "OpenLens extensions",
|
|
4
4
|
"description": "OpenLens - Open Source Kubernetes IDE: extensions",
|
|
5
|
-
"version": "5.3.1-git.
|
|
5
|
+
"version": "5.3.1-git.b7d29f8c49.0",
|
|
6
6
|
"copyright": "© 2021 OpenLens Authors",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"main": "dist/src/extensions/extension-api.js",
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
3
|
-
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
4
|
-
*/
|
|
5
|
-
import type React from "react";
|
|
6
|
-
import { BaseRegistry } from "./base-registry";
|
|
7
|
-
export interface AppPreferenceComponents {
|
|
8
|
-
Hint: React.ComponentType<any>;
|
|
9
|
-
Input: React.ComponentType<any>;
|
|
10
|
-
}
|
|
11
|
-
export interface AppPreferenceRegistration {
|
|
12
|
-
title: string;
|
|
13
|
-
id?: string;
|
|
14
|
-
showInPreferencesTab?: string;
|
|
15
|
-
components: AppPreferenceComponents;
|
|
16
|
-
}
|
|
17
|
-
export interface RegisteredAppPreference extends AppPreferenceRegistration {
|
|
18
|
-
id: string;
|
|
19
|
-
}
|
|
20
|
-
export declare class AppPreferenceRegistry extends BaseRegistry<AppPreferenceRegistration, RegisteredAppPreference> {
|
|
21
|
-
getRegisteredItem(item: AppPreferenceRegistration): RegisteredAppPreference;
|
|
22
|
-
}
|