Browse code

add handlerconfig

Louis authored on27/10/2021 21:00:13
Showing1 changed files
... ...
@@ -8,7 +8,6 @@ module.exports = {
8 8
   defaults: {
9 9
     label: '',
10 10
     options: [],
11
-    description: '',
12
-    attributes: {}
11
+    description: ''
13 12
   }
14 13
 };
Browse code

pebble-clay

Louis authored on26/10/2021 23:21:03
Showing1 changed files
... ...
@@ -8,6 +8,7 @@ module.exports = {
8 8
   defaults: {
9 9
     label: '',
10 10
     options: [],
11
-    description: ''
11
+    description: '',
12
+    attributes: {}
12 13
   }
13 14
 };
Louis authored on25/08/2018 23:51:28
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,13 @@
1
+'use strict';
2
+
3
+module.exports = {
4
+  name: 'checkboxgroup',
5
+  template: require('../../templates/components/checkboxgroup.tpl'),
6
+  style: require('../../styles/clay/components/checkboxgroup.scss'),
7
+  manipulator: 'checkboxgroup',
8
+  defaults: {
9
+    label: '',
10
+    options: [],
11
+    description: ''
12
+  }
13
+};