@lowdefy/blocks-color-selectors 0.0.0-experimental-20250915134255 → 0.0.0-experimental-20250926130521

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.
@@ -0,0 +1,118 @@
1
+ <TITLE>
2
+ ColorSelector
3
+ </TITLE>
4
+
5
+ <DESCRIPTION>
6
+
7
+ A color selector component.
8
+
9
+ </DESCRIPTION>
10
+
11
+ <SCHEMA>
12
+
13
+ ```json
14
+ {
15
+ "type": "object",
16
+ "properties": {
17
+ "type": "object",
18
+ "properties": {
19
+ "title": {
20
+ "type": "string",
21
+ "description": "Title to describe the input component, if no title is specified the block id is displayed."
22
+ },
23
+ "inputStyle": {
24
+ "type": "object",
25
+ "description": "Css style to applied to input.",
26
+ "docs": {
27
+ "displayType": "yaml"
28
+ }
29
+ },
30
+ "disabled": {
31
+ "type": "boolean",
32
+ "default": false,
33
+ "description": "If true, the input is disabled."
34
+ },
35
+ "hideInput": {
36
+ "type": "boolean",
37
+ "default": false,
38
+ "description": "If true, the input is hidden."
39
+ },
40
+ "label": {
41
+ "type": "object",
42
+ "description": "Label properties.",
43
+ "additionalProperties": false,
44
+ "properties": {
45
+ "align": {
46
+ "type": "string",
47
+ "enum": ["left", "right"],
48
+ "default": "left",
49
+ "description": "Align label left or right when inline."
50
+ },
51
+ "colon": {
52
+ "type": "boolean",
53
+ "default": true,
54
+ "description": "Append label with colon."
55
+ },
56
+ "extra": {
57
+ "type": "string",
58
+ "description": "Extra text to display beneath the content."
59
+ },
60
+ "title": {
61
+ "type": "string",
62
+ "description": "Label title."
63
+ },
64
+ "span": {
65
+ "type": "number",
66
+ "description": "Label inline span."
67
+ },
68
+ "disabled": {
69
+ "type": "boolean",
70
+ "default": false,
71
+ "description": "Hide input label."
72
+ },
73
+ "hasFeedback": {
74
+ "type": "boolean",
75
+ "default": true,
76
+ "description": "Display feedback extra from validation, this does not disable validation."
77
+ },
78
+ "inline": {
79
+ "type": "boolean",
80
+ "default": false,
81
+ "description": "Render input and label inline."
82
+ },
83
+ "extraStyle": {
84
+ "type": "object",
85
+ "description": "Css style to applied to label extra.",
86
+ "docs": {
87
+ "displayType": "yaml"
88
+ }
89
+ },
90
+ "feedbackStyle": {
91
+ "type": "object",
92
+ "description": "Css style to applied to label feedback.",
93
+ "docs": {
94
+ "displayType": "yaml"
95
+ }
96
+ }
97
+ }
98
+ }
99
+ }
100
+ },
101
+ "events": {
102
+ "type": "object",
103
+ "additionalProperties": false,
104
+ "properties": {
105
+ "onChange": {
106
+ "type": "array",
107
+ "description": "Trigger actions when color is picked."
108
+ }
109
+ }
110
+ }
111
+ }
112
+ ```
113
+
114
+ </SCHEMA>
115
+
116
+ <EXAMPLES>
117
+
118
+ </EXAMPLES>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lowdefy/blocks-color-selectors",
3
- "version": "0.0.0-experimental-20250915134255",
3
+ "version": "0.0.0-experimental-20250926130521",
4
4
  "license": "Apache-2.0",
5
5
  "description": "A Lowdefy color selector blocks based on react-color.",
6
6
  "homepage": "https://lowdefy.com",
@@ -42,8 +42,8 @@
42
42
  "dist/*"
43
43
  ],
44
44
  "dependencies": {
45
- "@lowdefy/block-utils": "0.0.0-experimental-20250915134255",
46
- "@lowdefy/blocks-antd": "0.0.0-experimental-20250915134255",
45
+ "@lowdefy/block-utils": "0.0.0-experimental-20250926130521",
46
+ "@lowdefy/blocks-antd": "0.0.0-experimental-20250926130521",
47
47
  "classnames": "2.3.2",
48
48
  "react": "18.2.0",
49
49
  "react-colorful": "5.6.1",
@@ -51,8 +51,8 @@
51
51
  },
52
52
  "devDependencies": {
53
53
  "@emotion/jest": "11.10.5",
54
- "@lowdefy/block-dev": "0.0.0-experimental-20250915134255",
55
- "@lowdefy/jest-yaml-transform": "0.0.0-experimental-20250915134255",
54
+ "@lowdefy/block-dev": "0.0.0-experimental-20250926130521",
55
+ "@lowdefy/jest-yaml-transform": "0.0.0-experimental-20250926130521",
56
56
  "@swc/cli": "0.1.63",
57
57
  "@swc/core": "1.3.99",
58
58
  "@swc/jest": "0.2.29",