@types/selectize 0.12.40 → 0.12.41
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.
- selectize/README.md +1 -1
- selectize/index.d.ts +3 -3
- selectize/package.json +2 -2
selectize/README.md
CHANGED
|
@@ -8,7 +8,7 @@ This package contains type definitions for selectize (https://github.com/brianre
|
|
|
8
8
|
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/selectize.
|
|
9
9
|
|
|
10
10
|
### Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Wed, 09 Sep 2026 17:32:37 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
|
|
14
14
|
# Credits
|
selectize/index.d.ts
CHANGED
|
@@ -444,12 +444,12 @@ declare namespace Selectize {
|
|
|
444
444
|
/**
|
|
445
445
|
* Removes the option identified by the given value.
|
|
446
446
|
*/
|
|
447
|
-
removeOption(value: T): void;
|
|
447
|
+
removeOption(value: T, silent?: boolean): void;
|
|
448
448
|
|
|
449
449
|
/**
|
|
450
450
|
* Removes all options from the control.
|
|
451
451
|
*/
|
|
452
|
-
clearOptions(): void;
|
|
452
|
+
clearOptions(silent?: boolean): void;
|
|
453
453
|
|
|
454
454
|
/**
|
|
455
455
|
* Retrieves the jQuery element for the option identified by the given value.
|
|
@@ -504,7 +504,7 @@ declare namespace Selectize {
|
|
|
504
504
|
/**
|
|
505
505
|
* Re-renders the selected item lists.
|
|
506
506
|
*/
|
|
507
|
-
refreshItems(): void;
|
|
507
|
+
refreshItems(silent?: boolean): void;
|
|
508
508
|
|
|
509
509
|
// Optgroups
|
|
510
510
|
// ------------------------------------------------------------------------------------------------------------
|
selectize/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/selectize",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.41",
|
|
4
4
|
"description": "TypeScript definitions for selectize",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/selectize",
|
|
6
6
|
"license": "MIT",
|
|
@@ -26,6 +26,6 @@
|
|
|
26
26
|
"scripts": {},
|
|
27
27
|
"dependencies": {},
|
|
28
28
|
"peerDependencies": {},
|
|
29
|
-
"typesPublisherContentHash": "
|
|
29
|
+
"typesPublisherContentHash": "f98fd32a3c28f335fb2037ffea128f8d55c9631ef505111635c2ea6a606f6e66",
|
|
30
30
|
"typeScriptVersion": "5.6"
|
|
31
31
|
}
|