@almadar/std 7.4.1 → 7.4.3
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/behaviors/registry/atoms/std-modal.orb +15 -9
- package/behaviors/registry/atoms/std-wizard.orb +306 -293
- package/behaviors/registry/molecules/std-detail.orb +513 -292
- package/behaviors/registry/molecules/std-geospatial.orb +543 -406
- package/behaviors/registry/molecules/std-inventory.orb +489 -445
- package/behaviors/registry/molecules/std-list.orb +492 -616
- package/behaviors/registry/molecules/std-messaging.orb +511 -327
- package/behaviors/registry/molecules/std-wizard-form.orb +2 -101
- package/dist/behaviors/behaviors-registry.json +1976 -719
- package/dist/behaviors/exports-reader.js +71 -11
- package/dist/behaviors/exports-reader.js.map +1 -1
- package/dist/behaviors/functions/index.d.ts +11 -3
- package/dist/behaviors/functions/index.js +67 -11
- package/dist/behaviors/functions/index.js.map +1 -1
- package/dist/behaviors/index.d.ts +1 -1
- package/dist/behaviors/index.js +72 -12
- package/dist/behaviors/index.js.map +1 -1
- package/dist/behaviors/query.js +71 -11
- package/dist/behaviors/query.js.map +1 -1
- package/dist/behaviors/registry/atoms/std-modal.orb +15 -9
- package/dist/behaviors/registry/atoms/std-wizard.orb +306 -293
- package/dist/behaviors/registry/molecules/std-detail.orb +513 -292
- package/dist/behaviors/registry/molecules/std-geospatial.orb +543 -406
- package/dist/behaviors/registry/molecules/std-inventory.orb +489 -445
- package/dist/behaviors/registry/molecules/std-list.orb +492 -616
- package/dist/behaviors/registry/molecules/std-messaging.orb +511 -327
- package/dist/behaviors/registry/molecules/std-wizard-form.orb +2 -101
- package/dist/behaviors-registry.json +1976 -719
- package/dist/index.d.ts +1 -1
- package/dist/index.js +72 -12
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/behaviors/query.js
CHANGED
|
@@ -223,6 +223,7 @@ __export(functions_exports, {
|
|
|
223
223
|
stdDetail: () => stdDetail,
|
|
224
224
|
stdDetailDetailRecordBrowseTrait: () => stdDetailDetailRecordBrowseTrait,
|
|
225
225
|
stdDetailDetailRecordCreateTrait: () => stdDetailDetailRecordCreateTrait,
|
|
226
|
+
stdDetailDetailRecordPersistorTrait: () => stdDetailDetailRecordPersistorTrait,
|
|
226
227
|
stdDetailDetailRecordViewTrait: () => stdDetailDetailRecordViewTrait,
|
|
227
228
|
stdDetailPage: () => stdDetailPage,
|
|
228
229
|
stdDevopsDashboard: () => stdDevopsDashboard,
|
|
@@ -291,6 +292,7 @@ __export(functions_exports, {
|
|
|
291
292
|
stdGeospatialLocationBrowseTrait: () => stdGeospatialLocationBrowseTrait,
|
|
292
293
|
stdGeospatialLocationConfirmSelectTrait: () => stdGeospatialLocationConfirmSelectTrait,
|
|
293
294
|
stdGeospatialLocationSelectTrait: () => stdGeospatialLocationSelectTrait,
|
|
295
|
+
stdGeospatialLocationSelectionFlowTrait: () => stdGeospatialLocationSelectionFlowTrait,
|
|
294
296
|
stdGeospatialPage: () => stdGeospatialPage,
|
|
295
297
|
stdHealthcare: () => stdHealthcare,
|
|
296
298
|
stdHealthcarePage: () => stdHealthcarePage,
|
|
@@ -320,6 +322,7 @@ __export(functions_exports, {
|
|
|
320
322
|
stdInventoryInventoryItemAddTrait: () => stdInventoryInventoryItemAddTrait,
|
|
321
323
|
stdInventoryInventoryItemBrowseTrait: () => stdInventoryInventoryItemBrowseTrait,
|
|
322
324
|
stdInventoryInventoryItemDropTrait: () => stdInventoryInventoryItemDropTrait,
|
|
325
|
+
stdInventoryInventoryItemPersistorTrait: () => stdInventoryInventoryItemPersistorTrait,
|
|
323
326
|
stdInventoryInventoryItemUseTrait: () => stdInventoryInventoryItemUseTrait,
|
|
324
327
|
stdInventoryPage: () => stdInventoryPage,
|
|
325
328
|
stdInventoryPanel: () => stdInventoryPanel,
|
|
@@ -336,7 +339,7 @@ __export(functions_exports, {
|
|
|
336
339
|
stdListListItemCreateTrait: () => stdListListItemCreateTrait,
|
|
337
340
|
stdListListItemDeleteTrait: () => stdListListItemDeleteTrait,
|
|
338
341
|
stdListListItemEditTrait: () => stdListListItemEditTrait,
|
|
339
|
-
|
|
342
|
+
stdListListItemPersistorTrait: () => stdListListItemPersistorTrait,
|
|
340
343
|
stdListPage: () => stdListPage,
|
|
341
344
|
stdLms: () => stdLms,
|
|
342
345
|
stdLmsCourseBrowseTrait: () => stdLmsCourseBrowseTrait,
|
|
@@ -354,6 +357,7 @@ __export(functions_exports, {
|
|
|
354
357
|
stdMessaging: () => stdMessaging,
|
|
355
358
|
stdMessagingChatMessageBrowseTrait: () => stdMessagingChatMessageBrowseTrait,
|
|
356
359
|
stdMessagingChatMessageComposeTrait: () => stdMessagingChatMessageComposeTrait,
|
|
360
|
+
stdMessagingChatMessagePersistorTrait: () => stdMessagingChatMessagePersistorTrait,
|
|
357
361
|
stdMessagingChatMessageViewTrait: () => stdMessagingChatMessageViewTrait,
|
|
358
362
|
stdMessagingPage: () => stdMessagingPage,
|
|
359
363
|
stdModal: () => stdModal,
|
|
@@ -4717,6 +4721,19 @@ function stdDetailDetailRecordViewTrait(params) {
|
|
|
4717
4721
|
...params.config !== void 0 ? { config: params.config } : {}
|
|
4718
4722
|
});
|
|
4719
4723
|
}
|
|
4724
|
+
function stdDetailDetailRecordPersistorTrait(params) {
|
|
4725
|
+
return makeTraitRef({
|
|
4726
|
+
from: BEHAVIOR_PATH88,
|
|
4727
|
+
ref: `${ALIAS88}.traits.DetailRecordPersistor`,
|
|
4728
|
+
linkedEntity: params.entityName,
|
|
4729
|
+
...params.traitName !== void 0 ? { name: params.traitName } : {},
|
|
4730
|
+
...params.events !== void 0 ? { events: params.events } : {},
|
|
4731
|
+
...params.effects !== void 0 ? { effects: params.effects } : {},
|
|
4732
|
+
...params.listens !== void 0 ? { listens: params.listens } : {},
|
|
4733
|
+
...params.emitsScope !== void 0 ? { emitsScope: params.emitsScope } : {},
|
|
4734
|
+
...params.config !== void 0 ? { config: params.config } : {}
|
|
4735
|
+
});
|
|
4736
|
+
}
|
|
4720
4737
|
function stdDetailPage(params) {
|
|
4721
4738
|
return makePageRef({
|
|
4722
4739
|
from: BEHAVIOR_PATH88,
|
|
@@ -4738,7 +4755,8 @@ function stdDetail(params) {
|
|
|
4738
4755
|
traits: [
|
|
4739
4756
|
stdDetailDetailRecordBrowseTrait(params),
|
|
4740
4757
|
stdDetailDetailRecordCreateTrait(params),
|
|
4741
|
-
stdDetailDetailRecordViewTrait(params)
|
|
4758
|
+
stdDetailDetailRecordViewTrait(params),
|
|
4759
|
+
stdDetailDetailRecordPersistorTrait(params)
|
|
4742
4760
|
],
|
|
4743
4761
|
pages: [
|
|
4744
4762
|
stdDetailPage(params)
|
|
@@ -4868,6 +4886,19 @@ function stdGeospatialLocationConfirmSelectTrait(params) {
|
|
|
4868
4886
|
...params.config !== void 0 ? { config: params.config } : {}
|
|
4869
4887
|
});
|
|
4870
4888
|
}
|
|
4889
|
+
function stdGeospatialLocationSelectionFlowTrait(params) {
|
|
4890
|
+
return makeTraitRef({
|
|
4891
|
+
from: BEHAVIOR_PATH91,
|
|
4892
|
+
ref: `${ALIAS91}.traits.LocationSelectionFlow`,
|
|
4893
|
+
linkedEntity: params.entityName,
|
|
4894
|
+
...params.traitName !== void 0 ? { name: params.traitName } : {},
|
|
4895
|
+
...params.events !== void 0 ? { events: params.events } : {},
|
|
4896
|
+
...params.effects !== void 0 ? { effects: params.effects } : {},
|
|
4897
|
+
...params.listens !== void 0 ? { listens: params.listens } : {},
|
|
4898
|
+
...params.emitsScope !== void 0 ? { emitsScope: params.emitsScope } : {},
|
|
4899
|
+
...params.config !== void 0 ? { config: params.config } : {}
|
|
4900
|
+
});
|
|
4901
|
+
}
|
|
4871
4902
|
function stdGeospatialPage(params) {
|
|
4872
4903
|
return makePageRef({
|
|
4873
4904
|
from: BEHAVIOR_PATH91,
|
|
@@ -4889,7 +4920,8 @@ function stdGeospatial(params) {
|
|
|
4889
4920
|
traits: [
|
|
4890
4921
|
stdGeospatialLocationBrowseTrait(params),
|
|
4891
4922
|
stdGeospatialLocationSelectTrait(params),
|
|
4892
|
-
stdGeospatialLocationConfirmSelectTrait(params)
|
|
4923
|
+
stdGeospatialLocationConfirmSelectTrait(params),
|
|
4924
|
+
stdGeospatialLocationSelectionFlowTrait(params)
|
|
4893
4925
|
],
|
|
4894
4926
|
pages: [
|
|
4895
4927
|
stdGeospatialPage(params)
|
|
@@ -4950,6 +4982,19 @@ function stdInventoryInventoryItemDropTrait(params) {
|
|
|
4950
4982
|
...params.config !== void 0 ? { config: params.config } : {}
|
|
4951
4983
|
});
|
|
4952
4984
|
}
|
|
4985
|
+
function stdInventoryInventoryItemPersistorTrait(params) {
|
|
4986
|
+
return makeTraitRef({
|
|
4987
|
+
from: BEHAVIOR_PATH92,
|
|
4988
|
+
ref: `${ALIAS92}.traits.InventoryItemPersistor`,
|
|
4989
|
+
linkedEntity: params.entityName,
|
|
4990
|
+
...params.traitName !== void 0 ? { name: params.traitName } : {},
|
|
4991
|
+
...params.events !== void 0 ? { events: params.events } : {},
|
|
4992
|
+
...params.effects !== void 0 ? { effects: params.effects } : {},
|
|
4993
|
+
...params.listens !== void 0 ? { listens: params.listens } : {},
|
|
4994
|
+
...params.emitsScope !== void 0 ? { emitsScope: params.emitsScope } : {},
|
|
4995
|
+
...params.config !== void 0 ? { config: params.config } : {}
|
|
4996
|
+
});
|
|
4997
|
+
}
|
|
4953
4998
|
function stdInventoryPage(params) {
|
|
4954
4999
|
return makePageRef({
|
|
4955
5000
|
from: BEHAVIOR_PATH92,
|
|
@@ -4972,7 +5017,8 @@ function stdInventory(params) {
|
|
|
4972
5017
|
stdInventoryInventoryItemBrowseTrait(params),
|
|
4973
5018
|
stdInventoryInventoryItemAddTrait(params),
|
|
4974
5019
|
stdInventoryInventoryItemUseTrait(params),
|
|
4975
|
-
stdInventoryInventoryItemDropTrait(params)
|
|
5020
|
+
stdInventoryInventoryItemDropTrait(params),
|
|
5021
|
+
stdInventoryInventoryItemPersistorTrait(params)
|
|
4976
5022
|
],
|
|
4977
5023
|
pages: [
|
|
4978
5024
|
stdInventoryPage(params)
|
|
@@ -5020,10 +5066,10 @@ function stdListListItemEditTrait(params) {
|
|
|
5020
5066
|
...params.config !== void 0 ? { config: params.config } : {}
|
|
5021
5067
|
});
|
|
5022
5068
|
}
|
|
5023
|
-
function
|
|
5069
|
+
function stdListListItemDeleteTrait(params) {
|
|
5024
5070
|
return makeTraitRef({
|
|
5025
5071
|
from: BEHAVIOR_PATH93,
|
|
5026
|
-
ref: `${ALIAS93}.traits.
|
|
5072
|
+
ref: `${ALIAS93}.traits.ListItemDelete`,
|
|
5027
5073
|
linkedEntity: params.entityName,
|
|
5028
5074
|
...params.traitName !== void 0 ? { name: params.traitName } : {},
|
|
5029
5075
|
...params.events !== void 0 ? { events: params.events } : {},
|
|
@@ -5033,10 +5079,10 @@ function stdListListItemViewTrait(params) {
|
|
|
5033
5079
|
...params.config !== void 0 ? { config: params.config } : {}
|
|
5034
5080
|
});
|
|
5035
5081
|
}
|
|
5036
|
-
function
|
|
5082
|
+
function stdListListItemPersistorTrait(params) {
|
|
5037
5083
|
return makeTraitRef({
|
|
5038
5084
|
from: BEHAVIOR_PATH93,
|
|
5039
|
-
ref: `${ALIAS93}.traits.
|
|
5085
|
+
ref: `${ALIAS93}.traits.ListItemPersistor`,
|
|
5040
5086
|
linkedEntity: params.entityName,
|
|
5041
5087
|
...params.traitName !== void 0 ? { name: params.traitName } : {},
|
|
5042
5088
|
...params.events !== void 0 ? { events: params.events } : {},
|
|
@@ -5068,8 +5114,8 @@ function stdList(params) {
|
|
|
5068
5114
|
stdListListItemBrowseTrait(params),
|
|
5069
5115
|
stdListListItemCreateTrait(params),
|
|
5070
5116
|
stdListListItemEditTrait(params),
|
|
5071
|
-
|
|
5072
|
-
|
|
5117
|
+
stdListListItemDeleteTrait(params),
|
|
5118
|
+
stdListListItemPersistorTrait(params)
|
|
5073
5119
|
],
|
|
5074
5120
|
pages: [
|
|
5075
5121
|
stdListPage(params)
|
|
@@ -5117,6 +5163,19 @@ function stdMessagingChatMessageViewTrait(params) {
|
|
|
5117
5163
|
...params.config !== void 0 ? { config: params.config } : {}
|
|
5118
5164
|
});
|
|
5119
5165
|
}
|
|
5166
|
+
function stdMessagingChatMessagePersistorTrait(params) {
|
|
5167
|
+
return makeTraitRef({
|
|
5168
|
+
from: BEHAVIOR_PATH94,
|
|
5169
|
+
ref: `${ALIAS94}.traits.ChatMessagePersistor`,
|
|
5170
|
+
linkedEntity: params.entityName,
|
|
5171
|
+
...params.traitName !== void 0 ? { name: params.traitName } : {},
|
|
5172
|
+
...params.events !== void 0 ? { events: params.events } : {},
|
|
5173
|
+
...params.effects !== void 0 ? { effects: params.effects } : {},
|
|
5174
|
+
...params.listens !== void 0 ? { listens: params.listens } : {},
|
|
5175
|
+
...params.emitsScope !== void 0 ? { emitsScope: params.emitsScope } : {},
|
|
5176
|
+
...params.config !== void 0 ? { config: params.config } : {}
|
|
5177
|
+
});
|
|
5178
|
+
}
|
|
5120
5179
|
function stdMessagingPage(params) {
|
|
5121
5180
|
return makePageRef({
|
|
5122
5181
|
from: BEHAVIOR_PATH94,
|
|
@@ -5138,7 +5197,8 @@ function stdMessaging(params) {
|
|
|
5138
5197
|
traits: [
|
|
5139
5198
|
stdMessagingChatMessageBrowseTrait(params),
|
|
5140
5199
|
stdMessagingChatMessageComposeTrait(params),
|
|
5141
|
-
stdMessagingChatMessageViewTrait(params)
|
|
5200
|
+
stdMessagingChatMessageViewTrait(params),
|
|
5201
|
+
stdMessagingChatMessagePersistorTrait(params)
|
|
5142
5202
|
],
|
|
5143
5203
|
pages: [
|
|
5144
5204
|
stdMessagingPage(params)
|