pacc 4.5.1 → 4.5.2
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/package.json
CHANGED
|
@@ -88,10 +88,17 @@ export const state_attribute = {
|
|
|
88
88
|
/**
|
|
89
89
|
* @type {AttributeDefinition}
|
|
90
90
|
*/
|
|
91
|
-
export const
|
|
91
|
+
export const boolean_attribute_writable = {
|
|
92
92
|
...default_attribute,
|
|
93
93
|
type: "boolean",
|
|
94
94
|
writable: true,
|
|
95
|
+
};
|
|
96
|
+
|
|
97
|
+
/**
|
|
98
|
+
* @type {AttributeDefinition}
|
|
99
|
+
*/
|
|
100
|
+
export const boolean_attribute_writable_true = {
|
|
101
|
+
...boolean_attribute_writable,
|
|
95
102
|
default: true
|
|
96
103
|
};
|
|
97
104
|
|
|
@@ -99,9 +106,7 @@ export const boolean_attribute_writable_true = {
|
|
|
99
106
|
* @type {AttributeDefinition}
|
|
100
107
|
*/
|
|
101
108
|
export const boolean_attribute_writable_false = {
|
|
102
|
-
...
|
|
103
|
-
type: "boolean",
|
|
104
|
-
writable: true,
|
|
109
|
+
...boolean_attribute_writable,
|
|
105
110
|
default: false
|
|
106
111
|
};
|
|
107
112
|
|
|
@@ -56,6 +56,10 @@ export const description_attribute: AttributeDefinition;
|
|
|
56
56
|
* @type {AttributeDefinition}
|
|
57
57
|
*/
|
|
58
58
|
export const state_attribute: AttributeDefinition;
|
|
59
|
+
/**
|
|
60
|
+
* @type {AttributeDefinition}
|
|
61
|
+
*/
|
|
62
|
+
export const boolean_attribute_writable: AttributeDefinition;
|
|
59
63
|
/**
|
|
60
64
|
* @type {AttributeDefinition}
|
|
61
65
|
*/
|