@ukic/canary-docs 3.0.0-canary.26 → 3.0.0-canary.27

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.
Files changed (2) hide show
  1. package/docs.json +6 -46
  2. package/package.json +2 -2
package/docs.json CHANGED
@@ -5538,7 +5538,7 @@
5538
5538
  },
5539
5539
  "mutable": false,
5540
5540
  "reflectToAttr": false,
5541
- "docs": "An array of times that will be disabled in the time input. The times can be in any format supported as `timeFormat`, in ISO 8601 time string format (`HH:MM:SS`) or as a JavaScript `Date` object.",
5541
+ "docs": "An array of objects with start and end values that will be disabled in the time input. The times can be in any format supported as `timeFormat`, in ISO 8601 time string format (`HH:MM:SS`) or as a JavaScript `Date` object.",
5542
5542
  "docsTags": [],
5543
5543
  "default": "[]",
5544
5544
  "values": [
@@ -6381,7 +6381,7 @@
6381
6381
  },
6382
6382
  "mutable": false,
6383
6383
  "reflectToAttr": false,
6384
- "docs": "An array of times that will be disabled in the time selector. The times can be in any format supported as `timeFormat`, in ISO 8601 time string format (`HH:MM:SS`) or as a JavaScript `Date` object.",
6384
+ "docs": "An array of objects with start and end values that will be disabled in the time selector. The times can be in any format supported as `timeFormat`, in ISO 8601 time string format (`HH:MM:SS`) or as a JavaScript `Date` object.",
6385
6385
  "docsTags": [],
6386
6386
  "default": "[]",
6387
6387
  "values": [
@@ -6539,41 +6539,6 @@
6539
6539
  "getter": false,
6540
6540
  "setter": false
6541
6541
  },
6542
- {
6543
- "name": "timeFormat",
6544
- "type": "\"HH:MM\" | \"HH:MM:SS\"",
6545
- "complexType": {
6546
- "original": "IcTimeFormatSelector",
6547
- "resolved": "\"HH:MM\" | \"HH:MM:SS\"",
6548
- "references": {
6549
- "IcTimeFormatSelector": {
6550
- "location": "import",
6551
- "path": "../../utils/types",
6552
- "id": "src/utils/types.ts::IcTimeFormatSelector"
6553
- }
6554
- }
6555
- },
6556
- "mutable": false,
6557
- "attr": "time-format",
6558
- "reflectToAttr": false,
6559
- "docs": "The format in which the time will be displayed.",
6560
- "docsTags": [],
6561
- "default": "this.DEFAULT_TIME_FORMAT",
6562
- "values": [
6563
- {
6564
- "value": "HH:MM",
6565
- "type": "string"
6566
- },
6567
- {
6568
- "value": "HH:MM:SS",
6569
- "type": "string"
6570
- }
6571
- ],
6572
- "optional": false,
6573
- "required": false,
6574
- "getter": false,
6575
- "setter": false
6576
- },
6577
6542
  {
6578
6543
  "name": "timePeriod",
6579
6544
  "type": "\"12\" | \"24\"",
@@ -6646,11 +6611,11 @@
6646
6611
  "events": [
6647
6612
  {
6648
6613
  "event": "icChange",
6649
- "detail": "{ value: Date | null; timeString: string | null; timeObject: { hour: string | null; minute: string | null; second: string | null; period?: IcTimePeriods | undefined; }; }",
6614
+ "detail": "{ value: Date | null; timeString: string | null; timeObject: { hour: string | null; minute: string | null; period?: IcTimePeriods | undefined; }; }",
6650
6615
  "bubbles": true,
6651
6616
  "complexType": {
6652
- "original": "{\n value: Date | null;\n timeString: string | null;\n timeObject: {\n hour: string | null;\n minute: string | null;\n second: string | null;\n period?: IcTimePeriods;\n };\n }",
6653
- "resolved": "{ value: Date | null; timeString: string | null; timeObject: { hour: string | null; minute: string | null; second: string | null; period?: IcTimePeriods | undefined; }; }",
6617
+ "original": "{\n value: Date | null;\n timeString: string | null;\n timeObject: {\n hour: string | null;\n minute: string | null;\n period?: IcTimePeriods;\n };\n }",
6618
+ "resolved": "{ value: Date | null; timeString: string | null; timeObject: { hour: string | null; minute: string | null; period?: IcTimePeriods | undefined; }; }",
6654
6619
  "references": {
6655
6620
  "Date": {
6656
6621
  "location": "global",
@@ -7533,7 +7498,7 @@
7533
7498
  "path": "src/utils/types.ts"
7534
7499
  },
7535
7500
  "src/utils/types.ts::IcDisableTimeSelection": {
7536
- "declaration": "export type IcDisableTimeSelection =\n | string\n | Date\n | { start: string | Date; end: string | Date };",
7501
+ "declaration": "{\n start: string | Date;\n end: string | Date;\n}",
7537
7502
  "docstring": "",
7538
7503
  "path": "src/utils/types.ts"
7539
7504
  },
@@ -7542,11 +7507,6 @@
7542
7507
  "docstring": "",
7543
7508
  "path": "src/utils/types.ts"
7544
7509
  },
7545
- "src/utils/types.ts::IcTimeFormatSelector": {
7546
- "declaration": "export type IcTimeFormatSelector = \"HH:MM\" | \"HH:MM:SS\";",
7547
- "docstring": "",
7548
- "path": "src/utils/types.ts"
7549
- },
7550
7510
  "src/components/ic-time-selector/ic-time-selector.types.ts::IcTimePeriods": {
7551
7511
  "declaration": "export type IcTimePeriods = \"AM\" | \"PM\";",
7552
7512
  "docstring": "",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ukic/canary-docs",
3
- "version": "3.0.0-canary.26",
3
+ "version": "3.0.0-canary.27",
4
4
  "description": "API documentation for @ukic canary components",
5
5
  "bugs": {
6
6
  "url": "https://github.com/mi6/ic-ui-kit/issues",
@@ -19,5 +19,5 @@
19
19
  "docs.d.ts"
20
20
  ],
21
21
  "packageManager": "^npm@10.9.2",
22
- "gitHead": "f02f7dbf5c2a7967e86689b425e601f34f50231b"
22
+ "gitHead": "6140e22c972788eef372b91c7c694b208ae285fa"
23
23
  }