@ionic/docs 8.8.4-dev.11776184632.103b8351 → 8.8.4-dev.11776186452.1cc0af05
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/core.json +5 -5
- package/package.json +1 -1
package/core.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"timestamp": "2026-04-
|
|
2
|
+
"timestamp": "2026-04-14T17:09:53",
|
|
3
3
|
"compiler": {
|
|
4
4
|
"name": "@stencil/core",
|
|
5
5
|
"version": "4.43.0",
|
|
@@ -46214,7 +46214,7 @@
|
|
|
46214
46214
|
"path": "src/interface.d.ts"
|
|
46215
46215
|
},
|
|
46216
46216
|
"src/components/action-sheet/action-sheet-interface.ts::ActionSheetButton": {
|
|
46217
|
-
"declaration": "export interface ActionSheetButton<T = any> {\n text?: string
|
|
46217
|
+
"declaration": "export interface ActionSheetButton<T = any> {\n text?: string;\n role?: LiteralUnion<'cancel' | 'destructive' | 'selected', string>;\n icon?: string;\n cssClass?: string | string[];\n id?: string;\n htmlAttributes?: { [key: string]: any };\n handler?: () => boolean | void | Promise<boolean | void>;\n data?: T;\n /**\n * When `disabled` is `true` the action\n * sheet button will not be interactive. Note\n * that buttons with a 'cancel' role cannot\n * be disabled as that would make it difficult for\n * users to dismiss the action sheet.\n */\n disabled?: boolean;\n}",
|
|
46218
46218
|
"docstring": "",
|
|
46219
46219
|
"path": "src/components/action-sheet/action-sheet-interface.ts"
|
|
46220
46220
|
},
|
|
@@ -46234,7 +46234,7 @@
|
|
|
46234
46234
|
"path": "src/components/alert/alert-interface.ts"
|
|
46235
46235
|
},
|
|
46236
46236
|
"src/components/alert/alert-interface.ts::AlertInput": {
|
|
46237
|
-
"declaration": "export interface AlertInput {\n type?: TextFieldTypes | 'checkbox' | 'radio' | 'textarea';\n name?: string;\n placeholder?: string;\n value?: any; // TODO(FW-2832): type\n /**\n * The label text to display next to the input, if the input type is `radio` or `checkbox`.\n */\n label?: string
|
|
46237
|
+
"declaration": "export interface AlertInput {\n type?: TextFieldTypes | 'checkbox' | 'radio' | 'textarea';\n name?: string;\n placeholder?: string;\n value?: any; // TODO(FW-2832): type\n /**\n * The label text to display next to the input, if the input type is `radio` or `checkbox`.\n */\n label?: string;\n checked?: boolean;\n disabled?: boolean;\n id?: string;\n handler?: (input: AlertInput) => void;\n min?: string | number;\n max?: string | number;\n cssClass?: string | string[];\n attributes?: { [key: string]: any };\n tabindex?: number;\n}",
|
|
46238
46238
|
"docstring": "",
|
|
46239
46239
|
"path": "src/components/alert/alert-interface.ts"
|
|
46240
46240
|
},
|
|
@@ -46599,12 +46599,12 @@
|
|
|
46599
46599
|
"path": "src/components/select/select-interface.ts"
|
|
46600
46600
|
},
|
|
46601
46601
|
"src/components/select-modal/select-modal-interface.ts::SelectModalOption": {
|
|
46602
|
-
"declaration": "export interface SelectModalOption {\n text: string
|
|
46602
|
+
"declaration": "export interface SelectModalOption {\n text: string;\n value: string;\n disabled: boolean;\n checked: boolean;\n cssClass?: string | string[];\n handler?: (value: any) => boolean | void | { [key: string]: any };\n}",
|
|
46603
46603
|
"docstring": "",
|
|
46604
46604
|
"path": "src/components/select-modal/select-modal-interface.ts"
|
|
46605
46605
|
},
|
|
46606
46606
|
"src/components/select-popover/select-popover-interface.ts::SelectPopoverOption": {
|
|
46607
|
-
"declaration": "export interface SelectPopoverOption {\n text: string
|
|
46607
|
+
"declaration": "export interface SelectPopoverOption {\n text: string;\n value: string;\n disabled: boolean;\n checked: boolean;\n cssClass?: string | string[];\n handler?: (value: any) => boolean | void | { [key: string]: any };\n}",
|
|
46608
46608
|
"docstring": "",
|
|
46609
46609
|
"path": "src/components/select-popover/select-popover-interface.ts"
|
|
46610
46610
|
},
|