deep-chat-dev 9.0.112 → 9.0.116

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.
@@ -309,7 +309,7 @@
309
309
  "kind": "field",
310
310
  "name": "onComponentRender",
311
311
  "type": {
312
- "text": "() => void | undefined"
312
+ "text": "(ref: DeepChat) => void | undefined"
313
313
  }
314
314
  },
315
315
  {
@@ -508,60 +508,6 @@
508
508
  }
509
509
  ]
510
510
  },
511
- {
512
- "kind": "javascript-module",
513
- "path": "src/worker.ts",
514
- "declarations": [],
515
- "exports": []
516
- },
517
- {
518
- "kind": "javascript-module",
519
- "path": "src/services/serviceIO.ts",
520
- "declarations": [],
521
- "exports": []
522
- },
523
- {
524
- "kind": "javascript-module",
525
- "path": "src/services/serviceIOFactory.ts",
526
- "declarations": [
527
- {
528
- "kind": "class",
529
- "description": "",
530
- "name": "ServiceIOFactory",
531
- "members": [
532
- {
533
- "kind": "method",
534
- "name": "create",
535
- "privacy": "public",
536
- "static": true,
537
- "return": {
538
- "type": {
539
- "text": "ServiceIO"
540
- }
541
- },
542
- "parameters": [
543
- {
544
- "name": "deepChat",
545
- "type": {
546
- "text": "DeepChat"
547
- }
548
- }
549
- ]
550
- }
551
- ]
552
- }
553
- ],
554
- "exports": [
555
- {
556
- "kind": "js",
557
- "name": "ServiceIOFactory",
558
- "declaration": {
559
- "name": "ServiceIOFactory",
560
- "module": "src/services/serviceIOFactory.ts"
561
- }
562
- }
563
- ]
564
- },
565
511
  {
566
512
  "kind": "javascript-module",
567
513
  "path": "src/icons/audioIcon.ts",
@@ -919,6 +865,54 @@
919
865
  }
920
866
  ]
921
867
  },
868
+ {
869
+ "kind": "javascript-module",
870
+ "path": "src/services/serviceIO.ts",
871
+ "declarations": [],
872
+ "exports": []
873
+ },
874
+ {
875
+ "kind": "javascript-module",
876
+ "path": "src/services/serviceIOFactory.ts",
877
+ "declarations": [
878
+ {
879
+ "kind": "class",
880
+ "description": "",
881
+ "name": "ServiceIOFactory",
882
+ "members": [
883
+ {
884
+ "kind": "method",
885
+ "name": "create",
886
+ "privacy": "public",
887
+ "static": true,
888
+ "return": {
889
+ "type": {
890
+ "text": "ServiceIO"
891
+ }
892
+ },
893
+ "parameters": [
894
+ {
895
+ "name": "deepChat",
896
+ "type": {
897
+ "text": "DeepChat"
898
+ }
899
+ }
900
+ ]
901
+ }
902
+ ]
903
+ }
904
+ ],
905
+ "exports": [
906
+ {
907
+ "kind": "js",
908
+ "name": "ServiceIOFactory",
909
+ "declaration": {
910
+ "name": "ServiceIOFactory",
911
+ "module": "src/services/serviceIOFactory.ts"
912
+ }
913
+ }
914
+ ]
915
+ },
922
916
  {
923
917
  "kind": "javascript-module",
924
918
  "path": "src/webModel/webModel.ts",
@@ -16670,6 +16664,16 @@
16670
16664
  "static": true,
16671
16665
  "default": "'https://api.openai.com/v1/threads'"
16672
16666
  },
16667
+ {
16668
+ "kind": "field",
16669
+ "name": "NEW_ASSISTANT_URL",
16670
+ "type": {
16671
+ "text": "string"
16672
+ },
16673
+ "privacy": "private",
16674
+ "static": true,
16675
+ "default": "'https://api.openai.com/v1/assistants'"
16676
+ },
16673
16677
  {
16674
16678
  "kind": "field",
16675
16679
  "name": "POLLING_TIMEOUT_MS",
@@ -16721,6 +16725,15 @@
16721
16725
  "privacy": "private",
16722
16726
  "default": "false"
16723
16727
  },
16728
+ {
16729
+ "kind": "field",
16730
+ "name": "newAssistantDetails",
16731
+ "type": {
16732
+ "text": "OpenAINewAssistant"
16733
+ },
16734
+ "privacy": "private",
16735
+ "default": "{\n model: 'gpt-4',\n }"
16736
+ },
16724
16737
  {
16725
16738
  "kind": "method",
16726
16739
  "name": "processMessage",
@@ -16822,6 +16835,11 @@
16822
16835
  "module": "src/services/utils/baseServiceIO.ts"
16823
16836
  }
16824
16837
  },
16838
+ {
16839
+ "kind": "method",
16840
+ "name": "createNewAssistant",
16841
+ "privacy": "private"
16842
+ },
16825
16843
  {
16826
16844
  "kind": "method",
16827
16845
  "name": "searchPreviousMessagesForThreadId",
@@ -25730,7 +25748,7 @@
25730
25748
  {
25731
25749
  "name": "err",
25732
25750
  "type": {
25733
- "text": "object"
25751
+ "text": "object | string"
25734
25752
  }
25735
25753
  },
25736
25754
  {
@@ -28139,6 +28157,32 @@
28139
28157
  "description": "",
28140
28158
  "name": "OpenAIAssistantFiles",
28141
28159
  "members": [
28160
+ {
28161
+ "kind": "method",
28162
+ "name": "storeFiles",
28163
+ "privacy": "public",
28164
+ "static": true,
28165
+ "parameters": [
28166
+ {
28167
+ "name": "serviceIO",
28168
+ "type": {
28169
+ "text": "ServiceIO"
28170
+ }
28171
+ },
28172
+ {
28173
+ "name": "messages",
28174
+ "type": {
28175
+ "text": "Messages"
28176
+ }
28177
+ },
28178
+ {
28179
+ "name": "files",
28180
+ "type": {
28181
+ "text": "File[]"
28182
+ }
28183
+ }
28184
+ ]
28185
+ },
28142
28186
  {
28143
28187
  "kind": "method",
28144
28188
  "name": "getType",
@@ -28177,9 +28221,9 @@
28177
28221
  }
28178
28222
  },
28179
28223
  {
28180
- "name": "paths",
28224
+ "name": "fileDetails",
28181
28225
  "type": {
28182
- "text": "{path: string; fileId: string; name: string}[]"
28226
+ "text": "FileDetails"
28183
28227
  }
28184
28228
  }
28185
28229
  ]
@@ -28201,7 +28245,7 @@
28201
28245
  {
28202
28246
  "kind": "method",
28203
28247
  "name": "getFileDetails",
28204
- "privacy": "public",
28248
+ "privacy": "private",
28205
28249
  "static": true,
28206
28250
  "parameters": [
28207
28251
  {
@@ -28222,11 +28266,11 @@
28222
28266
  {
28223
28267
  "kind": "method",
28224
28268
  "name": "getFilesAndNewText",
28225
- "privacy": "public",
28269
+ "privacy": "private",
28226
28270
  "static": true,
28227
28271
  "parameters": [
28228
28272
  {
28229
- "name": "sIO",
28273
+ "name": "io",
28230
28274
  "type": {
28231
28275
  "text": "ServiceIO"
28232
28276
  }
@@ -28245,140 +28289,31 @@
28245
28289
  }
28246
28290
  }
28247
28291
  ]
28248
- }
28249
- ]
28250
- }
28251
- ],
28252
- "exports": [
28253
- {
28254
- "kind": "js",
28255
- "name": "OpenAIAssistantFiles",
28256
- "declaration": {
28257
- "name": "OpenAIAssistantFiles",
28258
- "module": "src/services/openAI/utils/openAIAssistantFiles.ts"
28259
- }
28260
- }
28261
- ]
28262
- },
28263
- {
28264
- "kind": "javascript-module",
28265
- "path": "src/services/openAI/utils/openAIUtils.ts",
28266
- "declarations": [
28267
- {
28268
- "kind": "class",
28269
- "description": "",
28270
- "name": "OpenAIUtils",
28271
- "members": [
28272
- {
28273
- "kind": "method",
28274
- "name": "buildHeaders",
28275
- "privacy": "public",
28276
- "static": true,
28277
- "parameters": [
28278
- {
28279
- "name": "key",
28280
- "type": {
28281
- "text": "string"
28282
- }
28283
- }
28284
- ]
28285
28292
  },
28286
28293
  {
28287
28294
  "kind": "method",
28288
- "name": "handleVerificationResult",
28289
- "privacy": "private",
28290
- "static": true,
28291
- "parameters": [
28292
- {
28293
- "name": "result",
28294
- "type": {
28295
- "text": "object"
28296
- }
28297
- },
28298
- {
28299
- "name": "key",
28300
- "type": {
28301
- "text": "string"
28302
- }
28303
- },
28304
- {
28305
- "name": "onSuccess",
28306
- "type": {
28307
- "text": "(key: string) => void"
28308
- }
28309
- },
28310
- {
28311
- "name": "onFail",
28312
- "type": {
28313
- "text": "(message: string) => void"
28314
- }
28315
- }
28316
- ]
28317
- },
28318
- {
28319
- "kind": "method",
28320
- "name": "buildKeyVerificationDetails",
28321
- "privacy": "public",
28322
- "static": true,
28323
- "return": {
28324
- "type": {
28325
- "text": "KeyVerificationDetails"
28326
- }
28327
- }
28328
- },
28329
- {
28330
- "kind": "method",
28331
- "name": "storeFiles",
28295
+ "name": "getFilesAndText",
28332
28296
  "privacy": "public",
28333
28297
  "static": true,
28334
28298
  "parameters": [
28335
28299
  {
28336
- "name": "serviceIO",
28337
- "type": {
28338
- "text": "ServiceIO"
28339
- }
28340
- },
28341
- {
28342
- "name": "messages",
28343
- "type": {
28344
- "text": "Messages"
28345
- }
28346
- },
28347
- {
28348
- "name": "files",
28349
- "type": {
28350
- "text": "File[]"
28351
- }
28352
- }
28353
- ]
28354
- },
28355
- {
28356
- "kind": "method",
28357
- "name": "directFetch",
28358
- "privacy": "public",
28359
- "static": true,
28360
- "parameters": [
28361
- {
28362
- "name": "serviceIO",
28300
+ "name": "io",
28363
28301
  "type": {
28364
28302
  "text": "ServiceIO"
28365
28303
  }
28366
28304
  },
28367
28305
  {
28368
- "name": "body",
28306
+ "name": "lastMessage",
28369
28307
  "type": {
28370
- "text": "any"
28308
+ "text": "OpenAIAssistantData"
28371
28309
  }
28372
28310
  },
28373
28311
  {
28374
- "name": "method",
28312
+ "name": "content",
28313
+ "optional": true,
28375
28314
  "type": {
28376
- "text": "'POST' | 'GET'"
28315
+ "text": "OpenAIAssistantContent"
28377
28316
  }
28378
- },
28379
- {
28380
- "name": "stringify",
28381
- "default": "true"
28382
28317
  }
28383
28318
  ]
28384
28319
  }
@@ -28388,22 +28323,132 @@
28388
28323
  "exports": [
28389
28324
  {
28390
28325
  "kind": "js",
28391
- "name": "OpenAIUtils",
28326
+ "name": "OpenAIAssistantFiles",
28392
28327
  "declaration": {
28393
- "name": "OpenAIUtils",
28394
- "module": "src/services/openAI/utils/openAIUtils.ts"
28328
+ "name": "OpenAIAssistantFiles",
28329
+ "module": "src/services/openAI/utils/openAIAssistantFiles.ts"
28395
28330
  }
28396
28331
  }
28397
28332
  ]
28398
28333
  },
28399
28334
  {
28400
28335
  "kind": "javascript-module",
28401
- "path": "src/services/stabilityAI/utils/stabilityAIUtils.ts",
28336
+ "path": "src/services/openAI/utils/openAIUtils.ts",
28402
28337
  "declarations": [
28403
28338
  {
28404
28339
  "kind": "class",
28405
28340
  "description": "",
28406
- "name": "StabilityAIUtils",
28341
+ "name": "OpenAIUtils",
28342
+ "members": [
28343
+ {
28344
+ "kind": "method",
28345
+ "name": "buildHeaders",
28346
+ "privacy": "public",
28347
+ "static": true,
28348
+ "parameters": [
28349
+ {
28350
+ "name": "key",
28351
+ "type": {
28352
+ "text": "string"
28353
+ }
28354
+ }
28355
+ ]
28356
+ },
28357
+ {
28358
+ "kind": "method",
28359
+ "name": "handleVerificationResult",
28360
+ "privacy": "private",
28361
+ "static": true,
28362
+ "parameters": [
28363
+ {
28364
+ "name": "result",
28365
+ "type": {
28366
+ "text": "object"
28367
+ }
28368
+ },
28369
+ {
28370
+ "name": "key",
28371
+ "type": {
28372
+ "text": "string"
28373
+ }
28374
+ },
28375
+ {
28376
+ "name": "onSuccess",
28377
+ "type": {
28378
+ "text": "(key: string) => void"
28379
+ }
28380
+ },
28381
+ {
28382
+ "name": "onFail",
28383
+ "type": {
28384
+ "text": "(message: string) => void"
28385
+ }
28386
+ }
28387
+ ]
28388
+ },
28389
+ {
28390
+ "kind": "method",
28391
+ "name": "buildKeyVerificationDetails",
28392
+ "privacy": "public",
28393
+ "static": true,
28394
+ "return": {
28395
+ "type": {
28396
+ "text": "KeyVerificationDetails"
28397
+ }
28398
+ }
28399
+ },
28400
+ {
28401
+ "kind": "method",
28402
+ "name": "directFetch",
28403
+ "privacy": "public",
28404
+ "static": true,
28405
+ "parameters": [
28406
+ {
28407
+ "name": "serviceIO",
28408
+ "type": {
28409
+ "text": "ServiceIO"
28410
+ }
28411
+ },
28412
+ {
28413
+ "name": "body",
28414
+ "type": {
28415
+ "text": "any"
28416
+ }
28417
+ },
28418
+ {
28419
+ "name": "method",
28420
+ "type": {
28421
+ "text": "'POST' | 'GET'"
28422
+ }
28423
+ },
28424
+ {
28425
+ "name": "stringify",
28426
+ "default": "true"
28427
+ }
28428
+ ]
28429
+ }
28430
+ ]
28431
+ }
28432
+ ],
28433
+ "exports": [
28434
+ {
28435
+ "kind": "js",
28436
+ "name": "OpenAIUtils",
28437
+ "declaration": {
28438
+ "name": "OpenAIUtils",
28439
+ "module": "src/services/openAI/utils/openAIUtils.ts"
28440
+ }
28441
+ }
28442
+ ]
28443
+ },
28444
+ {
28445
+ "kind": "javascript-module",
28446
+ "path": "src/services/stabilityAI/utils/stabilityAIUtils.ts",
28447
+ "declarations": [
28448
+ {
28449
+ "kind": "class",
28450
+ "description": "",
28451
+ "name": "StabilityAIUtils",
28407
28452
  "members": [
28408
28453
  {
28409
28454
  "kind": "method",
@@ -28985,16 +29030,15 @@
28985
29030
  "static": true,
28986
29031
  "parameters": [
28987
29032
  {
28988
- "name": "url",
29033
+ "name": "type",
28989
29034
  "type": {
28990
- "text": "string"
29035
+ "text": "MessageFileType"
28991
29036
  }
28992
29037
  },
28993
29038
  {
28994
- "name": "anyFile",
28995
- "optional": true,
29039
+ "name": "url",
28996
29040
  "type": {
28997
- "text": "boolean"
29041
+ "text": "string"
28998
29042
  }
28999
29043
  }
29000
29044
  ]
@@ -29005,6 +29049,12 @@
29005
29049
  "privacy": "public",
29006
29050
  "static": true,
29007
29051
  "parameters": [
29052
+ {
29053
+ "name": "type",
29054
+ "type": {
29055
+ "text": "MessageFileType"
29056
+ }
29057
+ },
29008
29058
  {
29009
29059
  "name": "contentEl",
29010
29060
  "type": {
@@ -29024,13 +29074,6 @@
29024
29074
  "type": {
29025
29075
  "text": "string"
29026
29076
  }
29027
- },
29028
- {
29029
- "name": "anyFile",
29030
- "optional": true,
29031
- "type": {
29032
- "text": "boolean"
29033
- }
29034
29077
  }
29035
29078
  ]
29036
29079
  },
@@ -31806,156 +31849,293 @@
31806
31849
  },
31807
31850
  {
31808
31851
  "kind": "javascript-module",
31809
- "path": "src/views/chat/input/dropup/dropup.ts",
31852
+ "path": "src/views/chat/input/buttons/buttonCSS.ts",
31810
31853
  "declarations": [
31811
31854
  {
31812
31855
  "kind": "class",
31813
31856
  "description": "",
31814
- "name": "Dropup",
31857
+ "name": "ButtonCSS",
31815
31858
  "members": [
31816
- {
31817
- "kind": "field",
31818
- "name": "_menu",
31819
- "type": {
31820
- "text": "DropupMenu"
31821
- },
31822
- "privacy": "private",
31823
- "default": "new DropupMenu(containerElement, styles?.menu)"
31824
- },
31825
- {
31826
- "kind": "field",
31827
- "name": "buttonContainer",
31828
- "type": {
31829
- "text": "HTMLElement"
31830
- }
31831
- },
31832
31859
  {
31833
31860
  "kind": "method",
31834
- "name": "createButtonElement",
31835
- "privacy": "private",
31836
- "static": true
31861
+ "name": "unsetAllCSS",
31862
+ "privacy": "public",
31863
+ "static": true,
31864
+ "parameters": [
31865
+ {
31866
+ "name": "button",
31867
+ "type": {
31868
+ "text": "HTMLElement"
31869
+ }
31870
+ },
31871
+ {
31872
+ "name": "styles",
31873
+ "type": {
31874
+ "text": "ButtonStyles"
31875
+ }
31876
+ }
31877
+ ]
31837
31878
  },
31838
31879
  {
31839
31880
  "kind": "method",
31840
- "name": "createInnerElements",
31841
- "privacy": "private",
31881
+ "name": "unsetActionCSS",
31882
+ "privacy": "public",
31883
+ "static": true,
31842
31884
  "parameters": [
31843
31885
  {
31844
- "name": "customStyles",
31845
- "optional": true,
31886
+ "name": "button",
31846
31887
  "type": {
31847
- "text": "Styles"
31888
+ "text": "HTMLElement"
31889
+ }
31890
+ },
31891
+ {
31892
+ "name": "styles",
31893
+ "type": {
31894
+ "text": "ButtonStyles"
31848
31895
  }
31849
31896
  }
31850
31897
  ]
31851
31898
  },
31852
31899
  {
31853
31900
  "kind": "method",
31854
- "name": "createInnerElement",
31855
- "privacy": "private",
31901
+ "name": "setElementsCSS",
31902
+ "privacy": "public",
31903
+ "static": true,
31856
31904
  "parameters": [
31857
31905
  {
31858
- "name": "baseButton",
31906
+ "name": "button",
31859
31907
  "type": {
31860
- "text": "SVGGraphicsElement"
31908
+ "text": "HTMLElement"
31861
31909
  }
31862
31910
  },
31863
31911
  {
31864
- "name": "state",
31912
+ "name": "styles",
31865
31913
  "type": {
31866
- "text": "'styles'"
31914
+ "text": "ButtonStyles"
31867
31915
  }
31868
31916
  },
31869
31917
  {
31870
- "name": "customStyles",
31871
- "optional": true,
31918
+ "name": "style",
31872
31919
  "type": {
31873
- "text": "Styles"
31920
+ "text": "keyof StatefulStyles"
31874
31921
  }
31875
31922
  }
31876
31923
  ]
31877
31924
  },
31878
31925
  {
31879
31926
  "kind": "method",
31880
- "name": "createSVGIconElement",
31881
- "privacy": "private",
31882
- "static": true
31883
- },
31927
+ "name": "setElementCssUpToState",
31928
+ "privacy": "public",
31929
+ "static": true,
31930
+ "parameters": [
31931
+ {
31932
+ "name": "button",
31933
+ "type": {
31934
+ "text": "HTMLElement"
31935
+ }
31936
+ },
31937
+ {
31938
+ "name": "styles",
31939
+ "type": {
31940
+ "text": "ButtonStyles"
31941
+ }
31942
+ },
31943
+ {
31944
+ "name": "style",
31945
+ "type": {
31946
+ "text": "keyof StatefulStyles"
31947
+ }
31948
+ }
31949
+ ]
31950
+ }
31951
+ ]
31952
+ }
31953
+ ],
31954
+ "exports": [
31955
+ {
31956
+ "kind": "js",
31957
+ "name": "ButtonCSS",
31958
+ "declaration": {
31959
+ "name": "ButtonCSS",
31960
+ "module": "src/views/chat/input/buttons/buttonCSS.ts"
31961
+ }
31962
+ }
31963
+ ]
31964
+ },
31965
+ {
31966
+ "kind": "javascript-module",
31967
+ "path": "src/views/chat/input/buttons/customButtonInnerElements.ts",
31968
+ "declarations": [
31969
+ {
31970
+ "kind": "class",
31971
+ "description": "",
31972
+ "name": "CustomButtonInnerElements",
31973
+ "members": [
31884
31974
  {
31885
31975
  "kind": "method",
31886
- "name": "addClickEvent",
31887
- "privacy": "private"
31976
+ "name": "createTextElement",
31977
+ "privacy": "private",
31978
+ "static": true,
31979
+ "parameters": [
31980
+ {
31981
+ "name": "text",
31982
+ "type": {
31983
+ "text": "string"
31984
+ }
31985
+ }
31986
+ ]
31888
31987
  },
31889
31988
  {
31890
31989
  "kind": "method",
31891
- "name": "createButtonContainer",
31990
+ "name": "createElement",
31892
31991
  "privacy": "private",
31893
- "static": true
31992
+ "static": true,
31993
+ "parameters": [
31994
+ {
31995
+ "name": "string",
31996
+ "type": {
31997
+ "text": "string"
31998
+ }
31999
+ },
32000
+ {
32001
+ "name": "isText",
32002
+ "type": {
32003
+ "text": "boolean"
32004
+ }
32005
+ }
32006
+ ]
31894
32007
  },
31895
32008
  {
31896
32009
  "kind": "method",
31897
- "name": "addItem",
32010
+ "name": "createCustomElement",
32011
+ "privacy": "public",
32012
+ "static": true,
31898
32013
  "parameters": [
31899
32014
  {
31900
- "name": "buttonProps",
32015
+ "name": "state",
31901
32016
  "type": {
31902
- "text": "InputButton"
32017
+ "text": "keyof T"
32018
+ }
32019
+ },
32020
+ {
32021
+ "name": "customStyles",
32022
+ "optional": true,
32023
+ "type": {
32024
+ "text": "ButtonStateStyles<T>"
31903
32025
  }
31904
32026
  }
31905
32027
  ]
31906
32028
  },
31907
32029
  {
31908
32030
  "kind": "method",
31909
- "name": "addContainerEvents",
32031
+ "name": "processElement",
31910
32032
  "privacy": "private",
32033
+ "static": true,
31911
32034
  "parameters": [
31912
32035
  {
31913
- "name": "containerElement",
32036
+ "name": "parentEl",
31914
32037
  "type": {
31915
32038
  "text": "HTMLElement"
31916
32039
  }
32040
+ },
32041
+ {
32042
+ "name": "element",
32043
+ "optional": true,
32044
+ "type": {
32045
+ "text": "Element"
32046
+ }
31917
32047
  }
31918
32048
  ]
31919
32049
  },
31920
32050
  {
31921
32051
  "kind": "method",
31922
- "name": "getPosition",
32052
+ "name": "createSpecificStateElement",
32053
+ "privacy": "public",
31923
32054
  "static": true,
31924
32055
  "parameters": [
31925
32056
  {
31926
- "name": "positions",
32057
+ "name": "parentEl",
31927
32058
  "type": {
31928
- "text": "Positions"
32059
+ "text": "HTMLElement"
31929
32060
  }
31930
32061
  },
31931
32062
  {
31932
- "name": "dropupStyles",
32063
+ "name": "state",
32064
+ "type": {
32065
+ "text": "keyof T"
32066
+ }
32067
+ },
32068
+ {
32069
+ "name": "customStyles",
31933
32070
  "optional": true,
31934
32071
  "type": {
31935
- "text": "DropupStyles"
32072
+ "text": "ButtonStateStyles<T>"
31936
32073
  }
31937
32074
  }
31938
32075
  ]
31939
32076
  },
31940
32077
  {
31941
- "kind": "field",
31942
- "name": "id",
31943
- "type": {
31944
- "text": "string"
32078
+ "kind": "method",
32079
+ "name": "create",
32080
+ "privacy": "public",
32081
+ "static": true,
32082
+ "return": {
32083
+ "type": {
32084
+ "text": "ButtonInnerElements<T>"
32085
+ }
31945
32086
  },
31946
- "default": "'dropup-icon'"
31947
- },
32087
+ "parameters": [
32088
+ {
32089
+ "name": "parentEl",
32090
+ "type": {
32091
+ "text": "HTMLElement"
32092
+ }
32093
+ },
32094
+ {
32095
+ "name": "states",
32096
+ "type": {
32097
+ "text": "(keyof T)[]"
32098
+ }
32099
+ },
32100
+ {
32101
+ "name": "styles",
32102
+ "optional": true,
32103
+ "type": {
32104
+ "text": "ButtonStateStyles<T>"
32105
+ }
32106
+ }
32107
+ ]
32108
+ }
32109
+ ]
32110
+ }
32111
+ ],
32112
+ "exports": [
32113
+ {
32114
+ "kind": "js",
32115
+ "name": "CustomButtonInnerElements",
32116
+ "declaration": {
32117
+ "name": "CustomButtonInnerElements",
32118
+ "module": "src/views/chat/input/buttons/customButtonInnerElements.ts"
32119
+ }
32120
+ }
32121
+ ]
32122
+ },
32123
+ {
32124
+ "kind": "javascript-module",
32125
+ "path": "src/views/chat/input/buttons/inputButton.ts",
32126
+ "declarations": [
32127
+ {
32128
+ "kind": "class",
32129
+ "description": "",
32130
+ "name": "InputButton",
32131
+ "members": [
31948
32132
  {
31949
32133
  "kind": "field",
31950
32134
  "name": "elementRef",
31951
32135
  "type": {
31952
32136
  "text": "HTMLElement"
31953
32137
  },
31954
- "default": "buttonElement",
31955
- "inheritedFrom": {
31956
- "name": "InputButton",
31957
- "module": "src/views/chat/input/buttons/inputButton.ts"
31958
- }
32138
+ "default": "buttonElement"
31959
32139
  },
31960
32140
  {
31961
32141
  "kind": "field",
@@ -31964,11 +32144,7 @@
31964
32144
  "text": "MouseState"
31965
32145
  },
31966
32146
  "privacy": "protected",
31967
- "default": "{state: 'default'}",
31968
- "inheritedFrom": {
31969
- "name": "InputButton",
31970
- "module": "src/views/chat/input/buttons/inputButton.ts"
31971
- }
32147
+ "default": "{state: 'default'}"
31972
32148
  },
31973
32149
  {
31974
32150
  "kind": "field",
@@ -31977,11 +32153,7 @@
31977
32153
  "text": "T | undefined"
31978
32154
  },
31979
32155
  "privacy": "protected",
31980
- "default": "customStyles",
31981
- "inheritedFrom": {
31982
- "name": "InputButton",
31983
- "module": "src/views/chat/input/buttons/inputButton.ts"
31984
- }
32156
+ "default": "customStyles"
31985
32157
  },
31986
32158
  {
31987
32159
  "kind": "field",
@@ -31989,11 +32161,7 @@
31989
32161
  "type": {
31990
32162
  "text": "ButtonPositionT | undefined"
31991
32163
  },
31992
- "default": "position",
31993
- "inheritedFrom": {
31994
- "name": "InputButton",
31995
- "module": "src/views/chat/input/buttons/inputButton.ts"
31996
- }
32164
+ "default": "position"
31997
32165
  },
31998
32166
  {
31999
32167
  "kind": "field",
@@ -32001,11 +32169,7 @@
32001
32169
  "type": {
32002
32170
  "text": "string | undefined"
32003
32171
  },
32004
- "default": "dropupText",
32005
- "inheritedFrom": {
32006
- "name": "InputButton",
32007
- "module": "src/views/chat/input/buttons/inputButton.ts"
32008
- }
32172
+ "default": "dropupText"
32009
32173
  },
32010
32174
  {
32011
32175
  "kind": "method",
@@ -32019,11 +32183,7 @@
32019
32183
  "text": "ButtonStyles"
32020
32184
  }
32021
32185
  }
32022
- ],
32023
- "inheritedFrom": {
32024
- "name": "InputButton",
32025
- "module": "src/views/chat/input/buttons/inputButton.ts"
32026
- }
32186
+ ]
32027
32187
  },
32028
32188
  {
32029
32189
  "kind": "method",
@@ -32037,11 +32197,7 @@
32037
32197
  "text": "ButtonStyles"
32038
32198
  }
32039
32199
  }
32040
- ],
32041
- "inheritedFrom": {
32042
- "name": "InputButton",
32043
- "module": "src/views/chat/input/buttons/inputButton.ts"
32044
- }
32200
+ ]
32045
32201
  },
32046
32202
  {
32047
32203
  "kind": "method",
@@ -32055,11 +32211,7 @@
32055
32211
  "text": "ButtonStyles"
32056
32212
  }
32057
32213
  }
32058
- ],
32059
- "inheritedFrom": {
32060
- "name": "InputButton",
32061
- "module": "src/views/chat/input/buttons/inputButton.ts"
32062
- }
32214
+ ]
32063
32215
  },
32064
32216
  {
32065
32217
  "kind": "method",
@@ -32073,11 +32225,7 @@
32073
32225
  "text": "ButtonStyles"
32074
32226
  }
32075
32227
  }
32076
- ],
32077
- "inheritedFrom": {
32078
- "name": "InputButton",
32079
- "module": "src/views/chat/input/buttons/inputButton.ts"
32080
- }
32228
+ ]
32081
32229
  },
32082
32230
  {
32083
32231
  "kind": "method",
@@ -32091,11 +32239,7 @@
32091
32239
  "text": "ButtonStyles"
32092
32240
  }
32093
32241
  }
32094
- ],
32095
- "inheritedFrom": {
32096
- "name": "InputButton",
32097
- "module": "src/views/chat/input/buttons/inputButton.ts"
32098
- }
32242
+ ]
32099
32243
  },
32100
32244
  {
32101
32245
  "kind": "method",
@@ -32108,11 +32252,7 @@
32108
32252
  "text": "(keyof T)[]"
32109
32253
  }
32110
32254
  }
32111
- ],
32112
- "inheritedFrom": {
32113
- "name": "InputButton",
32114
- "module": "src/views/chat/input/buttons/inputButton.ts"
32115
- }
32255
+ ]
32116
32256
  },
32117
32257
  {
32118
32258
  "kind": "method",
@@ -32132,171 +32272,176 @@
32132
32272
  "text": "(keyof T)[]"
32133
32273
  }
32134
32274
  }
32135
- ],
32136
- "inheritedFrom": {
32137
- "name": "InputButton",
32138
- "module": "src/views/chat/input/buttons/inputButton.ts"
32139
- }
32275
+ ]
32140
32276
  }
32141
- ],
32142
- "superclass": {
32143
- "name": "InputButton",
32144
- "module": "/src/views/chat/input/buttons/inputButton"
32145
- }
32277
+ ]
32146
32278
  }
32147
32279
  ],
32148
32280
  "exports": [
32149
32281
  {
32150
32282
  "kind": "js",
32151
- "name": "Dropup",
32283
+ "name": "InputButton",
32152
32284
  "declaration": {
32153
- "name": "Dropup",
32154
- "module": "src/views/chat/input/dropup/dropup.ts"
32285
+ "name": "InputButton",
32286
+ "module": "src/views/chat/input/buttons/inputButton.ts"
32155
32287
  }
32156
32288
  }
32157
32289
  ]
32158
32290
  },
32159
32291
  {
32160
32292
  "kind": "javascript-module",
32161
- "path": "src/views/chat/input/dropup/dropupItem.ts",
32293
+ "path": "src/views/chat/input/fileAttachments/fileAttachments.ts",
32162
32294
  "declarations": [
32163
32295
  {
32164
32296
  "kind": "class",
32165
32297
  "description": "",
32166
- "name": "DropupItem",
32298
+ "name": "FileAttachments",
32167
32299
  "members": [
32168
32300
  {
32169
- "kind": "method",
32170
- "name": "addItemEvents",
32301
+ "kind": "field",
32302
+ "name": "_fileAttachmentsTypes",
32303
+ "type": {
32304
+ "text": "FileAttachmentsType[]"
32305
+ },
32171
32306
  "privacy": "private",
32172
- "static": true,
32307
+ "default": "[]"
32308
+ },
32309
+ {
32310
+ "kind": "field",
32311
+ "name": "elementRef",
32312
+ "type": {
32313
+ "text": "HTMLElement"
32314
+ }
32315
+ },
32316
+ {
32317
+ "kind": "method",
32318
+ "name": "addType",
32173
32319
  "parameters": [
32174
32320
  {
32175
- "name": "menu",
32321
+ "name": "deepChat",
32176
32322
  "type": {
32177
- "text": "DropupMenu"
32323
+ "text": "DeepChat"
32178
32324
  }
32179
32325
  },
32180
32326
  {
32181
- "name": "item",
32327
+ "name": "files",
32182
32328
  "type": {
32183
- "text": "HTMLElement"
32329
+ "text": "FileAttachmentsT"
32184
32330
  }
32185
32331
  },
32186
32332
  {
32187
- "name": "inputButton",
32333
+ "name": "type",
32188
32334
  "type": {
32189
- "text": "HTMLElement"
32190
- }
32191
- },
32192
- {
32193
- "name": "styles",
32194
- "type": {
32195
- "text": "StatefulStyles"
32335
+ "text": "keyof ServiceFileTypes"
32196
32336
  }
32197
32337
  }
32198
32338
  ]
32199
32339
  },
32200
32340
  {
32201
32341
  "kind": "method",
32202
- "name": "createItemText",
32342
+ "name": "createAttachmentContainer",
32343
+ "privacy": "private"
32344
+ },
32345
+ {
32346
+ "kind": "method",
32347
+ "name": "toggleContainerDisplay",
32203
32348
  "privacy": "private",
32204
- "static": true,
32205
32349
  "parameters": [
32206
32350
  {
32207
- "name": "dropupText",
32208
- "optional": true,
32209
- "type": {
32210
- "text": "string"
32211
- }
32212
- },
32213
- {
32214
- "name": "textStyle",
32215
- "optional": true,
32351
+ "name": "display",
32216
32352
  "type": {
32217
- "text": "CustomStyle"
32353
+ "text": "boolean"
32218
32354
  }
32219
32355
  }
32220
32356
  ]
32221
32357
  },
32222
32358
  {
32223
32359
  "kind": "method",
32224
- "name": "createItemIcon",
32225
- "privacy": "private",
32360
+ "name": "getAllFileData"
32361
+ },
32362
+ {
32363
+ "kind": "method",
32364
+ "name": "completePlaceholders"
32365
+ },
32366
+ {
32367
+ "kind": "method",
32368
+ "name": "addFilesToType",
32369
+ "privacy": "public",
32226
32370
  "static": true,
32227
32371
  "parameters": [
32228
32372
  {
32229
- "name": "inputButtonElement",
32373
+ "name": "files",
32230
32374
  "type": {
32231
- "text": "HTMLElement"
32375
+ "text": "File[]"
32232
32376
  }
32233
32377
  },
32234
32378
  {
32235
- "name": "iconContainerStyle",
32236
- "optional": true,
32379
+ "name": "fileAttachmentTypes",
32237
32380
  "type": {
32238
- "text": "CustomStyle"
32381
+ "text": "FileAttachmentsType[]"
32239
32382
  }
32240
32383
  }
32241
32384
  ]
32242
32385
  },
32243
32386
  {
32244
32387
  "kind": "method",
32245
- "name": "populateItem",
32246
- "privacy": "private",
32247
- "static": true,
32388
+ "name": "addFilesToAnyType",
32248
32389
  "parameters": [
32249
32390
  {
32250
- "name": "elementRef",
32251
- "type": {
32252
- "text": "HTMLElement"
32253
- }
32254
- },
32255
- {
32256
- "name": "item",
32257
- "type": {
32258
- "text": "HTMLElement"
32259
- }
32260
- },
32261
- {
32262
- "name": "dropupText",
32263
- "optional": true,
32264
- "type": {
32265
- "text": "string"
32266
- }
32267
- },
32268
- {
32269
- "name": "styles",
32270
- "optional": true,
32391
+ "name": "files",
32271
32392
  "type": {
32272
- "text": "DropupMenuStyles"
32393
+ "text": "File[]"
32273
32394
  }
32274
32395
  }
32275
32396
  ]
32276
32397
  },
32277
32398
  {
32278
32399
  "kind": "method",
32279
- "name": "createItem",
32400
+ "name": "removeAllFiles"
32401
+ },
32402
+ {
32403
+ "kind": "method",
32404
+ "name": "getNumberOfTypes"
32405
+ }
32406
+ ]
32407
+ }
32408
+ ],
32409
+ "exports": [
32410
+ {
32411
+ "kind": "js",
32412
+ "name": "FileAttachments",
32413
+ "declaration": {
32414
+ "name": "FileAttachments",
32415
+ "module": "src/views/chat/input/fileAttachments/fileAttachments.ts"
32416
+ }
32417
+ }
32418
+ ]
32419
+ },
32420
+ {
32421
+ "kind": "javascript-module",
32422
+ "path": "src/views/chat/input/fileAttachments/newFileName.ts",
32423
+ "declarations": [
32424
+ {
32425
+ "kind": "class",
32426
+ "description": "",
32427
+ "name": "NewFileName",
32428
+ "members": [
32429
+ {
32430
+ "kind": "method",
32431
+ "name": "getFileName",
32280
32432
  "privacy": "public",
32281
32433
  "static": true,
32282
32434
  "parameters": [
32283
32435
  {
32284
- "name": "menu",
32285
- "type": {
32286
- "text": "DropupMenu"
32287
- }
32288
- },
32289
- {
32290
- "name": "inputButton",
32436
+ "name": "prefix",
32291
32437
  "type": {
32292
- "text": "InputButton"
32438
+ "text": "string"
32293
32439
  }
32294
32440
  },
32295
32441
  {
32296
- "name": "styles",
32297
- "optional": true,
32442
+ "name": "extension",
32298
32443
  "type": {
32299
- "text": "DropupMenuStyles"
32444
+ "text": "string"
32300
32445
  }
32301
32446
  }
32302
32447
  ]
@@ -32307,75 +32452,85 @@
32307
32452
  "exports": [
32308
32453
  {
32309
32454
  "kind": "js",
32310
- "name": "DropupItem",
32455
+ "name": "NewFileName",
32311
32456
  "declaration": {
32312
- "name": "DropupItem",
32313
- "module": "src/views/chat/input/dropup/dropupItem.ts"
32457
+ "name": "NewFileName",
32458
+ "module": "src/views/chat/input/fileAttachments/newFileName.ts"
32314
32459
  }
32315
32460
  }
32316
32461
  ]
32317
32462
  },
32318
32463
  {
32319
32464
  "kind": "javascript-module",
32320
- "path": "src/views/chat/input/dropup/dropupItemNavigation.ts",
32465
+ "path": "src/views/chat/input/textInput/focusUtils.ts",
32321
32466
  "declarations": [
32322
32467
  {
32323
32468
  "kind": "class",
32324
32469
  "description": "",
32325
- "name": "DropupItemNavigation",
32470
+ "name": "FocusUtils",
32326
32471
  "members": [
32327
32472
  {
32328
32473
  "kind": "method",
32329
- "name": "focusItemWhenOnEdge",
32330
- "privacy": "private",
32474
+ "name": "focusEndOfInput",
32475
+ "privacy": "public",
32331
32476
  "static": true,
32332
32477
  "parameters": [
32333
32478
  {
32334
- "name": "dropupElement",
32479
+ "name": "inputElement",
32335
32480
  "type": {
32336
32481
  "text": "HTMLElement"
32337
32482
  }
32338
- },
32339
- {
32340
- "name": "isNext",
32341
- "type": {
32342
- "text": "boolean"
32343
- }
32344
32483
  }
32345
32484
  ]
32346
32485
  },
32347
32486
  {
32348
32487
  "kind": "method",
32349
- "name": "focusSiblingItem",
32488
+ "name": "focusFromParentElement",
32350
32489
  "privacy": "public",
32351
32490
  "static": true,
32352
- "return": {
32353
- "type": {
32354
- "text": "void"
32355
- }
32356
- },
32357
32491
  "parameters": [
32358
32492
  {
32359
- "name": "focusedItem",
32360
- "type": {
32361
- "text": "HTMLElement"
32362
- }
32363
- },
32364
- {
32365
- "name": "dropupElement",
32493
+ "name": "parentElement",
32366
32494
  "type": {
32367
32495
  "text": "HTMLElement"
32368
32496
  }
32369
- },
32497
+ }
32498
+ ]
32499
+ }
32500
+ ]
32501
+ }
32502
+ ],
32503
+ "exports": [
32504
+ {
32505
+ "kind": "js",
32506
+ "name": "FocusUtils",
32507
+ "declaration": {
32508
+ "name": "FocusUtils",
32509
+ "module": "src/views/chat/input/textInput/focusUtils.ts"
32510
+ }
32511
+ }
32512
+ ]
32513
+ },
32514
+ {
32515
+ "kind": "javascript-module",
32516
+ "path": "src/views/chat/input/textInput/pasteUtils.ts",
32517
+ "declarations": [
32518
+ {
32519
+ "kind": "class",
32520
+ "description": "",
32521
+ "name": "PasteUtils",
32522
+ "members": [
32523
+ {
32524
+ "kind": "method",
32525
+ "name": "sanitizePastedTextContent",
32526
+ "privacy": "public",
32527
+ "static": true,
32528
+ "parameters": [
32370
32529
  {
32371
- "name": "isNext",
32530
+ "name": "event",
32372
32531
  "type": {
32373
- "text": "boolean"
32532
+ "text": "ClipboardEvent"
32374
32533
  }
32375
- },
32376
- {
32377
- "name": "isEdgeItem",
32378
- "default": "false"
32379
32534
  }
32380
32535
  ]
32381
32536
  }
@@ -32385,154 +32540,225 @@
32385
32540
  "exports": [
32386
32541
  {
32387
32542
  "kind": "js",
32388
- "name": "DropupItemNavigation",
32543
+ "name": "PasteUtils",
32389
32544
  "declaration": {
32390
- "name": "DropupItemNavigation",
32391
- "module": "src/views/chat/input/dropup/dropupItemNavigation.ts"
32545
+ "name": "PasteUtils",
32546
+ "module": "src/views/chat/input/textInput/pasteUtils.ts"
32392
32547
  }
32393
32548
  }
32394
32549
  ]
32395
32550
  },
32396
32551
  {
32397
32552
  "kind": "javascript-module",
32398
- "path": "src/views/chat/input/dropup/dropupMenu.ts",
32553
+ "path": "src/views/chat/input/textInput/textInput.ts",
32399
32554
  "declarations": [
32400
32555
  {
32401
32556
  "kind": "class",
32402
32557
  "description": "",
32403
- "name": "DropupMenu",
32558
+ "name": "TextInputEl",
32404
32559
  "members": [
32405
32560
  {
32406
32561
  "kind": "field",
32407
- "name": "elementRef",
32562
+ "name": "TEXT_INPUT_ID",
32408
32563
  "type": {
32409
- "text": "HTMLElement"
32410
- }
32564
+ "text": "string"
32565
+ },
32566
+ "privacy": "public",
32567
+ "static": true,
32568
+ "default": "'text-input'"
32411
32569
  },
32412
32570
  {
32413
32571
  "kind": "field",
32414
- "name": "_isOpen",
32572
+ "name": "elementRef",
32415
32573
  "type": {
32416
- "text": "boolean"
32417
- },
32418
- "privacy": "private",
32419
- "default": "true"
32574
+ "text": "HTMLElement"
32575
+ }
32420
32576
  },
32421
32577
  {
32422
32578
  "kind": "field",
32423
- "name": "highlightedItem",
32579
+ "name": "inputElementRef",
32424
32580
  "type": {
32425
- "text": "HTMLElement | undefined"
32581
+ "text": "HTMLElement"
32426
32582
  }
32427
32583
  },
32428
32584
  {
32429
32585
  "kind": "field",
32430
- "name": "_styles",
32586
+ "name": "_config",
32431
32587
  "type": {
32432
- "text": "DropupMenuStyles | undefined"
32588
+ "text": "TextInput"
32433
32589
  },
32434
32590
  "privacy": "private",
32435
- "default": "styles"
32591
+ "default": "processedConfig"
32436
32592
  },
32437
32593
  {
32438
32594
  "kind": "field",
32439
- "name": "clickEvent",
32595
+ "name": "submit",
32440
32596
  "type": {
32441
- "text": "(event: MouseEvent) => void | undefined"
32442
- },
32443
- "privacy": "private"
32597
+ "text": "() => void | undefined"
32598
+ }
32444
32599
  },
32445
32600
  {
32446
- "kind": "field",
32447
- "name": "keyDownEvent",
32448
- "type": {
32449
- "text": "(event: KeyboardEvent) => void | undefined"
32450
- },
32451
- "privacy": "private"
32601
+ "kind": "method",
32602
+ "name": "processConfig",
32603
+ "privacy": "private",
32604
+ "static": true,
32605
+ "parameters": [
32606
+ {
32607
+ "name": "serviceIO",
32608
+ "type": {
32609
+ "text": "ServiceIO"
32610
+ }
32611
+ },
32612
+ {
32613
+ "name": "textInput",
32614
+ "optional": true,
32615
+ "type": {
32616
+ "text": "TextInput"
32617
+ }
32618
+ }
32619
+ ]
32452
32620
  },
32453
32621
  {
32454
32622
  "kind": "method",
32455
- "name": "createElement",
32623
+ "name": "preventAutomaticScrollUpOnNewLine",
32456
32624
  "privacy": "private",
32457
32625
  "static": true,
32458
32626
  "parameters": [
32459
32627
  {
32460
- "name": "containerStyle",
32461
- "optional": true,
32628
+ "name": "inputElement",
32462
32629
  "type": {
32463
- "text": "CustomStyle"
32630
+ "text": "HTMLDivElement"
32464
32631
  }
32465
32632
  }
32466
32633
  ]
32467
32634
  },
32468
32635
  {
32469
32636
  "kind": "method",
32470
- "name": "open",
32471
- "privacy": "private"
32637
+ "name": "clear",
32638
+ "privacy": "public",
32639
+ "static": true,
32640
+ "parameters": [
32641
+ {
32642
+ "name": "inputElement",
32643
+ "type": {
32644
+ "text": "HTMLElement"
32645
+ }
32646
+ }
32647
+ ]
32472
32648
  },
32473
32649
  {
32474
32650
  "kind": "method",
32475
- "name": "close"
32651
+ "name": "createInputElement",
32652
+ "privacy": "private",
32653
+ "parameters": [
32654
+ {
32655
+ "name": "textInput",
32656
+ "optional": true,
32657
+ "type": {
32658
+ "text": "TextInput"
32659
+ }
32660
+ }
32661
+ ]
32476
32662
  },
32477
32663
  {
32478
32664
  "kind": "method",
32479
- "name": "toggle"
32665
+ "name": "removeTextIfPlaceholder",
32666
+ "privacy": "public"
32480
32667
  },
32481
32668
  {
32482
32669
  "kind": "method",
32483
- "name": "addItem",
32670
+ "name": "toggleEditability",
32671
+ "privacy": "public",
32672
+ "static": true,
32484
32673
  "parameters": [
32485
32674
  {
32486
- "name": "inputButton",
32675
+ "name": "inputElement",
32487
32676
  "type": {
32488
- "text": "InputButton"
32677
+ "text": "HTMLElement"
32678
+ }
32679
+ },
32680
+ {
32681
+ "name": "isEditable",
32682
+ "type": {
32683
+ "text": "boolean"
32489
32684
  }
32490
32685
  }
32491
32686
  ]
32492
32687
  },
32493
32688
  {
32494
32689
  "kind": "method",
32495
- "name": "addWindowEvents",
32690
+ "name": "addEventListeners",
32496
32691
  "privacy": "private",
32497
32692
  "parameters": [
32498
32693
  {
32499
- "name": "containerElement",
32694
+ "name": "inputElement",
32500
32695
  "type": {
32501
32696
  "text": "HTMLElement"
32502
32697
  }
32698
+ },
32699
+ {
32700
+ "name": "textInput",
32701
+ "optional": true,
32702
+ "type": {
32703
+ "text": "TextInput"
32704
+ }
32503
32705
  }
32504
32706
  ]
32505
32707
  },
32506
32708
  {
32507
32709
  "kind": "method",
32508
- "name": "windowClick",
32710
+ "name": "onFocus",
32509
32711
  "privacy": "private",
32510
32712
  "parameters": [
32511
32713
  {
32512
- "name": "containerElement",
32714
+ "name": "focusStyle",
32715
+ "optional": true,
32513
32716
  "type": {
32514
- "text": "HTMLElement"
32717
+ "text": "CustomStyle"
32718
+ }
32719
+ }
32720
+ ]
32721
+ },
32722
+ {
32723
+ "kind": "method",
32724
+ "name": "onBlur",
32725
+ "privacy": "private",
32726
+ "parameters": [
32727
+ {
32728
+ "name": "focusStyle",
32729
+ "type": {
32730
+ "text": "CustomStyle"
32515
32731
  }
32516
32732
  },
32517
32733
  {
32518
- "name": "event",
32734
+ "name": "containerStyle",
32735
+ "optional": true,
32519
32736
  "type": {
32520
- "text": "MouseEvent"
32737
+ "text": "CustomStyle"
32521
32738
  }
32522
32739
  }
32523
32740
  ]
32524
32741
  },
32525
32742
  {
32526
32743
  "kind": "method",
32527
- "name": "windowKeyDown",
32744
+ "name": "createContainerElement",
32528
32745
  "privacy": "private",
32746
+ "static": true,
32529
32747
  "parameters": [
32530
32748
  {
32531
- "name": "containerElement",
32749
+ "name": "containerStyle",
32750
+ "optional": true,
32532
32751
  "type": {
32533
- "text": "HTMLElement"
32752
+ "text": "CustomStyle"
32534
32753
  }
32535
- },
32754
+ }
32755
+ ]
32756
+ },
32757
+ {
32758
+ "kind": "method",
32759
+ "name": "onKeydown",
32760
+ "privacy": "private",
32761
+ "parameters": [
32536
32762
  {
32537
32763
  "name": "event",
32538
32764
  "type": {
@@ -32547,111 +32773,114 @@
32547
32773
  "exports": [
32548
32774
  {
32549
32775
  "kind": "js",
32550
- "name": "DropupMenu",
32776
+ "name": "TextInputEl",
32551
32777
  "declaration": {
32552
- "name": "DropupMenu",
32553
- "module": "src/views/chat/input/dropup/dropupMenu.ts"
32778
+ "name": "TextInputEl",
32779
+ "module": "src/views/chat/input/textInput/textInput.ts"
32554
32780
  }
32555
32781
  }
32556
32782
  ]
32557
32783
  },
32558
32784
  {
32559
32785
  "kind": "javascript-module",
32560
- "path": "src/views/chat/input/buttons/buttonCSS.ts",
32786
+ "path": "src/views/chat/input/textInput/textInputEvents.ts",
32561
32787
  "declarations": [
32562
32788
  {
32563
32789
  "kind": "class",
32564
32790
  "description": "",
32565
- "name": "ButtonCSS",
32791
+ "name": "TextInputEvents",
32566
32792
  "members": [
32793
+ {
32794
+ "kind": "field",
32795
+ "name": "PERMITTED_KEYS",
32796
+ "privacy": "private",
32797
+ "static": true,
32798
+ "default": "new Set<string>([\n KEYBOARD_KEY.BACKSPACE, KEYBOARD_KEY.DELETE, KEYBOARD_KEY.ARROW_RIGHT, KEYBOARD_KEY.ARROW_LEFT,\n KEYBOARD_KEY.ARROW_DOWN, KEYBOARD_KEY.ARROW_UP, KEYBOARD_KEY.META, KEYBOARD_KEY.CONTROL, KEYBOARD_KEY.ENTER\n ])"
32799
+ },
32567
32800
  {
32568
32801
  "kind": "method",
32569
- "name": "unsetAllCSS",
32802
+ "name": "add",
32570
32803
  "privacy": "public",
32571
32804
  "static": true,
32572
32805
  "parameters": [
32573
32806
  {
32574
- "name": "button",
32807
+ "name": "inputElement",
32575
32808
  "type": {
32576
32809
  "text": "HTMLElement"
32577
32810
  }
32578
32811
  },
32579
32812
  {
32580
- "name": "styles",
32813
+ "name": "characterLimit",
32814
+ "optional": true,
32581
32815
  "type": {
32582
- "text": "ButtonStyles"
32816
+ "text": "number"
32817
+ }
32818
+ },
32819
+ {
32820
+ "name": "validationHandler",
32821
+ "optional": true,
32822
+ "type": {
32823
+ "text": "ValidationHandler"
32583
32824
  }
32584
32825
  }
32585
32826
  ]
32586
32827
  },
32587
32828
  {
32588
32829
  "kind": "method",
32589
- "name": "unsetActionCSS",
32590
- "privacy": "public",
32830
+ "name": "onKeyDown",
32831
+ "privacy": "private",
32591
32832
  "static": true,
32592
32833
  "parameters": [
32593
32834
  {
32594
- "name": "button",
32835
+ "name": "characterLimit",
32595
32836
  "type": {
32596
- "text": "HTMLElement"
32837
+ "text": "number"
32597
32838
  }
32598
32839
  },
32599
32840
  {
32600
- "name": "styles",
32841
+ "name": "event",
32601
32842
  "type": {
32602
- "text": "ButtonStyles"
32843
+ "text": "KeyboardEvent"
32603
32844
  }
32604
32845
  }
32605
32846
  ]
32606
32847
  },
32607
32848
  {
32608
32849
  "kind": "method",
32609
- "name": "setElementsCSS",
32610
- "privacy": "public",
32850
+ "name": "isKeyCombinationPermitted",
32851
+ "privacy": "private",
32611
32852
  "static": true,
32612
32853
  "parameters": [
32613
32854
  {
32614
- "name": "button",
32615
- "type": {
32616
- "text": "HTMLElement"
32617
- }
32618
- },
32619
- {
32620
- "name": "styles",
32621
- "type": {
32622
- "text": "ButtonStyles"
32623
- }
32624
- },
32625
- {
32626
- "name": "style",
32855
+ "name": "event",
32627
32856
  "type": {
32628
- "text": "keyof StatefulStyles"
32857
+ "text": "KeyboardEvent"
32629
32858
  }
32630
32859
  }
32631
32860
  ]
32632
32861
  },
32633
32862
  {
32634
32863
  "kind": "method",
32635
- "name": "setElementCssUpToState",
32636
- "privacy": "public",
32864
+ "name": "onInput",
32865
+ "privacy": "private",
32637
32866
  "static": true,
32638
32867
  "parameters": [
32639
32868
  {
32640
- "name": "button",
32869
+ "name": "characterLimit",
32641
32870
  "type": {
32642
- "text": "HTMLElement"
32871
+ "text": "number | undefined"
32643
32872
  }
32644
32873
  },
32645
32874
  {
32646
- "name": "styles",
32875
+ "name": "validate",
32647
32876
  "type": {
32648
- "text": "ButtonStyles"
32877
+ "text": "ValidationHandler | undefined"
32649
32878
  }
32650
32879
  },
32651
32880
  {
32652
- "name": "style",
32881
+ "name": "event",
32653
32882
  "type": {
32654
- "text": "keyof StatefulStyles"
32883
+ "text": "Event"
32655
32884
  }
32656
32885
  }
32657
32886
  ]
@@ -32662,154 +32891,176 @@
32662
32891
  "exports": [
32663
32892
  {
32664
32893
  "kind": "js",
32665
- "name": "ButtonCSS",
32894
+ "name": "TextInputEvents",
32666
32895
  "declaration": {
32667
- "name": "ButtonCSS",
32668
- "module": "src/views/chat/input/buttons/buttonCSS.ts"
32896
+ "name": "TextInputEvents",
32897
+ "module": "src/views/chat/input/textInput/textInputEvents.ts"
32669
32898
  }
32670
32899
  }
32671
32900
  ]
32672
32901
  },
32673
32902
  {
32674
32903
  "kind": "javascript-module",
32675
- "path": "src/views/chat/input/buttons/customButtonInnerElements.ts",
32904
+ "path": "src/views/chat/input/validation/validationHandler.ts",
32676
32905
  "declarations": [
32677
32906
  {
32678
32907
  "kind": "class",
32679
32908
  "description": "",
32680
- "name": "CustomButtonInnerElements",
32909
+ "name": "ValidationHandler",
32681
32910
  "members": [
32682
32911
  {
32683
32912
  "kind": "method",
32684
- "name": "createTextElement",
32913
+ "name": "validate",
32685
32914
  "privacy": "private",
32686
32915
  "static": true,
32687
32916
  "parameters": [
32688
32917
  {
32689
- "name": "text",
32918
+ "name": "validation",
32690
32919
  "type": {
32691
- "text": "string"
32920
+ "text": "ValidateFunc"
32692
32921
  }
32693
- }
32694
- ]
32695
- },
32696
- {
32697
- "kind": "method",
32698
- "name": "createElement",
32699
- "privacy": "private",
32700
- "static": true,
32701
- "parameters": [
32922
+ },
32702
32923
  {
32703
- "name": "string",
32924
+ "name": "submitButton",
32704
32925
  "type": {
32705
- "text": "string"
32926
+ "text": "SubmitButton"
32706
32927
  }
32707
32928
  },
32708
32929
  {
32709
- "name": "isText",
32930
+ "name": "text",
32931
+ "optional": true,
32710
32932
  "type": {
32711
- "text": "boolean"
32933
+ "text": "string"
32712
32934
  }
32713
- }
32714
- ]
32715
- },
32716
- {
32717
- "kind": "method",
32718
- "name": "createCustomElement",
32719
- "privacy": "public",
32720
- "static": true,
32721
- "parameters": [
32935
+ },
32722
32936
  {
32723
- "name": "state",
32937
+ "name": "files",
32938
+ "optional": true,
32724
32939
  "type": {
32725
- "text": "keyof T"
32940
+ "text": "File[]"
32726
32941
  }
32727
32942
  },
32728
32943
  {
32729
- "name": "customStyles",
32944
+ "name": "isProgrammatic",
32730
32945
  "optional": true,
32731
32946
  "type": {
32732
- "text": "ButtonStateStyles<T>"
32947
+ "text": "boolean"
32733
32948
  }
32734
32949
  }
32735
32950
  ]
32736
32951
  },
32737
32952
  {
32738
32953
  "kind": "method",
32739
- "name": "processElement",
32954
+ "name": "useValidationFunc",
32740
32955
  "privacy": "private",
32741
32956
  "static": true,
32742
32957
  "parameters": [
32743
32958
  {
32744
- "name": "parentEl",
32959
+ "name": "validation",
32745
32960
  "type": {
32746
- "text": "HTMLElement"
32961
+ "text": "ValidateFunc"
32747
32962
  }
32748
32963
  },
32749
32964
  {
32750
- "name": "element",
32751
- "optional": true,
32965
+ "name": "textInput",
32752
32966
  "type": {
32753
- "text": "Element"
32967
+ "text": "TextInputEl"
32968
+ }
32969
+ },
32970
+ {
32971
+ "name": "fileAttachments",
32972
+ "type": {
32973
+ "text": "FileAttachments"
32974
+ }
32975
+ },
32976
+ {
32977
+ "name": "submitButton",
32978
+ "type": {
32979
+ "text": "SubmitButton"
32754
32980
  }
32755
32981
  }
32756
32982
  ]
32757
32983
  },
32758
32984
  {
32759
32985
  "kind": "method",
32760
- "name": "createSpecificStateElement",
32761
- "privacy": "public",
32986
+ "name": "useValidationFuncProgrammatic",
32987
+ "privacy": "private",
32762
32988
  "static": true,
32763
32989
  "parameters": [
32764
32990
  {
32765
- "name": "parentEl",
32991
+ "name": "validation",
32766
32992
  "type": {
32767
- "text": "HTMLElement"
32993
+ "text": "ValidateFunc"
32768
32994
  }
32769
32995
  },
32770
32996
  {
32771
- "name": "state",
32997
+ "name": "programmatic",
32772
32998
  "type": {
32773
- "text": "keyof T"
32999
+ "text": "UserContentI"
32774
33000
  }
32775
33001
  },
32776
33002
  {
32777
- "name": "customStyles",
32778
- "optional": true,
33003
+ "name": "submitButton",
32779
33004
  "type": {
32780
- "text": "ButtonStateStyles<T>"
33005
+ "text": "SubmitButton"
32781
33006
  }
32782
33007
  }
32783
33008
  ]
32784
33009
  },
32785
33010
  {
32786
33011
  "kind": "method",
32787
- "name": "create",
32788
- "privacy": "public",
33012
+ "name": "validateWebsocket",
33013
+ "privacy": "private",
32789
33014
  "static": true,
32790
- "return": {
32791
- "type": {
32792
- "text": "ButtonInnerElements<T>"
33015
+ "parameters": [
33016
+ {
33017
+ "name": "serviceIO",
33018
+ "type": {
33019
+ "text": "ServiceIO"
33020
+ }
33021
+ },
33022
+ {
33023
+ "name": "submitButton",
33024
+ "type": {
33025
+ "text": "SubmitButton"
33026
+ }
32793
33027
  }
32794
- },
33028
+ ]
33029
+ },
33030
+ {
33031
+ "kind": "method",
33032
+ "name": "attach",
33033
+ "privacy": "public",
33034
+ "static": true,
32795
33035
  "parameters": [
32796
33036
  {
32797
- "name": "parentEl",
33037
+ "name": "deepChat",
32798
33038
  "type": {
32799
- "text": "HTMLElement"
33039
+ "text": "DeepChat"
32800
33040
  }
32801
33041
  },
32802
33042
  {
32803
- "name": "states",
33043
+ "name": "serviceIO",
32804
33044
  "type": {
32805
- "text": "(keyof T)[]"
33045
+ "text": "ServiceIO"
32806
33046
  }
32807
33047
  },
32808
33048
  {
32809
- "name": "styles",
32810
- "optional": true,
33049
+ "name": "textInput",
32811
33050
  "type": {
32812
- "text": "ButtonStateStyles<T>"
33051
+ "text": "TextInputEl"
33052
+ }
33053
+ },
33054
+ {
33055
+ "name": "fileAttachments",
33056
+ "type": {
33057
+ "text": "FileAttachments"
33058
+ }
33059
+ },
33060
+ {
33061
+ "name": "submitButton",
33062
+ "type": {
33063
+ "text": "SubmitButton"
32813
33064
  }
32814
33065
  }
32815
33066
  ]
@@ -32820,199 +33071,121 @@
32820
33071
  "exports": [
32821
33072
  {
32822
33073
  "kind": "js",
32823
- "name": "CustomButtonInnerElements",
33074
+ "name": "ValidationHandler",
32824
33075
  "declaration": {
32825
- "name": "CustomButtonInnerElements",
32826
- "module": "src/views/chat/input/buttons/customButtonInnerElements.ts"
33076
+ "name": "ValidationHandler",
33077
+ "module": "src/views/chat/input/validation/validationHandler.ts"
32827
33078
  }
32828
33079
  }
32829
33080
  ]
32830
33081
  },
32831
33082
  {
32832
33083
  "kind": "javascript-module",
32833
- "path": "src/views/chat/input/buttons/inputButton.ts",
33084
+ "path": "src/views/chat/input/dropup/dropup.ts",
32834
33085
  "declarations": [
32835
33086
  {
32836
33087
  "kind": "class",
32837
33088
  "description": "",
32838
- "name": "InputButton",
33089
+ "name": "Dropup",
32839
33090
  "members": [
32840
33091
  {
32841
33092
  "kind": "field",
32842
- "name": "elementRef",
32843
- "type": {
32844
- "text": "HTMLElement"
32845
- },
32846
- "default": "buttonElement"
32847
- },
32848
- {
32849
- "kind": "field",
32850
- "name": "_mouseState",
32851
- "type": {
32852
- "text": "MouseState"
32853
- },
32854
- "privacy": "protected",
32855
- "default": "{state: 'default'}"
32856
- },
32857
- {
32858
- "kind": "field",
32859
- "name": "_customStyles",
33093
+ "name": "_menu",
32860
33094
  "type": {
32861
- "text": "T | undefined"
33095
+ "text": "DropupMenu"
32862
33096
  },
32863
- "privacy": "protected",
32864
- "default": "customStyles"
33097
+ "privacy": "private",
33098
+ "default": "new DropupMenu(containerElement, styles?.menu)"
32865
33099
  },
32866
33100
  {
32867
33101
  "kind": "field",
32868
- "name": "position",
33102
+ "name": "buttonContainer",
32869
33103
  "type": {
32870
- "text": "ButtonPositionT | undefined"
32871
- },
32872
- "default": "position"
33104
+ "text": "HTMLElement"
33105
+ }
32873
33106
  },
32874
33107
  {
32875
- "kind": "field",
32876
- "name": "dropupText",
32877
- "type": {
32878
- "text": "string | undefined"
32879
- },
32880
- "default": "dropupText"
33108
+ "kind": "method",
33109
+ "name": "createButtonElement",
33110
+ "privacy": "private",
33111
+ "static": true
32881
33112
  },
32882
33113
  {
32883
33114
  "kind": "method",
32884
- "name": "buttonMouseLeave",
33115
+ "name": "createInnerElements",
32885
33116
  "privacy": "private",
32886
33117
  "parameters": [
32887
33118
  {
32888
33119
  "name": "customStyles",
32889
33120
  "optional": true,
32890
33121
  "type": {
32891
- "text": "ButtonStyles"
33122
+ "text": "Styles"
32892
33123
  }
32893
33124
  }
32894
33125
  ]
32895
33126
  },
32896
33127
  {
32897
33128
  "kind": "method",
32898
- "name": "buttonMouseEnter",
33129
+ "name": "createInnerElement",
32899
33130
  "privacy": "private",
32900
33131
  "parameters": [
32901
33132
  {
32902
- "name": "customStyles",
32903
- "optional": true,
33133
+ "name": "baseButton",
32904
33134
  "type": {
32905
- "text": "ButtonStyles"
33135
+ "text": "SVGGraphicsElement"
32906
33136
  }
32907
- }
32908
- ]
32909
- },
32910
- {
32911
- "kind": "method",
32912
- "name": "buttonMouseUp",
32913
- "privacy": "private",
32914
- "parameters": [
33137
+ },
32915
33138
  {
32916
- "name": "customStyles",
32917
- "optional": true,
33139
+ "name": "state",
32918
33140
  "type": {
32919
- "text": "ButtonStyles"
33141
+ "text": "'styles'"
32920
33142
  }
32921
- }
32922
- ]
32923
- },
32924
- {
32925
- "kind": "method",
32926
- "name": "buttonMouseDown",
32927
- "privacy": "private",
32928
- "parameters": [
33143
+ },
32929
33144
  {
32930
33145
  "name": "customStyles",
32931
33146
  "optional": true,
32932
33147
  "type": {
32933
- "text": "ButtonStyles"
33148
+ "text": "Styles"
32934
33149
  }
32935
33150
  }
32936
33151
  ]
32937
33152
  },
32938
33153
  {
32939
33154
  "kind": "method",
32940
- "name": "setEvents",
33155
+ "name": "createSVGIconElement",
32941
33156
  "privacy": "private",
32942
- "parameters": [
32943
- {
32944
- "name": "customStyles",
32945
- "optional": true,
32946
- "type": {
32947
- "text": "ButtonStyles"
32948
- }
32949
- }
32950
- ]
33157
+ "static": true
32951
33158
  },
32952
33159
  {
32953
33160
  "kind": "method",
32954
- "name": "unsetCustomStateStyles",
32955
- "privacy": "public",
32956
- "parameters": [
32957
- {
32958
- "name": "unsetTypes",
32959
- "type": {
32960
- "text": "(keyof T)[]"
32961
- }
32962
- }
32963
- ]
33161
+ "name": "addClickEvent",
33162
+ "privacy": "private"
32964
33163
  },
32965
33164
  {
32966
33165
  "kind": "method",
32967
- "name": "reapplyStateStyle",
32968
- "privacy": "public",
33166
+ "name": "createButtonContainer",
33167
+ "privacy": "private",
33168
+ "static": true
33169
+ },
33170
+ {
33171
+ "kind": "method",
33172
+ "name": "addItem",
32969
33173
  "parameters": [
32970
33174
  {
32971
- "name": "setType",
32972
- "type": {
32973
- "text": "keyof T"
32974
- }
32975
- },
32976
- {
32977
- "name": "unsetTypes",
32978
- "optional": true,
33175
+ "name": "buttonProps",
32979
33176
  "type": {
32980
- "text": "(keyof T)[]"
33177
+ "text": "InputButton"
32981
33178
  }
32982
33179
  }
32983
33180
  ]
32984
- }
32985
- ]
32986
- }
32987
- ],
32988
- "exports": [
32989
- {
32990
- "kind": "js",
32991
- "name": "InputButton",
32992
- "declaration": {
32993
- "name": "InputButton",
32994
- "module": "src/views/chat/input/buttons/inputButton.ts"
32995
- }
32996
- }
32997
- ]
32998
- },
32999
- {
33000
- "kind": "javascript-module",
33001
- "path": "src/views/chat/input/textInput/focusUtils.ts",
33002
- "declarations": [
33003
- {
33004
- "kind": "class",
33005
- "description": "",
33006
- "name": "FocusUtils",
33007
- "members": [
33181
+ },
33008
33182
  {
33009
33183
  "kind": "method",
33010
- "name": "focusEndOfInput",
33011
- "privacy": "public",
33012
- "static": true,
33184
+ "name": "addContainerEvents",
33185
+ "privacy": "private",
33013
33186
  "parameters": [
33014
33187
  {
33015
- "name": "inputElement",
33188
+ "name": "containerElement",
33016
33189
  "type": {
33017
33190
  "text": "HTMLElement"
33018
33191
  }
@@ -33021,583 +33194,463 @@
33021
33194
  },
33022
33195
  {
33023
33196
  "kind": "method",
33024
- "name": "focusFromParentElement",
33025
- "privacy": "public",
33197
+ "name": "getPosition",
33026
33198
  "static": true,
33027
33199
  "parameters": [
33028
33200
  {
33029
- "name": "parentElement",
33201
+ "name": "positions",
33030
33202
  "type": {
33031
- "text": "HTMLElement"
33203
+ "text": "Positions"
33032
33204
  }
33033
- }
33034
- ]
33035
- }
33036
- ]
33037
- }
33038
- ],
33039
- "exports": [
33040
- {
33041
- "kind": "js",
33042
- "name": "FocusUtils",
33043
- "declaration": {
33044
- "name": "FocusUtils",
33045
- "module": "src/views/chat/input/textInput/focusUtils.ts"
33046
- }
33047
- }
33048
- ]
33049
- },
33050
- {
33051
- "kind": "javascript-module",
33052
- "path": "src/views/chat/input/textInput/pasteUtils.ts",
33053
- "declarations": [
33054
- {
33055
- "kind": "class",
33056
- "description": "",
33057
- "name": "PasteUtils",
33058
- "members": [
33059
- {
33060
- "kind": "method",
33061
- "name": "sanitizePastedTextContent",
33062
- "privacy": "public",
33063
- "static": true,
33064
- "parameters": [
33205
+ },
33065
33206
  {
33066
- "name": "event",
33207
+ "name": "dropupStyles",
33208
+ "optional": true,
33067
33209
  "type": {
33068
- "text": "ClipboardEvent"
33210
+ "text": "DropupStyles"
33069
33211
  }
33070
33212
  }
33071
33213
  ]
33072
- }
33073
- ]
33074
- }
33075
- ],
33076
- "exports": [
33077
- {
33078
- "kind": "js",
33079
- "name": "PasteUtils",
33080
- "declaration": {
33081
- "name": "PasteUtils",
33082
- "module": "src/views/chat/input/textInput/pasteUtils.ts"
33083
- }
33084
- }
33085
- ]
33086
- },
33087
- {
33088
- "kind": "javascript-module",
33089
- "path": "src/views/chat/input/textInput/textInput.ts",
33090
- "declarations": [
33091
- {
33092
- "kind": "class",
33093
- "description": "",
33094
- "name": "TextInputEl",
33095
- "members": [
33214
+ },
33096
33215
  {
33097
33216
  "kind": "field",
33098
- "name": "TEXT_INPUT_ID",
33217
+ "name": "id",
33099
33218
  "type": {
33100
33219
  "text": "string"
33101
33220
  },
33102
- "privacy": "public",
33103
- "static": true,
33104
- "default": "'text-input'"
33221
+ "default": "'dropup-icon'"
33105
33222
  },
33106
33223
  {
33107
33224
  "kind": "field",
33108
33225
  "name": "elementRef",
33109
33226
  "type": {
33110
33227
  "text": "HTMLElement"
33228
+ },
33229
+ "default": "buttonElement",
33230
+ "inheritedFrom": {
33231
+ "name": "InputButton",
33232
+ "module": "src/views/chat/input/buttons/inputButton.ts"
33111
33233
  }
33112
33234
  },
33113
33235
  {
33114
33236
  "kind": "field",
33115
- "name": "inputElementRef",
33237
+ "name": "_mouseState",
33116
33238
  "type": {
33117
- "text": "HTMLElement"
33239
+ "text": "MouseState"
33240
+ },
33241
+ "privacy": "protected",
33242
+ "default": "{state: 'default'}",
33243
+ "inheritedFrom": {
33244
+ "name": "InputButton",
33245
+ "module": "src/views/chat/input/buttons/inputButton.ts"
33118
33246
  }
33119
33247
  },
33120
33248
  {
33121
33249
  "kind": "field",
33122
- "name": "_config",
33250
+ "name": "_customStyles",
33123
33251
  "type": {
33124
- "text": "TextInput"
33252
+ "text": "T | undefined"
33125
33253
  },
33126
- "privacy": "private",
33127
- "default": "processedConfig"
33254
+ "privacy": "protected",
33255
+ "default": "customStyles",
33256
+ "inheritedFrom": {
33257
+ "name": "InputButton",
33258
+ "module": "src/views/chat/input/buttons/inputButton.ts"
33259
+ }
33128
33260
  },
33129
33261
  {
33130
33262
  "kind": "field",
33131
- "name": "submit",
33263
+ "name": "position",
33132
33264
  "type": {
33133
- "text": "() => void | undefined"
33265
+ "text": "ButtonPositionT | undefined"
33266
+ },
33267
+ "default": "position",
33268
+ "inheritedFrom": {
33269
+ "name": "InputButton",
33270
+ "module": "src/views/chat/input/buttons/inputButton.ts"
33134
33271
  }
33135
33272
  },
33136
33273
  {
33137
- "kind": "method",
33138
- "name": "processConfig",
33139
- "privacy": "private",
33140
- "static": true,
33141
- "parameters": [
33142
- {
33143
- "name": "serviceIO",
33144
- "type": {
33145
- "text": "ServiceIO"
33146
- }
33147
- },
33148
- {
33149
- "name": "textInput",
33150
- "optional": true,
33151
- "type": {
33152
- "text": "TextInput"
33153
- }
33154
- }
33155
- ]
33274
+ "kind": "field",
33275
+ "name": "dropupText",
33276
+ "type": {
33277
+ "text": "string | undefined"
33278
+ },
33279
+ "default": "dropupText",
33280
+ "inheritedFrom": {
33281
+ "name": "InputButton",
33282
+ "module": "src/views/chat/input/buttons/inputButton.ts"
33283
+ }
33156
33284
  },
33157
33285
  {
33158
33286
  "kind": "method",
33159
- "name": "preventAutomaticScrollUpOnNewLine",
33287
+ "name": "buttonMouseLeave",
33160
33288
  "privacy": "private",
33161
- "static": true,
33162
- "parameters": [
33163
- {
33164
- "name": "inputElement",
33165
- "type": {
33166
- "text": "HTMLDivElement"
33167
- }
33168
- }
33169
- ]
33170
- },
33171
- {
33172
- "kind": "method",
33173
- "name": "clear",
33174
- "privacy": "public",
33175
- "static": true,
33176
33289
  "parameters": [
33177
33290
  {
33178
- "name": "inputElement",
33291
+ "name": "customStyles",
33292
+ "optional": true,
33179
33293
  "type": {
33180
- "text": "HTMLElement"
33294
+ "text": "ButtonStyles"
33181
33295
  }
33182
33296
  }
33183
- ]
33297
+ ],
33298
+ "inheritedFrom": {
33299
+ "name": "InputButton",
33300
+ "module": "src/views/chat/input/buttons/inputButton.ts"
33301
+ }
33184
33302
  },
33185
33303
  {
33186
33304
  "kind": "method",
33187
- "name": "createInputElement",
33305
+ "name": "buttonMouseEnter",
33188
33306
  "privacy": "private",
33189
33307
  "parameters": [
33190
33308
  {
33191
- "name": "textInput",
33309
+ "name": "customStyles",
33192
33310
  "optional": true,
33193
33311
  "type": {
33194
- "text": "TextInput"
33312
+ "text": "ButtonStyles"
33195
33313
  }
33196
33314
  }
33197
- ]
33198
- },
33199
- {
33200
- "kind": "method",
33201
- "name": "removeTextIfPlaceholder",
33202
- "privacy": "public"
33315
+ ],
33316
+ "inheritedFrom": {
33317
+ "name": "InputButton",
33318
+ "module": "src/views/chat/input/buttons/inputButton.ts"
33319
+ }
33203
33320
  },
33204
33321
  {
33205
33322
  "kind": "method",
33206
- "name": "toggleEditability",
33207
- "privacy": "public",
33208
- "static": true,
33323
+ "name": "buttonMouseUp",
33324
+ "privacy": "private",
33209
33325
  "parameters": [
33210
33326
  {
33211
- "name": "inputElement",
33212
- "type": {
33213
- "text": "HTMLElement"
33214
- }
33215
- },
33216
- {
33217
- "name": "isEditable",
33327
+ "name": "customStyles",
33328
+ "optional": true,
33218
33329
  "type": {
33219
- "text": "boolean"
33330
+ "text": "ButtonStyles"
33220
33331
  }
33221
33332
  }
33222
- ]
33333
+ ],
33334
+ "inheritedFrom": {
33335
+ "name": "InputButton",
33336
+ "module": "src/views/chat/input/buttons/inputButton.ts"
33337
+ }
33223
33338
  },
33224
33339
  {
33225
33340
  "kind": "method",
33226
- "name": "addEventListeners",
33341
+ "name": "buttonMouseDown",
33227
33342
  "privacy": "private",
33228
33343
  "parameters": [
33229
33344
  {
33230
- "name": "inputElement",
33231
- "type": {
33232
- "text": "HTMLElement"
33233
- }
33234
- },
33235
- {
33236
- "name": "textInput",
33345
+ "name": "customStyles",
33237
33346
  "optional": true,
33238
33347
  "type": {
33239
- "text": "TextInput"
33348
+ "text": "ButtonStyles"
33240
33349
  }
33241
33350
  }
33242
- ]
33351
+ ],
33352
+ "inheritedFrom": {
33353
+ "name": "InputButton",
33354
+ "module": "src/views/chat/input/buttons/inputButton.ts"
33355
+ }
33243
33356
  },
33244
33357
  {
33245
33358
  "kind": "method",
33246
- "name": "onFocus",
33359
+ "name": "setEvents",
33247
33360
  "privacy": "private",
33248
33361
  "parameters": [
33249
33362
  {
33250
- "name": "focusStyle",
33363
+ "name": "customStyles",
33251
33364
  "optional": true,
33252
33365
  "type": {
33253
- "text": "CustomStyle"
33366
+ "text": "ButtonStyles"
33254
33367
  }
33255
33368
  }
33256
- ]
33369
+ ],
33370
+ "inheritedFrom": {
33371
+ "name": "InputButton",
33372
+ "module": "src/views/chat/input/buttons/inputButton.ts"
33373
+ }
33257
33374
  },
33258
33375
  {
33259
33376
  "kind": "method",
33260
- "name": "onBlur",
33261
- "privacy": "private",
33377
+ "name": "unsetCustomStateStyles",
33378
+ "privacy": "public",
33262
33379
  "parameters": [
33263
33380
  {
33264
- "name": "focusStyle",
33265
- "type": {
33266
- "text": "CustomStyle"
33267
- }
33268
- },
33269
- {
33270
- "name": "containerStyle",
33271
- "optional": true,
33381
+ "name": "unsetTypes",
33272
33382
  "type": {
33273
- "text": "CustomStyle"
33383
+ "text": "(keyof T)[]"
33274
33384
  }
33275
33385
  }
33276
- ]
33386
+ ],
33387
+ "inheritedFrom": {
33388
+ "name": "InputButton",
33389
+ "module": "src/views/chat/input/buttons/inputButton.ts"
33390
+ }
33277
33391
  },
33278
33392
  {
33279
33393
  "kind": "method",
33280
- "name": "createContainerElement",
33281
- "privacy": "private",
33282
- "static": true,
33394
+ "name": "reapplyStateStyle",
33395
+ "privacy": "public",
33283
33396
  "parameters": [
33284
33397
  {
33285
- "name": "containerStyle",
33286
- "optional": true,
33398
+ "name": "setType",
33287
33399
  "type": {
33288
- "text": "CustomStyle"
33400
+ "text": "keyof T"
33289
33401
  }
33290
- }
33291
- ]
33292
- },
33293
- {
33294
- "kind": "method",
33295
- "name": "onKeydown",
33296
- "privacy": "private",
33297
- "parameters": [
33402
+ },
33298
33403
  {
33299
- "name": "event",
33404
+ "name": "unsetTypes",
33405
+ "optional": true,
33300
33406
  "type": {
33301
- "text": "KeyboardEvent"
33407
+ "text": "(keyof T)[]"
33302
33408
  }
33303
33409
  }
33304
- ]
33410
+ ],
33411
+ "inheritedFrom": {
33412
+ "name": "InputButton",
33413
+ "module": "src/views/chat/input/buttons/inputButton.ts"
33414
+ }
33305
33415
  }
33306
- ]
33416
+ ],
33417
+ "superclass": {
33418
+ "name": "InputButton",
33419
+ "module": "/src/views/chat/input/buttons/inputButton"
33420
+ }
33307
33421
  }
33308
33422
  ],
33309
33423
  "exports": [
33310
33424
  {
33311
33425
  "kind": "js",
33312
- "name": "TextInputEl",
33426
+ "name": "Dropup",
33313
33427
  "declaration": {
33314
- "name": "TextInputEl",
33315
- "module": "src/views/chat/input/textInput/textInput.ts"
33428
+ "name": "Dropup",
33429
+ "module": "src/views/chat/input/dropup/dropup.ts"
33316
33430
  }
33317
33431
  }
33318
33432
  ]
33319
33433
  },
33320
33434
  {
33321
33435
  "kind": "javascript-module",
33322
- "path": "src/views/chat/input/textInput/textInputEvents.ts",
33436
+ "path": "src/views/chat/input/dropup/dropupItem.ts",
33323
33437
  "declarations": [
33324
33438
  {
33325
33439
  "kind": "class",
33326
33440
  "description": "",
33327
- "name": "TextInputEvents",
33441
+ "name": "DropupItem",
33328
33442
  "members": [
33329
- {
33330
- "kind": "field",
33331
- "name": "PERMITTED_KEYS",
33332
- "privacy": "private",
33333
- "static": true,
33334
- "default": "new Set<string>([\n KEYBOARD_KEY.BACKSPACE, KEYBOARD_KEY.DELETE, KEYBOARD_KEY.ARROW_RIGHT, KEYBOARD_KEY.ARROW_LEFT,\n KEYBOARD_KEY.ARROW_DOWN, KEYBOARD_KEY.ARROW_UP, KEYBOARD_KEY.META, KEYBOARD_KEY.CONTROL, KEYBOARD_KEY.ENTER\n ])"
33335
- },
33336
33443
  {
33337
33444
  "kind": "method",
33338
- "name": "add",
33339
- "privacy": "public",
33445
+ "name": "addItemEvents",
33446
+ "privacy": "private",
33340
33447
  "static": true,
33341
33448
  "parameters": [
33342
33449
  {
33343
- "name": "inputElement",
33450
+ "name": "menu",
33344
33451
  "type": {
33345
- "text": "HTMLElement"
33452
+ "text": "DropupMenu"
33346
33453
  }
33347
33454
  },
33348
33455
  {
33349
- "name": "characterLimit",
33350
- "optional": true,
33456
+ "name": "item",
33351
33457
  "type": {
33352
- "text": "number"
33458
+ "text": "HTMLElement"
33353
33459
  }
33354
33460
  },
33355
33461
  {
33356
- "name": "validationHandler",
33357
- "optional": true,
33358
- "type": {
33359
- "text": "ValidationHandler"
33360
- }
33361
- }
33362
- ]
33363
- },
33364
- {
33365
- "kind": "method",
33366
- "name": "onKeyDown",
33367
- "privacy": "private",
33368
- "static": true,
33369
- "parameters": [
33370
- {
33371
- "name": "characterLimit",
33462
+ "name": "inputButton",
33372
33463
  "type": {
33373
- "text": "number"
33464
+ "text": "HTMLElement"
33374
33465
  }
33375
33466
  },
33376
33467
  {
33377
- "name": "event",
33378
- "type": {
33379
- "text": "KeyboardEvent"
33380
- }
33381
- }
33382
- ]
33383
- },
33384
- {
33385
- "kind": "method",
33386
- "name": "isKeyCombinationPermitted",
33387
- "privacy": "private",
33388
- "static": true,
33389
- "parameters": [
33390
- {
33391
- "name": "event",
33468
+ "name": "styles",
33392
33469
  "type": {
33393
- "text": "KeyboardEvent"
33470
+ "text": "StatefulStyles"
33394
33471
  }
33395
33472
  }
33396
33473
  ]
33397
33474
  },
33398
33475
  {
33399
33476
  "kind": "method",
33400
- "name": "onInput",
33477
+ "name": "createItemText",
33401
33478
  "privacy": "private",
33402
33479
  "static": true,
33403
33480
  "parameters": [
33404
33481
  {
33405
- "name": "characterLimit",
33406
- "type": {
33407
- "text": "number | undefined"
33408
- }
33409
- },
33410
- {
33411
- "name": "validate",
33482
+ "name": "dropupText",
33483
+ "optional": true,
33412
33484
  "type": {
33413
- "text": "ValidationHandler | undefined"
33485
+ "text": "string"
33414
33486
  }
33415
33487
  },
33416
33488
  {
33417
- "name": "event",
33489
+ "name": "textStyle",
33490
+ "optional": true,
33418
33491
  "type": {
33419
- "text": "Event"
33492
+ "text": "CustomStyle"
33420
33493
  }
33421
33494
  }
33422
33495
  ]
33423
- }
33424
- ]
33425
- }
33426
- ],
33427
- "exports": [
33428
- {
33429
- "kind": "js",
33430
- "name": "TextInputEvents",
33431
- "declaration": {
33432
- "name": "TextInputEvents",
33433
- "module": "src/views/chat/input/textInput/textInputEvents.ts"
33434
- }
33435
- }
33436
- ]
33437
- },
33438
- {
33439
- "kind": "javascript-module",
33440
- "path": "src/views/chat/input/validation/validationHandler.ts",
33441
- "declarations": [
33442
- {
33443
- "kind": "class",
33444
- "description": "",
33445
- "name": "ValidationHandler",
33446
- "members": [
33496
+ },
33447
33497
  {
33448
33498
  "kind": "method",
33449
- "name": "validate",
33499
+ "name": "createItemIcon",
33450
33500
  "privacy": "private",
33451
33501
  "static": true,
33452
33502
  "parameters": [
33453
33503
  {
33454
- "name": "validation",
33455
- "type": {
33456
- "text": "ValidateFunc"
33457
- }
33458
- },
33459
- {
33460
- "name": "submitButton",
33461
- "type": {
33462
- "text": "SubmitButton"
33463
- }
33464
- },
33465
- {
33466
- "name": "text",
33467
- "optional": true,
33468
- "type": {
33469
- "text": "string"
33470
- }
33471
- },
33472
- {
33473
- "name": "files",
33474
- "optional": true,
33504
+ "name": "inputButtonElement",
33475
33505
  "type": {
33476
- "text": "File[]"
33506
+ "text": "HTMLElement"
33477
33507
  }
33478
33508
  },
33479
33509
  {
33480
- "name": "isProgrammatic",
33510
+ "name": "iconContainerStyle",
33481
33511
  "optional": true,
33482
33512
  "type": {
33483
- "text": "boolean"
33513
+ "text": "CustomStyle"
33484
33514
  }
33485
33515
  }
33486
33516
  ]
33487
33517
  },
33488
33518
  {
33489
33519
  "kind": "method",
33490
- "name": "useValidationFunc",
33520
+ "name": "populateItem",
33491
33521
  "privacy": "private",
33492
33522
  "static": true,
33493
33523
  "parameters": [
33494
33524
  {
33495
- "name": "validation",
33525
+ "name": "elementRef",
33496
33526
  "type": {
33497
- "text": "ValidateFunc"
33527
+ "text": "HTMLElement"
33498
33528
  }
33499
33529
  },
33500
33530
  {
33501
- "name": "textInput",
33531
+ "name": "item",
33502
33532
  "type": {
33503
- "text": "TextInputEl"
33533
+ "text": "HTMLElement"
33504
33534
  }
33505
33535
  },
33506
33536
  {
33507
- "name": "fileAttachments",
33537
+ "name": "dropupText",
33538
+ "optional": true,
33508
33539
  "type": {
33509
- "text": "FileAttachments"
33540
+ "text": "string"
33510
33541
  }
33511
33542
  },
33512
33543
  {
33513
- "name": "submitButton",
33544
+ "name": "styles",
33545
+ "optional": true,
33514
33546
  "type": {
33515
- "text": "SubmitButton"
33547
+ "text": "DropupMenuStyles"
33516
33548
  }
33517
33549
  }
33518
33550
  ]
33519
33551
  },
33520
33552
  {
33521
33553
  "kind": "method",
33522
- "name": "useValidationFuncProgrammatic",
33523
- "privacy": "private",
33554
+ "name": "createItem",
33555
+ "privacy": "public",
33524
33556
  "static": true,
33525
33557
  "parameters": [
33526
33558
  {
33527
- "name": "validation",
33559
+ "name": "menu",
33528
33560
  "type": {
33529
- "text": "ValidateFunc"
33561
+ "text": "DropupMenu"
33530
33562
  }
33531
33563
  },
33532
33564
  {
33533
- "name": "programmatic",
33565
+ "name": "inputButton",
33534
33566
  "type": {
33535
- "text": "UserContentI"
33567
+ "text": "InputButton"
33536
33568
  }
33537
33569
  },
33538
33570
  {
33539
- "name": "submitButton",
33571
+ "name": "styles",
33572
+ "optional": true,
33540
33573
  "type": {
33541
- "text": "SubmitButton"
33574
+ "text": "DropupMenuStyles"
33542
33575
  }
33543
33576
  }
33544
33577
  ]
33545
- },
33578
+ }
33579
+ ]
33580
+ }
33581
+ ],
33582
+ "exports": [
33583
+ {
33584
+ "kind": "js",
33585
+ "name": "DropupItem",
33586
+ "declaration": {
33587
+ "name": "DropupItem",
33588
+ "module": "src/views/chat/input/dropup/dropupItem.ts"
33589
+ }
33590
+ }
33591
+ ]
33592
+ },
33593
+ {
33594
+ "kind": "javascript-module",
33595
+ "path": "src/views/chat/input/dropup/dropupItemNavigation.ts",
33596
+ "declarations": [
33597
+ {
33598
+ "kind": "class",
33599
+ "description": "",
33600
+ "name": "DropupItemNavigation",
33601
+ "members": [
33546
33602
  {
33547
33603
  "kind": "method",
33548
- "name": "validateWebsocket",
33604
+ "name": "focusItemWhenOnEdge",
33549
33605
  "privacy": "private",
33550
33606
  "static": true,
33551
33607
  "parameters": [
33552
33608
  {
33553
- "name": "serviceIO",
33609
+ "name": "dropupElement",
33554
33610
  "type": {
33555
- "text": "ServiceIO"
33611
+ "text": "HTMLElement"
33556
33612
  }
33557
33613
  },
33558
33614
  {
33559
- "name": "submitButton",
33615
+ "name": "isNext",
33560
33616
  "type": {
33561
- "text": "SubmitButton"
33617
+ "text": "boolean"
33562
33618
  }
33563
33619
  }
33564
33620
  ]
33565
33621
  },
33566
33622
  {
33567
33623
  "kind": "method",
33568
- "name": "attach",
33624
+ "name": "focusSiblingItem",
33569
33625
  "privacy": "public",
33570
33626
  "static": true,
33627
+ "return": {
33628
+ "type": {
33629
+ "text": "void"
33630
+ }
33631
+ },
33571
33632
  "parameters": [
33572
33633
  {
33573
- "name": "deepChat",
33574
- "type": {
33575
- "text": "DeepChat"
33576
- }
33577
- },
33578
- {
33579
- "name": "serviceIO",
33634
+ "name": "focusedItem",
33580
33635
  "type": {
33581
- "text": "ServiceIO"
33636
+ "text": "HTMLElement"
33582
33637
  }
33583
33638
  },
33584
33639
  {
33585
- "name": "textInput",
33640
+ "name": "dropupElement",
33586
33641
  "type": {
33587
- "text": "TextInputEl"
33642
+ "text": "HTMLElement"
33588
33643
  }
33589
33644
  },
33590
33645
  {
33591
- "name": "fileAttachments",
33646
+ "name": "isNext",
33592
33647
  "type": {
33593
- "text": "FileAttachments"
33648
+ "text": "boolean"
33594
33649
  }
33595
33650
  },
33596
33651
  {
33597
- "name": "submitButton",
33598
- "type": {
33599
- "text": "SubmitButton"
33600
- }
33652
+ "name": "isEdgeItem",
33653
+ "default": "false"
33601
33654
  }
33602
33655
  ]
33603
33656
  }
@@ -33607,168 +33660,158 @@
33607
33660
  "exports": [
33608
33661
  {
33609
33662
  "kind": "js",
33610
- "name": "ValidationHandler",
33663
+ "name": "DropupItemNavigation",
33611
33664
  "declaration": {
33612
- "name": "ValidationHandler",
33613
- "module": "src/views/chat/input/validation/validationHandler.ts"
33665
+ "name": "DropupItemNavigation",
33666
+ "module": "src/views/chat/input/dropup/dropupItemNavigation.ts"
33614
33667
  }
33615
33668
  }
33616
33669
  ]
33617
33670
  },
33618
33671
  {
33619
33672
  "kind": "javascript-module",
33620
- "path": "src/views/chat/input/fileAttachments/fileAttachments.ts",
33673
+ "path": "src/views/chat/input/dropup/dropupMenu.ts",
33621
33674
  "declarations": [
33622
33675
  {
33623
33676
  "kind": "class",
33624
33677
  "description": "",
33625
- "name": "FileAttachments",
33678
+ "name": "DropupMenu",
33626
33679
  "members": [
33627
33680
  {
33628
33681
  "kind": "field",
33629
- "name": "_fileAttachmentsTypes",
33682
+ "name": "elementRef",
33630
33683
  "type": {
33631
- "text": "FileAttachmentsType[]"
33684
+ "text": "HTMLElement"
33685
+ }
33686
+ },
33687
+ {
33688
+ "kind": "field",
33689
+ "name": "_isOpen",
33690
+ "type": {
33691
+ "text": "boolean"
33632
33692
  },
33633
33693
  "privacy": "private",
33634
- "default": "[]"
33694
+ "default": "true"
33635
33695
  },
33636
33696
  {
33637
33697
  "kind": "field",
33638
- "name": "elementRef",
33698
+ "name": "highlightedItem",
33639
33699
  "type": {
33640
- "text": "HTMLElement"
33700
+ "text": "HTMLElement | undefined"
33641
33701
  }
33642
33702
  },
33643
33703
  {
33644
- "kind": "method",
33645
- "name": "addType",
33646
- "parameters": [
33647
- {
33648
- "name": "deepChat",
33649
- "type": {
33650
- "text": "DeepChat"
33651
- }
33652
- },
33653
- {
33654
- "name": "files",
33655
- "type": {
33656
- "text": "FileAttachmentsT"
33657
- }
33658
- },
33659
- {
33660
- "name": "type",
33661
- "type": {
33662
- "text": "keyof ServiceFileTypes"
33663
- }
33664
- }
33665
- ]
33704
+ "kind": "field",
33705
+ "name": "_styles",
33706
+ "type": {
33707
+ "text": "DropupMenuStyles | undefined"
33708
+ },
33709
+ "privacy": "private",
33710
+ "default": "styles"
33666
33711
  },
33667
33712
  {
33668
- "kind": "method",
33669
- "name": "createAttachmentContainer",
33713
+ "kind": "field",
33714
+ "name": "clickEvent",
33715
+ "type": {
33716
+ "text": "(event: MouseEvent) => void | undefined"
33717
+ },
33718
+ "privacy": "private"
33719
+ },
33720
+ {
33721
+ "kind": "field",
33722
+ "name": "keyDownEvent",
33723
+ "type": {
33724
+ "text": "(event: KeyboardEvent) => void | undefined"
33725
+ },
33670
33726
  "privacy": "private"
33671
33727
  },
33672
33728
  {
33673
33729
  "kind": "method",
33674
- "name": "toggleContainerDisplay",
33730
+ "name": "createElement",
33675
33731
  "privacy": "private",
33732
+ "static": true,
33676
33733
  "parameters": [
33677
33734
  {
33678
- "name": "display",
33735
+ "name": "containerStyle",
33736
+ "optional": true,
33679
33737
  "type": {
33680
- "text": "boolean"
33738
+ "text": "CustomStyle"
33681
33739
  }
33682
33740
  }
33683
33741
  ]
33684
33742
  },
33685
33743
  {
33686
33744
  "kind": "method",
33687
- "name": "getAllFileData"
33745
+ "name": "open",
33746
+ "privacy": "private"
33688
33747
  },
33689
33748
  {
33690
33749
  "kind": "method",
33691
- "name": "completePlaceholders"
33750
+ "name": "close"
33692
33751
  },
33693
33752
  {
33694
33753
  "kind": "method",
33695
- "name": "addFilesToType",
33696
- "privacy": "public",
33697
- "static": true,
33754
+ "name": "toggle"
33755
+ },
33756
+ {
33757
+ "kind": "method",
33758
+ "name": "addItem",
33698
33759
  "parameters": [
33699
33760
  {
33700
- "name": "files",
33701
- "type": {
33702
- "text": "File[]"
33703
- }
33704
- },
33705
- {
33706
- "name": "fileAttachmentTypes",
33761
+ "name": "inputButton",
33707
33762
  "type": {
33708
- "text": "FileAttachmentsType[]"
33763
+ "text": "InputButton"
33709
33764
  }
33710
33765
  }
33711
33766
  ]
33712
33767
  },
33713
33768
  {
33714
33769
  "kind": "method",
33715
- "name": "addFilesToAnyType",
33770
+ "name": "addWindowEvents",
33771
+ "privacy": "private",
33716
33772
  "parameters": [
33717
33773
  {
33718
- "name": "files",
33774
+ "name": "containerElement",
33719
33775
  "type": {
33720
- "text": "File[]"
33776
+ "text": "HTMLElement"
33721
33777
  }
33722
33778
  }
33723
33779
  ]
33724
33780
  },
33725
33781
  {
33726
33782
  "kind": "method",
33727
- "name": "removeAllFiles"
33783
+ "name": "windowClick",
33784
+ "privacy": "private",
33785
+ "parameters": [
33786
+ {
33787
+ "name": "containerElement",
33788
+ "type": {
33789
+ "text": "HTMLElement"
33790
+ }
33791
+ },
33792
+ {
33793
+ "name": "event",
33794
+ "type": {
33795
+ "text": "MouseEvent"
33796
+ }
33797
+ }
33798
+ ]
33728
33799
  },
33729
33800
  {
33730
33801
  "kind": "method",
33731
- "name": "getNumberOfTypes"
33732
- }
33733
- ]
33734
- }
33735
- ],
33736
- "exports": [
33737
- {
33738
- "kind": "js",
33739
- "name": "FileAttachments",
33740
- "declaration": {
33741
- "name": "FileAttachments",
33742
- "module": "src/views/chat/input/fileAttachments/fileAttachments.ts"
33743
- }
33744
- }
33745
- ]
33746
- },
33747
- {
33748
- "kind": "javascript-module",
33749
- "path": "src/views/chat/input/fileAttachments/newFileName.ts",
33750
- "declarations": [
33751
- {
33752
- "kind": "class",
33753
- "description": "",
33754
- "name": "NewFileName",
33755
- "members": [
33756
- {
33757
- "kind": "method",
33758
- "name": "getFileName",
33759
- "privacy": "public",
33760
- "static": true,
33802
+ "name": "windowKeyDown",
33803
+ "privacy": "private",
33761
33804
  "parameters": [
33762
33805
  {
33763
- "name": "prefix",
33806
+ "name": "containerElement",
33764
33807
  "type": {
33765
- "text": "string"
33808
+ "text": "HTMLElement"
33766
33809
  }
33767
33810
  },
33768
33811
  {
33769
- "name": "extension",
33812
+ "name": "event",
33770
33813
  "type": {
33771
- "text": "string"
33814
+ "text": "KeyboardEvent"
33772
33815
  }
33773
33816
  }
33774
33817
  ]
@@ -33779,10 +33822,10 @@
33779
33822
  "exports": [
33780
33823
  {
33781
33824
  "kind": "js",
33782
- "name": "NewFileName",
33825
+ "name": "DropupMenu",
33783
33826
  "declaration": {
33784
- "name": "NewFileName",
33785
- "module": "src/views/chat/input/fileAttachments/newFileName.ts"
33827
+ "name": "DropupMenu",
33828
+ "module": "src/views/chat/input/dropup/dropupMenu.ts"
33786
33829
  }
33787
33830
  }
33788
33831
  ]