@etsoo/appscript 1.2.86 → 1.2.87
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/lib/cjs/app/IApp.d.ts +8 -0
- package/lib/mjs/app/IApp.d.ts +8 -0
- package/package.json +1 -1
- package/src/app/IApp.ts +10 -0
package/lib/cjs/app/IApp.d.ts
CHANGED
|
@@ -114,6 +114,14 @@ export interface IApp {
|
|
|
114
114
|
* Search input element
|
|
115
115
|
*/
|
|
116
116
|
searchInput?: HTMLInputElement;
|
|
117
|
+
/**
|
|
118
|
+
* Is screen size down 'sm'
|
|
119
|
+
*/
|
|
120
|
+
smDown?: boolean;
|
|
121
|
+
/**
|
|
122
|
+
* Is screen size up 'md'
|
|
123
|
+
*/
|
|
124
|
+
mdUp?: boolean;
|
|
117
125
|
/**
|
|
118
126
|
* Alert action result
|
|
119
127
|
* @param result Action result
|
package/lib/mjs/app/IApp.d.ts
CHANGED
|
@@ -114,6 +114,14 @@ export interface IApp {
|
|
|
114
114
|
* Search input element
|
|
115
115
|
*/
|
|
116
116
|
searchInput?: HTMLInputElement;
|
|
117
|
+
/**
|
|
118
|
+
* Is screen size down 'sm'
|
|
119
|
+
*/
|
|
120
|
+
smDown?: boolean;
|
|
121
|
+
/**
|
|
122
|
+
* Is screen size up 'md'
|
|
123
|
+
*/
|
|
124
|
+
mdUp?: boolean;
|
|
117
125
|
/**
|
|
118
126
|
* Alert action result
|
|
119
127
|
* @param result Action result
|
package/package.json
CHANGED
package/src/app/IApp.ts
CHANGED
|
@@ -152,6 +152,16 @@ export interface IApp {
|
|
|
152
152
|
*/
|
|
153
153
|
searchInput?: HTMLInputElement;
|
|
154
154
|
|
|
155
|
+
/**
|
|
156
|
+
* Is screen size down 'sm'
|
|
157
|
+
*/
|
|
158
|
+
smDown?: boolean;
|
|
159
|
+
|
|
160
|
+
/**
|
|
161
|
+
* Is screen size up 'md'
|
|
162
|
+
*/
|
|
163
|
+
mdUp?: boolean;
|
|
164
|
+
|
|
155
165
|
/**
|
|
156
166
|
* Alert action result
|
|
157
167
|
* @param result Action result
|