@operato/data-grist 0.2.40 → 0.2.44
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 +42 -0
- package/custom-elements.json +1497 -1325
- package/demo/index.html +79 -39
- package/dist/src/data-grid/data-grid-header.d.ts +1 -1
- package/dist/src/data-grid/data-grid-header.js +16 -8
- package/dist/src/data-grid/data-grid-header.js.map +1 -1
- package/dist/src/data-grist.d.ts +2 -2
- package/dist/src/data-grist.js +6 -4
- package/dist/src/data-grist.js.map +1 -1
- package/dist/src/filters/filter-checkbox.d.ts +2 -0
- package/dist/src/filters/filter-checkbox.js +30 -0
- package/dist/src/filters/filter-checkbox.js.map +1 -0
- package/dist/src/filters/filter-input.d.ts +2 -0
- package/dist/src/filters/filter-input.js +7 -0
- package/dist/src/filters/filter-input.js.map +1 -0
- package/dist/src/filters/filter-range-date.d.ts +2 -0
- package/dist/src/filters/filter-range-date.js +13 -0
- package/dist/src/filters/filter-range-date.js.map +1 -0
- package/dist/src/filters/filter-range-number.d.ts +2 -0
- package/dist/src/filters/filter-range-number.js +10 -0
- package/dist/src/filters/filter-range-number.js.map +1 -0
- package/dist/src/filters/filter-select.d.ts +2 -0
- package/dist/src/filters/filter-select.js +8 -0
- package/dist/src/filters/filter-select.js.map +1 -0
- package/dist/src/filters/filter-styles.d.ts +1 -0
- package/dist/src/filters/filter-styles.js +46 -0
- package/dist/src/filters/filter-styles.js.map +1 -0
- package/dist/src/filters/index.d.ts +5 -1
- package/dist/src/filters/index.js +5 -1
- package/dist/src/filters/index.js.map +1 -1
- package/dist/src/filters/registry.js +26 -23
- package/dist/src/filters/registry.js.map +1 -1
- package/dist/src/types.d.ts +4 -4
- package/dist/src/types.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +7 -7
- package/src/data-grid/data-grid-header.ts +19 -9
- package/src/data-grist.ts +7 -5
- package/src/filters/filter-checkbox.ts +35 -0
- package/src/filters/filter-input.ts +10 -0
- package/src/filters/filter-range-date.ts +16 -0
- package/src/filters/filter-range-number.ts +13 -0
- package/src/filters/filter-select.ts +10 -0
- package/src/filters/filter-styles.ts +46 -0
- package/src/filters/index.ts +5 -1
- package/src/filters/registry.ts +26 -23
- package/src/types.ts +4 -5
- package/dist/src/filters/list-select.d.ts +0 -3
- package/dist/src/filters/list-select.js +0 -12
- package/dist/src/filters/list-select.js.map +0 -1
- package/src/filters/list-select.ts +0 -14
package/custom-elements.json
CHANGED
|
@@ -224,6 +224,13 @@
|
|
|
224
224
|
}
|
|
225
225
|
]
|
|
226
226
|
},
|
|
227
|
+
{
|
|
228
|
+
"kind": "field",
|
|
229
|
+
"name": "sorters",
|
|
230
|
+
"type": {
|
|
231
|
+
"text": "SortersConfig | undefined"
|
|
232
|
+
}
|
|
233
|
+
},
|
|
227
234
|
{
|
|
228
235
|
"kind": "field",
|
|
229
236
|
"name": "dirtyData",
|
|
@@ -9797,34 +9804,123 @@
|
|
|
9797
9804
|
},
|
|
9798
9805
|
{
|
|
9799
9806
|
"kind": "javascript-module",
|
|
9800
|
-
"path": "src/filters/
|
|
9801
|
-
"declarations": [
|
|
9807
|
+
"path": "src/filters/filter-checkbox.ts",
|
|
9808
|
+
"declarations": [
|
|
9809
|
+
{
|
|
9810
|
+
"kind": "function",
|
|
9811
|
+
"name": "FilterCheckbox",
|
|
9812
|
+
"parameters": [
|
|
9813
|
+
{
|
|
9814
|
+
"name": "column"
|
|
9815
|
+
},
|
|
9816
|
+
{
|
|
9817
|
+
"name": "owner"
|
|
9818
|
+
}
|
|
9819
|
+
]
|
|
9820
|
+
}
|
|
9821
|
+
],
|
|
9802
9822
|
"exports": [
|
|
9803
9823
|
{
|
|
9804
9824
|
"kind": "js",
|
|
9805
|
-
"name": "
|
|
9825
|
+
"name": "FilterCheckbox",
|
|
9806
9826
|
"declaration": {
|
|
9807
|
-
"name": "
|
|
9808
|
-
"
|
|
9827
|
+
"name": "FilterCheckbox",
|
|
9828
|
+
"module": "src/filters/filter-checkbox.ts"
|
|
9809
9829
|
}
|
|
9810
|
-
}
|
|
9830
|
+
}
|
|
9831
|
+
]
|
|
9832
|
+
},
|
|
9833
|
+
{
|
|
9834
|
+
"kind": "javascript-module",
|
|
9835
|
+
"path": "src/filters/filter-input.ts",
|
|
9836
|
+
"declarations": [
|
|
9837
|
+
{
|
|
9838
|
+
"kind": "function",
|
|
9839
|
+
"name": "FilterInput",
|
|
9840
|
+
"parameters": [
|
|
9841
|
+
{
|
|
9842
|
+
"name": "column"
|
|
9843
|
+
},
|
|
9844
|
+
{
|
|
9845
|
+
"name": "owner"
|
|
9846
|
+
}
|
|
9847
|
+
]
|
|
9848
|
+
}
|
|
9849
|
+
],
|
|
9850
|
+
"exports": [
|
|
9811
9851
|
{
|
|
9812
9852
|
"kind": "js",
|
|
9813
|
-
"name": "
|
|
9853
|
+
"name": "FilterInput",
|
|
9814
9854
|
"declaration": {
|
|
9815
|
-
"name": "
|
|
9816
|
-
"
|
|
9855
|
+
"name": "FilterInput",
|
|
9856
|
+
"module": "src/filters/filter-input.ts"
|
|
9857
|
+
}
|
|
9858
|
+
}
|
|
9859
|
+
]
|
|
9860
|
+
},
|
|
9861
|
+
{
|
|
9862
|
+
"kind": "javascript-module",
|
|
9863
|
+
"path": "src/filters/filter-range-date.ts",
|
|
9864
|
+
"declarations": [
|
|
9865
|
+
{
|
|
9866
|
+
"kind": "function",
|
|
9867
|
+
"name": "FilterRangeDate",
|
|
9868
|
+
"parameters": [
|
|
9869
|
+
{
|
|
9870
|
+
"name": "column"
|
|
9871
|
+
},
|
|
9872
|
+
{
|
|
9873
|
+
"name": "owner"
|
|
9874
|
+
}
|
|
9875
|
+
]
|
|
9876
|
+
}
|
|
9877
|
+
],
|
|
9878
|
+
"exports": [
|
|
9879
|
+
{
|
|
9880
|
+
"kind": "js",
|
|
9881
|
+
"name": "FilterRangeDate",
|
|
9882
|
+
"declaration": {
|
|
9883
|
+
"name": "FilterRangeDate",
|
|
9884
|
+
"module": "src/filters/filter-range-date.ts"
|
|
9885
|
+
}
|
|
9886
|
+
}
|
|
9887
|
+
]
|
|
9888
|
+
},
|
|
9889
|
+
{
|
|
9890
|
+
"kind": "javascript-module",
|
|
9891
|
+
"path": "src/filters/filter-range-number.ts",
|
|
9892
|
+
"declarations": [
|
|
9893
|
+
{
|
|
9894
|
+
"kind": "function",
|
|
9895
|
+
"name": "FilterRangeNumber",
|
|
9896
|
+
"parameters": [
|
|
9897
|
+
{
|
|
9898
|
+
"name": "column"
|
|
9899
|
+
},
|
|
9900
|
+
{
|
|
9901
|
+
"name": "owner"
|
|
9902
|
+
}
|
|
9903
|
+
]
|
|
9904
|
+
}
|
|
9905
|
+
],
|
|
9906
|
+
"exports": [
|
|
9907
|
+
{
|
|
9908
|
+
"kind": "js",
|
|
9909
|
+
"name": "FilterRangeNumber",
|
|
9910
|
+
"declaration": {
|
|
9911
|
+
"name": "FilterRangeNumber",
|
|
9912
|
+
"module": "src/filters/filter-range-number.ts"
|
|
9817
9913
|
}
|
|
9818
9914
|
}
|
|
9819
9915
|
]
|
|
9820
9916
|
},
|
|
9821
9917
|
{
|
|
9822
9918
|
"kind": "javascript-module",
|
|
9823
|
-
"path": "src/filters/
|
|
9919
|
+
"path": "src/filters/filter-select.ts",
|
|
9824
9920
|
"declarations": [
|
|
9825
9921
|
{
|
|
9826
9922
|
"kind": "function",
|
|
9827
|
-
"name": "
|
|
9923
|
+
"name": "FilterSelect",
|
|
9828
9924
|
"parameters": [
|
|
9829
9925
|
{
|
|
9830
9926
|
"name": "column"
|
|
@@ -9838,10 +9934,86 @@
|
|
|
9838
9934
|
"exports": [
|
|
9839
9935
|
{
|
|
9840
9936
|
"kind": "js",
|
|
9841
|
-
"name": "
|
|
9937
|
+
"name": "FilterSelect",
|
|
9938
|
+
"declaration": {
|
|
9939
|
+
"name": "FilterSelect",
|
|
9940
|
+
"module": "src/filters/filter-select.ts"
|
|
9941
|
+
}
|
|
9942
|
+
}
|
|
9943
|
+
]
|
|
9944
|
+
},
|
|
9945
|
+
{
|
|
9946
|
+
"kind": "javascript-module",
|
|
9947
|
+
"path": "src/filters/filter-styles.ts",
|
|
9948
|
+
"declarations": [
|
|
9949
|
+
{
|
|
9950
|
+
"kind": "variable",
|
|
9951
|
+
"name": "FilterStyles",
|
|
9952
|
+
"default": "css`\n :host {\n --ox-input-label-color: var(--primary-text-color);\n --ox-input-label-font: normal 12px var(--theme-font);\n --ox-input-placeholder-color: var(--primary-color);\n\n --ox-input-padding: var(--padding-narrow) var(--padding-default);\n --ox-input-border: 1px solid rgba(0, 0, 0, 0.2);\n --ox-input-border-radius: var(--border-radius);\n --ox-input-font: normal 14px var(--theme-font);\n --ox-input-color: var(--primary-text-color);\n }\n\n [filter] label {\n display: block;\n font: var(--ox-input-label-font);\n color: var(--ox-input-label-color);\n }\n [filter] input::placeholder {\n color: var(--ox-input-placeholder-color);\n opacity: 0.7;\n }\n [filter] input {\n padding: var(--ox-input-padding);\n border: var(--ox-input-border);\n border-radius: var(--ox-input-border-radius);\n font: var(--ox-input-font);\n color: var(--ox-input-color, #3a5877);\n }\n [filter] input[type='number'] {\n padding-right: var(--padding-narrow);\n max-width: 100px;\n }\n [filter] input[type='datetime-local'] {\n padding-right: var(--padding-narrow);\n max-width: 170px;\n }\n [filter] input[name='from'] {\n margin: 0 0 5px 10px;\n }\n [filter] input[name='to'] {\n margin: 0 10px 5px 0;\n }\n`"
|
|
9953
|
+
}
|
|
9954
|
+
],
|
|
9955
|
+
"exports": [
|
|
9956
|
+
{
|
|
9957
|
+
"kind": "js",
|
|
9958
|
+
"name": "FilterStyles",
|
|
9959
|
+
"declaration": {
|
|
9960
|
+
"name": "FilterStyles",
|
|
9961
|
+
"module": "src/filters/filter-styles.ts"
|
|
9962
|
+
}
|
|
9963
|
+
}
|
|
9964
|
+
]
|
|
9965
|
+
},
|
|
9966
|
+
{
|
|
9967
|
+
"kind": "javascript-module",
|
|
9968
|
+
"path": "src/filters/index.ts",
|
|
9969
|
+
"declarations": [],
|
|
9970
|
+
"exports": [
|
|
9971
|
+
{
|
|
9972
|
+
"kind": "js",
|
|
9973
|
+
"name": "*",
|
|
9974
|
+
"declaration": {
|
|
9975
|
+
"name": "*",
|
|
9976
|
+
"package": "./registry"
|
|
9977
|
+
}
|
|
9978
|
+
},
|
|
9979
|
+
{
|
|
9980
|
+
"kind": "js",
|
|
9981
|
+
"name": "*",
|
|
9982
|
+
"declaration": {
|
|
9983
|
+
"name": "*",
|
|
9984
|
+
"package": "./filter-select"
|
|
9985
|
+
}
|
|
9986
|
+
},
|
|
9987
|
+
{
|
|
9988
|
+
"kind": "js",
|
|
9989
|
+
"name": "*",
|
|
9990
|
+
"declaration": {
|
|
9991
|
+
"name": "*",
|
|
9992
|
+
"package": "./filter-input"
|
|
9993
|
+
}
|
|
9994
|
+
},
|
|
9995
|
+
{
|
|
9996
|
+
"kind": "js",
|
|
9997
|
+
"name": "*",
|
|
9998
|
+
"declaration": {
|
|
9999
|
+
"name": "*",
|
|
10000
|
+
"package": "./filter-checkbox"
|
|
10001
|
+
}
|
|
10002
|
+
},
|
|
10003
|
+
{
|
|
10004
|
+
"kind": "js",
|
|
10005
|
+
"name": "*",
|
|
10006
|
+
"declaration": {
|
|
10007
|
+
"name": "*",
|
|
10008
|
+
"package": "./filter-range-date"
|
|
10009
|
+
}
|
|
10010
|
+
},
|
|
10011
|
+
{
|
|
10012
|
+
"kind": "js",
|
|
10013
|
+
"name": "*",
|
|
9842
10014
|
"declaration": {
|
|
9843
|
-
"name": "
|
|
9844
|
-
"
|
|
10015
|
+
"name": "*",
|
|
10016
|
+
"package": "./filter-range-number"
|
|
9845
10017
|
}
|
|
9846
10018
|
}
|
|
9847
10019
|
]
|
|
@@ -10605,41 +10777,6 @@
|
|
|
10605
10777
|
}
|
|
10606
10778
|
]
|
|
10607
10779
|
},
|
|
10608
|
-
{
|
|
10609
|
-
"kind": "javascript-module",
|
|
10610
|
-
"path": "src/interfaces/index.ts",
|
|
10611
|
-
"declarations": [],
|
|
10612
|
-
"exports": [
|
|
10613
|
-
{
|
|
10614
|
-
"kind": "js",
|
|
10615
|
-
"name": "*",
|
|
10616
|
-
"declaration": {
|
|
10617
|
-
"name": "*",
|
|
10618
|
-
"package": "./ox-search-field"
|
|
10619
|
-
}
|
|
10620
|
-
},
|
|
10621
|
-
{
|
|
10622
|
-
"kind": "js",
|
|
10623
|
-
"name": "*",
|
|
10624
|
-
"declaration": {
|
|
10625
|
-
"name": "*",
|
|
10626
|
-
"package": "./ox-grist-search-form"
|
|
10627
|
-
}
|
|
10628
|
-
}
|
|
10629
|
-
]
|
|
10630
|
-
},
|
|
10631
|
-
{
|
|
10632
|
-
"kind": "javascript-module",
|
|
10633
|
-
"path": "src/interfaces/ox-grist-search-form.ts",
|
|
10634
|
-
"declarations": [],
|
|
10635
|
-
"exports": []
|
|
10636
|
-
},
|
|
10637
|
-
{
|
|
10638
|
-
"kind": "javascript-module",
|
|
10639
|
-
"path": "src/interfaces/ox-search-field.ts",
|
|
10640
|
-
"declarations": [],
|
|
10641
|
-
"exports": []
|
|
10642
|
-
},
|
|
10643
10780
|
{
|
|
10644
10781
|
"kind": "javascript-module",
|
|
10645
10782
|
"path": "src/record-view/index.ts",
|
|
@@ -11541,7 +11678,7 @@
|
|
|
11541
11678
|
},
|
|
11542
11679
|
{
|
|
11543
11680
|
"kind": "javascript-module",
|
|
11544
|
-
"path": "src/
|
|
11681
|
+
"path": "src/utils/index.ts",
|
|
11545
11682
|
"declarations": [],
|
|
11546
11683
|
"exports": [
|
|
11547
11684
|
{
|
|
@@ -11549,622 +11686,707 @@
|
|
|
11549
11686
|
"name": "*",
|
|
11550
11687
|
"declaration": {
|
|
11551
11688
|
"name": "*",
|
|
11552
|
-
"package": "./
|
|
11689
|
+
"package": "./supports-passive"
|
|
11553
11690
|
}
|
|
11554
|
-
}
|
|
11691
|
+
}
|
|
11692
|
+
]
|
|
11693
|
+
},
|
|
11694
|
+
{
|
|
11695
|
+
"kind": "javascript-module",
|
|
11696
|
+
"path": "src/utils/supports-passive.ts",
|
|
11697
|
+
"declarations": [
|
|
11555
11698
|
{
|
|
11556
|
-
"kind": "
|
|
11557
|
-
"name": "
|
|
11558
|
-
"
|
|
11559
|
-
"
|
|
11560
|
-
|
|
11561
|
-
|
|
11562
|
-
}
|
|
11699
|
+
"kind": "variable",
|
|
11700
|
+
"name": "supportsPassive",
|
|
11701
|
+
"type": {
|
|
11702
|
+
"text": "boolean"
|
|
11703
|
+
},
|
|
11704
|
+
"default": "false"
|
|
11705
|
+
}
|
|
11706
|
+
],
|
|
11707
|
+
"exports": [
|
|
11563
11708
|
{
|
|
11564
11709
|
"kind": "js",
|
|
11565
|
-
"name": "
|
|
11710
|
+
"name": "supportsPassive",
|
|
11566
11711
|
"declaration": {
|
|
11567
|
-
"name": "
|
|
11568
|
-
"
|
|
11712
|
+
"name": "supportsPassive",
|
|
11713
|
+
"module": "src/utils/supports-passive.ts"
|
|
11569
11714
|
}
|
|
11570
|
-
}
|
|
11715
|
+
}
|
|
11716
|
+
]
|
|
11717
|
+
},
|
|
11718
|
+
{
|
|
11719
|
+
"kind": "javascript-module",
|
|
11720
|
+
"path": "src/data-card/event-handlers/data-card-click-handler.ts",
|
|
11721
|
+
"declarations": [
|
|
11722
|
+
{
|
|
11723
|
+
"kind": "function",
|
|
11724
|
+
"name": "dataCardClickHandler",
|
|
11725
|
+
"return": {
|
|
11726
|
+
"type": {
|
|
11727
|
+
"text": "void"
|
|
11728
|
+
}
|
|
11729
|
+
},
|
|
11730
|
+
"parameters": [
|
|
11731
|
+
{
|
|
11732
|
+
"name": "e",
|
|
11733
|
+
"type": {
|
|
11734
|
+
"text": "MouseEvent"
|
|
11735
|
+
}
|
|
11736
|
+
}
|
|
11737
|
+
],
|
|
11738
|
+
"description": "ox-card 의 click handler\n\n- handler의 this 는 ox-card임."
|
|
11739
|
+
}
|
|
11740
|
+
],
|
|
11741
|
+
"exports": [
|
|
11571
11742
|
{
|
|
11572
11743
|
"kind": "js",
|
|
11573
|
-
"name": "
|
|
11744
|
+
"name": "dataCardClickHandler",
|
|
11574
11745
|
"declaration": {
|
|
11575
|
-
"name": "
|
|
11576
|
-
"
|
|
11577
|
-
}
|
|
11578
|
-
},
|
|
11579
|
-
{
|
|
11580
|
-
"kind": "js",
|
|
11581
|
-
"name": "*",
|
|
11582
|
-
"declaration": {
|
|
11583
|
-
"name": "*",
|
|
11584
|
-
"package": "./ox-number-field"
|
|
11746
|
+
"name": "dataCardClickHandler",
|
|
11747
|
+
"module": "src/data-card/event-handlers/data-card-click-handler.ts"
|
|
11585
11748
|
}
|
|
11586
|
-
}
|
|
11749
|
+
}
|
|
11750
|
+
]
|
|
11751
|
+
},
|
|
11752
|
+
{
|
|
11753
|
+
"kind": "javascript-module",
|
|
11754
|
+
"path": "src/data-card/event-handlers/data-card-dblclick-handler.ts",
|
|
11755
|
+
"declarations": [
|
|
11587
11756
|
{
|
|
11588
|
-
"kind": "
|
|
11589
|
-
"name": "
|
|
11590
|
-
"
|
|
11591
|
-
"
|
|
11592
|
-
|
|
11593
|
-
|
|
11594
|
-
|
|
11757
|
+
"kind": "function",
|
|
11758
|
+
"name": "dataCardDblclickHandler",
|
|
11759
|
+
"return": {
|
|
11760
|
+
"type": {
|
|
11761
|
+
"text": "void"
|
|
11762
|
+
}
|
|
11763
|
+
},
|
|
11764
|
+
"parameters": [
|
|
11765
|
+
{
|
|
11766
|
+
"name": "e",
|
|
11767
|
+
"type": {
|
|
11768
|
+
"text": "MouseEvent"
|
|
11769
|
+
}
|
|
11770
|
+
}
|
|
11771
|
+
],
|
|
11772
|
+
"description": "ox-card 의 dblclick handler\n\n- handler의 this 는 ox-card임."
|
|
11773
|
+
}
|
|
11774
|
+
],
|
|
11775
|
+
"exports": [
|
|
11595
11776
|
{
|
|
11596
11777
|
"kind": "js",
|
|
11597
|
-
"name": "
|
|
11778
|
+
"name": "dataCardDblclickHandler",
|
|
11598
11779
|
"declaration": {
|
|
11599
|
-
"name": "
|
|
11600
|
-
"
|
|
11780
|
+
"name": "dataCardDblclickHandler",
|
|
11781
|
+
"module": "src/data-card/event-handlers/data-card-dblclick-handler.ts"
|
|
11601
11782
|
}
|
|
11602
11783
|
}
|
|
11603
11784
|
]
|
|
11604
11785
|
},
|
|
11605
11786
|
{
|
|
11606
11787
|
"kind": "javascript-module",
|
|
11607
|
-
"path": "src/
|
|
11788
|
+
"path": "src/data-card/event-handlers/record-card-click-handler.ts",
|
|
11608
11789
|
"declarations": [
|
|
11609
11790
|
{
|
|
11610
|
-
"kind": "
|
|
11611
|
-
"
|
|
11612
|
-
"
|
|
11613
|
-
|
|
11791
|
+
"kind": "function",
|
|
11792
|
+
"name": "recordCardClickHandler",
|
|
11793
|
+
"return": {
|
|
11794
|
+
"type": {
|
|
11795
|
+
"text": "void"
|
|
11796
|
+
}
|
|
11797
|
+
},
|
|
11798
|
+
"parameters": [
|
|
11614
11799
|
{
|
|
11615
|
-
"
|
|
11616
|
-
"name": "field",
|
|
11800
|
+
"name": "this",
|
|
11617
11801
|
"type": {
|
|
11618
|
-
"text": "
|
|
11802
|
+
"text": "RecordCard"
|
|
11619
11803
|
}
|
|
11620
11804
|
},
|
|
11621
11805
|
{
|
|
11622
|
-
"
|
|
11623
|
-
"name": "form",
|
|
11624
|
-
"type": {
|
|
11625
|
-
"text": "HTMLFormElement | null"
|
|
11626
|
-
},
|
|
11627
|
-
"privacy": "private",
|
|
11628
|
-
"default": "null"
|
|
11629
|
-
},
|
|
11630
|
-
{
|
|
11631
|
-
"kind": "field",
|
|
11632
|
-
"name": "value",
|
|
11806
|
+
"name": "e",
|
|
11633
11807
|
"type": {
|
|
11634
|
-
"text": "
|
|
11808
|
+
"text": "MouseEvent"
|
|
11635
11809
|
}
|
|
11636
|
-
}
|
|
11637
|
-
|
|
11638
|
-
|
|
11639
|
-
|
|
11640
|
-
|
|
11641
|
-
|
|
11642
|
-
|
|
11643
|
-
|
|
11644
|
-
|
|
11645
|
-
|
|
11646
|
-
|
|
11647
|
-
|
|
11648
|
-
|
|
11649
|
-
|
|
11650
|
-
|
|
11651
|
-
|
|
11652
|
-
|
|
11653
|
-
|
|
11810
|
+
}
|
|
11811
|
+
],
|
|
11812
|
+
"description": "ox-record-card 의 click handler\n\n- handler의 this 는 ox-record-card임."
|
|
11813
|
+
}
|
|
11814
|
+
],
|
|
11815
|
+
"exports": [
|
|
11816
|
+
{
|
|
11817
|
+
"kind": "js",
|
|
11818
|
+
"name": "recordCardClickHandler",
|
|
11819
|
+
"declaration": {
|
|
11820
|
+
"name": "recordCardClickHandler",
|
|
11821
|
+
"module": "src/data-card/event-handlers/record-card-click-handler.ts"
|
|
11822
|
+
}
|
|
11823
|
+
}
|
|
11824
|
+
]
|
|
11825
|
+
},
|
|
11826
|
+
{
|
|
11827
|
+
"kind": "javascript-module",
|
|
11828
|
+
"path": "src/data-card/event-handlers/record-card-dblclick-handler.ts",
|
|
11829
|
+
"declarations": [
|
|
11830
|
+
{
|
|
11831
|
+
"kind": "function",
|
|
11832
|
+
"name": "recordCardDblClickHandler",
|
|
11833
|
+
"return": {
|
|
11834
|
+
"type": {
|
|
11835
|
+
"text": "void"
|
|
11836
|
+
}
|
|
11837
|
+
},
|
|
11838
|
+
"parameters": [
|
|
11654
11839
|
{
|
|
11655
|
-
"
|
|
11656
|
-
"name": "input",
|
|
11840
|
+
"name": "this",
|
|
11657
11841
|
"type": {
|
|
11658
|
-
"text": "
|
|
11659
|
-
}
|
|
11660
|
-
},
|
|
11661
|
-
{
|
|
11662
|
-
"kind": "method",
|
|
11663
|
-
"name": "findFormElement",
|
|
11664
|
-
"privacy": "private",
|
|
11665
|
-
"return": {
|
|
11666
|
-
"type": {
|
|
11667
|
-
"text": "HTMLFormElement | null"
|
|
11668
|
-
}
|
|
11669
|
-
}
|
|
11670
|
-
},
|
|
11671
|
-
{
|
|
11672
|
-
"kind": "method",
|
|
11673
|
-
"name": "registerCustomEventHandlers",
|
|
11674
|
-
"privacy": "private",
|
|
11675
|
-
"return": {
|
|
11676
|
-
"type": {
|
|
11677
|
-
"text": "void"
|
|
11678
|
-
}
|
|
11679
|
-
},
|
|
11680
|
-
"parameters": [
|
|
11681
|
-
{
|
|
11682
|
-
"name": "handlers",
|
|
11683
|
-
"type": {
|
|
11684
|
-
"text": "Record<string, (event: Event) => void>"
|
|
11685
|
-
}
|
|
11686
|
-
}
|
|
11687
|
-
]
|
|
11688
|
-
},
|
|
11689
|
-
{
|
|
11690
|
-
"kind": "method",
|
|
11691
|
-
"name": "registerBasicEventHandlers",
|
|
11692
|
-
"privacy": "private",
|
|
11693
|
-
"return": {
|
|
11694
|
-
"type": {
|
|
11695
|
-
"text": "void"
|
|
11696
|
-
}
|
|
11842
|
+
"text": "RecordCard"
|
|
11697
11843
|
}
|
|
11698
11844
|
},
|
|
11699
11845
|
{
|
|
11700
|
-
"
|
|
11701
|
-
"name": "appendFormData",
|
|
11702
|
-
"privacy": "private",
|
|
11703
|
-
"return": {
|
|
11704
|
-
"type": {
|
|
11705
|
-
"text": "void"
|
|
11706
|
-
}
|
|
11707
|
-
},
|
|
11708
|
-
"parameters": [
|
|
11709
|
-
{
|
|
11710
|
-
"name": "{ formData }",
|
|
11711
|
-
"type": {
|
|
11712
|
-
"text": "FormDataEvent"
|
|
11713
|
-
}
|
|
11714
|
-
}
|
|
11715
|
-
]
|
|
11716
|
-
},
|
|
11717
|
-
{
|
|
11718
|
-
"kind": "method",
|
|
11719
|
-
"name": "submit",
|
|
11720
|
-
"privacy": "private",
|
|
11721
|
-
"return": {
|
|
11722
|
-
"type": {
|
|
11723
|
-
"text": "void"
|
|
11724
|
-
}
|
|
11725
|
-
}
|
|
11726
|
-
}
|
|
11727
|
-
],
|
|
11728
|
-
"events": [
|
|
11729
|
-
{
|
|
11730
|
-
"name": "submit-field",
|
|
11846
|
+
"name": "e",
|
|
11731
11847
|
"type": {
|
|
11732
|
-
"text": "
|
|
11848
|
+
"text": "MouseEvent"
|
|
11733
11849
|
}
|
|
11734
11850
|
}
|
|
11735
11851
|
],
|
|
11736
|
-
"
|
|
11737
|
-
"name": "LitElement",
|
|
11738
|
-
"package": "lit-element"
|
|
11739
|
-
},
|
|
11740
|
-
"customElement": true
|
|
11852
|
+
"description": "ox-record-card 의 dblclick handler\n\n- handler의 this 는 ox-record-card임."
|
|
11741
11853
|
}
|
|
11742
11854
|
],
|
|
11743
11855
|
"exports": [
|
|
11744
11856
|
{
|
|
11745
11857
|
"kind": "js",
|
|
11746
|
-
"name": "
|
|
11858
|
+
"name": "recordCardDblClickHandler",
|
|
11747
11859
|
"declaration": {
|
|
11748
|
-
"name": "
|
|
11749
|
-
"module": "src/
|
|
11860
|
+
"name": "recordCardDblClickHandler",
|
|
11861
|
+
"module": "src/data-card/event-handlers/record-card-dblclick-handler.ts"
|
|
11750
11862
|
}
|
|
11751
11863
|
}
|
|
11752
11864
|
]
|
|
11753
11865
|
},
|
|
11754
11866
|
{
|
|
11755
11867
|
"kind": "javascript-module",
|
|
11756
|
-
"path": "src/
|
|
11868
|
+
"path": "src/data-grid/event-handlers/data-grid-body-click-handler.ts",
|
|
11757
11869
|
"declarations": [
|
|
11758
11870
|
{
|
|
11759
|
-
"kind": "
|
|
11760
|
-
"
|
|
11761
|
-
"
|
|
11762
|
-
|
|
11871
|
+
"kind": "function",
|
|
11872
|
+
"name": "dataGridBodyClickHandler",
|
|
11873
|
+
"return": {
|
|
11874
|
+
"type": {
|
|
11875
|
+
"text": "void"
|
|
11876
|
+
}
|
|
11877
|
+
},
|
|
11878
|
+
"parameters": [
|
|
11763
11879
|
{
|
|
11764
|
-
"
|
|
11765
|
-
"name": "field",
|
|
11880
|
+
"name": "this",
|
|
11766
11881
|
"type": {
|
|
11767
|
-
"text": "
|
|
11768
|
-
},
|
|
11769
|
-
"attribute": "field",
|
|
11770
|
-
"inheritedFrom": {
|
|
11771
|
-
"name": "OXBasicField",
|
|
11772
|
-
"module": "src/search-form/ox-basic-field.ts"
|
|
11882
|
+
"text": "DataGridBody"
|
|
11773
11883
|
}
|
|
11774
11884
|
},
|
|
11775
11885
|
{
|
|
11776
|
-
"
|
|
11777
|
-
"name": "value",
|
|
11886
|
+
"name": "e",
|
|
11778
11887
|
"type": {
|
|
11779
|
-
"text": "
|
|
11780
|
-
},
|
|
11781
|
-
"attribute": "value",
|
|
11782
|
-
"inheritedFrom": {
|
|
11783
|
-
"name": "OXBasicField",
|
|
11784
|
-
"module": "src/search-form/ox-basic-field.ts"
|
|
11888
|
+
"text": "Event"
|
|
11785
11889
|
}
|
|
11786
|
-
}
|
|
11787
|
-
|
|
11788
|
-
|
|
11789
|
-
|
|
11790
|
-
|
|
11791
|
-
|
|
11792
|
-
|
|
11793
|
-
|
|
11794
|
-
|
|
11795
|
-
|
|
11796
|
-
|
|
11797
|
-
|
|
11798
|
-
|
|
11799
|
-
|
|
11800
|
-
|
|
11801
|
-
|
|
11802
|
-
|
|
11803
|
-
|
|
11804
|
-
|
|
11805
|
-
|
|
11806
|
-
|
|
11807
|
-
|
|
11808
|
-
|
|
11809
|
-
|
|
11810
|
-
"
|
|
11811
|
-
|
|
11812
|
-
|
|
11813
|
-
|
|
11814
|
-
"text": "void"
|
|
11815
|
-
}
|
|
11816
|
-
}
|
|
11817
|
-
},
|
|
11890
|
+
}
|
|
11891
|
+
]
|
|
11892
|
+
}
|
|
11893
|
+
],
|
|
11894
|
+
"exports": [
|
|
11895
|
+
{
|
|
11896
|
+
"kind": "js",
|
|
11897
|
+
"name": "dataGridBodyClickHandler",
|
|
11898
|
+
"declaration": {
|
|
11899
|
+
"name": "dataGridBodyClickHandler",
|
|
11900
|
+
"module": "src/data-grid/event-handlers/data-grid-body-click-handler.ts"
|
|
11901
|
+
}
|
|
11902
|
+
}
|
|
11903
|
+
]
|
|
11904
|
+
},
|
|
11905
|
+
{
|
|
11906
|
+
"kind": "javascript-module",
|
|
11907
|
+
"path": "src/data-grid/event-handlers/data-grid-body-dblclick-handler.ts",
|
|
11908
|
+
"declarations": [
|
|
11909
|
+
{
|
|
11910
|
+
"kind": "function",
|
|
11911
|
+
"name": "dataGridBodyDblclickHandler",
|
|
11912
|
+
"return": {
|
|
11913
|
+
"type": {
|
|
11914
|
+
"text": "Promise<void>"
|
|
11915
|
+
}
|
|
11916
|
+
},
|
|
11917
|
+
"parameters": [
|
|
11818
11918
|
{
|
|
11819
|
-
"
|
|
11820
|
-
"name": "form",
|
|
11919
|
+
"name": "this",
|
|
11821
11920
|
"type": {
|
|
11822
|
-
"text": "
|
|
11823
|
-
},
|
|
11824
|
-
"privacy": "private",
|
|
11825
|
-
"default": "null",
|
|
11826
|
-
"inheritedFrom": {
|
|
11827
|
-
"name": "OXBasicField",
|
|
11828
|
-
"module": "src/search-form/ox-basic-field.ts"
|
|
11921
|
+
"text": "DataGridBody"
|
|
11829
11922
|
}
|
|
11830
11923
|
},
|
|
11831
11924
|
{
|
|
11832
|
-
"
|
|
11833
|
-
"name": "input",
|
|
11925
|
+
"name": "e",
|
|
11834
11926
|
"type": {
|
|
11835
|
-
"text": "
|
|
11836
|
-
},
|
|
11837
|
-
"inheritedFrom": {
|
|
11838
|
-
"name": "OXBasicField",
|
|
11839
|
-
"module": "src/search-form/ox-basic-field.ts"
|
|
11840
|
-
}
|
|
11841
|
-
},
|
|
11842
|
-
{
|
|
11843
|
-
"kind": "method",
|
|
11844
|
-
"name": "findFormElement",
|
|
11845
|
-
"privacy": "private",
|
|
11846
|
-
"return": {
|
|
11847
|
-
"type": {
|
|
11848
|
-
"text": "HTMLFormElement | null"
|
|
11849
|
-
}
|
|
11850
|
-
},
|
|
11851
|
-
"inheritedFrom": {
|
|
11852
|
-
"name": "OXBasicField",
|
|
11853
|
-
"module": "src/search-form/ox-basic-field.ts"
|
|
11854
|
-
}
|
|
11855
|
-
},
|
|
11856
|
-
{
|
|
11857
|
-
"kind": "method",
|
|
11858
|
-
"name": "registerCustomEventHandlers",
|
|
11859
|
-
"privacy": "private",
|
|
11860
|
-
"return": {
|
|
11861
|
-
"type": {
|
|
11862
|
-
"text": "void"
|
|
11863
|
-
}
|
|
11864
|
-
},
|
|
11865
|
-
"parameters": [
|
|
11866
|
-
{
|
|
11867
|
-
"name": "handlers",
|
|
11868
|
-
"type": {
|
|
11869
|
-
"text": "Record<string, (event: Event) => void>"
|
|
11870
|
-
}
|
|
11871
|
-
}
|
|
11872
|
-
],
|
|
11873
|
-
"inheritedFrom": {
|
|
11874
|
-
"name": "OXBasicField",
|
|
11875
|
-
"module": "src/search-form/ox-basic-field.ts"
|
|
11876
|
-
}
|
|
11877
|
-
},
|
|
11878
|
-
{
|
|
11879
|
-
"kind": "method",
|
|
11880
|
-
"name": "registerBasicEventHandlers",
|
|
11881
|
-
"privacy": "private",
|
|
11882
|
-
"return": {
|
|
11883
|
-
"type": {
|
|
11884
|
-
"text": "void"
|
|
11885
|
-
}
|
|
11886
|
-
},
|
|
11887
|
-
"inheritedFrom": {
|
|
11888
|
-
"name": "OXBasicField",
|
|
11889
|
-
"module": "src/search-form/ox-basic-field.ts"
|
|
11890
|
-
}
|
|
11891
|
-
},
|
|
11892
|
-
{
|
|
11893
|
-
"kind": "method",
|
|
11894
|
-
"name": "appendFormData",
|
|
11895
|
-
"privacy": "private",
|
|
11896
|
-
"return": {
|
|
11897
|
-
"type": {
|
|
11898
|
-
"text": "void"
|
|
11899
|
-
}
|
|
11900
|
-
},
|
|
11901
|
-
"parameters": [
|
|
11902
|
-
{
|
|
11903
|
-
"name": "{ formData }",
|
|
11904
|
-
"type": {
|
|
11905
|
-
"text": "FormDataEvent"
|
|
11906
|
-
}
|
|
11907
|
-
}
|
|
11908
|
-
],
|
|
11909
|
-
"inheritedFrom": {
|
|
11910
|
-
"name": "OXBasicField",
|
|
11911
|
-
"module": "src/search-form/ox-basic-field.ts"
|
|
11912
|
-
}
|
|
11913
|
-
},
|
|
11914
|
-
{
|
|
11915
|
-
"kind": "method",
|
|
11916
|
-
"name": "submit",
|
|
11917
|
-
"privacy": "private",
|
|
11918
|
-
"return": {
|
|
11919
|
-
"type": {
|
|
11920
|
-
"text": "void"
|
|
11921
|
-
}
|
|
11922
|
-
},
|
|
11923
|
-
"inheritedFrom": {
|
|
11924
|
-
"name": "OXBasicField",
|
|
11925
|
-
"module": "src/search-form/ox-basic-field.ts"
|
|
11927
|
+
"text": "Event"
|
|
11926
11928
|
}
|
|
11927
11929
|
}
|
|
11928
11930
|
],
|
|
11929
|
-
"
|
|
11931
|
+
"description": "ox-grid-body 의 dblclick handler\n\n- handler의 this 는 ox-grid-body임."
|
|
11932
|
+
}
|
|
11933
|
+
],
|
|
11934
|
+
"exports": [
|
|
11935
|
+
{
|
|
11936
|
+
"kind": "js",
|
|
11937
|
+
"name": "dataGridBodyDblclickHandler",
|
|
11938
|
+
"declaration": {
|
|
11939
|
+
"name": "dataGridBodyDblclickHandler",
|
|
11940
|
+
"module": "src/data-grid/event-handlers/data-grid-body-dblclick-handler.ts"
|
|
11941
|
+
}
|
|
11942
|
+
}
|
|
11943
|
+
]
|
|
11944
|
+
},
|
|
11945
|
+
{
|
|
11946
|
+
"kind": "javascript-module",
|
|
11947
|
+
"path": "src/data-grid/event-handlers/data-grid-body-keydown-handler.ts",
|
|
11948
|
+
"declarations": [
|
|
11949
|
+
{
|
|
11950
|
+
"kind": "function",
|
|
11951
|
+
"name": "dataGridBodyKeydownHandler",
|
|
11952
|
+
"return": {
|
|
11953
|
+
"type": {
|
|
11954
|
+
"text": "Promise<void>"
|
|
11955
|
+
}
|
|
11956
|
+
},
|
|
11957
|
+
"parameters": [
|
|
11930
11958
|
{
|
|
11931
|
-
"name": "
|
|
11959
|
+
"name": "this",
|
|
11932
11960
|
"type": {
|
|
11933
|
-
"text": "
|
|
11934
|
-
}
|
|
11935
|
-
"fieldName": "field"
|
|
11961
|
+
"text": "DataGridBody"
|
|
11962
|
+
}
|
|
11936
11963
|
},
|
|
11937
11964
|
{
|
|
11938
|
-
"name": "
|
|
11939
|
-
"type": {
|
|
11940
|
-
"text": "boolean | undefined"
|
|
11941
|
-
},
|
|
11942
|
-
"fieldName": "value"
|
|
11943
|
-
}
|
|
11944
|
-
],
|
|
11945
|
-
"superclass": {
|
|
11946
|
-
"name": "OXBasicField",
|
|
11947
|
-
"module": "/src/search-form/ox-basic-field"
|
|
11948
|
-
},
|
|
11949
|
-
"tagName": "ox-checkbox-field",
|
|
11950
|
-
"customElement": true,
|
|
11951
|
-
"events": [
|
|
11952
|
-
{
|
|
11953
|
-
"name": "submit-field",
|
|
11965
|
+
"name": "e",
|
|
11954
11966
|
"type": {
|
|
11955
|
-
"text": "
|
|
11956
|
-
},
|
|
11957
|
-
"inheritedFrom": {
|
|
11958
|
-
"name": "OXBasicField",
|
|
11959
|
-
"module": "src/search-form/ox-basic-field.ts"
|
|
11967
|
+
"text": "KeyboardEvent"
|
|
11960
11968
|
}
|
|
11961
11969
|
}
|
|
11962
|
-
]
|
|
11970
|
+
],
|
|
11971
|
+
"description": "ox-grid-body 의 keydown handler\n\n- handler의 this 는 ox-grid-body임."
|
|
11963
11972
|
}
|
|
11964
11973
|
],
|
|
11965
11974
|
"exports": [
|
|
11966
11975
|
{
|
|
11967
11976
|
"kind": "js",
|
|
11968
|
-
"name": "
|
|
11969
|
-
"declaration": {
|
|
11970
|
-
"name": "OXCheckboxField",
|
|
11971
|
-
"module": "src/search-form/ox-checkbox-field.ts"
|
|
11972
|
-
}
|
|
11973
|
-
},
|
|
11974
|
-
{
|
|
11975
|
-
"kind": "custom-element-definition",
|
|
11976
|
-
"name": "ox-checkbox-field",
|
|
11977
|
+
"name": "dataGridBodyKeydownHandler",
|
|
11977
11978
|
"declaration": {
|
|
11978
|
-
"name": "
|
|
11979
|
-
"module": "src/
|
|
11979
|
+
"name": "dataGridBodyKeydownHandler",
|
|
11980
|
+
"module": "src/data-grid/event-handlers/data-grid-body-keydown-handler.ts"
|
|
11980
11981
|
}
|
|
11981
11982
|
}
|
|
11982
11983
|
]
|
|
11983
11984
|
},
|
|
11984
11985
|
{
|
|
11985
11986
|
"kind": "javascript-module",
|
|
11986
|
-
"path": "src/
|
|
11987
|
+
"path": "src/data-list/event-handlers/data-list-click-handler.ts",
|
|
11987
11988
|
"declarations": [
|
|
11988
11989
|
{
|
|
11989
|
-
"kind": "
|
|
11990
|
-
"
|
|
11991
|
-
"
|
|
11992
|
-
|
|
11990
|
+
"kind": "function",
|
|
11991
|
+
"name": "dataListClickHandler",
|
|
11992
|
+
"return": {
|
|
11993
|
+
"type": {
|
|
11994
|
+
"text": "void"
|
|
11995
|
+
}
|
|
11996
|
+
},
|
|
11997
|
+
"parameters": [
|
|
11993
11998
|
{
|
|
11994
|
-
"
|
|
11995
|
-
"name": "config",
|
|
11999
|
+
"name": "e",
|
|
11996
12000
|
"type": {
|
|
11997
|
-
"text": "
|
|
11998
|
-
}
|
|
11999
|
-
|
|
12000
|
-
|
|
12001
|
+
"text": "MouseEvent"
|
|
12002
|
+
}
|
|
12003
|
+
}
|
|
12004
|
+
],
|
|
12005
|
+
"description": "ox-list 의 click handler\n\n- handler의 this 는 ox-list임."
|
|
12006
|
+
}
|
|
12007
|
+
],
|
|
12008
|
+
"exports": [
|
|
12009
|
+
{
|
|
12010
|
+
"kind": "js",
|
|
12011
|
+
"name": "dataListClickHandler",
|
|
12012
|
+
"declaration": {
|
|
12013
|
+
"name": "dataListClickHandler",
|
|
12014
|
+
"module": "src/data-list/event-handlers/data-list-click-handler.ts"
|
|
12015
|
+
}
|
|
12016
|
+
}
|
|
12017
|
+
]
|
|
12018
|
+
},
|
|
12019
|
+
{
|
|
12020
|
+
"kind": "javascript-module",
|
|
12021
|
+
"path": "src/data-list/event-handlers/data-list-dblclick-handler.ts",
|
|
12022
|
+
"declarations": [
|
|
12023
|
+
{
|
|
12024
|
+
"kind": "function",
|
|
12025
|
+
"name": "dataListDblclickHandler",
|
|
12026
|
+
"return": {
|
|
12027
|
+
"type": {
|
|
12028
|
+
"text": "void"
|
|
12029
|
+
}
|
|
12030
|
+
},
|
|
12031
|
+
"parameters": [
|
|
12001
12032
|
{
|
|
12002
|
-
"
|
|
12003
|
-
"name": "defaultOperator",
|
|
12033
|
+
"name": "e",
|
|
12004
12034
|
"type": {
|
|
12005
|
-
"text": "
|
|
12006
|
-
}
|
|
12007
|
-
|
|
12008
|
-
|
|
12009
|
-
|
|
12035
|
+
"text": "MouseEvent"
|
|
12036
|
+
}
|
|
12037
|
+
}
|
|
12038
|
+
],
|
|
12039
|
+
"description": "ox-list 의 dblclick handler\n\n- handler의 this 는 ox-list임."
|
|
12040
|
+
}
|
|
12041
|
+
],
|
|
12042
|
+
"exports": [
|
|
12043
|
+
{
|
|
12044
|
+
"kind": "js",
|
|
12045
|
+
"name": "dataListDblclickHandler",
|
|
12046
|
+
"declaration": {
|
|
12047
|
+
"name": "dataListDblclickHandler",
|
|
12048
|
+
"module": "src/data-list/event-handlers/data-list-dblclick-handler.ts"
|
|
12049
|
+
}
|
|
12050
|
+
}
|
|
12051
|
+
]
|
|
12052
|
+
},
|
|
12053
|
+
{
|
|
12054
|
+
"kind": "javascript-module",
|
|
12055
|
+
"path": "src/data-list/event-handlers/record-partial-click-handler.ts",
|
|
12056
|
+
"declarations": [
|
|
12057
|
+
{
|
|
12058
|
+
"kind": "function",
|
|
12059
|
+
"name": "recordPartialClickHandler",
|
|
12060
|
+
"return": {
|
|
12061
|
+
"type": {
|
|
12062
|
+
"text": "void"
|
|
12063
|
+
}
|
|
12064
|
+
},
|
|
12065
|
+
"parameters": [
|
|
12010
12066
|
{
|
|
12011
|
-
"
|
|
12012
|
-
"name": "timeout",
|
|
12067
|
+
"name": "this",
|
|
12013
12068
|
"type": {
|
|
12014
|
-
"text": "
|
|
12015
|
-
}
|
|
12016
|
-
"privacy": "private"
|
|
12017
|
-
},
|
|
12018
|
-
{
|
|
12019
|
-
"kind": "method",
|
|
12020
|
-
"name": "convertToSearchFields",
|
|
12021
|
-
"privacy": "private",
|
|
12022
|
-
"return": {
|
|
12023
|
-
"type": {
|
|
12024
|
-
"text": "OXSearchFieldProps[]"
|
|
12025
|
-
}
|
|
12026
|
-
},
|
|
12027
|
-
"parameters": [
|
|
12028
|
-
{
|
|
12029
|
-
"name": "config",
|
|
12030
|
-
"type": {
|
|
12031
|
-
"text": "GristConfig"
|
|
12032
|
-
}
|
|
12033
|
-
}
|
|
12034
|
-
]
|
|
12069
|
+
"text": "RecordPartial"
|
|
12070
|
+
}
|
|
12035
12071
|
},
|
|
12036
12072
|
{
|
|
12037
|
-
"
|
|
12038
|
-
"name": "queryFilters",
|
|
12073
|
+
"name": "e",
|
|
12039
12074
|
"type": {
|
|
12040
|
-
"text": "
|
|
12075
|
+
"text": "MouseEvent"
|
|
12041
12076
|
}
|
|
12042
12077
|
}
|
|
12043
12078
|
],
|
|
12044
|
-
"
|
|
12079
|
+
"description": "record-partial 의 click handler\n\n- handler의 this 는 record-partial임."
|
|
12080
|
+
}
|
|
12081
|
+
],
|
|
12082
|
+
"exports": [
|
|
12083
|
+
{
|
|
12084
|
+
"kind": "js",
|
|
12085
|
+
"name": "recordPartialClickHandler",
|
|
12086
|
+
"declaration": {
|
|
12087
|
+
"name": "recordPartialClickHandler",
|
|
12088
|
+
"module": "src/data-list/event-handlers/record-partial-click-handler.ts"
|
|
12089
|
+
}
|
|
12090
|
+
}
|
|
12091
|
+
]
|
|
12092
|
+
},
|
|
12093
|
+
{
|
|
12094
|
+
"kind": "javascript-module",
|
|
12095
|
+
"path": "src/data-list/event-handlers/record-partial-dblclick-handler.ts",
|
|
12096
|
+
"declarations": [
|
|
12097
|
+
{
|
|
12098
|
+
"kind": "function",
|
|
12099
|
+
"name": "recordPartialDblClickHandler",
|
|
12100
|
+
"return": {
|
|
12101
|
+
"type": {
|
|
12102
|
+
"text": "void"
|
|
12103
|
+
}
|
|
12104
|
+
},
|
|
12105
|
+
"parameters": [
|
|
12045
12106
|
{
|
|
12046
|
-
"name": "
|
|
12107
|
+
"name": "this",
|
|
12047
12108
|
"type": {
|
|
12048
|
-
"text": "
|
|
12049
|
-
}
|
|
12050
|
-
"fieldName": "config"
|
|
12109
|
+
"text": "RecordPartial"
|
|
12110
|
+
}
|
|
12051
12111
|
},
|
|
12052
12112
|
{
|
|
12053
|
-
"name": "
|
|
12113
|
+
"name": "e",
|
|
12054
12114
|
"type": {
|
|
12055
|
-
"text": "
|
|
12056
|
-
}
|
|
12057
|
-
"default": "'eq'",
|
|
12058
|
-
"fieldName": "defaultOperator"
|
|
12115
|
+
"text": "MouseEvent"
|
|
12116
|
+
}
|
|
12059
12117
|
}
|
|
12060
12118
|
],
|
|
12061
|
-
"
|
|
12062
|
-
"name": "LitElement",
|
|
12063
|
-
"package": "lit"
|
|
12064
|
-
},
|
|
12065
|
-
"tagName": "ox-grist-search-form",
|
|
12066
|
-
"customElement": true
|
|
12119
|
+
"description": "record-partial 의 dblclick handler\n\n- handler의 this 는 record-partial임."
|
|
12067
12120
|
}
|
|
12068
12121
|
],
|
|
12069
12122
|
"exports": [
|
|
12070
12123
|
{
|
|
12071
12124
|
"kind": "js",
|
|
12072
|
-
"name": "
|
|
12073
|
-
"declaration": {
|
|
12074
|
-
"name": "OXGristSearchForm",
|
|
12075
|
-
"module": "src/search-form/ox-grist-search-form.ts"
|
|
12076
|
-
}
|
|
12077
|
-
},
|
|
12078
|
-
{
|
|
12079
|
-
"kind": "custom-element-definition",
|
|
12080
|
-
"name": "ox-grist-search-form",
|
|
12125
|
+
"name": "recordPartialDblClickHandler",
|
|
12081
12126
|
"declaration": {
|
|
12082
|
-
"name": "
|
|
12083
|
-
"module": "src/
|
|
12127
|
+
"name": "recordPartialDblClickHandler",
|
|
12128
|
+
"module": "src/data-list/event-handlers/record-partial-dblclick-handler.ts"
|
|
12084
12129
|
}
|
|
12085
12130
|
}
|
|
12086
12131
|
]
|
|
12087
12132
|
},
|
|
12088
12133
|
{
|
|
12089
12134
|
"kind": "javascript-module",
|
|
12090
|
-
"path": "src/
|
|
12135
|
+
"path": "src/data-list/event-handlers/record-partial-long-press-handler.ts",
|
|
12091
12136
|
"declarations": [
|
|
12092
12137
|
{
|
|
12093
|
-
"kind": "
|
|
12094
|
-
"
|
|
12095
|
-
"
|
|
12096
|
-
"members": [
|
|
12138
|
+
"kind": "function",
|
|
12139
|
+
"name": "recordPartialLongPressHandler",
|
|
12140
|
+
"parameters": [
|
|
12097
12141
|
{
|
|
12098
|
-
"
|
|
12099
|
-
"name": "field",
|
|
12142
|
+
"name": "this",
|
|
12100
12143
|
"type": {
|
|
12101
|
-
"text": "
|
|
12102
|
-
},
|
|
12103
|
-
"attribute": "field",
|
|
12104
|
-
"inheritedFrom": {
|
|
12105
|
-
"name": "OXBasicField",
|
|
12106
|
-
"module": "src/search-form/ox-basic-field.ts"
|
|
12144
|
+
"text": "RecordPartial"
|
|
12107
12145
|
}
|
|
12108
12146
|
},
|
|
12109
12147
|
{
|
|
12110
|
-
"
|
|
12111
|
-
"name": "value",
|
|
12148
|
+
"name": "e",
|
|
12112
12149
|
"type": {
|
|
12113
|
-
"text": "
|
|
12114
|
-
},
|
|
12115
|
-
"attribute": "value",
|
|
12116
|
-
"inheritedFrom": {
|
|
12117
|
-
"name": "OXBasicField",
|
|
12118
|
-
"module": "src/search-form/ox-basic-field.ts"
|
|
12150
|
+
"text": "MouseEvent"
|
|
12119
12151
|
}
|
|
12120
|
-
}
|
|
12152
|
+
}
|
|
12153
|
+
],
|
|
12154
|
+
"description": "record-partial 의 long-press handler\n\n- handler의 this 는 record-partial임."
|
|
12155
|
+
}
|
|
12156
|
+
],
|
|
12157
|
+
"exports": [
|
|
12158
|
+
{
|
|
12159
|
+
"kind": "js",
|
|
12160
|
+
"name": "recordPartialLongPressHandler",
|
|
12161
|
+
"declaration": {
|
|
12162
|
+
"name": "recordPartialLongPressHandler",
|
|
12163
|
+
"module": "src/data-list/event-handlers/record-partial-long-press-handler.ts"
|
|
12164
|
+
}
|
|
12165
|
+
}
|
|
12166
|
+
]
|
|
12167
|
+
},
|
|
12168
|
+
{
|
|
12169
|
+
"kind": "javascript-module",
|
|
12170
|
+
"path": "src/data-report/event-handlers/data-report-body-click-handler.ts",
|
|
12171
|
+
"declarations": [
|
|
12172
|
+
{
|
|
12173
|
+
"kind": "function",
|
|
12174
|
+
"name": "dataReportBodyClickHandler",
|
|
12175
|
+
"parameters": [
|
|
12121
12176
|
{
|
|
12122
|
-
"
|
|
12123
|
-
"
|
|
12124
|
-
|
|
12125
|
-
"type": {
|
|
12126
|
-
"text": "void"
|
|
12127
|
-
}
|
|
12128
|
-
},
|
|
12129
|
-
"parameters": [
|
|
12130
|
-
{
|
|
12131
|
-
"name": "defaultValue",
|
|
12132
|
-
"type": {
|
|
12133
|
-
"text": "number"
|
|
12134
|
-
}
|
|
12135
|
-
}
|
|
12136
|
-
],
|
|
12137
|
-
"inheritedFrom": {
|
|
12138
|
-
"name": "OXBasicField",
|
|
12139
|
-
"module": "src/search-form/ox-basic-field.ts"
|
|
12177
|
+
"name": "this",
|
|
12178
|
+
"type": {
|
|
12179
|
+
"text": "DataReportBody"
|
|
12140
12180
|
}
|
|
12141
12181
|
},
|
|
12142
12182
|
{
|
|
12143
|
-
"
|
|
12144
|
-
"
|
|
12145
|
-
|
|
12146
|
-
"type": {
|
|
12147
|
-
"text": "void"
|
|
12148
|
-
}
|
|
12183
|
+
"name": "e",
|
|
12184
|
+
"type": {
|
|
12185
|
+
"text": "Event"
|
|
12149
12186
|
}
|
|
12150
|
-
}
|
|
12151
|
-
|
|
12152
|
-
|
|
12153
|
-
|
|
12154
|
-
|
|
12155
|
-
|
|
12156
|
-
|
|
12157
|
-
|
|
12187
|
+
}
|
|
12188
|
+
],
|
|
12189
|
+
"description": "ox-report-body 의 click handler"
|
|
12190
|
+
}
|
|
12191
|
+
],
|
|
12192
|
+
"exports": [
|
|
12193
|
+
{
|
|
12194
|
+
"kind": "js",
|
|
12195
|
+
"name": "dataReportBodyClickHandler",
|
|
12196
|
+
"declaration": {
|
|
12197
|
+
"name": "dataReportBodyClickHandler",
|
|
12198
|
+
"module": "src/data-report/event-handlers/data-report-body-click-handler.ts"
|
|
12199
|
+
}
|
|
12200
|
+
}
|
|
12201
|
+
]
|
|
12202
|
+
},
|
|
12203
|
+
{
|
|
12204
|
+
"kind": "javascript-module",
|
|
12205
|
+
"path": "src/data-report/event-handlers/data-report-body-dblclick-handler.ts",
|
|
12206
|
+
"declarations": [
|
|
12207
|
+
{
|
|
12208
|
+
"kind": "function",
|
|
12209
|
+
"name": "dataReportBodyDblclickHandler",
|
|
12210
|
+
"parameters": [
|
|
12211
|
+
{
|
|
12212
|
+
"name": "this",
|
|
12213
|
+
"type": {
|
|
12214
|
+
"text": "DataReportBody"
|
|
12158
12215
|
}
|
|
12159
12216
|
},
|
|
12160
12217
|
{
|
|
12161
|
-
"
|
|
12162
|
-
"
|
|
12163
|
-
|
|
12164
|
-
|
|
12165
|
-
|
|
12166
|
-
|
|
12167
|
-
|
|
12218
|
+
"name": "e",
|
|
12219
|
+
"type": {
|
|
12220
|
+
"text": "Event"
|
|
12221
|
+
}
|
|
12222
|
+
}
|
|
12223
|
+
],
|
|
12224
|
+
"description": "ox-report-body 의 dblclick handler"
|
|
12225
|
+
}
|
|
12226
|
+
],
|
|
12227
|
+
"exports": [
|
|
12228
|
+
{
|
|
12229
|
+
"kind": "js",
|
|
12230
|
+
"name": "dataReportBodyDblclickHandler",
|
|
12231
|
+
"declaration": {
|
|
12232
|
+
"name": "dataReportBodyDblclickHandler",
|
|
12233
|
+
"module": "src/data-report/event-handlers/data-report-body-dblclick-handler.ts"
|
|
12234
|
+
}
|
|
12235
|
+
}
|
|
12236
|
+
]
|
|
12237
|
+
},
|
|
12238
|
+
{
|
|
12239
|
+
"kind": "javascript-module",
|
|
12240
|
+
"path": "src/data-report/event-handlers/data-report-body-keydown-handler.ts",
|
|
12241
|
+
"declarations": [
|
|
12242
|
+
{
|
|
12243
|
+
"kind": "function",
|
|
12244
|
+
"name": "dataReportBodyKeydownHandler",
|
|
12245
|
+
"return": {
|
|
12246
|
+
"type": {
|
|
12247
|
+
"text": "void"
|
|
12248
|
+
}
|
|
12249
|
+
},
|
|
12250
|
+
"parameters": [
|
|
12251
|
+
{
|
|
12252
|
+
"name": "this",
|
|
12253
|
+
"type": {
|
|
12254
|
+
"text": "DataReportBody"
|
|
12255
|
+
}
|
|
12256
|
+
},
|
|
12257
|
+
{
|
|
12258
|
+
"name": "e",
|
|
12259
|
+
"type": {
|
|
12260
|
+
"text": "KeyboardEvent"
|
|
12261
|
+
}
|
|
12262
|
+
}
|
|
12263
|
+
],
|
|
12264
|
+
"description": "ox-report-body 의 keydown handler"
|
|
12265
|
+
}
|
|
12266
|
+
],
|
|
12267
|
+
"exports": [
|
|
12268
|
+
{
|
|
12269
|
+
"kind": "js",
|
|
12270
|
+
"name": "dataReportBodyKeydownHandler",
|
|
12271
|
+
"declaration": {
|
|
12272
|
+
"name": "dataReportBodyKeydownHandler",
|
|
12273
|
+
"module": "src/data-report/event-handlers/data-report-body-keydown-handler.ts"
|
|
12274
|
+
}
|
|
12275
|
+
}
|
|
12276
|
+
]
|
|
12277
|
+
},
|
|
12278
|
+
{
|
|
12279
|
+
"kind": "javascript-module",
|
|
12280
|
+
"path": "src/interfaces/index.ts",
|
|
12281
|
+
"declarations": [],
|
|
12282
|
+
"exports": [
|
|
12283
|
+
{
|
|
12284
|
+
"kind": "js",
|
|
12285
|
+
"name": "*",
|
|
12286
|
+
"declaration": {
|
|
12287
|
+
"name": "*",
|
|
12288
|
+
"package": "./ox-search-field"
|
|
12289
|
+
}
|
|
12290
|
+
},
|
|
12291
|
+
{
|
|
12292
|
+
"kind": "js",
|
|
12293
|
+
"name": "*",
|
|
12294
|
+
"declaration": {
|
|
12295
|
+
"name": "*",
|
|
12296
|
+
"package": "./ox-grist-search-form"
|
|
12297
|
+
}
|
|
12298
|
+
}
|
|
12299
|
+
]
|
|
12300
|
+
},
|
|
12301
|
+
{
|
|
12302
|
+
"kind": "javascript-module",
|
|
12303
|
+
"path": "src/interfaces/ox-grist-search-form.ts",
|
|
12304
|
+
"declarations": [],
|
|
12305
|
+
"exports": []
|
|
12306
|
+
},
|
|
12307
|
+
{
|
|
12308
|
+
"kind": "javascript-module",
|
|
12309
|
+
"path": "src/interfaces/ox-search-field.ts",
|
|
12310
|
+
"declarations": [],
|
|
12311
|
+
"exports": []
|
|
12312
|
+
},
|
|
12313
|
+
{
|
|
12314
|
+
"kind": "javascript-module",
|
|
12315
|
+
"path": "src/search-form/index.ts",
|
|
12316
|
+
"declarations": [],
|
|
12317
|
+
"exports": [
|
|
12318
|
+
{
|
|
12319
|
+
"kind": "js",
|
|
12320
|
+
"name": "*",
|
|
12321
|
+
"declaration": {
|
|
12322
|
+
"name": "*",
|
|
12323
|
+
"package": "./ox-search-form"
|
|
12324
|
+
}
|
|
12325
|
+
},
|
|
12326
|
+
{
|
|
12327
|
+
"kind": "js",
|
|
12328
|
+
"name": "*",
|
|
12329
|
+
"declaration": {
|
|
12330
|
+
"name": "*",
|
|
12331
|
+
"package": "./ox-grist-search-form"
|
|
12332
|
+
}
|
|
12333
|
+
},
|
|
12334
|
+
{
|
|
12335
|
+
"kind": "js",
|
|
12336
|
+
"name": "*",
|
|
12337
|
+
"declaration": {
|
|
12338
|
+
"name": "*",
|
|
12339
|
+
"package": "./ox-basic-field"
|
|
12340
|
+
}
|
|
12341
|
+
},
|
|
12342
|
+
{
|
|
12343
|
+
"kind": "js",
|
|
12344
|
+
"name": "*",
|
|
12345
|
+
"declaration": {
|
|
12346
|
+
"name": "*",
|
|
12347
|
+
"package": "./ox-checkbox-field"
|
|
12348
|
+
}
|
|
12349
|
+
},
|
|
12350
|
+
{
|
|
12351
|
+
"kind": "js",
|
|
12352
|
+
"name": "*",
|
|
12353
|
+
"declaration": {
|
|
12354
|
+
"name": "*",
|
|
12355
|
+
"package": "./ox-number-field"
|
|
12356
|
+
}
|
|
12357
|
+
},
|
|
12358
|
+
{
|
|
12359
|
+
"kind": "js",
|
|
12360
|
+
"name": "*",
|
|
12361
|
+
"declaration": {
|
|
12362
|
+
"name": "*",
|
|
12363
|
+
"package": "./ox-select-field"
|
|
12364
|
+
}
|
|
12365
|
+
},
|
|
12366
|
+
{
|
|
12367
|
+
"kind": "js",
|
|
12368
|
+
"name": "*",
|
|
12369
|
+
"declaration": {
|
|
12370
|
+
"name": "*",
|
|
12371
|
+
"package": "./ox-text-field"
|
|
12372
|
+
}
|
|
12373
|
+
}
|
|
12374
|
+
]
|
|
12375
|
+
},
|
|
12376
|
+
{
|
|
12377
|
+
"kind": "javascript-module",
|
|
12378
|
+
"path": "src/search-form/ox-basic-field.ts",
|
|
12379
|
+
"declarations": [
|
|
12380
|
+
{
|
|
12381
|
+
"kind": "class",
|
|
12382
|
+
"description": "",
|
|
12383
|
+
"name": "OXBasicField",
|
|
12384
|
+
"members": [
|
|
12385
|
+
{
|
|
12386
|
+
"kind": "field",
|
|
12387
|
+
"name": "field",
|
|
12388
|
+
"type": {
|
|
12389
|
+
"text": "OXBasicFieldProps"
|
|
12168
12390
|
}
|
|
12169
12391
|
},
|
|
12170
12392
|
{
|
|
@@ -12174,21 +12396,37 @@
|
|
|
12174
12396
|
"text": "HTMLFormElement | null"
|
|
12175
12397
|
},
|
|
12176
12398
|
"privacy": "private",
|
|
12177
|
-
"default": "null"
|
|
12178
|
-
|
|
12179
|
-
|
|
12180
|
-
|
|
12399
|
+
"default": "null"
|
|
12400
|
+
},
|
|
12401
|
+
{
|
|
12402
|
+
"kind": "field",
|
|
12403
|
+
"name": "value",
|
|
12404
|
+
"type": {
|
|
12405
|
+
"text": "any | undefined"
|
|
12181
12406
|
}
|
|
12182
12407
|
},
|
|
12408
|
+
{
|
|
12409
|
+
"kind": "method",
|
|
12410
|
+
"name": "setDefaultValue",
|
|
12411
|
+
"return": {
|
|
12412
|
+
"type": {
|
|
12413
|
+
"text": "void"
|
|
12414
|
+
}
|
|
12415
|
+
},
|
|
12416
|
+
"parameters": [
|
|
12417
|
+
{
|
|
12418
|
+
"name": "defaultValue",
|
|
12419
|
+
"type": {
|
|
12420
|
+
"text": "unknown"
|
|
12421
|
+
}
|
|
12422
|
+
}
|
|
12423
|
+
]
|
|
12424
|
+
},
|
|
12183
12425
|
{
|
|
12184
12426
|
"kind": "field",
|
|
12185
12427
|
"name": "input",
|
|
12186
12428
|
"type": {
|
|
12187
12429
|
"text": "HTMLInputElement | HTMLSelectElement"
|
|
12188
|
-
},
|
|
12189
|
-
"inheritedFrom": {
|
|
12190
|
-
"name": "OXBasicField",
|
|
12191
|
-
"module": "src/search-form/ox-basic-field.ts"
|
|
12192
12430
|
}
|
|
12193
12431
|
},
|
|
12194
12432
|
{
|
|
@@ -12199,10 +12437,6 @@
|
|
|
12199
12437
|
"type": {
|
|
12200
12438
|
"text": "HTMLFormElement | null"
|
|
12201
12439
|
}
|
|
12202
|
-
},
|
|
12203
|
-
"inheritedFrom": {
|
|
12204
|
-
"name": "OXBasicField",
|
|
12205
|
-
"module": "src/search-form/ox-basic-field.ts"
|
|
12206
12440
|
}
|
|
12207
12441
|
},
|
|
12208
12442
|
{
|
|
@@ -12221,11 +12455,7 @@
|
|
|
12221
12455
|
"text": "Record<string, (event: Event) => void>"
|
|
12222
12456
|
}
|
|
12223
12457
|
}
|
|
12224
|
-
]
|
|
12225
|
-
"inheritedFrom": {
|
|
12226
|
-
"name": "OXBasicField",
|
|
12227
|
-
"module": "src/search-form/ox-basic-field.ts"
|
|
12228
|
-
}
|
|
12458
|
+
]
|
|
12229
12459
|
},
|
|
12230
12460
|
{
|
|
12231
12461
|
"kind": "method",
|
|
@@ -12235,10 +12465,6 @@
|
|
|
12235
12465
|
"type": {
|
|
12236
12466
|
"text": "void"
|
|
12237
12467
|
}
|
|
12238
|
-
},
|
|
12239
|
-
"inheritedFrom": {
|
|
12240
|
-
"name": "OXBasicField",
|
|
12241
|
-
"module": "src/search-form/ox-basic-field.ts"
|
|
12242
12468
|
}
|
|
12243
12469
|
},
|
|
12244
12470
|
{
|
|
@@ -12257,11 +12483,7 @@
|
|
|
12257
12483
|
"text": "FormDataEvent"
|
|
12258
12484
|
}
|
|
12259
12485
|
}
|
|
12260
|
-
]
|
|
12261
|
-
"inheritedFrom": {
|
|
12262
|
-
"name": "OXBasicField",
|
|
12263
|
-
"module": "src/search-form/ox-basic-field.ts"
|
|
12264
|
-
}
|
|
12486
|
+
]
|
|
12265
12487
|
},
|
|
12266
12488
|
{
|
|
12267
12489
|
"kind": "method",
|
|
@@ -12271,218 +12493,107 @@
|
|
|
12271
12493
|
"type": {
|
|
12272
12494
|
"text": "void"
|
|
12273
12495
|
}
|
|
12274
|
-
},
|
|
12275
|
-
"inheritedFrom": {
|
|
12276
|
-
"name": "OXBasicField",
|
|
12277
|
-
"module": "src/search-form/ox-basic-field.ts"
|
|
12278
12496
|
}
|
|
12279
12497
|
}
|
|
12280
12498
|
],
|
|
12281
|
-
"attributes": [
|
|
12282
|
-
{
|
|
12283
|
-
"name": "field",
|
|
12284
|
-
"type": {
|
|
12285
|
-
"text": "OXNumberFieldProps"
|
|
12286
|
-
},
|
|
12287
|
-
"fieldName": "field"
|
|
12288
|
-
},
|
|
12289
|
-
{
|
|
12290
|
-
"name": "value",
|
|
12291
|
-
"type": {
|
|
12292
|
-
"text": "number | undefined"
|
|
12293
|
-
},
|
|
12294
|
-
"fieldName": "value"
|
|
12295
|
-
}
|
|
12296
|
-
],
|
|
12297
|
-
"superclass": {
|
|
12298
|
-
"name": "OXBasicField",
|
|
12299
|
-
"module": "/src/search-form/ox-basic-field"
|
|
12300
|
-
},
|
|
12301
|
-
"tagName": "ox-number-field",
|
|
12302
|
-
"customElement": true,
|
|
12303
12499
|
"events": [
|
|
12304
12500
|
{
|
|
12305
12501
|
"name": "submit-field",
|
|
12306
12502
|
"type": {
|
|
12307
12503
|
"text": "CustomEvent"
|
|
12308
|
-
},
|
|
12309
|
-
"inheritedFrom": {
|
|
12310
|
-
"name": "OXBasicField",
|
|
12311
|
-
"module": "src/search-form/ox-basic-field.ts"
|
|
12312
12504
|
}
|
|
12313
12505
|
}
|
|
12314
|
-
]
|
|
12506
|
+
],
|
|
12507
|
+
"superclass": {
|
|
12508
|
+
"name": "LitElement",
|
|
12509
|
+
"package": "lit-element"
|
|
12510
|
+
},
|
|
12511
|
+
"customElement": true
|
|
12315
12512
|
}
|
|
12316
12513
|
],
|
|
12317
12514
|
"exports": [
|
|
12318
12515
|
{
|
|
12319
12516
|
"kind": "js",
|
|
12320
|
-
"name": "
|
|
12321
|
-
"declaration": {
|
|
12322
|
-
"name": "OXNumberField",
|
|
12323
|
-
"module": "src/search-form/ox-number-field.ts"
|
|
12324
|
-
}
|
|
12325
|
-
},
|
|
12326
|
-
{
|
|
12327
|
-
"kind": "custom-element-definition",
|
|
12328
|
-
"name": "ox-number-field",
|
|
12517
|
+
"name": "OXBasicField",
|
|
12329
12518
|
"declaration": {
|
|
12330
|
-
"name": "
|
|
12331
|
-
"module": "src/search-form/ox-
|
|
12519
|
+
"name": "OXBasicField",
|
|
12520
|
+
"module": "src/search-form/ox-basic-field.ts"
|
|
12332
12521
|
}
|
|
12333
12522
|
}
|
|
12334
12523
|
]
|
|
12335
12524
|
},
|
|
12336
12525
|
{
|
|
12337
12526
|
"kind": "javascript-module",
|
|
12338
|
-
"path": "src/search-form/ox-
|
|
12527
|
+
"path": "src/search-form/ox-checkbox-field.ts",
|
|
12339
12528
|
"declarations": [
|
|
12340
12529
|
{
|
|
12341
12530
|
"kind": "class",
|
|
12342
12531
|
"description": "",
|
|
12343
|
-
"name": "
|
|
12532
|
+
"name": "OXCheckboxField",
|
|
12344
12533
|
"members": [
|
|
12345
12534
|
{
|
|
12346
12535
|
"kind": "field",
|
|
12347
|
-
"name": "
|
|
12536
|
+
"name": "field",
|
|
12348
12537
|
"type": {
|
|
12349
|
-
"text": "
|
|
12538
|
+
"text": "OXBasicFieldProps"
|
|
12350
12539
|
},
|
|
12351
|
-
"attribute": "
|
|
12352
|
-
|
|
12353
|
-
|
|
12354
|
-
|
|
12355
|
-
"name": "form",
|
|
12356
|
-
"type": {
|
|
12357
|
-
"text": "HTMLFormElement"
|
|
12540
|
+
"attribute": "field",
|
|
12541
|
+
"inheritedFrom": {
|
|
12542
|
+
"name": "OXBasicField",
|
|
12543
|
+
"module": "src/search-form/ox-basic-field.ts"
|
|
12358
12544
|
}
|
|
12359
12545
|
},
|
|
12360
12546
|
{
|
|
12361
12547
|
"kind": "field",
|
|
12362
|
-
"name": "
|
|
12548
|
+
"name": "value",
|
|
12363
12549
|
"type": {
|
|
12364
|
-
"text": "
|
|
12550
|
+
"text": "any | undefined"
|
|
12551
|
+
},
|
|
12552
|
+
"attribute": "value",
|
|
12553
|
+
"inheritedFrom": {
|
|
12554
|
+
"name": "OXBasicField",
|
|
12555
|
+
"module": "src/search-form/ox-basic-field.ts"
|
|
12365
12556
|
}
|
|
12366
12557
|
},
|
|
12367
12558
|
{
|
|
12368
12559
|
"kind": "method",
|
|
12369
|
-
"name": "
|
|
12370
|
-
"privacy": "private",
|
|
12560
|
+
"name": "setDefaultValue",
|
|
12371
12561
|
"return": {
|
|
12372
12562
|
"type": {
|
|
12373
|
-
"text": "
|
|
12563
|
+
"text": "void"
|
|
12374
12564
|
}
|
|
12375
12565
|
},
|
|
12376
12566
|
"parameters": [
|
|
12377
12567
|
{
|
|
12378
|
-
"name": "
|
|
12568
|
+
"name": "defaultValue",
|
|
12379
12569
|
"type": {
|
|
12380
|
-
"text": "
|
|
12570
|
+
"text": "boolean"
|
|
12381
12571
|
}
|
|
12382
12572
|
}
|
|
12383
|
-
]
|
|
12573
|
+
],
|
|
12574
|
+
"inheritedFrom": {
|
|
12575
|
+
"name": "OXBasicField",
|
|
12576
|
+
"module": "src/search-form/ox-basic-field.ts"
|
|
12577
|
+
}
|
|
12384
12578
|
},
|
|
12385
12579
|
{
|
|
12386
12580
|
"kind": "method",
|
|
12387
|
-
"name": "
|
|
12581
|
+
"name": "onClickHandler",
|
|
12582
|
+
"privacy": "private",
|
|
12388
12583
|
"return": {
|
|
12389
12584
|
"type": {
|
|
12390
12585
|
"text": "void"
|
|
12391
12586
|
}
|
|
12392
12587
|
}
|
|
12393
|
-
}
|
|
12394
|
-
],
|
|
12395
|
-
"events": [
|
|
12396
|
-
{
|
|
12397
|
-
"name": "submit",
|
|
12398
|
-
"type": {
|
|
12399
|
-
"text": "CustomEvent"
|
|
12400
|
-
}
|
|
12401
|
-
}
|
|
12402
|
-
],
|
|
12403
|
-
"attributes": [
|
|
12404
|
-
{
|
|
12405
|
-
"name": "fields",
|
|
12406
|
-
"type": {
|
|
12407
|
-
"text": "OXSearchFieldProps[]"
|
|
12408
|
-
},
|
|
12409
|
-
"fieldName": "fields"
|
|
12410
|
-
}
|
|
12411
|
-
],
|
|
12412
|
-
"superclass": {
|
|
12413
|
-
"name": "LitElement",
|
|
12414
|
-
"package": "lit"
|
|
12415
|
-
},
|
|
12416
|
-
"tagName": "ox-search-form",
|
|
12417
|
-
"customElement": true
|
|
12418
|
-
}
|
|
12419
|
-
],
|
|
12420
|
-
"exports": [
|
|
12421
|
-
{
|
|
12422
|
-
"kind": "js",
|
|
12423
|
-
"name": "OXSearchForm",
|
|
12424
|
-
"declaration": {
|
|
12425
|
-
"name": "OXSearchForm",
|
|
12426
|
-
"module": "src/search-form/ox-search-form.ts"
|
|
12427
|
-
}
|
|
12428
|
-
},
|
|
12429
|
-
{
|
|
12430
|
-
"kind": "custom-element-definition",
|
|
12431
|
-
"name": "ox-search-form",
|
|
12432
|
-
"declaration": {
|
|
12433
|
-
"name": "OXSearchForm",
|
|
12434
|
-
"module": "src/search-form/ox-search-form.ts"
|
|
12435
|
-
}
|
|
12436
|
-
}
|
|
12437
|
-
]
|
|
12438
|
-
},
|
|
12439
|
-
{
|
|
12440
|
-
"kind": "javascript-module",
|
|
12441
|
-
"path": "src/search-form/ox-select-field.ts",
|
|
12442
|
-
"declarations": [
|
|
12443
|
-
{
|
|
12444
|
-
"kind": "class",
|
|
12445
|
-
"description": "",
|
|
12446
|
-
"name": "OXSelectField",
|
|
12447
|
-
"members": [
|
|
12448
|
-
{
|
|
12449
|
-
"kind": "field",
|
|
12450
|
-
"name": "field",
|
|
12451
|
-
"type": {
|
|
12452
|
-
"text": "OXBasicFieldProps"
|
|
12453
|
-
},
|
|
12454
|
-
"attribute": "field",
|
|
12455
|
-
"inheritedFrom": {
|
|
12456
|
-
"name": "OXBasicField",
|
|
12457
|
-
"module": "src/search-form/ox-basic-field.ts"
|
|
12458
|
-
}
|
|
12459
|
-
},
|
|
12460
|
-
{
|
|
12461
|
-
"kind": "field",
|
|
12462
|
-
"name": "checked",
|
|
12463
|
-
"type": {
|
|
12464
|
-
"text": "boolean"
|
|
12465
|
-
},
|
|
12466
|
-
"default": "false",
|
|
12467
|
-
"attribute": "checked"
|
|
12468
|
-
},
|
|
12469
|
-
{
|
|
12470
|
-
"kind": "field",
|
|
12471
|
-
"name": "searchCondition",
|
|
12472
|
-
"type": {
|
|
12473
|
-
"text": "string"
|
|
12474
|
-
},
|
|
12475
|
-
"default": "''",
|
|
12476
|
-
"attribute": "searchCondition"
|
|
12477
12588
|
},
|
|
12478
12589
|
{
|
|
12479
12590
|
"kind": "field",
|
|
12480
|
-
"name": "
|
|
12591
|
+
"name": "form",
|
|
12481
12592
|
"type": {
|
|
12482
|
-
"text": "
|
|
12593
|
+
"text": "HTMLFormElement | null"
|
|
12483
12594
|
},
|
|
12484
|
-
"
|
|
12485
|
-
"
|
|
12595
|
+
"privacy": "private",
|
|
12596
|
+
"default": "null",
|
|
12486
12597
|
"inheritedFrom": {
|
|
12487
12598
|
"name": "OXBasicField",
|
|
12488
12599
|
"module": "src/search-form/ox-basic-field.ts"
|
|
@@ -12499,43 +12610,15 @@
|
|
|
12499
12610
|
"module": "src/search-form/ox-basic-field.ts"
|
|
12500
12611
|
}
|
|
12501
12612
|
},
|
|
12502
|
-
{
|
|
12503
|
-
"kind": "field",
|
|
12504
|
-
"name": "checkedOption",
|
|
12505
|
-
"type": {
|
|
12506
|
-
"text": "OXFieldOptionProps"
|
|
12507
|
-
}
|
|
12508
|
-
},
|
|
12509
|
-
{
|
|
12510
|
-
"kind": "field",
|
|
12511
|
-
"name": "displayValue",
|
|
12512
|
-
"type": {
|
|
12513
|
-
"text": "string"
|
|
12514
|
-
}
|
|
12515
|
-
},
|
|
12516
|
-
{
|
|
12517
|
-
"kind": "field",
|
|
12518
|
-
"name": "searchInput",
|
|
12519
|
-
"type": {
|
|
12520
|
-
"text": "HTMLInputElement"
|
|
12521
|
-
}
|
|
12522
|
-
},
|
|
12523
12613
|
{
|
|
12524
12614
|
"kind": "method",
|
|
12525
|
-
"name": "
|
|
12615
|
+
"name": "findFormElement",
|
|
12616
|
+
"privacy": "private",
|
|
12526
12617
|
"return": {
|
|
12527
12618
|
"type": {
|
|
12528
|
-
"text": "
|
|
12619
|
+
"text": "HTMLFormElement | null"
|
|
12529
12620
|
}
|
|
12530
12621
|
},
|
|
12531
|
-
"parameters": [
|
|
12532
|
-
{
|
|
12533
|
-
"name": "defaultValue",
|
|
12534
|
-
"type": {
|
|
12535
|
-
"text": "any"
|
|
12536
|
-
}
|
|
12537
|
-
}
|
|
12538
|
-
],
|
|
12539
12622
|
"inheritedFrom": {
|
|
12540
12623
|
"name": "OXBasicField",
|
|
12541
12624
|
"module": "src/search-form/ox-basic-field.ts"
|
|
@@ -12543,7 +12626,8 @@
|
|
|
12543
12626
|
},
|
|
12544
12627
|
{
|
|
12545
12628
|
"kind": "method",
|
|
12546
|
-
"name": "
|
|
12629
|
+
"name": "registerCustomEventHandlers",
|
|
12630
|
+
"privacy": "private",
|
|
12547
12631
|
"return": {
|
|
12548
12632
|
"type": {
|
|
12549
12633
|
"text": "void"
|
|
@@ -12551,25 +12635,35 @@
|
|
|
12551
12635
|
},
|
|
12552
12636
|
"parameters": [
|
|
12553
12637
|
{
|
|
12554
|
-
"name": "
|
|
12638
|
+
"name": "handlers",
|
|
12555
12639
|
"type": {
|
|
12556
|
-
"text": "
|
|
12640
|
+
"text": "Record<string, (event: Event) => void>"
|
|
12557
12641
|
}
|
|
12558
12642
|
}
|
|
12559
|
-
]
|
|
12643
|
+
],
|
|
12644
|
+
"inheritedFrom": {
|
|
12645
|
+
"name": "OXBasicField",
|
|
12646
|
+
"module": "src/search-form/ox-basic-field.ts"
|
|
12647
|
+
}
|
|
12560
12648
|
},
|
|
12561
12649
|
{
|
|
12562
12650
|
"kind": "method",
|
|
12563
|
-
"name": "
|
|
12651
|
+
"name": "registerBasicEventHandlers",
|
|
12652
|
+
"privacy": "private",
|
|
12564
12653
|
"return": {
|
|
12565
12654
|
"type": {
|
|
12566
12655
|
"text": "void"
|
|
12567
12656
|
}
|
|
12657
|
+
},
|
|
12658
|
+
"inheritedFrom": {
|
|
12659
|
+
"name": "OXBasicField",
|
|
12660
|
+
"module": "src/search-form/ox-basic-field.ts"
|
|
12568
12661
|
}
|
|
12569
12662
|
},
|
|
12570
12663
|
{
|
|
12571
12664
|
"kind": "method",
|
|
12572
|
-
"name": "
|
|
12665
|
+
"name": "appendFormData",
|
|
12666
|
+
"privacy": "private",
|
|
12573
12667
|
"return": {
|
|
12574
12668
|
"type": {
|
|
12575
12669
|
"text": "void"
|
|
@@ -12577,21 +12671,12 @@
|
|
|
12577
12671
|
},
|
|
12578
12672
|
"parameters": [
|
|
12579
12673
|
{
|
|
12580
|
-
"name": "
|
|
12674
|
+
"name": "{ formData }",
|
|
12581
12675
|
"type": {
|
|
12582
|
-
"text": "
|
|
12676
|
+
"text": "FormDataEvent"
|
|
12583
12677
|
}
|
|
12584
12678
|
}
|
|
12585
|
-
]
|
|
12586
|
-
},
|
|
12587
|
-
{
|
|
12588
|
-
"kind": "field",
|
|
12589
|
-
"name": "form",
|
|
12590
|
-
"type": {
|
|
12591
|
-
"text": "HTMLFormElement | null"
|
|
12592
|
-
},
|
|
12593
|
-
"privacy": "private",
|
|
12594
|
-
"default": "null",
|
|
12679
|
+
],
|
|
12595
12680
|
"inheritedFrom": {
|
|
12596
12681
|
"name": "OXBasicField",
|
|
12597
12682
|
"module": "src/search-form/ox-basic-field.ts"
|
|
@@ -12599,171 +12684,186 @@
|
|
|
12599
12684
|
},
|
|
12600
12685
|
{
|
|
12601
12686
|
"kind": "method",
|
|
12602
|
-
"name": "
|
|
12687
|
+
"name": "submit",
|
|
12603
12688
|
"privacy": "private",
|
|
12604
12689
|
"return": {
|
|
12605
12690
|
"type": {
|
|
12606
|
-
"text": "
|
|
12691
|
+
"text": "void"
|
|
12607
12692
|
}
|
|
12608
12693
|
},
|
|
12609
12694
|
"inheritedFrom": {
|
|
12610
12695
|
"name": "OXBasicField",
|
|
12611
12696
|
"module": "src/search-form/ox-basic-field.ts"
|
|
12612
12697
|
}
|
|
12698
|
+
}
|
|
12699
|
+
],
|
|
12700
|
+
"attributes": [
|
|
12701
|
+
{
|
|
12702
|
+
"name": "field",
|
|
12703
|
+
"type": {
|
|
12704
|
+
"text": "OXCheckboxFieldProps"
|
|
12705
|
+
},
|
|
12706
|
+
"fieldName": "field"
|
|
12613
12707
|
},
|
|
12614
12708
|
{
|
|
12615
|
-
"
|
|
12616
|
-
"
|
|
12617
|
-
|
|
12618
|
-
|
|
12619
|
-
|
|
12620
|
-
|
|
12621
|
-
|
|
12709
|
+
"name": "value",
|
|
12710
|
+
"type": {
|
|
12711
|
+
"text": "boolean | undefined"
|
|
12712
|
+
},
|
|
12713
|
+
"fieldName": "value"
|
|
12714
|
+
}
|
|
12715
|
+
],
|
|
12716
|
+
"superclass": {
|
|
12717
|
+
"name": "OXBasicField",
|
|
12718
|
+
"module": "/src/search-form/ox-basic-field"
|
|
12719
|
+
},
|
|
12720
|
+
"tagName": "ox-checkbox-field",
|
|
12721
|
+
"customElement": true,
|
|
12722
|
+
"events": [
|
|
12723
|
+
{
|
|
12724
|
+
"name": "submit-field",
|
|
12725
|
+
"type": {
|
|
12726
|
+
"text": "CustomEvent"
|
|
12622
12727
|
},
|
|
12623
|
-
"parameters": [
|
|
12624
|
-
{
|
|
12625
|
-
"name": "handlers",
|
|
12626
|
-
"type": {
|
|
12627
|
-
"text": "Record<string, (event: Event) => void>"
|
|
12628
|
-
}
|
|
12629
|
-
}
|
|
12630
|
-
],
|
|
12631
12728
|
"inheritedFrom": {
|
|
12632
12729
|
"name": "OXBasicField",
|
|
12633
12730
|
"module": "src/search-form/ox-basic-field.ts"
|
|
12634
12731
|
}
|
|
12732
|
+
}
|
|
12733
|
+
]
|
|
12734
|
+
}
|
|
12735
|
+
],
|
|
12736
|
+
"exports": [
|
|
12737
|
+
{
|
|
12738
|
+
"kind": "js",
|
|
12739
|
+
"name": "OXCheckboxField",
|
|
12740
|
+
"declaration": {
|
|
12741
|
+
"name": "OXCheckboxField",
|
|
12742
|
+
"module": "src/search-form/ox-checkbox-field.ts"
|
|
12743
|
+
}
|
|
12744
|
+
},
|
|
12745
|
+
{
|
|
12746
|
+
"kind": "custom-element-definition",
|
|
12747
|
+
"name": "ox-checkbox-field",
|
|
12748
|
+
"declaration": {
|
|
12749
|
+
"name": "OXCheckboxField",
|
|
12750
|
+
"module": "src/search-form/ox-checkbox-field.ts"
|
|
12751
|
+
}
|
|
12752
|
+
}
|
|
12753
|
+
]
|
|
12754
|
+
},
|
|
12755
|
+
{
|
|
12756
|
+
"kind": "javascript-module",
|
|
12757
|
+
"path": "src/search-form/ox-grist-search-form.ts",
|
|
12758
|
+
"declarations": [
|
|
12759
|
+
{
|
|
12760
|
+
"kind": "class",
|
|
12761
|
+
"description": "",
|
|
12762
|
+
"name": "OXGristSearchForm",
|
|
12763
|
+
"members": [
|
|
12764
|
+
{
|
|
12765
|
+
"kind": "field",
|
|
12766
|
+
"name": "config",
|
|
12767
|
+
"type": {
|
|
12768
|
+
"text": "GristConfig"
|
|
12769
|
+
},
|
|
12770
|
+
"attribute": "config"
|
|
12635
12771
|
},
|
|
12636
12772
|
{
|
|
12637
|
-
"kind": "
|
|
12638
|
-
"name": "
|
|
12639
|
-
"
|
|
12640
|
-
|
|
12641
|
-
"type": {
|
|
12642
|
-
"text": "void"
|
|
12643
|
-
}
|
|
12773
|
+
"kind": "field",
|
|
12774
|
+
"name": "defaultOperator",
|
|
12775
|
+
"type": {
|
|
12776
|
+
"text": "string"
|
|
12644
12777
|
},
|
|
12645
|
-
"
|
|
12646
|
-
|
|
12647
|
-
|
|
12648
|
-
|
|
12778
|
+
"default": "'eq'",
|
|
12779
|
+
"attribute": "defaultOperator"
|
|
12780
|
+
},
|
|
12781
|
+
{
|
|
12782
|
+
"kind": "field",
|
|
12783
|
+
"name": "timeout",
|
|
12784
|
+
"type": {
|
|
12785
|
+
"text": "NodeJS.Timeout | undefined"
|
|
12786
|
+
},
|
|
12787
|
+
"privacy": "private"
|
|
12649
12788
|
},
|
|
12650
12789
|
{
|
|
12651
12790
|
"kind": "method",
|
|
12652
|
-
"name": "
|
|
12791
|
+
"name": "convertToSearchFields",
|
|
12653
12792
|
"privacy": "private",
|
|
12654
12793
|
"return": {
|
|
12655
12794
|
"type": {
|
|
12656
|
-
"text": "
|
|
12795
|
+
"text": "OXSearchFieldProps[]"
|
|
12657
12796
|
}
|
|
12658
12797
|
},
|
|
12659
12798
|
"parameters": [
|
|
12660
12799
|
{
|
|
12661
|
-
"name": "
|
|
12800
|
+
"name": "config",
|
|
12662
12801
|
"type": {
|
|
12663
|
-
"text": "
|
|
12802
|
+
"text": "GristConfig"
|
|
12664
12803
|
}
|
|
12665
12804
|
}
|
|
12666
|
-
]
|
|
12667
|
-
"inheritedFrom": {
|
|
12668
|
-
"name": "OXBasicField",
|
|
12669
|
-
"module": "src/search-form/ox-basic-field.ts"
|
|
12670
|
-
}
|
|
12805
|
+
]
|
|
12671
12806
|
},
|
|
12672
12807
|
{
|
|
12673
|
-
"kind": "
|
|
12674
|
-
"name": "
|
|
12675
|
-
"
|
|
12676
|
-
|
|
12677
|
-
"type": {
|
|
12678
|
-
"text": "void"
|
|
12679
|
-
}
|
|
12680
|
-
},
|
|
12681
|
-
"inheritedFrom": {
|
|
12682
|
-
"name": "OXBasicField",
|
|
12683
|
-
"module": "src/search-form/ox-basic-field.ts"
|
|
12808
|
+
"kind": "field",
|
|
12809
|
+
"name": "queryFilters",
|
|
12810
|
+
"type": {
|
|
12811
|
+
"text": "QueryFilter[]"
|
|
12684
12812
|
}
|
|
12685
12813
|
}
|
|
12686
12814
|
],
|
|
12687
12815
|
"attributes": [
|
|
12688
12816
|
{
|
|
12689
|
-
"name": "
|
|
12690
|
-
"type": {
|
|
12691
|
-
"text": "OXSelectFieldProps"
|
|
12692
|
-
},
|
|
12693
|
-
"fieldName": "field"
|
|
12694
|
-
},
|
|
12695
|
-
{
|
|
12696
|
-
"name": "checked",
|
|
12697
|
-
"type": {
|
|
12698
|
-
"text": "boolean"
|
|
12699
|
-
},
|
|
12700
|
-
"default": "false",
|
|
12701
|
-
"fieldName": "checked"
|
|
12702
|
-
},
|
|
12703
|
-
{
|
|
12704
|
-
"name": "searchCondition",
|
|
12817
|
+
"name": "config",
|
|
12705
12818
|
"type": {
|
|
12706
|
-
"text": "
|
|
12819
|
+
"text": "GristConfig"
|
|
12707
12820
|
},
|
|
12708
|
-
"
|
|
12709
|
-
"fieldName": "searchCondition"
|
|
12821
|
+
"fieldName": "config"
|
|
12710
12822
|
},
|
|
12711
12823
|
{
|
|
12712
|
-
"name": "
|
|
12824
|
+
"name": "defaultOperator",
|
|
12713
12825
|
"type": {
|
|
12714
12826
|
"text": "string"
|
|
12715
12827
|
},
|
|
12716
|
-
"default": "''",
|
|
12717
|
-
"fieldName": "
|
|
12828
|
+
"default": "'eq'",
|
|
12829
|
+
"fieldName": "defaultOperator"
|
|
12718
12830
|
}
|
|
12719
12831
|
],
|
|
12720
12832
|
"superclass": {
|
|
12721
|
-
"name": "
|
|
12722
|
-
"
|
|
12833
|
+
"name": "LitElement",
|
|
12834
|
+
"package": "lit"
|
|
12723
12835
|
},
|
|
12724
|
-
"tagName": "ox-
|
|
12725
|
-
"customElement": true
|
|
12726
|
-
"events": [
|
|
12727
|
-
{
|
|
12728
|
-
"name": "submit-field",
|
|
12729
|
-
"type": {
|
|
12730
|
-
"text": "CustomEvent"
|
|
12731
|
-
},
|
|
12732
|
-
"inheritedFrom": {
|
|
12733
|
-
"name": "OXBasicField",
|
|
12734
|
-
"module": "src/search-form/ox-basic-field.ts"
|
|
12735
|
-
}
|
|
12736
|
-
}
|
|
12737
|
-
]
|
|
12836
|
+
"tagName": "ox-grist-search-form",
|
|
12837
|
+
"customElement": true
|
|
12738
12838
|
}
|
|
12739
12839
|
],
|
|
12740
12840
|
"exports": [
|
|
12741
12841
|
{
|
|
12742
12842
|
"kind": "js",
|
|
12743
|
-
"name": "
|
|
12843
|
+
"name": "OXGristSearchForm",
|
|
12744
12844
|
"declaration": {
|
|
12745
|
-
"name": "
|
|
12746
|
-
"module": "src/search-form/ox-
|
|
12845
|
+
"name": "OXGristSearchForm",
|
|
12846
|
+
"module": "src/search-form/ox-grist-search-form.ts"
|
|
12747
12847
|
}
|
|
12748
12848
|
},
|
|
12749
12849
|
{
|
|
12750
12850
|
"kind": "custom-element-definition",
|
|
12751
|
-
"name": "ox-
|
|
12851
|
+
"name": "ox-grist-search-form",
|
|
12752
12852
|
"declaration": {
|
|
12753
|
-
"name": "
|
|
12754
|
-
"module": "src/search-form/ox-
|
|
12853
|
+
"name": "OXGristSearchForm",
|
|
12854
|
+
"module": "src/search-form/ox-grist-search-form.ts"
|
|
12755
12855
|
}
|
|
12756
12856
|
}
|
|
12757
12857
|
]
|
|
12758
12858
|
},
|
|
12759
12859
|
{
|
|
12760
12860
|
"kind": "javascript-module",
|
|
12761
|
-
"path": "src/search-form/ox-
|
|
12861
|
+
"path": "src/search-form/ox-number-field.ts",
|
|
12762
12862
|
"declarations": [
|
|
12763
12863
|
{
|
|
12764
12864
|
"kind": "class",
|
|
12765
12865
|
"description": "",
|
|
12766
|
-
"name": "
|
|
12866
|
+
"name": "OXNumberField",
|
|
12767
12867
|
"members": [
|
|
12768
12868
|
{
|
|
12769
12869
|
"kind": "field",
|
|
@@ -12783,7 +12883,6 @@
|
|
|
12783
12883
|
"type": {
|
|
12784
12884
|
"text": "any | undefined"
|
|
12785
12885
|
},
|
|
12786
|
-
"default": "''",
|
|
12787
12886
|
"attribute": "value",
|
|
12788
12887
|
"inheritedFrom": {
|
|
12789
12888
|
"name": "OXBasicField",
|
|
@@ -12802,7 +12901,7 @@
|
|
|
12802
12901
|
{
|
|
12803
12902
|
"name": "defaultValue",
|
|
12804
12903
|
"type": {
|
|
12805
|
-
"text": "
|
|
12904
|
+
"text": "number"
|
|
12806
12905
|
}
|
|
12807
12906
|
}
|
|
12808
12907
|
],
|
|
@@ -12811,6 +12910,24 @@
|
|
|
12811
12910
|
"module": "src/search-form/ox-basic-field.ts"
|
|
12812
12911
|
}
|
|
12813
12912
|
},
|
|
12913
|
+
{
|
|
12914
|
+
"kind": "method",
|
|
12915
|
+
"name": "decrease",
|
|
12916
|
+
"return": {
|
|
12917
|
+
"type": {
|
|
12918
|
+
"text": "void"
|
|
12919
|
+
}
|
|
12920
|
+
}
|
|
12921
|
+
},
|
|
12922
|
+
{
|
|
12923
|
+
"kind": "method",
|
|
12924
|
+
"name": "increase",
|
|
12925
|
+
"return": {
|
|
12926
|
+
"type": {
|
|
12927
|
+
"text": "void"
|
|
12928
|
+
}
|
|
12929
|
+
}
|
|
12930
|
+
},
|
|
12814
12931
|
{
|
|
12815
12932
|
"kind": "method",
|
|
12816
12933
|
"name": "onChangeHandler",
|
|
@@ -12936,16 +13053,15 @@
|
|
|
12936
13053
|
{
|
|
12937
13054
|
"name": "field",
|
|
12938
13055
|
"type": {
|
|
12939
|
-
"text": "
|
|
13056
|
+
"text": "OXNumberFieldProps"
|
|
12940
13057
|
},
|
|
12941
13058
|
"fieldName": "field"
|
|
12942
13059
|
},
|
|
12943
13060
|
{
|
|
12944
13061
|
"name": "value",
|
|
12945
13062
|
"type": {
|
|
12946
|
-
"text": "
|
|
13063
|
+
"text": "number | undefined"
|
|
12947
13064
|
},
|
|
12948
|
-
"default": "''",
|
|
12949
13065
|
"fieldName": "value"
|
|
12950
13066
|
}
|
|
12951
13067
|
],
|
|
@@ -12953,7 +13069,7 @@
|
|
|
12953
13069
|
"name": "OXBasicField",
|
|
12954
13070
|
"module": "/src/search-form/ox-basic-field"
|
|
12955
13071
|
},
|
|
12956
|
-
"tagName": "ox-
|
|
13072
|
+
"tagName": "ox-number-field",
|
|
12957
13073
|
"customElement": true,
|
|
12958
13074
|
"events": [
|
|
12959
13075
|
{
|
|
@@ -12972,617 +13088,673 @@
|
|
|
12972
13088
|
"exports": [
|
|
12973
13089
|
{
|
|
12974
13090
|
"kind": "js",
|
|
12975
|
-
"name": "
|
|
13091
|
+
"name": "OXNumberField",
|
|
12976
13092
|
"declaration": {
|
|
12977
|
-
"name": "
|
|
12978
|
-
"module": "src/search-form/ox-
|
|
13093
|
+
"name": "OXNumberField",
|
|
13094
|
+
"module": "src/search-form/ox-number-field.ts"
|
|
12979
13095
|
}
|
|
12980
13096
|
},
|
|
12981
13097
|
{
|
|
12982
13098
|
"kind": "custom-element-definition",
|
|
12983
|
-
"name": "ox-
|
|
13099
|
+
"name": "ox-number-field",
|
|
12984
13100
|
"declaration": {
|
|
12985
|
-
"name": "
|
|
12986
|
-
"module": "src/search-form/ox-
|
|
12987
|
-
}
|
|
12988
|
-
}
|
|
12989
|
-
]
|
|
12990
|
-
},
|
|
12991
|
-
{
|
|
12992
|
-
"kind": "javascript-module",
|
|
12993
|
-
"path": "src/utils/index.ts",
|
|
12994
|
-
"declarations": [],
|
|
12995
|
-
"exports": [
|
|
12996
|
-
{
|
|
12997
|
-
"kind": "js",
|
|
12998
|
-
"name": "*",
|
|
12999
|
-
"declaration": {
|
|
13000
|
-
"name": "*",
|
|
13001
|
-
"package": "./supports-passive"
|
|
13002
|
-
}
|
|
13003
|
-
}
|
|
13004
|
-
]
|
|
13005
|
-
},
|
|
13006
|
-
{
|
|
13007
|
-
"kind": "javascript-module",
|
|
13008
|
-
"path": "src/utils/supports-passive.ts",
|
|
13009
|
-
"declarations": [
|
|
13010
|
-
{
|
|
13011
|
-
"kind": "variable",
|
|
13012
|
-
"name": "supportsPassive",
|
|
13013
|
-
"type": {
|
|
13014
|
-
"text": "boolean"
|
|
13015
|
-
},
|
|
13016
|
-
"default": "false"
|
|
13017
|
-
}
|
|
13018
|
-
],
|
|
13019
|
-
"exports": [
|
|
13020
|
-
{
|
|
13021
|
-
"kind": "js",
|
|
13022
|
-
"name": "supportsPassive",
|
|
13023
|
-
"declaration": {
|
|
13024
|
-
"name": "supportsPassive",
|
|
13025
|
-
"module": "src/utils/supports-passive.ts"
|
|
13101
|
+
"name": "OXNumberField",
|
|
13102
|
+
"module": "src/search-form/ox-number-field.ts"
|
|
13026
13103
|
}
|
|
13027
13104
|
}
|
|
13028
13105
|
]
|
|
13029
13106
|
},
|
|
13030
13107
|
{
|
|
13031
13108
|
"kind": "javascript-module",
|
|
13032
|
-
"path": "src/
|
|
13109
|
+
"path": "src/search-form/ox-search-form.ts",
|
|
13033
13110
|
"declarations": [
|
|
13034
13111
|
{
|
|
13035
|
-
"kind": "
|
|
13036
|
-
"
|
|
13037
|
-
"
|
|
13038
|
-
|
|
13039
|
-
"text": "void"
|
|
13040
|
-
}
|
|
13041
|
-
},
|
|
13042
|
-
"parameters": [
|
|
13112
|
+
"kind": "class",
|
|
13113
|
+
"description": "",
|
|
13114
|
+
"name": "OXSearchForm",
|
|
13115
|
+
"members": [
|
|
13043
13116
|
{
|
|
13044
|
-
"
|
|
13117
|
+
"kind": "field",
|
|
13118
|
+
"name": "fields",
|
|
13045
13119
|
"type": {
|
|
13046
|
-
"text": "
|
|
13120
|
+
"text": "OXSearchFieldProps[]"
|
|
13121
|
+
},
|
|
13122
|
+
"attribute": "fields"
|
|
13123
|
+
},
|
|
13124
|
+
{
|
|
13125
|
+
"kind": "field",
|
|
13126
|
+
"name": "form",
|
|
13127
|
+
"type": {
|
|
13128
|
+
"text": "HTMLFormElement"
|
|
13129
|
+
}
|
|
13130
|
+
},
|
|
13131
|
+
{
|
|
13132
|
+
"kind": "field",
|
|
13133
|
+
"name": "searchFields",
|
|
13134
|
+
"type": {
|
|
13135
|
+
"text": "OXSearchFieldTypes[]"
|
|
13136
|
+
}
|
|
13137
|
+
},
|
|
13138
|
+
{
|
|
13139
|
+
"kind": "method",
|
|
13140
|
+
"name": "renderField",
|
|
13141
|
+
"privacy": "private",
|
|
13142
|
+
"return": {
|
|
13143
|
+
"type": {
|
|
13144
|
+
"text": "TemplateResult"
|
|
13145
|
+
}
|
|
13146
|
+
},
|
|
13147
|
+
"parameters": [
|
|
13148
|
+
{
|
|
13149
|
+
"name": "field",
|
|
13150
|
+
"type": {
|
|
13151
|
+
"text": "OXSearchFieldProps"
|
|
13152
|
+
}
|
|
13153
|
+
}
|
|
13154
|
+
]
|
|
13155
|
+
},
|
|
13156
|
+
{
|
|
13157
|
+
"kind": "method",
|
|
13158
|
+
"name": "_submitFieldHandler",
|
|
13159
|
+
"return": {
|
|
13160
|
+
"type": {
|
|
13161
|
+
"text": "void"
|
|
13162
|
+
}
|
|
13047
13163
|
}
|
|
13048
13164
|
}
|
|
13049
13165
|
],
|
|
13050
|
-
"
|
|
13051
|
-
}
|
|
13052
|
-
],
|
|
13053
|
-
"exports": [
|
|
13054
|
-
{
|
|
13055
|
-
"kind": "js",
|
|
13056
|
-
"name": "dataCardClickHandler",
|
|
13057
|
-
"declaration": {
|
|
13058
|
-
"name": "dataCardClickHandler",
|
|
13059
|
-
"module": "src/data-card/event-handlers/data-card-click-handler.ts"
|
|
13060
|
-
}
|
|
13061
|
-
}
|
|
13062
|
-
]
|
|
13063
|
-
},
|
|
13064
|
-
{
|
|
13065
|
-
"kind": "javascript-module",
|
|
13066
|
-
"path": "src/data-card/event-handlers/data-card-dblclick-handler.ts",
|
|
13067
|
-
"declarations": [
|
|
13068
|
-
{
|
|
13069
|
-
"kind": "function",
|
|
13070
|
-
"name": "dataCardDblclickHandler",
|
|
13071
|
-
"return": {
|
|
13072
|
-
"type": {
|
|
13073
|
-
"text": "void"
|
|
13074
|
-
}
|
|
13075
|
-
},
|
|
13076
|
-
"parameters": [
|
|
13166
|
+
"events": [
|
|
13077
13167
|
{
|
|
13078
|
-
"name": "
|
|
13168
|
+
"name": "submit",
|
|
13079
13169
|
"type": {
|
|
13080
|
-
"text": "
|
|
13170
|
+
"text": "CustomEvent"
|
|
13081
13171
|
}
|
|
13082
13172
|
}
|
|
13083
13173
|
],
|
|
13084
|
-
"
|
|
13174
|
+
"attributes": [
|
|
13175
|
+
{
|
|
13176
|
+
"name": "fields",
|
|
13177
|
+
"type": {
|
|
13178
|
+
"text": "OXSearchFieldProps[]"
|
|
13179
|
+
},
|
|
13180
|
+
"fieldName": "fields"
|
|
13181
|
+
}
|
|
13182
|
+
],
|
|
13183
|
+
"superclass": {
|
|
13184
|
+
"name": "LitElement",
|
|
13185
|
+
"package": "lit"
|
|
13186
|
+
},
|
|
13187
|
+
"tagName": "ox-search-form",
|
|
13188
|
+
"customElement": true
|
|
13085
13189
|
}
|
|
13086
13190
|
],
|
|
13087
13191
|
"exports": [
|
|
13088
13192
|
{
|
|
13089
13193
|
"kind": "js",
|
|
13090
|
-
"name": "
|
|
13194
|
+
"name": "OXSearchForm",
|
|
13091
13195
|
"declaration": {
|
|
13092
|
-
"name": "
|
|
13093
|
-
"module": "src/
|
|
13196
|
+
"name": "OXSearchForm",
|
|
13197
|
+
"module": "src/search-form/ox-search-form.ts"
|
|
13198
|
+
}
|
|
13199
|
+
},
|
|
13200
|
+
{
|
|
13201
|
+
"kind": "custom-element-definition",
|
|
13202
|
+
"name": "ox-search-form",
|
|
13203
|
+
"declaration": {
|
|
13204
|
+
"name": "OXSearchForm",
|
|
13205
|
+
"module": "src/search-form/ox-search-form.ts"
|
|
13094
13206
|
}
|
|
13095
13207
|
}
|
|
13096
13208
|
]
|
|
13097
13209
|
},
|
|
13098
13210
|
{
|
|
13099
13211
|
"kind": "javascript-module",
|
|
13100
|
-
"path": "src/
|
|
13212
|
+
"path": "src/search-form/ox-select-field.ts",
|
|
13101
13213
|
"declarations": [
|
|
13102
13214
|
{
|
|
13103
|
-
"kind": "
|
|
13104
|
-
"
|
|
13105
|
-
"
|
|
13106
|
-
|
|
13107
|
-
"text": "void"
|
|
13108
|
-
}
|
|
13109
|
-
},
|
|
13110
|
-
"parameters": [
|
|
13215
|
+
"kind": "class",
|
|
13216
|
+
"description": "",
|
|
13217
|
+
"name": "OXSelectField",
|
|
13218
|
+
"members": [
|
|
13111
13219
|
{
|
|
13112
|
-
"
|
|
13220
|
+
"kind": "field",
|
|
13221
|
+
"name": "field",
|
|
13113
13222
|
"type": {
|
|
13114
|
-
"text": "
|
|
13223
|
+
"text": "OXBasicFieldProps"
|
|
13224
|
+
},
|
|
13225
|
+
"attribute": "field",
|
|
13226
|
+
"inheritedFrom": {
|
|
13227
|
+
"name": "OXBasicField",
|
|
13228
|
+
"module": "src/search-form/ox-basic-field.ts"
|
|
13115
13229
|
}
|
|
13116
13230
|
},
|
|
13117
13231
|
{
|
|
13118
|
-
"
|
|
13232
|
+
"kind": "field",
|
|
13233
|
+
"name": "checked",
|
|
13119
13234
|
"type": {
|
|
13120
|
-
"text": "
|
|
13235
|
+
"text": "boolean"
|
|
13236
|
+
},
|
|
13237
|
+
"default": "false",
|
|
13238
|
+
"attribute": "checked"
|
|
13239
|
+
},
|
|
13240
|
+
{
|
|
13241
|
+
"kind": "field",
|
|
13242
|
+
"name": "searchCondition",
|
|
13243
|
+
"type": {
|
|
13244
|
+
"text": "string"
|
|
13245
|
+
},
|
|
13246
|
+
"default": "''",
|
|
13247
|
+
"attribute": "searchCondition"
|
|
13248
|
+
},
|
|
13249
|
+
{
|
|
13250
|
+
"kind": "field",
|
|
13251
|
+
"name": "value",
|
|
13252
|
+
"type": {
|
|
13253
|
+
"text": "any | undefined"
|
|
13254
|
+
},
|
|
13255
|
+
"default": "''",
|
|
13256
|
+
"attribute": "value",
|
|
13257
|
+
"inheritedFrom": {
|
|
13258
|
+
"name": "OXBasicField",
|
|
13259
|
+
"module": "src/search-form/ox-basic-field.ts"
|
|
13121
13260
|
}
|
|
13122
|
-
}
|
|
13123
|
-
],
|
|
13124
|
-
"description": "ox-record-card 의 click handler\n\n- handler의 this 는 ox-record-card임."
|
|
13125
|
-
}
|
|
13126
|
-
],
|
|
13127
|
-
"exports": [
|
|
13128
|
-
{
|
|
13129
|
-
"kind": "js",
|
|
13130
|
-
"name": "recordCardClickHandler",
|
|
13131
|
-
"declaration": {
|
|
13132
|
-
"name": "recordCardClickHandler",
|
|
13133
|
-
"module": "src/data-card/event-handlers/record-card-click-handler.ts"
|
|
13134
|
-
}
|
|
13135
|
-
}
|
|
13136
|
-
]
|
|
13137
|
-
},
|
|
13138
|
-
{
|
|
13139
|
-
"kind": "javascript-module",
|
|
13140
|
-
"path": "src/data-card/event-handlers/record-card-dblclick-handler.ts",
|
|
13141
|
-
"declarations": [
|
|
13142
|
-
{
|
|
13143
|
-
"kind": "function",
|
|
13144
|
-
"name": "recordCardDblClickHandler",
|
|
13145
|
-
"return": {
|
|
13146
|
-
"type": {
|
|
13147
|
-
"text": "void"
|
|
13148
|
-
}
|
|
13149
|
-
},
|
|
13150
|
-
"parameters": [
|
|
13261
|
+
},
|
|
13151
13262
|
{
|
|
13152
|
-
"
|
|
13263
|
+
"kind": "field",
|
|
13264
|
+
"name": "input",
|
|
13153
13265
|
"type": {
|
|
13154
|
-
"text": "
|
|
13266
|
+
"text": "HTMLInputElement | HTMLSelectElement"
|
|
13267
|
+
},
|
|
13268
|
+
"inheritedFrom": {
|
|
13269
|
+
"name": "OXBasicField",
|
|
13270
|
+
"module": "src/search-form/ox-basic-field.ts"
|
|
13155
13271
|
}
|
|
13156
13272
|
},
|
|
13157
13273
|
{
|
|
13158
|
-
"
|
|
13274
|
+
"kind": "field",
|
|
13275
|
+
"name": "checkedOption",
|
|
13159
13276
|
"type": {
|
|
13160
|
-
"text": "
|
|
13277
|
+
"text": "OXFieldOptionProps"
|
|
13161
13278
|
}
|
|
13162
|
-
}
|
|
13163
|
-
],
|
|
13164
|
-
"description": "ox-record-card 의 dblclick handler\n\n- handler의 this 는 ox-record-card임."
|
|
13165
|
-
}
|
|
13166
|
-
],
|
|
13167
|
-
"exports": [
|
|
13168
|
-
{
|
|
13169
|
-
"kind": "js",
|
|
13170
|
-
"name": "recordCardDblClickHandler",
|
|
13171
|
-
"declaration": {
|
|
13172
|
-
"name": "recordCardDblClickHandler",
|
|
13173
|
-
"module": "src/data-card/event-handlers/record-card-dblclick-handler.ts"
|
|
13174
|
-
}
|
|
13175
|
-
}
|
|
13176
|
-
]
|
|
13177
|
-
},
|
|
13178
|
-
{
|
|
13179
|
-
"kind": "javascript-module",
|
|
13180
|
-
"path": "src/data-grid/event-handlers/data-grid-body-click-handler.ts",
|
|
13181
|
-
"declarations": [
|
|
13182
|
-
{
|
|
13183
|
-
"kind": "function",
|
|
13184
|
-
"name": "dataGridBodyClickHandler",
|
|
13185
|
-
"return": {
|
|
13186
|
-
"type": {
|
|
13187
|
-
"text": "void"
|
|
13188
|
-
}
|
|
13189
|
-
},
|
|
13190
|
-
"parameters": [
|
|
13279
|
+
},
|
|
13191
13280
|
{
|
|
13192
|
-
"
|
|
13281
|
+
"kind": "field",
|
|
13282
|
+
"name": "displayValue",
|
|
13193
13283
|
"type": {
|
|
13194
|
-
"text": "
|
|
13284
|
+
"text": "string"
|
|
13195
13285
|
}
|
|
13196
13286
|
},
|
|
13197
13287
|
{
|
|
13198
|
-
"
|
|
13288
|
+
"kind": "field",
|
|
13289
|
+
"name": "searchInput",
|
|
13199
13290
|
"type": {
|
|
13200
|
-
"text": "
|
|
13291
|
+
"text": "HTMLInputElement"
|
|
13201
13292
|
}
|
|
13202
|
-
}
|
|
13203
|
-
]
|
|
13204
|
-
}
|
|
13205
|
-
],
|
|
13206
|
-
"exports": [
|
|
13207
|
-
{
|
|
13208
|
-
"kind": "js",
|
|
13209
|
-
"name": "dataGridBodyClickHandler",
|
|
13210
|
-
"declaration": {
|
|
13211
|
-
"name": "dataGridBodyClickHandler",
|
|
13212
|
-
"module": "src/data-grid/event-handlers/data-grid-body-click-handler.ts"
|
|
13213
|
-
}
|
|
13214
|
-
}
|
|
13215
|
-
]
|
|
13216
|
-
},
|
|
13217
|
-
{
|
|
13218
|
-
"kind": "javascript-module",
|
|
13219
|
-
"path": "src/data-grid/event-handlers/data-grid-body-dblclick-handler.ts",
|
|
13220
|
-
"declarations": [
|
|
13221
|
-
{
|
|
13222
|
-
"kind": "function",
|
|
13223
|
-
"name": "dataGridBodyDblclickHandler",
|
|
13224
|
-
"return": {
|
|
13225
|
-
"type": {
|
|
13226
|
-
"text": "Promise<void>"
|
|
13227
|
-
}
|
|
13228
|
-
},
|
|
13229
|
-
"parameters": [
|
|
13293
|
+
},
|
|
13230
13294
|
{
|
|
13231
|
-
"
|
|
13295
|
+
"kind": "method",
|
|
13296
|
+
"name": "setDefaultValue",
|
|
13297
|
+
"return": {
|
|
13298
|
+
"type": {
|
|
13299
|
+
"text": "void"
|
|
13300
|
+
}
|
|
13301
|
+
},
|
|
13302
|
+
"parameters": [
|
|
13303
|
+
{
|
|
13304
|
+
"name": "defaultValue",
|
|
13305
|
+
"type": {
|
|
13306
|
+
"text": "any"
|
|
13307
|
+
}
|
|
13308
|
+
}
|
|
13309
|
+
],
|
|
13310
|
+
"inheritedFrom": {
|
|
13311
|
+
"name": "OXBasicField",
|
|
13312
|
+
"module": "src/search-form/ox-basic-field.ts"
|
|
13313
|
+
}
|
|
13314
|
+
},
|
|
13315
|
+
{
|
|
13316
|
+
"kind": "method",
|
|
13317
|
+
"name": "openPopup",
|
|
13318
|
+
"return": {
|
|
13319
|
+
"type": {
|
|
13320
|
+
"text": "void"
|
|
13321
|
+
}
|
|
13322
|
+
},
|
|
13323
|
+
"parameters": [
|
|
13324
|
+
{
|
|
13325
|
+
"name": "event",
|
|
13326
|
+
"type": {
|
|
13327
|
+
"text": "MouseEvent"
|
|
13328
|
+
}
|
|
13329
|
+
}
|
|
13330
|
+
]
|
|
13331
|
+
},
|
|
13332
|
+
{
|
|
13333
|
+
"kind": "method",
|
|
13334
|
+
"name": "onSearchInputHandler",
|
|
13335
|
+
"return": {
|
|
13336
|
+
"type": {
|
|
13337
|
+
"text": "void"
|
|
13338
|
+
}
|
|
13339
|
+
}
|
|
13340
|
+
},
|
|
13341
|
+
{
|
|
13342
|
+
"kind": "method",
|
|
13343
|
+
"name": "onValueChange",
|
|
13344
|
+
"return": {
|
|
13345
|
+
"type": {
|
|
13346
|
+
"text": "void"
|
|
13347
|
+
}
|
|
13348
|
+
},
|
|
13349
|
+
"parameters": [
|
|
13350
|
+
{
|
|
13351
|
+
"name": "event",
|
|
13352
|
+
"type": {
|
|
13353
|
+
"text": "Event"
|
|
13354
|
+
}
|
|
13355
|
+
}
|
|
13356
|
+
]
|
|
13357
|
+
},
|
|
13358
|
+
{
|
|
13359
|
+
"kind": "field",
|
|
13360
|
+
"name": "form",
|
|
13232
13361
|
"type": {
|
|
13233
|
-
"text": "
|
|
13362
|
+
"text": "HTMLFormElement | null"
|
|
13363
|
+
},
|
|
13364
|
+
"privacy": "private",
|
|
13365
|
+
"default": "null",
|
|
13366
|
+
"inheritedFrom": {
|
|
13367
|
+
"name": "OXBasicField",
|
|
13368
|
+
"module": "src/search-form/ox-basic-field.ts"
|
|
13369
|
+
}
|
|
13370
|
+
},
|
|
13371
|
+
{
|
|
13372
|
+
"kind": "method",
|
|
13373
|
+
"name": "findFormElement",
|
|
13374
|
+
"privacy": "private",
|
|
13375
|
+
"return": {
|
|
13376
|
+
"type": {
|
|
13377
|
+
"text": "HTMLFormElement | null"
|
|
13378
|
+
}
|
|
13379
|
+
},
|
|
13380
|
+
"inheritedFrom": {
|
|
13381
|
+
"name": "OXBasicField",
|
|
13382
|
+
"module": "src/search-form/ox-basic-field.ts"
|
|
13383
|
+
}
|
|
13384
|
+
},
|
|
13385
|
+
{
|
|
13386
|
+
"kind": "method",
|
|
13387
|
+
"name": "registerCustomEventHandlers",
|
|
13388
|
+
"privacy": "private",
|
|
13389
|
+
"return": {
|
|
13390
|
+
"type": {
|
|
13391
|
+
"text": "void"
|
|
13392
|
+
}
|
|
13393
|
+
},
|
|
13394
|
+
"parameters": [
|
|
13395
|
+
{
|
|
13396
|
+
"name": "handlers",
|
|
13397
|
+
"type": {
|
|
13398
|
+
"text": "Record<string, (event: Event) => void>"
|
|
13399
|
+
}
|
|
13400
|
+
}
|
|
13401
|
+
],
|
|
13402
|
+
"inheritedFrom": {
|
|
13403
|
+
"name": "OXBasicField",
|
|
13404
|
+
"module": "src/search-form/ox-basic-field.ts"
|
|
13405
|
+
}
|
|
13406
|
+
},
|
|
13407
|
+
{
|
|
13408
|
+
"kind": "method",
|
|
13409
|
+
"name": "registerBasicEventHandlers",
|
|
13410
|
+
"privacy": "private",
|
|
13411
|
+
"return": {
|
|
13412
|
+
"type": {
|
|
13413
|
+
"text": "void"
|
|
13414
|
+
}
|
|
13415
|
+
},
|
|
13416
|
+
"inheritedFrom": {
|
|
13417
|
+
"name": "OXBasicField",
|
|
13418
|
+
"module": "src/search-form/ox-basic-field.ts"
|
|
13419
|
+
}
|
|
13420
|
+
},
|
|
13421
|
+
{
|
|
13422
|
+
"kind": "method",
|
|
13423
|
+
"name": "appendFormData",
|
|
13424
|
+
"privacy": "private",
|
|
13425
|
+
"return": {
|
|
13426
|
+
"type": {
|
|
13427
|
+
"text": "void"
|
|
13428
|
+
}
|
|
13429
|
+
},
|
|
13430
|
+
"parameters": [
|
|
13431
|
+
{
|
|
13432
|
+
"name": "{ formData }",
|
|
13433
|
+
"type": {
|
|
13434
|
+
"text": "FormDataEvent"
|
|
13435
|
+
}
|
|
13436
|
+
}
|
|
13437
|
+
],
|
|
13438
|
+
"inheritedFrom": {
|
|
13439
|
+
"name": "OXBasicField",
|
|
13440
|
+
"module": "src/search-form/ox-basic-field.ts"
|
|
13234
13441
|
}
|
|
13235
13442
|
},
|
|
13236
13443
|
{
|
|
13237
|
-
"
|
|
13238
|
-
"
|
|
13239
|
-
|
|
13444
|
+
"kind": "method",
|
|
13445
|
+
"name": "submit",
|
|
13446
|
+
"privacy": "private",
|
|
13447
|
+
"return": {
|
|
13448
|
+
"type": {
|
|
13449
|
+
"text": "void"
|
|
13450
|
+
}
|
|
13451
|
+
},
|
|
13452
|
+
"inheritedFrom": {
|
|
13453
|
+
"name": "OXBasicField",
|
|
13454
|
+
"module": "src/search-form/ox-basic-field.ts"
|
|
13240
13455
|
}
|
|
13241
13456
|
}
|
|
13242
13457
|
],
|
|
13243
|
-
"
|
|
13244
|
-
}
|
|
13245
|
-
],
|
|
13246
|
-
"exports": [
|
|
13247
|
-
{
|
|
13248
|
-
"kind": "js",
|
|
13249
|
-
"name": "dataGridBodyDblclickHandler",
|
|
13250
|
-
"declaration": {
|
|
13251
|
-
"name": "dataGridBodyDblclickHandler",
|
|
13252
|
-
"module": "src/data-grid/event-handlers/data-grid-body-dblclick-handler.ts"
|
|
13253
|
-
}
|
|
13254
|
-
}
|
|
13255
|
-
]
|
|
13256
|
-
},
|
|
13257
|
-
{
|
|
13258
|
-
"kind": "javascript-module",
|
|
13259
|
-
"path": "src/data-grid/event-handlers/data-grid-body-keydown-handler.ts",
|
|
13260
|
-
"declarations": [
|
|
13261
|
-
{
|
|
13262
|
-
"kind": "function",
|
|
13263
|
-
"name": "dataGridBodyKeydownHandler",
|
|
13264
|
-
"return": {
|
|
13265
|
-
"type": {
|
|
13266
|
-
"text": "Promise<void>"
|
|
13267
|
-
}
|
|
13268
|
-
},
|
|
13269
|
-
"parameters": [
|
|
13458
|
+
"attributes": [
|
|
13270
13459
|
{
|
|
13271
|
-
"name": "
|
|
13460
|
+
"name": "field",
|
|
13272
13461
|
"type": {
|
|
13273
|
-
"text": "
|
|
13274
|
-
}
|
|
13462
|
+
"text": "OXSelectFieldProps"
|
|
13463
|
+
},
|
|
13464
|
+
"fieldName": "field"
|
|
13275
13465
|
},
|
|
13276
13466
|
{
|
|
13277
|
-
"name": "
|
|
13467
|
+
"name": "checked",
|
|
13278
13468
|
"type": {
|
|
13279
|
-
"text": "
|
|
13280
|
-
}
|
|
13469
|
+
"text": "boolean"
|
|
13470
|
+
},
|
|
13471
|
+
"default": "false",
|
|
13472
|
+
"fieldName": "checked"
|
|
13473
|
+
},
|
|
13474
|
+
{
|
|
13475
|
+
"name": "searchCondition",
|
|
13476
|
+
"type": {
|
|
13477
|
+
"text": "string"
|
|
13478
|
+
},
|
|
13479
|
+
"default": "''",
|
|
13480
|
+
"fieldName": "searchCondition"
|
|
13481
|
+
},
|
|
13482
|
+
{
|
|
13483
|
+
"name": "value",
|
|
13484
|
+
"type": {
|
|
13485
|
+
"text": "string"
|
|
13486
|
+
},
|
|
13487
|
+
"default": "''",
|
|
13488
|
+
"fieldName": "value"
|
|
13281
13489
|
}
|
|
13282
13490
|
],
|
|
13283
|
-
"
|
|
13284
|
-
|
|
13285
|
-
|
|
13286
|
-
"exports": [
|
|
13287
|
-
{
|
|
13288
|
-
"kind": "js",
|
|
13289
|
-
"name": "dataGridBodyKeydownHandler",
|
|
13290
|
-
"declaration": {
|
|
13291
|
-
"name": "dataGridBodyKeydownHandler",
|
|
13292
|
-
"module": "src/data-grid/event-handlers/data-grid-body-keydown-handler.ts"
|
|
13293
|
-
}
|
|
13294
|
-
}
|
|
13295
|
-
]
|
|
13296
|
-
},
|
|
13297
|
-
{
|
|
13298
|
-
"kind": "javascript-module",
|
|
13299
|
-
"path": "src/data-list/event-handlers/data-list-click-handler.ts",
|
|
13300
|
-
"declarations": [
|
|
13301
|
-
{
|
|
13302
|
-
"kind": "function",
|
|
13303
|
-
"name": "dataListClickHandler",
|
|
13304
|
-
"return": {
|
|
13305
|
-
"type": {
|
|
13306
|
-
"text": "void"
|
|
13307
|
-
}
|
|
13491
|
+
"superclass": {
|
|
13492
|
+
"name": "OXBasicField",
|
|
13493
|
+
"module": "/src/search-form/ox-basic-field"
|
|
13308
13494
|
},
|
|
13309
|
-
"
|
|
13495
|
+
"tagName": "ox-select-field",
|
|
13496
|
+
"customElement": true,
|
|
13497
|
+
"events": [
|
|
13310
13498
|
{
|
|
13311
|
-
"name": "
|
|
13499
|
+
"name": "submit-field",
|
|
13312
13500
|
"type": {
|
|
13313
|
-
"text": "
|
|
13501
|
+
"text": "CustomEvent"
|
|
13502
|
+
},
|
|
13503
|
+
"inheritedFrom": {
|
|
13504
|
+
"name": "OXBasicField",
|
|
13505
|
+
"module": "src/search-form/ox-basic-field.ts"
|
|
13314
13506
|
}
|
|
13315
13507
|
}
|
|
13316
|
-
]
|
|
13317
|
-
"description": "ox-list 의 click handler\n\n- handler의 this 는 ox-list임."
|
|
13508
|
+
]
|
|
13318
13509
|
}
|
|
13319
13510
|
],
|
|
13320
13511
|
"exports": [
|
|
13321
13512
|
{
|
|
13322
13513
|
"kind": "js",
|
|
13323
|
-
"name": "
|
|
13514
|
+
"name": "OXSelectField",
|
|
13324
13515
|
"declaration": {
|
|
13325
|
-
"name": "
|
|
13326
|
-
"module": "src/
|
|
13516
|
+
"name": "OXSelectField",
|
|
13517
|
+
"module": "src/search-form/ox-select-field.ts"
|
|
13327
13518
|
}
|
|
13328
|
-
}
|
|
13329
|
-
]
|
|
13330
|
-
},
|
|
13331
|
-
{
|
|
13332
|
-
"kind": "javascript-module",
|
|
13333
|
-
"path": "src/data-list/event-handlers/data-list-dblclick-handler.ts",
|
|
13334
|
-
"declarations": [
|
|
13335
|
-
{
|
|
13336
|
-
"kind": "function",
|
|
13337
|
-
"name": "dataListDblclickHandler",
|
|
13338
|
-
"return": {
|
|
13339
|
-
"type": {
|
|
13340
|
-
"text": "void"
|
|
13341
|
-
}
|
|
13342
|
-
},
|
|
13343
|
-
"parameters": [
|
|
13344
|
-
{
|
|
13345
|
-
"name": "e",
|
|
13346
|
-
"type": {
|
|
13347
|
-
"text": "MouseEvent"
|
|
13348
|
-
}
|
|
13349
|
-
}
|
|
13350
|
-
],
|
|
13351
|
-
"description": "ox-list 의 dblclick handler\n\n- handler의 this 는 ox-list임."
|
|
13352
|
-
}
|
|
13353
|
-
],
|
|
13354
|
-
"exports": [
|
|
13519
|
+
},
|
|
13355
13520
|
{
|
|
13356
|
-
"kind": "
|
|
13357
|
-
"name": "
|
|
13521
|
+
"kind": "custom-element-definition",
|
|
13522
|
+
"name": "ox-select-field",
|
|
13358
13523
|
"declaration": {
|
|
13359
|
-
"name": "
|
|
13360
|
-
"module": "src/
|
|
13524
|
+
"name": "OXSelectField",
|
|
13525
|
+
"module": "src/search-form/ox-select-field.ts"
|
|
13361
13526
|
}
|
|
13362
13527
|
}
|
|
13363
13528
|
]
|
|
13364
13529
|
},
|
|
13365
13530
|
{
|
|
13366
13531
|
"kind": "javascript-module",
|
|
13367
|
-
"path": "src/
|
|
13532
|
+
"path": "src/search-form/ox-text-field.ts",
|
|
13368
13533
|
"declarations": [
|
|
13369
13534
|
{
|
|
13370
|
-
"kind": "
|
|
13371
|
-
"
|
|
13372
|
-
"
|
|
13373
|
-
|
|
13374
|
-
"text": "void"
|
|
13375
|
-
}
|
|
13376
|
-
},
|
|
13377
|
-
"parameters": [
|
|
13535
|
+
"kind": "class",
|
|
13536
|
+
"description": "",
|
|
13537
|
+
"name": "OXTextField",
|
|
13538
|
+
"members": [
|
|
13378
13539
|
{
|
|
13379
|
-
"
|
|
13540
|
+
"kind": "field",
|
|
13541
|
+
"name": "field",
|
|
13380
13542
|
"type": {
|
|
13381
|
-
"text": "
|
|
13543
|
+
"text": "OXBasicFieldProps"
|
|
13544
|
+
},
|
|
13545
|
+
"attribute": "field",
|
|
13546
|
+
"inheritedFrom": {
|
|
13547
|
+
"name": "OXBasicField",
|
|
13548
|
+
"module": "src/search-form/ox-basic-field.ts"
|
|
13382
13549
|
}
|
|
13383
13550
|
},
|
|
13384
13551
|
{
|
|
13385
|
-
"
|
|
13552
|
+
"kind": "field",
|
|
13553
|
+
"name": "value",
|
|
13386
13554
|
"type": {
|
|
13387
|
-
"text": "
|
|
13555
|
+
"text": "any | undefined"
|
|
13556
|
+
},
|
|
13557
|
+
"default": "''",
|
|
13558
|
+
"attribute": "value",
|
|
13559
|
+
"inheritedFrom": {
|
|
13560
|
+
"name": "OXBasicField",
|
|
13561
|
+
"module": "src/search-form/ox-basic-field.ts"
|
|
13388
13562
|
}
|
|
13389
|
-
}
|
|
13390
|
-
],
|
|
13391
|
-
"description": "record-partial 의 click handler\n\n- handler의 this 는 record-partial임."
|
|
13392
|
-
}
|
|
13393
|
-
],
|
|
13394
|
-
"exports": [
|
|
13395
|
-
{
|
|
13396
|
-
"kind": "js",
|
|
13397
|
-
"name": "recordPartialClickHandler",
|
|
13398
|
-
"declaration": {
|
|
13399
|
-
"name": "recordPartialClickHandler",
|
|
13400
|
-
"module": "src/data-list/event-handlers/record-partial-click-handler.ts"
|
|
13401
|
-
}
|
|
13402
|
-
}
|
|
13403
|
-
]
|
|
13404
|
-
},
|
|
13405
|
-
{
|
|
13406
|
-
"kind": "javascript-module",
|
|
13407
|
-
"path": "src/data-list/event-handlers/record-partial-dblclick-handler.ts",
|
|
13408
|
-
"declarations": [
|
|
13409
|
-
{
|
|
13410
|
-
"kind": "function",
|
|
13411
|
-
"name": "recordPartialDblClickHandler",
|
|
13412
|
-
"return": {
|
|
13413
|
-
"type": {
|
|
13414
|
-
"text": "void"
|
|
13415
|
-
}
|
|
13416
|
-
},
|
|
13417
|
-
"parameters": [
|
|
13563
|
+
},
|
|
13418
13564
|
{
|
|
13419
|
-
"
|
|
13565
|
+
"kind": "method",
|
|
13566
|
+
"name": "setDefaultValue",
|
|
13567
|
+
"return": {
|
|
13568
|
+
"type": {
|
|
13569
|
+
"text": "void"
|
|
13570
|
+
}
|
|
13571
|
+
},
|
|
13572
|
+
"parameters": [
|
|
13573
|
+
{
|
|
13574
|
+
"name": "defaultValue",
|
|
13575
|
+
"type": {
|
|
13576
|
+
"text": "string"
|
|
13577
|
+
}
|
|
13578
|
+
}
|
|
13579
|
+
],
|
|
13580
|
+
"inheritedFrom": {
|
|
13581
|
+
"name": "OXBasicField",
|
|
13582
|
+
"module": "src/search-form/ox-basic-field.ts"
|
|
13583
|
+
}
|
|
13584
|
+
},
|
|
13585
|
+
{
|
|
13586
|
+
"kind": "method",
|
|
13587
|
+
"name": "onChangeHandler",
|
|
13588
|
+
"privacy": "private",
|
|
13589
|
+
"return": {
|
|
13590
|
+
"type": {
|
|
13591
|
+
"text": "void"
|
|
13592
|
+
}
|
|
13593
|
+
}
|
|
13594
|
+
},
|
|
13595
|
+
{
|
|
13596
|
+
"kind": "field",
|
|
13597
|
+
"name": "form",
|
|
13420
13598
|
"type": {
|
|
13421
|
-
"text": "
|
|
13599
|
+
"text": "HTMLFormElement | null"
|
|
13600
|
+
},
|
|
13601
|
+
"privacy": "private",
|
|
13602
|
+
"default": "null",
|
|
13603
|
+
"inheritedFrom": {
|
|
13604
|
+
"name": "OXBasicField",
|
|
13605
|
+
"module": "src/search-form/ox-basic-field.ts"
|
|
13422
13606
|
}
|
|
13423
13607
|
},
|
|
13424
13608
|
{
|
|
13425
|
-
"
|
|
13609
|
+
"kind": "field",
|
|
13610
|
+
"name": "input",
|
|
13426
13611
|
"type": {
|
|
13427
|
-
"text": "
|
|
13612
|
+
"text": "HTMLInputElement | HTMLSelectElement"
|
|
13613
|
+
},
|
|
13614
|
+
"inheritedFrom": {
|
|
13615
|
+
"name": "OXBasicField",
|
|
13616
|
+
"module": "src/search-form/ox-basic-field.ts"
|
|
13428
13617
|
}
|
|
13429
|
-
}
|
|
13430
|
-
],
|
|
13431
|
-
"description": "record-partial 의 dblclick handler\n\n- handler의 this 는 record-partial임."
|
|
13432
|
-
}
|
|
13433
|
-
],
|
|
13434
|
-
"exports": [
|
|
13435
|
-
{
|
|
13436
|
-
"kind": "js",
|
|
13437
|
-
"name": "recordPartialDblClickHandler",
|
|
13438
|
-
"declaration": {
|
|
13439
|
-
"name": "recordPartialDblClickHandler",
|
|
13440
|
-
"module": "src/data-list/event-handlers/record-partial-dblclick-handler.ts"
|
|
13441
|
-
}
|
|
13442
|
-
}
|
|
13443
|
-
]
|
|
13444
|
-
},
|
|
13445
|
-
{
|
|
13446
|
-
"kind": "javascript-module",
|
|
13447
|
-
"path": "src/data-list/event-handlers/record-partial-long-press-handler.ts",
|
|
13448
|
-
"declarations": [
|
|
13449
|
-
{
|
|
13450
|
-
"kind": "function",
|
|
13451
|
-
"name": "recordPartialLongPressHandler",
|
|
13452
|
-
"parameters": [
|
|
13618
|
+
},
|
|
13453
13619
|
{
|
|
13454
|
-
"
|
|
13455
|
-
"
|
|
13456
|
-
|
|
13620
|
+
"kind": "method",
|
|
13621
|
+
"name": "findFormElement",
|
|
13622
|
+
"privacy": "private",
|
|
13623
|
+
"return": {
|
|
13624
|
+
"type": {
|
|
13625
|
+
"text": "HTMLFormElement | null"
|
|
13626
|
+
}
|
|
13627
|
+
},
|
|
13628
|
+
"inheritedFrom": {
|
|
13629
|
+
"name": "OXBasicField",
|
|
13630
|
+
"module": "src/search-form/ox-basic-field.ts"
|
|
13457
13631
|
}
|
|
13458
13632
|
},
|
|
13459
13633
|
{
|
|
13460
|
-
"
|
|
13461
|
-
"
|
|
13462
|
-
|
|
13634
|
+
"kind": "method",
|
|
13635
|
+
"name": "registerCustomEventHandlers",
|
|
13636
|
+
"privacy": "private",
|
|
13637
|
+
"return": {
|
|
13638
|
+
"type": {
|
|
13639
|
+
"text": "void"
|
|
13640
|
+
}
|
|
13641
|
+
},
|
|
13642
|
+
"parameters": [
|
|
13643
|
+
{
|
|
13644
|
+
"name": "handlers",
|
|
13645
|
+
"type": {
|
|
13646
|
+
"text": "Record<string, (event: Event) => void>"
|
|
13647
|
+
}
|
|
13648
|
+
}
|
|
13649
|
+
],
|
|
13650
|
+
"inheritedFrom": {
|
|
13651
|
+
"name": "OXBasicField",
|
|
13652
|
+
"module": "src/search-form/ox-basic-field.ts"
|
|
13463
13653
|
}
|
|
13464
|
-
}
|
|
13465
|
-
],
|
|
13466
|
-
"description": "record-partial 의 long-press handler\n\n- handler의 this 는 record-partial임."
|
|
13467
|
-
}
|
|
13468
|
-
],
|
|
13469
|
-
"exports": [
|
|
13470
|
-
{
|
|
13471
|
-
"kind": "js",
|
|
13472
|
-
"name": "recordPartialLongPressHandler",
|
|
13473
|
-
"declaration": {
|
|
13474
|
-
"name": "recordPartialLongPressHandler",
|
|
13475
|
-
"module": "src/data-list/event-handlers/record-partial-long-press-handler.ts"
|
|
13476
|
-
}
|
|
13477
|
-
}
|
|
13478
|
-
]
|
|
13479
|
-
},
|
|
13480
|
-
{
|
|
13481
|
-
"kind": "javascript-module",
|
|
13482
|
-
"path": "src/data-report/event-handlers/data-report-body-click-handler.ts",
|
|
13483
|
-
"declarations": [
|
|
13484
|
-
{
|
|
13485
|
-
"kind": "function",
|
|
13486
|
-
"name": "dataReportBodyClickHandler",
|
|
13487
|
-
"parameters": [
|
|
13654
|
+
},
|
|
13488
13655
|
{
|
|
13489
|
-
"
|
|
13490
|
-
"
|
|
13491
|
-
|
|
13656
|
+
"kind": "method",
|
|
13657
|
+
"name": "registerBasicEventHandlers",
|
|
13658
|
+
"privacy": "private",
|
|
13659
|
+
"return": {
|
|
13660
|
+
"type": {
|
|
13661
|
+
"text": "void"
|
|
13662
|
+
}
|
|
13663
|
+
},
|
|
13664
|
+
"inheritedFrom": {
|
|
13665
|
+
"name": "OXBasicField",
|
|
13666
|
+
"module": "src/search-form/ox-basic-field.ts"
|
|
13492
13667
|
}
|
|
13493
13668
|
},
|
|
13494
13669
|
{
|
|
13495
|
-
"
|
|
13496
|
-
"
|
|
13497
|
-
|
|
13670
|
+
"kind": "method",
|
|
13671
|
+
"name": "appendFormData",
|
|
13672
|
+
"privacy": "private",
|
|
13673
|
+
"return": {
|
|
13674
|
+
"type": {
|
|
13675
|
+
"text": "void"
|
|
13676
|
+
}
|
|
13677
|
+
},
|
|
13678
|
+
"parameters": [
|
|
13679
|
+
{
|
|
13680
|
+
"name": "{ formData }",
|
|
13681
|
+
"type": {
|
|
13682
|
+
"text": "FormDataEvent"
|
|
13683
|
+
}
|
|
13684
|
+
}
|
|
13685
|
+
],
|
|
13686
|
+
"inheritedFrom": {
|
|
13687
|
+
"name": "OXBasicField",
|
|
13688
|
+
"module": "src/search-form/ox-basic-field.ts"
|
|
13689
|
+
}
|
|
13690
|
+
},
|
|
13691
|
+
{
|
|
13692
|
+
"kind": "method",
|
|
13693
|
+
"name": "submit",
|
|
13694
|
+
"privacy": "private",
|
|
13695
|
+
"return": {
|
|
13696
|
+
"type": {
|
|
13697
|
+
"text": "void"
|
|
13698
|
+
}
|
|
13699
|
+
},
|
|
13700
|
+
"inheritedFrom": {
|
|
13701
|
+
"name": "OXBasicField",
|
|
13702
|
+
"module": "src/search-form/ox-basic-field.ts"
|
|
13498
13703
|
}
|
|
13499
13704
|
}
|
|
13500
13705
|
],
|
|
13501
|
-
"
|
|
13502
|
-
}
|
|
13503
|
-
],
|
|
13504
|
-
"exports": [
|
|
13505
|
-
{
|
|
13506
|
-
"kind": "js",
|
|
13507
|
-
"name": "dataReportBodyClickHandler",
|
|
13508
|
-
"declaration": {
|
|
13509
|
-
"name": "dataReportBodyClickHandler",
|
|
13510
|
-
"module": "src/data-report/event-handlers/data-report-body-click-handler.ts"
|
|
13511
|
-
}
|
|
13512
|
-
}
|
|
13513
|
-
]
|
|
13514
|
-
},
|
|
13515
|
-
{
|
|
13516
|
-
"kind": "javascript-module",
|
|
13517
|
-
"path": "src/data-report/event-handlers/data-report-body-dblclick-handler.ts",
|
|
13518
|
-
"declarations": [
|
|
13519
|
-
{
|
|
13520
|
-
"kind": "function",
|
|
13521
|
-
"name": "dataReportBodyDblclickHandler",
|
|
13522
|
-
"parameters": [
|
|
13706
|
+
"attributes": [
|
|
13523
13707
|
{
|
|
13524
|
-
"name": "
|
|
13708
|
+
"name": "field",
|
|
13525
13709
|
"type": {
|
|
13526
|
-
"text": "
|
|
13527
|
-
}
|
|
13710
|
+
"text": "OXTextFieldProps"
|
|
13711
|
+
},
|
|
13712
|
+
"fieldName": "field"
|
|
13528
13713
|
},
|
|
13529
13714
|
{
|
|
13530
|
-
"name": "
|
|
13715
|
+
"name": "value",
|
|
13531
13716
|
"type": {
|
|
13532
|
-
"text": "
|
|
13533
|
-
}
|
|
13717
|
+
"text": "string"
|
|
13718
|
+
},
|
|
13719
|
+
"default": "''",
|
|
13720
|
+
"fieldName": "value"
|
|
13534
13721
|
}
|
|
13535
13722
|
],
|
|
13536
|
-
"
|
|
13537
|
-
|
|
13538
|
-
|
|
13539
|
-
"exports": [
|
|
13540
|
-
{
|
|
13541
|
-
"kind": "js",
|
|
13542
|
-
"name": "dataReportBodyDblclickHandler",
|
|
13543
|
-
"declaration": {
|
|
13544
|
-
"name": "dataReportBodyDblclickHandler",
|
|
13545
|
-
"module": "src/data-report/event-handlers/data-report-body-dblclick-handler.ts"
|
|
13546
|
-
}
|
|
13547
|
-
}
|
|
13548
|
-
]
|
|
13549
|
-
},
|
|
13550
|
-
{
|
|
13551
|
-
"kind": "javascript-module",
|
|
13552
|
-
"path": "src/data-report/event-handlers/data-report-body-keydown-handler.ts",
|
|
13553
|
-
"declarations": [
|
|
13554
|
-
{
|
|
13555
|
-
"kind": "function",
|
|
13556
|
-
"name": "dataReportBodyKeydownHandler",
|
|
13557
|
-
"return": {
|
|
13558
|
-
"type": {
|
|
13559
|
-
"text": "void"
|
|
13560
|
-
}
|
|
13723
|
+
"superclass": {
|
|
13724
|
+
"name": "OXBasicField",
|
|
13725
|
+
"module": "/src/search-form/ox-basic-field"
|
|
13561
13726
|
},
|
|
13562
|
-
"
|
|
13563
|
-
|
|
13564
|
-
|
|
13565
|
-
"type": {
|
|
13566
|
-
"text": "DataReportBody"
|
|
13567
|
-
}
|
|
13568
|
-
},
|
|
13727
|
+
"tagName": "ox-text-field",
|
|
13728
|
+
"customElement": true,
|
|
13729
|
+
"events": [
|
|
13569
13730
|
{
|
|
13570
|
-
"name": "
|
|
13731
|
+
"name": "submit-field",
|
|
13571
13732
|
"type": {
|
|
13572
|
-
"text": "
|
|
13733
|
+
"text": "CustomEvent"
|
|
13734
|
+
},
|
|
13735
|
+
"inheritedFrom": {
|
|
13736
|
+
"name": "OXBasicField",
|
|
13737
|
+
"module": "src/search-form/ox-basic-field.ts"
|
|
13573
13738
|
}
|
|
13574
13739
|
}
|
|
13575
|
-
]
|
|
13576
|
-
"description": "ox-report-body 의 keydown handler"
|
|
13740
|
+
]
|
|
13577
13741
|
}
|
|
13578
13742
|
],
|
|
13579
13743
|
"exports": [
|
|
13580
13744
|
{
|
|
13581
13745
|
"kind": "js",
|
|
13582
|
-
"name": "
|
|
13746
|
+
"name": "OXTextField",
|
|
13583
13747
|
"declaration": {
|
|
13584
|
-
"name": "
|
|
13585
|
-
"module": "src/
|
|
13748
|
+
"name": "OXTextField",
|
|
13749
|
+
"module": "src/search-form/ox-text-field.ts"
|
|
13750
|
+
}
|
|
13751
|
+
},
|
|
13752
|
+
{
|
|
13753
|
+
"kind": "custom-element-definition",
|
|
13754
|
+
"name": "ox-text-field",
|
|
13755
|
+
"declaration": {
|
|
13756
|
+
"name": "OXTextField",
|
|
13757
|
+
"module": "src/search-form/ox-text-field.ts"
|
|
13586
13758
|
}
|
|
13587
13759
|
}
|
|
13588
13760
|
]
|