@common-stack/generate-plugin 6.0.2-alpha.1 → 6.0.2-alpha.10

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.
Files changed (60) hide show
  1. package/CHANGELOG.md +36 -0
  2. package/lib/generators/add-backend/files/config.json +0 -1
  3. package/lib/generators/add-backend/files/package.json +79 -114
  4. package/lib/generators/add-backend/files/src/api/root-schema.graphqls +9 -0
  5. package/lib/generators/add-backend/files/src/config/env-config.ts.template +2 -24
  6. package/lib/generators/add-backend/files/src/service.ts.template +4 -5
  7. package/lib/generators/add-browser-package/files/package.json +47 -47
  8. package/lib/generators/add-client-package/files/package.json +28 -28
  9. package/lib/generators/add-core-package/files/package.json +28 -28
  10. package/lib/generators/add-frontend/frameworks/chakraui/entry.client.tsx.template +30 -24
  11. package/lib/generators/add-frontend/frameworks/chakraui/entry.server.tsx.template +5 -8
  12. package/lib/generators/add-frontend/frameworks/chakraui/root.tsx.template +3 -3
  13. package/lib/generators/add-frontend/templates/Dockerfile +1 -1
  14. package/lib/generators/add-frontend/templates/package.json +4 -22
  15. package/lib/generators/add-frontend/templates/src/config/public-config.ts.template +6 -0
  16. package/lib/generators/add-fullstack/files/Jenkinsfile +4 -7
  17. package/lib/generators/add-fullstack/files/package.json +346 -358
  18. package/lib/generators/add-fullstack/files/tools/deploy-cli/updateYamlSettings.js +14 -15
  19. package/lib/generators/add-fullstack/files/tools/sortPackageJson.mjs +8 -1
  20. package/lib/generators/add-fullstack/generator.cjs +22 -25
  21. package/lib/generators/add-fullstack/generator.cjs.map +1 -1
  22. package/lib/generators/add-fullstack/generator.mjs +20 -23
  23. package/lib/generators/add-fullstack/generator.mjs.map +1 -1
  24. package/lib/generators/add-fullstack/schema.json +5 -0
  25. package/lib/generators/add-fullstack/updates/index.d.ts +2 -0
  26. package/lib/generators/add-fullstack/updates/jenkinsfileUpdate.cjs +36 -0
  27. package/lib/generators/add-fullstack/updates/jenkinsfileUpdate.cjs.map +1 -0
  28. package/lib/generators/add-fullstack/updates/jenkinsfileUpdate.d.ts +1 -0
  29. package/lib/generators/add-fullstack/updates/jenkinsfileUpdate.mjs +36 -0
  30. package/lib/generators/add-fullstack/updates/jenkinsfileUpdate.mjs.map +1 -0
  31. package/lib/generators/add-fullstack/updates/packageJsonUpdate.cjs +8 -0
  32. package/lib/generators/add-fullstack/updates/packageJsonUpdate.cjs.map +1 -0
  33. package/lib/generators/add-fullstack/updates/packageJsonUpdate.d.ts +2 -0
  34. package/lib/generators/add-fullstack/updates/packageJsonUpdate.mjs +8 -0
  35. package/lib/generators/add-fullstack/updates/packageJsonUpdate.mjs.map +1 -0
  36. package/lib/generators/add-moleculer/files/Dockerfile +1 -1
  37. package/lib/generators/add-moleculer/files/package.json +6 -25
  38. package/lib/generators/add-server-package/files/package.json +3 -3
  39. package/package.json +3 -3
  40. package/src/generators/add-frontend/frameworks/chakraui/entry.client.tsx.template +30 -24
  41. package/src/generators/add-frontend/frameworks/chakraui/entry.server.tsx.template +5 -8
  42. package/src/generators/add-frontend/frameworks/chakraui/root.tsx.template +3 -3
  43. package/src/generators/add-fullstack/files/Jenkinsfile +4 -7
  44. package/src/generators/add-fullstack/files/package.json +6 -18
  45. package/src/generators/add-fullstack/files/tools/deploy-cli/updateYamlSettings.js +14 -15
  46. package/src/generators/add-fullstack/files/tools/sortPackageJson.mjs +8 -1
  47. package/src/generators/add-fullstack/generator.ts +41 -35
  48. package/src/generators/add-fullstack/schema.d.ts +2 -1
  49. package/src/generators/add-fullstack/schema.json +5 -0
  50. package/src/generators/add-fullstack/updates/index.ts +2 -0
  51. package/src/generators/add-fullstack/updates/jenkinsfileUpdate.ts +47 -0
  52. package/src/generators/add-fullstack/updates/packageJsonUpdate.ts +11 -0
  53. package/src/generators/add-moleculer/files/Dockerfile +1 -1
  54. package/src/generators/add-moleculer/files/package.json +6 -25
  55. package/lib/generators/add-backend/files/generated-schema.graphql +0 -235
  56. package/lib/generators/add-frontend/templates/public/css/dashboard.css +0 -491
  57. package/lib/generators/add-fullstack/files/jest.config copy.js +0 -27
  58. package/lib/generators/add-fullstack/files/tools/html-plugin-template.ejs +0 -28
  59. package/src/generators/add-fullstack/files/jest.config copy.js +0 -27
  60. package/src/generators/add-fullstack/files/tools/html-plugin-template.ejs +0 -28
@@ -1,235 +0,0 @@
1
- """
2
- Address City Interface
3
- """
4
- interface ICity {
5
- id: ID!
6
- name: String!
7
- state: ITerritorialState!
8
- location: GeoLocation
9
- createdAt: DateTime!
10
- updatedAt: DateTime!
11
- }
12
-
13
- """
14
- Address City Create Input
15
- """
16
- input CityInput {
17
- """
18
- Name of the state to display
19
- """
20
- name: String!
21
- """
22
- ID of State to associate
23
- """
24
- state: TerritorialStateInput!
25
- }
26
-
27
- """
28
- Address City Update Input
29
- """
30
- input CityUpdateInput {
31
- name: String
32
- state: TerritorialStateUpdateInput!
33
- }
34
-
35
- """
36
- Pub N Go Property Address City
37
- """
38
- type City implements ICity {
39
- id: ID!
40
- name: String!
41
- state: State!
42
- location: GeoLocation
43
- createdAt: DateTime!
44
- updatedAt: DateTime!
45
- }
46
-
47
- type Cities {
48
- totalCount: Int!
49
- data: [City]
50
- }
51
-
52
- input CitiesOptions {
53
- criteria: AnyObject
54
- limit: Int
55
- skip: Int
56
- sort: Sort
57
- }
58
-
59
- input CitiesInput {
60
- countryOptions: CitiesOptions
61
- stateOptions: CitiesOptions
62
- cityOptions: CitiesOptions
63
- }
64
-
65
- extend type Query {
66
- cities(input: CitiesInput): Cities!
67
- city(id: ID!): City!
68
- }
69
-
70
- extend type Mutation {
71
- createCity(propertyCity: CityInput!): City!
72
- updateCity(id: ID!, propertyCity: CityUpdateInput!): City!
73
- deleteCity(id: ID!): Boolean!
74
- }
75
-
76
- interface ICountry {
77
- id: ID!
78
- name: String!
79
- phone_code: String!
80
- currency: String
81
- currency_symbol: String
82
- emoji: String
83
- location: GeoLocation
84
- createdAt: DateTime!
85
- updatedAt: DateTime!
86
- }
87
-
88
- type Country implements ICountry {
89
- id: ID!
90
- name: String!
91
- phone_code: String!
92
- currency: String
93
- currency_symbol: String
94
- emoji: String
95
- location: GeoLocation
96
- states(criteria: AnyObject, limit: Int, skip: Int, sort: Sort): States
97
- createdAt: DateTime!
98
- updatedAt: DateTime!
99
- }
100
-
101
- input CountryInput {
102
- name: String!
103
- }
104
-
105
- type Countries {
106
- totalCount: Int!
107
- data: [Country]
108
- }
109
-
110
- extend type Query {
111
- countries(criteria: AnyObject, limit: Int, skip: Int, sort: Sort): Countries!
112
- country(id: ID!): Country!
113
- countryByName(name: String!): Country!
114
- }
115
-
116
- extend type Mutation {
117
- createCountry(country: CountryInput!): Country!
118
- updateCountry(id: ID!, country: CountryInput!): Country!
119
- deleteCountry(id: ID!): Boolean!
120
- }
121
-
122
- type Country implements ICountry{
123
- id: ID!
124
- name: String!
125
- phone_code: String!
126
- currency: String
127
- currency_symbol: String
128
- emoji: String
129
- location: GeoLocation
130
- states(criteria: AnyObject, limit: Int, skip: Int, sort: Sort): States
131
- createdAt: DateTime!
132
- updatedAt: DateTime!
133
- }
134
-
135
- type Countries {
136
- totalCount: Int!
137
- data: [Country]
138
- }
139
-
140
- extend type Query {
141
- countries(criteria: AnyObject, limit: Int, skip: Int, sort: Sort): Countries!
142
- country(id: ID!): Country!
143
- countryByName(name: String!): Country!
144
- }
145
-
146
- extend type Mutation {
147
- createCountry(country: CountryInput!): Country!
148
- updateCountry(id: ID!, country: CountryInput!): Country!
149
- deleteCountry(id: ID!): Boolean!
150
- }
151
- """
152
- Territorial State
153
- """
154
- interface ITerritorialState {
155
- id: ID!
156
- name: String!
157
- country: ICountry!
158
- location: GeoLocation
159
- createdAt: DateTime!
160
- updatedAt: DateTime!
161
- }
162
-
163
- """
164
- Address State Create Input
165
- """
166
- input TerritorialStateInput {
167
- """
168
- Name of the country to display
169
- """
170
- name: String!
171
- """
172
- ID of Country to associate
173
- """
174
- country: String!
175
- }
176
-
177
- """
178
- Address State Update Input
179
- """
180
- input TerritorialStateUpdateInput {
181
- name: String
182
- country: Int!
183
- }
184
-
185
-
186
- """
187
- Address State
188
- """
189
- type State implements ITerritorialState{
190
- id: ID!
191
- name: String!
192
- country: Country!
193
- cities(criteria: AnyObject, limit: Int, skip: Int, sort: Sort): Cities!
194
- location: GeoLocation
195
- createdAt: DateTime!
196
- updatedAt: DateTime!
197
- }
198
-
199
- """
200
- Address State Create Input
201
- """
202
- input StateInput {
203
- """
204
- Name of the country to display
205
- """
206
- name: String!
207
- """
208
- ID of Country to associate
209
- """
210
- country: String!
211
- }
212
-
213
- """
214
- Address State Update Input
215
- """
216
- input StateUpdateInput {
217
- name: String
218
- country: String!
219
- }
220
-
221
- type States {
222
- totalCount: Int!
223
- data: [State]
224
- }
225
-
226
- extend type Query {
227
- states(criteria: AnyObject, limit: Int, skip: Int, sort: Sort): States!
228
- state(id: ID!): State!
229
- }
230
-
231
- extend type Mutation {
232
- createState(state: StateInput!): State!
233
- updateState(id: ID!, state: StateUpdateInput!): State!
234
- deleteState(id: ID!): Boolean!
235
- }
@@ -1,491 +0,0 @@
1
- table {
2
- background-color: transparent;
3
- }
4
- caption {
5
- padding-top: 8px;
6
- padding-bottom: 8px;
7
- color: #777777;
8
- text-align: left;
9
- }
10
- th {
11
- text-align: left;
12
- }
13
- .table {
14
- width: 100%;
15
- max-width: 100%;
16
- margin-bottom: 20px;
17
- }
18
- .table > thead > tr > th,
19
- .table > tbody > tr > th,
20
- .table > tfoot > tr > th,
21
- .table > thead > tr > td,
22
- .table > tbody > tr > td,
23
- .table > tfoot > tr > td {
24
- padding: 8px;
25
- line-height: 1.42857143;
26
- vertical-align: top;
27
- border-top: 1px solid #dddddd;
28
- }
29
- .table > thead > tr > th {
30
- vertical-align: bottom;
31
- border-bottom: 2px solid #dddddd;
32
- }
33
- .table > caption + thead > tr:first-child > th,
34
- .table > colgroup + thead > tr:first-child > th,
35
- .table > thead:first-child > tr:first-child > th,
36
- .table > caption + thead > tr:first-child > td,
37
- .table > colgroup + thead > tr:first-child > td,
38
- .table > thead:first-child > tr:first-child > td {
39
- border-top: 0;
40
- }
41
- .table > tbody + tbody {
42
- border-top: 2px solid #dddddd;
43
- }
44
- .table .table {
45
- background-color: #ffffff;
46
- }
47
- .table-condensed > thead > tr > th,
48
- .table-condensed > tbody > tr > th,
49
- .table-condensed > tfoot > tr > th,
50
- .table-condensed > thead > tr > td,
51
- .table-condensed > tbody > tr > td,
52
- .table-condensed > tfoot > tr > td {
53
- padding: 5px;
54
- }
55
- .table-bordered {
56
- border: 1px solid #dddddd;
57
- }
58
- .table-bordered > thead > tr > th,
59
- .table-bordered > tbody > tr > th,
60
- .table-bordered > tfoot > tr > th,
61
- .table-bordered > thead > tr > td,
62
- .table-bordered > tbody > tr > td,
63
- .table-bordered > tfoot > tr > td {
64
- border: 1px solid #dddddd;
65
- }
66
- .table-bordered > thead > tr > th,
67
- .table-bordered > thead > tr > td {
68
- border-bottom-width: 2px;
69
- }
70
- .table-striped > tbody > tr:nth-of-type(odd) {
71
- background-color: #f9f9f9;
72
- }
73
- .table-hover > tbody > tr:hover {
74
- background-color: #f5f5f5;
75
- }
76
- table col[class*="col-"] {
77
- position: static;
78
- float: none;
79
- display: table-column;
80
- }
81
- table td[class*="col-"],
82
- table th[class*="col-"] {
83
- position: static;
84
- float: none;
85
- display: table-cell;
86
- }
87
- .table > thead > tr > td.active,
88
- .table > tbody > tr > td.active,
89
- .table > tfoot > tr > td.active,
90
- .table > thead > tr > th.active,
91
- .table > tbody > tr > th.active,
92
- .table > tfoot > tr > th.active,
93
- .table > thead > tr.active > td,
94
- .table > tbody > tr.active > td,
95
- .table > tfoot > tr.active > td,
96
- .table > thead > tr.active > th,
97
- .table > tbody > tr.active > th,
98
- .table > tfoot > tr.active > th {
99
- background-color: #f5f5f5;
100
- }
101
- .table-hover > tbody > tr > td.active:hover,
102
- .table-hover > tbody > tr > th.active:hover,
103
- .table-hover > tbody > tr.active:hover > td,
104
- .table-hover > tbody > tr:hover > .active,
105
- .table-hover > tbody > tr.active:hover > th {
106
- background-color: #e8e8e8;
107
- }
108
- .table > thead > tr > td.success,
109
- .table > tbody > tr > td.success,
110
- .table > tfoot > tr > td.success,
111
- .table > thead > tr > th.success,
112
- .table > tbody > tr > th.success,
113
- .table > tfoot > tr > th.success,
114
- .table > thead > tr.success > td,
115
- .table > tbody > tr.success > td,
116
- .table > tfoot > tr.success > td,
117
- .table > thead > tr.success > th,
118
- .table > tbody > tr.success > th,
119
- .table > tfoot > tr.success > th {
120
- background-color: #dff0d8;
121
- }
122
- .table-hover > tbody > tr > td.success:hover,
123
- .table-hover > tbody > tr > th.success:hover,
124
- .table-hover > tbody > tr.success:hover > td,
125
- .table-hover > tbody > tr:hover > .success,
126
- .table-hover > tbody > tr.success:hover > th {
127
- background-color: #d0e9c6;
128
- }
129
- .table > thead > tr > td.info,
130
- .table > tbody > tr > td.info,
131
- .table > tfoot > tr > td.info,
132
- .table > thead > tr > th.info,
133
- .table > tbody > tr > th.info,
134
- .table > tfoot > tr > th.info,
135
- .table > thead > tr.info > td,
136
- .table > tbody > tr.info > td,
137
- .table > tfoot > tr.info > td,
138
- .table > thead > tr.info > th,
139
- .table > tbody > tr.info > th,
140
- .table > tfoot > tr.info > th {
141
- background-color: #d9edf7;
142
- }
143
- .table-hover > tbody > tr > td.info:hover,
144
- .table-hover > tbody > tr > th.info:hover,
145
- .table-hover > tbody > tr.info:hover > td,
146
- .table-hover > tbody > tr:hover > .info,
147
- .table-hover > tbody > tr.info:hover > th {
148
- background-color: #c4e3f3;
149
- }
150
- .table > thead > tr > td.warning,
151
- .table > tbody > tr > td.warning,
152
- .table > tfoot > tr > td.warning,
153
- .table > thead > tr > th.warning,
154
- .table > tbody > tr > th.warning,
155
- .table > tfoot > tr > th.warning,
156
- .table > thead > tr.warning > td,
157
- .table > tbody > tr.warning > td,
158
- .table > tfoot > tr.warning > td,
159
- .table > thead > tr.warning > th,
160
- .table > tbody > tr.warning > th,
161
- .table > tfoot > tr.warning > th {
162
- background-color: #fcf8e3;
163
- }
164
- .table-hover > tbody > tr > td.warning:hover,
165
- .table-hover > tbody > tr > th.warning:hover,
166
- .table-hover > tbody > tr.warning:hover > td,
167
- .table-hover > tbody > tr:hover > .warning,
168
- .table-hover > tbody > tr.warning:hover > th {
169
- background-color: #faf2cc;
170
- }
171
- .table > thead > tr > td.danger,
172
- .table > tbody > tr > td.danger,
173
- .table > tfoot > tr > td.danger,
174
- .table > thead > tr > th.danger,
175
- .table > tbody > tr > th.danger,
176
- .table > tfoot > tr > th.danger,
177
- .table > thead > tr.danger > td,
178
- .table > tbody > tr.danger > td,
179
- .table > tfoot > tr.danger > td,
180
- .table > thead > tr.danger > th,
181
- .table > tbody > tr.danger > th,
182
- .table > tfoot > tr.danger > th {
183
- background-color: #f2dede;
184
- }
185
- .table-hover > tbody > tr > td.danger:hover,
186
- .table-hover > tbody > tr > th.danger:hover,
187
- .table-hover > tbody > tr.danger:hover > td,
188
- .table-hover > tbody > tr:hover > .danger,
189
- .table-hover > tbody > tr.danger:hover > th {
190
- background-color: #ebcccc;
191
- }
192
- .table-responsive {
193
- overflow-x: auto;
194
- min-height: 0.01%;
195
- }
196
- @media screen and (max-width: 767px) {
197
- .table-responsive {
198
- width: 100%;
199
- margin-bottom: 15px;
200
- overflow-y: hidden;
201
- -ms-overflow-style: -ms-autohiding-scrollbar;
202
- border: 1px solid #dddddd;
203
- }
204
- .table-responsive > .table {
205
- margin-bottom: 0;
206
- }
207
- .table-responsive > .table > thead > tr > th,
208
- .table-responsive > .table > tbody > tr > th,
209
- .table-responsive > .table > tfoot > tr > th,
210
- .table-responsive > .table > thead > tr > td,
211
- .table-responsive > .table > tbody > tr > td,
212
- .table-responsive > .table > tfoot > tr > td {
213
- white-space: nowrap;
214
- }
215
- .table-responsive > .table-bordered {
216
- border: 0;
217
- }
218
- .table-responsive > .table-bordered > thead > tr > th:first-child,
219
- .table-responsive > .table-bordered > tbody > tr > th:first-child,
220
- .table-responsive > .table-bordered > tfoot > tr > th:first-child,
221
- .table-responsive > .table-bordered > thead > tr > td:first-child,
222
- .table-responsive > .table-bordered > tbody > tr > td:first-child,
223
- .table-responsive > .table-bordered > tfoot > tr > td:first-child {
224
- border-left: 0;
225
- }
226
- .table-responsive > .table-bordered > thead > tr > th:last-child,
227
- .table-responsive > .table-bordered > tbody > tr > th:last-child,
228
- .table-responsive > .table-bordered > tfoot > tr > th:last-child,
229
- .table-responsive > .table-bordered > thead > tr > td:last-child,
230
- .table-responsive > .table-bordered > tbody > tr > td:last-child,
231
- .table-responsive > .table-bordered > tfoot > tr > td:last-child {
232
- border-right: 0;
233
- }
234
- .table-responsive > .table-bordered > tbody > tr:last-child > th,
235
- .table-responsive > .table-bordered > tfoot > tr:last-child > th,
236
- .table-responsive > .table-bordered > tbody > tr:last-child > td,
237
- .table-responsive > .table-bordered > tfoot > tr:last-child > td {
238
- border-bottom: 0;
239
- }
240
- }
241
- .clearfix:before,
242
- .clearfix:after {
243
- content: " ";
244
- display: table;
245
- }
246
- .clearfix:after {
247
- clear: both;
248
- }
249
- .center-block {
250
- display: block;
251
- margin-left: auto;
252
- margin-right: auto;
253
- }
254
- .pull-right {
255
- float: right !important;
256
- }
257
- .pull-left {
258
- float: left !important;
259
- }
260
- .hide {
261
- display: none !important;
262
- }
263
- .show {
264
- display: block !important;
265
- }
266
- .invisible {
267
- visibility: hidden;
268
- }
269
- .text-hide {
270
- font: 0/0 a;
271
- color: transparent;
272
- text-shadow: none;
273
- background-color: transparent;
274
- border: 0;
275
- }
276
- .hidden {
277
- display: none !important;
278
- }
279
- .affix {
280
- position: fixed;
281
- }
282
- @-ms-viewport {
283
- width: device-width;
284
- }
285
- .visible-xs,
286
- .visible-sm,
287
- .visible-md,
288
- .visible-lg {
289
- display: none !important;
290
- }
291
- .visible-xs-block,
292
- .visible-xs-inline,
293
- .visible-xs-inline-block,
294
- .visible-sm-block,
295
- .visible-sm-inline,
296
- .visible-sm-inline-block,
297
- .visible-md-block,
298
- .visible-md-inline,
299
- .visible-md-inline-block,
300
- .visible-lg-block,
301
- .visible-lg-inline,
302
- .visible-lg-inline-block {
303
- display: none !important;
304
- }
305
- @media (max-width: 767px) {
306
- .visible-xs {
307
- display: block !important;
308
- }
309
- table.visible-xs {
310
- display: table !important;
311
- }
312
- tr.visible-xs {
313
- display: table-row !important;
314
- }
315
- th.visible-xs,
316
- td.visible-xs {
317
- display: table-cell !important;
318
- }
319
- }
320
- @media (max-width: 767px) {
321
- .visible-xs-block {
322
- display: block !important;
323
- }
324
- }
325
- @media (max-width: 767px) {
326
- .visible-xs-inline {
327
- display: inline !important;
328
- }
329
- }
330
- @media (max-width: 767px) {
331
- .visible-xs-inline-block {
332
- display: inline-block !important;
333
- }
334
- }
335
- @media (min-width: 768px) and (max-width: 991px) {
336
- .visible-sm {
337
- display: block !important;
338
- }
339
- table.visible-sm {
340
- display: table !important;
341
- }
342
- tr.visible-sm {
343
- display: table-row !important;
344
- }
345
- th.visible-sm,
346
- td.visible-sm {
347
- display: table-cell !important;
348
- }
349
- }
350
- @media (min-width: 768px) and (max-width: 991px) {
351
- .visible-sm-block {
352
- display: block !important;
353
- }
354
- }
355
- @media (min-width: 768px) and (max-width: 991px) {
356
- .visible-sm-inline {
357
- display: inline !important;
358
- }
359
- }
360
- @media (min-width: 768px) and (max-width: 991px) {
361
- .visible-sm-inline-block {
362
- display: inline-block !important;
363
- }
364
- }
365
- @media (min-width: 992px) and (max-width: 1199px) {
366
- .visible-md {
367
- display: block !important;
368
- }
369
- table.visible-md {
370
- display: table !important;
371
- }
372
- tr.visible-md {
373
- display: table-row !important;
374
- }
375
- th.visible-md,
376
- td.visible-md {
377
- display: table-cell !important;
378
- }
379
- }
380
- @media (min-width: 992px) and (max-width: 1199px) {
381
- .visible-md-block {
382
- display: block !important;
383
- }
384
- }
385
- @media (min-width: 992px) and (max-width: 1199px) {
386
- .visible-md-inline {
387
- display: inline !important;
388
- }
389
- }
390
- @media (min-width: 992px) and (max-width: 1199px) {
391
- .visible-md-inline-block {
392
- display: inline-block !important;
393
- }
394
- }
395
- @media (min-width: 1200px) {
396
- .visible-lg {
397
- display: block !important;
398
- }
399
- table.visible-lg {
400
- display: table !important;
401
- }
402
- tr.visible-lg {
403
- display: table-row !important;
404
- }
405
- th.visible-lg,
406
- td.visible-lg {
407
- display: table-cell !important;
408
- }
409
- }
410
- @media (min-width: 1200px) {
411
- .visible-lg-block {
412
- display: block !important;
413
- }
414
- }
415
- @media (min-width: 1200px) {
416
- .visible-lg-inline {
417
- display: inline !important;
418
- }
419
- }
420
- @media (min-width: 1200px) {
421
- .visible-lg-inline-block {
422
- display: inline-block !important;
423
- }
424
- }
425
- @media (max-width: 767px) {
426
- .hidden-xs {
427
- display: none !important;
428
- }
429
- }
430
- @media (min-width: 768px) and (max-width: 991px) {
431
- .hidden-sm {
432
- display: none !important;
433
- }
434
- }
435
- @media (min-width: 992px) and (max-width: 1199px) {
436
- .hidden-md {
437
- display: none !important;
438
- }
439
- }
440
- @media (min-width: 1200px) {
441
- .hidden-lg {
442
- display: none !important;
443
- }
444
- }
445
- .visible-print {
446
- display: none !important;
447
- }
448
- @media print {
449
- .visible-print {
450
- display: block !important;
451
- }
452
- table.visible-print {
453
- display: table !important;
454
- }
455
- tr.visible-print {
456
- display: table-row !important;
457
- }
458
- th.visible-print,
459
- td.visible-print {
460
- display: table-cell !important;
461
- }
462
- }
463
- .visible-print-block {
464
- display: none !important;
465
- }
466
- @media print {
467
- .visible-print-block {
468
- display: block !important;
469
- }
470
- }
471
- .visible-print-inline {
472
- display: none !important;
473
- }
474
- @media print {
475
- .visible-print-inline {
476
- display: inline !important;
477
- }
478
- }
479
- .visible-print-inline-block {
480
- display: none !important;
481
- }
482
- @media print {
483
- .visible-print-inline-block {
484
- display: inline-block !important;
485
- }
486
- }
487
- @media print {
488
- .hidden-print {
489
- display: none !important;
490
- }
491
- }