pacc 4.5.0 → 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
|
@@ -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,37 +88,42 @@ 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
|
|
|
98
105
|
/**
|
|
99
106
|
* @type {AttributeDefinition}
|
|
100
107
|
*/
|
|
101
|
-
export const
|
|
102
|
-
...
|
|
103
|
-
type: "boolean",
|
|
104
|
-
writable: true,
|
|
108
|
+
export const boolean_attribute_writable_false = {
|
|
109
|
+
...boolean_attribute_writable,
|
|
105
110
|
default: false
|
|
106
111
|
};
|
|
107
112
|
|
|
108
|
-
export {
|
|
113
|
+
export { boolean_attribute_writable_false as boolean_attribute };
|
|
109
114
|
|
|
110
115
|
/**
|
|
111
116
|
* @type {AttributeDefinition}
|
|
112
117
|
*/
|
|
113
118
|
export const boolean_attribute_false = {
|
|
114
|
-
...
|
|
119
|
+
...boolean_attribute_writable_false,
|
|
115
120
|
writable: false
|
|
116
121
|
};
|
|
117
122
|
|
|
118
123
|
/**
|
|
119
124
|
* @type {AttributeDefinition}
|
|
120
125
|
*/
|
|
121
|
-
export {
|
|
126
|
+
export { boolean_attribute_writable_true as active_attribute };
|
|
122
127
|
|
|
123
128
|
/**
|
|
124
129
|
* @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,15 @@ export const state_attribute: AttributeDefinition;
|
|
|
59
59
|
/**
|
|
60
60
|
* @type {AttributeDefinition}
|
|
61
61
|
*/
|
|
62
|
-
export const
|
|
62
|
+
export const boolean_attribute_writable: AttributeDefinition;
|
|
63
63
|
/**
|
|
64
64
|
* @type {AttributeDefinition}
|
|
65
65
|
*/
|
|
66
|
-
export const
|
|
66
|
+
export const boolean_attribute_writable_true: AttributeDefinition;
|
|
67
|
+
/**
|
|
68
|
+
* @type {AttributeDefinition}
|
|
69
|
+
*/
|
|
70
|
+
export const boolean_attribute_writable_false: AttributeDefinition;
|
|
67
71
|
/**
|
|
68
72
|
* @type {AttributeDefinition}
|
|
69
73
|
*/
|
|
@@ -200,4 +204,4 @@ export type AttributeDefinition = {
|
|
|
200
204
|
*/
|
|
201
205
|
env?: string[] | string;
|
|
202
206
|
};
|
|
203
|
-
export { default_attribute as string_attribute, default_attribute as type_attribute,
|
|
207
|
+
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 };
|