@genesislcap/ai-assistant 15.0.0 → 15.1.0-FUI-2567.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.
Files changed (2) hide show
  1. package/dist/custom-elements.json +113 -113
  2. package/package.json +17 -17
@@ -4791,6 +4791,119 @@
4791
4791
  "declarations": [],
4792
4792
  "exports": []
4793
4793
  },
4794
+ {
4795
+ "kind": "javascript-module",
4796
+ "path": "src/components/activity-halo/activity-halo.ts",
4797
+ "declarations": [
4798
+ {
4799
+ "kind": "class",
4800
+ "description": "Wrapper component that shows an `<ai-halo-overlay>` when the AI assistant\nis executing one of the declared tool names.",
4801
+ "name": "AiActivityHalo",
4802
+ "members": [
4803
+ {
4804
+ "kind": "field",
4805
+ "name": "tools",
4806
+ "type": {
4807
+ "text": "string"
4808
+ },
4809
+ "default": "''",
4810
+ "description": "Comma-separated list of tool names this element reacts to."
4811
+ },
4812
+ {
4813
+ "kind": "field",
4814
+ "name": "minShowTime",
4815
+ "type": {
4816
+ "text": "number"
4817
+ },
4818
+ "default": "600",
4819
+ "description": "Minimum time in ms the halo stays visible after activation."
4820
+ },
4821
+ {
4822
+ "kind": "field",
4823
+ "name": "unsubBus",
4824
+ "type": {
4825
+ "text": "() => void | undefined"
4826
+ },
4827
+ "privacy": "private"
4828
+ },
4829
+ {
4830
+ "kind": "field",
4831
+ "name": "hideTimeout",
4832
+ "type": {
4833
+ "text": "ReturnType<typeof setTimeout> | undefined"
4834
+ },
4835
+ "privacy": "private"
4836
+ },
4837
+ {
4838
+ "kind": "field",
4839
+ "name": "startTime",
4840
+ "type": {
4841
+ "text": "number"
4842
+ },
4843
+ "privacy": "private",
4844
+ "default": "0"
4845
+ },
4846
+ {
4847
+ "kind": "method",
4848
+ "name": "activate",
4849
+ "privacy": "private"
4850
+ },
4851
+ {
4852
+ "kind": "method",
4853
+ "name": "scheduleDeactivate",
4854
+ "privacy": "private"
4855
+ }
4856
+ ],
4857
+ "attributes": [
4858
+ {
4859
+ "name": "tools",
4860
+ "type": {
4861
+ "text": "string"
4862
+ },
4863
+ "default": "''",
4864
+ "description": "Comma-separated list of tool names this element reacts to.",
4865
+ "fieldName": "tools"
4866
+ },
4867
+ {
4868
+ "name": "min-show-time",
4869
+ "type": {
4870
+ "text": "number"
4871
+ },
4872
+ "default": "DEFAULT_MIN_SHOW_TIME",
4873
+ "description": "Minimum time in ms the halo stays visible after activation.",
4874
+ "resolveInitializer": {
4875
+ "module": "src/components/activity-halo/activity-halo.ts"
4876
+ },
4877
+ "fieldName": "minShowTime"
4878
+ }
4879
+ ],
4880
+ "superclass": {
4881
+ "name": "GenesisElement",
4882
+ "package": "@genesislcap/web-core"
4883
+ },
4884
+ "tagName": "ai-activity-halo",
4885
+ "customElement": true
4886
+ }
4887
+ ],
4888
+ "exports": [
4889
+ {
4890
+ "kind": "js",
4891
+ "name": "AiActivityHalo",
4892
+ "declaration": {
4893
+ "name": "AiActivityHalo",
4894
+ "module": "src/components/activity-halo/activity-halo.ts"
4895
+ }
4896
+ },
4897
+ {
4898
+ "kind": "custom-element-definition",
4899
+ "name": "ai-activity-halo",
4900
+ "declaration": {
4901
+ "name": "AiActivityHalo",
4902
+ "module": "src/components/activity-halo/activity-halo.ts"
4903
+ }
4904
+ }
4905
+ ]
4906
+ },
4794
4907
  {
4795
4908
  "kind": "javascript-module",
4796
4909
  "path": "src/utils/animated-panel-toggle.ts",
@@ -5805,119 +5918,6 @@
5805
5918
  "declarations": [],
5806
5919
  "exports": []
5807
5920
  },
5808
- {
5809
- "kind": "javascript-module",
5810
- "path": "src/components/activity-halo/activity-halo.ts",
5811
- "declarations": [
5812
- {
5813
- "kind": "class",
5814
- "description": "Wrapper component that shows an `<ai-halo-overlay>` when the AI assistant\nis executing one of the declared tool names.",
5815
- "name": "AiActivityHalo",
5816
- "members": [
5817
- {
5818
- "kind": "field",
5819
- "name": "tools",
5820
- "type": {
5821
- "text": "string"
5822
- },
5823
- "default": "''",
5824
- "description": "Comma-separated list of tool names this element reacts to."
5825
- },
5826
- {
5827
- "kind": "field",
5828
- "name": "minShowTime",
5829
- "type": {
5830
- "text": "number"
5831
- },
5832
- "default": "600",
5833
- "description": "Minimum time in ms the halo stays visible after activation."
5834
- },
5835
- {
5836
- "kind": "field",
5837
- "name": "unsubBus",
5838
- "type": {
5839
- "text": "() => void | undefined"
5840
- },
5841
- "privacy": "private"
5842
- },
5843
- {
5844
- "kind": "field",
5845
- "name": "hideTimeout",
5846
- "type": {
5847
- "text": "ReturnType<typeof setTimeout> | undefined"
5848
- },
5849
- "privacy": "private"
5850
- },
5851
- {
5852
- "kind": "field",
5853
- "name": "startTime",
5854
- "type": {
5855
- "text": "number"
5856
- },
5857
- "privacy": "private",
5858
- "default": "0"
5859
- },
5860
- {
5861
- "kind": "method",
5862
- "name": "activate",
5863
- "privacy": "private"
5864
- },
5865
- {
5866
- "kind": "method",
5867
- "name": "scheduleDeactivate",
5868
- "privacy": "private"
5869
- }
5870
- ],
5871
- "attributes": [
5872
- {
5873
- "name": "tools",
5874
- "type": {
5875
- "text": "string"
5876
- },
5877
- "default": "''",
5878
- "description": "Comma-separated list of tool names this element reacts to.",
5879
- "fieldName": "tools"
5880
- },
5881
- {
5882
- "name": "min-show-time",
5883
- "type": {
5884
- "text": "number"
5885
- },
5886
- "default": "DEFAULT_MIN_SHOW_TIME",
5887
- "description": "Minimum time in ms the halo stays visible after activation.",
5888
- "resolveInitializer": {
5889
- "module": "src/components/activity-halo/activity-halo.ts"
5890
- },
5891
- "fieldName": "minShowTime"
5892
- }
5893
- ],
5894
- "superclass": {
5895
- "name": "GenesisElement",
5896
- "package": "@genesislcap/web-core"
5897
- },
5898
- "tagName": "ai-activity-halo",
5899
- "customElement": true
5900
- }
5901
- ],
5902
- "exports": [
5903
- {
5904
- "kind": "js",
5905
- "name": "AiActivityHalo",
5906
- "declaration": {
5907
- "name": "AiActivityHalo",
5908
- "module": "src/components/activity-halo/activity-halo.ts"
5909
- }
5910
- },
5911
- {
5912
- "kind": "custom-element-definition",
5913
- "name": "ai-activity-halo",
5914
- "declaration": {
5915
- "name": "AiActivityHalo",
5916
- "module": "src/components/activity-halo/activity-halo.ts"
5917
- }
5918
- }
5919
- ]
5920
- },
5921
5921
  {
5922
5922
  "kind": "javascript-module",
5923
5923
  "path": "src/components/agent-picker/agent-picker.constants.ts",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/ai-assistant",
3
3
  "description": "Genesis AI Assistant micro-frontend",
4
- "version": "15.0.0",
4
+ "version": "15.1.0-FUI-2567.3",
5
5
  "license": "SEE LICENSE IN license.txt",
6
6
  "main": "dist/esm/index.js",
7
7
  "types": "dist/ai-assistant.d.ts",
@@ -73,26 +73,26 @@
73
73
  }
74
74
  },
75
75
  "devDependencies": {
76
- "@genesislcap/foundation-testing": "15.0.0",
77
- "@genesislcap/genx": "15.0.0",
78
- "@genesislcap/rollup-builder": "15.0.0",
79
- "@genesislcap/ts-builder": "15.0.0",
80
- "@genesislcap/uvu-playwright-builder": "15.0.0",
81
- "@genesislcap/vite-builder": "15.0.0",
82
- "@genesislcap/webpack-builder": "15.0.0",
76
+ "@genesislcap/foundation-testing": "15.1.0-FUI-2567.3",
77
+ "@genesislcap/genx": "15.1.0-FUI-2567.3",
78
+ "@genesislcap/rollup-builder": "15.1.0-FUI-2567.3",
79
+ "@genesislcap/ts-builder": "15.1.0-FUI-2567.3",
80
+ "@genesislcap/uvu-playwright-builder": "15.1.0-FUI-2567.3",
81
+ "@genesislcap/vite-builder": "15.1.0-FUI-2567.3",
82
+ "@genesislcap/webpack-builder": "15.1.0-FUI-2567.3",
83
83
  "@types/dompurify": "^3.0.5",
84
84
  "@types/marked": "^5.0.2",
85
85
  "esbuild": "0.25.12"
86
86
  },
87
87
  "dependencies": {
88
- "@genesislcap/foundation-ai": "15.0.0",
89
- "@genesislcap/foundation-logger": "15.0.0",
90
- "@genesislcap/foundation-notifications": "15.0.0",
91
- "@genesislcap/foundation-redux": "15.0.0",
92
- "@genesislcap/foundation-ui": "15.0.0",
93
- "@genesislcap/foundation-utils": "15.0.0",
94
- "@genesislcap/rapid-design-system": "15.0.0",
95
- "@genesislcap/web-core": "15.0.0",
88
+ "@genesislcap/foundation-ai": "15.1.0-FUI-2567.3",
89
+ "@genesislcap/foundation-logger": "15.1.0-FUI-2567.3",
90
+ "@genesislcap/foundation-notifications": "15.1.0-FUI-2567.3",
91
+ "@genesislcap/foundation-redux": "15.1.0-FUI-2567.3",
92
+ "@genesislcap/foundation-ui": "15.1.0-FUI-2567.3",
93
+ "@genesislcap/foundation-utils": "15.1.0-FUI-2567.3",
94
+ "@genesislcap/rapid-design-system": "15.1.0-FUI-2567.3",
95
+ "@genesislcap/web-core": "15.1.0-FUI-2567.3",
96
96
  "dompurify": "^3.3.1",
97
97
  "marked": "^17.0.3"
98
98
  },
@@ -105,5 +105,5 @@
105
105
  "access": "public"
106
106
  },
107
107
  "customElements": "dist/custom-elements.json",
108
- "gitHead": "035852ede9f26ea4434f1b3dfaff98db41490246"
108
+ "gitHead": "7ca16e74cbe5ce3f8503756bb708162eb7246897"
109
109
  }