@ukic/docs 3.4.3 → 3.4.5
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 +64 -11
- package/package.json +2 -2
package/docs.json
CHANGED
|
@@ -4143,6 +4143,10 @@
|
|
|
4143
4143
|
{
|
|
4144
4144
|
"name": "slot",
|
|
4145
4145
|
"text": "additional-field - Content to be displayed alongside a checkbox."
|
|
4146
|
+
},
|
|
4147
|
+
{
|
|
4148
|
+
"name": "slot",
|
|
4149
|
+
"text": "label - Label for the checkbox."
|
|
4146
4150
|
}
|
|
4147
4151
|
],
|
|
4148
4152
|
"usage": {},
|
|
@@ -4578,6 +4582,10 @@
|
|
|
4578
4582
|
{
|
|
4579
4583
|
"name": "additional-field",
|
|
4580
4584
|
"docs": "Content to be displayed alongside a checkbox."
|
|
4585
|
+
},
|
|
4586
|
+
{
|
|
4587
|
+
"name": "label",
|
|
4588
|
+
"docs": "Label for the checkbox."
|
|
4581
4589
|
}
|
|
4582
4590
|
],
|
|
4583
4591
|
"parts": [],
|
|
@@ -7928,6 +7936,45 @@
|
|
|
7928
7936
|
"required": false,
|
|
7929
7937
|
"getter": false,
|
|
7930
7938
|
"setter": false
|
|
7939
|
+
},
|
|
7940
|
+
{
|
|
7941
|
+
"name": "theme",
|
|
7942
|
+
"type": "\"dark\" | \"inherit\" | \"light\"",
|
|
7943
|
+
"complexType": {
|
|
7944
|
+
"original": "IcThemeMode",
|
|
7945
|
+
"resolved": "\"dark\" | \"inherit\" | \"light\"",
|
|
7946
|
+
"references": {
|
|
7947
|
+
"IcThemeMode": {
|
|
7948
|
+
"location": "import",
|
|
7949
|
+
"path": "../../utils/types",
|
|
7950
|
+
"id": "src/utils/types.ts::IcThemeMode"
|
|
7951
|
+
}
|
|
7952
|
+
}
|
|
7953
|
+
},
|
|
7954
|
+
"mutable": false,
|
|
7955
|
+
"attr": "theme",
|
|
7956
|
+
"reflectToAttr": false,
|
|
7957
|
+
"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.",
|
|
7958
|
+
"docsTags": [],
|
|
7959
|
+
"default": "\"inherit\"",
|
|
7960
|
+
"values": [
|
|
7961
|
+
{
|
|
7962
|
+
"value": "dark",
|
|
7963
|
+
"type": "string"
|
|
7964
|
+
},
|
|
7965
|
+
{
|
|
7966
|
+
"value": "inherit",
|
|
7967
|
+
"type": "string"
|
|
7968
|
+
},
|
|
7969
|
+
{
|
|
7970
|
+
"value": "light",
|
|
7971
|
+
"type": "string"
|
|
7972
|
+
}
|
|
7973
|
+
],
|
|
7974
|
+
"optional": false,
|
|
7975
|
+
"required": false,
|
|
7976
|
+
"getter": false,
|
|
7977
|
+
"setter": false
|
|
7931
7978
|
}
|
|
7932
7979
|
],
|
|
7933
7980
|
"methods": [],
|
|
@@ -20422,15 +20469,16 @@
|
|
|
20422
20469
|
},
|
|
20423
20470
|
{
|
|
20424
20471
|
"event": "icKeydown",
|
|
20425
|
-
"detail": "
|
|
20472
|
+
"detail": "IcTextFieldKeydownEventDetail",
|
|
20426
20473
|
"bubbles": true,
|
|
20427
20474
|
"complexType": {
|
|
20428
|
-
"original": "
|
|
20429
|
-
"resolved": "
|
|
20475
|
+
"original": "IcTextFieldKeydownEventDetail",
|
|
20476
|
+
"resolved": "IcTextFieldKeydownEventDetail",
|
|
20430
20477
|
"references": {
|
|
20431
|
-
"
|
|
20432
|
-
"location": "
|
|
20433
|
-
"
|
|
20478
|
+
"IcTextFieldKeydownEventDetail": {
|
|
20479
|
+
"location": "import",
|
|
20480
|
+
"path": "./ic-text-field.types",
|
|
20481
|
+
"id": "src/components/ic-text-field/ic-text-field.types.ts::IcTextFieldKeydownEventDetail"
|
|
20434
20482
|
}
|
|
20435
20483
|
}
|
|
20436
20484
|
},
|
|
@@ -23289,6 +23337,11 @@
|
|
|
23289
23337
|
"docstring": "",
|
|
23290
23338
|
"path": "src/components/ic-tooltip/ic-tooltip.types.ts"
|
|
23291
23339
|
},
|
|
23340
|
+
"src/utils/types.ts::IcTypographyVariants": {
|
|
23341
|
+
"declaration": "export type IcTypographyVariants =\n | \"h1\"\n | \"h2\"\n | \"h3\"\n | \"h4\"\n | \"subtitle-large\"\n | \"subtitle-small\"\n | \"body\"\n | \"label\"\n | \"label-uppercase\"\n | \"caption\"\n | \"caption-uppercase\"\n | \"code-large\"\n | \"code-small\"\n | \"code-extra-small\"\n | \"badge\"\n | \"badge-small\";",
|
|
23342
|
+
"docstring": "",
|
|
23343
|
+
"path": "src/utils/types.ts"
|
|
23344
|
+
},
|
|
23292
23345
|
"src/utils/types.ts::IcAdditionalFieldTypes": {
|
|
23293
23346
|
"declaration": "export type IcAdditionalFieldTypes = \"static\" | \"dynamic\";",
|
|
23294
23347
|
"docstring": "",
|
|
@@ -23349,6 +23402,11 @@
|
|
|
23349
23402
|
"docstring": "",
|
|
23350
23403
|
"path": "src/utils/types.ts"
|
|
23351
23404
|
},
|
|
23405
|
+
"src/components/ic-text-field/ic-text-field.types.ts::IcTextFieldKeydownEventDetail": {
|
|
23406
|
+
"declaration": "export interface IcTextFieldKeydownEventDetail {\n event: KeyboardEvent;\n cursorPosition: number;\n selectionEnd: number;\n}",
|
|
23407
|
+
"docstring": "",
|
|
23408
|
+
"path": "src/components/ic-text-field/ic-text-field.types.ts"
|
|
23409
|
+
},
|
|
23352
23410
|
"src/components/ic-search-bar/ic-search-bar.types.ts::IcSearchBarSearchModes": {
|
|
23353
23411
|
"declaration": "export type IcSearchBarSearchModes = \"navigation\" | \"query\";",
|
|
23354
23412
|
"docstring": "",
|
|
@@ -23414,11 +23472,6 @@
|
|
|
23414
23472
|
"docstring": "",
|
|
23415
23473
|
"path": "src/components/ic-divider/ic-divider.types.tsx"
|
|
23416
23474
|
},
|
|
23417
|
-
"src/utils/types.ts::IcTypographyVariants": {
|
|
23418
|
-
"declaration": "export type IcTypographyVariants =\n | \"h1\"\n | \"h2\"\n | \"h3\"\n | \"h4\"\n | \"subtitle-large\"\n | \"subtitle-small\"\n | \"body\"\n | \"label\"\n | \"label-uppercase\"\n | \"caption\"\n | \"caption-uppercase\"\n | \"code-large\"\n | \"code-small\"\n | \"code-extra-small\"\n | \"badge\"\n | \"badge-small\";",
|
|
23419
|
-
"docstring": "",
|
|
23420
|
-
"path": "src/utils/types.ts"
|
|
23421
|
-
},
|
|
23422
23475
|
"src/components/ic-empty-state/ic-empty-state.types.ts::IcEmptyStateAlignment": {
|
|
23423
23476
|
"declaration": "export type IcEmptyStateAlignment = \"left\" | \"center\" | \"right\";",
|
|
23424
23477
|
"docstring": "",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"author": "mi6",
|
|
3
3
|
"name": "@ukic/docs",
|
|
4
|
-
"version": "3.4.
|
|
4
|
+
"version": "3.4.5",
|
|
5
5
|
"description": "API documentation for @ukic 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": "055d3ec189bdc7b19e08762df4a74905043b5ea3"
|
|
23
23
|
}
|