at-builder 1.0.11 → 1.1.1

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/.eslintrc DELETED
@@ -1,525 +0,0 @@
1
- {
2
- "parser": "@babel/eslint-parser",
3
- "parserOptions": {
4
- "ecmaVersion": "latest",
5
- "sourceType": "module",
6
- "es6": true
7
- },
8
- "env": {
9
- "es2021": true,
10
- "browser": true,
11
- "jquery": true
12
- },
13
- "globals": {
14
- "document": "readonly",
15
- "navigator": "readonly",
16
- "window": "readonly",
17
- "utag_data": "readonly",
18
- "utag": "readonly"
19
- },
20
- "ignorePatterns": [
21
- "webpack.config.js",
22
- "puppeteer.js",
23
- "plopfile.js",
24
- "build.js",
25
- "babel.config.js",
26
- "at-build-generator.js"
27
- ],
28
- "rules": {
29
- "no-var": "warn",
30
- "accessor-pairs": [
31
- "error",
32
- {
33
- "setWithoutGet": true,
34
- "enforceForClassMembers": true
35
- }
36
- ],
37
- "array-bracket-spacing": [
38
- "error",
39
- "never"
40
- ],
41
- "array-callback-return": [
42
- "error",
43
- {
44
- "allowImplicit": false,
45
- "checkForEach": false
46
- }
47
- ],
48
- "arrow-spacing": [
49
- "error",
50
- {
51
- "before": true,
52
- "after": true
53
- }
54
- ],
55
- "block-spacing": [
56
- "error",
57
- "always"
58
- ],
59
- "brace-style": [
60
- "error",
61
- "1tbs",
62
- {
63
- "allowSingleLine": true
64
- }
65
- ],
66
- "camelcase": [
67
- "error",
68
- {
69
- "allow": [
70
- "^UNSAFE_"
71
- ],
72
- "properties": "never",
73
- "ignoreGlobals": true
74
- }
75
- ],
76
- "comma-dangle": [
77
- "error",
78
- {
79
- "arrays": "never",
80
- "objects": "never",
81
- "imports": "never",
82
- "exports": "never",
83
- "functions": "never"
84
- }
85
- ],
86
- "comma-spacing": [
87
- "error",
88
- {
89
- "before": false,
90
- "after": true
91
- }
92
- ],
93
- "comma-style": [
94
- "error",
95
- "last"
96
- ],
97
- "computed-property-spacing": [
98
- "error",
99
- "never",
100
- {
101
- "enforceForClassMembers": true
102
- }
103
- ],
104
- "constructor-super": "error",
105
- "curly": [
106
- "error",
107
- "multi-line"
108
- ],
109
- "default-case-last": "error",
110
- "dot-location": [
111
- "error",
112
- "property"
113
- ],
114
- "dot-notation": [
115
- "error",
116
- {
117
- "allowKeywords": true
118
- }
119
- ],
120
- "eol-last": "warn",
121
- "eqeqeq": [
122
- "error",
123
- "always",
124
- {
125
- "null": "ignore"
126
- }
127
- ],
128
- "func-call-spacing": [
129
- "error",
130
- "never"
131
- ],
132
- "generator-star-spacing": [
133
- "error",
134
- {
135
- "before": true,
136
- "after": true
137
- }
138
- ],
139
- "indent": [
140
- "error",
141
- 4
142
- ],
143
- "key-spacing": [
144
- "error",
145
- {
146
- "beforeColon": false,
147
- "afterColon": true
148
- }
149
- ],
150
- "keyword-spacing": [
151
- "error",
152
- {
153
- "before": true,
154
- "after": true
155
- }
156
- ],
157
- "lines-between-class-members": [
158
- "error",
159
- "always",
160
- {
161
- "exceptAfterSingleLine": true
162
- }
163
- ],
164
- "multiline-ternary": [
165
- "error",
166
- "always-multiline"
167
- ],
168
- "new-cap": [
169
- "error",
170
- {
171
- "newIsCap": true,
172
- "capIsNew": false,
173
- "properties": true
174
- }
175
- ],
176
- "new-parens": "error",
177
- "no-array-constructor": "error",
178
- "no-async-promise-executor": "error",
179
- "no-caller": "error",
180
- "no-case-declarations": "error",
181
- "no-class-assign": "error",
182
- "no-compare-neg-zero": "error",
183
- "no-cond-assign": "error",
184
- "no-const-assign": "error",
185
- "no-constant-condition": [
186
- "error",
187
- {
188
- "checkLoops": false
189
- }
190
- ],
191
- "no-control-regex": "error",
192
- "no-debugger": "off",
193
- "no-delete-var": "error",
194
- "no-dupe-args": "error",
195
- "no-dupe-class-members": "error",
196
- "no-dupe-keys": "error",
197
- "no-duplicate-case": "error",
198
- "no-useless-backreference": "error",
199
- "no-empty": [
200
- "error",
201
- {
202
- "allowEmptyCatch": true
203
- }
204
- ],
205
- "no-empty-character-class": "error",
206
- "no-empty-pattern": "error",
207
- "no-eval": "error",
208
- "no-ex-assign": "error",
209
- "no-extend-native": "error",
210
- "no-extra-bind": "error",
211
- "no-extra-boolean-cast": "error",
212
- "no-extra-parens": [
213
- "error",
214
- "functions"
215
- ],
216
- "no-fallthrough": "error",
217
- "no-floating-decimal": "error",
218
- "no-func-assign": "error",
219
- "no-global-assign": "error",
220
- "no-implied-eval": "error",
221
- "no-import-assign": "error",
222
- "no-invalid-regexp": "error",
223
- "no-irregular-whitespace": "error",
224
- "no-iterator": "error",
225
- "no-labels": [
226
- "error",
227
- {
228
- "allowLoop": false,
229
- "allowSwitch": false
230
- }
231
- ],
232
- "no-lone-blocks": "error",
233
- "no-loss-of-precision": "error",
234
- "no-misleading-character-class": "error",
235
- "no-prototype-builtins": "error",
236
- "no-useless-catch": "error",
237
- "no-mixed-operators": [
238
- "error",
239
- {
240
- "groups": [
241
- [
242
- "==",
243
- "!=",
244
- "===",
245
- "!==",
246
- ">",
247
- ">=",
248
- "<",
249
- "<="
250
- ],
251
- [
252
- "&&",
253
- "||"
254
- ],
255
- [
256
- "in",
257
- "instanceof"
258
- ]
259
- ],
260
- "allowSamePrecedence": true
261
- }
262
- ],
263
- "no-mixed-spaces-and-tabs": "error",
264
- "no-multi-spaces": "error",
265
- "no-multi-str": "error",
266
- "no-multiple-empty-lines": [
267
- "error",
268
- {
269
- "max": 1,
270
- "maxEOF": 0
271
- }
272
- ],
273
- "no-new": "error",
274
- "no-new-func": "error",
275
- "no-new-object": "error",
276
- "no-new-symbol": "error",
277
- "no-new-wrappers": "error",
278
- "no-obj-calls": "error",
279
- "no-octal": "error",
280
- "no-octal-escape": "error",
281
- "no-proto": "error",
282
- "no-redeclare": [
283
- "error",
284
- {
285
- "builtinGlobals": false
286
- }
287
- ],
288
- "no-regex-spaces": "error",
289
- "no-return-assign": [
290
- "error",
291
- "except-parens"
292
- ],
293
- "no-self-assign": [
294
- "error",
295
- {
296
- "props": true
297
- }
298
- ],
299
- "no-self-compare": "error",
300
- "no-sequences": "error",
301
- "no-shadow-restricted-names": "error",
302
- "no-sparse-arrays": "error",
303
- "no-tabs": "error",
304
- "no-template-curly-in-string": "error",
305
- "no-this-before-super": "error",
306
- "no-throw-literal": "error",
307
- "no-trailing-spaces": "error",
308
- "no-undef": "error",
309
- "no-undef-init": "error",
310
- "no-unexpected-multiline": "error",
311
- "no-unmodified-loop-condition": "error",
312
- "no-unneeded-ternary": [
313
- "error",
314
- {
315
- "defaultAssignment": false
316
- }
317
- ],
318
- "no-unreachable": "error",
319
- "no-unreachable-loop": "error",
320
- "no-unsafe-finally": "error",
321
- "no-unsafe-negation": "error",
322
- "no-unused-expressions": [
323
- "error",
324
- {
325
- "allowShortCircuit": true,
326
- "allowTernary": true,
327
- "allowTaggedTemplates": true
328
- }
329
- ],
330
- "no-unused-vars": [
331
- "error",
332
- {
333
- "args": "none",
334
- "caughtErrors": "none",
335
- "ignoreRestSiblings": true,
336
- "vars": "all"
337
- }
338
- ],
339
- "no-use-before-define": [
340
- "error",
341
- {
342
- "functions": false,
343
- "classes": false,
344
- "variables": false
345
- }
346
- ],
347
- "no-useless-call": "error",
348
- "no-useless-computed-key": "error",
349
- "no-useless-constructor": "error",
350
- "no-useless-escape": "error",
351
- "no-useless-rename": "error",
352
- "no-useless-return": "error",
353
- "no-void": "error",
354
- "no-whitespace-before-property": "error",
355
- "no-with": "error",
356
- "object-curly-newline": [
357
- "error",
358
- {
359
- "multiline": true,
360
- "consistent": true
361
- }
362
- ],
363
- "object-curly-spacing": [
364
- "error",
365
- "always"
366
- ],
367
- "object-property-newline": [
368
- "error",
369
- {
370
- "allowMultiplePropertiesPerLine": true
371
- }
372
- ],
373
- "one-var": [
374
- "error",
375
- {
376
- "initialized": "never"
377
- }
378
- ],
379
- "operator-linebreak": [
380
- "error",
381
- "after",
382
- {
383
- "overrides": {
384
- "?": "before",
385
- ":": "before",
386
- "|>": "before"
387
- }
388
- }
389
- ],
390
- "padded-blocks": [
391
- "error",
392
- {
393
- "blocks": "never",
394
- "switches": "never",
395
- "classes": "never"
396
- }
397
- ],
398
- "prefer-const": [
399
- "error",
400
- {
401
- "destructuring": "all"
402
- }
403
- ],
404
- "prefer-promise-reject-errors": "error",
405
- "prefer-regex-literals": [
406
- "error",
407
- {
408
- "disallowRedundantWrapping": true
409
- }
410
- ],
411
- "quote-props": [
412
- "error",
413
- "as-needed"
414
- ],
415
- "quotes": [
416
- "error",
417
- "single",
418
- {
419
- "avoidEscape": true,
420
- "allowTemplateLiterals": false
421
- }
422
- ],
423
- "rest-spread-spacing": [
424
- "error",
425
- "never"
426
- ],
427
- "semi-spacing": [
428
- "error",
429
- {
430
- "before": false,
431
- "after": true
432
- }
433
- ],
434
- "space-before-blocks": [
435
- "off",
436
- "always"
437
- ],
438
- "space-before-function-paren": [
439
- "off",
440
- "always"
441
- ],
442
- "space-in-parens": [
443
- "error",
444
- "never"
445
- ],
446
- "space-infix-ops": "error",
447
- "space-unary-ops": [
448
- "error",
449
- {
450
- "words": true,
451
- "nonwords": false
452
- }
453
- ],
454
- "spaced-comment": [
455
- "error",
456
- "always",
457
- {
458
- "line": {
459
- "markers": [
460
- "*package",
461
- "!",
462
- "/",
463
- ",",
464
- "="
465
- ]
466
- },
467
- "block": {
468
- "balanced": true,
469
- "markers": [
470
- "*package",
471
- "!",
472
- ",",
473
- ":",
474
- "::",
475
- "flow-include"
476
- ],
477
- "exceptions": [
478
- "*"
479
- ]
480
- }
481
- }
482
- ],
483
- "symbol-description": "error",
484
- "template-curly-spacing": [
485
- "error",
486
- "never"
487
- ],
488
- "template-tag-spacing": [
489
- "error",
490
- "never"
491
- ],
492
- "unicode-bom": [
493
- "error",
494
- "never"
495
- ],
496
- "use-isnan": [
497
- "error",
498
- {
499
- "enforceForSwitchCase": true,
500
- "enforceForIndexOf": true
501
- }
502
- ],
503
- "valid-typeof": [
504
- "error",
505
- {
506
- "requireStringLiterals": true
507
- }
508
- ],
509
- "wrap-iife": [
510
- "error",
511
- "any",
512
- {
513
- "functionPrototypeMethods": true
514
- }
515
- ],
516
- "yield-star-spacing": [
517
- "error",
518
- "both"
519
- ],
520
- "yoda": [
521
- "error",
522
- "never"
523
- ]
524
- }
525
- }
@@ -1,28 +0,0 @@
1
- $gs-23:#FFFFFF;
2
- $gs-22:#FCFCFC;
3
- $gs-21:#FAFAFA;
4
- $gs-20:#F7F7F7;
5
- $gs-19:#F5F5F5;
6
- $gs-18:#F2F2F2;
7
- $gs-17:#F0F0F0;
8
- $gs-16:#EDEDED;
9
- $gs-15:#EBEBEB;
10
- $gs-14:#EBEBEB;
11
- $gs-13:#DBDBDB;
12
- $gs-12:#CCCCCC;
13
- $gs-11:#BABABA;
14
- $gs-10:#A8A8A8;
15
- $gs-9:#999999;
16
- $gs-8:#878787;
17
- $gs-7:#787878;
18
- $gs-6:#666666;
19
- $gs-5:#575757;
20
- $gs-4:#454545;
21
- $gs-3:#333333;
22
- $gs-2:#212121;
23
- $gs-1:#000000;
24
- $color-theme:#D10157;
25
- $color-error:#dc3545;
26
- $color-secondary:darken(#3CBDC9,18%);
27
- $color-success:#28a745;
28
- $color-btn-primary:#007BFE;
@@ -1,76 +0,0 @@
1
- //box-shadow
2
- @mixin box-shadow($shadows...) {
3
- box-shadow: $shadows;
4
- -webkit-box-shadow:$shadows;
5
- }
6
-
7
- // font-size
8
- @mixin font-size($size:70%) {
9
- font-size: $size;
10
- }
11
-
12
-
13
- //background
14
- @mixin bg-opacity($color, $opacity:1) {
15
- background: rgba($color, $opacity);
16
- }
17
-
18
- //margins
19
- @mixin margin($top:0,$right:0,$bottom:0,$left:0) {
20
- @if ($top == 0 and $right == 0 and $bottom == 0 and $left == 0) {
21
- margin: 0;
22
- } @else{
23
- margin: $top $right $bottom $left;
24
- }
25
- }
26
-
27
-
28
- /****************************************/
29
- /******Mixin for differnt screens********/
30
-
31
-
32
- //Small devices (landscape phones, 576px and up)
33
- @mixin small-screen {
34
- @media screen and (min-width:576px) {
35
- @content;
36
- }
37
- }
38
-
39
-
40
- //Medium devices (tablets, 768px and up)
41
- @mixin medium-screen {
42
- @media screen and (min-width:768px) {
43
- @content;
44
- }
45
- }
46
- // Large devices (desktops, 992px and up)
47
- @mixin large-screen {
48
- @media screen and (min-width:992px) {
49
- @content;
50
- }
51
- }
52
-
53
- //Extra large devices (large desktops, 1200px and up)
54
- @mixin extra-large-screen {
55
- @media screen and (min-width:1200px) {
56
- @content;
57
- }
58
- }
59
-
60
- @mixin range-of-screen($min:320px,$max:480px) {
61
- @media (min-width: $min) and (max-width: $max) {
62
- @content;
63
- }
64
- }
65
-
66
- @mixin custom-max-width($max:767px) {
67
- @media screen and (max-width:$max) {
68
- @content;
69
- }
70
- }
71
-
72
- @mixin custom-min-width($min:768px) {
73
- @media screen and (min-width:$min) {
74
- @content;
75
- }
76
- }