@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.
@@ -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
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etsoo/appscript",
3
- "version": "1.2.86",
3
+ "version": "1.2.87",
4
4
  "description": "Applications shared TypeScript framework",
5
5
  "main": "lib/cjs/index.js",
6
6
  "module": "lib/mjs/index.js",
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