@almadar/std 7.4.2 → 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-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-messaging.orb +511 -327
- package/behaviors/registry/molecules/std-wizard-form.orb +2 -101
- package/dist/behaviors/behaviors-registry.json +323 -49
- package/dist/behaviors/exports-reader.js +48 -3
- package/dist/behaviors/exports-reader.js.map +1 -1
- package/dist/behaviors/functions/index.d.ts +7 -1
- package/dist/behaviors/functions/index.js +46 -4
- package/dist/behaviors/functions/index.js.map +1 -1
- package/dist/behaviors/index.d.ts +1 -1
- package/dist/behaviors/index.js +49 -4
- package/dist/behaviors/index.js.map +1 -1
- package/dist/behaviors/query.js +48 -3
- package/dist/behaviors/query.js.map +1 -1
- 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-messaging.orb +511 -327
- package/dist/behaviors/registry/molecules/std-wizard-form.orb +2 -101
- package/dist/behaviors-registry.json +323 -49
- package/dist/index.d.ts +1 -1
- package/dist/index.js +49 -4
- 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,
|
|
@@ -355,6 +357,7 @@ __export(functions_exports, {
|
|
|
355
357
|
stdMessaging: () => stdMessaging,
|
|
356
358
|
stdMessagingChatMessageBrowseTrait: () => stdMessagingChatMessageBrowseTrait,
|
|
357
359
|
stdMessagingChatMessageComposeTrait: () => stdMessagingChatMessageComposeTrait,
|
|
360
|
+
stdMessagingChatMessagePersistorTrait: () => stdMessagingChatMessagePersistorTrait,
|
|
358
361
|
stdMessagingChatMessageViewTrait: () => stdMessagingChatMessageViewTrait,
|
|
359
362
|
stdMessagingPage: () => stdMessagingPage,
|
|
360
363
|
stdModal: () => stdModal,
|
|
@@ -4718,6 +4721,19 @@ function stdDetailDetailRecordViewTrait(params) {
|
|
|
4718
4721
|
...params.config !== void 0 ? { config: params.config } : {}
|
|
4719
4722
|
});
|
|
4720
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
|
+
}
|
|
4721
4737
|
function stdDetailPage(params) {
|
|
4722
4738
|
return makePageRef({
|
|
4723
4739
|
from: BEHAVIOR_PATH88,
|
|
@@ -4739,7 +4755,8 @@ function stdDetail(params) {
|
|
|
4739
4755
|
traits: [
|
|
4740
4756
|
stdDetailDetailRecordBrowseTrait(params),
|
|
4741
4757
|
stdDetailDetailRecordCreateTrait(params),
|
|
4742
|
-
stdDetailDetailRecordViewTrait(params)
|
|
4758
|
+
stdDetailDetailRecordViewTrait(params),
|
|
4759
|
+
stdDetailDetailRecordPersistorTrait(params)
|
|
4743
4760
|
],
|
|
4744
4761
|
pages: [
|
|
4745
4762
|
stdDetailPage(params)
|
|
@@ -4869,6 +4886,19 @@ function stdGeospatialLocationConfirmSelectTrait(params) {
|
|
|
4869
4886
|
...params.config !== void 0 ? { config: params.config } : {}
|
|
4870
4887
|
});
|
|
4871
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
|
+
}
|
|
4872
4902
|
function stdGeospatialPage(params) {
|
|
4873
4903
|
return makePageRef({
|
|
4874
4904
|
from: BEHAVIOR_PATH91,
|
|
@@ -4890,7 +4920,8 @@ function stdGeospatial(params) {
|
|
|
4890
4920
|
traits: [
|
|
4891
4921
|
stdGeospatialLocationBrowseTrait(params),
|
|
4892
4922
|
stdGeospatialLocationSelectTrait(params),
|
|
4893
|
-
stdGeospatialLocationConfirmSelectTrait(params)
|
|
4923
|
+
stdGeospatialLocationConfirmSelectTrait(params),
|
|
4924
|
+
stdGeospatialLocationSelectionFlowTrait(params)
|
|
4894
4925
|
],
|
|
4895
4926
|
pages: [
|
|
4896
4927
|
stdGeospatialPage(params)
|
|
@@ -5132,6 +5163,19 @@ function stdMessagingChatMessageViewTrait(params) {
|
|
|
5132
5163
|
...params.config !== void 0 ? { config: params.config } : {}
|
|
5133
5164
|
});
|
|
5134
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
|
+
}
|
|
5135
5179
|
function stdMessagingPage(params) {
|
|
5136
5180
|
return makePageRef({
|
|
5137
5181
|
from: BEHAVIOR_PATH94,
|
|
@@ -5153,7 +5197,8 @@ function stdMessaging(params) {
|
|
|
5153
5197
|
traits: [
|
|
5154
5198
|
stdMessagingChatMessageBrowseTrait(params),
|
|
5155
5199
|
stdMessagingChatMessageComposeTrait(params),
|
|
5156
|
-
stdMessagingChatMessageViewTrait(params)
|
|
5200
|
+
stdMessagingChatMessageViewTrait(params),
|
|
5201
|
+
stdMessagingChatMessagePersistorTrait(params)
|
|
5157
5202
|
],
|
|
5158
5203
|
pages: [
|
|
5159
5204
|
stdMessagingPage(params)
|