pacc 4.2.0 → 4.2.1
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
|
@@ -36,7 +36,7 @@ export { default_attribute as string_attribute };
|
|
|
36
36
|
export const string_collection_attribute = {
|
|
37
37
|
...default_attribute,
|
|
38
38
|
collection: true
|
|
39
|
-
}
|
|
39
|
+
};
|
|
40
40
|
|
|
41
41
|
/**
|
|
42
42
|
* @type {AttributeDefinition}
|
|
@@ -115,7 +115,10 @@ export { boolean_attribute_writeable_true as active_attribute };
|
|
|
115
115
|
/**
|
|
116
116
|
* @type {AttributeDefinition}
|
|
117
117
|
*/
|
|
118
|
-
export
|
|
118
|
+
export const empty_attribute = {
|
|
119
|
+
...default_attribute,
|
|
120
|
+
type: "boolean"
|
|
121
|
+
};
|
|
119
122
|
|
|
120
123
|
/**
|
|
121
124
|
* @type {AttributeDefinition}
|
|
@@ -64,6 +64,10 @@ export const boolean_attribute_writeable_false: AttributeDefinition;
|
|
|
64
64
|
* @type {AttributeDefinition}
|
|
65
65
|
*/
|
|
66
66
|
export const boolean_attribute_false: AttributeDefinition;
|
|
67
|
+
/**
|
|
68
|
+
* @type {AttributeDefinition}
|
|
69
|
+
*/
|
|
70
|
+
export const empty_attribute: AttributeDefinition;
|
|
67
71
|
/**
|
|
68
72
|
* @type {AttributeDefinition}
|
|
69
73
|
*/
|
|
@@ -180,4 +184,4 @@ export type AttributeDefinition = {
|
|
|
180
184
|
*/
|
|
181
185
|
env?: string[] | string;
|
|
182
186
|
};
|
|
183
|
-
export { default_attribute as string_attribute, default_attribute as type_attribute, boolean_attribute_writeable_false as boolean_attribute, boolean_attribute_writeable_true as active_attribute,
|
|
187
|
+
export { default_attribute as string_attribute, default_attribute as type_attribute, boolean_attribute_writeable_false as boolean_attribute, boolean_attribute_writeable_true as active_attribute, integer_attribute as count_attribute, integer_attribute as size_attribute };
|