pacc 4.5.0 → 4.5.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
|
@@ -41,7 +41,7 @@ export const string_collection_attribute = {
|
|
|
41
41
|
/**
|
|
42
42
|
* @type {AttributeDefinition}
|
|
43
43
|
*/
|
|
44
|
-
export const
|
|
44
|
+
export const string_collection_attribute_writable = {
|
|
45
45
|
...string_collection_attribute,
|
|
46
46
|
writable: true
|
|
47
47
|
};
|
|
@@ -88,7 +88,7 @@ export const state_attribute = {
|
|
|
88
88
|
/**
|
|
89
89
|
* @type {AttributeDefinition}
|
|
90
90
|
*/
|
|
91
|
-
export const
|
|
91
|
+
export const boolean_attribute_writable_true = {
|
|
92
92
|
...default_attribute,
|
|
93
93
|
type: "boolean",
|
|
94
94
|
writable: true,
|
|
@@ -98,27 +98,27 @@ export const boolean_attribute_writeable_true = {
|
|
|
98
98
|
/**
|
|
99
99
|
* @type {AttributeDefinition}
|
|
100
100
|
*/
|
|
101
|
-
export const
|
|
101
|
+
export const boolean_attribute_writable_false = {
|
|
102
102
|
...default_attribute,
|
|
103
103
|
type: "boolean",
|
|
104
104
|
writable: true,
|
|
105
105
|
default: false
|
|
106
106
|
};
|
|
107
107
|
|
|
108
|
-
export {
|
|
108
|
+
export { boolean_attribute_writable_false as boolean_attribute };
|
|
109
109
|
|
|
110
110
|
/**
|
|
111
111
|
* @type {AttributeDefinition}
|
|
112
112
|
*/
|
|
113
113
|
export const boolean_attribute_false = {
|
|
114
|
-
...
|
|
114
|
+
...boolean_attribute_writable_false,
|
|
115
115
|
writable: false
|
|
116
116
|
};
|
|
117
117
|
|
|
118
118
|
/**
|
|
119
119
|
* @type {AttributeDefinition}
|
|
120
120
|
*/
|
|
121
|
-
export {
|
|
121
|
+
export { boolean_attribute_writable_true as active_attribute };
|
|
122
122
|
|
|
123
123
|
/**
|
|
124
124
|
* @type {AttributeDefinition}
|
|
@@ -38,7 +38,7 @@ export namespace string_collection_attribute {
|
|
|
38
38
|
/**
|
|
39
39
|
* @type {AttributeDefinition}
|
|
40
40
|
*/
|
|
41
|
-
export const
|
|
41
|
+
export const string_collection_attribute_writable: AttributeDefinition;
|
|
42
42
|
/**
|
|
43
43
|
* @type {AttributeDefinition}
|
|
44
44
|
*/
|
|
@@ -59,11 +59,11 @@ export const state_attribute: AttributeDefinition;
|
|
|
59
59
|
/**
|
|
60
60
|
* @type {AttributeDefinition}
|
|
61
61
|
*/
|
|
62
|
-
export const
|
|
62
|
+
export const boolean_attribute_writable_true: AttributeDefinition;
|
|
63
63
|
/**
|
|
64
64
|
* @type {AttributeDefinition}
|
|
65
65
|
*/
|
|
66
|
-
export const
|
|
66
|
+
export const boolean_attribute_writable_false: AttributeDefinition;
|
|
67
67
|
/**
|
|
68
68
|
* @type {AttributeDefinition}
|
|
69
69
|
*/
|
|
@@ -200,4 +200,4 @@ export type AttributeDefinition = {
|
|
|
200
200
|
*/
|
|
201
201
|
env?: string[] | string;
|
|
202
202
|
};
|
|
203
|
-
export { default_attribute as string_attribute, default_attribute as type_attribute,
|
|
203
|
+
export { default_attribute as string_attribute, default_attribute as type_attribute, boolean_attribute_writable_false as boolean_attribute, boolean_attribute_writable_true as active_attribute, integer_attribute as count_attribute, integer_attribute as size_attribute, number_attribute as duration_attribute };
|