wj-elements 0.1.177 → 0.1.179
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/base-path.js +23 -0
- package/dist/base-path.js.map +1 -0
- package/dist/dark.css +8 -2
- package/dist/light.css +8 -4
- package/dist/packages/index.d.ts +3 -2
- package/dist/packages/utils/base-path.d.ts +14 -0
- package/dist/packages/utils/permissions.d.ts +40 -0
- package/dist/packages/wje-element/element.d.ts +2 -2
- package/dist/packages/wje-input/input.element.d.ts +6 -0
- package/dist/packages/wje-option/option.element.d.ts +36 -2
- package/dist/packages/wje-select/select.element.d.ts +26 -2
- package/dist/wje-element.js +231 -229
- package/dist/wje-element.js.map +1 -1
- package/dist/wje-icon-library.js +4 -0
- package/dist/wje-icon-library.js.map +1 -1
- package/dist/wje-icon-picker.js +1 -1
- package/dist/wje-icon-picker.js.map +1 -1
- package/dist/wje-input.js +35 -5
- package/dist/wje-input.js.map +1 -1
- package/dist/wje-master.js +186 -183
- package/dist/wje-master.js.map +1 -1
- package/dist/wje-option.js +193 -25
- package/dist/wje-option.js.map +1 -1
- package/dist/wje-select.js +50 -10
- package/dist/wje-select.js.map +1 -1
- package/package.json +1 -1
- package/dist/packages/utils/permissions-api.d.ts +0 -34
- package/dist/packages/utils/wje-import-firefox.d.ts +0 -0
- package/dist/packages/utils/wje-import.d.ts +0 -0
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
let basePath = "";
|
|
2
|
+
function setBasePath(path) {
|
|
3
|
+
basePath = path;
|
|
4
|
+
}
|
|
5
|
+
function getBasePath(appendedPath = "") {
|
|
6
|
+
if (!basePath) {
|
|
7
|
+
const scripts = [...document.getElementsByTagName("script")];
|
|
8
|
+
const basePathScript = scripts.find((script) => script.hasAttribute("data-base-path"));
|
|
9
|
+
if (basePathScript) {
|
|
10
|
+
setBasePath(basePathScript.dataset.basePath || "");
|
|
11
|
+
} else {
|
|
12
|
+
const path = "";
|
|
13
|
+
setBasePath(path.split("/").slice(0, -1).join("/"));
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
const subPath = appendedPath.replace(/^\//, "");
|
|
17
|
+
return basePath.replace(/\/$/, "") + (appendedPath ? "/" + subPath : "");
|
|
18
|
+
}
|
|
19
|
+
export {
|
|
20
|
+
getBasePath,
|
|
21
|
+
setBasePath
|
|
22
|
+
};
|
|
23
|
+
//# sourceMappingURL=base-path.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"base-path.js","sources":["../packages/utils/base-path.js"],"sourcesContent":["let basePath = '';\n\n/**\n * Sets the base path for the application.\n * @param {string} path The base path to be set.\n * @returns {void} This function does not return anything.\n */\nexport function setBasePath(path) {\n basePath = path;\n}\n\n/**\n * Returns the base path of the application, optionally appending a specified relative path.\n * If the base path has not been set, it determines the base path from the first script element\n * with a `base-path` attribute or generates it based on the current script location.\n * @param {string} [appendedPath] The relative path to append to the base path. Defaults to an empty string.\n * @returns {string} The complete base path, with the appended relative path if specified.\n */\nexport function getBasePath(appendedPath = '') {\n if (!basePath) {\n const scripts = [...document.getElementsByTagName('script')];\n const basePathScript = scripts.find(script => script.hasAttribute('data-base-path'));\n\n if (basePathScript) {\n setBasePath(basePathScript.dataset.basePath || '');\n } else {\n const path = '';\n\n setBasePath(path.split('/').slice(0, -1).join('/'));\n }\n }\n\n const subPath = appendedPath.replace(/^\\//, '');\n\n return basePath.replace(/\\/$/, '') + (appendedPath ? '/' + subPath : '');\n}"],"names":[],"mappings":"AAAA,IAAI,WAAW;AAOR,SAAS,YAAY,MAAM;AAChC,aAAW;AACb;AASO,SAAS,YAAY,eAAe,IAAI;AAC7C,MAAI,CAAC,UAAU;AACb,UAAM,UAAU,CAAC,GAAG,SAAS,qBAAqB,QAAQ,CAAC;AAC3D,UAAM,iBAAiB,QAAQ,KAAK,YAAU,OAAO,aAAa,gBAAgB,CAAC;AAEnF,QAAI,gBAAgB;AAClB,kBAAY,eAAe,QAAQ,YAAa,EAAE;AAAA,IACxD,OAAW;AACL,YAAM,OAAO;AAEb,kBAAY,KAAK,MAAM,GAAG,EAAE,MAAM,GAAG,EAAE,EAAE,KAAK,GAAG,CAAC;AAAA,IACxD;AAAA,EACA;AAEE,QAAM,UAAU,aAAa,QAAQ,OAAO,EAAE;AAE9C,SAAO,SAAS,QAAQ,OAAO,EAAE,KAAK,eAAe,MAAM,UAAU;AACvE;"}
|
package/dist/dark.css
CHANGED
|
@@ -161,9 +161,9 @@
|
|
|
161
161
|
--wje-file-upload-item-border-color: var(--wje-border-color);
|
|
162
162
|
|
|
163
163
|
/* Input */
|
|
164
|
-
--wje-input-background-color: var(--wje-
|
|
164
|
+
--wje-input-background-color: var(--wje-color-contrast-0);
|
|
165
165
|
--wje-input-color: var(--wje-color);
|
|
166
|
-
--wje-input-color-invalid: var(--wje-color-danger);
|
|
166
|
+
--wje-input-color-invalid: var(--wje-color-danger-9);
|
|
167
167
|
--wje-input-border-color: var(--wje-border-color);
|
|
168
168
|
--wje-input-border-color-focus: var(--wje-color-primary);
|
|
169
169
|
|
|
@@ -212,6 +212,12 @@
|
|
|
212
212
|
--wje-rate-color: var(--wje-color-contrast-11);
|
|
213
213
|
--wje-rate-selected-color: var(--wje-color-danger-6);
|
|
214
214
|
|
|
215
|
+
/* Select */
|
|
216
|
+
--wje-select-border-color: var(--wje-border-color);
|
|
217
|
+
--wje-select-options-border-color: var(--wje-border-color);
|
|
218
|
+
--wje-select-background: var(--wje-color-contrast-0);
|
|
219
|
+
--wje-select-color: var(--wje-color);
|
|
220
|
+
|
|
215
221
|
/* Tab */
|
|
216
222
|
--wje-tab-color-active: var(--wje-color-primary-11);
|
|
217
223
|
--wje-tab-color-hover: var(--wje-color-primary-1);
|
package/dist/light.css
CHANGED
|
@@ -372,9 +372,9 @@
|
|
|
372
372
|
|
|
373
373
|
/* Input */
|
|
374
374
|
--wje-input-font-family: var(--wje-font-family);
|
|
375
|
-
--wje-input-background-color: var(--wje-
|
|
375
|
+
--wje-input-background-color: var(--wje-color-contrast-0);
|
|
376
376
|
--wje-input-color: var(--wje-color);
|
|
377
|
-
--wje-input-color-invalid: var(--wje-color-danger);
|
|
377
|
+
--wje-input-color-invalid: var(--wje-color-danger-9);
|
|
378
378
|
--wje-input-border-color: var(--wje-border-color);
|
|
379
379
|
--wje-input-border-color-focus: var(--wje-color-primary);
|
|
380
380
|
--wje-input-border-width: 1px;
|
|
@@ -386,8 +386,9 @@
|
|
|
386
386
|
--wje-input-label-display: block;
|
|
387
387
|
--wje-input-label-margin: 0;
|
|
388
388
|
--wje-input-label-padding: 0;
|
|
389
|
-
--wje-input-label-line-height:
|
|
389
|
+
--wje-input-label-line-height: 21px;
|
|
390
390
|
--wje-input-label-font-size: var(--wje-font-size);
|
|
391
|
+
--wje-input-required-symbol: '*';
|
|
391
392
|
|
|
392
393
|
/* Item */
|
|
393
394
|
--wje-item-color: var(--wje-color);
|
|
@@ -511,7 +512,10 @@
|
|
|
511
512
|
--wje-select-line-height: 20px;
|
|
512
513
|
--wje-select-color: var(--wje-color);
|
|
513
514
|
--wje-select-border-radius: var(--wje-border-radius-medium);
|
|
514
|
-
--wje-select-margin-bottom:
|
|
515
|
+
--wje-select-margin-bottom: var(--wje-spacing-x-small);
|
|
516
|
+
--wje-select-find-margin-inline: var(--wje-spacing-x-small);
|
|
517
|
+
--wje-select-find-margin-block: var(--wje-spacing-x-small);
|
|
518
|
+
--wje-select-find-width: calc(100% - var(--wje-select-find-margin-inline) * 2);
|
|
515
519
|
|
|
516
520
|
/* Status */
|
|
517
521
|
--wje-status-size: var(--wje-size-small);
|
package/dist/packages/index.d.ts
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
|
-
export { default as SlidingContainer } from '../experimental-packages/wje-sliding-container/sliding-container.js';
|
|
2
1
|
export { fetchAndParseCSS } from './utils/animations.js';
|
|
3
2
|
export { formatDate } from './utils/date.js';
|
|
4
3
|
export { event } from './utils/event.js';
|
|
5
4
|
export { Localizer } from './utils/localize.js';
|
|
5
|
+
export { Permissions } from './utils/permissions.js';
|
|
6
6
|
export { skSk } from './translations/sk-sk.js';
|
|
7
7
|
export { enGb } from './translations/en-gb.js';
|
|
8
|
-
export { WjePermissionsApi } from './utils/permissions-api.js';
|
|
9
8
|
export { default as Accordion } from './wje-accordion/accordion.js';
|
|
10
9
|
export { default as AccordionItem } from './wje-accordion-item/accordion-item.js';
|
|
11
10
|
export { default as Animation } from './wje-animation/animation.js';
|
|
@@ -101,5 +100,7 @@ export { default as Tooltip } from './wje-tooltip/tooltip.js';
|
|
|
101
100
|
export { default as Tree } from './wje-tree/tree.js';
|
|
102
101
|
export { default as TreeItem } from './wje-tree-item/tree-item.js';
|
|
103
102
|
export { default as VisuallyHidden } from './wje-visually-hidden/visually-hidden.js';
|
|
103
|
+
export { default as SlidingContainer } from '../experimental-packages/wje-sliding-container/sliding-container.js';
|
|
104
|
+
export { setBasePath, getBasePath } from './utils/base-path.js';
|
|
104
105
|
export { registerIconLibrary, unregisterIconLibrary } from './wje-icon/service/library.js';
|
|
105
106
|
export { defaultStoreActions, store } from './wje-store/store.js';
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Sets the base path for the application.
|
|
3
|
+
* @param {string} path The base path to be set.
|
|
4
|
+
* @returns {void} This function does not return anything.
|
|
5
|
+
*/
|
|
6
|
+
export function setBasePath(path: string): void;
|
|
7
|
+
/**
|
|
8
|
+
* Returns the base path of the application, optionally appending a specified relative path.
|
|
9
|
+
* If the base path has not been set, it determines the base path from the first script element
|
|
10
|
+
* with a `base-path` attribute or generates it based on the current script location.
|
|
11
|
+
* @param {string} [appendedPath] The relative path to append to the base path. Defaults to an empty string.
|
|
12
|
+
* @returns {string} The complete base path, with the appended relative path if specified.
|
|
13
|
+
*/
|
|
14
|
+
export function getBasePath(appendedPath?: string): string;
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* PermissionsApi is a utility class for managing permissions.
|
|
3
|
+
* It allows setting, retrieving, and checking permissions stored in the browser's local storage.
|
|
4
|
+
*/
|
|
5
|
+
export class Permissions {
|
|
6
|
+
static _permissionKey: string;
|
|
7
|
+
/**
|
|
8
|
+
* Sets the permission key for the PermissionsApi.
|
|
9
|
+
* The key is stored internally and defaults to 'permissions' if no value is provided.
|
|
10
|
+
* @param {string} value The key to set for permissions. If no value is provided, the default is 'permissions'.
|
|
11
|
+
*/
|
|
12
|
+
static set permissionKey(value: string);
|
|
13
|
+
/**
|
|
14
|
+
* Retrieves the permission key used for accessing the permissions API.
|
|
15
|
+
* @returns {string} The permission key associated with the PermissionsApi.
|
|
16
|
+
*/
|
|
17
|
+
static get permissionKey(): string;
|
|
18
|
+
/**
|
|
19
|
+
* Sets the permissions by storing them in the local storage.
|
|
20
|
+
* @param {object} value The permissions object to be stored.
|
|
21
|
+
*/
|
|
22
|
+
static set permissions(value: object);
|
|
23
|
+
/**
|
|
24
|
+
* Retrieves the list of permissions stored in the browser's local storage.
|
|
25
|
+
* @returns {Array} An array of permissions. If no permissions are found, returns an empty array.
|
|
26
|
+
*/
|
|
27
|
+
static get permissions(): any[];
|
|
28
|
+
/**
|
|
29
|
+
* Determines whether the specified key exists in the permissions list.
|
|
30
|
+
* @param {string} key The key to check for existence in the permissions list.
|
|
31
|
+
* @returns {boolean} Returns true if the key exists in the permissions list; otherwise, returns false.
|
|
32
|
+
*/
|
|
33
|
+
static includesKey(key: string): boolean;
|
|
34
|
+
/**
|
|
35
|
+
* Checks if at least one of the given permissions is fulfilled, based on the permissions available in `PermissionsApi`.
|
|
36
|
+
* @param {Array<string>} permissions The list of permissions to check against the permissions available in `PermissionsApi`.
|
|
37
|
+
* @returns {boolean} Returns `true` if any of the given permissions match the permissions available in `PermissionsApi`, otherwise returns `false`.
|
|
38
|
+
*/
|
|
39
|
+
static isPermissionFulfilled(permissions: Array<string>): boolean;
|
|
40
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { UniversalService } from './service/universal-service.js';
|
|
2
2
|
import { defaultStoreActions } from '../wje-store/store.js';
|
|
3
|
-
import {
|
|
3
|
+
import { Permissions } from '../utils/permissions.js';
|
|
4
4
|
import { WjElementUtils } from '../utils/element-utils.js';
|
|
5
5
|
import { event } from '../utils/event.js';
|
|
6
6
|
export default class WJElement extends HTMLElement {
|
|
@@ -303,4 +303,4 @@ export default class WJElement extends HTMLElement {
|
|
|
303
303
|
#private;
|
|
304
304
|
}
|
|
305
305
|
export let __esModule: string;
|
|
306
|
-
export {
|
|
306
|
+
export { Permissions, WjElementUtils, event };
|
|
@@ -116,6 +116,12 @@ export default class Input extends WJElement {
|
|
|
116
116
|
* @returns {string} The default value of the input element.
|
|
117
117
|
*/
|
|
118
118
|
get defaultValue(): string;
|
|
119
|
+
set clearable(value: boolean);
|
|
120
|
+
get clearable(): boolean;
|
|
121
|
+
set placeholder(value: string);
|
|
122
|
+
get placeholder(): string;
|
|
123
|
+
set variant(value: string);
|
|
124
|
+
get variant(): string;
|
|
119
125
|
beforeDraw(): void;
|
|
120
126
|
/**
|
|
121
127
|
* Draws the input element.
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { default as WJElement } from '../wje-element/element.js';
|
|
2
2
|
import { default as Icon } from '../wje-icon/icon.js';
|
|
3
|
+
import { default as Checkbox } from '../wje-checkbox/checkbox.js';
|
|
3
4
|
/**
|
|
4
5
|
* `Option` is a custom web component that represents an option.
|
|
5
6
|
* @summary This element represents an option.
|
|
@@ -31,12 +32,28 @@ export default class Option extends WJElement {
|
|
|
31
32
|
*/
|
|
32
33
|
dependencies: {
|
|
33
34
|
'wje-icon': typeof Icon;
|
|
35
|
+
'wje-checkbox': typeof Checkbox;
|
|
34
36
|
};
|
|
35
37
|
/**
|
|
36
38
|
* Sets the selected attribute of the option.
|
|
37
39
|
* @param {boolean} value The value to set.
|
|
38
40
|
*/
|
|
39
41
|
set selected(value: boolean);
|
|
42
|
+
/**
|
|
43
|
+
* Retrieves the 'selected' attribute status of the element.
|
|
44
|
+
* @returns {boolean} Returns true if the 'selected' attribute is set on the element; otherwise, false.
|
|
45
|
+
*/
|
|
46
|
+
get selected(): boolean;
|
|
47
|
+
/**
|
|
48
|
+
* Retrieves the value indicating whether the closest 'wje-select' element has a 'checkbox' attribute.
|
|
49
|
+
* @returns {boolean} True if the closest 'wje-select' element has a 'checkbox' attribute; otherwise, false.
|
|
50
|
+
*/
|
|
51
|
+
get checkbox(): boolean;
|
|
52
|
+
/**
|
|
53
|
+
* Determines whether the closest 'wje-select' element has the 'multiple' attribute.
|
|
54
|
+
* @returns {boolean} Returns true if the 'wje-select' element has the 'multiple' attribute, otherwise false.
|
|
55
|
+
*/
|
|
56
|
+
get multiple(): boolean;
|
|
40
57
|
/**
|
|
41
58
|
* Sets the value attribute of the option.
|
|
42
59
|
* @param {string} value The value to set.
|
|
@@ -48,14 +65,31 @@ export default class Option extends WJElement {
|
|
|
48
65
|
* @param {string} value The text to set.
|
|
49
66
|
*/
|
|
50
67
|
set text(value: string);
|
|
68
|
+
/**
|
|
69
|
+
* This method is called whenever an observed attribute is added, removed, or changed.
|
|
70
|
+
* @param {string} name The name of the attribute that was changed.
|
|
71
|
+
* @param {*} old The previous value of the attribute before the change.
|
|
72
|
+
* @param {*} newName The new value of the attribute after the change.
|
|
73
|
+
* @returns {void} This method does not return a value.
|
|
74
|
+
*/
|
|
75
|
+
attributeChangedCallback(name: string, old: any, newName: any): void;
|
|
51
76
|
/**
|
|
52
77
|
* Draws the component for the option.
|
|
53
78
|
* @returns {DocumentFragment}
|
|
54
79
|
*/
|
|
55
80
|
draw(): DocumentFragment;
|
|
81
|
+
check: HTMLSlotElement;
|
|
56
82
|
/**
|
|
57
|
-
*
|
|
83
|
+
* Method executed after the drawing process is completed.
|
|
84
|
+
* Sets up an event listener for 'click' events, linking them to the specified callback function.
|
|
85
|
+
* @returns {void} Does not return a value.
|
|
58
86
|
*/
|
|
59
87
|
afterDraw(): void;
|
|
60
|
-
|
|
88
|
+
/**
|
|
89
|
+
* Handles the click event on an option element and dispatches a custom event when triggered.
|
|
90
|
+
* @param {Event} e The click event object that triggered the callback.
|
|
91
|
+
* @returns {void} No return value.
|
|
92
|
+
*/
|
|
93
|
+
optionClickCallback(e: Event): void;
|
|
94
|
+
#private;
|
|
61
95
|
}
|
|
@@ -7,6 +7,7 @@ import { default as Chip } from '../wje-chip/chip.js';
|
|
|
7
7
|
import { default as Input } from '../wje-input/input.js';
|
|
8
8
|
import { default as Option } from '../wje-option/option.js';
|
|
9
9
|
import { default as Options } from '../wje-options/options.js';
|
|
10
|
+
import { default as Checkbox } from '../wje-checkbox/checkbox.js';
|
|
10
11
|
/**
|
|
11
12
|
* `Select` is a custom web component that represents a select input.
|
|
12
13
|
* @summary This element represents a select input.
|
|
@@ -146,6 +147,7 @@ export default class Select extends WJElement {
|
|
|
146
147
|
* @property {Function} 'wje-input' Represents the Input component class.
|
|
147
148
|
* @property {Function} 'wje-option' Represents the Option component class.
|
|
148
149
|
* @property {Function} 'wje-options' Represents the Options component class.
|
|
150
|
+
* @property {Function} 'wje-checkbox' Represents the Checkbox component class.
|
|
149
151
|
*/
|
|
150
152
|
dependencies: {
|
|
151
153
|
'wje-button': typeof Button;
|
|
@@ -156,6 +158,7 @@ export default class Select extends WJElement {
|
|
|
156
158
|
'wje-input': typeof Input;
|
|
157
159
|
'wje-option': typeof Option;
|
|
158
160
|
'wje-options': typeof Options;
|
|
161
|
+
'wje-checkbox': typeof Checkbox;
|
|
159
162
|
};
|
|
160
163
|
/**
|
|
161
164
|
* Setter for the value attribute.
|
|
@@ -255,7 +258,14 @@ export default class Select extends WJElement {
|
|
|
255
258
|
* @returns {Array} The selected value.
|
|
256
259
|
*/
|
|
257
260
|
get selected(): any[];
|
|
258
|
-
|
|
261
|
+
/**
|
|
262
|
+
* Retrieves the complete list of options available for the component.
|
|
263
|
+
* The options are determined by combining elements from various sources, including loaded options, added options, and HTML-sourced options.
|
|
264
|
+
* If a `wje-options` element is present within the component, its loaded options are included in the merged list.
|
|
265
|
+
* In the absence of a `wje-options` element, duplicates among the added and HTML options are removed, retaining their order.
|
|
266
|
+
* @returns {Array<Object>} An array containing all the available options, combining the loaded, added, and HTML-based options, with duplicates removed where applicable.
|
|
267
|
+
*/
|
|
268
|
+
get options(): Array<any>;
|
|
259
269
|
/**
|
|
260
270
|
* Sets the trigger value.
|
|
261
271
|
* @param {string} value The trigger value to set.
|
|
@@ -273,7 +283,10 @@ export default class Select extends WJElement {
|
|
|
273
283
|
draw(): DocumentFragment;
|
|
274
284
|
findEl: HTMLElement;
|
|
275
285
|
/**
|
|
276
|
-
*
|
|
286
|
+
* Performs actions and binds events after the component's markup and state are initialized.
|
|
287
|
+
* Actions include setting up event listeners, managing option elements, handling focus and blur behaviors,
|
|
288
|
+
* synchronizing the selected options, and managing a find functionality for filtering options.
|
|
289
|
+
* @returns {void} Does not return a value. The method operates by updating the state and behavior of the component.
|
|
277
290
|
*/
|
|
278
291
|
afterDraw(): void;
|
|
279
292
|
/**
|
|
@@ -391,6 +404,11 @@ export default class Select extends WJElement {
|
|
|
391
404
|
* @param {boolean} [silent] Whether to trigger the change event or not.
|
|
392
405
|
*/
|
|
393
406
|
selectOptions(values: any[] | any, silent?: boolean): void;
|
|
407
|
+
/**
|
|
408
|
+
* Returns the provided item.
|
|
409
|
+
* @param {any} item The item to be returned.
|
|
410
|
+
* @returns {any} The same item that was passed as input.
|
|
411
|
+
*/
|
|
394
412
|
htmlSelectedItem(item: any): any;
|
|
395
413
|
/**
|
|
396
414
|
* @summary Callback function that is called when the custom element is associated with a form.
|
|
@@ -434,5 +452,11 @@ export default class Select extends WJElement {
|
|
|
434
452
|
* @returns {boolean} Returns true if all elements in the `elements` array are found within the `options` array, otherwise returns false.
|
|
435
453
|
*/
|
|
436
454
|
areAllElementsInOptions(elements: any[], options: any[]): boolean;
|
|
455
|
+
/**
|
|
456
|
+
* Clones and appends an icon from a template with slot "check" to the given option element.
|
|
457
|
+
* @param {HTMLElement} option The target option element where the "check" icon will be added.
|
|
458
|
+
* @returns {void}
|
|
459
|
+
*/
|
|
460
|
+
optionCheckSlot(option: HTMLElement): void;
|
|
437
461
|
#private;
|
|
438
462
|
}
|