igniteui-webcomponents 6.3.0 → 6.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/components/card/card.actions.d.ts +1 -1
- package/components/card/card.actions.js +2 -1
- package/components/card/card.actions.js.map +1 -1
- package/components/card/themes/card.actions.base.css.js +1 -1
- package/components/card/themes/card.actions.base.css.js.map +1 -1
- package/components/card/themes/card.content.base.css.js +1 -1
- package/components/card/themes/card.content.base.css.js.map +1 -1
- package/components/card/themes/card.header.base.css.js +1 -1
- package/components/card/themes/card.header.base.css.js.map +1 -1
- package/components/card/themes/content.js +0 -7
- package/components/card/themes/content.js.map +1 -1
- package/components/card/themes/shared/actions/card.actions.common.css.js +3 -0
- package/components/card/themes/shared/actions/card.actions.common.css.js.map +1 -0
- package/components/card/themes/shared/header/card.header.indigo.css.js +1 -1
- package/components/card/themes/shared/header/card.header.indigo.css.js.map +1 -1
- package/components/chat/themes/dark/chat.bootstrap.css.js +1 -1
- package/components/chat/themes/dark/chat.bootstrap.css.js.map +1 -1
- package/components/chat/themes/dark/chat.fluent.css.js +1 -1
- package/components/chat/themes/dark/chat.fluent.css.js.map +1 -1
- package/components/chat/themes/dark/chat.indigo.css.js +1 -1
- package/components/chat/themes/dark/chat.indigo.css.js.map +1 -1
- package/components/chat/themes/dark/chat.material.css.js +1 -1
- package/components/chat/themes/dark/chat.material.css.js.map +1 -1
- package/components/chat/themes/dark/chat.shared.css.d.ts +1 -0
- package/components/chat/themes/dark/chat.shared.css.js +3 -0
- package/components/chat/themes/dark/chat.shared.css.js.map +1 -0
- package/components/chat/themes/light/chat.shared.css.js +1 -1
- package/components/chat/themes/light/chat.shared.css.js.map +1 -1
- package/components/chat/themes/message.base.css.js +1 -1
- package/components/chat/themes/message.base.css.js.map +1 -1
- package/components/chat/themes/shared/chat-message/chat-message.common.css.js +1 -1
- package/components/chat/themes/shared/chat-message/chat-message.common.css.js.map +1 -1
- package/components/chat/themes/themes.js +4 -3
- package/components/chat/themes/themes.js.map +1 -1
- package/components/date-time-input/date-time-input.d.ts +3 -4
- package/components/date-time-input/date-time-input.js +51 -66
- package/components/date-time-input/date-time-input.js.map +1 -1
- package/components/date-time-input/date-util.d.ts +1 -1
- package/components/date-time-input/date-util.js +18 -41
- package/components/date-time-input/date-util.js.map +1 -1
- package/components/mask-input/mask-input-base.d.ts +29 -20
- package/components/mask-input/mask-input-base.js +48 -54
- package/components/mask-input/mask-input-base.js.map +1 -1
- package/components/mask-input/mask-input.d.ts +24 -13
- package/components/mask-input/mask-input.js +66 -65
- package/components/mask-input/mask-input.js.map +1 -1
- package/components/mask-input/mask-parser.d.ts +4 -0
- package/components/mask-input/mask-parser.js +3 -0
- package/components/mask-input/mask-parser.js.map +1 -1
- package/components/mask-input/validators.js +1 -1
- package/components/mask-input/validators.js.map +1 -1
- package/custom-elements.json +440 -328
- package/{components/chat/extras/markdown-renderer.d.ts → extras/chat-markdown-renderer.d.ts} +1 -1
- package/{components/chat/extras/markdown-renderer.js → extras/chat-markdown-renderer.js} +27 -2
- package/extras/chat-markdown-renderer.js.map +1 -0
- package/extras/index.d.ts +1 -1
- package/extras/index.js +1 -1
- package/extras/index.js.map +1 -1
- package/igniteui-webcomponents.html-data.json +1 -1
- package/package.json +2 -2
- package/web-types.json +1 -1
- package/components/card/themes/shared/content/card.content.indigo.css.js +0 -3
- package/components/card/themes/shared/content/card.content.indigo.css.js.map +0 -1
- package/components/chat/extras/markdown-renderer.js.map +0 -1
- /package/components/card/themes/shared/{content/card.content.indigo.css.d.ts → actions/card.actions.common.css.d.ts} +0 -0
package/custom-elements.json
CHANGED
|
@@ -11578,6 +11578,16 @@
|
|
|
11578
11578
|
"description": "Returns the escaped mask string.\nThis is the mask after processing any escape sequences.",
|
|
11579
11579
|
"readonly": true
|
|
11580
11580
|
},
|
|
11581
|
+
{
|
|
11582
|
+
"kind": "field",
|
|
11583
|
+
"name": "emptyMask",
|
|
11584
|
+
"type": {
|
|
11585
|
+
"text": "string"
|
|
11586
|
+
},
|
|
11587
|
+
"privacy": "public",
|
|
11588
|
+
"description": "Returns the result of applying an empty string over the mask pattern.",
|
|
11589
|
+
"readonly": true
|
|
11590
|
+
},
|
|
11581
11591
|
{
|
|
11582
11592
|
"kind": "field",
|
|
11583
11593
|
"name": "mask",
|
|
@@ -11769,15 +11779,16 @@
|
|
|
11769
11779
|
"members": [
|
|
11770
11780
|
{
|
|
11771
11781
|
"kind": "field",
|
|
11772
|
-
"name": "
|
|
11782
|
+
"name": "_parser",
|
|
11773
11783
|
"privacy": "protected",
|
|
11784
|
+
"readonly": true,
|
|
11774
11785
|
"default": "new MaskParser()"
|
|
11775
11786
|
},
|
|
11776
11787
|
{
|
|
11777
11788
|
"kind": "field",
|
|
11778
|
-
"name": "
|
|
11789
|
+
"name": "_maskSelection",
|
|
11779
11790
|
"type": {
|
|
11780
|
-
"text": "
|
|
11791
|
+
"text": "MaskSelection"
|
|
11781
11792
|
},
|
|
11782
11793
|
"privacy": "protected",
|
|
11783
11794
|
"default": "{ start: 0, end: 0 }"
|
|
@@ -11793,7 +11804,7 @@
|
|
|
11793
11804
|
},
|
|
11794
11805
|
{
|
|
11795
11806
|
"kind": "field",
|
|
11796
|
-
"name": "
|
|
11807
|
+
"name": "_focused",
|
|
11797
11808
|
"type": {
|
|
11798
11809
|
"text": "boolean"
|
|
11799
11810
|
},
|
|
@@ -11802,7 +11813,7 @@
|
|
|
11802
11813
|
},
|
|
11803
11814
|
{
|
|
11804
11815
|
"kind": "field",
|
|
11805
|
-
"name": "
|
|
11816
|
+
"name": "_maskedValue",
|
|
11806
11817
|
"type": {
|
|
11807
11818
|
"text": "string"
|
|
11808
11819
|
},
|
|
@@ -11811,54 +11822,47 @@
|
|
|
11811
11822
|
},
|
|
11812
11823
|
{
|
|
11813
11824
|
"kind": "field",
|
|
11814
|
-
"name": "
|
|
11825
|
+
"name": "_inputSelection",
|
|
11815
11826
|
"type": {
|
|
11816
|
-
"text": "
|
|
11827
|
+
"text": "MaskSelection"
|
|
11817
11828
|
},
|
|
11818
11829
|
"privacy": "protected",
|
|
11819
|
-
"
|
|
11830
|
+
"readonly": true
|
|
11820
11831
|
},
|
|
11821
11832
|
{
|
|
11822
11833
|
"kind": "field",
|
|
11823
|
-
"name": "
|
|
11824
|
-
"type": {
|
|
11825
|
-
"text": "string"
|
|
11826
|
-
},
|
|
11834
|
+
"name": "mask",
|
|
11827
11835
|
"privacy": "public",
|
|
11828
|
-
"description": "The
|
|
11829
|
-
"
|
|
11830
|
-
|
|
11831
|
-
{
|
|
11832
|
-
"kind": "field",
|
|
11833
|
-
"name": "inputSelection",
|
|
11836
|
+
"description": "The masked pattern of the component.",
|
|
11837
|
+
"default": "'CCCCCCCCCC'",
|
|
11838
|
+
"attribute": "mask",
|
|
11834
11839
|
"type": {
|
|
11835
|
-
"text": "
|
|
11836
|
-
}
|
|
11837
|
-
"privacy": "protected",
|
|
11838
|
-
"readonly": true
|
|
11840
|
+
"text": "string"
|
|
11841
|
+
}
|
|
11839
11842
|
},
|
|
11840
11843
|
{
|
|
11841
11844
|
"kind": "field",
|
|
11842
|
-
"name": "
|
|
11845
|
+
"name": "prompt",
|
|
11846
|
+
"privacy": "public",
|
|
11847
|
+
"description": "The prompt symbol to use for unfilled parts of the mask pattern.",
|
|
11848
|
+
"default": "'_'",
|
|
11849
|
+
"attribute": "prompt",
|
|
11843
11850
|
"type": {
|
|
11844
11851
|
"text": "string"
|
|
11845
|
-
}
|
|
11846
|
-
"privacy": "protected",
|
|
11847
|
-
"readonly": true
|
|
11848
|
-
},
|
|
11849
|
-
{
|
|
11850
|
-
"kind": "method",
|
|
11851
|
-
"name": "select",
|
|
11852
|
-
"privacy": "public",
|
|
11853
|
-
"description": "Selects all text within the input."
|
|
11852
|
+
}
|
|
11854
11853
|
},
|
|
11855
11854
|
{
|
|
11856
11855
|
"kind": "method",
|
|
11857
|
-
"name": "
|
|
11856
|
+
"name": "_handleInput",
|
|
11858
11857
|
"privacy": "protected",
|
|
11858
|
+
"return": {
|
|
11859
|
+
"type": {
|
|
11860
|
+
"text": "Promise<void>"
|
|
11861
|
+
}
|
|
11862
|
+
},
|
|
11859
11863
|
"parameters": [
|
|
11860
11864
|
{
|
|
11861
|
-
"name": "{
|
|
11865
|
+
"name": "{\n inputType,\n isComposing,\n }",
|
|
11862
11866
|
"type": {
|
|
11863
11867
|
"text": "InputEvent"
|
|
11864
11868
|
}
|
|
@@ -11867,49 +11871,96 @@
|
|
|
11867
11871
|
},
|
|
11868
11872
|
{
|
|
11869
11873
|
"kind": "method",
|
|
11870
|
-
"name": "
|
|
11874
|
+
"name": "_setMaskSelection",
|
|
11875
|
+
"privacy": "protected",
|
|
11876
|
+
"return": {
|
|
11877
|
+
"type": {
|
|
11878
|
+
"text": "void"
|
|
11879
|
+
}
|
|
11880
|
+
}
|
|
11881
|
+
},
|
|
11882
|
+
{
|
|
11883
|
+
"kind": "method",
|
|
11884
|
+
"name": "_handleCompositionStart",
|
|
11871
11885
|
"privacy": "protected",
|
|
11886
|
+
"return": {
|
|
11887
|
+
"type": {
|
|
11888
|
+
"text": "void"
|
|
11889
|
+
}
|
|
11890
|
+
}
|
|
11891
|
+
},
|
|
11892
|
+
{
|
|
11893
|
+
"kind": "method",
|
|
11894
|
+
"name": "_handleCompositionEnd",
|
|
11895
|
+
"privacy": "protected",
|
|
11896
|
+
"return": {
|
|
11897
|
+
"type": {
|
|
11898
|
+
"text": "void"
|
|
11899
|
+
}
|
|
11900
|
+
},
|
|
11872
11901
|
"parameters": [
|
|
11873
11902
|
{
|
|
11874
|
-
"name": "{
|
|
11903
|
+
"name": "{ data }",
|
|
11875
11904
|
"type": {
|
|
11876
|
-
"text": "
|
|
11905
|
+
"text": "CompositionEvent"
|
|
11877
11906
|
}
|
|
11878
11907
|
}
|
|
11879
11908
|
]
|
|
11880
11909
|
},
|
|
11881
11910
|
{
|
|
11882
11911
|
"kind": "method",
|
|
11883
|
-
"name": "
|
|
11884
|
-
"privacy": "protected"
|
|
11885
|
-
|
|
11886
|
-
|
|
11887
|
-
|
|
11888
|
-
|
|
11889
|
-
|
|
11912
|
+
"name": "_handleClick",
|
|
11913
|
+
"privacy": "protected",
|
|
11914
|
+
"return": {
|
|
11915
|
+
"type": {
|
|
11916
|
+
"text": "void"
|
|
11917
|
+
}
|
|
11918
|
+
}
|
|
11890
11919
|
},
|
|
11891
11920
|
{
|
|
11892
11921
|
"kind": "method",
|
|
11893
|
-
"name": "
|
|
11894
|
-
"privacy": "protected"
|
|
11922
|
+
"name": "_updateSetRangeTextValue",
|
|
11923
|
+
"privacy": "protected",
|
|
11924
|
+
"return": {
|
|
11925
|
+
"type": {
|
|
11926
|
+
"text": "void"
|
|
11927
|
+
}
|
|
11928
|
+
}
|
|
11895
11929
|
},
|
|
11896
11930
|
{
|
|
11897
11931
|
"kind": "method",
|
|
11898
|
-
"name": "
|
|
11932
|
+
"name": "_updateInput",
|
|
11899
11933
|
"privacy": "protected",
|
|
11934
|
+
"return": {
|
|
11935
|
+
"type": {
|
|
11936
|
+
"text": "void"
|
|
11937
|
+
}
|
|
11938
|
+
},
|
|
11900
11939
|
"parameters": [
|
|
11901
11940
|
{
|
|
11902
|
-
"name": "
|
|
11941
|
+
"name": "text",
|
|
11903
11942
|
"type": {
|
|
11904
|
-
"text": "
|
|
11943
|
+
"text": "string"
|
|
11944
|
+
}
|
|
11945
|
+
},
|
|
11946
|
+
{
|
|
11947
|
+
"name": "range",
|
|
11948
|
+
"type": {
|
|
11949
|
+
"text": "MaskSelection"
|
|
11905
11950
|
}
|
|
11906
11951
|
}
|
|
11907
11952
|
]
|
|
11908
11953
|
},
|
|
11909
11954
|
{
|
|
11910
11955
|
"kind": "method",
|
|
11911
|
-
"name": "
|
|
11912
|
-
"privacy": "
|
|
11956
|
+
"name": "select",
|
|
11957
|
+
"privacy": "public",
|
|
11958
|
+
"return": {
|
|
11959
|
+
"type": {
|
|
11960
|
+
"text": "void"
|
|
11961
|
+
}
|
|
11962
|
+
},
|
|
11963
|
+
"description": "Selects all text within the input."
|
|
11913
11964
|
},
|
|
11914
11965
|
{
|
|
11915
11966
|
"kind": "method",
|
|
@@ -11986,40 +12037,6 @@
|
|
|
11986
12037
|
"module": "src/components/input/input-base.ts"
|
|
11987
12038
|
}
|
|
11988
12039
|
},
|
|
11989
|
-
{
|
|
11990
|
-
"kind": "method",
|
|
11991
|
-
"name": "_updateSetRangeTextValue",
|
|
11992
|
-
"privacy": "protected",
|
|
11993
|
-
"return": {
|
|
11994
|
-
"type": {
|
|
11995
|
-
"text": "void"
|
|
11996
|
-
}
|
|
11997
|
-
}
|
|
11998
|
-
},
|
|
11999
|
-
{
|
|
12000
|
-
"kind": "method",
|
|
12001
|
-
"name": "updateInput",
|
|
12002
|
-
"privacy": "protected",
|
|
12003
|
-
"return": {
|
|
12004
|
-
"type": {
|
|
12005
|
-
"text": "void"
|
|
12006
|
-
}
|
|
12007
|
-
},
|
|
12008
|
-
"parameters": [
|
|
12009
|
-
{
|
|
12010
|
-
"name": "string",
|
|
12011
|
-
"type": {
|
|
12012
|
-
"text": "string"
|
|
12013
|
-
}
|
|
12014
|
-
},
|
|
12015
|
-
{
|
|
12016
|
-
"name": "range",
|
|
12017
|
-
"type": {
|
|
12018
|
-
"text": "MaskRange"
|
|
12019
|
-
}
|
|
12020
|
-
}
|
|
12021
|
-
]
|
|
12022
|
-
},
|
|
12023
12040
|
{
|
|
12024
12041
|
"kind": "field",
|
|
12025
12042
|
"name": "_required",
|
|
@@ -13018,13 +13035,25 @@
|
|
|
13018
13035
|
}
|
|
13019
13036
|
],
|
|
13020
13037
|
"attributes": [
|
|
13038
|
+
{
|
|
13039
|
+
"name": "mask",
|
|
13040
|
+
"description": "The masked pattern of the component.",
|
|
13041
|
+
"default": "'CCCCCCCCCC'",
|
|
13042
|
+
"fieldName": "mask",
|
|
13043
|
+
"attribute": "mask",
|
|
13044
|
+
"type": {
|
|
13045
|
+
"text": "string"
|
|
13046
|
+
}
|
|
13047
|
+
},
|
|
13021
13048
|
{
|
|
13022
13049
|
"name": "prompt",
|
|
13050
|
+
"description": "The prompt symbol to use for unfilled parts of the mask pattern.",
|
|
13051
|
+
"default": "'_'",
|
|
13052
|
+
"fieldName": "prompt",
|
|
13053
|
+
"attribute": "prompt",
|
|
13023
13054
|
"type": {
|
|
13024
13055
|
"text": "string"
|
|
13025
|
-
}
|
|
13026
|
-
"description": "The prompt symbol to use for unfilled parts of the mask.",
|
|
13027
|
-
"fieldName": "prompt"
|
|
13056
|
+
}
|
|
13028
13057
|
},
|
|
13029
13058
|
{
|
|
13030
13059
|
"name": "required",
|
|
@@ -13225,13 +13254,6 @@
|
|
|
13225
13254
|
"readonly": true,
|
|
13226
13255
|
"default": "new Set([ 'short', 'medium', 'long', 'full', ])"
|
|
13227
13256
|
},
|
|
13228
|
-
{
|
|
13229
|
-
"kind": "field",
|
|
13230
|
-
"name": "_parser",
|
|
13231
|
-
"privacy": "private",
|
|
13232
|
-
"static": true,
|
|
13233
|
-
"default": "new MaskParser()"
|
|
13234
|
-
},
|
|
13235
13257
|
{
|
|
13236
13258
|
"kind": "method",
|
|
13237
13259
|
"name": "parseValueFromMask",
|
|
@@ -13417,6 +13439,61 @@
|
|
|
13417
13439
|
}
|
|
13418
13440
|
]
|
|
13419
13441
|
},
|
|
13442
|
+
{
|
|
13443
|
+
"kind": "method",
|
|
13444
|
+
"name": "_spinTimePart",
|
|
13445
|
+
"privacy": "private",
|
|
13446
|
+
"static": true,
|
|
13447
|
+
"return": {
|
|
13448
|
+
"type": {
|
|
13449
|
+
"text": "void"
|
|
13450
|
+
}
|
|
13451
|
+
},
|
|
13452
|
+
"parameters": [
|
|
13453
|
+
{
|
|
13454
|
+
"name": "newDate",
|
|
13455
|
+
"type": {
|
|
13456
|
+
"text": "Date"
|
|
13457
|
+
}
|
|
13458
|
+
},
|
|
13459
|
+
{
|
|
13460
|
+
"name": "delta",
|
|
13461
|
+
"type": {
|
|
13462
|
+
"text": "number"
|
|
13463
|
+
}
|
|
13464
|
+
},
|
|
13465
|
+
{
|
|
13466
|
+
"name": "max",
|
|
13467
|
+
"type": {
|
|
13468
|
+
"text": "number"
|
|
13469
|
+
}
|
|
13470
|
+
},
|
|
13471
|
+
{
|
|
13472
|
+
"name": "min",
|
|
13473
|
+
"type": {
|
|
13474
|
+
"text": "number"
|
|
13475
|
+
}
|
|
13476
|
+
},
|
|
13477
|
+
{
|
|
13478
|
+
"name": "setter",
|
|
13479
|
+
"type": {
|
|
13480
|
+
"text": "(value: number) => number"
|
|
13481
|
+
}
|
|
13482
|
+
},
|
|
13483
|
+
{
|
|
13484
|
+
"name": "getter",
|
|
13485
|
+
"type": {
|
|
13486
|
+
"text": "() => number"
|
|
13487
|
+
}
|
|
13488
|
+
},
|
|
13489
|
+
{
|
|
13490
|
+
"name": "spinLoop",
|
|
13491
|
+
"type": {
|
|
13492
|
+
"text": "boolean"
|
|
13493
|
+
}
|
|
13494
|
+
}
|
|
13495
|
+
]
|
|
13496
|
+
},
|
|
13420
13497
|
{
|
|
13421
13498
|
"kind": "method",
|
|
13422
13499
|
"name": "spinYear",
|
|
@@ -14042,7 +14119,7 @@
|
|
|
14042
14119
|
{
|
|
14043
14120
|
"name": "value",
|
|
14044
14121
|
"type": {
|
|
14045
|
-
"text": "
|
|
14122
|
+
"text": "number"
|
|
14046
14123
|
}
|
|
14047
14124
|
}
|
|
14048
14125
|
]
|
|
@@ -14362,16 +14439,6 @@
|
|
|
14362
14439
|
}
|
|
14363
14440
|
}
|
|
14364
14441
|
},
|
|
14365
|
-
{
|
|
14366
|
-
"kind": "method",
|
|
14367
|
-
"name": "promptChange",
|
|
14368
|
-
"privacy": "protected",
|
|
14369
|
-
"return": {
|
|
14370
|
-
"type": {
|
|
14371
|
-
"text": "void"
|
|
14372
|
-
}
|
|
14373
|
-
}
|
|
14374
|
-
},
|
|
14375
14442
|
{
|
|
14376
14443
|
"kind": "field",
|
|
14377
14444
|
"name": "hasDateParts",
|
|
@@ -14488,19 +14555,12 @@
|
|
|
14488
14555
|
},
|
|
14489
14556
|
{
|
|
14490
14557
|
"kind": "method",
|
|
14491
|
-
"name": "
|
|
14492
|
-
"privacy": "
|
|
14493
|
-
"
|
|
14494
|
-
{
|
|
14495
|
-
"
|
|
14496
|
-
"type": {
|
|
14497
|
-
"text": "InputEvent"
|
|
14498
|
-
}
|
|
14558
|
+
"name": "_fireInputEvent",
|
|
14559
|
+
"privacy": "private",
|
|
14560
|
+
"return": {
|
|
14561
|
+
"type": {
|
|
14562
|
+
"text": "void"
|
|
14499
14563
|
}
|
|
14500
|
-
],
|
|
14501
|
-
"inheritedFrom": {
|
|
14502
|
-
"name": "IgcMaskInputBaseComponent",
|
|
14503
|
-
"module": "src/components/mask-input/mask-input-base.ts"
|
|
14504
14564
|
}
|
|
14505
14565
|
},
|
|
14506
14566
|
{
|
|
@@ -14515,24 +14575,24 @@
|
|
|
14515
14575
|
},
|
|
14516
14576
|
{
|
|
14517
14577
|
"kind": "method",
|
|
14518
|
-
"name": "
|
|
14578
|
+
"name": "_updateInput",
|
|
14519
14579
|
"privacy": "protected",
|
|
14520
14580
|
"return": {
|
|
14521
14581
|
"type": {
|
|
14522
|
-
"text": "void"
|
|
14582
|
+
"text": "Promise<void>"
|
|
14523
14583
|
}
|
|
14524
14584
|
},
|
|
14525
14585
|
"parameters": [
|
|
14526
14586
|
{
|
|
14527
|
-
"name": "
|
|
14587
|
+
"name": "text",
|
|
14528
14588
|
"type": {
|
|
14529
14589
|
"text": "string"
|
|
14530
14590
|
}
|
|
14531
14591
|
},
|
|
14532
14592
|
{
|
|
14533
|
-
"name": "
|
|
14593
|
+
"name": "{ start, end }",
|
|
14534
14594
|
"type": {
|
|
14535
|
-
"text": "
|
|
14595
|
+
"text": "MaskSelection"
|
|
14536
14596
|
}
|
|
14537
14597
|
}
|
|
14538
14598
|
],
|
|
@@ -14865,8 +14925,9 @@
|
|
|
14865
14925
|
},
|
|
14866
14926
|
{
|
|
14867
14927
|
"kind": "field",
|
|
14868
|
-
"name": "
|
|
14928
|
+
"name": "_parser",
|
|
14869
14929
|
"privacy": "protected",
|
|
14930
|
+
"readonly": true,
|
|
14870
14931
|
"default": "new MaskParser()",
|
|
14871
14932
|
"inheritedFrom": {
|
|
14872
14933
|
"name": "IgcMaskInputBaseComponent",
|
|
@@ -14875,9 +14936,9 @@
|
|
|
14875
14936
|
},
|
|
14876
14937
|
{
|
|
14877
14938
|
"kind": "field",
|
|
14878
|
-
"name": "
|
|
14939
|
+
"name": "_maskSelection",
|
|
14879
14940
|
"type": {
|
|
14880
|
-
"text": "
|
|
14941
|
+
"text": "MaskSelection"
|
|
14881
14942
|
},
|
|
14882
14943
|
"privacy": "protected",
|
|
14883
14944
|
"default": "{ start: 0, end: 0 }",
|
|
@@ -14901,7 +14962,7 @@
|
|
|
14901
14962
|
},
|
|
14902
14963
|
{
|
|
14903
14964
|
"kind": "field",
|
|
14904
|
-
"name": "
|
|
14965
|
+
"name": "_focused",
|
|
14905
14966
|
"type": {
|
|
14906
14967
|
"text": "boolean"
|
|
14907
14968
|
},
|
|
@@ -14914,7 +14975,7 @@
|
|
|
14914
14975
|
},
|
|
14915
14976
|
{
|
|
14916
14977
|
"kind": "field",
|
|
14917
|
-
"name": "
|
|
14978
|
+
"name": "_maskedValue",
|
|
14918
14979
|
"type": {
|
|
14919
14980
|
"text": "string"
|
|
14920
14981
|
},
|
|
@@ -14927,12 +14988,12 @@
|
|
|
14927
14988
|
},
|
|
14928
14989
|
{
|
|
14929
14990
|
"kind": "field",
|
|
14930
|
-
"name": "
|
|
14991
|
+
"name": "_inputSelection",
|
|
14931
14992
|
"type": {
|
|
14932
|
-
"text": "
|
|
14993
|
+
"text": "MaskSelection"
|
|
14933
14994
|
},
|
|
14934
14995
|
"privacy": "protected",
|
|
14935
|
-
"
|
|
14996
|
+
"readonly": true,
|
|
14936
14997
|
"inheritedFrom": {
|
|
14937
14998
|
"name": "IgcMaskInputBaseComponent",
|
|
14938
14999
|
"module": "src/components/mask-input/mask-input-base.ts"
|
|
@@ -14940,26 +15001,14 @@
|
|
|
14940
15001
|
},
|
|
14941
15002
|
{
|
|
14942
15003
|
"kind": "field",
|
|
14943
|
-
"name": "
|
|
14944
|
-
"type": {
|
|
14945
|
-
"text": "string"
|
|
14946
|
-
},
|
|
15004
|
+
"name": "mask",
|
|
14947
15005
|
"privacy": "public",
|
|
14948
|
-
"description": "The
|
|
14949
|
-
"
|
|
14950
|
-
"
|
|
14951
|
-
"name": "IgcMaskInputBaseComponent",
|
|
14952
|
-
"module": "src/components/mask-input/mask-input-base.ts"
|
|
14953
|
-
}
|
|
14954
|
-
},
|
|
14955
|
-
{
|
|
14956
|
-
"kind": "field",
|
|
14957
|
-
"name": "inputSelection",
|
|
15006
|
+
"description": "The masked pattern of the component.",
|
|
15007
|
+
"default": "'CCCCCCCCCC'",
|
|
15008
|
+
"attribute": "mask",
|
|
14958
15009
|
"type": {
|
|
14959
|
-
"text": "
|
|
15010
|
+
"text": "string"
|
|
14960
15011
|
},
|
|
14961
|
-
"privacy": "protected",
|
|
14962
|
-
"readonly": true,
|
|
14963
15012
|
"inheritedFrom": {
|
|
14964
15013
|
"name": "IgcMaskInputBaseComponent",
|
|
14965
15014
|
"module": "src/components/mask-input/mask-input-base.ts"
|
|
@@ -14967,22 +15016,14 @@
|
|
|
14967
15016
|
},
|
|
14968
15017
|
{
|
|
14969
15018
|
"kind": "field",
|
|
14970
|
-
"name": "
|
|
15019
|
+
"name": "prompt",
|
|
15020
|
+
"privacy": "public",
|
|
15021
|
+
"description": "The prompt symbol to use for unfilled parts of the mask pattern.",
|
|
15022
|
+
"default": "'_'",
|
|
15023
|
+
"attribute": "prompt",
|
|
14971
15024
|
"type": {
|
|
14972
15025
|
"text": "string"
|
|
14973
15026
|
},
|
|
14974
|
-
"privacy": "protected",
|
|
14975
|
-
"readonly": true,
|
|
14976
|
-
"inheritedFrom": {
|
|
14977
|
-
"name": "IgcMaskInputBaseComponent",
|
|
14978
|
-
"module": "src/components/mask-input/mask-input-base.ts"
|
|
14979
|
-
}
|
|
14980
|
-
},
|
|
14981
|
-
{
|
|
14982
|
-
"kind": "method",
|
|
14983
|
-
"name": "select",
|
|
14984
|
-
"privacy": "public",
|
|
14985
|
-
"description": "Selects all text within the input.",
|
|
14986
15027
|
"inheritedFrom": {
|
|
14987
15028
|
"name": "IgcMaskInputBaseComponent",
|
|
14988
15029
|
"module": "src/components/mask-input/mask-input-base.ts"
|
|
@@ -14990,13 +15031,18 @@
|
|
|
14990
15031
|
},
|
|
14991
15032
|
{
|
|
14992
15033
|
"kind": "method",
|
|
14993
|
-
"name": "
|
|
15034
|
+
"name": "_handleInput",
|
|
14994
15035
|
"privacy": "protected",
|
|
15036
|
+
"return": {
|
|
15037
|
+
"type": {
|
|
15038
|
+
"text": "Promise<void>"
|
|
15039
|
+
}
|
|
15040
|
+
},
|
|
14995
15041
|
"parameters": [
|
|
14996
15042
|
{
|
|
14997
|
-
"name": "{
|
|
15043
|
+
"name": "{\n inputType,\n isComposing,\n }",
|
|
14998
15044
|
"type": {
|
|
14999
|
-
"text": "
|
|
15045
|
+
"text": "InputEvent"
|
|
15000
15046
|
}
|
|
15001
15047
|
}
|
|
15002
15048
|
],
|
|
@@ -15007,17 +15053,13 @@
|
|
|
15007
15053
|
},
|
|
15008
15054
|
{
|
|
15009
15055
|
"kind": "method",
|
|
15010
|
-
"name": "
|
|
15011
|
-
"privacy": "protected",
|
|
15012
|
-
"inheritedFrom": {
|
|
15013
|
-
"name": "IgcMaskInputBaseComponent",
|
|
15014
|
-
"module": "src/components/mask-input/mask-input-base.ts"
|
|
15015
|
-
}
|
|
15016
|
-
},
|
|
15017
|
-
{
|
|
15018
|
-
"kind": "method",
|
|
15019
|
-
"name": "handleDragStart",
|
|
15056
|
+
"name": "_setMaskSelection",
|
|
15020
15057
|
"privacy": "protected",
|
|
15058
|
+
"return": {
|
|
15059
|
+
"type": {
|
|
15060
|
+
"text": "void"
|
|
15061
|
+
}
|
|
15062
|
+
},
|
|
15021
15063
|
"inheritedFrom": {
|
|
15022
15064
|
"name": "IgcMaskInputBaseComponent",
|
|
15023
15065
|
"module": "src/components/mask-input/mask-input-base.ts"
|
|
@@ -15025,8 +15067,13 @@
|
|
|
15025
15067
|
},
|
|
15026
15068
|
{
|
|
15027
15069
|
"kind": "method",
|
|
15028
|
-
"name": "
|
|
15070
|
+
"name": "_handleCompositionStart",
|
|
15029
15071
|
"privacy": "protected",
|
|
15072
|
+
"return": {
|
|
15073
|
+
"type": {
|
|
15074
|
+
"text": "void"
|
|
15075
|
+
}
|
|
15076
|
+
},
|
|
15030
15077
|
"inheritedFrom": {
|
|
15031
15078
|
"name": "IgcMaskInputBaseComponent",
|
|
15032
15079
|
"module": "src/components/mask-input/mask-input-base.ts"
|
|
@@ -15034,8 +15081,13 @@
|
|
|
15034
15081
|
},
|
|
15035
15082
|
{
|
|
15036
15083
|
"kind": "method",
|
|
15037
|
-
"name": "
|
|
15084
|
+
"name": "_handleCompositionEnd",
|
|
15038
15085
|
"privacy": "protected",
|
|
15086
|
+
"return": {
|
|
15087
|
+
"type": {
|
|
15088
|
+
"text": "void"
|
|
15089
|
+
}
|
|
15090
|
+
},
|
|
15039
15091
|
"parameters": [
|
|
15040
15092
|
{
|
|
15041
15093
|
"name": "{ data }",
|
|
@@ -15051,8 +15103,28 @@
|
|
|
15051
15103
|
},
|
|
15052
15104
|
{
|
|
15053
15105
|
"kind": "method",
|
|
15054
|
-
"name": "
|
|
15106
|
+
"name": "_handleClick",
|
|
15055
15107
|
"privacy": "protected",
|
|
15108
|
+
"return": {
|
|
15109
|
+
"type": {
|
|
15110
|
+
"text": "void"
|
|
15111
|
+
}
|
|
15112
|
+
},
|
|
15113
|
+
"inheritedFrom": {
|
|
15114
|
+
"name": "IgcMaskInputBaseComponent",
|
|
15115
|
+
"module": "src/components/mask-input/mask-input-base.ts"
|
|
15116
|
+
}
|
|
15117
|
+
},
|
|
15118
|
+
{
|
|
15119
|
+
"kind": "method",
|
|
15120
|
+
"name": "select",
|
|
15121
|
+
"privacy": "public",
|
|
15122
|
+
"return": {
|
|
15123
|
+
"type": {
|
|
15124
|
+
"text": "void"
|
|
15125
|
+
}
|
|
15126
|
+
},
|
|
15127
|
+
"description": "Selects all text within the input.",
|
|
15056
15128
|
"inheritedFrom": {
|
|
15057
15129
|
"name": "IgcMaskInputBaseComponent",
|
|
15058
15130
|
"module": "src/components/mask-input/mask-input-base.ts"
|
|
@@ -16064,12 +16136,28 @@
|
|
|
16064
16136
|
"attribute": "locale"
|
|
16065
16137
|
},
|
|
16066
16138
|
{
|
|
16067
|
-
"name": "
|
|
16139
|
+
"name": "mask",
|
|
16140
|
+
"description": "The masked pattern of the component.",
|
|
16141
|
+
"default": "'CCCCCCCCCC'",
|
|
16142
|
+
"fieldName": "mask",
|
|
16143
|
+
"attribute": "mask",
|
|
16068
16144
|
"type": {
|
|
16069
16145
|
"text": "string"
|
|
16070
16146
|
},
|
|
16071
|
-
"
|
|
16147
|
+
"inheritedFrom": {
|
|
16148
|
+
"name": "IgcMaskInputBaseComponent",
|
|
16149
|
+
"module": "src/components/mask-input/mask-input-base.ts"
|
|
16150
|
+
}
|
|
16151
|
+
},
|
|
16152
|
+
{
|
|
16153
|
+
"name": "prompt",
|
|
16154
|
+
"description": "The prompt symbol to use for unfilled parts of the mask pattern.",
|
|
16155
|
+
"default": "'_'",
|
|
16072
16156
|
"fieldName": "prompt",
|
|
16157
|
+
"attribute": "prompt",
|
|
16158
|
+
"type": {
|
|
16159
|
+
"text": "string"
|
|
16160
|
+
},
|
|
16073
16161
|
"inheritedFrom": {
|
|
16074
16162
|
"name": "IgcMaskInputBaseComponent",
|
|
16075
16163
|
"module": "src/components/mask-input/mask-input-base.ts"
|
|
@@ -35755,6 +35843,10 @@
|
|
|
35755
35843
|
"privacy": "public"
|
|
35756
35844
|
}
|
|
35757
35845
|
]
|
|
35846
|
+
},
|
|
35847
|
+
{
|
|
35848
|
+
"kind": "variable",
|
|
35849
|
+
"name": "url"
|
|
35758
35850
|
}
|
|
35759
35851
|
],
|
|
35760
35852
|
"exports": [
|
|
@@ -53002,7 +53094,7 @@
|
|
|
53002
53094
|
"type": {
|
|
53003
53095
|
"text": "Validator<IgcMaskInputComponent>[]"
|
|
53004
53096
|
},
|
|
53005
|
-
"default": "[ requiredValidator, { key: 'badInput', message: messages.mask, // @ts-expect-error - protected access isValid: ({
|
|
53097
|
+
"default": "[ requiredValidator, { key: 'badInput', message: messages.mask, // @ts-expect-error - protected access isValid: ({ _parser, _maskedValue }) => _parser.isValidString(_maskedValue), }, ]"
|
|
53006
53098
|
}
|
|
53007
53099
|
],
|
|
53008
53100
|
"exports": [
|
|
@@ -53096,7 +53188,12 @@
|
|
|
53096
53188
|
"kind": "method",
|
|
53097
53189
|
"name": "register",
|
|
53098
53190
|
"privacy": "public",
|
|
53099
|
-
"static": true
|
|
53191
|
+
"static": true,
|
|
53192
|
+
"return": {
|
|
53193
|
+
"type": {
|
|
53194
|
+
"text": "void"
|
|
53195
|
+
}
|
|
53196
|
+
}
|
|
53100
53197
|
},
|
|
53101
53198
|
{
|
|
53102
53199
|
"kind": "field",
|
|
@@ -53127,6 +53224,9 @@
|
|
|
53127
53224
|
{
|
|
53128
53225
|
"kind": "field",
|
|
53129
53226
|
"name": "_isRawMode",
|
|
53227
|
+
"type": {
|
|
53228
|
+
"text": "boolean"
|
|
53229
|
+
},
|
|
53130
53230
|
"privacy": "protected",
|
|
53131
53231
|
"readonly": true
|
|
53132
53232
|
},
|
|
@@ -53161,21 +53261,66 @@
|
|
|
53161
53261
|
{
|
|
53162
53262
|
"kind": "field",
|
|
53163
53263
|
"name": "mask",
|
|
53264
|
+
"privacy": "public",
|
|
53265
|
+
"description": "The masked pattern of the component.",
|
|
53266
|
+
"default": "'CCCCCCCCCC'",
|
|
53267
|
+
"attribute": "mask",
|
|
53164
53268
|
"type": {
|
|
53165
53269
|
"text": "string"
|
|
53166
53270
|
},
|
|
53271
|
+
"inheritedFrom": {
|
|
53272
|
+
"name": "IgcMaskInputBaseComponent",
|
|
53273
|
+
"module": "src/components/mask-input/mask-input-base.ts"
|
|
53274
|
+
}
|
|
53275
|
+
},
|
|
53276
|
+
{
|
|
53277
|
+
"kind": "field",
|
|
53278
|
+
"name": "prompt",
|
|
53167
53279
|
"privacy": "public",
|
|
53168
|
-
"description": "The
|
|
53169
|
-
"
|
|
53280
|
+
"description": "The prompt symbol to use for unfilled parts of the mask pattern.",
|
|
53281
|
+
"default": "'_'",
|
|
53282
|
+
"attribute": "prompt",
|
|
53283
|
+
"type": {
|
|
53284
|
+
"text": "string"
|
|
53285
|
+
},
|
|
53286
|
+
"inheritedFrom": {
|
|
53287
|
+
"name": "IgcMaskInputBaseComponent",
|
|
53288
|
+
"module": "src/components/mask-input/mask-input-base.ts"
|
|
53289
|
+
}
|
|
53170
53290
|
},
|
|
53171
53291
|
{
|
|
53172
53292
|
"kind": "method",
|
|
53173
|
-
"name": "
|
|
53174
|
-
"privacy": "protected"
|
|
53293
|
+
"name": "_handleDragEnter",
|
|
53294
|
+
"privacy": "protected",
|
|
53295
|
+
"return": {
|
|
53296
|
+
"type": {
|
|
53297
|
+
"text": "void"
|
|
53298
|
+
}
|
|
53299
|
+
}
|
|
53175
53300
|
},
|
|
53176
53301
|
{
|
|
53177
53302
|
"kind": "method",
|
|
53178
|
-
"name": "
|
|
53303
|
+
"name": "_handleDragLeave",
|
|
53304
|
+
"privacy": "protected",
|
|
53305
|
+
"return": {
|
|
53306
|
+
"type": {
|
|
53307
|
+
"text": "void"
|
|
53308
|
+
}
|
|
53309
|
+
}
|
|
53310
|
+
},
|
|
53311
|
+
{
|
|
53312
|
+
"kind": "method",
|
|
53313
|
+
"name": "_handleFocus",
|
|
53314
|
+
"privacy": "protected",
|
|
53315
|
+
"return": {
|
|
53316
|
+
"type": {
|
|
53317
|
+
"text": "Promise<void>"
|
|
53318
|
+
}
|
|
53319
|
+
}
|
|
53320
|
+
},
|
|
53321
|
+
{
|
|
53322
|
+
"kind": "method",
|
|
53323
|
+
"name": "_handleBlur",
|
|
53179
53324
|
"privacy": "protected",
|
|
53180
53325
|
"return": {
|
|
53181
53326
|
"type": {
|
|
@@ -53189,24 +53334,48 @@
|
|
|
53189
53334
|
},
|
|
53190
53335
|
{
|
|
53191
53336
|
"kind": "method",
|
|
53192
|
-
"name": "
|
|
53337
|
+
"name": "_handleChange",
|
|
53338
|
+
"privacy": "protected",
|
|
53339
|
+
"return": {
|
|
53340
|
+
"type": {
|
|
53341
|
+
"text": "void"
|
|
53342
|
+
}
|
|
53343
|
+
}
|
|
53344
|
+
},
|
|
53345
|
+
{
|
|
53346
|
+
"kind": "method",
|
|
53347
|
+
"name": "_restoreDefaultValue",
|
|
53193
53348
|
"privacy": "protected",
|
|
53194
53349
|
"return": {
|
|
53195
53350
|
"type": {
|
|
53196
53351
|
"text": "void"
|
|
53197
53352
|
}
|
|
53198
53353
|
},
|
|
53354
|
+
"inheritedFrom": {
|
|
53355
|
+
"name": "IgcInputBaseComponent",
|
|
53356
|
+
"module": "src/components/input/input-base.ts"
|
|
53357
|
+
}
|
|
53358
|
+
},
|
|
53359
|
+
{
|
|
53360
|
+
"kind": "method",
|
|
53361
|
+
"name": "_updateInput",
|
|
53362
|
+
"privacy": "protected",
|
|
53363
|
+
"return": {
|
|
53364
|
+
"type": {
|
|
53365
|
+
"text": "Promise<void>"
|
|
53366
|
+
}
|
|
53367
|
+
},
|
|
53199
53368
|
"parameters": [
|
|
53200
53369
|
{
|
|
53201
|
-
"name": "
|
|
53370
|
+
"name": "text",
|
|
53202
53371
|
"type": {
|
|
53203
53372
|
"text": "string"
|
|
53204
53373
|
}
|
|
53205
53374
|
},
|
|
53206
53375
|
{
|
|
53207
|
-
"name": "
|
|
53376
|
+
"name": "{ start, end }",
|
|
53208
53377
|
"type": {
|
|
53209
|
-
"text": "
|
|
53378
|
+
"text": "MaskSelection"
|
|
53210
53379
|
}
|
|
53211
53380
|
}
|
|
53212
53381
|
],
|
|
@@ -53217,22 +53386,7 @@
|
|
|
53217
53386
|
},
|
|
53218
53387
|
{
|
|
53219
53388
|
"kind": "method",
|
|
53220
|
-
"name": "
|
|
53221
|
-
"privacy": "protected"
|
|
53222
|
-
},
|
|
53223
|
-
{
|
|
53224
|
-
"kind": "method",
|
|
53225
|
-
"name": "handleDragLeave",
|
|
53226
|
-
"privacy": "protected"
|
|
53227
|
-
},
|
|
53228
|
-
{
|
|
53229
|
-
"kind": "method",
|
|
53230
|
-
"name": "handleFocus",
|
|
53231
|
-
"privacy": "protected"
|
|
53232
|
-
},
|
|
53233
|
-
{
|
|
53234
|
-
"kind": "method",
|
|
53235
|
-
"name": "_handleBlur",
|
|
53389
|
+
"name": "_updateSetRangeTextValue",
|
|
53236
53390
|
"privacy": "protected",
|
|
53237
53391
|
"return": {
|
|
53238
53392
|
"type": {
|
|
@@ -53240,32 +53394,18 @@
|
|
|
53240
53394
|
}
|
|
53241
53395
|
},
|
|
53242
53396
|
"inheritedFrom": {
|
|
53243
|
-
"name": "
|
|
53244
|
-
"module": "src/components/input/input-base.ts"
|
|
53397
|
+
"name": "IgcMaskInputBaseComponent",
|
|
53398
|
+
"module": "src/components/mask-input/mask-input-base.ts"
|
|
53245
53399
|
}
|
|
53246
53400
|
},
|
|
53247
53401
|
{
|
|
53248
53402
|
"kind": "method",
|
|
53249
|
-
"name": "
|
|
53250
|
-
"privacy": "
|
|
53251
|
-
},
|
|
53252
|
-
{
|
|
53253
|
-
"kind": "method",
|
|
53254
|
-
"name": "updateMaskedValue",
|
|
53255
|
-
"privacy": "protected"
|
|
53256
|
-
},
|
|
53257
|
-
{
|
|
53258
|
-
"kind": "method",
|
|
53259
|
-
"name": "_updateSetRangeTextValue",
|
|
53260
|
-
"privacy": "protected",
|
|
53403
|
+
"name": "_updateMaskedValue",
|
|
53404
|
+
"privacy": "private",
|
|
53261
53405
|
"return": {
|
|
53262
53406
|
"type": {
|
|
53263
53407
|
"text": "void"
|
|
53264
53408
|
}
|
|
53265
|
-
},
|
|
53266
|
-
"inheritedFrom": {
|
|
53267
|
-
"name": "IgcMaskInputBaseComponent",
|
|
53268
|
-
"module": "src/components/mask-input/mask-input-base.ts"
|
|
53269
53409
|
}
|
|
53270
53410
|
},
|
|
53271
53411
|
{
|
|
@@ -53284,8 +53424,9 @@
|
|
|
53284
53424
|
},
|
|
53285
53425
|
{
|
|
53286
53426
|
"kind": "field",
|
|
53287
|
-
"name": "
|
|
53427
|
+
"name": "_parser",
|
|
53288
53428
|
"privacy": "protected",
|
|
53429
|
+
"readonly": true,
|
|
53289
53430
|
"default": "new MaskParser()",
|
|
53290
53431
|
"inheritedFrom": {
|
|
53291
53432
|
"name": "IgcMaskInputBaseComponent",
|
|
@@ -53294,9 +53435,9 @@
|
|
|
53294
53435
|
},
|
|
53295
53436
|
{
|
|
53296
53437
|
"kind": "field",
|
|
53297
|
-
"name": "
|
|
53438
|
+
"name": "_maskSelection",
|
|
53298
53439
|
"type": {
|
|
53299
|
-
"text": "
|
|
53440
|
+
"text": "MaskSelection"
|
|
53300
53441
|
},
|
|
53301
53442
|
"privacy": "protected",
|
|
53302
53443
|
"default": "{ start: 0, end: 0 }",
|
|
@@ -53320,7 +53461,7 @@
|
|
|
53320
53461
|
},
|
|
53321
53462
|
{
|
|
53322
53463
|
"kind": "field",
|
|
53323
|
-
"name": "
|
|
53464
|
+
"name": "_focused",
|
|
53324
53465
|
"type": {
|
|
53325
53466
|
"text": "boolean"
|
|
53326
53467
|
},
|
|
@@ -53333,7 +53474,7 @@
|
|
|
53333
53474
|
},
|
|
53334
53475
|
{
|
|
53335
53476
|
"kind": "field",
|
|
53336
|
-
"name": "
|
|
53477
|
+
"name": "_maskedValue",
|
|
53337
53478
|
"type": {
|
|
53338
53479
|
"text": "string"
|
|
53339
53480
|
},
|
|
@@ -53346,36 +53487,9 @@
|
|
|
53346
53487
|
},
|
|
53347
53488
|
{
|
|
53348
53489
|
"kind": "field",
|
|
53349
|
-
"name": "
|
|
53490
|
+
"name": "_inputSelection",
|
|
53350
53491
|
"type": {
|
|
53351
|
-
"text": "
|
|
53352
|
-
},
|
|
53353
|
-
"privacy": "protected",
|
|
53354
|
-
"default": "''",
|
|
53355
|
-
"inheritedFrom": {
|
|
53356
|
-
"name": "IgcMaskInputBaseComponent",
|
|
53357
|
-
"module": "src/components/mask-input/mask-input-base.ts"
|
|
53358
|
-
}
|
|
53359
|
-
},
|
|
53360
|
-
{
|
|
53361
|
-
"kind": "field",
|
|
53362
|
-
"name": "prompt",
|
|
53363
|
-
"type": {
|
|
53364
|
-
"text": "string"
|
|
53365
|
-
},
|
|
53366
|
-
"privacy": "public",
|
|
53367
|
-
"description": "The prompt symbol to use for unfilled parts of the mask.",
|
|
53368
|
-
"attribute": "prompt",
|
|
53369
|
-
"inheritedFrom": {
|
|
53370
|
-
"name": "IgcMaskInputBaseComponent",
|
|
53371
|
-
"module": "src/components/mask-input/mask-input-base.ts"
|
|
53372
|
-
}
|
|
53373
|
-
},
|
|
53374
|
-
{
|
|
53375
|
-
"kind": "field",
|
|
53376
|
-
"name": "inputSelection",
|
|
53377
|
-
"type": {
|
|
53378
|
-
"text": "MaskRange"
|
|
53492
|
+
"text": "MaskSelection"
|
|
53379
53493
|
},
|
|
53380
53494
|
"privacy": "protected",
|
|
53381
53495
|
"readonly": true,
|
|
@@ -53384,36 +53498,18 @@
|
|
|
53384
53498
|
"module": "src/components/mask-input/mask-input-base.ts"
|
|
53385
53499
|
}
|
|
53386
53500
|
},
|
|
53387
|
-
{
|
|
53388
|
-
"kind": "field",
|
|
53389
|
-
"name": "emptyMask",
|
|
53390
|
-
"type": {
|
|
53391
|
-
"text": "string"
|
|
53392
|
-
},
|
|
53393
|
-
"privacy": "protected",
|
|
53394
|
-
"readonly": true,
|
|
53395
|
-
"inheritedFrom": {
|
|
53396
|
-
"name": "IgcMaskInputBaseComponent",
|
|
53397
|
-
"module": "src/components/mask-input/mask-input-base.ts"
|
|
53398
|
-
}
|
|
53399
|
-
},
|
|
53400
|
-
{
|
|
53401
|
-
"kind": "method",
|
|
53402
|
-
"name": "select",
|
|
53403
|
-
"privacy": "public",
|
|
53404
|
-
"description": "Selects all text within the input.",
|
|
53405
|
-
"inheritedFrom": {
|
|
53406
|
-
"name": "IgcMaskInputBaseComponent",
|
|
53407
|
-
"module": "src/components/mask-input/mask-input-base.ts"
|
|
53408
|
-
}
|
|
53409
|
-
},
|
|
53410
53501
|
{
|
|
53411
53502
|
"kind": "method",
|
|
53412
|
-
"name": "
|
|
53503
|
+
"name": "_handleInput",
|
|
53413
53504
|
"privacy": "protected",
|
|
53505
|
+
"return": {
|
|
53506
|
+
"type": {
|
|
53507
|
+
"text": "Promise<void>"
|
|
53508
|
+
}
|
|
53509
|
+
},
|
|
53414
53510
|
"parameters": [
|
|
53415
53511
|
{
|
|
53416
|
-
"name": "{
|
|
53512
|
+
"name": "{\n inputType,\n isComposing,\n }",
|
|
53417
53513
|
"type": {
|
|
53418
53514
|
"text": "InputEvent"
|
|
53419
53515
|
}
|
|
@@ -53426,34 +53522,13 @@
|
|
|
53426
53522
|
},
|
|
53427
53523
|
{
|
|
53428
53524
|
"kind": "method",
|
|
53429
|
-
"name": "
|
|
53525
|
+
"name": "_setMaskSelection",
|
|
53430
53526
|
"privacy": "protected",
|
|
53431
|
-
"
|
|
53432
|
-
{
|
|
53433
|
-
"
|
|
53434
|
-
"type": {
|
|
53435
|
-
"text": "KeyboardEvent"
|
|
53436
|
-
}
|
|
53527
|
+
"return": {
|
|
53528
|
+
"type": {
|
|
53529
|
+
"text": "void"
|
|
53437
53530
|
}
|
|
53438
|
-
|
|
53439
|
-
"inheritedFrom": {
|
|
53440
|
-
"name": "IgcMaskInputBaseComponent",
|
|
53441
|
-
"module": "src/components/mask-input/mask-input-base.ts"
|
|
53442
|
-
}
|
|
53443
|
-
},
|
|
53444
|
-
{
|
|
53445
|
-
"kind": "method",
|
|
53446
|
-
"name": "handleCut",
|
|
53447
|
-
"privacy": "protected",
|
|
53448
|
-
"inheritedFrom": {
|
|
53449
|
-
"name": "IgcMaskInputBaseComponent",
|
|
53450
|
-
"module": "src/components/mask-input/mask-input-base.ts"
|
|
53451
|
-
}
|
|
53452
|
-
},
|
|
53453
|
-
{
|
|
53454
|
-
"kind": "method",
|
|
53455
|
-
"name": "handleDragStart",
|
|
53456
|
-
"privacy": "protected",
|
|
53531
|
+
},
|
|
53457
53532
|
"inheritedFrom": {
|
|
53458
53533
|
"name": "IgcMaskInputBaseComponent",
|
|
53459
53534
|
"module": "src/components/mask-input/mask-input-base.ts"
|
|
@@ -53461,8 +53536,13 @@
|
|
|
53461
53536
|
},
|
|
53462
53537
|
{
|
|
53463
53538
|
"kind": "method",
|
|
53464
|
-
"name": "
|
|
53539
|
+
"name": "_handleCompositionStart",
|
|
53465
53540
|
"privacy": "protected",
|
|
53541
|
+
"return": {
|
|
53542
|
+
"type": {
|
|
53543
|
+
"text": "void"
|
|
53544
|
+
}
|
|
53545
|
+
},
|
|
53466
53546
|
"inheritedFrom": {
|
|
53467
53547
|
"name": "IgcMaskInputBaseComponent",
|
|
53468
53548
|
"module": "src/components/mask-input/mask-input-base.ts"
|
|
@@ -53470,8 +53550,13 @@
|
|
|
53470
53550
|
},
|
|
53471
53551
|
{
|
|
53472
53552
|
"kind": "method",
|
|
53473
|
-
"name": "
|
|
53553
|
+
"name": "_handleCompositionEnd",
|
|
53474
53554
|
"privacy": "protected",
|
|
53555
|
+
"return": {
|
|
53556
|
+
"type": {
|
|
53557
|
+
"text": "void"
|
|
53558
|
+
}
|
|
53559
|
+
},
|
|
53475
53560
|
"parameters": [
|
|
53476
53561
|
{
|
|
53477
53562
|
"name": "{ data }",
|
|
@@ -53487,8 +53572,28 @@
|
|
|
53487
53572
|
},
|
|
53488
53573
|
{
|
|
53489
53574
|
"kind": "method",
|
|
53490
|
-
"name": "
|
|
53575
|
+
"name": "_handleClick",
|
|
53491
53576
|
"privacy": "protected",
|
|
53577
|
+
"return": {
|
|
53578
|
+
"type": {
|
|
53579
|
+
"text": "void"
|
|
53580
|
+
}
|
|
53581
|
+
},
|
|
53582
|
+
"inheritedFrom": {
|
|
53583
|
+
"name": "IgcMaskInputBaseComponent",
|
|
53584
|
+
"module": "src/components/mask-input/mask-input-base.ts"
|
|
53585
|
+
}
|
|
53586
|
+
},
|
|
53587
|
+
{
|
|
53588
|
+
"kind": "method",
|
|
53589
|
+
"name": "select",
|
|
53590
|
+
"privacy": "public",
|
|
53591
|
+
"return": {
|
|
53592
|
+
"type": {
|
|
53593
|
+
"text": "void"
|
|
53594
|
+
}
|
|
53595
|
+
},
|
|
53596
|
+
"description": "Selects all text within the input.",
|
|
53492
53597
|
"inheritedFrom": {
|
|
53493
53598
|
"name": "IgcMaskInputBaseComponent",
|
|
53494
53599
|
"module": "src/components/mask-input/mask-input-base.ts"
|
|
@@ -54520,29 +54625,36 @@
|
|
|
54520
54625
|
},
|
|
54521
54626
|
{
|
|
54522
54627
|
"name": "value",
|
|
54523
|
-
"type": {
|
|
54524
|
-
"text": "string"
|
|
54525
|
-
},
|
|
54526
54628
|
"description": "The value of the input.\n\nRegardless of the currently set `value-mode`, an empty value will return an empty string.",
|
|
54527
54629
|
"fieldName": "value",
|
|
54528
|
-
"attribute": "value"
|
|
54630
|
+
"attribute": "value",
|
|
54631
|
+
"type": {
|
|
54632
|
+
"text": "string"
|
|
54633
|
+
}
|
|
54529
54634
|
},
|
|
54530
54635
|
{
|
|
54531
54636
|
"name": "mask",
|
|
54637
|
+
"description": "The masked pattern of the component.",
|
|
54638
|
+
"default": "'CCCCCCCCCC'",
|
|
54639
|
+
"fieldName": "mask",
|
|
54640
|
+
"attribute": "mask",
|
|
54532
54641
|
"type": {
|
|
54533
54642
|
"text": "string"
|
|
54534
54643
|
},
|
|
54535
|
-
"
|
|
54536
|
-
|
|
54537
|
-
|
|
54644
|
+
"inheritedFrom": {
|
|
54645
|
+
"name": "IgcMaskInputBaseComponent",
|
|
54646
|
+
"module": "src/components/mask-input/mask-input-base.ts"
|
|
54647
|
+
}
|
|
54538
54648
|
},
|
|
54539
54649
|
{
|
|
54540
54650
|
"name": "prompt",
|
|
54651
|
+
"description": "The prompt symbol to use for unfilled parts of the mask pattern.",
|
|
54652
|
+
"default": "'_'",
|
|
54653
|
+
"fieldName": "prompt",
|
|
54654
|
+
"attribute": "prompt",
|
|
54541
54655
|
"type": {
|
|
54542
54656
|
"text": "string"
|
|
54543
54657
|
},
|
|
54544
|
-
"description": "The prompt symbol to use for unfilled parts of the mask.",
|
|
54545
|
-
"fieldName": "prompt",
|
|
54546
54658
|
"inheritedFrom": {
|
|
54547
54659
|
"name": "IgcMaskInputBaseComponent",
|
|
54548
54660
|
"module": "src/components/mask-input/mask-input-base.ts"
|
|
@@ -69030,7 +69142,7 @@
|
|
|
69030
69142
|
"name": "*",
|
|
69031
69143
|
"declaration": {
|
|
69032
69144
|
"name": "*",
|
|
69033
|
-
"
|
|
69145
|
+
"module": "src/components/types.js"
|
|
69034
69146
|
}
|
|
69035
69147
|
},
|
|
69036
69148
|
{
|
|
@@ -69230,14 +69342,14 @@
|
|
|
69230
69342
|
"name": "*",
|
|
69231
69343
|
"declaration": {
|
|
69232
69344
|
"name": "*",
|
|
69233
|
-
"
|
|
69345
|
+
"module": "src/components/chat/types.js"
|
|
69234
69346
|
}
|
|
69235
69347
|
}
|
|
69236
69348
|
]
|
|
69237
69349
|
},
|
|
69238
69350
|
{
|
|
69239
69351
|
"kind": "javascript-module",
|
|
69240
|
-
"path": "src/
|
|
69352
|
+
"path": "src/extras/chat-markdown-renderer.ts",
|
|
69241
69353
|
"declarations": [
|
|
69242
69354
|
{
|
|
69243
69355
|
"kind": "function",
|
|
@@ -69259,7 +69371,7 @@
|
|
|
69259
69371
|
"name": "createMarkdownRenderer",
|
|
69260
69372
|
"declaration": {
|
|
69261
69373
|
"name": "createMarkdownRenderer",
|
|
69262
|
-
"module": "src/
|
|
69374
|
+
"module": "src/extras/chat-markdown-renderer.ts"
|
|
69263
69375
|
}
|
|
69264
69376
|
}
|
|
69265
69377
|
]
|
|
@@ -69271,10 +69383,10 @@
|
|
|
69271
69383
|
"exports": [
|
|
69272
69384
|
{
|
|
69273
69385
|
"kind": "js",
|
|
69274
|
-
"name": "
|
|
69386
|
+
"name": "*",
|
|
69275
69387
|
"declaration": {
|
|
69276
|
-
"name": "
|
|
69277
|
-
"module": "
|
|
69388
|
+
"name": "*",
|
|
69389
|
+
"module": "src/extras/chat-markdown-renderer.js"
|
|
69278
69390
|
}
|
|
69279
69391
|
}
|
|
69280
69392
|
]
|