static-columns 13.1.29 → 13.3.2
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/README.md +78 -41
- package/app/preview/index.d.ts +2 -0
- package/app/preview/index.js +6 -0
- package/app/preview/index.js.map +1 -0
- package/app/preview/preview.component.d.ts +8 -0
- package/app/preview/preview.component.js +6 -0
- package/app/preview/preview.component.js.map +1 -0
- package/app/preview/preview.module.d.ts +2 -0
- package/app/preview/preview.module.js +6 -0
- package/app/preview/preview.module.js.map +1 -0
- package/app.js +3 -3
- package/browser/README.md +24 -24
- package/browser/esm2020/lib/column/column-grow.directive.mjs +22 -22
- package/browser/esm2020/lib/column/column-hide-mobile.directive.mjs +44 -0
- package/browser/esm2020/lib/column/column-hide-tablet.directive.mjs +44 -0
- package/browser/esm2020/lib/column/column-show-mobile.directive.mjs +44 -0
- package/browser/esm2020/lib/column/column.component.mjs +24 -24
- package/browser/esm2020/lib/column/index.mjs +8 -5
- package/browser/esm2020/lib/columns-gap/columns-gap.component.mjs +35 -0
- package/browser/esm2020/lib/columns-gap/index.mjs +4 -0
- package/browser/esm2020/lib/columns.component.mjs +20 -20
- package/browser/esm2020/lib/columns.module.mjs +54 -21
- package/browser/esm2020/lib/index.mjs +7 -8
- package/browser/esm2020/public-api.mjs +1 -1
- package/browser/esm2020/static-columns.mjs +4 -4
- package/browser/fesm2015/static-columns.mjs +265 -80
- package/browser/fesm2015/static-columns.mjs.map +1 -1
- package/browser/fesm2020/static-columns.mjs +265 -80
- package/browser/fesm2020/static-columns.mjs.map +1 -1
- package/browser/lib/column/column-grow.directive.d.ts +8 -8
- package/browser/lib/column/column-hide-mobile.directive.d.ts +17 -0
- package/browser/lib/column/column-hide-tablet.directive.d.ts +17 -0
- package/browser/lib/column/column-show-mobile.directive.d.ts +17 -0
- package/browser/lib/column/column.component.d.ts +8 -8
- package/browser/lib/column/index.d.ts +5 -2
- package/browser/lib/columns-gap/columns-gap.component.d.ts +15 -0
- package/browser/lib/columns-gap/index.d.ts +2 -0
- package/browser/lib/columns.component.d.ts +9 -9
- package/browser/lib/columns.module.d.ts +13 -8
- package/browser/lib/index.d.ts +3 -4
- package/browser/static-columns.d.ts +4 -4
- package/client/README.md +24 -24
- package/client/esm2020/lib/column/column-grow.directive.mjs +22 -22
- package/client/esm2020/lib/column/column-hide-mobile.directive.mjs +44 -0
- package/client/esm2020/lib/column/column-hide-tablet.directive.mjs +44 -0
- package/client/esm2020/lib/column/column-show-mobile.directive.mjs +44 -0
- package/client/esm2020/lib/column/column.component.mjs +24 -24
- package/client/esm2020/lib/column/index.mjs +8 -5
- package/client/esm2020/lib/columns-gap/columns-gap.component.mjs +35 -0
- package/client/esm2020/lib/columns-gap/index.mjs +4 -0
- package/client/esm2020/lib/columns.component.mjs +20 -20
- package/client/esm2020/lib/columns.module.mjs +54 -21
- package/client/esm2020/lib/index.mjs +7 -8
- package/client/esm2020/public-api.mjs +1 -1
- package/client/esm2020/static-columns.mjs +4 -4
- package/client/fesm2015/static-columns.mjs +265 -80
- package/client/fesm2015/static-columns.mjs.map +1 -1
- package/client/fesm2020/static-columns.mjs +265 -80
- package/client/fesm2020/static-columns.mjs.map +1 -1
- package/client/lib/column/column-grow.directive.d.ts +8 -8
- package/client/lib/column/column-hide-mobile.directive.d.ts +17 -0
- package/client/lib/column/column-hide-tablet.directive.d.ts +17 -0
- package/client/lib/column/column-show-mobile.directive.d.ts +17 -0
- package/client/lib/column/column.component.d.ts +8 -8
- package/client/lib/column/index.d.ts +5 -2
- package/client/lib/columns-gap/columns-gap.component.d.ts +15 -0
- package/client/lib/columns-gap/index.d.ts +2 -0
- package/client/lib/columns.component.d.ts +9 -9
- package/client/lib/columns.module.d.ts +13 -8
- package/client/lib/index.d.ts +3 -4
- package/client/static-columns.d.ts +4 -4
- package/index.d.ts +1 -1
- package/lib/column/column-grow.directive.d.ts +6 -6
- package/lib/column/column-hide-mobile.directive.d.ts +13 -0
- package/lib/column/column-hide-mobile.directive.js +47 -0
- package/lib/column/column-hide-mobile.directive.js.map +1 -0
- package/lib/column/column-hide-tablet.directive.d.ts +13 -0
- package/lib/column/column-hide-tablet.directive.js +47 -0
- package/lib/column/column-hide-tablet.directive.js.map +1 -0
- package/lib/column/column-show-mobile.directive.d.ts +13 -0
- package/lib/column/column-show-mobile.directive.js +47 -0
- package/lib/column/column-show-mobile.directive.js.map +1 -0
- package/lib/column/column.component.d.ts +6 -6
- package/lib/column/index.d.ts +5 -2
- package/lib/column/index.js +3 -3
- package/lib/column/index.js.map +1 -1
- package/lib/columns-gap/columns-gap.component.d.ts +11 -0
- package/lib/columns-gap/columns-gap.component.js +6 -0
- package/lib/columns-gap/columns-gap.component.js.map +1 -0
- package/lib/columns-gap/index.d.ts +1 -0
- package/lib/columns-gap/index.js +6 -0
- package/lib/columns-gap/index.js.map +1 -0
- package/lib/columns.component.d.ts +7 -7
- package/lib/columns.component.js +3 -26
- package/lib/columns.component.js.map +1 -1
- package/lib/columns.module.d.ts +2 -2
- package/lib/columns.module.js +3 -19
- package/lib/columns.module.js.map +1 -1
- package/lib/index.d.ts +4 -5
- package/lib/index.js +5 -4
- package/lib/index.js.map +1 -1
- package/package.json +2 -2
- package/package.json_devDependencies.json +237 -237
- package/package.json_tnp.json5 +49 -48
- package/tmp-environment.json +184 -172
- package/websql/README.md +24 -24
- package/websql/esm2020/lib/column/column-grow.directive.mjs +22 -22
- package/websql/esm2020/lib/column/column-hide-mobile.directive.mjs +44 -0
- package/websql/esm2020/lib/column/column-hide-tablet.directive.mjs +44 -0
- package/websql/esm2020/lib/column/column-show-mobile.directive.mjs +44 -0
- package/websql/esm2020/lib/column/column.component.mjs +24 -24
- package/websql/esm2020/lib/column/index.mjs +8 -5
- package/websql/esm2020/lib/columns-gap/columns-gap.component.mjs +35 -0
- package/websql/esm2020/lib/columns-gap/index.mjs +4 -0
- package/websql/esm2020/lib/columns.component.mjs +20 -20
- package/websql/esm2020/lib/columns.module.mjs +54 -21
- package/websql/esm2020/lib/index.mjs +7 -8
- package/websql/esm2020/public-api.mjs +1 -1
- package/websql/esm2020/static-columns.mjs +4 -4
- package/websql/fesm2015/static-columns.mjs +265 -80
- package/websql/fesm2015/static-columns.mjs.map +1 -1
- package/websql/fesm2020/static-columns.mjs +265 -80
- package/websql/fesm2020/static-columns.mjs.map +1 -1
- package/websql/lib/column/column-grow.directive.d.ts +8 -8
- package/websql/lib/column/column-hide-mobile.directive.d.ts +17 -0
- package/websql/lib/column/column-hide-tablet.directive.d.ts +17 -0
- package/websql/lib/column/column-show-mobile.directive.d.ts +17 -0
- package/websql/lib/column/column.component.d.ts +8 -8
- package/websql/lib/column/index.d.ts +5 -2
- package/websql/lib/columns-gap/columns-gap.component.d.ts +15 -0
- package/websql/lib/columns-gap/index.d.ts +2 -0
- package/websql/lib/columns.component.d.ts +9 -9
- package/websql/lib/columns.module.d.ts +13 -8
- package/websql/lib/index.d.ts +3 -4
- package/websql/static-columns.d.ts +4 -4
- package/app/app.component.d.ts +0 -8
- package/app/app.component.js +0 -31
- package/app/app.component.js.map +0 -1
- package/app/app.module.d.ts +0 -2
- package/app/app.module.js +0 -39
- package/app/app.module.js.map +0 -1
package/tmp-environment.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"domain": "static-columns.example.domain.com",
|
|
3
|
-
"
|
|
3
|
+
"isCoreProject": false,
|
|
4
4
|
"ip": "localhost",
|
|
5
5
|
"packageJSON": {
|
|
6
6
|
"tnp": {
|
|
@@ -9,7 +9,9 @@
|
|
|
9
9
|
"screen.png"
|
|
10
10
|
],
|
|
11
11
|
"overrided": {
|
|
12
|
-
"ignoreDepsPattern": [
|
|
12
|
+
"ignoreDepsPattern": [
|
|
13
|
+
"*"
|
|
14
|
+
],
|
|
13
15
|
"includeAsDev": [],
|
|
14
16
|
"includeOnly": [],
|
|
15
17
|
"dependencies": {},
|
|
@@ -21,7 +23,8 @@
|
|
|
21
23
|
"libReleaseOptions": {
|
|
22
24
|
"nodts": false,
|
|
23
25
|
"obscure": false,
|
|
24
|
-
"ugly": false
|
|
26
|
+
"ugly": false,
|
|
27
|
+
"includeNodeModules": false
|
|
25
28
|
},
|
|
26
29
|
"smartContainerTarget": "",
|
|
27
30
|
"type": "isomorphic-lib",
|
|
@@ -47,7 +50,7 @@
|
|
|
47
50
|
"workerPlugins": {}
|
|
48
51
|
},
|
|
49
52
|
"name": "static-columns",
|
|
50
|
-
"version": "13.
|
|
53
|
+
"version": "13.3.2",
|
|
51
54
|
"description": "Static columns with flexbox for Agnular2",
|
|
52
55
|
"repository": {
|
|
53
56
|
"type": "git",
|
|
@@ -72,32 +75,32 @@
|
|
|
72
75
|
"dependencies": {
|
|
73
76
|
"@angular-devkit/build-angular": "~13.3.9",
|
|
74
77
|
"@angular-devkit/core": "~13.3.9",
|
|
75
|
-
"@angular/cdk": "
|
|
78
|
+
"@angular/cdk": "~13.3.9",
|
|
76
79
|
"@angular/cli": "~13.3.9",
|
|
77
80
|
"@angular/common": "~13.3.0",
|
|
78
81
|
"@angular/compiler": "~13.3.0",
|
|
79
82
|
"@angular/compiler-cli": "~13.3.0",
|
|
80
83
|
"@angular/core": "~13.3.0",
|
|
81
|
-
"@angular/flex-layout": "13.0.0-beta.38",
|
|
84
|
+
"@angular/flex-layout": "~13.0.0-beta.38",
|
|
82
85
|
"@angular/forms": "~13.3.0",
|
|
83
|
-
"@angular/material": "
|
|
86
|
+
"@angular/material": "~13.3.9",
|
|
84
87
|
"@angular/platform-browser": "~13.3.0",
|
|
85
88
|
"@angular/platform-browser-dynamic": "~13.3.0",
|
|
86
89
|
"@angular/pwa": "~13.3.9",
|
|
87
90
|
"@angular/router": "~13.3.0",
|
|
88
91
|
"@angular/service-worker": "~13.3.11",
|
|
89
|
-
"@babel/cli": "
|
|
92
|
+
"@babel/cli": "7.18.6",
|
|
90
93
|
"@iconify/icons-fa-solid": "1.2.2",
|
|
91
94
|
"@iconify/icons-mdi": "1.2.1",
|
|
92
95
|
"@mdi/js": "6.5.95",
|
|
93
|
-
"@ngrx/component-store": "
|
|
94
|
-
"@ngrx/data": "
|
|
95
|
-
"@ngrx/effects": "
|
|
96
|
-
"@ngrx/entity": "
|
|
97
|
-
"@ngrx/router-store": "
|
|
98
|
-
"@ngrx/schematics": "
|
|
99
|
-
"@ngrx/store": "
|
|
100
|
-
"@ngrx/store-devtools": "
|
|
96
|
+
"@ngrx/component-store": "~13.0.2",
|
|
97
|
+
"@ngrx/data": "~13.0.2",
|
|
98
|
+
"@ngrx/effects": "~13.0.2",
|
|
99
|
+
"@ngrx/entity": "~13.0.2",
|
|
100
|
+
"@ngrx/router-store": "~13.0.2",
|
|
101
|
+
"@ngrx/schematics": "~13.0.2",
|
|
102
|
+
"@ngrx/store": "~13.0.2",
|
|
103
|
+
"@ngrx/store-devtools": "~13.0.2",
|
|
101
104
|
"@ngx-formly/bootstrap": "6.0.0-next.8",
|
|
102
105
|
"@ngx-formly/core": "6.0.0-next.8",
|
|
103
106
|
"@ngx-formly/ionic": "6.0.0-next.8",
|
|
@@ -108,214 +111,223 @@
|
|
|
108
111
|
"@ngx-translate/core": "14.0.0",
|
|
109
112
|
"@ngx-translate/http-loader": "7.0.0",
|
|
110
113
|
"@swimlane/ngx-datatable": "20.0.0",
|
|
111
|
-
"@types/chai": "
|
|
114
|
+
"@types/chai": "4.1.2",
|
|
112
115
|
"@types/chokidar": "2.1.3",
|
|
113
|
-
"@types/dateformat": "
|
|
114
|
-
"@types/diff": "
|
|
115
|
-
"@types/express": "
|
|
116
|
-
"@types/express-fileupload": "
|
|
117
|
-
"@types/fs-extra": "
|
|
118
|
-
"@types/glob": "
|
|
119
|
-
"@types/http-proxy": "
|
|
116
|
+
"@types/dateformat": "1.0.1",
|
|
117
|
+
"@types/diff": "3.2.2",
|
|
118
|
+
"@types/express": "4.11.0",
|
|
119
|
+
"@types/express-fileupload": "1.4.1",
|
|
120
|
+
"@types/fs-extra": "7.0.0",
|
|
121
|
+
"@types/glob": "5.0.35",
|
|
122
|
+
"@types/http-proxy": "1.16.0",
|
|
120
123
|
"@types/http-proxy-middleware": "0.19.2",
|
|
121
|
-
"@types/inquirer": "
|
|
122
|
-
"@types/jasmine": "
|
|
123
|
-
"@types/json-stringify-safe": "
|
|
124
|
+
"@types/inquirer": "7.3.1",
|
|
125
|
+
"@types/jasmine": "3.10.0",
|
|
126
|
+
"@types/json-stringify-safe": "5.0.0",
|
|
124
127
|
"@types/json5": "0.0.29",
|
|
125
|
-
"@types/lockfile": "
|
|
128
|
+
"@types/lockfile": "1.0.0",
|
|
126
129
|
"@types/lodash": "4.14.92",
|
|
127
|
-
"@types/lowdb": "
|
|
128
|
-
"@types/mocha": "
|
|
129
|
-
"@types/node": "
|
|
130
|
-
"@types/node-notifier": "
|
|
131
|
-
"@types/oauth2orize": "
|
|
132
|
-
"@types/password-hash": "
|
|
133
|
-
"@types/progress": "
|
|
130
|
+
"@types/lowdb": "1.0.6",
|
|
131
|
+
"@types/mocha": "5.2.5",
|
|
132
|
+
"@types/node": "16.18.21",
|
|
133
|
+
"@types/node-notifier": "5.4.0",
|
|
134
|
+
"@types/oauth2orize": "1.8.0",
|
|
135
|
+
"@types/password-hash": "1.2.19",
|
|
136
|
+
"@types/progress": "2.0.3",
|
|
134
137
|
"@types/q": "1.5.5",
|
|
135
|
-
"@types/rimraf": "
|
|
138
|
+
"@types/rimraf": "2.0.2",
|
|
136
139
|
"@types/semver": "6.0.1",
|
|
137
|
-
"@types/systeminformation": "
|
|
138
|
-
"@types/vinyl": "
|
|
139
|
-
"@types/watch": "
|
|
140
|
-
"accepts": "
|
|
141
|
-
"any-project-cli": "~13.1.
|
|
142
|
-
"axios": "
|
|
143
|
-
"background-worker-process": "~13.1.
|
|
140
|
+
"@types/systeminformation": "3.23.0",
|
|
141
|
+
"@types/vinyl": "2.0.2",
|
|
142
|
+
"@types/watch": "1.0.0",
|
|
143
|
+
"accepts": "1.3.4",
|
|
144
|
+
"any-project-cli": "~13.1.23",
|
|
145
|
+
"axios": "1.3.5",
|
|
146
|
+
"background-worker-process": "~13.1.38",
|
|
147
|
+
"base32": "0.0.7",
|
|
144
148
|
"bcryptjs": "2.4.3",
|
|
145
149
|
"better-sqlite3": "7.6.2",
|
|
146
|
-
"body-parser": "
|
|
147
|
-
"bootstrap": "
|
|
148
|
-
"bs4-breakpoint": "13.0.
|
|
149
|
-
"buffer-shims": "
|
|
150
|
+
"body-parser": "1.18.2",
|
|
151
|
+
"bootstrap": "5.1.3",
|
|
152
|
+
"bs4-breakpoint": "13.0.33",
|
|
153
|
+
"buffer-shims": "1.0.0",
|
|
150
154
|
"callsite-record": "4.1.3",
|
|
151
|
-
"chai": "
|
|
152
|
-
"chalk": "
|
|
153
|
-
"check-node-version": "
|
|
155
|
+
"chai": "4.2.0",
|
|
156
|
+
"chalk": "2.3.2",
|
|
157
|
+
"check-node-version": "3.2.0",
|
|
154
158
|
"cheerio": "1.0.0-rc.3",
|
|
155
159
|
"chokidar": "3.5.1",
|
|
156
|
-
"circular-json": "
|
|
157
|
-
"command-exists": "
|
|
160
|
+
"circular-json": "0.5.1",
|
|
161
|
+
"command-exists": "1.2.2",
|
|
158
162
|
"compression": "1.7.4",
|
|
159
|
-
"concurrently": "
|
|
160
|
-
"content-type": "
|
|
161
|
-
"cookie-parser": "
|
|
162
|
-
"copy-paste": "
|
|
163
|
-
"cors": "
|
|
164
|
-
"cpr": "
|
|
165
|
-
"cross-spawn": "
|
|
166
|
-
"dateformat": "
|
|
163
|
+
"concurrently": "3.5.1",
|
|
164
|
+
"content-type": "1.0.4",
|
|
165
|
+
"cookie-parser": "1.4.3",
|
|
166
|
+
"copy-paste": "1.3.0",
|
|
167
|
+
"cors": "2.8.4",
|
|
168
|
+
"cpr": "3.0.1",
|
|
169
|
+
"cross-spawn": "7.0.3",
|
|
170
|
+
"dateformat": "3.0.3",
|
|
167
171
|
"detect-mocha": "0.1.0",
|
|
168
|
-
"diff": "
|
|
172
|
+
"diff": "3.2.0",
|
|
173
|
+
"edit-table": "13.1.0",
|
|
169
174
|
"element-resize-detector": "1.1.15",
|
|
170
|
-
"enquirer": "
|
|
175
|
+
"enquirer": "2.3.0",
|
|
171
176
|
"enum-values": "1.2.1",
|
|
172
|
-
"errorhandler": "
|
|
177
|
+
"errorhandler": "1.5.0",
|
|
173
178
|
"eslint": "7.13.0",
|
|
174
179
|
"eslint-plugin-import": "2.22.1",
|
|
175
180
|
"eslint-plugin-jsdoc": "30.7.8",
|
|
176
181
|
"eslint-plugin-prefer-arrow": "1.2.2",
|
|
177
|
-
"express": "
|
|
178
|
-
"express-fileupload": "
|
|
182
|
+
"express": "4.16.3",
|
|
183
|
+
"express-fileupload": "1.4.0",
|
|
179
184
|
"express-session": "1.17.3",
|
|
180
|
-
"
|
|
181
|
-
"
|
|
182
|
-
"
|
|
183
|
-
"
|
|
184
|
-
"firedev
|
|
185
|
-
"firedev-
|
|
186
|
-
"firedev-
|
|
185
|
+
"favicons": "7.1.2",
|
|
186
|
+
"fbgraph": "1.4.1",
|
|
187
|
+
"file-loader": "1.1.5",
|
|
188
|
+
"file-saver": "2.0.5",
|
|
189
|
+
"firedev": "^13",
|
|
190
|
+
"firedev-crud": "~13.1.43",
|
|
191
|
+
"firedev-crud-deamon": "~13.1.33",
|
|
192
|
+
"firedev-ports": "~13.1.37",
|
|
193
|
+
"firedev-storage": "~13.1.28",
|
|
194
|
+
"firedev-typeorm": "~13.1.18",
|
|
195
|
+
"firedev-ui": "~13.1.8",
|
|
187
196
|
"fkill": "6.1.0",
|
|
188
|
-
"font-awesome": "
|
|
197
|
+
"font-awesome": "4.7.0",
|
|
198
|
+
"form-data": "4.0.0",
|
|
189
199
|
"fs-extra": "8.1.0",
|
|
190
|
-
"fuzzy": "
|
|
191
|
-
"glob": "
|
|
192
|
-
"gulp": "
|
|
193
|
-
"hostile": "
|
|
194
|
-
"http-proxy": "
|
|
200
|
+
"fuzzy": "0.1.3",
|
|
201
|
+
"glob": "7.1.2",
|
|
202
|
+
"gulp": "3.9.1",
|
|
203
|
+
"hostile": "1.3.3",
|
|
204
|
+
"http-proxy": "1.16.2",
|
|
195
205
|
"http-proxy-middleware": "0.19.1",
|
|
196
206
|
"http-server": "0.11.1",
|
|
197
|
-
"incremental-compiler": "~13.1.
|
|
198
|
-
"inquirer": "
|
|
199
|
-
"inquirer-autocomplete-prompt": "
|
|
200
|
-
"is-elevated": "
|
|
201
|
-
"isomorphic-region-loader": "~1.
|
|
202
|
-
"istanbul-instrumenter-loader": "
|
|
203
|
-
"jasmine-core": "
|
|
204
|
-
"jscodeshift": "
|
|
205
|
-
"json-stringify-safe": "
|
|
206
|
-
"json10": "~13.1.
|
|
207
|
-
"json10-writer": "~13.1.
|
|
208
|
-
"json5": "
|
|
209
|
-
"json5-writer": "
|
|
210
|
-
"
|
|
211
|
-
"karma
|
|
212
|
-
"karma-
|
|
213
|
-
"karma-
|
|
214
|
-
"karma-
|
|
215
|
-
"karma-jasmine
|
|
216
|
-
"
|
|
217
|
-
"
|
|
218
|
-
"
|
|
219
|
-
"
|
|
220
|
-
"lodash
|
|
221
|
-
"lodash
|
|
222
|
-
"
|
|
223
|
-
"
|
|
224
|
-
"lowdb": "^1.0.0",
|
|
225
|
-
"magic-renamer": "~13.1.16",
|
|
207
|
+
"incremental-compiler": "~13.1.17",
|
|
208
|
+
"inquirer": "7.3.3",
|
|
209
|
+
"inquirer-autocomplete-prompt": "1.3.0",
|
|
210
|
+
"is-elevated": "3.0.0",
|
|
211
|
+
"isomorphic-region-loader": "~13.1.31",
|
|
212
|
+
"istanbul-instrumenter-loader": "2.0.0",
|
|
213
|
+
"jasmine-core": "4.0.0",
|
|
214
|
+
"jscodeshift": "0.6.3",
|
|
215
|
+
"json-stringify-safe": "5.0.1",
|
|
216
|
+
"json10": "~13.1.36",
|
|
217
|
+
"json10-writer": "~13.1.34",
|
|
218
|
+
"json5": "2.1.3",
|
|
219
|
+
"json5-writer": "0.2.0",
|
|
220
|
+
"jszip": "3.10.1",
|
|
221
|
+
"karma": "6.3.0",
|
|
222
|
+
"karma-chrome-launcher": "3.1.0",
|
|
223
|
+
"karma-cli": "1.0.1",
|
|
224
|
+
"karma-coverage": "2.1.0",
|
|
225
|
+
"karma-jasmine": "4.0.0",
|
|
226
|
+
"karma-jasmine-html-reporter": "1.7.0",
|
|
227
|
+
"lnk": "1.0.1",
|
|
228
|
+
"localforage": "1.10.0",
|
|
229
|
+
"lockfile": "1.0.4",
|
|
230
|
+
"lodash": "4.17.4",
|
|
231
|
+
"lodash-walk-object": "~13.1.36",
|
|
232
|
+
"lowdb": "1.0.0",
|
|
233
|
+
"magic-renamer": "~13.1.25",
|
|
226
234
|
"material-design-icons": "3.0.1",
|
|
227
|
-
"method-override": "
|
|
228
|
-
"minimist": "
|
|
229
|
-
"mkdirp": "
|
|
230
|
-
"mocha": "
|
|
231
|
-
"moment": "
|
|
232
|
-
"morphi": "~13.1
|
|
233
|
-
"ng-packagr": "
|
|
234
|
-
"ng-talkback": "~13.1.
|
|
235
|
-
"ng2-
|
|
236
|
-
"ng2-
|
|
237
|
-
"
|
|
238
|
-
"ng4-
|
|
235
|
+
"method-override": "2.3.10",
|
|
236
|
+
"minimist": "1.2.0",
|
|
237
|
+
"mkdirp": "0.5.1",
|
|
238
|
+
"mocha": "5.2.0",
|
|
239
|
+
"moment": "2.22.2",
|
|
240
|
+
"morphi": "~13.2.1",
|
|
241
|
+
"ng-packagr": "13.0.0",
|
|
242
|
+
"ng-talkback": "~13.1.19",
|
|
243
|
+
"ng2-file-upload": "1.3.0",
|
|
244
|
+
"ng2-logger": "~13.1.15",
|
|
245
|
+
"ng2-rest": "~13.2.1",
|
|
246
|
+
"ng4-icons": "~13.1.21",
|
|
247
|
+
"ng4-modal": "~13.1.23",
|
|
239
248
|
"ngx-bootstrap": "8.0.0",
|
|
240
249
|
"ngx-editor": "12.2.1",
|
|
250
|
+
"ngx-highlightjs": "6.1.3",
|
|
241
251
|
"ngx-moment": "6.0.2",
|
|
242
252
|
"ngx-pipes": "3.0.0",
|
|
253
|
+
"ngx-progressbar": "8.0.0",
|
|
254
|
+
"ngx-scrollbar": "9.0.2",
|
|
243
255
|
"ngx-store": "3.1.1",
|
|
244
256
|
"ngx-toastr": "14.2.2",
|
|
245
|
-
"ngx-wig": "
|
|
246
|
-
"node-cli-tester": "~13.1.
|
|
257
|
+
"ngx-wig": "1.2.7",
|
|
258
|
+
"node-cli-tester": "~13.1.19",
|
|
247
259
|
"node-localstorage": "2.1.6",
|
|
248
|
-
"node-notifier": "
|
|
249
|
-
"nodemon": "
|
|
250
|
-
"npm-get-dependents": "
|
|
251
|
-
"npm-run": "
|
|
252
|
-
"omelette": "
|
|
260
|
+
"node-notifier": "6.0.0",
|
|
261
|
+
"nodemon": "1.14.11",
|
|
262
|
+
"npm-get-dependents": "1.0.1",
|
|
263
|
+
"npm-run": "4.1.2",
|
|
264
|
+
"omelette": "0.4.5",
|
|
253
265
|
"open": "7.2.1",
|
|
254
266
|
"ora": "3.4.0",
|
|
255
|
-
"passport": "
|
|
256
|
-
"passport-http-bearer": "
|
|
257
|
-
"password-hash": "
|
|
267
|
+
"passport": "0.3.2",
|
|
268
|
+
"passport-http-bearer": "1.0.1",
|
|
269
|
+
"password-hash": "1.2.2",
|
|
258
270
|
"portfinder": "1.0.21",
|
|
259
271
|
"prettier": "2.5.1",
|
|
260
|
-
"progress": "
|
|
261
|
-
"prompts": "
|
|
272
|
+
"progress": "2.0.3",
|
|
273
|
+
"prompts": "0.1.8",
|
|
262
274
|
"ps-list": "6.1.0",
|
|
263
|
-
"ps-node": "
|
|
264
|
-
"q": "
|
|
265
|
-
"randomcolor": "
|
|
266
|
-
"record-replay-req-res-scenario": "~13.1.
|
|
267
|
-
"reflect-metadata": "
|
|
268
|
-
"rimraf": "
|
|
275
|
+
"ps-node": "0.1.6",
|
|
276
|
+
"q": "1.5.1",
|
|
277
|
+
"randomcolor": "0.5.3",
|
|
278
|
+
"record-replay-req-res-scenario": "~13.1.20",
|
|
279
|
+
"reflect-metadata": "0.1.10",
|
|
280
|
+
"rimraf": "2.6.2",
|
|
269
281
|
"rxjs": "~7.5.0",
|
|
270
282
|
"semver": "6.3.0",
|
|
271
|
-
"simple-git": "
|
|
272
|
-
"sloc": "
|
|
273
|
-
"socket.io": "
|
|
274
|
-
"sort-package-json": "
|
|
275
|
-
"sql.js": "
|
|
276
|
-
"static-columns": "~13.1.
|
|
277
|
-
"string-similarity": "
|
|
278
|
-
"sudo-block": "
|
|
279
|
-
"systeminformation": "
|
|
280
|
-
"task.js": "
|
|
281
|
-
"tnp-cli": "~13.1.
|
|
282
|
-
"tnp-config": "~13.1.
|
|
283
|
-
"tnp-core": "~13.
|
|
284
|
-
"tnp-db": "~13.1.
|
|
285
|
-
"tnp-helpers": "~13.1.
|
|
286
|
-
"tnp-models": "~13.1.
|
|
287
|
-
"tnp-ui": "~13.1.
|
|
288
|
-
"ts-debug": "
|
|
289
|
-
"ts-loader": "
|
|
290
|
-
"ts-node": "
|
|
291
|
-
"tslib": "
|
|
292
|
-
"typeorm": "
|
|
283
|
+
"simple-git": "1.96.0",
|
|
284
|
+
"sloc": "0.2.0",
|
|
285
|
+
"socket.io": "2.4.1",
|
|
286
|
+
"sort-package-json": "1.11.0",
|
|
287
|
+
"sql.js": "1.8.0",
|
|
288
|
+
"static-columns": "~13.1.31",
|
|
289
|
+
"string-similarity": "4.0.2",
|
|
290
|
+
"sudo-block": "3.0.0",
|
|
291
|
+
"systeminformation": "3.45.7",
|
|
292
|
+
"task.js": "0.1.5",
|
|
293
|
+
"tnp-cli": "~13.1.50",
|
|
294
|
+
"tnp-config": "~13.1.66",
|
|
295
|
+
"tnp-core": "~13.2.8",
|
|
296
|
+
"tnp-db": "~13.1.16",
|
|
297
|
+
"tnp-helpers": "~13.1.26",
|
|
298
|
+
"tnp-models": "~13.1.18",
|
|
299
|
+
"tnp-ui": "~13.1.27",
|
|
300
|
+
"ts-debug": "1.3.0",
|
|
301
|
+
"ts-loader": "2.3.1",
|
|
302
|
+
"ts-node": "10.7.0",
|
|
303
|
+
"tslib": "~2.3.0",
|
|
304
|
+
"typeorm": "~0.3.10",
|
|
293
305
|
"typescript": "~4.6.2",
|
|
294
|
-
"typescript-class-helpers": "~13.1
|
|
295
|
-
"typescript-formatter": "7.2.2",
|
|
296
|
-
"underscore": "
|
|
297
|
-
"uuid": "
|
|
298
|
-
"validator": "
|
|
299
|
-
"vpn-split": "~13.1.
|
|
300
|
-
"watch": "
|
|
306
|
+
"typescript-class-helpers": "~13.2.1",
|
|
307
|
+
"typescript-formatter": "~7.2.2",
|
|
308
|
+
"underscore": "1.9.1",
|
|
309
|
+
"uuid": "8.3.2",
|
|
310
|
+
"validator": "9.2.0",
|
|
311
|
+
"vpn-split": "~13.1.23",
|
|
312
|
+
"watch": "1.0.2",
|
|
313
|
+
"yup": "1.1.1",
|
|
301
314
|
"zone.js": "~0.11.4"
|
|
302
315
|
},
|
|
303
316
|
"private": false,
|
|
304
|
-
"lastBuildTagHash": "
|
|
317
|
+
"lastBuildTagHash": "3a9569b5c8aeb10ee09a11feb36f84b93fb9532c",
|
|
305
318
|
"devDependencies": {}
|
|
306
319
|
},
|
|
307
320
|
"build": {
|
|
308
|
-
"number":
|
|
309
|
-
"date": "
|
|
310
|
-
"hash": "
|
|
321
|
+
"number": 280,
|
|
322
|
+
"date": "2023-04-22T21:57:42.000Z",
|
|
323
|
+
"hash": "1c93889b60910274623f53ddb848e3a5abd4cc36",
|
|
311
324
|
"options": {}
|
|
312
325
|
},
|
|
313
326
|
"currentProjectName": "static-columns",
|
|
314
|
-
"currentProjectPort": 4000,
|
|
315
327
|
"currentProjectLaunchConfiguration": "{\"version\":\"0.2.0\",\"configurations\":[{\"type\":\"node\",\"request\":\"launch\",\"name\":\"Launch Server standalone\",\"program\":\"${workspaceFolder}/run.js\",\"args\":[\"--ENVoverride=%7B%0A%20%20%20%20%22clientProjectName%22%3A%20%22static-columns%22%0A%7D\"],\"runtimeArgs\":[\"--nolazy\",\"-r\",\"ts-node/register\",\"--experimental-worker\"]},{\"name\":\"Debugger with ng serve\",\"type\":\"chrome\",\"request\":\"launch\",\"preLaunchTask\":\"Ng Serve\",\"postDebugTask\":\"terminateall\",\"sourceMaps\":true,\"webRoot\":\"${workspaceFolder}\",\"sourceMapPathOverrides\":{\"webpack:/*\":\"${webRoot}/*\",\"/./*\":\"${webRoot}/*\",\"/tmp-src/*\":\"${webRoot}/*\",\"/*\":\"*\",\"/./~/*\":\"${webRoot}/node_modules/*\"}},{\"type\":\"node\",\"request\":\"attach\",\"name\":\"Attach to global cli tool\",\"port\":9229,\"skipFiles\":[\"<node_internals>/**\"]}],\"compounds\":[{\"name\":\"Debug backend/frontend\",\"configurations\":[\"Launch Server standalone\",\"Debugger with ng serve\"]}]}",
|
|
316
328
|
"currentProjectTasksConfiguration": "{\"version\":\"2.0.0\",\"tasks\":[{\"label\":\"terminateall\",\"command\":\"echo ${input:terminate}\",\"type\":\"shell\",\"problemMatcher\":[]},{\"label\":\"Ng Serve\",\"type\":\"shell\",\"command\":\"tnp build\",\"isBackground\":true,\"presentation\":{\"reveal\":\"always\"},\"group\":{\"kind\":\"build\",\"isDefault\":true},\"problemMatcher\":{\"owner\":\"typescript\",\"source\":\"ts\",\"applyTo\":\"closedDocuments\",\"fileLocation\":[\"relative\",\"${cwd}\"],\"pattern\":\"$tsc\",\"background\":{\"activeOnStart\":true,\"beginsPattern\":{\"regexp\":\"(.*?)\"},\"endsPattern\":{\"regexp\":\"Compiled |Failed to compile.\"}}}}],\"inputs\":[{\"id\":\"terminate\",\"type\":\"command\",\"command\":\"workbench.action.tasks.terminate\",\"args\":\"terminateAll\"}]}",
|
|
317
329
|
"currentProjectType": "isomorphic-lib",
|
|
318
|
-
"currentFrameworkVersion": "13.1.
|
|
330
|
+
"currentFrameworkVersion": "13.1.181",
|
|
319
331
|
"currentProjectIsStrictSite": false,
|
|
320
332
|
"currentProjectIsDependencySite": false,
|
|
321
333
|
"currentProjectIsStatic": false,
|
package/websql/README.md
CHANGED
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
# MyLib
|
|
2
|
-
|
|
3
|
-
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.2.0.
|
|
4
|
-
|
|
5
|
-
## Code scaffolding
|
|
6
|
-
|
|
7
|
-
Run `ng generate component component-name --project my-lib` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project my-lib`.
|
|
8
|
-
> Note: Don't forget to add `--project my-lib` or else it will be added to the default project in your `angular.json` file.
|
|
9
|
-
|
|
10
|
-
## Build
|
|
11
|
-
|
|
12
|
-
Run `ng build my-lib` to build the project. The build artifacts will be stored in the `dist/` directory.
|
|
13
|
-
|
|
14
|
-
## Publishing
|
|
15
|
-
|
|
16
|
-
After building your library with `ng build my-lib`, go to the dist folder `cd dist/my-lib` and run `npm publish`.
|
|
17
|
-
|
|
18
|
-
## Running unit tests
|
|
19
|
-
|
|
20
|
-
Run `ng test my-lib` to execute the unit tests via [Karma](https://karma-runner.github.io).
|
|
21
|
-
|
|
22
|
-
## Further help
|
|
23
|
-
|
|
24
|
-
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
|
|
1
|
+
# MyLib
|
|
2
|
+
|
|
3
|
+
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.2.0.
|
|
4
|
+
|
|
5
|
+
## Code scaffolding
|
|
6
|
+
|
|
7
|
+
Run `ng generate component component-name --project my-lib` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project my-lib`.
|
|
8
|
+
> Note: Don't forget to add `--project my-lib` or else it will be added to the default project in your `angular.json` file.
|
|
9
|
+
|
|
10
|
+
## Build
|
|
11
|
+
|
|
12
|
+
Run `ng build my-lib` to build the project. The build artifacts will be stored in the `dist/` directory.
|
|
13
|
+
|
|
14
|
+
## Publishing
|
|
15
|
+
|
|
16
|
+
After building your library with `ng build my-lib`, go to the dist folder `cd dist/my-lib` and run `npm publish`.
|
|
17
|
+
|
|
18
|
+
## Running unit tests
|
|
19
|
+
|
|
20
|
+
Run `ng test my-lib` to execute the unit tests via [Karma](https://karma-runner.github.io).
|
|
21
|
+
|
|
22
|
+
## Further help
|
|
23
|
+
|
|
24
|
+
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
|
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
import { Directive, ElementRef, Renderer2 } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export class DirectiveGrow {
|
|
4
|
-
constructor(e, renderer) {
|
|
5
|
-
this.e = e;
|
|
6
|
-
this.renderer = renderer;
|
|
7
|
-
setTimeout(() => {
|
|
8
|
-
renderer.setStyle(e.nativeElement, 'flexGrow', '1');
|
|
9
|
-
}, 0);
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
|
-
DirectiveGrow.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DirectiveGrow, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive });
|
|
13
|
-
DirectiveGrow.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: DirectiveGrow, selector: "[grow]", ngImport: i0 });
|
|
14
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DirectiveGrow, decorators: [{
|
|
15
|
-
type: Directive,
|
|
16
|
-
args: [{
|
|
17
|
-
selector: '[grow]'
|
|
18
|
-
}]
|
|
19
|
-
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }]; } });
|
|
20
|
-
;
|
|
21
|
-
({}); // @--end-of-file-for-module=static-columns
|
|
22
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
1
|
+
import { Directive, ElementRef, Renderer2 } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export class DirectiveGrow {
|
|
4
|
+
constructor(e, renderer) {
|
|
5
|
+
this.e = e;
|
|
6
|
+
this.renderer = renderer;
|
|
7
|
+
setTimeout(() => {
|
|
8
|
+
renderer.setStyle(e.nativeElement, 'flexGrow', '1');
|
|
9
|
+
}, 0);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
DirectiveGrow.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DirectiveGrow, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive });
|
|
13
|
+
DirectiveGrow.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: DirectiveGrow, selector: "[grow]", ngImport: i0 });
|
|
14
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DirectiveGrow, decorators: [{
|
|
15
|
+
type: Directive,
|
|
16
|
+
args: [{
|
|
17
|
+
selector: '[grow]'
|
|
18
|
+
}]
|
|
19
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }]; } });
|
|
20
|
+
;
|
|
21
|
+
({}); // @--end-of-file-for-module=static-columns lib/column/column-grow.directive.ts
|
|
22
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29sdW1uLWdyb3cuZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vdG1wLWxpYnMtZm9yLWJ1bmRsZS13ZWJzcWwvc3RhdGljLWNvbHVtbnMvcHJvamVjdHMvc3RhdGljLWNvbHVtbnMvc3JjL2xpYi9jb2x1bW4vY29sdW1uLWdyb3cuZGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBYSxTQUFTLEVBQUUsVUFBVSxFQUFFLFNBQVMsRUFBRSxNQUFNLGVBQWUsQ0FBQzs7QUFNNUUsTUFBTSxPQUFPLGFBQWE7SUFDeEIsWUFBbUIsQ0FBYSxFQUFTLFFBQW1CO1FBQXpDLE1BQUMsR0FBRCxDQUFDLENBQVk7UUFBUyxhQUFRLEdBQVIsUUFBUSxDQUFXO1FBQzFELFVBQVUsQ0FBQyxHQUFHLEVBQUU7WUFFZCxRQUFRLENBQUMsUUFBUSxDQUFDLENBQUMsQ0FBQyxhQUFhLEVBQUUsVUFBVSxFQUFFLEdBQUcsQ0FBQyxDQUFBO1FBQ3JELENBQUMsRUFBRSxDQUFDLENBQUMsQ0FBQztJQUdSLENBQUM7OzJHQVJVLGFBQWE7K0ZBQWIsYUFBYTs0RkFBYixhQUFhO2tCQUh6QixTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRSxRQUFRO2lCQUNuQjs7QUFZQSxDQUFDO0FBQUEsQ0FBQyxFQUFFLENBQUMsQ0FBQyxDQUFDLCtFQUErRSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgRGlyZWN0aXZlLCBFbGVtZW50UmVmLCBSZW5kZXJlcjIgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuXG5ARGlyZWN0aXZlKHtcbiAgc2VsZWN0b3I6ICdbZ3Jvd10nXG59KVxuZXhwb3J0IGNsYXNzIERpcmVjdGl2ZUdyb3cge1xuICBjb25zdHJ1Y3RvcihwdWJsaWMgZTogRWxlbWVudFJlZiwgcHVibGljIHJlbmRlcmVyOiBSZW5kZXJlcjIpIHtcbiAgICBzZXRUaW1lb3V0KCgpID0+IHtcblxuICAgICAgcmVuZGVyZXIuc2V0U3R5bGUoZS5uYXRpdmVFbGVtZW50LCAnZmxleEdyb3cnLCAnMScpXG4gICAgfSwgMCk7XG5cblxuICB9XG59XG5cbiA7KHt9KTsgLy8gQC0tZW5kLW9mLWZpbGUtZm9yLW1vZHVsZT1zdGF0aWMtY29sdW1ucyBsaWIvY29sdW1uL2NvbHVtbi1ncm93LmRpcmVjdGl2ZS50cyJdfQ==
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { BreakpointObserver } from '@angular/cdk/layout';
|
|
2
|
+
import { Directive, ElementRef, Renderer2 } from '@angular/core';
|
|
3
|
+
import { Subject, takeUntil } from 'rxjs';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
import * as i1 from "@angular/cdk/layout";
|
|
6
|
+
export class DirectiveHideMobile {
|
|
7
|
+
constructor(e, renderer, breakpointObserver) {
|
|
8
|
+
this.e = e;
|
|
9
|
+
this.renderer = renderer;
|
|
10
|
+
this.breakpointObserver = breakpointObserver;
|
|
11
|
+
this.$destroy = new Subject();
|
|
12
|
+
}
|
|
13
|
+
ngOnInit() {
|
|
14
|
+
this.breakpointObserver
|
|
15
|
+
.observe(['(min-width: 600px)'])
|
|
16
|
+
.pipe(takeUntil(this.$destroy))
|
|
17
|
+
.subscribe((state) => {
|
|
18
|
+
if (typeof this.originalDisaplay === 'undefined') {
|
|
19
|
+
this.originalDisaplay = this.e.nativeElement.style.display;
|
|
20
|
+
}
|
|
21
|
+
if (state.matches) {
|
|
22
|
+
this.renderer.setStyle(this.e.nativeElement, 'display', this.originalDisaplay);
|
|
23
|
+
}
|
|
24
|
+
else {
|
|
25
|
+
this.renderer.setStyle(this.e.nativeElement, 'display', 'none');
|
|
26
|
+
}
|
|
27
|
+
});
|
|
28
|
+
}
|
|
29
|
+
ngOnDestroy() {
|
|
30
|
+
this.$destroy.next(void 0);
|
|
31
|
+
this.$destroy.complete();
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
DirectiveHideMobile.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DirectiveHideMobile, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i1.BreakpointObserver }], target: i0.ɵɵFactoryTarget.Directive });
|
|
35
|
+
DirectiveHideMobile.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.12", type: DirectiveHideMobile, selector: "[hideMobile]", ngImport: i0 });
|
|
36
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: DirectiveHideMobile, decorators: [{
|
|
37
|
+
type: Directive,
|
|
38
|
+
args: [{
|
|
39
|
+
selector: '[hideMobile]'
|
|
40
|
+
}]
|
|
41
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i1.BreakpointObserver }]; } });
|
|
42
|
+
;
|
|
43
|
+
({}); // @--end-of-file-for-module=static-columns lib/column/column-hide-mobile.directive.ts
|
|
44
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29sdW1uLWhpZGUtbW9iaWxlLmRpcmVjdGl2ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3RtcC1saWJzLWZvci1idW5kbGUtd2Vic3FsL3N0YXRpYy1jb2x1bW5zL3Byb2plY3RzL3N0YXRpYy1jb2x1bW5zL3NyYy9saWIvY29sdW1uL2NvbHVtbi1oaWRlLW1vYmlsZS5kaXJlY3RpdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLGtCQUFrQixFQUFtQixNQUFNLHFCQUFxQixDQUFDO0FBQzFFLE9BQU8sRUFBYSxTQUFTLEVBQUUsVUFBVSxFQUFVLFNBQVMsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUNwRixPQUFPLEVBQUUsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLE1BQU0sQ0FBQzs7O0FBTTFDLE1BQU0sT0FBTyxtQkFBbUI7SUFHOUIsWUFDUyxDQUFhLEVBQ2IsUUFBbUIsRUFDbkIsa0JBQXNDO1FBRnRDLE1BQUMsR0FBRCxDQUFDLENBQVk7UUFDYixhQUFRLEdBQVIsUUFBUSxDQUFXO1FBQ25CLHVCQUFrQixHQUFsQixrQkFBa0IsQ0FBb0I7UUFKL0MsYUFBUSxHQUFHLElBQUksT0FBTyxFQUFFLENBQUM7SUFLckIsQ0FBQztJQUlMLFFBQVE7UUFDTixJQUFJLENBQUMsa0JBQWtCO2FBQ3BCLE9BQU8sQ0FBQyxDQUFDLG9CQUFvQixDQUFDLENBQUM7YUFDL0IsSUFBSSxDQUFDLFNBQVMsQ0FBQyxJQUFJLENBQUMsUUFBUSxDQUFDLENBQUM7YUFDOUIsU0FBUyxDQUFDLENBQUMsS0FBc0IsRUFBRSxFQUFFO1lBQ3BDLElBQUksT0FBTyxJQUFJLENBQUMsZ0JBQWdCLEtBQUssV0FBVyxFQUFFO2dCQUNoRCxJQUFJLENBQUMsZ0JBQWdCLEdBQUksSUFBSSxDQUFDLENBQUMsQ0FBQyxhQUE2QixDQUFDLEtBQUssQ0FBQyxPQUFPLENBQUM7YUFDN0U7WUFDRCxJQUFJLEtBQUssQ0FBQyxPQUFPLEVBQUU7Z0JBQ2pCLElBQUksQ0FBQyxRQUFRLENBQUMsUUFBUSxDQUFDLElBQUksQ0FBQyxDQUFDLENBQUMsYUFBYSxFQUFFLFNBQVMsRUFBRSxJQUFJLENBQUMsZ0JBQWdCLENBQUMsQ0FBQTthQUMvRTtpQkFBTTtnQkFDTCxJQUFJLENBQUMsUUFBUSxDQUFDLFFBQVEsQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLGFBQWEsRUFBRSxTQUFTLEVBQUUsTUFBTSxDQUFDLENBQUE7YUFDaEU7UUFDSCxDQUFDLENBQUMsQ0FBQTtJQUNOLENBQUM7SUFFRCxXQUFXO1FBQ1QsSUFBSSxDQUFDLFFBQVEsQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLENBQUMsQ0FBQztRQUMzQixJQUFJLENBQUMsUUFBUSxDQUFDLFFBQVEsRUFBRSxDQUFBO0lBQzFCLENBQUM7O2lIQTlCVSxtQkFBbUI7cUdBQW5CLG1CQUFtQjs0RkFBbkIsbUJBQW1CO2tCQUgvQixTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRSxjQUFjO2lCQUN6Qjs7QUFvQ0EsQ0FBQztBQUFBLENBQUMsRUFBRSxDQUFDLENBQUMsQ0FBQyxzRkFBc0YiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBCcmVha3BvaW50T2JzZXJ2ZXIsIEJyZWFrcG9pbnRTdGF0ZSB9IGZyb20gJ0Bhbmd1bGFyL2Nkay9sYXlvdXQnO1xuaW1wb3J0IHsgQ29tcG9uZW50LCBEaXJlY3RpdmUsIEVsZW1lbnRSZWYsIE9uSW5pdCwgUmVuZGVyZXIyIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBTdWJqZWN0LCB0YWtlVW50aWwgfSBmcm9tICdyeGpzJztcblxuXG5ARGlyZWN0aXZlKHtcbiAgc2VsZWN0b3I6ICdbaGlkZU1vYmlsZV0nXG59KVxuZXhwb3J0IGNsYXNzIERpcmVjdGl2ZUhpZGVNb2JpbGUgaW1wbGVtZW50cyBPbkluaXQge1xuXG4gICRkZXN0cm95ID0gbmV3IFN1YmplY3QoKTtcbiAgY29uc3RydWN0b3IoXG4gICAgcHVibGljIGU6IEVsZW1lbnRSZWYsXG4gICAgcHVibGljIHJlbmRlcmVyOiBSZW5kZXJlcjIsXG4gICAgcHVibGljIGJyZWFrcG9pbnRPYnNlcnZlcjogQnJlYWtwb2ludE9ic2VydmVyLFxuICApIHsgfVxuXG4gIHByaXZhdGUgb3JpZ2luYWxEaXNhcGxheTogc3RyaW5nO1xuXG4gIG5nT25Jbml0KCkge1xuICAgIHRoaXMuYnJlYWtwb2ludE9ic2VydmVyXG4gICAgICAub2JzZXJ2ZShbJyhtaW4td2lkdGg6IDYwMHB4KSddKVxuICAgICAgLnBpcGUodGFrZVVudGlsKHRoaXMuJGRlc3Ryb3kpKVxuICAgICAgLnN1YnNjcmliZSgoc3RhdGU6IEJyZWFrcG9pbnRTdGF0ZSkgPT4ge1xuICAgICAgICBpZiAodHlwZW9mIHRoaXMub3JpZ2luYWxEaXNhcGxheSA9PT0gJ3VuZGVmaW5lZCcpIHtcbiAgICAgICAgICB0aGlzLm9yaWdpbmFsRGlzYXBsYXkgPSAodGhpcy5lLm5hdGl2ZUVsZW1lbnQgYXMgSFRNTEVsZW1lbnQpLnN0eWxlLmRpc3BsYXk7XG4gICAgICAgIH1cbiAgICAgICAgaWYgKHN0YXRlLm1hdGNoZXMpIHtcbiAgICAgICAgICB0aGlzLnJlbmRlcmVyLnNldFN0eWxlKHRoaXMuZS5uYXRpdmVFbGVtZW50LCAnZGlzcGxheScsIHRoaXMub3JpZ2luYWxEaXNhcGxheSlcbiAgICAgICAgfSBlbHNlIHtcbiAgICAgICAgICB0aGlzLnJlbmRlcmVyLnNldFN0eWxlKHRoaXMuZS5uYXRpdmVFbGVtZW50LCAnZGlzcGxheScsICdub25lJylcbiAgICAgICAgfVxuICAgICAgfSlcbiAgfVxuXG4gIG5nT25EZXN0cm95KCk6IHZvaWQge1xuICAgIHRoaXMuJGRlc3Ryb3kubmV4dCh2b2lkIDApO1xuICAgIHRoaXMuJGRlc3Ryb3kuY29tcGxldGUoKVxuICB9XG5cbn1cblxuXG4gOyh7fSk7IC8vIEAtLWVuZC1vZi1maWxlLWZvci1tb2R1bGU9c3RhdGljLWNvbHVtbnMgbGliL2NvbHVtbi9jb2x1bW4taGlkZS1tb2JpbGUuZGlyZWN0aXZlLnRzIl19
|