@ukic/canary-docs 3.0.0-canary.24 → 3.0.0-canary.25
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 +56 -2
- package/package.json +2 -2
package/docs.json
CHANGED
|
@@ -1643,7 +1643,7 @@
|
|
|
1643
1643
|
"reflectToAttr": false,
|
|
1644
1644
|
"docs": "Sets the props for the built-in pagination bar. If the `pagination-bar` slot is used then this prop is ignored.",
|
|
1645
1645
|
"docsTags": [],
|
|
1646
|
-
"default": "{\n alignment: \"right\",\n hideAllFromItemsPerPage: false,\n hideRangeLabel: false,\n itemLabel: \"Item\",\n itemsPerPageOptions: [\n { label: \"10\", value: \"10\" },\n { label: \"25\", value: \"25\" },\n { label: \"50\", value: \"50\" },\n ],\n monochrome: false,\n pageLabel: \"Page\",\n rangeLabelType: \"page\",\n selectedItemsPerPage: 10,\n selectItemsPerPageOnEnter: true,\n setToFirstPageOnPaginationChange: false,\n showGoToPageControl: true,\n showItemsPerPageControl: true,\n type: \"simple\",\n }",
|
|
1646
|
+
"default": "{\n alignment: \"right\",\n hideAllFromItemsPerPage: false,\n hideCurrentPage: false,\n hideFirstAndLastPageButton: false,\n hideRangeLabel: false,\n itemLabel: \"Item\",\n itemsPerPageOptions: [\n { label: \"10\", value: \"10\" },\n { label: \"25\", value: \"25\" },\n { label: \"50\", value: \"50\" },\n ],\n monochrome: false,\n pageLabel: \"Page\",\n rangeLabelType: \"page\",\n selectedItemsPerPage: 10,\n selectItemsPerPageOnEnter: true,\n setToFirstPageOnPaginationChange: false,\n showGoToPageControl: true,\n showItemsPerPageControl: true,\n type: \"simple\",\n }",
|
|
1647
1647
|
"values": [
|
|
1648
1648
|
{
|
|
1649
1649
|
"type": "IcPaginationBarOptions"
|
|
@@ -4626,6 +4626,60 @@
|
|
|
4626
4626
|
"getter": false,
|
|
4627
4627
|
"setter": false
|
|
4628
4628
|
},
|
|
4629
|
+
{
|
|
4630
|
+
"name": "hideCurrentPage",
|
|
4631
|
+
"type": "boolean | undefined",
|
|
4632
|
+
"complexType": {
|
|
4633
|
+
"original": "boolean",
|
|
4634
|
+
"resolved": "boolean | undefined",
|
|
4635
|
+
"references": {}
|
|
4636
|
+
},
|
|
4637
|
+
"mutable": false,
|
|
4638
|
+
"attr": "hide-current-page",
|
|
4639
|
+
"reflectToAttr": false,
|
|
4640
|
+
"docs": "If `true`, the current page of the simple pagination will not be displayed.",
|
|
4641
|
+
"docsTags": [],
|
|
4642
|
+
"default": "false",
|
|
4643
|
+
"values": [
|
|
4644
|
+
{
|
|
4645
|
+
"type": "boolean"
|
|
4646
|
+
},
|
|
4647
|
+
{
|
|
4648
|
+
"type": "undefined"
|
|
4649
|
+
}
|
|
4650
|
+
],
|
|
4651
|
+
"optional": true,
|
|
4652
|
+
"required": false,
|
|
4653
|
+
"getter": false,
|
|
4654
|
+
"setter": false
|
|
4655
|
+
},
|
|
4656
|
+
{
|
|
4657
|
+
"name": "hideFirstAndLastPageButton",
|
|
4658
|
+
"type": "boolean | undefined",
|
|
4659
|
+
"complexType": {
|
|
4660
|
+
"original": "boolean",
|
|
4661
|
+
"resolved": "boolean | undefined",
|
|
4662
|
+
"references": {}
|
|
4663
|
+
},
|
|
4664
|
+
"mutable": false,
|
|
4665
|
+
"attr": "hide-first-and-last-page-button",
|
|
4666
|
+
"reflectToAttr": false,
|
|
4667
|
+
"docs": "If `true`, the first and last page buttons will not be displayed.",
|
|
4668
|
+
"docsTags": [],
|
|
4669
|
+
"default": "false",
|
|
4670
|
+
"values": [
|
|
4671
|
+
{
|
|
4672
|
+
"type": "boolean"
|
|
4673
|
+
},
|
|
4674
|
+
{
|
|
4675
|
+
"type": "undefined"
|
|
4676
|
+
}
|
|
4677
|
+
],
|
|
4678
|
+
"optional": true,
|
|
4679
|
+
"required": false,
|
|
4680
|
+
"getter": false,
|
|
4681
|
+
"setter": false
|
|
4682
|
+
},
|
|
4629
4683
|
{
|
|
4630
4684
|
"name": "hideRangeLabel",
|
|
4631
4685
|
"type": "boolean | undefined",
|
|
@@ -7009,7 +7063,7 @@
|
|
|
7009
7063
|
"path": "src/components/ic-data-table/ic-data-table.types.tsx"
|
|
7010
7064
|
},
|
|
7011
7065
|
"src/utils/types.ts::IcPaginationBarOptions": {
|
|
7012
|
-
"declaration": "export interface IcPaginationBarOptions {\n alignment?: IcPaginationAlignmentOptions;\n hideAllFromItemsPerPage?: boolean;\n hideRangeLabel?: boolean;\n itemLabel?: string;\n itemsPerPageOptions?: { label: string; value: string }[];\n monochrome?: boolean;\n pageLabel?: string;\n rangeLabelType?: IcPaginationLabelTypes;\n selectedItemsPerPage?: number;\n selectItemsPerPageOnEnter?: boolean;\n setToFirstPageOnPaginationChange?: boolean;\n showGoToPageControl?: boolean;\n showItemsPerPageControl?: boolean;\n theme?: IcThemeMode;\n type?: IcPaginationTypes;\n}",
|
|
7066
|
+
"declaration": "export interface IcPaginationBarOptions {\n alignment?: IcPaginationAlignmentOptions;\n hideAllFromItemsPerPage?: boolean;\n hideCurrentPage?: boolean;\n hideFirstAndLastPageButton?: boolean;\n hideRangeLabel?: boolean;\n itemLabel?: string;\n itemsPerPageOptions?: { label: string; value: string }[];\n monochrome?: boolean;\n pageLabel?: string;\n rangeLabelType?: IcPaginationLabelTypes;\n selectedItemsPerPage?: number;\n selectItemsPerPageOnEnter?: boolean;\n setToFirstPageOnPaginationChange?: boolean;\n showGoToPageControl?: boolean;\n showItemsPerPageControl?: boolean;\n theme?: IcThemeMode;\n type?: IcPaginationTypes;\n}",
|
|
7013
7067
|
"docstring": "",
|
|
7014
7068
|
"path": "src/utils/types.ts"
|
|
7015
7069
|
},
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"author": "mi6",
|
|
3
3
|
"name": "@ukic/canary-docs",
|
|
4
|
-
"version": "3.0.0-canary.
|
|
4
|
+
"version": "3.0.0-canary.25",
|
|
5
5
|
"description": "API documentation for @ukic canary components",
|
|
6
6
|
"main": "docs.json",
|
|
7
7
|
"types": "./docs.d.ts",
|
|
@@ -19,5 +19,5 @@
|
|
|
19
19
|
},
|
|
20
20
|
"license": "MIT",
|
|
21
21
|
"packageManager": "^npm@10.9.2",
|
|
22
|
-
"gitHead": "
|
|
22
|
+
"gitHead": "e79d55a34a906d095f8674636410d47bdb6d3e03"
|
|
23
23
|
}
|