@ukic/canary-docs 2.0.0-canary.29 → 2.0.0-canary.31
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 +48 -1
- package/package.json +2 -2
package/docs.json
CHANGED
|
@@ -2704,6 +2704,34 @@
|
|
|
2704
2704
|
"optional": true,
|
|
2705
2705
|
"required": false
|
|
2706
2706
|
},
|
|
2707
|
+
{
|
|
2708
|
+
"name": "showDateInput",
|
|
2709
|
+
"type": "boolean",
|
|
2710
|
+
"complexType": {
|
|
2711
|
+
"original": "boolean",
|
|
2712
|
+
"resolved": "boolean",
|
|
2713
|
+
"references": {}
|
|
2714
|
+
},
|
|
2715
|
+
"mutable": false,
|
|
2716
|
+
"attr": "show-date-input",
|
|
2717
|
+
"reflectToAttr": false,
|
|
2718
|
+
"docs": "",
|
|
2719
|
+
"docsTags": [
|
|
2720
|
+
{
|
|
2721
|
+
"name": "deprecated",
|
|
2722
|
+
"text": "This prop should not be used anymore. If `false` hides the date input control and just displays the calendar."
|
|
2723
|
+
}
|
|
2724
|
+
],
|
|
2725
|
+
"default": "true",
|
|
2726
|
+
"deprecation": "This prop should not be used anymore. If `false` hides the date input control and just displays the calendar.",
|
|
2727
|
+
"values": [
|
|
2728
|
+
{
|
|
2729
|
+
"type": "boolean"
|
|
2730
|
+
}
|
|
2731
|
+
],
|
|
2732
|
+
"optional": true,
|
|
2733
|
+
"required": false
|
|
2734
|
+
},
|
|
2707
2735
|
{
|
|
2708
2736
|
"name": "showDaysOutsideMonth",
|
|
2709
2737
|
"type": "boolean",
|
|
@@ -2966,6 +2994,25 @@
|
|
|
2966
2994
|
"composed": true,
|
|
2967
2995
|
"docs": "Emitted when the value has changed.",
|
|
2968
2996
|
"docsTags": []
|
|
2997
|
+
},
|
|
2998
|
+
{
|
|
2999
|
+
"event": "icSelectedDateChange",
|
|
3000
|
+
"detail": "{ value: Date; }",
|
|
3001
|
+
"bubbles": true,
|
|
3002
|
+
"complexType": {
|
|
3003
|
+
"original": "{ value: Date }",
|
|
3004
|
+
"resolved": "{ value: Date; }",
|
|
3005
|
+
"references": {
|
|
3006
|
+
"Date": {
|
|
3007
|
+
"location": "global",
|
|
3008
|
+
"id": "global::Date"
|
|
3009
|
+
}
|
|
3010
|
+
}
|
|
3011
|
+
},
|
|
3012
|
+
"cancelable": true,
|
|
3013
|
+
"composed": true,
|
|
3014
|
+
"docs": "Emitted when the selected date has changed.",
|
|
3015
|
+
"docsTags": []
|
|
2969
3016
|
}
|
|
2970
3017
|
],
|
|
2971
3018
|
"listeners": [
|
|
@@ -5647,7 +5694,7 @@
|
|
|
5647
5694
|
"path": "src/components/ic-card-horizontal/ic-card-horizontal.types.ts"
|
|
5648
5695
|
},
|
|
5649
5696
|
"src/components/ic-data-table/ic-data-table.types.tsx::IcDataTableColumnObject": {
|
|
5650
|
-
"declaration": "{\n key: string;\n title: string;\n dataType: IcDataTableColumnDataTypes;\n columnAlignment?: {\n horizontal?: string;\n vertical?: string;\n };\n rowOptions?: {\n textWrap: boolean;\n };\n columnWidth?: string | IcDataTableColumnWidthTypes;\n textWrap?: boolean;\n cellAlignment?: string;\n emphasis?: string;\n colspan?: number;\n icon?: {\n icon: string;\n onAllCells?: boolean;\n hideOnHeader?: boolean;\n };\n}",
|
|
5697
|
+
"declaration": "{\n key: string;\n title: string;\n dataType: IcDataTableColumnDataTypes;\n columnAlignment?: {\n horizontal?: string;\n vertical?: string;\n };\n rowOptions?: {\n textWrap: boolean;\n };\n columnWidth?: string | IcDataTableColumnWidthTypes;\n textWrap?: boolean;\n cellAlignment?: string;\n emphasis?: string;\n colspan?: number;\n icon?: {\n icon: string;\n onAllCells?: boolean;\n hideOnHeader?: boolean;\n };\n excludeColumnFromSort?: boolean;\n}",
|
|
5651
5698
|
"docstring": "",
|
|
5652
5699
|
"path": "src/components/ic-data-table/ic-data-table.types.tsx"
|
|
5653
5700
|
},
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"author": "mi6",
|
|
3
3
|
"name": "@ukic/canary-docs",
|
|
4
|
-
"version": "2.0.0-canary.
|
|
4
|
+
"version": "2.0.0-canary.31",
|
|
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": "57c92bd6e5ec9649c60d0231067852679af99def"
|
|
23
23
|
}
|