@wui-js/plugins 0.6.2 → 0.7.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/README.md CHANGED
@@ -7,7 +7,7 @@
7
7
  | | |
8
8
  | -------------------- | ----------- |
9
9
  | **Library name** | `wuijs-plugins-lib` |
10
- | **Library version** | `0.6.2` ([Change Log](https://github.com/wui-js/wuijs-plugins-lib/blob/main/docs/CHANGELOG-en.md)) |
10
+ | **Library version** | `0.7.0` ([Change Log](https://github.com/wui-js/wuijs-plugins-lib/blob/main/docs/CHANGELOG-en.md)) |
11
11
  | **NPM package** | `@wui-js/plugins` |
12
12
  | **License** | `Apache License 2.0` |
13
13
  | **Author** | `Sergio E. Belmar V. <wuijs.project@gmail.com>` |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wui-js/plugins",
3
- "version": "0.6.2",
3
+ "version": "0.7.0",
4
4
  "license": "Apache-2.0",
5
5
  "author": "Sergio E. Belmar V. <wuijs.project@gmail.com>",
6
6
  "description": "WUI/JS Plugins Lib - WUI/JS Plugins Lib is an open-source JavaScript/CSS library that provides a collection of plugins for WUI/JS Main Lib classes.",
@@ -1,6 +1,6 @@
1
1
  /*
2
- * @file wuiplugin-selector-0.3.css
3
- * @version 0.3
2
+ * @file wuiplugin-selector-0.4.css
3
+ * @version 0.4
4
4
  * @author Sergio E. Belmar V. (wuijs.project@gmail.com)
5
5
  * @copyright Sergio E. Belmar V. (wuijs.project@gmail.com)
6
6
  */
@@ -1,14 +1,14 @@
1
1
  /*
2
- * @file wuiplugin-selector-0.3.js
2
+ * @file wuiplugin-selector-0.4.js
3
3
  * @class WUIPluginSelector
4
- * @version 0.3
4
+ * @version 0.4
5
5
  * @author Sergio E. Belmar V. (wuijs.project@gmail.com)
6
6
  * @copyright Sergio E. Belmar V. (wuijs.project@gmail.com)
7
7
  */
8
8
 
9
9
  class WUIPluginSelector extends WUIModal {
10
10
 
11
- static version = "0.3";
11
+ static version = "0.4";
12
12
  static #defaults = {
13
13
  value: "",
14
14
  options: [],
@@ -0,0 +1,30 @@
1
+ /*
2
+ * @file wuiplugin-selector-0.4.root.css
3
+ * @version 0.4
4
+ * @author Sergio E. Belmar V. (wuijs.project@gmail.com)
5
+ * @copyright Sergio E. Belmar V. (wuijs.project@gmail.com)
6
+ */
7
+
8
+ :root {
9
+
10
+ /* wuiplugin-selector */
11
+
12
+ --wuiplugin-selector-box-width: 280px;
13
+ --wuiplugin-selector-box-bgcolor: #fdfdfe;
14
+ --wuiplugin-selector-option-bordercolor-out: #f0f0f3;
15
+ --wuiplugin-selector-option-bordercolor-over: #f0f0f3;
16
+ --wuiplugin-selector-option-bgcolor-out: transparent;
17
+ --wuiplugin-selector-option-bgcolor-over: #f6f6f6;
18
+ --wuiplugin-selector-option-iconcolor-out: #1e90ff;
19
+ --wuiplugin-selector-option-iconcolor-over: #1e90ff;
20
+ --wuiplugin-selector-option-iconcolor-disabled: #d5dce3;
21
+ --wuiplugin-selector-option-textcolor-out: #2d3a47;
22
+ --wuiplugin-selector-option-textcolor-over: #1e90ff;
23
+ --wuiplugin-selector-option-textcolor-selected: #1e90ff;
24
+ --wuiplugin-selector-option-textcolor-disabled: #d5dce3;
25
+ --wuiplugin-selector-option-checker-bordercolor-out: #1e90ff;
26
+ --wuiplugin-selector-option-checker-bordercolor-selected: #1e90ff;
27
+ --wuiplugin-selector-option-checker-bgcolor-out: transparent;
28
+ --wuiplugin-selector-option-checker-bgcolor-selected: #1e90ff;
29
+ --wuiplugin-selector-button-bordercolor: #f0f0f3;
30
+ }