@ionic/react 7.6.7-dev.11706551083.17301493 → 7.6.7-dev.11706551842.118ce6e0
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/css/core.css +101 -34
- package/css/core.css.map +1 -1
- package/css/global.bundle.css +1 -1
- package/css/ionic.bundle.css +1 -1
- package/css/ionic.bundle.css.map +1 -1
- package/css/themes/dark.always.css +122 -0
- package/css/themes/dark.always.css.map +1 -0
- package/css/themes/dark.class.css +122 -0
- package/css/themes/dark.class.css.map +1 -0
- package/css/themes/dark.css +3 -0
- package/css/themes/dark.css.map +1 -0
- package/css/themes/dark.system.css +124 -0
- package/css/themes/dark.system.css.map +1 -0
- package/css/typography.css +1 -1
- package/dist/index.js +94 -120
- package/dist/index.js.map +1 -1
- package/dist/types/components/IonPickerLegacy.d.ts +3 -0
- package/dist/types/components/index.d.ts +1 -1
- package/dist/types/components/proxies.d.ts +3 -0
- package/dist/types/hooks/useIonPicker.d.ts +1 -0
- package/package.json +2 -2
- package/dist/types/components/IonPicker.d.ts +0 -3
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
@media (prefers-color-scheme: dark) {
|
|
2
|
+
:root {
|
|
3
|
+
--ion-color-primary: #4d8dff;
|
|
4
|
+
--ion-color-primary-rgb: 77, 141, 255;
|
|
5
|
+
--ion-color-primary-contrast: #000000;
|
|
6
|
+
--ion-color-primary-contrast-rgb: 0, 0, 0;
|
|
7
|
+
--ion-color-primary-shade: #447ce0;
|
|
8
|
+
--ion-color-primary-tint: #5f98ff;
|
|
9
|
+
--ion-color-secondary: #62bdff;
|
|
10
|
+
--ion-color-secondary-rgb: 98, 189, 255;
|
|
11
|
+
--ion-color-secondary-contrast: #000000;
|
|
12
|
+
--ion-color-secondary-contrast-rgb: 0, 0, 0;
|
|
13
|
+
--ion-color-secondary-shade: #56a6e0;
|
|
14
|
+
--ion-color-secondary-tint: #72c4ff;
|
|
15
|
+
--ion-color-tertiary: #8482fb;
|
|
16
|
+
--ion-color-tertiary-rgb: 132, 130, 251;
|
|
17
|
+
--ion-color-tertiary-contrast: #000000;
|
|
18
|
+
--ion-color-tertiary-contrast-rgb: 0, 0, 0;
|
|
19
|
+
--ion-color-tertiary-shade: #7472dd;
|
|
20
|
+
--ion-color-tertiary-tint: #908ffb;
|
|
21
|
+
--ion-color-success: #2dd55b;
|
|
22
|
+
--ion-color-success-rgb: 45, 213, 91;
|
|
23
|
+
--ion-color-success-contrast: #000000;
|
|
24
|
+
--ion-color-success-contrast-rgb: 0, 0, 0;
|
|
25
|
+
--ion-color-success-shade: #28bb50;
|
|
26
|
+
--ion-color-success-tint: #42d96b;
|
|
27
|
+
--ion-color-warning: #ffce31;
|
|
28
|
+
--ion-color-warning-rgb: 255, 206, 49;
|
|
29
|
+
--ion-color-warning-contrast: #000000;
|
|
30
|
+
--ion-color-warning-contrast-rgb: 0, 0, 0;
|
|
31
|
+
--ion-color-warning-shade: #e0b52b;
|
|
32
|
+
--ion-color-warning-tint: #ffd346;
|
|
33
|
+
--ion-color-danger: #f56570;
|
|
34
|
+
--ion-color-danger-rgb: 245, 101, 112;
|
|
35
|
+
--ion-color-danger-contrast: #000000;
|
|
36
|
+
--ion-color-danger-contrast-rgb: 0, 0, 0;
|
|
37
|
+
--ion-color-danger-shade: #d85963;
|
|
38
|
+
--ion-color-danger-tint: #f6747e;
|
|
39
|
+
--ion-color-dark: #f3f3f3;
|
|
40
|
+
--ion-color-dark-rgb: 243, 243, 243;
|
|
41
|
+
--ion-color-dark-contrast: #000000;
|
|
42
|
+
--ion-color-dark-contrast-rgb: 0, 0, 0;
|
|
43
|
+
--ion-color-dark-shade: #d6d6d6;
|
|
44
|
+
--ion-color-dark-tint: #f4f4f4;
|
|
45
|
+
--ion-color-medium: #959595;
|
|
46
|
+
--ion-color-medium-rgb: 149, 149, 149;
|
|
47
|
+
--ion-color-medium-contrast: #000000;
|
|
48
|
+
--ion-color-medium-contrast-rgb: 0, 0, 0;
|
|
49
|
+
--ion-color-medium-shade: #838383;
|
|
50
|
+
--ion-color-medium-tint: #a0a0a0;
|
|
51
|
+
--ion-color-light: #2f2f2f;
|
|
52
|
+
--ion-color-light-rgb: 47, 47, 47;
|
|
53
|
+
--ion-color-light-contrast: #ffffff;
|
|
54
|
+
--ion-color-light-contrast-rgb: 255, 255, 255;
|
|
55
|
+
--ion-color-light-shade: #292929;
|
|
56
|
+
--ion-color-light-tint: #444444;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
:root.ios {
|
|
60
|
+
--ion-background-color: #000000;
|
|
61
|
+
--ion-background-color-rgb: 0, 0, 0;
|
|
62
|
+
--ion-text-color: #ffffff;
|
|
63
|
+
--ion-text-color-rgb: 255, 255, 255;
|
|
64
|
+
--ion-color-step-50: #0d0d0d;
|
|
65
|
+
--ion-color-step-100: #1a1a1a;
|
|
66
|
+
--ion-color-step-150: #262626;
|
|
67
|
+
--ion-color-step-200: #333333;
|
|
68
|
+
--ion-color-step-250: #404040;
|
|
69
|
+
--ion-color-step-300: #4d4d4d;
|
|
70
|
+
--ion-color-step-350: #595959;
|
|
71
|
+
--ion-color-step-400: #666666;
|
|
72
|
+
--ion-color-step-450: #737373;
|
|
73
|
+
--ion-color-step-500: #808080;
|
|
74
|
+
--ion-color-step-550: #8c8c8c;
|
|
75
|
+
--ion-color-step-600: #999999;
|
|
76
|
+
--ion-color-step-650: #a6a6a6;
|
|
77
|
+
--ion-color-step-700: #b3b3b3;
|
|
78
|
+
--ion-color-step-750: #bfbfbf;
|
|
79
|
+
--ion-color-step-800: #cccccc;
|
|
80
|
+
--ion-color-step-850: #d9d9d9;
|
|
81
|
+
--ion-color-step-900: #e6e6e6;
|
|
82
|
+
--ion-color-step-950: #f2f2f2;
|
|
83
|
+
--ion-item-background: #000000;
|
|
84
|
+
--ion-card-background: #1c1c1d;
|
|
85
|
+
}
|
|
86
|
+
:root.ios ion-modal {
|
|
87
|
+
--ion-background-color: var(--ion-color-step-100);
|
|
88
|
+
--ion-toolbar-background: var(--ion-color-step-150);
|
|
89
|
+
--ion-toolbar-border-color: var(--ion-color-step-250);
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
:root.md {
|
|
93
|
+
--ion-background-color: #121212;
|
|
94
|
+
--ion-background-color-rgb: 18, 18, 18;
|
|
95
|
+
--ion-text-color: #ffffff;
|
|
96
|
+
--ion-text-color-rgb: 255, 255, 255;
|
|
97
|
+
--ion-border-color: #222222;
|
|
98
|
+
--ion-color-step-50: #1e1e1e;
|
|
99
|
+
--ion-color-step-100: #2a2a2a;
|
|
100
|
+
--ion-color-step-150: #363636;
|
|
101
|
+
--ion-color-step-200: #414141;
|
|
102
|
+
--ion-color-step-250: #4d4d4d;
|
|
103
|
+
--ion-color-step-300: #595959;
|
|
104
|
+
--ion-color-step-350: #656565;
|
|
105
|
+
--ion-color-step-400: #717171;
|
|
106
|
+
--ion-color-step-450: #7d7d7d;
|
|
107
|
+
--ion-color-step-500: #898989;
|
|
108
|
+
--ion-color-step-550: #949494;
|
|
109
|
+
--ion-color-step-600: #a0a0a0;
|
|
110
|
+
--ion-color-step-650: #acacac;
|
|
111
|
+
--ion-color-step-700: #b8b8b8;
|
|
112
|
+
--ion-color-step-750: #c4c4c4;
|
|
113
|
+
--ion-color-step-800: #d0d0d0;
|
|
114
|
+
--ion-color-step-850: #dbdbdb;
|
|
115
|
+
--ion-color-step-900: #e7e7e7;
|
|
116
|
+
--ion-color-step-950: #f3f3f3;
|
|
117
|
+
--ion-item-background: #1e1e1e;
|
|
118
|
+
--ion-toolbar-background: #1f1f1f;
|
|
119
|
+
--ion-tab-bar-background: #1f1f1f;
|
|
120
|
+
--ion-card-background: #1e1e1e;
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
/*# sourceMappingURL=dark.system.css.map */
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../../src/css/themes/dark.system.scss","../../src/css/themes/dark.scss"],"names":[],"mappings":"AAEA;ECDE;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;;EAKF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;;EAGF;IACE;IACA;IACA;;;EAKF;IACE;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA;IACA","file":"dark.system.css","sourcesContent":["@import \"./dark\";\n\n@media (prefers-color-scheme: dark) {\n :root {\n @include dark-base-theme();\n }\n\n :root.ios {\n @include dark-ios-theme();\n }\n\n :root.md {\n @include dark-md-theme();\n }\n}\n","@mixin dark-base-theme() {\n & {\n --ion-color-primary: #4d8dff;\n --ion-color-primary-rgb: 77, 141, 255;\n --ion-color-primary-contrast: #000000;\n --ion-color-primary-contrast-rgb: 0, 0, 0;\n --ion-color-primary-shade: #447ce0;\n --ion-color-primary-tint: #5f98ff;\n --ion-color-secondary: #62bdff;\n --ion-color-secondary-rgb: 98, 189, 255;\n --ion-color-secondary-contrast: #000000;\n --ion-color-secondary-contrast-rgb: 0, 0, 0;\n --ion-color-secondary-shade: #56a6e0;\n --ion-color-secondary-tint: #72c4ff;\n --ion-color-tertiary: #8482fb;\n --ion-color-tertiary-rgb: 132, 130, 251;\n --ion-color-tertiary-contrast: #000000;\n --ion-color-tertiary-contrast-rgb: 0, 0, 0;\n --ion-color-tertiary-shade: #7472dd;\n --ion-color-tertiary-tint: #908ffb;\n --ion-color-success: #2dd55b;\n --ion-color-success-rgb: 45, 213, 91;\n --ion-color-success-contrast: #000000;\n --ion-color-success-contrast-rgb: 0, 0, 0;\n --ion-color-success-shade: #28bb50;\n --ion-color-success-tint: #42d96b;\n --ion-color-warning: #ffce31;\n --ion-color-warning-rgb: 255, 206, 49;\n --ion-color-warning-contrast: #000000;\n --ion-color-warning-contrast-rgb: 0, 0, 0;\n --ion-color-warning-shade: #e0b52b;\n --ion-color-warning-tint: #ffd346;\n --ion-color-danger: #f56570;\n --ion-color-danger-rgb: 245, 101, 112;\n --ion-color-danger-contrast: #000000;\n --ion-color-danger-contrast-rgb: 0, 0, 0;\n --ion-color-danger-shade: #d85963;\n --ion-color-danger-tint: #f6747e;\n --ion-color-dark: #f3f3f3;\n --ion-color-dark-rgb: 243, 243, 243;\n --ion-color-dark-contrast: #000000;\n --ion-color-dark-contrast-rgb: 0, 0, 0;\n --ion-color-dark-shade: #d6d6d6;\n --ion-color-dark-tint: #f4f4f4;\n --ion-color-medium: #959595;\n --ion-color-medium-rgb: 149, 149, 149;\n --ion-color-medium-contrast: #000000;\n --ion-color-medium-contrast-rgb: 0, 0, 0;\n --ion-color-medium-shade: #838383;\n --ion-color-medium-tint: #a0a0a0;\n --ion-color-light: #2f2f2f;\n --ion-color-light-rgb: 47, 47, 47;\n --ion-color-light-contrast: #ffffff;\n --ion-color-light-contrast-rgb: 255, 255, 255;\n --ion-color-light-shade: #292929;\n --ion-color-light-tint: #444444;\n }\n}\n\n@mixin dark-ios-theme() {\n & {\n --ion-background-color: #000000;\n --ion-background-color-rgb: 0, 0, 0;\n --ion-text-color: #ffffff;\n --ion-text-color-rgb: 255, 255, 255;\n --ion-color-step-50: #0d0d0d;\n --ion-color-step-100: #1a1a1a;\n --ion-color-step-150: #262626;\n --ion-color-step-200: #333333;\n --ion-color-step-250: #404040;\n --ion-color-step-300: #4d4d4d;\n --ion-color-step-350: #595959;\n --ion-color-step-400: #666666;\n --ion-color-step-450: #737373;\n --ion-color-step-500: #808080;\n --ion-color-step-550: #8c8c8c;\n --ion-color-step-600: #999999;\n --ion-color-step-650: #a6a6a6;\n --ion-color-step-700: #b3b3b3;\n --ion-color-step-750: #bfbfbf;\n --ion-color-step-800: #cccccc;\n --ion-color-step-850: #d9d9d9;\n --ion-color-step-900: #e6e6e6;\n --ion-color-step-950: #f2f2f2;\n --ion-item-background: #000000;\n --ion-card-background: #1c1c1d;\n }\n\n & ion-modal {\n --ion-background-color: var(--ion-color-step-100);\n --ion-toolbar-background: var(--ion-color-step-150);\n --ion-toolbar-border-color: var(--ion-color-step-250);\n }\n}\n\n@mixin dark-md-theme() {\n & {\n --ion-background-color: #121212;\n --ion-background-color-rgb: 18, 18, 18;\n --ion-text-color: #ffffff;\n --ion-text-color-rgb: 255, 255, 255;\n --ion-border-color: #222222;\n --ion-color-step-50: #1e1e1e;\n --ion-color-step-100: #2a2a2a;\n --ion-color-step-150: #363636;\n --ion-color-step-200: #414141;\n --ion-color-step-250: #4d4d4d;\n --ion-color-step-300: #595959;\n --ion-color-step-350: #656565;\n --ion-color-step-400: #717171;\n --ion-color-step-450: #7d7d7d;\n --ion-color-step-500: #898989;\n --ion-color-step-550: #949494;\n --ion-color-step-600: #a0a0a0;\n --ion-color-step-650: #acacac;\n --ion-color-step-700: #b8b8b8;\n --ion-color-step-750: #c4c4c4;\n --ion-color-step-800: #d0d0d0;\n --ion-color-step-850: #dbdbdb;\n --ion-color-step-900: #e7e7e7;\n --ion-color-step-950: #f3f3f3;\n --ion-item-background: #1e1e1e;\n --ion-toolbar-background: #1f1f1f;\n --ion-tab-bar-background: #1f1f1f;\n --ion-card-background: #1e1e1e;\n }\n}\n"]}
|
package/css/typography.css
CHANGED
package/dist/index.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import React, { useContext, useRef, useEffect, createElement, useState, useMemo, Fragment, useCallback } from 'react';
|
|
2
2
|
import { isPlatform as isPlatform$1, getPlatforms as getPlatforms$1, componentOnReady, createAnimation, actionSheetController, alertController, toastController, modalController, popoverController, pickerController, loadingController, initialize } from '@ionic/core/components';
|
|
3
3
|
export { IonicSafeString, IonicSlides, createAnimation, createGesture, getIonPageElement, getTimeGivenProgression, iosTransitionAnimation, mdTransitionAnimation, openURL } from '@ionic/core/components';
|
|
4
|
+
import { __rest } from 'tslib';
|
|
4
5
|
import ReactDOM, { createPortal } from 'react-dom';
|
|
5
6
|
import { defineCustomElement as defineCustomElement$1 } from '@ionic/core/components/ion-accordion.js';
|
|
6
7
|
import { defineCustomElement as defineCustomElement$2 } from '@ionic/core/components/ion-accordion-group.js';
|
|
@@ -38,34 +39,37 @@ import { defineCustomElement as defineCustomElement$x } from '@ionic/core/compon
|
|
|
38
39
|
import { defineCustomElement as defineCustomElement$y } from '@ionic/core/components/ion-menu.js';
|
|
39
40
|
import { defineCustomElement as defineCustomElement$z } from '@ionic/core/components/ion-menu-button.js';
|
|
40
41
|
import { defineCustomElement as defineCustomElement$A } from '@ionic/core/components/ion-menu-toggle.js';
|
|
41
|
-
import { defineCustomElement as defineCustomElement$
|
|
42
|
+
import { defineCustomElement as defineCustomElement$1g } from '@ionic/core/components/ion-nav.js';
|
|
42
43
|
import { defineCustomElement as defineCustomElement$B } from '@ionic/core/components/ion-nav-link.js';
|
|
43
44
|
import { defineCustomElement as defineCustomElement$C } from '@ionic/core/components/ion-note.js';
|
|
44
|
-
import { defineCustomElement as defineCustomElement$D } from '@ionic/core/components/ion-
|
|
45
|
-
import { defineCustomElement as defineCustomElement$E } from '@ionic/core/components/ion-
|
|
46
|
-
import { defineCustomElement as defineCustomElement$F } from '@ionic/core/components/ion-
|
|
47
|
-
import { defineCustomElement as defineCustomElement$G } from '@ionic/core/components/ion-
|
|
48
|
-
import { defineCustomElement as defineCustomElement$H } from '@ionic/core/components/ion-
|
|
49
|
-
import { defineCustomElement as defineCustomElement$I } from '@ionic/core/components/ion-
|
|
50
|
-
import { defineCustomElement as defineCustomElement$J } from '@ionic/core/components/ion-
|
|
51
|
-
import { defineCustomElement as defineCustomElement$K } from '@ionic/core/components/ion-
|
|
52
|
-
import { defineCustomElement as defineCustomElement$L } from '@ionic/core/components/ion-
|
|
53
|
-
import { defineCustomElement as defineCustomElement$M } from '@ionic/core/components/ion-
|
|
54
|
-
import { defineCustomElement as defineCustomElement$N } from '@ionic/core/components/ion-
|
|
55
|
-
import { defineCustomElement as defineCustomElement$O } from '@ionic/core/components/ion-
|
|
56
|
-
import { defineCustomElement as defineCustomElement$P } from '@ionic/core/components/ion-
|
|
57
|
-
import { defineCustomElement as defineCustomElement$Q } from '@ionic/core/components/ion-
|
|
58
|
-
import { defineCustomElement as defineCustomElement$R } from '@ionic/core/components/ion-
|
|
59
|
-
import { defineCustomElement as defineCustomElement$S } from '@ionic/core/components/ion-
|
|
60
|
-
import { defineCustomElement as defineCustomElement$T } from '@ionic/core/components/ion-
|
|
61
|
-
import { defineCustomElement as defineCustomElement$U } from '@ionic/core/components/ion-
|
|
62
|
-
import { defineCustomElement as defineCustomElement$V } from '@ionic/core/components/ion-
|
|
63
|
-
import { defineCustomElement as defineCustomElement$W } from '@ionic/core/components/ion-
|
|
64
|
-
import { defineCustomElement as defineCustomElement$X } from '@ionic/core/components/ion-
|
|
65
|
-
import { defineCustomElement as defineCustomElement$Y } from '@ionic/core/components/ion-
|
|
66
|
-
import { defineCustomElement as defineCustomElement$Z } from '@ionic/core/components/ion-
|
|
67
|
-
import { defineCustomElement as defineCustomElement$_ } from '@ionic/core/components/ion-
|
|
68
|
-
import { defineCustomElement as defineCustomElement$$ } from '@ionic/core/components/ion-
|
|
45
|
+
import { defineCustomElement as defineCustomElement$D } from '@ionic/core/components/ion-picker.js';
|
|
46
|
+
import { defineCustomElement as defineCustomElement$E } from '@ionic/core/components/ion-picker-column.js';
|
|
47
|
+
import { defineCustomElement as defineCustomElement$F } from '@ionic/core/components/ion-picker-column-option.js';
|
|
48
|
+
import { defineCustomElement as defineCustomElement$G } from '@ionic/core/components/ion-progress-bar.js';
|
|
49
|
+
import { defineCustomElement as defineCustomElement$H } from '@ionic/core/components/ion-radio.js';
|
|
50
|
+
import { defineCustomElement as defineCustomElement$I } from '@ionic/core/components/ion-radio-group.js';
|
|
51
|
+
import { defineCustomElement as defineCustomElement$J } from '@ionic/core/components/ion-range.js';
|
|
52
|
+
import { defineCustomElement as defineCustomElement$K } from '@ionic/core/components/ion-refresher.js';
|
|
53
|
+
import { defineCustomElement as defineCustomElement$L } from '@ionic/core/components/ion-refresher-content.js';
|
|
54
|
+
import { defineCustomElement as defineCustomElement$M } from '@ionic/core/components/ion-reorder.js';
|
|
55
|
+
import { defineCustomElement as defineCustomElement$N } from '@ionic/core/components/ion-reorder-group.js';
|
|
56
|
+
import { defineCustomElement as defineCustomElement$O } from '@ionic/core/components/ion-ripple-effect.js';
|
|
57
|
+
import { defineCustomElement as defineCustomElement$P } from '@ionic/core/components/ion-row.js';
|
|
58
|
+
import { defineCustomElement as defineCustomElement$Q } from '@ionic/core/components/ion-searchbar.js';
|
|
59
|
+
import { defineCustomElement as defineCustomElement$R } from '@ionic/core/components/ion-segment.js';
|
|
60
|
+
import { defineCustomElement as defineCustomElement$S } from '@ionic/core/components/ion-segment-button.js';
|
|
61
|
+
import { defineCustomElement as defineCustomElement$T } from '@ionic/core/components/ion-select.js';
|
|
62
|
+
import { defineCustomElement as defineCustomElement$U } from '@ionic/core/components/ion-select-option.js';
|
|
63
|
+
import { defineCustomElement as defineCustomElement$V } from '@ionic/core/components/ion-skeleton-text.js';
|
|
64
|
+
import { defineCustomElement as defineCustomElement$W } from '@ionic/core/components/ion-spinner.js';
|
|
65
|
+
import { defineCustomElement as defineCustomElement$X } from '@ionic/core/components/ion-split-pane.js';
|
|
66
|
+
import { defineCustomElement as defineCustomElement$Y } from '@ionic/core/components/ion-tab.js';
|
|
67
|
+
import { defineCustomElement as defineCustomElement$Z } from '@ionic/core/components/ion-text.js';
|
|
68
|
+
import { defineCustomElement as defineCustomElement$_ } from '@ionic/core/components/ion-textarea.js';
|
|
69
|
+
import { defineCustomElement as defineCustomElement$$ } from '@ionic/core/components/ion-thumbnail.js';
|
|
70
|
+
import { defineCustomElement as defineCustomElement$10 } from '@ionic/core/components/ion-title.js';
|
|
71
|
+
import { defineCustomElement as defineCustomElement$11 } from '@ionic/core/components/ion-toggle.js';
|
|
72
|
+
import { defineCustomElement as defineCustomElement$12 } from '@ionic/core/components/ion-toolbar.js';
|
|
69
73
|
import { IonBreadcrumb as IonBreadcrumb$1 } from '@ionic/core/components/ion-breadcrumb.js';
|
|
70
74
|
import { IonButton as IonButton$1 } from '@ionic/core/components/ion-button.js';
|
|
71
75
|
import { IonCard as IonCard$1 } from '@ionic/core/components/ion-card.js';
|
|
@@ -73,19 +77,19 @@ import { IonFabButton as IonFabButton$1 } from '@ionic/core/components/ion-fab-b
|
|
|
73
77
|
import { IonItemOption as IonItemOption$1 } from '@ionic/core/components/ion-item-option.js';
|
|
74
78
|
import { IonItem as IonItem$1 } from '@ionic/core/components/ion-item.js';
|
|
75
79
|
import { IonRouterLink as IonRouterLink$1 } from '@ionic/core/components/ion-router-link.js';
|
|
76
|
-
import { defineCustomElement as defineCustomElement$
|
|
77
|
-
import { defineCustomElement as defineCustomElement$
|
|
78
|
-
import { defineCustomElement as defineCustomElement$
|
|
79
|
-
import { defineCustomElement as defineCustomElement$
|
|
80
|
-
import { defineCustomElement as defineCustomElement$
|
|
81
|
-
import { defineCustomElement as defineCustomElement$
|
|
82
|
-
import { defineCustomElement as defineCustomElement$
|
|
83
|
-
import { defineCustomElement as defineCustomElement$
|
|
84
|
-
import { defineCustomElement as defineCustomElement$
|
|
85
|
-
import { defineCustomElement as defineCustomElement$
|
|
86
|
-
import { defineCustomElement as defineCustomElement$
|
|
87
|
-
import { defineCustomElement as defineCustomElement$
|
|
88
|
-
import { defineCustomElement as defineCustomElement$
|
|
80
|
+
import { defineCustomElement as defineCustomElement$13 } from '@ionic/core/components/ion-alert.js';
|
|
81
|
+
import { defineCustomElement as defineCustomElement$14 } from '@ionic/core/components/ion-loading.js';
|
|
82
|
+
import { defineCustomElement as defineCustomElement$15 } from '@ionic/core/components/ion-toast.js';
|
|
83
|
+
import { defineCustomElement as defineCustomElement$16 } from '@ionic/core/components/ion-picker-legacy.js';
|
|
84
|
+
import { defineCustomElement as defineCustomElement$17 } from '@ionic/core/components/ion-action-sheet.js';
|
|
85
|
+
import { defineCustomElement as defineCustomElement$18 } from '@ionic/core/components/ion-modal.js';
|
|
86
|
+
import { defineCustomElement as defineCustomElement$19 } from '@ionic/core/components/ion-popover.js';
|
|
87
|
+
import { defineCustomElement as defineCustomElement$1f } from '@ionic/core/components/ion-app.js';
|
|
88
|
+
import { defineCustomElement as defineCustomElement$1e } from '@ionic/core/components/ion-back-button.js';
|
|
89
|
+
import { defineCustomElement as defineCustomElement$1b } from '@ionic/core/components/ion-router-outlet.js';
|
|
90
|
+
import { defineCustomElement as defineCustomElement$1a } from '@ionic/core/components/ion-tab-bar.js';
|
|
91
|
+
import { defineCustomElement as defineCustomElement$1d } from '@ionic/core/components/ion-tab-button.js';
|
|
92
|
+
import { defineCustomElement as defineCustomElement$1c } from 'ionicons/components/ion-icon.js';
|
|
89
93
|
|
|
90
94
|
const IonLifeCycleContext = /*@__PURE__*/ React.createContext({
|
|
91
95
|
onIonViewWillEnter: () => {
|
|
@@ -404,40 +408,6 @@ const NavContext = /*@__PURE__*/ React.createContext({
|
|
|
404
408
|
},
|
|
405
409
|
});
|
|
406
410
|
|
|
407
|
-
/******************************************************************************
|
|
408
|
-
Copyright (c) Microsoft Corporation.
|
|
409
|
-
|
|
410
|
-
Permission to use, copy, modify, and/or distribute this software for any
|
|
411
|
-
purpose with or without fee is hereby granted.
|
|
412
|
-
|
|
413
|
-
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
414
|
-
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
415
|
-
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
416
|
-
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
417
|
-
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
418
|
-
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
419
|
-
PERFORMANCE OF THIS SOFTWARE.
|
|
420
|
-
***************************************************************************** */
|
|
421
|
-
/* global Reflect, Promise, SuppressedError, Symbol */
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
function __rest(s, e) {
|
|
425
|
-
var t = {};
|
|
426
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
427
|
-
t[p] = s[p];
|
|
428
|
-
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
429
|
-
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
430
|
-
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
431
|
-
t[p[i]] = s[p[i]];
|
|
432
|
-
}
|
|
433
|
-
return t;
|
|
434
|
-
}
|
|
435
|
-
|
|
436
|
-
typeof SuppressedError === "function" ? SuppressedError : function (error, suppressed, message) {
|
|
437
|
-
var e = new Error(message);
|
|
438
|
-
return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
|
|
439
|
-
};
|
|
440
|
-
|
|
441
411
|
const dashToPascalCase = (str) => str
|
|
442
412
|
.toLowerCase()
|
|
443
413
|
.split('-')
|
|
@@ -684,31 +654,34 @@ const IonMenuButton = /*@__PURE__*/ createReactComponent('ion-menu-button', unde
|
|
|
684
654
|
const IonMenuToggle = /*@__PURE__*/ createReactComponent('ion-menu-toggle', undefined, undefined, defineCustomElement$A);
|
|
685
655
|
const IonNavLink = /*@__PURE__*/ createReactComponent('ion-nav-link', undefined, undefined, defineCustomElement$B);
|
|
686
656
|
const IonNote = /*@__PURE__*/ createReactComponent('ion-note', undefined, undefined, defineCustomElement$C);
|
|
687
|
-
const
|
|
688
|
-
const
|
|
689
|
-
const
|
|
690
|
-
const
|
|
691
|
-
const
|
|
692
|
-
const
|
|
693
|
-
const
|
|
694
|
-
const
|
|
695
|
-
const
|
|
696
|
-
const
|
|
697
|
-
const
|
|
698
|
-
const
|
|
699
|
-
const
|
|
700
|
-
const
|
|
701
|
-
const
|
|
702
|
-
const
|
|
703
|
-
const
|
|
704
|
-
const
|
|
705
|
-
const
|
|
706
|
-
const
|
|
707
|
-
const
|
|
708
|
-
const
|
|
709
|
-
const
|
|
710
|
-
const
|
|
711
|
-
const
|
|
657
|
+
const IonPicker = /*@__PURE__*/ createReactComponent('ion-picker', undefined, undefined, defineCustomElement$D);
|
|
658
|
+
const IonPickerColumn = /*@__PURE__*/ createReactComponent('ion-picker-column', undefined, undefined, defineCustomElement$E);
|
|
659
|
+
const IonPickerColumnOption = /*@__PURE__*/ createReactComponent('ion-picker-column-option', undefined, undefined, defineCustomElement$F);
|
|
660
|
+
const IonProgressBar = /*@__PURE__*/ createReactComponent('ion-progress-bar', undefined, undefined, defineCustomElement$G);
|
|
661
|
+
const IonRadio = /*@__PURE__*/ createReactComponent('ion-radio', undefined, undefined, defineCustomElement$H);
|
|
662
|
+
const IonRadioGroup = /*@__PURE__*/ createReactComponent('ion-radio-group', undefined, undefined, defineCustomElement$I);
|
|
663
|
+
const IonRange = /*@__PURE__*/ createReactComponent('ion-range', undefined, undefined, defineCustomElement$J);
|
|
664
|
+
const IonRefresher = /*@__PURE__*/ createReactComponent('ion-refresher', undefined, undefined, defineCustomElement$K);
|
|
665
|
+
const IonRefresherContent = /*@__PURE__*/ createReactComponent('ion-refresher-content', undefined, undefined, defineCustomElement$L);
|
|
666
|
+
const IonReorder = /*@__PURE__*/ createReactComponent('ion-reorder', undefined, undefined, defineCustomElement$M);
|
|
667
|
+
const IonReorderGroup = /*@__PURE__*/ createReactComponent('ion-reorder-group', undefined, undefined, defineCustomElement$N);
|
|
668
|
+
const IonRippleEffect = /*@__PURE__*/ createReactComponent('ion-ripple-effect', undefined, undefined, defineCustomElement$O);
|
|
669
|
+
const IonRow = /*@__PURE__*/ createReactComponent('ion-row', undefined, undefined, defineCustomElement$P);
|
|
670
|
+
const IonSearchbar = /*@__PURE__*/ createReactComponent('ion-searchbar', undefined, undefined, defineCustomElement$Q);
|
|
671
|
+
const IonSegment = /*@__PURE__*/ createReactComponent('ion-segment', undefined, undefined, defineCustomElement$R);
|
|
672
|
+
const IonSegmentButton = /*@__PURE__*/ createReactComponent('ion-segment-button', undefined, undefined, defineCustomElement$S);
|
|
673
|
+
const IonSelect = /*@__PURE__*/ createReactComponent('ion-select', undefined, undefined, defineCustomElement$T);
|
|
674
|
+
const IonSelectOption = /*@__PURE__*/ createReactComponent('ion-select-option', undefined, undefined, defineCustomElement$U);
|
|
675
|
+
const IonSkeletonText = /*@__PURE__*/ createReactComponent('ion-skeleton-text', undefined, undefined, defineCustomElement$V);
|
|
676
|
+
const IonSpinner = /*@__PURE__*/ createReactComponent('ion-spinner', undefined, undefined, defineCustomElement$W);
|
|
677
|
+
const IonSplitPane = /*@__PURE__*/ createReactComponent('ion-split-pane', undefined, undefined, defineCustomElement$X);
|
|
678
|
+
const IonTab = /*@__PURE__*/ createReactComponent('ion-tab', undefined, undefined, defineCustomElement$Y);
|
|
679
|
+
const IonText = /*@__PURE__*/ createReactComponent('ion-text', undefined, undefined, defineCustomElement$Z);
|
|
680
|
+
const IonTextarea = /*@__PURE__*/ createReactComponent('ion-textarea', undefined, undefined, defineCustomElement$_);
|
|
681
|
+
const IonThumbnail = /*@__PURE__*/ createReactComponent('ion-thumbnail', undefined, undefined, defineCustomElement$$);
|
|
682
|
+
const IonTitle = /*@__PURE__*/ createReactComponent('ion-title', undefined, undefined, defineCustomElement$10);
|
|
683
|
+
const IonToggle = /*@__PURE__*/ createReactComponent('ion-toggle', undefined, undefined, defineCustomElement$11);
|
|
684
|
+
const IonToolbar = /*@__PURE__*/ createReactComponent('ion-toolbar', undefined, undefined, defineCustomElement$12);
|
|
712
685
|
|
|
713
686
|
const createForwardRef = (ReactComponent, // TODO(FW-2959): type
|
|
714
687
|
displayName) => {
|
|
@@ -993,19 +966,19 @@ const createInlineOverlayComponent = (tagName, defineCustomElement, hasDelegateH
|
|
|
993
966
|
};
|
|
994
967
|
const DELEGATE_HOST = 'ion-delegate-host';
|
|
995
968
|
|
|
996
|
-
const IonAlert = /*@__PURE__*/ createInlineOverlayComponent('ion-alert', defineCustomElement$
|
|
969
|
+
const IonAlert = /*@__PURE__*/ createInlineOverlayComponent('ion-alert', defineCustomElement$13);
|
|
997
970
|
|
|
998
|
-
const IonLoading = /*@__PURE__*/ createInlineOverlayComponent('ion-loading', defineCustomElement$
|
|
971
|
+
const IonLoading = /*@__PURE__*/ createInlineOverlayComponent('ion-loading', defineCustomElement$14);
|
|
999
972
|
|
|
1000
|
-
const IonToast = /*@__PURE__*/ createInlineOverlayComponent('ion-toast', defineCustomElement$
|
|
973
|
+
const IonToast = /*@__PURE__*/ createInlineOverlayComponent('ion-toast', defineCustomElement$15);
|
|
1001
974
|
|
|
1002
|
-
const
|
|
975
|
+
const IonPickerLegacy = /*@__PURE__*/ createInlineOverlayComponent('ion-picker-legacy', defineCustomElement$16);
|
|
1003
976
|
|
|
1004
|
-
const IonActionSheet = /*@__PURE__*/ createInlineOverlayComponent('ion-action-sheet', defineCustomElement$
|
|
977
|
+
const IonActionSheet = /*@__PURE__*/ createInlineOverlayComponent('ion-action-sheet', defineCustomElement$17);
|
|
1005
978
|
|
|
1006
|
-
const IonModal = /*@__PURE__*/ createInlineOverlayComponent('ion-modal', defineCustomElement$
|
|
979
|
+
const IonModal = /*@__PURE__*/ createInlineOverlayComponent('ion-modal', defineCustomElement$18, true);
|
|
1007
980
|
|
|
1008
|
-
const IonPopover = /*@__PURE__*/ createInlineOverlayComponent('ion-popover', defineCustomElement$
|
|
981
|
+
const IonPopover = /*@__PURE__*/ createInlineOverlayComponent('ion-popover', defineCustomElement$19);
|
|
1009
982
|
|
|
1010
983
|
const IonContext = React.createContext({
|
|
1011
984
|
addOverlay: () => {
|
|
@@ -1097,13 +1070,13 @@ const IonOverlayManager = ({ onAddOverlay, onRemoveOverlay }) => {
|
|
|
1097
1070
|
})));
|
|
1098
1071
|
};
|
|
1099
1072
|
|
|
1100
|
-
const IonTabButtonInner = /*@__PURE__*/ createReactComponent('ion-tab-button', undefined, undefined, defineCustomElement$
|
|
1101
|
-
const IonTabBarInner = /*@__PURE__*/ createReactComponent('ion-tab-bar', undefined, undefined, defineCustomElement$
|
|
1102
|
-
const IonBackButtonInner = /*@__PURE__*/ createReactComponent('ion-back-button', undefined, undefined, defineCustomElement$
|
|
1103
|
-
const IonRouterOutletInner = /*@__PURE__*/ createReactComponent('ion-router-outlet', undefined, undefined, defineCustomElement$
|
|
1104
|
-
const IonAppInner = /*@__PURE__*/ createReactComponent('ion-app', undefined, undefined, defineCustomElement$
|
|
1073
|
+
const IonTabButtonInner = /*@__PURE__*/ createReactComponent('ion-tab-button', undefined, undefined, defineCustomElement$1d);
|
|
1074
|
+
const IonTabBarInner = /*@__PURE__*/ createReactComponent('ion-tab-bar', undefined, undefined, defineCustomElement$1a);
|
|
1075
|
+
const IonBackButtonInner = /*@__PURE__*/ createReactComponent('ion-back-button', undefined, undefined, defineCustomElement$1e);
|
|
1076
|
+
const IonRouterOutletInner = /*@__PURE__*/ createReactComponent('ion-router-outlet', undefined, undefined, defineCustomElement$1b);
|
|
1077
|
+
const IonAppInner = /*@__PURE__*/ createReactComponent('ion-app', undefined, undefined, defineCustomElement$1f);
|
|
1105
1078
|
// ionicons
|
|
1106
|
-
const IonIconInner = /*@__PURE__*/ createReactComponent('ion-icon', undefined, undefined, defineCustomElement$
|
|
1079
|
+
const IonIconInner = /*@__PURE__*/ createReactComponent('ion-icon', undefined, undefined, defineCustomElement$1c);
|
|
1107
1080
|
|
|
1108
1081
|
const IonApp = /*@__PURE__*/ (() => class extends React.Component {
|
|
1109
1082
|
constructor(props) {
|
|
@@ -1258,7 +1231,7 @@ const ReactDelegate = (addView, removeView) => {
|
|
|
1258
1231
|
};
|
|
1259
1232
|
};
|
|
1260
1233
|
|
|
1261
|
-
const IonNavInner = createReactComponent('ion-nav', undefined, undefined, defineCustomElement$
|
|
1234
|
+
const IonNavInner = createReactComponent('ion-nav', undefined, undefined, defineCustomElement$1g);
|
|
1262
1235
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
1263
1236
|
const IonNavInternal = (_a) => {
|
|
1264
1237
|
var { children, forwardedRef } = _a, restOfProps = __rest(_a, ["children", "forwardedRef"]);
|
|
@@ -1960,7 +1933,7 @@ function useController(displayName, controller, defineCustomElement) {
|
|
|
1960
1933
|
* @returns Returns the present and dismiss methods in an array
|
|
1961
1934
|
*/
|
|
1962
1935
|
function useIonActionSheet() {
|
|
1963
|
-
const controller = useController('IonActionSheet', actionSheetController, defineCustomElement$
|
|
1936
|
+
const controller = useController('IonActionSheet', actionSheetController, defineCustomElement$17);
|
|
1964
1937
|
const present = useCallback((buttonsOrOptions, header) => {
|
|
1965
1938
|
if (Array.isArray(buttonsOrOptions)) {
|
|
1966
1939
|
return controller.present({
|
|
@@ -1980,7 +1953,7 @@ function useIonActionSheet() {
|
|
|
1980
1953
|
* @returns Returns the present and dismiss methods in an array
|
|
1981
1954
|
*/
|
|
1982
1955
|
function useIonAlert() {
|
|
1983
|
-
const controller = useController('IonAlert', alertController, defineCustomElement$
|
|
1956
|
+
const controller = useController('IonAlert', alertController, defineCustomElement$13);
|
|
1984
1957
|
const present = useCallback((messageOrOptions, buttons) => {
|
|
1985
1958
|
if (typeof messageOrOptions === 'string') {
|
|
1986
1959
|
return controller.present({
|
|
@@ -2000,7 +1973,7 @@ function useIonAlert() {
|
|
|
2000
1973
|
* @returns Returns the present and dismiss methods in an array
|
|
2001
1974
|
*/
|
|
2002
1975
|
function useIonToast() {
|
|
2003
|
-
const controller = useController('IonToast', toastController, defineCustomElement$
|
|
1976
|
+
const controller = useController('IonToast', toastController, defineCustomElement$15);
|
|
2004
1977
|
const present = useCallback((messageOrOptions, duration) => {
|
|
2005
1978
|
if (typeof messageOrOptions === 'string') {
|
|
2006
1979
|
return controller.present({
|
|
@@ -2083,7 +2056,7 @@ function useOverlay(displayName, controller, defineCustomElement, component, com
|
|
|
2083
2056
|
* @returns Returns the present and dismiss methods in an array
|
|
2084
2057
|
*/
|
|
2085
2058
|
function useIonModal(component, componentProps) {
|
|
2086
|
-
const controller = useOverlay('IonModal', modalController, defineCustomElement$
|
|
2059
|
+
const controller = useOverlay('IonModal', modalController, defineCustomElement$18, component, componentProps);
|
|
2087
2060
|
const present = useCallback((options = {}) => {
|
|
2088
2061
|
controller.present(options);
|
|
2089
2062
|
}, [controller.present]);
|
|
@@ -2098,7 +2071,7 @@ function useIonModal(component, componentProps) {
|
|
|
2098
2071
|
* @returns Returns the present and dismiss methods in an array
|
|
2099
2072
|
*/
|
|
2100
2073
|
function useIonPopover(component, componentProps) {
|
|
2101
|
-
const controller = useOverlay('IonPopover', popoverController, defineCustomElement$
|
|
2074
|
+
const controller = useOverlay('IonPopover', popoverController, defineCustomElement$19, component, componentProps);
|
|
2102
2075
|
const present = useCallback((options = {}) => {
|
|
2103
2076
|
controller.present(options);
|
|
2104
2077
|
}, [controller.present]);
|
|
@@ -2108,9 +2081,10 @@ function useIonPopover(component, componentProps) {
|
|
|
2108
2081
|
/**
|
|
2109
2082
|
* A hook for presenting/dismissing an IonPicker component
|
|
2110
2083
|
* @returns Returns the present and dismiss methods in an array
|
|
2084
|
+
* @deprecated Use the inline ion-picker component instead.
|
|
2111
2085
|
*/
|
|
2112
2086
|
function useIonPicker() {
|
|
2113
|
-
const controller = useController('IonPicker', pickerController, defineCustomElement$
|
|
2087
|
+
const controller = useController('IonPicker', pickerController, defineCustomElement$16);
|
|
2114
2088
|
const present = useCallback((columnsOrOptions, buttons) => {
|
|
2115
2089
|
if (Array.isArray(columnsOrOptions)) {
|
|
2116
2090
|
return controller.present({
|
|
@@ -2130,7 +2104,7 @@ function useIonPicker() {
|
|
|
2130
2104
|
* @returns Returns the present and dismiss methods in an array
|
|
2131
2105
|
*/
|
|
2132
2106
|
function useIonLoading() {
|
|
2133
|
-
const controller = useController('IonLoading', loadingController, defineCustomElement$
|
|
2107
|
+
const controller = useController('IonLoading', loadingController, defineCustomElement$14);
|
|
2134
2108
|
const present = useCallback((messageOrOptions = {}, duration, spinner) => {
|
|
2135
2109
|
if (typeof messageOrOptions === 'string') {
|
|
2136
2110
|
return controller.present({
|
|
@@ -2475,5 +2449,5 @@ class ViewStacks {
|
|
|
2475
2449
|
}
|
|
2476
2450
|
}
|
|
2477
2451
|
|
|
2478
|
-
export { CreateAnimation, DefaultIonLifeCycleContext, IonAccordion, IonAccordionGroup, IonActionSheet, IonAlert, IonApp, IonAvatar, IonBackButton, IonBackdrop, IonBadge, IonBreadcrumb, IonBreadcrumbs, IonButton, IonButtons, IonCard, IonCardContent, IonCardHeader, IonCardSubtitle, IonCardTitle, IonCheckbox, IonChip, IonCol, IonContent, IonDatetime, IonDatetimeButton, IonFab, IonFabButton, IonFabList, IonFooter, IonGrid, IonHeader, IonIcon, IonImg, IonInfiniteScroll, IonInfiniteScrollContent, IonInput, IonItem, IonItemDivider, IonItemGroup, IonItemOption, IonItemOptions, IonItemSliding, IonLabel, IonLifeCycleContext, IonList, IonListHeader, IonLoading, IonMenu, IonMenuButton, IonMenuToggle, IonModal, IonNav, IonNavLink, IonNote, IonPage, IonPicker, IonPopover, IonProgressBar, IonRadio, IonRadioGroup, IonRange, IonRedirect, IonRefresher, IonRefresherContent, IonReorder, IonReorderGroup, IonRippleEffect, IonRoute, IonRouterContext, IonRouterLink, IonRouterOutlet, IonRow, IonSearchbar, IonSegment, IonSegmentButton, IonSelect, IonSelectOption, IonSkeletonText, IonSpinner, IonSplitPane, IonTab, IonTabBar, IonTabButton, IonTabs, IonTabsContext, IonText, IonTextarea, IonThumbnail, IonTitle, IonToast, IonToggle, IonToolbar, LocationHistory, NavContext, NavManager, RouteManagerContext, StackContext, ViewLifeCycleManager, ViewStacks, generateId, getConfig, getPlatforms, isPlatform, setupIonicReact, useIonActionSheet, useIonAlert, useIonLoading, useIonModal, useIonPicker, useIonPopover, useIonRouter, useIonToast, useIonViewDidEnter, useIonViewDidLeave, useIonViewWillEnter, useIonViewWillLeave, withIonLifeCycle };
|
|
2452
|
+
export { CreateAnimation, DefaultIonLifeCycleContext, IonAccordion, IonAccordionGroup, IonActionSheet, IonAlert, IonApp, IonAvatar, IonBackButton, IonBackdrop, IonBadge, IonBreadcrumb, IonBreadcrumbs, IonButton, IonButtons, IonCard, IonCardContent, IonCardHeader, IonCardSubtitle, IonCardTitle, IonCheckbox, IonChip, IonCol, IonContent, IonDatetime, IonDatetimeButton, IonFab, IonFabButton, IonFabList, IonFooter, IonGrid, IonHeader, IonIcon, IonImg, IonInfiniteScroll, IonInfiniteScrollContent, IonInput, IonItem, IonItemDivider, IonItemGroup, IonItemOption, IonItemOptions, IonItemSliding, IonLabel, IonLifeCycleContext, IonList, IonListHeader, IonLoading, IonMenu, IonMenuButton, IonMenuToggle, IonModal, IonNav, IonNavLink, IonNote, IonPage, IonPicker, IonPickerColumn, IonPickerColumnOption, IonPickerLegacy, IonPopover, IonProgressBar, IonRadio, IonRadioGroup, IonRange, IonRedirect, IonRefresher, IonRefresherContent, IonReorder, IonReorderGroup, IonRippleEffect, IonRoute, IonRouterContext, IonRouterLink, IonRouterOutlet, IonRow, IonSearchbar, IonSegment, IonSegmentButton, IonSelect, IonSelectOption, IonSkeletonText, IonSpinner, IonSplitPane, IonTab, IonTabBar, IonTabButton, IonTabs, IonTabsContext, IonText, IonTextarea, IonThumbnail, IonTitle, IonToast, IonToggle, IonToolbar, LocationHistory, NavContext, NavManager, RouteManagerContext, StackContext, ViewLifeCycleManager, ViewStacks, generateId, getConfig, getPlatforms, isPlatform, setupIonicReact, useIonActionSheet, useIonAlert, useIonLoading, useIonModal, useIonPicker, useIonPopover, useIonRouter, useIonToast, useIonViewDidEnter, useIonViewDidLeave, useIonViewWillEnter, useIonViewWillLeave, withIonLifeCycle };
|
|
2479
2453
|
//# sourceMappingURL=index.js.map
|