@ukic/docs 3.4.11 → 3.4.12
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/docs.json +968 -112
- package/package.json +2 -2
package/docs.json
CHANGED
|
@@ -3541,6 +3541,7 @@
|
|
|
3541
3541
|
"ic-navigation-button",
|
|
3542
3542
|
"ic-navigation-menu",
|
|
3543
3543
|
"ic-pagination",
|
|
3544
|
+
"ic-pagination-bar",
|
|
3544
3545
|
"ic-search-bar",
|
|
3545
3546
|
"ic-select",
|
|
3546
3547
|
"ic-side-navigation",
|
|
@@ -3595,6 +3596,9 @@
|
|
|
3595
3596
|
"ic-pagination": [
|
|
3596
3597
|
"ic-button"
|
|
3597
3598
|
],
|
|
3599
|
+
"ic-pagination-bar": [
|
|
3600
|
+
"ic-button"
|
|
3601
|
+
],
|
|
3598
3602
|
"ic-search-bar": [
|
|
3599
3603
|
"ic-button"
|
|
3600
3604
|
],
|
|
@@ -6095,6 +6099,33 @@
|
|
|
6095
6099
|
"getter": false,
|
|
6096
6100
|
"setter": false
|
|
6097
6101
|
},
|
|
6102
|
+
{
|
|
6103
|
+
"name": "customClassificationText",
|
|
6104
|
+
"type": "string | undefined",
|
|
6105
|
+
"complexType": {
|
|
6106
|
+
"original": "string",
|
|
6107
|
+
"resolved": "string | undefined",
|
|
6108
|
+
"references": {}
|
|
6109
|
+
},
|
|
6110
|
+
"mutable": false,
|
|
6111
|
+
"attr": "custom-classification-text",
|
|
6112
|
+
"reflectToAttr": false,
|
|
6113
|
+
"docs": "The custom text that will appear on the banner. If set, the `additionalSelectors`, `country` and `upTo` props are ignored.",
|
|
6114
|
+
"docsTags": [],
|
|
6115
|
+
"default": "\"\"",
|
|
6116
|
+
"values": [
|
|
6117
|
+
{
|
|
6118
|
+
"type": "string"
|
|
6119
|
+
},
|
|
6120
|
+
{
|
|
6121
|
+
"type": "undefined"
|
|
6122
|
+
}
|
|
6123
|
+
],
|
|
6124
|
+
"optional": true,
|
|
6125
|
+
"required": false,
|
|
6126
|
+
"getter": false,
|
|
6127
|
+
"setter": false
|
|
6128
|
+
},
|
|
6098
6129
|
{
|
|
6099
6130
|
"name": "inline",
|
|
6100
6131
|
"type": "boolean | undefined",
|
|
@@ -11310,6 +11341,49 @@
|
|
|
11310
11341
|
"text": "event The keyboard event which is available when handleKeyboardOpen is invoked."
|
|
11311
11342
|
}
|
|
11312
11343
|
]
|
|
11344
|
+
},
|
|
11345
|
+
{
|
|
11346
|
+
"name": "handleMenuKeyDown",
|
|
11347
|
+
"returns": {
|
|
11348
|
+
"type": "Promise<void>",
|
|
11349
|
+
"docs": ""
|
|
11350
|
+
},
|
|
11351
|
+
"complexType": {
|
|
11352
|
+
"signature": "(event: KeyboardEvent) => Promise<void>",
|
|
11353
|
+
"parameters": [
|
|
11354
|
+
{
|
|
11355
|
+
"name": "event",
|
|
11356
|
+
"type": "KeyboardEvent",
|
|
11357
|
+
"docs": "The keyboard event which is available when handleMenuKeydown is invoked."
|
|
11358
|
+
}
|
|
11359
|
+
],
|
|
11360
|
+
"references": {
|
|
11361
|
+
"Promise": {
|
|
11362
|
+
"location": "global",
|
|
11363
|
+
"id": "global::Promise"
|
|
11364
|
+
},
|
|
11365
|
+
"KeyboardEvent": {
|
|
11366
|
+
"location": "global",
|
|
11367
|
+
"id": "global::KeyboardEvent"
|
|
11368
|
+
}
|
|
11369
|
+
},
|
|
11370
|
+
"return": "Promise<void>"
|
|
11371
|
+
},
|
|
11372
|
+
"signature": "handleMenuKeyDown(event: KeyboardEvent) => Promise<void>",
|
|
11373
|
+
"parameters": [
|
|
11374
|
+
{
|
|
11375
|
+
"name": "event",
|
|
11376
|
+
"type": "KeyboardEvent",
|
|
11377
|
+
"docs": "The keyboard event which is available when handleMenuKeydown is invoked."
|
|
11378
|
+
}
|
|
11379
|
+
],
|
|
11380
|
+
"docs": "Used alongside activationType\nIf menu is open and user navigates options via keyboard, emit optionSelect custom event.",
|
|
11381
|
+
"docsTags": [
|
|
11382
|
+
{
|
|
11383
|
+
"name": "param",
|
|
11384
|
+
"text": "event The keyboard event which is available when handleMenuKeydown is invoked."
|
|
11385
|
+
}
|
|
11386
|
+
]
|
|
11313
11387
|
}
|
|
11314
11388
|
],
|
|
11315
11389
|
"events": [
|
|
@@ -13519,7 +13593,685 @@
|
|
|
13519
13593
|
"default": "false",
|
|
13520
13594
|
"values": [
|
|
13521
13595
|
{
|
|
13522
|
-
"type": "boolean"
|
|
13596
|
+
"type": "boolean"
|
|
13597
|
+
},
|
|
13598
|
+
{
|
|
13599
|
+
"type": "undefined"
|
|
13600
|
+
}
|
|
13601
|
+
],
|
|
13602
|
+
"optional": true,
|
|
13603
|
+
"required": false,
|
|
13604
|
+
"getter": false,
|
|
13605
|
+
"setter": false
|
|
13606
|
+
},
|
|
13607
|
+
{
|
|
13608
|
+
"name": "hideCurrentPage",
|
|
13609
|
+
"type": "boolean | undefined",
|
|
13610
|
+
"complexType": {
|
|
13611
|
+
"original": "boolean",
|
|
13612
|
+
"resolved": "boolean | undefined",
|
|
13613
|
+
"references": {}
|
|
13614
|
+
},
|
|
13615
|
+
"mutable": false,
|
|
13616
|
+
"attr": "hide-current-page",
|
|
13617
|
+
"reflectToAttr": false,
|
|
13618
|
+
"docs": "If `true`, the current page of the simple pagination will not be displayed.",
|
|
13619
|
+
"docsTags": [],
|
|
13620
|
+
"default": "false",
|
|
13621
|
+
"values": [
|
|
13622
|
+
{
|
|
13623
|
+
"type": "boolean"
|
|
13624
|
+
},
|
|
13625
|
+
{
|
|
13626
|
+
"type": "undefined"
|
|
13627
|
+
}
|
|
13628
|
+
],
|
|
13629
|
+
"optional": true,
|
|
13630
|
+
"required": false,
|
|
13631
|
+
"getter": false,
|
|
13632
|
+
"setter": false
|
|
13633
|
+
},
|
|
13634
|
+
{
|
|
13635
|
+
"name": "hideFirstAndLastPageButton",
|
|
13636
|
+
"type": "boolean | undefined",
|
|
13637
|
+
"complexType": {
|
|
13638
|
+
"original": "boolean",
|
|
13639
|
+
"resolved": "boolean | undefined",
|
|
13640
|
+
"references": {}
|
|
13641
|
+
},
|
|
13642
|
+
"mutable": false,
|
|
13643
|
+
"attr": "hide-first-and-last-page-button",
|
|
13644
|
+
"reflectToAttr": false,
|
|
13645
|
+
"docs": "If `true`, the first and last page buttons will not be displayed.",
|
|
13646
|
+
"docsTags": [],
|
|
13647
|
+
"default": "false",
|
|
13648
|
+
"values": [
|
|
13649
|
+
{
|
|
13650
|
+
"type": "boolean"
|
|
13651
|
+
},
|
|
13652
|
+
{
|
|
13653
|
+
"type": "undefined"
|
|
13654
|
+
}
|
|
13655
|
+
],
|
|
13656
|
+
"optional": true,
|
|
13657
|
+
"required": false,
|
|
13658
|
+
"getter": false,
|
|
13659
|
+
"setter": false
|
|
13660
|
+
},
|
|
13661
|
+
{
|
|
13662
|
+
"name": "label",
|
|
13663
|
+
"type": "string | undefined",
|
|
13664
|
+
"complexType": {
|
|
13665
|
+
"original": "string",
|
|
13666
|
+
"resolved": "string | undefined",
|
|
13667
|
+
"references": {}
|
|
13668
|
+
},
|
|
13669
|
+
"mutable": false,
|
|
13670
|
+
"attr": "label",
|
|
13671
|
+
"reflectToAttr": false,
|
|
13672
|
+
"docs": "The label for the pagination item (applicable when simple pagination is being used).",
|
|
13673
|
+
"docsTags": [],
|
|
13674
|
+
"default": "\"Page\"",
|
|
13675
|
+
"values": [
|
|
13676
|
+
{
|
|
13677
|
+
"type": "string"
|
|
13678
|
+
},
|
|
13679
|
+
{
|
|
13680
|
+
"type": "undefined"
|
|
13681
|
+
}
|
|
13682
|
+
],
|
|
13683
|
+
"optional": true,
|
|
13684
|
+
"required": false,
|
|
13685
|
+
"getter": false,
|
|
13686
|
+
"setter": false
|
|
13687
|
+
},
|
|
13688
|
+
{
|
|
13689
|
+
"name": "monochrome",
|
|
13690
|
+
"type": "boolean | undefined",
|
|
13691
|
+
"complexType": {
|
|
13692
|
+
"original": "boolean",
|
|
13693
|
+
"resolved": "boolean | undefined",
|
|
13694
|
+
"references": {}
|
|
13695
|
+
},
|
|
13696
|
+
"mutable": false,
|
|
13697
|
+
"attr": "monochrome",
|
|
13698
|
+
"reflectToAttr": false,
|
|
13699
|
+
"docs": "If `true`, the pagination will display as black in the light theme, and white in dark theme.",
|
|
13700
|
+
"docsTags": [],
|
|
13701
|
+
"default": "false",
|
|
13702
|
+
"values": [
|
|
13703
|
+
{
|
|
13704
|
+
"type": "boolean"
|
|
13705
|
+
},
|
|
13706
|
+
{
|
|
13707
|
+
"type": "undefined"
|
|
13708
|
+
}
|
|
13709
|
+
],
|
|
13710
|
+
"optional": true,
|
|
13711
|
+
"required": false,
|
|
13712
|
+
"getter": false,
|
|
13713
|
+
"setter": false
|
|
13714
|
+
},
|
|
13715
|
+
{
|
|
13716
|
+
"name": "pages",
|
|
13717
|
+
"type": "number",
|
|
13718
|
+
"complexType": {
|
|
13719
|
+
"original": "number",
|
|
13720
|
+
"resolved": "number",
|
|
13721
|
+
"references": {}
|
|
13722
|
+
},
|
|
13723
|
+
"mutable": false,
|
|
13724
|
+
"attr": "pages",
|
|
13725
|
+
"reflectToAttr": false,
|
|
13726
|
+
"docs": "The total number of pages.",
|
|
13727
|
+
"docsTags": [],
|
|
13728
|
+
"values": [
|
|
13729
|
+
{
|
|
13730
|
+
"type": "number"
|
|
13731
|
+
}
|
|
13732
|
+
],
|
|
13733
|
+
"optional": false,
|
|
13734
|
+
"required": true,
|
|
13735
|
+
"getter": false,
|
|
13736
|
+
"setter": false
|
|
13737
|
+
},
|
|
13738
|
+
{
|
|
13739
|
+
"name": "theme",
|
|
13740
|
+
"type": "\"dark\" | \"inherit\" | \"light\" | undefined",
|
|
13741
|
+
"complexType": {
|
|
13742
|
+
"original": "IcThemeMode",
|
|
13743
|
+
"resolved": "\"dark\" | \"inherit\" | \"light\" | undefined",
|
|
13744
|
+
"references": {
|
|
13745
|
+
"IcThemeMode": {
|
|
13746
|
+
"location": "import",
|
|
13747
|
+
"path": "../../utils/types",
|
|
13748
|
+
"id": "src/utils/types.ts::IcThemeMode"
|
|
13749
|
+
}
|
|
13750
|
+
}
|
|
13751
|
+
},
|
|
13752
|
+
"mutable": false,
|
|
13753
|
+
"attr": "theme",
|
|
13754
|
+
"reflectToAttr": false,
|
|
13755
|
+
"docs": "Sets the theme color to the dark or light theme color. \"inherit\" will set the color based on the system settings or ic-theme component.",
|
|
13756
|
+
"docsTags": [],
|
|
13757
|
+
"default": "\"inherit\"",
|
|
13758
|
+
"values": [
|
|
13759
|
+
{
|
|
13760
|
+
"value": "dark",
|
|
13761
|
+
"type": "string"
|
|
13762
|
+
},
|
|
13763
|
+
{
|
|
13764
|
+
"value": "inherit",
|
|
13765
|
+
"type": "string"
|
|
13766
|
+
},
|
|
13767
|
+
{
|
|
13768
|
+
"value": "light",
|
|
13769
|
+
"type": "string"
|
|
13770
|
+
},
|
|
13771
|
+
{
|
|
13772
|
+
"type": "undefined"
|
|
13773
|
+
}
|
|
13774
|
+
],
|
|
13775
|
+
"optional": true,
|
|
13776
|
+
"required": false,
|
|
13777
|
+
"getter": false,
|
|
13778
|
+
"setter": false
|
|
13779
|
+
},
|
|
13780
|
+
{
|
|
13781
|
+
"name": "type",
|
|
13782
|
+
"type": "\"complex\" | \"simple\" | undefined",
|
|
13783
|
+
"complexType": {
|
|
13784
|
+
"original": "IcPaginationTypes",
|
|
13785
|
+
"resolved": "\"complex\" | \"simple\" | undefined",
|
|
13786
|
+
"references": {
|
|
13787
|
+
"IcPaginationTypes": {
|
|
13788
|
+
"location": "import",
|
|
13789
|
+
"path": "./ic-pagination.types",
|
|
13790
|
+
"id": "src/components/ic-pagination/ic-pagination.types.ts::IcPaginationTypes"
|
|
13791
|
+
}
|
|
13792
|
+
}
|
|
13793
|
+
},
|
|
13794
|
+
"mutable": false,
|
|
13795
|
+
"attr": "type",
|
|
13796
|
+
"reflectToAttr": false,
|
|
13797
|
+
"docs": "The type of pagination to be used.",
|
|
13798
|
+
"docsTags": [],
|
|
13799
|
+
"default": "\"simple\"",
|
|
13800
|
+
"values": [
|
|
13801
|
+
{
|
|
13802
|
+
"value": "complex",
|
|
13803
|
+
"type": "string"
|
|
13804
|
+
},
|
|
13805
|
+
{
|
|
13806
|
+
"value": "simple",
|
|
13807
|
+
"type": "string"
|
|
13808
|
+
},
|
|
13809
|
+
{
|
|
13810
|
+
"type": "undefined"
|
|
13811
|
+
}
|
|
13812
|
+
],
|
|
13813
|
+
"optional": true,
|
|
13814
|
+
"required": false,
|
|
13815
|
+
"getter": false,
|
|
13816
|
+
"setter": false
|
|
13817
|
+
}
|
|
13818
|
+
],
|
|
13819
|
+
"methods": [
|
|
13820
|
+
{
|
|
13821
|
+
"name": "setCurrentPage",
|
|
13822
|
+
"returns": {
|
|
13823
|
+
"type": "Promise<void>",
|
|
13824
|
+
"docs": ""
|
|
13825
|
+
},
|
|
13826
|
+
"complexType": {
|
|
13827
|
+
"signature": "(page: number) => Promise<void>",
|
|
13828
|
+
"parameters": [
|
|
13829
|
+
{
|
|
13830
|
+
"name": "page",
|
|
13831
|
+
"type": "number",
|
|
13832
|
+
"docs": "The page number to set as the current page"
|
|
13833
|
+
}
|
|
13834
|
+
],
|
|
13835
|
+
"references": {
|
|
13836
|
+
"Promise": {
|
|
13837
|
+
"location": "global",
|
|
13838
|
+
"id": "global::Promise"
|
|
13839
|
+
}
|
|
13840
|
+
},
|
|
13841
|
+
"return": "Promise<void>"
|
|
13842
|
+
},
|
|
13843
|
+
"signature": "setCurrentPage(page: number) => Promise<void>",
|
|
13844
|
+
"parameters": [
|
|
13845
|
+
{
|
|
13846
|
+
"name": "page",
|
|
13847
|
+
"type": "number",
|
|
13848
|
+
"docs": "The page number to set as the current page"
|
|
13849
|
+
}
|
|
13850
|
+
],
|
|
13851
|
+
"docs": "Sets the currently displayed page.",
|
|
13852
|
+
"docsTags": [
|
|
13853
|
+
{
|
|
13854
|
+
"name": "param",
|
|
13855
|
+
"text": "page The page number to set as the current page"
|
|
13856
|
+
}
|
|
13857
|
+
]
|
|
13858
|
+
}
|
|
13859
|
+
],
|
|
13860
|
+
"events": [
|
|
13861
|
+
{
|
|
13862
|
+
"event": "icPageChange",
|
|
13863
|
+
"detail": "IcChangeEventDetail",
|
|
13864
|
+
"bubbles": true,
|
|
13865
|
+
"complexType": {
|
|
13866
|
+
"original": "IcChangeEventDetail",
|
|
13867
|
+
"resolved": "IcChangeEventDetail",
|
|
13868
|
+
"references": {
|
|
13869
|
+
"IcChangeEventDetail": {
|
|
13870
|
+
"location": "import",
|
|
13871
|
+
"path": "./ic-pagination.types",
|
|
13872
|
+
"id": "src/components/ic-pagination/ic-pagination.types.ts::IcChangeEventDetail"
|
|
13873
|
+
}
|
|
13874
|
+
}
|
|
13875
|
+
},
|
|
13876
|
+
"cancelable": true,
|
|
13877
|
+
"composed": true,
|
|
13878
|
+
"docs": "Emitted when a page is selected.",
|
|
13879
|
+
"docsTags": []
|
|
13880
|
+
}
|
|
13881
|
+
],
|
|
13882
|
+
"listeners": [
|
|
13883
|
+
{
|
|
13884
|
+
"event": "icPageChange",
|
|
13885
|
+
"capture": false,
|
|
13886
|
+
"passive": false
|
|
13887
|
+
},
|
|
13888
|
+
{
|
|
13889
|
+
"event": "paginationItemClick",
|
|
13890
|
+
"capture": false,
|
|
13891
|
+
"passive": false
|
|
13892
|
+
}
|
|
13893
|
+
],
|
|
13894
|
+
"styles": [],
|
|
13895
|
+
"slots": [],
|
|
13896
|
+
"parts": [],
|
|
13897
|
+
"dependents": [
|
|
13898
|
+
"ic-pagination-bar"
|
|
13899
|
+
],
|
|
13900
|
+
"dependencies": [
|
|
13901
|
+
"ic-button",
|
|
13902
|
+
"ic-pagination-item"
|
|
13903
|
+
],
|
|
13904
|
+
"dependencyGraph": {
|
|
13905
|
+
"ic-pagination": [
|
|
13906
|
+
"ic-button",
|
|
13907
|
+
"ic-pagination-item"
|
|
13908
|
+
],
|
|
13909
|
+
"ic-button": [
|
|
13910
|
+
"ic-typography",
|
|
13911
|
+
"ic-loading-indicator",
|
|
13912
|
+
"ic-tooltip"
|
|
13913
|
+
],
|
|
13914
|
+
"ic-loading-indicator": [
|
|
13915
|
+
"ic-typography"
|
|
13916
|
+
],
|
|
13917
|
+
"ic-tooltip": [
|
|
13918
|
+
"ic-typography"
|
|
13919
|
+
],
|
|
13920
|
+
"ic-pagination-item": [
|
|
13921
|
+
"ic-typography"
|
|
13922
|
+
],
|
|
13923
|
+
"ic-pagination-bar": [
|
|
13924
|
+
"ic-pagination"
|
|
13925
|
+
]
|
|
13926
|
+
}
|
|
13927
|
+
},
|
|
13928
|
+
{
|
|
13929
|
+
"filePath": "src/components/ic-pagination-bar/ic-pagination-bar.tsx",
|
|
13930
|
+
"encapsulation": "shadow",
|
|
13931
|
+
"tag": "ic-pagination-bar",
|
|
13932
|
+
"readme": "# ic-pagination-bar\n\n\n",
|
|
13933
|
+
"docs": "",
|
|
13934
|
+
"docsTags": [],
|
|
13935
|
+
"usage": {},
|
|
13936
|
+
"props": [
|
|
13937
|
+
{
|
|
13938
|
+
"name": "accessibleLabel",
|
|
13939
|
+
"type": "string | undefined",
|
|
13940
|
+
"complexType": {
|
|
13941
|
+
"original": "string",
|
|
13942
|
+
"resolved": "string | undefined",
|
|
13943
|
+
"references": {}
|
|
13944
|
+
},
|
|
13945
|
+
"mutable": false,
|
|
13946
|
+
"attr": "accessible-label",
|
|
13947
|
+
"reflectToAttr": false,
|
|
13948
|
+
"docs": "The accessible label passed down to the pagination component to provide context for screen reader users.",
|
|
13949
|
+
"docsTags": [],
|
|
13950
|
+
"default": "\"Pagination Navigation\"",
|
|
13951
|
+
"values": [
|
|
13952
|
+
{
|
|
13953
|
+
"type": "string"
|
|
13954
|
+
},
|
|
13955
|
+
{
|
|
13956
|
+
"type": "undefined"
|
|
13957
|
+
}
|
|
13958
|
+
],
|
|
13959
|
+
"optional": true,
|
|
13960
|
+
"required": false,
|
|
13961
|
+
"getter": false,
|
|
13962
|
+
"setter": false
|
|
13963
|
+
},
|
|
13964
|
+
{
|
|
13965
|
+
"name": "alignment",
|
|
13966
|
+
"type": "\"left\" | \"right\" | \"space-between\" | undefined",
|
|
13967
|
+
"complexType": {
|
|
13968
|
+
"original": "IcPaginationAlignmentOptions",
|
|
13969
|
+
"resolved": "\"left\" | \"right\" | \"space-between\" | undefined",
|
|
13970
|
+
"references": {
|
|
13971
|
+
"IcPaginationAlignmentOptions": {
|
|
13972
|
+
"location": "import",
|
|
13973
|
+
"path": "../ic-pagination/ic-pagination.types",
|
|
13974
|
+
"id": "src/components/ic-pagination/ic-pagination.types.ts::IcPaginationAlignmentOptions"
|
|
13975
|
+
}
|
|
13976
|
+
}
|
|
13977
|
+
},
|
|
13978
|
+
"mutable": false,
|
|
13979
|
+
"attr": "alignment",
|
|
13980
|
+
"reflectToAttr": false,
|
|
13981
|
+
"docs": "Sets the alignment of the items in the pagination bar.",
|
|
13982
|
+
"docsTags": [],
|
|
13983
|
+
"default": "\"right\"",
|
|
13984
|
+
"values": [
|
|
13985
|
+
{
|
|
13986
|
+
"value": "left",
|
|
13987
|
+
"type": "string"
|
|
13988
|
+
},
|
|
13989
|
+
{
|
|
13990
|
+
"value": "right",
|
|
13991
|
+
"type": "string"
|
|
13992
|
+
},
|
|
13993
|
+
{
|
|
13994
|
+
"value": "space-between",
|
|
13995
|
+
"type": "string"
|
|
13996
|
+
},
|
|
13997
|
+
{
|
|
13998
|
+
"type": "undefined"
|
|
13999
|
+
}
|
|
14000
|
+
],
|
|
14001
|
+
"optional": true,
|
|
14002
|
+
"required": false,
|
|
14003
|
+
"getter": false,
|
|
14004
|
+
"setter": false
|
|
14005
|
+
},
|
|
14006
|
+
{
|
|
14007
|
+
"name": "currentPage",
|
|
14008
|
+
"type": "number | undefined",
|
|
14009
|
+
"complexType": {
|
|
14010
|
+
"original": "number",
|
|
14011
|
+
"resolved": "number | undefined",
|
|
14012
|
+
"references": {}
|
|
14013
|
+
},
|
|
14014
|
+
"mutable": false,
|
|
14015
|
+
"attr": "current-page",
|
|
14016
|
+
"reflectToAttr": false,
|
|
14017
|
+
"docs": "The current page number to be displayed on the pagination bar.",
|
|
14018
|
+
"docsTags": [],
|
|
14019
|
+
"default": "1",
|
|
14020
|
+
"values": [
|
|
14021
|
+
{
|
|
14022
|
+
"type": "number"
|
|
14023
|
+
},
|
|
14024
|
+
{
|
|
14025
|
+
"type": "undefined"
|
|
14026
|
+
}
|
|
14027
|
+
],
|
|
14028
|
+
"optional": true,
|
|
14029
|
+
"required": false,
|
|
14030
|
+
"getter": false,
|
|
14031
|
+
"setter": false
|
|
14032
|
+
},
|
|
14033
|
+
{
|
|
14034
|
+
"name": "hideAllFromItemsPerPage",
|
|
14035
|
+
"type": "boolean | undefined",
|
|
14036
|
+
"complexType": {
|
|
14037
|
+
"original": "boolean",
|
|
14038
|
+
"resolved": "boolean | undefined",
|
|
14039
|
+
"references": {}
|
|
14040
|
+
},
|
|
14041
|
+
"mutable": false,
|
|
14042
|
+
"attr": "hide-all-from-items-per-page",
|
|
14043
|
+
"reflectToAttr": false,
|
|
14044
|
+
"docs": "If `true`, the 'All' option will be hidden from the 'items per page' select input.",
|
|
14045
|
+
"docsTags": [],
|
|
14046
|
+
"default": "false",
|
|
14047
|
+
"values": [
|
|
14048
|
+
{
|
|
14049
|
+
"type": "boolean"
|
|
14050
|
+
},
|
|
14051
|
+
{
|
|
14052
|
+
"type": "undefined"
|
|
14053
|
+
}
|
|
14054
|
+
],
|
|
14055
|
+
"optional": true,
|
|
14056
|
+
"required": false,
|
|
14057
|
+
"getter": false,
|
|
14058
|
+
"setter": false
|
|
14059
|
+
},
|
|
14060
|
+
{
|
|
14061
|
+
"name": "hideCurrentPage",
|
|
14062
|
+
"type": "boolean | undefined",
|
|
14063
|
+
"complexType": {
|
|
14064
|
+
"original": "boolean",
|
|
14065
|
+
"resolved": "boolean | undefined",
|
|
14066
|
+
"references": {}
|
|
14067
|
+
},
|
|
14068
|
+
"mutable": false,
|
|
14069
|
+
"attr": "hide-current-page",
|
|
14070
|
+
"reflectToAttr": false,
|
|
14071
|
+
"docs": "If `true`, the current page of the simple pagination will not be displayed.",
|
|
14072
|
+
"docsTags": [],
|
|
14073
|
+
"default": "false",
|
|
14074
|
+
"values": [
|
|
14075
|
+
{
|
|
14076
|
+
"type": "boolean"
|
|
14077
|
+
},
|
|
14078
|
+
{
|
|
14079
|
+
"type": "undefined"
|
|
14080
|
+
}
|
|
14081
|
+
],
|
|
14082
|
+
"optional": true,
|
|
14083
|
+
"required": false,
|
|
14084
|
+
"getter": false,
|
|
14085
|
+
"setter": false
|
|
14086
|
+
},
|
|
14087
|
+
{
|
|
14088
|
+
"name": "hideFirstAndLastPageButton",
|
|
14089
|
+
"type": "boolean | undefined",
|
|
14090
|
+
"complexType": {
|
|
14091
|
+
"original": "boolean",
|
|
14092
|
+
"resolved": "boolean | undefined",
|
|
14093
|
+
"references": {}
|
|
14094
|
+
},
|
|
14095
|
+
"mutable": false,
|
|
14096
|
+
"attr": "hide-first-and-last-page-button",
|
|
14097
|
+
"reflectToAttr": false,
|
|
14098
|
+
"docs": "If `true`, the first and last page buttons will not be displayed.",
|
|
14099
|
+
"docsTags": [],
|
|
14100
|
+
"default": "false",
|
|
14101
|
+
"values": [
|
|
14102
|
+
{
|
|
14103
|
+
"type": "boolean"
|
|
14104
|
+
},
|
|
14105
|
+
{
|
|
14106
|
+
"type": "undefined"
|
|
14107
|
+
}
|
|
14108
|
+
],
|
|
14109
|
+
"optional": true,
|
|
14110
|
+
"required": false,
|
|
14111
|
+
"getter": false,
|
|
14112
|
+
"setter": false
|
|
14113
|
+
},
|
|
14114
|
+
{
|
|
14115
|
+
"name": "hideRangeLabel",
|
|
14116
|
+
"type": "boolean | undefined",
|
|
14117
|
+
"complexType": {
|
|
14118
|
+
"original": "boolean",
|
|
14119
|
+
"resolved": "boolean | undefined",
|
|
14120
|
+
"references": {}
|
|
14121
|
+
},
|
|
14122
|
+
"mutable": false,
|
|
14123
|
+
"attr": "hide-range-label",
|
|
14124
|
+
"reflectToAttr": false,
|
|
14125
|
+
"docs": "If `true`, the number of total items and current item range or number of total pages and current page will be hidden.",
|
|
14126
|
+
"docsTags": [],
|
|
14127
|
+
"default": "false",
|
|
14128
|
+
"values": [
|
|
14129
|
+
{
|
|
14130
|
+
"type": "boolean"
|
|
14131
|
+
},
|
|
14132
|
+
{
|
|
14133
|
+
"type": "undefined"
|
|
14134
|
+
}
|
|
14135
|
+
],
|
|
14136
|
+
"optional": true,
|
|
14137
|
+
"required": false,
|
|
14138
|
+
"getter": false,
|
|
14139
|
+
"setter": false
|
|
14140
|
+
},
|
|
14141
|
+
{
|
|
14142
|
+
"name": "itemLabel",
|
|
14143
|
+
"type": "string | undefined",
|
|
14144
|
+
"complexType": {
|
|
14145
|
+
"original": "string",
|
|
14146
|
+
"resolved": "string | undefined",
|
|
14147
|
+
"references": {}
|
|
14148
|
+
},
|
|
14149
|
+
"mutable": false,
|
|
14150
|
+
"attr": "item-label",
|
|
14151
|
+
"reflectToAttr": false,
|
|
14152
|
+
"docs": "The text which will be used in place of 'Item' on the pagination bar.",
|
|
14153
|
+
"docsTags": [],
|
|
14154
|
+
"default": "\"Item\"",
|
|
14155
|
+
"values": [
|
|
14156
|
+
{
|
|
14157
|
+
"type": "string"
|
|
14158
|
+
},
|
|
14159
|
+
{
|
|
14160
|
+
"type": "undefined"
|
|
14161
|
+
}
|
|
14162
|
+
],
|
|
14163
|
+
"optional": true,
|
|
14164
|
+
"required": false,
|
|
14165
|
+
"getter": false,
|
|
14166
|
+
"setter": false
|
|
14167
|
+
},
|
|
14168
|
+
{
|
|
14169
|
+
"name": "itemsPerPageOptions",
|
|
14170
|
+
"type": "undefined | { label: string; value: string; }[]",
|
|
14171
|
+
"complexType": {
|
|
14172
|
+
"original": "{\n label: string;\n value: string;\n }[]",
|
|
14173
|
+
"resolved": "undefined | { label: string; value: string; }[]",
|
|
14174
|
+
"references": {}
|
|
14175
|
+
},
|
|
14176
|
+
"mutable": false,
|
|
14177
|
+
"reflectToAttr": false,
|
|
14178
|
+
"docs": "The options which will be displayed for 'items per page' select input.",
|
|
14179
|
+
"docsTags": [],
|
|
14180
|
+
"values": [
|
|
14181
|
+
{
|
|
14182
|
+
"type": "undefined"
|
|
14183
|
+
},
|
|
14184
|
+
{
|
|
14185
|
+
"type": "{ label: string; value: string; }[]"
|
|
14186
|
+
}
|
|
14187
|
+
],
|
|
14188
|
+
"optional": true,
|
|
14189
|
+
"required": false,
|
|
14190
|
+
"getter": false,
|
|
14191
|
+
"setter": false
|
|
14192
|
+
},
|
|
14193
|
+
{
|
|
14194
|
+
"name": "monochrome",
|
|
14195
|
+
"type": "boolean | undefined",
|
|
14196
|
+
"complexType": {
|
|
14197
|
+
"original": "boolean",
|
|
14198
|
+
"resolved": "boolean | undefined",
|
|
14199
|
+
"references": {}
|
|
14200
|
+
},
|
|
14201
|
+
"mutable": false,
|
|
14202
|
+
"attr": "monochrome",
|
|
14203
|
+
"reflectToAttr": false,
|
|
14204
|
+
"docs": "If `true`, the pagination bar will display as black in the light theme, and white in dark theme.",
|
|
14205
|
+
"docsTags": [],
|
|
14206
|
+
"default": "false",
|
|
14207
|
+
"values": [
|
|
14208
|
+
{
|
|
14209
|
+
"type": "boolean"
|
|
14210
|
+
},
|
|
14211
|
+
{
|
|
14212
|
+
"type": "undefined"
|
|
14213
|
+
}
|
|
14214
|
+
],
|
|
14215
|
+
"optional": true,
|
|
14216
|
+
"required": false,
|
|
14217
|
+
"getter": false,
|
|
14218
|
+
"setter": false
|
|
14219
|
+
},
|
|
14220
|
+
{
|
|
14221
|
+
"name": "pageLabel",
|
|
14222
|
+
"type": "string | undefined",
|
|
14223
|
+
"complexType": {
|
|
14224
|
+
"original": "string",
|
|
14225
|
+
"resolved": "string | undefined",
|
|
14226
|
+
"references": {}
|
|
14227
|
+
},
|
|
14228
|
+
"mutable": false,
|
|
14229
|
+
"attr": "page-label",
|
|
14230
|
+
"reflectToAttr": false,
|
|
14231
|
+
"docs": "The text which will be used in place of 'Page' on the pagination bar.",
|
|
14232
|
+
"docsTags": [],
|
|
14233
|
+
"default": "\"Page\"",
|
|
14234
|
+
"values": [
|
|
14235
|
+
{
|
|
14236
|
+
"type": "string"
|
|
14237
|
+
},
|
|
14238
|
+
{
|
|
14239
|
+
"type": "undefined"
|
|
14240
|
+
}
|
|
14241
|
+
],
|
|
14242
|
+
"optional": true,
|
|
14243
|
+
"required": false,
|
|
14244
|
+
"getter": false,
|
|
14245
|
+
"setter": false
|
|
14246
|
+
},
|
|
14247
|
+
{
|
|
14248
|
+
"name": "rangeLabelType",
|
|
14249
|
+
"type": "\"data\" | \"page\" | undefined",
|
|
14250
|
+
"complexType": {
|
|
14251
|
+
"original": "IcPaginationLabelTypes",
|
|
14252
|
+
"resolved": "\"data\" | \"page\" | undefined",
|
|
14253
|
+
"references": {
|
|
14254
|
+
"IcPaginationLabelTypes": {
|
|
14255
|
+
"location": "import",
|
|
14256
|
+
"path": "../ic-pagination/ic-pagination.types",
|
|
14257
|
+
"id": "src/components/ic-pagination/ic-pagination.types.ts::IcPaginationLabelTypes"
|
|
14258
|
+
}
|
|
14259
|
+
}
|
|
14260
|
+
},
|
|
14261
|
+
"mutable": false,
|
|
14262
|
+
"attr": "range-label-type",
|
|
14263
|
+
"reflectToAttr": false,
|
|
14264
|
+
"docs": "Whether total number of items and current item range or total number of pages and current page is displayed.",
|
|
14265
|
+
"docsTags": [],
|
|
14266
|
+
"default": "\"page\"",
|
|
14267
|
+
"values": [
|
|
14268
|
+
{
|
|
14269
|
+
"value": "data",
|
|
14270
|
+
"type": "string"
|
|
14271
|
+
},
|
|
14272
|
+
{
|
|
14273
|
+
"value": "page",
|
|
14274
|
+
"type": "string"
|
|
13523
14275
|
},
|
|
13524
14276
|
{
|
|
13525
14277
|
"type": "undefined"
|
|
@@ -13531,49 +14283,45 @@
|
|
|
13531
14283
|
"setter": false
|
|
13532
14284
|
},
|
|
13533
14285
|
{
|
|
13534
|
-
"name": "
|
|
13535
|
-
"type": "boolean
|
|
14286
|
+
"name": "selectItemsPerPageOnEnter",
|
|
14287
|
+
"type": "boolean",
|
|
13536
14288
|
"complexType": {
|
|
13537
14289
|
"original": "boolean",
|
|
13538
|
-
"resolved": "boolean
|
|
14290
|
+
"resolved": "boolean",
|
|
13539
14291
|
"references": {}
|
|
13540
14292
|
},
|
|
13541
14293
|
"mutable": false,
|
|
13542
|
-
"attr": "
|
|
14294
|
+
"attr": "select-items-per-page-on-enter",
|
|
13543
14295
|
"reflectToAttr": false,
|
|
13544
|
-
"docs": "If `
|
|
14296
|
+
"docs": "If `false`, the value in the items per page control will be set immediately on ArrowUp and ArrowDown instead of when Enter is pressed.",
|
|
13545
14297
|
"docsTags": [],
|
|
13546
|
-
"default": "
|
|
14298
|
+
"default": "true",
|
|
13547
14299
|
"values": [
|
|
13548
14300
|
{
|
|
13549
14301
|
"type": "boolean"
|
|
13550
|
-
},
|
|
13551
|
-
{
|
|
13552
|
-
"type": "undefined"
|
|
13553
14302
|
}
|
|
13554
14303
|
],
|
|
13555
|
-
"optional":
|
|
14304
|
+
"optional": false,
|
|
13556
14305
|
"required": false,
|
|
13557
14306
|
"getter": false,
|
|
13558
14307
|
"setter": false
|
|
13559
14308
|
},
|
|
13560
14309
|
{
|
|
13561
|
-
"name": "
|
|
13562
|
-
"type": "
|
|
14310
|
+
"name": "selectedItemsPerPage",
|
|
14311
|
+
"type": "number | undefined",
|
|
13563
14312
|
"complexType": {
|
|
13564
|
-
"original": "
|
|
13565
|
-
"resolved": "
|
|
14313
|
+
"original": "number",
|
|
14314
|
+
"resolved": "number | undefined",
|
|
13566
14315
|
"references": {}
|
|
13567
14316
|
},
|
|
13568
14317
|
"mutable": false,
|
|
13569
|
-
"attr": "
|
|
14318
|
+
"attr": "selected-items-per-page",
|
|
13570
14319
|
"reflectToAttr": false,
|
|
13571
|
-
"docs": "
|
|
14320
|
+
"docs": "The items per page option to be selected.",
|
|
13572
14321
|
"docsTags": [],
|
|
13573
|
-
"default": "false",
|
|
13574
14322
|
"values": [
|
|
13575
14323
|
{
|
|
13576
|
-
"type": "
|
|
14324
|
+
"type": "number"
|
|
13577
14325
|
},
|
|
13578
14326
|
{
|
|
13579
14327
|
"type": "undefined"
|
|
@@ -13585,22 +14333,22 @@
|
|
|
13585
14333
|
"setter": false
|
|
13586
14334
|
},
|
|
13587
14335
|
{
|
|
13588
|
-
"name": "
|
|
13589
|
-
"type": "
|
|
14336
|
+
"name": "setToFirstPageOnPaginationChange",
|
|
14337
|
+
"type": "boolean | undefined",
|
|
13590
14338
|
"complexType": {
|
|
13591
|
-
"original": "
|
|
13592
|
-
"resolved": "
|
|
14339
|
+
"original": "boolean",
|
|
14340
|
+
"resolved": "boolean | undefined",
|
|
13593
14341
|
"references": {}
|
|
13594
14342
|
},
|
|
13595
14343
|
"mutable": false,
|
|
13596
|
-
"attr": "
|
|
14344
|
+
"attr": "set-to-first-page-on-pagination-change",
|
|
13597
14345
|
"reflectToAttr": false,
|
|
13598
|
-
"docs": "
|
|
14346
|
+
"docs": "If `true`, the pagination bar is set to the first page when the 'items per page' changes",
|
|
13599
14347
|
"docsTags": [],
|
|
13600
|
-
"default": "
|
|
14348
|
+
"default": "false",
|
|
13601
14349
|
"values": [
|
|
13602
14350
|
{
|
|
13603
|
-
"type": "
|
|
14351
|
+
"type": "boolean"
|
|
13604
14352
|
},
|
|
13605
14353
|
{
|
|
13606
14354
|
"type": "undefined"
|
|
@@ -13612,7 +14360,7 @@
|
|
|
13612
14360
|
"setter": false
|
|
13613
14361
|
},
|
|
13614
14362
|
{
|
|
13615
|
-
"name": "
|
|
14363
|
+
"name": "showGoToPageControl",
|
|
13616
14364
|
"type": "boolean | undefined",
|
|
13617
14365
|
"complexType": {
|
|
13618
14366
|
"original": "boolean",
|
|
@@ -13620,9 +14368,9 @@
|
|
|
13620
14368
|
"references": {}
|
|
13621
14369
|
},
|
|
13622
14370
|
"mutable": false,
|
|
13623
|
-
"attr": "
|
|
14371
|
+
"attr": "show-go-to-page-control",
|
|
13624
14372
|
"reflectToAttr": false,
|
|
13625
|
-
"docs": "If `true`, the
|
|
14373
|
+
"docs": "If `true`, the 'go to page' control should be displayed.",
|
|
13626
14374
|
"docsTags": [],
|
|
13627
14375
|
"default": "false",
|
|
13628
14376
|
"values": [
|
|
@@ -13639,25 +14387,29 @@
|
|
|
13639
14387
|
"setter": false
|
|
13640
14388
|
},
|
|
13641
14389
|
{
|
|
13642
|
-
"name": "
|
|
13643
|
-
"type": "
|
|
14390
|
+
"name": "showItemsPerPageControl",
|
|
14391
|
+
"type": "boolean | undefined",
|
|
13644
14392
|
"complexType": {
|
|
13645
|
-
"original": "
|
|
13646
|
-
"resolved": "
|
|
14393
|
+
"original": "boolean",
|
|
14394
|
+
"resolved": "boolean | undefined",
|
|
13647
14395
|
"references": {}
|
|
13648
14396
|
},
|
|
13649
14397
|
"mutable": false,
|
|
13650
|
-
"attr": "
|
|
14398
|
+
"attr": "show-items-per-page-control",
|
|
13651
14399
|
"reflectToAttr": false,
|
|
13652
|
-
"docs": "
|
|
14400
|
+
"docs": "If `true`, the select input to control 'items per page' should be displayed.",
|
|
13653
14401
|
"docsTags": [],
|
|
14402
|
+
"default": "false",
|
|
13654
14403
|
"values": [
|
|
13655
14404
|
{
|
|
13656
|
-
"type": "
|
|
14405
|
+
"type": "boolean"
|
|
14406
|
+
},
|
|
14407
|
+
{
|
|
14408
|
+
"type": "undefined"
|
|
13657
14409
|
}
|
|
13658
14410
|
],
|
|
13659
|
-
"optional":
|
|
13660
|
-
"required":
|
|
14411
|
+
"optional": true,
|
|
14412
|
+
"required": false,
|
|
13661
14413
|
"getter": false,
|
|
13662
14414
|
"setter": false
|
|
13663
14415
|
},
|
|
@@ -13703,6 +14455,29 @@
|
|
|
13703
14455
|
"getter": false,
|
|
13704
14456
|
"setter": false
|
|
13705
14457
|
},
|
|
14458
|
+
{
|
|
14459
|
+
"name": "totalItems",
|
|
14460
|
+
"type": "number",
|
|
14461
|
+
"complexType": {
|
|
14462
|
+
"original": "number",
|
|
14463
|
+
"resolved": "number",
|
|
14464
|
+
"references": {}
|
|
14465
|
+
},
|
|
14466
|
+
"mutable": false,
|
|
14467
|
+
"attr": "total-items",
|
|
14468
|
+
"reflectToAttr": false,
|
|
14469
|
+
"docs": "Total number of items to be displayed across all pages.",
|
|
14470
|
+
"docsTags": [],
|
|
14471
|
+
"values": [
|
|
14472
|
+
{
|
|
14473
|
+
"type": "number"
|
|
14474
|
+
}
|
|
14475
|
+
],
|
|
14476
|
+
"optional": false,
|
|
14477
|
+
"required": true,
|
|
14478
|
+
"getter": false,
|
|
14479
|
+
"setter": false
|
|
14480
|
+
},
|
|
13706
14481
|
{
|
|
13707
14482
|
"name": "type",
|
|
13708
14483
|
"type": "\"complex\" | \"simple\" | undefined",
|
|
@@ -13712,7 +14487,7 @@
|
|
|
13712
14487
|
"references": {
|
|
13713
14488
|
"IcPaginationTypes": {
|
|
13714
14489
|
"location": "import",
|
|
13715
|
-
"path": "
|
|
14490
|
+
"path": "../ic-pagination/ic-pagination.types",
|
|
13716
14491
|
"id": "src/components/ic-pagination/ic-pagination.types.ts::IcPaginationTypes"
|
|
13717
14492
|
}
|
|
13718
14493
|
}
|
|
@@ -13720,7 +14495,7 @@
|
|
|
13720
14495
|
"mutable": false,
|
|
13721
14496
|
"attr": "type",
|
|
13722
14497
|
"reflectToAttr": false,
|
|
13723
|
-
"docs": "
|
|
14498
|
+
"docs": "Whether the displayed pagination is simple or complex.",
|
|
13724
14499
|
"docsTags": [],
|
|
13725
14500
|
"default": "\"simple\"",
|
|
13726
14501
|
"values": [
|
|
@@ -13742,66 +14517,46 @@
|
|
|
13742
14517
|
"setter": false
|
|
13743
14518
|
}
|
|
13744
14519
|
],
|
|
13745
|
-
"methods": [
|
|
14520
|
+
"methods": [],
|
|
14521
|
+
"events": [
|
|
13746
14522
|
{
|
|
13747
|
-
"
|
|
13748
|
-
"
|
|
13749
|
-
|
|
13750
|
-
"docs": ""
|
|
13751
|
-
},
|
|
14523
|
+
"event": "icItemsPerPageChange",
|
|
14524
|
+
"detail": "IcItemsPerPageChangeEventDetail",
|
|
14525
|
+
"bubbles": true,
|
|
13752
14526
|
"complexType": {
|
|
13753
|
-
"
|
|
13754
|
-
"
|
|
13755
|
-
{
|
|
13756
|
-
"name": "page",
|
|
13757
|
-
"type": "number",
|
|
13758
|
-
"docs": "The page number to set as the current page"
|
|
13759
|
-
}
|
|
13760
|
-
],
|
|
14527
|
+
"original": "IcItemsPerPageChangeEventDetail",
|
|
14528
|
+
"resolved": "IcItemsPerPageChangeEventDetail",
|
|
13761
14529
|
"references": {
|
|
13762
|
-
"
|
|
13763
|
-
"location": "
|
|
13764
|
-
"
|
|
14530
|
+
"IcItemsPerPageChangeEventDetail": {
|
|
14531
|
+
"location": "import",
|
|
14532
|
+
"path": "./ic-pagination-bar.types",
|
|
14533
|
+
"id": "src/components/ic-pagination-bar/ic-pagination-bar.types.ts::IcItemsPerPageChangeEventDetail"
|
|
13765
14534
|
}
|
|
13766
|
-
},
|
|
13767
|
-
"return": "Promise<void>"
|
|
13768
|
-
},
|
|
13769
|
-
"signature": "setCurrentPage(page: number) => Promise<void>",
|
|
13770
|
-
"parameters": [
|
|
13771
|
-
{
|
|
13772
|
-
"name": "page",
|
|
13773
|
-
"type": "number",
|
|
13774
|
-
"docs": "The page number to set as the current page"
|
|
13775
|
-
}
|
|
13776
|
-
],
|
|
13777
|
-
"docs": "Sets the currently displayed page.",
|
|
13778
|
-
"docsTags": [
|
|
13779
|
-
{
|
|
13780
|
-
"name": "param",
|
|
13781
|
-
"text": "page The page number to set as the current page"
|
|
13782
14535
|
}
|
|
13783
|
-
|
|
13784
|
-
|
|
13785
|
-
|
|
13786
|
-
|
|
14536
|
+
},
|
|
14537
|
+
"cancelable": true,
|
|
14538
|
+
"composed": true,
|
|
14539
|
+
"docs": "Emitted when the items per page option is changed.",
|
|
14540
|
+
"docsTags": []
|
|
14541
|
+
},
|
|
13787
14542
|
{
|
|
13788
14543
|
"event": "icPageChange",
|
|
13789
|
-
"detail": "
|
|
14544
|
+
"detail": "IcPageChangeEventDetail",
|
|
13790
14545
|
"bubbles": true,
|
|
13791
14546
|
"complexType": {
|
|
13792
|
-
"original": "
|
|
13793
|
-
"resolved": "
|
|
14547
|
+
"original": "IcPageChangeEventDetail",
|
|
14548
|
+
"resolved": "IcPageChangeEventDetail",
|
|
13794
14549
|
"references": {
|
|
13795
|
-
"
|
|
14550
|
+
"IcPageChangeEventDetail": {
|
|
13796
14551
|
"location": "import",
|
|
13797
|
-
"path": "./ic-pagination.types",
|
|
13798
|
-
"id": "src/components/ic-pagination/ic-pagination.types.ts::
|
|
14552
|
+
"path": "./ic-pagination-bar.types",
|
|
14553
|
+
"id": "src/components/ic-pagination-bar/ic-pagination-bar.types.ts::IcPageChangeEventDetail"
|
|
13799
14554
|
}
|
|
13800
14555
|
}
|
|
13801
14556
|
},
|
|
13802
14557
|
"cancelable": true,
|
|
13803
14558
|
"composed": true,
|
|
13804
|
-
"docs": "Emitted when a page is
|
|
14559
|
+
"docs": "Emitted when a page is navigated to via the 'go to' input.\nThe `detail` property contains `value` (i.e. the page number) and a `fromItemsPerPage` flag to indicate if the event was triggered by the `icItemsPerPageChange` event also occurring.",
|
|
13805
14560
|
"docsTags": []
|
|
13806
14561
|
}
|
|
13807
14562
|
],
|
|
@@ -13810,11 +14565,6 @@
|
|
|
13810
14565
|
"event": "icPageChange",
|
|
13811
14566
|
"capture": false,
|
|
13812
14567
|
"passive": false
|
|
13813
|
-
},
|
|
13814
|
-
{
|
|
13815
|
-
"event": "paginationItemClick",
|
|
13816
|
-
"capture": false,
|
|
13817
|
-
"passive": false
|
|
13818
14568
|
}
|
|
13819
14569
|
],
|
|
13820
14570
|
"styles": [],
|
|
@@ -13822,13 +14572,30 @@
|
|
|
13822
14572
|
"parts": [],
|
|
13823
14573
|
"dependents": [],
|
|
13824
14574
|
"dependencies": [
|
|
13825
|
-
"ic-
|
|
13826
|
-
"ic-
|
|
14575
|
+
"ic-typography",
|
|
14576
|
+
"ic-select",
|
|
14577
|
+
"ic-pagination",
|
|
14578
|
+
"ic-tooltip",
|
|
14579
|
+
"ic-text-field",
|
|
14580
|
+
"ic-button"
|
|
13827
14581
|
],
|
|
13828
14582
|
"dependencyGraph": {
|
|
13829
|
-
"ic-pagination": [
|
|
14583
|
+
"ic-pagination-bar": [
|
|
14584
|
+
"ic-typography",
|
|
14585
|
+
"ic-select",
|
|
14586
|
+
"ic-pagination",
|
|
14587
|
+
"ic-tooltip",
|
|
14588
|
+
"ic-text-field",
|
|
14589
|
+
"ic-button"
|
|
14590
|
+
],
|
|
14591
|
+
"ic-select": [
|
|
13830
14592
|
"ic-button",
|
|
13831
|
-
"ic-
|
|
14593
|
+
"ic-typography",
|
|
14594
|
+
"ic-input-container",
|
|
14595
|
+
"ic-input-label",
|
|
14596
|
+
"ic-input-component-container",
|
|
14597
|
+
"ic-menu",
|
|
14598
|
+
"ic-input-validation"
|
|
13832
14599
|
],
|
|
13833
14600
|
"ic-button": [
|
|
13834
14601
|
"ic-typography",
|
|
@@ -13841,8 +14608,30 @@
|
|
|
13841
14608
|
"ic-tooltip": [
|
|
13842
14609
|
"ic-typography"
|
|
13843
14610
|
],
|
|
14611
|
+
"ic-input-label": [
|
|
14612
|
+
"ic-typography"
|
|
14613
|
+
],
|
|
14614
|
+
"ic-menu": [
|
|
14615
|
+
"ic-loading-indicator",
|
|
14616
|
+
"ic-typography",
|
|
14617
|
+
"ic-button"
|
|
14618
|
+
],
|
|
14619
|
+
"ic-input-validation": [
|
|
14620
|
+
"ic-typography"
|
|
14621
|
+
],
|
|
14622
|
+
"ic-pagination": [
|
|
14623
|
+
"ic-button",
|
|
14624
|
+
"ic-pagination-item"
|
|
14625
|
+
],
|
|
13844
14626
|
"ic-pagination-item": [
|
|
13845
14627
|
"ic-typography"
|
|
14628
|
+
],
|
|
14629
|
+
"ic-text-field": [
|
|
14630
|
+
"ic-input-container",
|
|
14631
|
+
"ic-input-label",
|
|
14632
|
+
"ic-input-component-container",
|
|
14633
|
+
"ic-input-validation",
|
|
14634
|
+
"ic-typography"
|
|
13846
14635
|
]
|
|
13847
14636
|
}
|
|
13848
14637
|
},
|
|
@@ -17036,15 +17825,15 @@
|
|
|
17036
17825
|
},
|
|
17037
17826
|
{
|
|
17038
17827
|
"name": "options",
|
|
17039
|
-
"type": "
|
|
17828
|
+
"type": "IcSelectOption[]",
|
|
17040
17829
|
"complexType": {
|
|
17041
|
-
"original": "
|
|
17042
|
-
"resolved": "
|
|
17830
|
+
"original": "IcSelectOption[]",
|
|
17831
|
+
"resolved": "IcSelectOption[]",
|
|
17043
17832
|
"references": {
|
|
17044
|
-
"
|
|
17833
|
+
"IcSelectOption": {
|
|
17045
17834
|
"location": "import",
|
|
17046
|
-
"path": "
|
|
17047
|
-
"id": "src/
|
|
17835
|
+
"path": "./ic-select.types",
|
|
17836
|
+
"id": "src/components/ic-select/ic-select.types.ts::IcSelectOption"
|
|
17048
17837
|
}
|
|
17049
17838
|
}
|
|
17050
17839
|
},
|
|
@@ -17055,7 +17844,7 @@
|
|
|
17055
17844
|
"default": "[]",
|
|
17056
17845
|
"values": [
|
|
17057
17846
|
{
|
|
17058
|
-
"type": "
|
|
17847
|
+
"type": "IcSelectOption[]"
|
|
17059
17848
|
}
|
|
17060
17849
|
],
|
|
17061
17850
|
"optional": false,
|
|
@@ -17346,6 +18135,30 @@
|
|
|
17346
18135
|
"getter": false,
|
|
17347
18136
|
"setter": false
|
|
17348
18137
|
},
|
|
18138
|
+
{
|
|
18139
|
+
"name": "useNativeSelectOnMobile",
|
|
18140
|
+
"type": "boolean",
|
|
18141
|
+
"complexType": {
|
|
18142
|
+
"original": "boolean",
|
|
18143
|
+
"resolved": "boolean",
|
|
18144
|
+
"references": {}
|
|
18145
|
+
},
|
|
18146
|
+
"mutable": false,
|
|
18147
|
+
"attr": "use-native-select-on-mobile",
|
|
18148
|
+
"reflectToAttr": false,
|
|
18149
|
+
"docs": "If `true` and on a mobile or tablet device, the native select element will be used instead of the custom select component for better usability.",
|
|
18150
|
+
"docsTags": [],
|
|
18151
|
+
"default": "true",
|
|
18152
|
+
"values": [
|
|
18153
|
+
{
|
|
18154
|
+
"type": "boolean"
|
|
18155
|
+
}
|
|
18156
|
+
],
|
|
18157
|
+
"optional": false,
|
|
18158
|
+
"required": false,
|
|
18159
|
+
"getter": false,
|
|
18160
|
+
"setter": false
|
|
18161
|
+
},
|
|
17349
18162
|
{
|
|
17350
18163
|
"name": "validationAriaLive",
|
|
17351
18164
|
"type": "\"assertive\" | \"off\" | \"polite\"",
|
|
@@ -17502,7 +18315,7 @@
|
|
|
17502
18315
|
},
|
|
17503
18316
|
"signature": "setFocus() => Promise<void>",
|
|
17504
18317
|
"parameters": [],
|
|
17505
|
-
"docs": "Sets focus on the
|
|
18318
|
+
"docs": "Sets focus on the select component.",
|
|
17506
18319
|
"docsTags": []
|
|
17507
18320
|
}
|
|
17508
18321
|
],
|
|
@@ -17707,29 +18520,28 @@
|
|
|
17707
18520
|
}
|
|
17708
18521
|
],
|
|
17709
18522
|
"parts": [],
|
|
17710
|
-
"dependents": [
|
|
18523
|
+
"dependents": [
|
|
18524
|
+
"ic-pagination-bar"
|
|
18525
|
+
],
|
|
17711
18526
|
"dependencies": [
|
|
18527
|
+
"ic-button",
|
|
18528
|
+
"ic-typography",
|
|
17712
18529
|
"ic-input-container",
|
|
17713
18530
|
"ic-input-label",
|
|
17714
18531
|
"ic-input-component-container",
|
|
17715
|
-
"ic-typography",
|
|
17716
|
-
"ic-button",
|
|
17717
18532
|
"ic-menu",
|
|
17718
18533
|
"ic-input-validation"
|
|
17719
18534
|
],
|
|
17720
18535
|
"dependencyGraph": {
|
|
17721
18536
|
"ic-select": [
|
|
18537
|
+
"ic-button",
|
|
18538
|
+
"ic-typography",
|
|
17722
18539
|
"ic-input-container",
|
|
17723
18540
|
"ic-input-label",
|
|
17724
18541
|
"ic-input-component-container",
|
|
17725
|
-
"ic-typography",
|
|
17726
|
-
"ic-button",
|
|
17727
18542
|
"ic-menu",
|
|
17728
18543
|
"ic-input-validation"
|
|
17729
18544
|
],
|
|
17730
|
-
"ic-input-label": [
|
|
17731
|
-
"ic-typography"
|
|
17732
|
-
],
|
|
17733
18545
|
"ic-button": [
|
|
17734
18546
|
"ic-typography",
|
|
17735
18547
|
"ic-loading-indicator",
|
|
@@ -17741,6 +18553,9 @@
|
|
|
17741
18553
|
"ic-tooltip": [
|
|
17742
18554
|
"ic-typography"
|
|
17743
18555
|
],
|
|
18556
|
+
"ic-input-label": [
|
|
18557
|
+
"ic-typography"
|
|
18558
|
+
],
|
|
17744
18559
|
"ic-menu": [
|
|
17745
18560
|
"ic-loading-indicator",
|
|
17746
18561
|
"ic-typography",
|
|
@@ -17748,6 +18563,9 @@
|
|
|
17748
18563
|
],
|
|
17749
18564
|
"ic-input-validation": [
|
|
17750
18565
|
"ic-typography"
|
|
18566
|
+
],
|
|
18567
|
+
"ic-pagination-bar": [
|
|
18568
|
+
"ic-select"
|
|
17751
18569
|
]
|
|
17752
18570
|
}
|
|
17753
18571
|
},
|
|
@@ -21296,7 +22114,9 @@
|
|
|
21296
22114
|
}
|
|
21297
22115
|
],
|
|
21298
22116
|
"parts": [],
|
|
21299
|
-
"dependents": [
|
|
22117
|
+
"dependents": [
|
|
22118
|
+
"ic-pagination-bar"
|
|
22119
|
+
],
|
|
21300
22120
|
"dependencies": [
|
|
21301
22121
|
"ic-input-container",
|
|
21302
22122
|
"ic-input-label",
|
|
@@ -21317,6 +22137,9 @@
|
|
|
21317
22137
|
],
|
|
21318
22138
|
"ic-input-validation": [
|
|
21319
22139
|
"ic-typography"
|
|
22140
|
+
],
|
|
22141
|
+
"ic-pagination-bar": [
|
|
22142
|
+
"ic-text-field"
|
|
21320
22143
|
]
|
|
21321
22144
|
}
|
|
21322
22145
|
},
|
|
@@ -23128,7 +23951,8 @@
|
|
|
23128
23951
|
"ic-button",
|
|
23129
23952
|
"ic-card-vertical",
|
|
23130
23953
|
"ic-chip",
|
|
23131
|
-
"ic-navigation-item"
|
|
23954
|
+
"ic-navigation-item",
|
|
23955
|
+
"ic-pagination-bar"
|
|
23132
23956
|
],
|
|
23133
23957
|
"dependencies": [
|
|
23134
23958
|
"ic-typography"
|
|
@@ -23148,6 +23972,9 @@
|
|
|
23148
23972
|
],
|
|
23149
23973
|
"ic-navigation-item": [
|
|
23150
23974
|
"ic-tooltip"
|
|
23975
|
+
],
|
|
23976
|
+
"ic-pagination-bar": [
|
|
23977
|
+
"ic-tooltip"
|
|
23151
23978
|
]
|
|
23152
23979
|
}
|
|
23153
23980
|
},
|
|
@@ -23912,6 +24739,7 @@
|
|
|
23912
24739
|
"ic-navigation-item",
|
|
23913
24740
|
"ic-navigation-menu",
|
|
23914
24741
|
"ic-page-header",
|
|
24742
|
+
"ic-pagination-bar",
|
|
23915
24743
|
"ic-pagination-item",
|
|
23916
24744
|
"ic-popover-menu",
|
|
23917
24745
|
"ic-radio-option",
|
|
@@ -24014,6 +24842,9 @@
|
|
|
24014
24842
|
"ic-page-header": [
|
|
24015
24843
|
"ic-typography"
|
|
24016
24844
|
],
|
|
24845
|
+
"ic-pagination-bar": [
|
|
24846
|
+
"ic-typography"
|
|
24847
|
+
],
|
|
24017
24848
|
"ic-pagination-item": [
|
|
24018
24849
|
"ic-typography"
|
|
24019
24850
|
],
|
|
@@ -24364,11 +25195,36 @@
|
|
|
24364
25195
|
"docstring": "",
|
|
24365
25196
|
"path": "src/components/ic-pagination-item/ic-pagination-item.types.ts"
|
|
24366
25197
|
},
|
|
25198
|
+
"src/components/ic-pagination/ic-pagination.types.ts::IcPaginationAlignmentOptions": {
|
|
25199
|
+
"declaration": "export type IcPaginationAlignmentOptions = \"left\" | \"right\" | \"space-between\";",
|
|
25200
|
+
"docstring": "",
|
|
25201
|
+
"path": "src/components/ic-pagination/ic-pagination.types.ts"
|
|
25202
|
+
},
|
|
25203
|
+
"src/components/ic-pagination/ic-pagination.types.ts::IcPaginationLabelTypes": {
|
|
25204
|
+
"declaration": "export type IcPaginationLabelTypes = \"page\" | \"data\";",
|
|
25205
|
+
"docstring": "",
|
|
25206
|
+
"path": "src/components/ic-pagination/ic-pagination.types.ts"
|
|
25207
|
+
},
|
|
25208
|
+
"src/components/ic-pagination-bar/ic-pagination-bar.types.ts::IcPageChangeEventDetail": {
|
|
25209
|
+
"declaration": "export interface IcPageChangeEventDetail {\n value: number;\n fromItemsPerPage?: boolean;\n}",
|
|
25210
|
+
"docstring": "",
|
|
25211
|
+
"path": "src/components/ic-pagination-bar/ic-pagination-bar.types.ts"
|
|
25212
|
+
},
|
|
25213
|
+
"src/components/ic-pagination-bar/ic-pagination-bar.types.ts::IcItemsPerPageChangeEventDetail": {
|
|
25214
|
+
"declaration": "export interface IcItemsPerPageChangeEventDetail {\n value: number;\n isUserAction?: boolean;\n}",
|
|
25215
|
+
"docstring": "",
|
|
25216
|
+
"path": "src/components/ic-pagination-bar/ic-pagination-bar.types.ts"
|
|
25217
|
+
},
|
|
24367
25218
|
"src/utils/types.ts::IcSearchMatchPositions": {
|
|
24368
25219
|
"declaration": "export type IcSearchMatchPositions = \"start\" | \"anywhere\";",
|
|
24369
25220
|
"docstring": "",
|
|
24370
25221
|
"path": "src/utils/types.ts"
|
|
24371
25222
|
},
|
|
25223
|
+
"src/components/ic-select/ic-select.types.ts::IcSelectOption": {
|
|
25224
|
+
"declaration": "export type IcSelectOption =\n | IcSelectOptionBase\n | IcSelectOptionGroup\n | IcSelectOptionLoading\n | IcSelectOptionTimedOut;",
|
|
25225
|
+
"docstring": "",
|
|
25226
|
+
"path": "src/components/ic-select/ic-select.types.ts"
|
|
25227
|
+
},
|
|
24372
25228
|
"src/components/ic-skeleton/ic-skeleton.types.ts::IcSkeletonVariants": {
|
|
24373
25229
|
"declaration": "export type IcSkeletonVariants = \"rectangle\" | \"text\" | \"circle\";",
|
|
24374
25230
|
"docstring": "",
|