@norges-domstoler/dds-components 0.0.18 → 0.0.19
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/dist/index.es.js +137 -226
- package/dist/index.js +137 -226
- package/package.json +2 -2
package/dist/index.es.js
CHANGED
|
@@ -400,11 +400,11 @@ object-assign
|
|
|
400
400
|
@license MIT
|
|
401
401
|
*/
|
|
402
402
|
/* eslint-disable no-unused-vars */
|
|
403
|
-
var getOwnPropertySymbols$
|
|
404
|
-
var hasOwnProperty$
|
|
405
|
-
var propIsEnumerable
|
|
403
|
+
var getOwnPropertySymbols$1 = Object.getOwnPropertySymbols;
|
|
404
|
+
var hasOwnProperty$1 = Object.prototype.hasOwnProperty;
|
|
405
|
+
var propIsEnumerable = Object.prototype.propertyIsEnumerable;
|
|
406
406
|
|
|
407
|
-
function toObject
|
|
407
|
+
function toObject(val) {
|
|
408
408
|
if (val === null || val === undefined) {
|
|
409
409
|
throw new TypeError('Object.assign cannot be called with null or undefined');
|
|
410
410
|
}
|
|
@@ -412,7 +412,7 @@ function toObject$1(val) {
|
|
|
412
412
|
return Object(val);
|
|
413
413
|
}
|
|
414
414
|
|
|
415
|
-
function shouldUseNative
|
|
415
|
+
function shouldUseNative() {
|
|
416
416
|
try {
|
|
417
417
|
if (!Object.assign) {
|
|
418
418
|
return false;
|
|
@@ -456,24 +456,24 @@ function shouldUseNative$1() {
|
|
|
456
456
|
}
|
|
457
457
|
}
|
|
458
458
|
|
|
459
|
-
var objectAssign
|
|
459
|
+
var objectAssign = shouldUseNative() ? Object.assign : function (target, source) {
|
|
460
460
|
var from;
|
|
461
|
-
var to = toObject
|
|
461
|
+
var to = toObject(target);
|
|
462
462
|
var symbols;
|
|
463
463
|
|
|
464
464
|
for (var s = 1; s < arguments.length; s++) {
|
|
465
465
|
from = Object(arguments[s]);
|
|
466
466
|
|
|
467
467
|
for (var key in from) {
|
|
468
|
-
if (hasOwnProperty$
|
|
468
|
+
if (hasOwnProperty$1.call(from, key)) {
|
|
469
469
|
to[key] = from[key];
|
|
470
470
|
}
|
|
471
471
|
}
|
|
472
472
|
|
|
473
|
-
if (getOwnPropertySymbols$
|
|
474
|
-
symbols = getOwnPropertySymbols$
|
|
473
|
+
if (getOwnPropertySymbols$1) {
|
|
474
|
+
symbols = getOwnPropertySymbols$1(from);
|
|
475
475
|
for (var i = 0; i < symbols.length; i++) {
|
|
476
|
-
if (propIsEnumerable
|
|
476
|
+
if (propIsEnumerable.call(from, symbols[i])) {
|
|
477
477
|
to[symbols[i]] = from[symbols[i]];
|
|
478
478
|
}
|
|
479
479
|
}
|
|
@@ -512,7 +512,7 @@ if (process.env.NODE_ENV !== "production") {
|
|
|
512
512
|
(function() {
|
|
513
513
|
|
|
514
514
|
var React = React__default;
|
|
515
|
-
var _assign = objectAssign
|
|
515
|
+
var _assign = objectAssign;
|
|
516
516
|
|
|
517
517
|
// ATTENTION
|
|
518
518
|
// When adding new symbols to this file,
|
|
@@ -2979,7 +2979,7 @@ function getStatics(component) {
|
|
|
2979
2979
|
|
|
2980
2980
|
var defineProperty = Object.defineProperty;
|
|
2981
2981
|
var getOwnPropertyNames = Object.getOwnPropertyNames;
|
|
2982
|
-
var getOwnPropertySymbols
|
|
2982
|
+
var getOwnPropertySymbols = Object.getOwnPropertySymbols;
|
|
2983
2983
|
var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
|
|
2984
2984
|
var getPrototypeOf = Object.getPrototypeOf;
|
|
2985
2985
|
var objectPrototype = Object.prototype;
|
|
@@ -2996,8 +2996,8 @@ function hoistNonReactStatics(targetComponent, sourceComponent, blacklist) {
|
|
|
2996
2996
|
|
|
2997
2997
|
var keys = getOwnPropertyNames(sourceComponent);
|
|
2998
2998
|
|
|
2999
|
-
if (getOwnPropertySymbols
|
|
3000
|
-
keys = keys.concat(getOwnPropertySymbols
|
|
2999
|
+
if (getOwnPropertySymbols) {
|
|
3000
|
+
keys = keys.concat(getOwnPropertySymbols(sourceComponent));
|
|
3001
3001
|
}
|
|
3002
3002
|
|
|
3003
3003
|
var targetStatics = getStatics(targetComponent);
|
|
@@ -3026,7 +3026,7 @@ function y$1(){return (y$1=Object.assign||function(e){for(var t=1;t<arguments.le
|
|
|
3026
3026
|
|
|
3027
3027
|
/**
|
|
3028
3028
|
* Do not edit directly
|
|
3029
|
-
* Generated on
|
|
3029
|
+
* Generated on Wed, 15 Dec 2021 11:11:43 GMT
|
|
3030
3030
|
*/
|
|
3031
3031
|
var DdsColorPrimaryLightest = "rgba(234, 239, 244, 1)";
|
|
3032
3032
|
var DdsColorPrimaryLighter = "rgba(172, 187, 198, 1)";
|
|
@@ -3167,7 +3167,7 @@ var colors$1 = /*#__PURE__*/Object.freeze({
|
|
|
3167
3167
|
|
|
3168
3168
|
/**
|
|
3169
3169
|
* Do not edit directly
|
|
3170
|
-
* Generated on
|
|
3170
|
+
* Generated on Wed, 15 Dec 2021 11:11:43 GMT
|
|
3171
3171
|
*/
|
|
3172
3172
|
var DdsFontHeadingSans01FontSize = "14px";
|
|
3173
3173
|
var DdsFontHeadingSans01FontSizeNumberPx = 14;
|
|
@@ -3180,8 +3180,8 @@ var DdsFontHeadingSans01LetterSpacing = "0.01em";
|
|
|
3180
3180
|
var DdsFontHeadingSans01LineHeight = "1.5em";
|
|
3181
3181
|
var DdsFontHeadingSans01ParagraphIndent = "0px";
|
|
3182
3182
|
var DdsFontHeadingSans01ParagraphIndentNumberPx = 0;
|
|
3183
|
-
var DdsFontHeadingSans01ParagraphSpacing = "
|
|
3184
|
-
var DdsFontHeadingSans01ParagraphSpacingNumberPx =
|
|
3183
|
+
var DdsFontHeadingSans01ParagraphSpacing = "14px";
|
|
3184
|
+
var DdsFontHeadingSans01ParagraphSpacingNumberPx = 14;
|
|
3185
3185
|
var DdsFontHeadingSans01TextCase = "none";
|
|
3186
3186
|
var DdsFontHeadingSans02FontSize = "16px";
|
|
3187
3187
|
var DdsFontHeadingSans02FontSizeNumberPx = 16;
|
|
@@ -3194,8 +3194,8 @@ var DdsFontHeadingSans02LetterSpacing = "0em";
|
|
|
3194
3194
|
var DdsFontHeadingSans02LineHeight = "1.5em";
|
|
3195
3195
|
var DdsFontHeadingSans02ParagraphIndent = "0px";
|
|
3196
3196
|
var DdsFontHeadingSans02ParagraphIndentNumberPx = 0;
|
|
3197
|
-
var DdsFontHeadingSans02ParagraphSpacing = "
|
|
3198
|
-
var DdsFontHeadingSans02ParagraphSpacingNumberPx =
|
|
3197
|
+
var DdsFontHeadingSans02ParagraphSpacing = "16px";
|
|
3198
|
+
var DdsFontHeadingSans02ParagraphSpacingNumberPx = 16;
|
|
3199
3199
|
var DdsFontHeadingSans02TextCase = "none";
|
|
3200
3200
|
var DdsFontHeadingSans03FontSize = "24px";
|
|
3201
3201
|
var DdsFontHeadingSans03FontSizeNumberPx = 24;
|
|
@@ -3208,8 +3208,8 @@ var DdsFontHeadingSans03LetterSpacing = "0em";
|
|
|
3208
3208
|
var DdsFontHeadingSans03LineHeight = "1.35em";
|
|
3209
3209
|
var DdsFontHeadingSans03ParagraphIndent = "0px";
|
|
3210
3210
|
var DdsFontHeadingSans03ParagraphIndentNumberPx = 0;
|
|
3211
|
-
var DdsFontHeadingSans03ParagraphSpacing = "
|
|
3212
|
-
var DdsFontHeadingSans03ParagraphSpacingNumberPx =
|
|
3211
|
+
var DdsFontHeadingSans03ParagraphSpacing = "16px";
|
|
3212
|
+
var DdsFontHeadingSans03ParagraphSpacingNumberPx = 16;
|
|
3213
3213
|
var DdsFontHeadingSans03TextCase = "none";
|
|
3214
3214
|
var DdsFontHeadingSans04FontSize = "32px";
|
|
3215
3215
|
var DdsFontHeadingSans04FontSizeNumberPx = 32;
|
|
@@ -3222,8 +3222,8 @@ var DdsFontHeadingSans04LetterSpacing = "0em";
|
|
|
3222
3222
|
var DdsFontHeadingSans04LineHeight = "1.35em";
|
|
3223
3223
|
var DdsFontHeadingSans04ParagraphIndent = "0px";
|
|
3224
3224
|
var DdsFontHeadingSans04ParagraphIndentNumberPx = 0;
|
|
3225
|
-
var DdsFontHeadingSans04ParagraphSpacing = "
|
|
3226
|
-
var DdsFontHeadingSans04ParagraphSpacingNumberPx =
|
|
3225
|
+
var DdsFontHeadingSans04ParagraphSpacing = "21px";
|
|
3226
|
+
var DdsFontHeadingSans04ParagraphSpacingNumberPx = 21;
|
|
3227
3227
|
var DdsFontHeadingSans04TextCase = "none";
|
|
3228
3228
|
var DdsFontHeadingSans05FontSize = "40px";
|
|
3229
3229
|
var DdsFontHeadingSans05FontSizeNumberPx = 40;
|
|
@@ -3236,8 +3236,8 @@ var DdsFontHeadingSans05LetterSpacing = "-0.01em";
|
|
|
3236
3236
|
var DdsFontHeadingSans05LineHeight = "1.35em";
|
|
3237
3237
|
var DdsFontHeadingSans05ParagraphIndent = "0px";
|
|
3238
3238
|
var DdsFontHeadingSans05ParagraphIndentNumberPx = 0;
|
|
3239
|
-
var DdsFontHeadingSans05ParagraphSpacing = "
|
|
3240
|
-
var DdsFontHeadingSans05ParagraphSpacingNumberPx =
|
|
3239
|
+
var DdsFontHeadingSans05ParagraphSpacing = "26px";
|
|
3240
|
+
var DdsFontHeadingSans05ParagraphSpacingNumberPx = 26;
|
|
3241
3241
|
var DdsFontHeadingSans05TextCase = "none";
|
|
3242
3242
|
var DdsFontHeadingSans06FontSize = "48px";
|
|
3243
3243
|
var DdsFontHeadingSans06FontSizeNumberPx = 48;
|
|
@@ -3250,8 +3250,8 @@ var DdsFontHeadingSans06LetterSpacing = "-0.01em";
|
|
|
3250
3250
|
var DdsFontHeadingSans06LineHeight = "1.2em";
|
|
3251
3251
|
var DdsFontHeadingSans06ParagraphIndent = "0px";
|
|
3252
3252
|
var DdsFontHeadingSans06ParagraphIndentNumberPx = 0;
|
|
3253
|
-
var DdsFontHeadingSans06ParagraphSpacing = "
|
|
3254
|
-
var DdsFontHeadingSans06ParagraphSpacingNumberPx =
|
|
3253
|
+
var DdsFontHeadingSans06ParagraphSpacing = "24px";
|
|
3254
|
+
var DdsFontHeadingSans06ParagraphSpacingNumberPx = 24;
|
|
3255
3255
|
var DdsFontHeadingSans06TextCase = "none";
|
|
3256
3256
|
var DdsFontHeadingSans07FontSize = "64px";
|
|
3257
3257
|
var DdsFontHeadingSans07FontSizeNumberPx = 64;
|
|
@@ -3264,8 +3264,8 @@ var DdsFontHeadingSans07LetterSpacing = "-0.01em";
|
|
|
3264
3264
|
var DdsFontHeadingSans07LineHeight = "1.2em";
|
|
3265
3265
|
var DdsFontHeadingSans07ParagraphIndent = "0px";
|
|
3266
3266
|
var DdsFontHeadingSans07ParagraphIndentNumberPx = 0;
|
|
3267
|
-
var DdsFontHeadingSans07ParagraphSpacing = "
|
|
3268
|
-
var DdsFontHeadingSans07ParagraphSpacingNumberPx =
|
|
3267
|
+
var DdsFontHeadingSans07ParagraphSpacing = "32px";
|
|
3268
|
+
var DdsFontHeadingSans07ParagraphSpacingNumberPx = 32;
|
|
3269
3269
|
var DdsFontHeadingSans07TextCase = "none";
|
|
3270
3270
|
var DdsFontHeadingSans08FontSize = "80px";
|
|
3271
3271
|
var DdsFontHeadingSans08FontSizeNumberPx = 80;
|
|
@@ -3278,8 +3278,8 @@ var DdsFontHeadingSans08LetterSpacing = "-0.01em";
|
|
|
3278
3278
|
var DdsFontHeadingSans08LineHeight = "1.2em";
|
|
3279
3279
|
var DdsFontHeadingSans08ParagraphIndent = "0px";
|
|
3280
3280
|
var DdsFontHeadingSans08ParagraphIndentNumberPx = 0;
|
|
3281
|
-
var DdsFontHeadingSans08ParagraphSpacing = "
|
|
3282
|
-
var DdsFontHeadingSans08ParagraphSpacingNumberPx =
|
|
3281
|
+
var DdsFontHeadingSans08ParagraphSpacing = "40px";
|
|
3282
|
+
var DdsFontHeadingSans08ParagraphSpacingNumberPx = 40;
|
|
3283
3283
|
var DdsFontHeadingSans08TextCase = "none";
|
|
3284
3284
|
var DdsFontBodySans01FontSize = "14px";
|
|
3285
3285
|
var DdsFontBodySans01FontSizeNumberPx = 14;
|
|
@@ -3292,8 +3292,8 @@ var DdsFontBodySans01LetterSpacing = "0.01em";
|
|
|
3292
3292
|
var DdsFontBodySans01LineHeight = "1.5em";
|
|
3293
3293
|
var DdsFontBodySans01ParagraphIndent = "0px";
|
|
3294
3294
|
var DdsFontBodySans01ParagraphIndentNumberPx = 0;
|
|
3295
|
-
var DdsFontBodySans01ParagraphSpacing = "
|
|
3296
|
-
var DdsFontBodySans01ParagraphSpacingNumberPx =
|
|
3295
|
+
var DdsFontBodySans01ParagraphSpacing = "14px";
|
|
3296
|
+
var DdsFontBodySans01ParagraphSpacingNumberPx = 14;
|
|
3297
3297
|
var DdsFontBodySans01TextCase = "none";
|
|
3298
3298
|
var DdsFontBodySans02FontSize = "16px";
|
|
3299
3299
|
var DdsFontBodySans02FontSizeNumberPx = 16;
|
|
@@ -3306,8 +3306,8 @@ var DdsFontBodySans02LetterSpacing = "0em";
|
|
|
3306
3306
|
var DdsFontBodySans02LineHeight = "1.5em";
|
|
3307
3307
|
var DdsFontBodySans02ParagraphIndent = "0px";
|
|
3308
3308
|
var DdsFontBodySans02ParagraphIndentNumberPx = 0;
|
|
3309
|
-
var DdsFontBodySans02ParagraphSpacing = "
|
|
3310
|
-
var DdsFontBodySans02ParagraphSpacingNumberPx =
|
|
3309
|
+
var DdsFontBodySans02ParagraphSpacing = "16px";
|
|
3310
|
+
var DdsFontBodySans02ParagraphSpacingNumberPx = 16;
|
|
3311
3311
|
var DdsFontBodySans02TextCase = "none";
|
|
3312
3312
|
var DdsFontBodySans03FontSize = "18px";
|
|
3313
3313
|
var DdsFontBodySans03FontSizeNumberPx = 18;
|
|
@@ -3320,8 +3320,8 @@ var DdsFontBodySans03LetterSpacing = "0em";
|
|
|
3320
3320
|
var DdsFontBodySans03LineHeight = "1.5em";
|
|
3321
3321
|
var DdsFontBodySans03ParagraphIndent = "0px";
|
|
3322
3322
|
var DdsFontBodySans03ParagraphIndentNumberPx = 0;
|
|
3323
|
-
var DdsFontBodySans03ParagraphSpacing = "
|
|
3324
|
-
var DdsFontBodySans03ParagraphSpacingNumberPx =
|
|
3323
|
+
var DdsFontBodySans03ParagraphSpacing = "18px";
|
|
3324
|
+
var DdsFontBodySans03ParagraphSpacingNumberPx = 18;
|
|
3325
3325
|
var DdsFontBodySans03TextCase = "none";
|
|
3326
3326
|
var DdsFontBodySans04FontSize = "20px";
|
|
3327
3327
|
var DdsFontBodySans04FontSizeNumberPx = 20;
|
|
@@ -3334,8 +3334,8 @@ var DdsFontBodySans04LetterSpacing = "0em";
|
|
|
3334
3334
|
var DdsFontBodySans04LineHeight = "1.5em";
|
|
3335
3335
|
var DdsFontBodySans04ParagraphIndent = "0px";
|
|
3336
3336
|
var DdsFontBodySans04ParagraphIndentNumberPx = 0;
|
|
3337
|
-
var DdsFontBodySans04ParagraphSpacing = "
|
|
3338
|
-
var DdsFontBodySans04ParagraphSpacingNumberPx =
|
|
3337
|
+
var DdsFontBodySans04ParagraphSpacing = "20px";
|
|
3338
|
+
var DdsFontBodySans04ParagraphSpacingNumberPx = 20;
|
|
3339
3339
|
var DdsFontBodySans04TextCase = "none";
|
|
3340
3340
|
var DdsFontBodySerif01FontSize = "14px";
|
|
3341
3341
|
var DdsFontBodySerif01FontSizeNumberPx = 14;
|
|
@@ -3348,8 +3348,8 @@ var DdsFontBodySerif01LetterSpacing = "0.01em";
|
|
|
3348
3348
|
var DdsFontBodySerif01LineHeight = "1.5em";
|
|
3349
3349
|
var DdsFontBodySerif01ParagraphIndent = "0px";
|
|
3350
3350
|
var DdsFontBodySerif01ParagraphIndentNumberPx = 0;
|
|
3351
|
-
var DdsFontBodySerif01ParagraphSpacing = "
|
|
3352
|
-
var DdsFontBodySerif01ParagraphSpacingNumberPx =
|
|
3351
|
+
var DdsFontBodySerif01ParagraphSpacing = "14px";
|
|
3352
|
+
var DdsFontBodySerif01ParagraphSpacingNumberPx = 14;
|
|
3353
3353
|
var DdsFontBodySerif01TextCase = "none";
|
|
3354
3354
|
var DdsFontBodySerif02FontSize = "16px";
|
|
3355
3355
|
var DdsFontBodySerif02FontSizeNumberPx = 16;
|
|
@@ -3362,8 +3362,8 @@ var DdsFontBodySerif02LetterSpacing = "0em";
|
|
|
3362
3362
|
var DdsFontBodySerif02LineHeight = "1.5em";
|
|
3363
3363
|
var DdsFontBodySerif02ParagraphIndent = "0px";
|
|
3364
3364
|
var DdsFontBodySerif02ParagraphIndentNumberPx = 0;
|
|
3365
|
-
var DdsFontBodySerif02ParagraphSpacing = "
|
|
3366
|
-
var DdsFontBodySerif02ParagraphSpacingNumberPx =
|
|
3365
|
+
var DdsFontBodySerif02ParagraphSpacing = "16px";
|
|
3366
|
+
var DdsFontBodySerif02ParagraphSpacingNumberPx = 16;
|
|
3367
3367
|
var DdsFontBodySerif02TextCase = "none";
|
|
3368
3368
|
var DdsFontBodySerif03FontSize = "18px";
|
|
3369
3369
|
var DdsFontBodySerif03FontSizeNumberPx = 18;
|
|
@@ -3376,8 +3376,8 @@ var DdsFontBodySerif03LetterSpacing = "0em";
|
|
|
3376
3376
|
var DdsFontBodySerif03LineHeight = "1.5em";
|
|
3377
3377
|
var DdsFontBodySerif03ParagraphIndent = "0px";
|
|
3378
3378
|
var DdsFontBodySerif03ParagraphIndentNumberPx = 0;
|
|
3379
|
-
var DdsFontBodySerif03ParagraphSpacing = "
|
|
3380
|
-
var DdsFontBodySerif03ParagraphSpacingNumberPx =
|
|
3379
|
+
var DdsFontBodySerif03ParagraphSpacing = "18px";
|
|
3380
|
+
var DdsFontBodySerif03ParagraphSpacingNumberPx = 18;
|
|
3381
3381
|
var DdsFontBodySerif03TextCase = "none";
|
|
3382
3382
|
var DdsFontBodySerif04FontSize = "20px";
|
|
3383
3383
|
var DdsFontBodySerif04FontSizeNumberPx = 20;
|
|
@@ -3390,8 +3390,8 @@ var DdsFontBodySerif04LetterSpacing = "0em";
|
|
|
3390
3390
|
var DdsFontBodySerif04LineHeight = "1.5em";
|
|
3391
3391
|
var DdsFontBodySerif04ParagraphIndent = "0px";
|
|
3392
3392
|
var DdsFontBodySerif04ParagraphIndentNumberPx = 0;
|
|
3393
|
-
var DdsFontBodySerif04ParagraphSpacing = "
|
|
3394
|
-
var DdsFontBodySerif04ParagraphSpacingNumberPx =
|
|
3393
|
+
var DdsFontBodySerif04ParagraphSpacing = "20px";
|
|
3394
|
+
var DdsFontBodySerif04ParagraphSpacingNumberPx = 20;
|
|
3395
3395
|
var DdsFontBodySerif04TextCase = "none";
|
|
3396
3396
|
var DdsFontLeadSans01FontSize = "18px";
|
|
3397
3397
|
var DdsFontLeadSans01FontSizeNumberPx = 18;
|
|
@@ -3404,8 +3404,8 @@ var DdsFontLeadSans01LetterSpacing = "0em";
|
|
|
3404
3404
|
var DdsFontLeadSans01LineHeight = "1.5em";
|
|
3405
3405
|
var DdsFontLeadSans01ParagraphIndent = "0px";
|
|
3406
3406
|
var DdsFontLeadSans01ParagraphIndentNumberPx = 0;
|
|
3407
|
-
var DdsFontLeadSans01ParagraphSpacing = "
|
|
3408
|
-
var DdsFontLeadSans01ParagraphSpacingNumberPx =
|
|
3407
|
+
var DdsFontLeadSans01ParagraphSpacing = "18px";
|
|
3408
|
+
var DdsFontLeadSans01ParagraphSpacingNumberPx = 18;
|
|
3409
3409
|
var DdsFontLeadSans01TextCase = "none";
|
|
3410
3410
|
var DdsFontLeadSans02FontSize = "24px";
|
|
3411
3411
|
var DdsFontLeadSans02FontSizeNumberPx = 24;
|
|
@@ -3418,8 +3418,8 @@ var DdsFontLeadSans02LetterSpacing = "0em";
|
|
|
3418
3418
|
var DdsFontLeadSans02LineHeight = "1.35em";
|
|
3419
3419
|
var DdsFontLeadSans02ParagraphIndent = "0px";
|
|
3420
3420
|
var DdsFontLeadSans02ParagraphIndentNumberPx = 0;
|
|
3421
|
-
var DdsFontLeadSans02ParagraphSpacing = "
|
|
3422
|
-
var DdsFontLeadSans02ParagraphSpacingNumberPx =
|
|
3421
|
+
var DdsFontLeadSans02ParagraphSpacing = "16px";
|
|
3422
|
+
var DdsFontLeadSans02ParagraphSpacingNumberPx = 16;
|
|
3423
3423
|
var DdsFontLeadSans02TextCase = "none";
|
|
3424
3424
|
var DdsFontLeadSans03FontSize = "24px";
|
|
3425
3425
|
var DdsFontLeadSans03FontSizeNumberPx = 24;
|
|
@@ -3432,8 +3432,8 @@ var DdsFontLeadSans03LetterSpacing = "0em";
|
|
|
3432
3432
|
var DdsFontLeadSans03LineHeight = "1.35em";
|
|
3433
3433
|
var DdsFontLeadSans03ParagraphIndent = "0px";
|
|
3434
3434
|
var DdsFontLeadSans03ParagraphIndentNumberPx = 0;
|
|
3435
|
-
var DdsFontLeadSans03ParagraphSpacing = "
|
|
3436
|
-
var DdsFontLeadSans03ParagraphSpacingNumberPx =
|
|
3435
|
+
var DdsFontLeadSans03ParagraphSpacing = "16px";
|
|
3436
|
+
var DdsFontLeadSans03ParagraphSpacingNumberPx = 16;
|
|
3437
3437
|
var DdsFontLeadSans03TextCase = "none";
|
|
3438
3438
|
var DdsFontLeadSans04FontSize = "32px";
|
|
3439
3439
|
var DdsFontLeadSans04FontSizeNumberPx = 32;
|
|
@@ -3446,8 +3446,8 @@ var DdsFontLeadSans04LetterSpacing = "0em";
|
|
|
3446
3446
|
var DdsFontLeadSans04LineHeight = "1.35em";
|
|
3447
3447
|
var DdsFontLeadSans04ParagraphIndent = "0px";
|
|
3448
3448
|
var DdsFontLeadSans04ParagraphIndentNumberPx = 0;
|
|
3449
|
-
var DdsFontLeadSans04ParagraphSpacing = "
|
|
3450
|
-
var DdsFontLeadSans04ParagraphSpacingNumberPx =
|
|
3449
|
+
var DdsFontLeadSans04ParagraphSpacing = "21px";
|
|
3450
|
+
var DdsFontLeadSans04ParagraphSpacingNumberPx = 21;
|
|
3451
3451
|
var DdsFontLeadSans04TextCase = "none";
|
|
3452
3452
|
var DdsFontLeadSans05FontSize = "40px";
|
|
3453
3453
|
var DdsFontLeadSans05FontSizeNumberPx = 40;
|
|
@@ -3460,8 +3460,8 @@ var DdsFontLeadSans05LetterSpacing = "-0.01em";
|
|
|
3460
3460
|
var DdsFontLeadSans05LineHeight = "1.35em";
|
|
3461
3461
|
var DdsFontLeadSans05ParagraphIndent = "0px";
|
|
3462
3462
|
var DdsFontLeadSans05ParagraphIndentNumberPx = 0;
|
|
3463
|
-
var DdsFontLeadSans05ParagraphSpacing = "
|
|
3464
|
-
var DdsFontLeadSans05ParagraphSpacingNumberPx =
|
|
3463
|
+
var DdsFontLeadSans05ParagraphSpacing = "26px";
|
|
3464
|
+
var DdsFontLeadSans05ParagraphSpacingNumberPx = 26;
|
|
3465
3465
|
var DdsFontLeadSans05TextCase = "none";
|
|
3466
3466
|
var DdsFontSupportingStyleLabel01FontSize = "14px";
|
|
3467
3467
|
var DdsFontSupportingStyleLabel01FontSizeNumberPx = 14;
|
|
@@ -3474,8 +3474,8 @@ var DdsFontSupportingStyleLabel01LetterSpacing = "0.01em";
|
|
|
3474
3474
|
var DdsFontSupportingStyleLabel01LineHeight = "1.5em";
|
|
3475
3475
|
var DdsFontSupportingStyleLabel01ParagraphIndent = "0px";
|
|
3476
3476
|
var DdsFontSupportingStyleLabel01ParagraphIndentNumberPx = 0;
|
|
3477
|
-
var DdsFontSupportingStyleLabel01ParagraphSpacing = "
|
|
3478
|
-
var DdsFontSupportingStyleLabel01ParagraphSpacingNumberPx =
|
|
3477
|
+
var DdsFontSupportingStyleLabel01ParagraphSpacing = "14px";
|
|
3478
|
+
var DdsFontSupportingStyleLabel01ParagraphSpacingNumberPx = 14;
|
|
3479
3479
|
var DdsFontSupportingStyleLabel01TextCase = "none";
|
|
3480
3480
|
var DdsFontSupportingStyleHelpertext01FontSize = "14px";
|
|
3481
3481
|
var DdsFontSupportingStyleHelpertext01FontSizeNumberPx = 14;
|
|
@@ -3488,8 +3488,8 @@ var DdsFontSupportingStyleHelpertext01LetterSpacing = "0.01em";
|
|
|
3488
3488
|
var DdsFontSupportingStyleHelpertext01LineHeight = "1.5em";
|
|
3489
3489
|
var DdsFontSupportingStyleHelpertext01ParagraphIndent = "0px";
|
|
3490
3490
|
var DdsFontSupportingStyleHelpertext01ParagraphIndentNumberPx = 0;
|
|
3491
|
-
var DdsFontSupportingStyleHelpertext01ParagraphSpacing = "
|
|
3492
|
-
var DdsFontSupportingStyleHelpertext01ParagraphSpacingNumberPx =
|
|
3491
|
+
var DdsFontSupportingStyleHelpertext01ParagraphSpacing = "14px";
|
|
3492
|
+
var DdsFontSupportingStyleHelpertext01ParagraphSpacingNumberPx = 14;
|
|
3493
3493
|
var DdsFontSupportingStyleHelpertext01TextCase = "none";
|
|
3494
3494
|
var DdsFontSupportingStyleInputtext01FontSize = "14px";
|
|
3495
3495
|
var DdsFontSupportingStyleInputtext01FontSizeNumberPx = 14;
|
|
@@ -3502,8 +3502,8 @@ var DdsFontSupportingStyleInputtext01LetterSpacing = "0.01em";
|
|
|
3502
3502
|
var DdsFontSupportingStyleInputtext01LineHeight = "1.5em";
|
|
3503
3503
|
var DdsFontSupportingStyleInputtext01ParagraphIndent = "0px";
|
|
3504
3504
|
var DdsFontSupportingStyleInputtext01ParagraphIndentNumberPx = 0;
|
|
3505
|
-
var DdsFontSupportingStyleInputtext01ParagraphSpacing = "
|
|
3506
|
-
var DdsFontSupportingStyleInputtext01ParagraphSpacingNumberPx =
|
|
3505
|
+
var DdsFontSupportingStyleInputtext01ParagraphSpacing = "14px";
|
|
3506
|
+
var DdsFontSupportingStyleInputtext01ParagraphSpacingNumberPx = 14;
|
|
3507
3507
|
var DdsFontSupportingStyleInputtext01TextCase = "none";
|
|
3508
3508
|
var DdsFontSupportingStyleInputtext02FontSize = "18px";
|
|
3509
3509
|
var DdsFontSupportingStyleInputtext02FontSizeNumberPx = 18;
|
|
@@ -3516,8 +3516,8 @@ var DdsFontSupportingStyleInputtext02LetterSpacing = "0em";
|
|
|
3516
3516
|
var DdsFontSupportingStyleInputtext02LineHeight = "1.5em";
|
|
3517
3517
|
var DdsFontSupportingStyleInputtext02ParagraphIndent = "0px";
|
|
3518
3518
|
var DdsFontSupportingStyleInputtext02ParagraphIndentNumberPx = 0;
|
|
3519
|
-
var DdsFontSupportingStyleInputtext02ParagraphSpacing = "
|
|
3520
|
-
var DdsFontSupportingStyleInputtext02ParagraphSpacingNumberPx =
|
|
3519
|
+
var DdsFontSupportingStyleInputtext02ParagraphSpacing = "18px";
|
|
3520
|
+
var DdsFontSupportingStyleInputtext02ParagraphSpacingNumberPx = 18;
|
|
3521
3521
|
var DdsFontSupportingStyleInputtext02TextCase = "none";
|
|
3522
3522
|
var DdsFontSupportingStyleInputtext03FontSize = "20px";
|
|
3523
3523
|
var DdsFontSupportingStyleInputtext03FontSizeNumberPx = 20;
|
|
@@ -3530,8 +3530,8 @@ var DdsFontSupportingStyleInputtext03LetterSpacing = "0em";
|
|
|
3530
3530
|
var DdsFontSupportingStyleInputtext03LineHeight = "1.5em";
|
|
3531
3531
|
var DdsFontSupportingStyleInputtext03ParagraphIndent = "0px";
|
|
3532
3532
|
var DdsFontSupportingStyleInputtext03ParagraphIndentNumberPx = 0;
|
|
3533
|
-
var DdsFontSupportingStyleInputtext03ParagraphSpacing = "
|
|
3534
|
-
var DdsFontSupportingStyleInputtext03ParagraphSpacingNumberPx =
|
|
3533
|
+
var DdsFontSupportingStyleInputtext03ParagraphSpacing = "20px";
|
|
3534
|
+
var DdsFontSupportingStyleInputtext03ParagraphSpacingNumberPx = 20;
|
|
3535
3535
|
var DdsFontSupportingStyleInputtext03TextCase = "none";
|
|
3536
3536
|
var DdsFontSupportingStylePlaceholdertext01FontSize = "18px";
|
|
3537
3537
|
var DdsFontSupportingStylePlaceholdertext01FontSizeNumberPx = 18;
|
|
@@ -3544,8 +3544,8 @@ var DdsFontSupportingStylePlaceholdertext01LetterSpacing = "0em";
|
|
|
3544
3544
|
var DdsFontSupportingStylePlaceholdertext01LineHeight = "1.5em";
|
|
3545
3545
|
var DdsFontSupportingStylePlaceholdertext01ParagraphIndent = "0px";
|
|
3546
3546
|
var DdsFontSupportingStylePlaceholdertext01ParagraphIndentNumberPx = 0;
|
|
3547
|
-
var DdsFontSupportingStylePlaceholdertext01ParagraphSpacing = "
|
|
3548
|
-
var DdsFontSupportingStylePlaceholdertext01ParagraphSpacingNumberPx =
|
|
3547
|
+
var DdsFontSupportingStylePlaceholdertext01ParagraphSpacing = "18px";
|
|
3548
|
+
var DdsFontSupportingStylePlaceholdertext01ParagraphSpacingNumberPx = 18;
|
|
3549
3549
|
var DdsFontSupportingStylePlaceholdertext01TextCase = "none";
|
|
3550
3550
|
var DdsFontSupportingStyleTiny01FontSize = "12px";
|
|
3551
3551
|
var DdsFontSupportingStyleTiny01FontSizeNumberPx = 12;
|
|
@@ -3558,8 +3558,8 @@ var DdsFontSupportingStyleTiny01LetterSpacing = "0.01em";
|
|
|
3558
3558
|
var DdsFontSupportingStyleTiny01LineHeight = "1.5em";
|
|
3559
3559
|
var DdsFontSupportingStyleTiny01ParagraphIndent = "0px";
|
|
3560
3560
|
var DdsFontSupportingStyleTiny01ParagraphIndentNumberPx = 0;
|
|
3561
|
-
var DdsFontSupportingStyleTiny01ParagraphSpacing = "
|
|
3562
|
-
var DdsFontSupportingStyleTiny01ParagraphSpacingNumberPx =
|
|
3561
|
+
var DdsFontSupportingStyleTiny01ParagraphSpacing = "12px";
|
|
3562
|
+
var DdsFontSupportingStyleTiny01ParagraphSpacingNumberPx = 12;
|
|
3563
3563
|
var DdsFontSupportingStyleTiny01TextCase = "none";
|
|
3564
3564
|
|
|
3565
3565
|
var font = /*#__PURE__*/Object.freeze({
|
|
@@ -3960,7 +3960,7 @@ var font = /*#__PURE__*/Object.freeze({
|
|
|
3960
3960
|
|
|
3961
3961
|
/**
|
|
3962
3962
|
* Do not edit directly
|
|
3963
|
-
* Generated on
|
|
3963
|
+
* Generated on Wed, 15 Dec 2021 11:11:43 GMT
|
|
3964
3964
|
*/
|
|
3965
3965
|
var BordersDdsBorderStyle1StrokeAlign = "inside";
|
|
3966
3966
|
var BordersDdsBorderStyle1StrokeMiterLimit = 4;
|
|
@@ -3979,7 +3979,7 @@ var border = /*#__PURE__*/Object.freeze({
|
|
|
3979
3979
|
|
|
3980
3980
|
/**
|
|
3981
3981
|
* Do not edit directly
|
|
3982
|
-
* Generated on
|
|
3982
|
+
* Generated on Wed, 15 Dec 2021 11:11:43 GMT
|
|
3983
3983
|
*/
|
|
3984
3984
|
var RadiiDdsBorderRadius1Radius = "2px";
|
|
3985
3985
|
var RadiiDdsBorderRadius1RadiusNumberPx = 2;
|
|
@@ -4048,7 +4048,7 @@ var borderRadius$1 = /*#__PURE__*/Object.freeze({
|
|
|
4048
4048
|
|
|
4049
4049
|
/**
|
|
4050
4050
|
* Do not edit directly
|
|
4051
|
-
* Generated on
|
|
4051
|
+
* Generated on Wed, 15 Dec 2021 11:11:43 GMT
|
|
4052
4052
|
*/
|
|
4053
4053
|
var SizesDdsSpacingLocalX3 = "48px";
|
|
4054
4054
|
var SizesDdsSpacingLocalX3NumberPx = 48; // 48px
|
|
@@ -4121,7 +4121,7 @@ var spacing$1 = /*#__PURE__*/Object.freeze({
|
|
|
4121
4121
|
|
|
4122
4122
|
/**
|
|
4123
4123
|
* Do not edit directly
|
|
4124
|
-
* Generated on
|
|
4124
|
+
* Generated on Wed, 15 Dec 2021 11:11:43 GMT
|
|
4125
4125
|
*/
|
|
4126
4126
|
var DdsIconsizeMedium = "24px";
|
|
4127
4127
|
var DdsIconsizeMediumNumberPx = 24;
|
|
@@ -4142,7 +4142,7 @@ var iconSizes = /*#__PURE__*/Object.freeze({
|
|
|
4142
4142
|
|
|
4143
4143
|
/**
|
|
4144
4144
|
* Do not edit directly
|
|
4145
|
-
* Generated on
|
|
4145
|
+
* Generated on Wed, 15 Dec 2021 11:11:43 GMT
|
|
4146
4146
|
*/
|
|
4147
4147
|
var DdsGridXs0599Pattern = "columns";
|
|
4148
4148
|
var DdsGridXs0599GutterSize = "16px";
|
|
@@ -4221,7 +4221,7 @@ var grid = /*#__PURE__*/Object.freeze({
|
|
|
4221
4221
|
|
|
4222
4222
|
/**
|
|
4223
4223
|
* Do not edit directly
|
|
4224
|
-
* Generated on
|
|
4224
|
+
* Generated on Wed, 15 Dec 2021 11:11:43 GMT
|
|
4225
4225
|
*/
|
|
4226
4226
|
var DdsInnershadow1Ondark = " 1.0px 2.0px 4.0px 0px rgba(0, 0, 0, 0.5) inset";
|
|
4227
4227
|
var DdsInnershadow1Onlight = " 1.0px 2.0px 4.0px 0px rgba(0, 0, 0, 0.1) inset";
|
|
@@ -4238,7 +4238,7 @@ var innerShadow = /*#__PURE__*/Object.freeze({
|
|
|
4238
4238
|
|
|
4239
4239
|
/**
|
|
4240
4240
|
* Do not edit directly
|
|
4241
|
-
* Generated on
|
|
4241
|
+
* Generated on Wed, 15 Dec 2021 11:11:43 GMT
|
|
4242
4242
|
*/
|
|
4243
4243
|
var DdsShadow1Ondark = " 1.0px 2.0px 4.0px 0px rgba(0, 0, 0, 0.5)";
|
|
4244
4244
|
var DdsShadow1Onlight = " 1.0px 2.0px 4.0px 0px rgba(0, 0, 0, 0.1)";
|
|
@@ -4263,7 +4263,7 @@ var outerShadow = /*#__PURE__*/Object.freeze({
|
|
|
4263
4263
|
|
|
4264
4264
|
/**
|
|
4265
4265
|
* Do not edit directly
|
|
4266
|
-
* Generated on
|
|
4266
|
+
* Generated on Wed, 15 Dec 2021 11:11:43 GMT
|
|
4267
4267
|
*/
|
|
4268
4268
|
var ddsStyles = {
|
|
4269
4269
|
"$dds-font": {
|
|
@@ -4488,11 +4488,11 @@ var ddsStyles = {
|
|
|
4488
4488
|
]
|
|
4489
4489
|
},
|
|
4490
4490
|
"paragraphSpacing": {
|
|
4491
|
-
"value":
|
|
4491
|
+
"value": 14,
|
|
4492
4492
|
"type": "number",
|
|
4493
4493
|
"unit": "pixel",
|
|
4494
4494
|
"original": {
|
|
4495
|
-
"value":
|
|
4495
|
+
"value": 14,
|
|
4496
4496
|
"type": "number",
|
|
4497
4497
|
"unit": "pixel"
|
|
4498
4498
|
},
|
|
@@ -4752,11 +4752,11 @@ var ddsStyles = {
|
|
|
4752
4752
|
]
|
|
4753
4753
|
},
|
|
4754
4754
|
"paragraphSpacing": {
|
|
4755
|
-
"value":
|
|
4755
|
+
"value": 16,
|
|
4756
4756
|
"type": "number",
|
|
4757
4757
|
"unit": "pixel",
|
|
4758
4758
|
"original": {
|
|
4759
|
-
"value":
|
|
4759
|
+
"value": 16,
|
|
4760
4760
|
"type": "number",
|
|
4761
4761
|
"unit": "pixel"
|
|
4762
4762
|
},
|
|
@@ -5016,11 +5016,11 @@ var ddsStyles = {
|
|
|
5016
5016
|
]
|
|
5017
5017
|
},
|
|
5018
5018
|
"paragraphSpacing": {
|
|
5019
|
-
"value":
|
|
5019
|
+
"value": 16,
|
|
5020
5020
|
"type": "number",
|
|
5021
5021
|
"unit": "pixel",
|
|
5022
5022
|
"original": {
|
|
5023
|
-
"value":
|
|
5023
|
+
"value": 16,
|
|
5024
5024
|
"type": "number",
|
|
5025
5025
|
"unit": "pixel"
|
|
5026
5026
|
},
|
|
@@ -5280,11 +5280,11 @@ var ddsStyles = {
|
|
|
5280
5280
|
]
|
|
5281
5281
|
},
|
|
5282
5282
|
"paragraphSpacing": {
|
|
5283
|
-
"value":
|
|
5283
|
+
"value": 21,
|
|
5284
5284
|
"type": "number",
|
|
5285
5285
|
"unit": "pixel",
|
|
5286
5286
|
"original": {
|
|
5287
|
-
"value":
|
|
5287
|
+
"value": 21,
|
|
5288
5288
|
"type": "number",
|
|
5289
5289
|
"unit": "pixel"
|
|
5290
5290
|
},
|
|
@@ -5544,11 +5544,11 @@ var ddsStyles = {
|
|
|
5544
5544
|
]
|
|
5545
5545
|
},
|
|
5546
5546
|
"paragraphSpacing": {
|
|
5547
|
-
"value":
|
|
5547
|
+
"value": 26,
|
|
5548
5548
|
"type": "number",
|
|
5549
5549
|
"unit": "pixel",
|
|
5550
5550
|
"original": {
|
|
5551
|
-
"value":
|
|
5551
|
+
"value": 26,
|
|
5552
5552
|
"type": "number",
|
|
5553
5553
|
"unit": "pixel"
|
|
5554
5554
|
},
|
|
@@ -5808,11 +5808,11 @@ var ddsStyles = {
|
|
|
5808
5808
|
]
|
|
5809
5809
|
},
|
|
5810
5810
|
"paragraphSpacing": {
|
|
5811
|
-
"value":
|
|
5811
|
+
"value": 24,
|
|
5812
5812
|
"type": "number",
|
|
5813
5813
|
"unit": "pixel",
|
|
5814
5814
|
"original": {
|
|
5815
|
-
"value":
|
|
5815
|
+
"value": 24,
|
|
5816
5816
|
"type": "number",
|
|
5817
5817
|
"unit": "pixel"
|
|
5818
5818
|
},
|
|
@@ -6072,11 +6072,11 @@ var ddsStyles = {
|
|
|
6072
6072
|
]
|
|
6073
6073
|
},
|
|
6074
6074
|
"paragraphSpacing": {
|
|
6075
|
-
"value":
|
|
6075
|
+
"value": 32,
|
|
6076
6076
|
"type": "number",
|
|
6077
6077
|
"unit": "pixel",
|
|
6078
6078
|
"original": {
|
|
6079
|
-
"value":
|
|
6079
|
+
"value": 32,
|
|
6080
6080
|
"type": "number",
|
|
6081
6081
|
"unit": "pixel"
|
|
6082
6082
|
},
|
|
@@ -6336,11 +6336,11 @@ var ddsStyles = {
|
|
|
6336
6336
|
]
|
|
6337
6337
|
},
|
|
6338
6338
|
"paragraphSpacing": {
|
|
6339
|
-
"value":
|
|
6339
|
+
"value": 40,
|
|
6340
6340
|
"type": "number",
|
|
6341
6341
|
"unit": "pixel",
|
|
6342
6342
|
"original": {
|
|
6343
|
-
"value":
|
|
6343
|
+
"value": 40,
|
|
6344
6344
|
"type": "number",
|
|
6345
6345
|
"unit": "pixel"
|
|
6346
6346
|
},
|
|
@@ -6602,11 +6602,11 @@ var ddsStyles = {
|
|
|
6602
6602
|
]
|
|
6603
6603
|
},
|
|
6604
6604
|
"paragraphSpacing": {
|
|
6605
|
-
"value":
|
|
6605
|
+
"value": 14,
|
|
6606
6606
|
"type": "number",
|
|
6607
6607
|
"unit": "pixel",
|
|
6608
6608
|
"original": {
|
|
6609
|
-
"value":
|
|
6609
|
+
"value": 14,
|
|
6610
6610
|
"type": "number",
|
|
6611
6611
|
"unit": "pixel"
|
|
6612
6612
|
},
|
|
@@ -6866,11 +6866,11 @@ var ddsStyles = {
|
|
|
6866
6866
|
]
|
|
6867
6867
|
},
|
|
6868
6868
|
"paragraphSpacing": {
|
|
6869
|
-
"value":
|
|
6869
|
+
"value": 16,
|
|
6870
6870
|
"type": "number",
|
|
6871
6871
|
"unit": "pixel",
|
|
6872
6872
|
"original": {
|
|
6873
|
-
"value":
|
|
6873
|
+
"value": 16,
|
|
6874
6874
|
"type": "number",
|
|
6875
6875
|
"unit": "pixel"
|
|
6876
6876
|
},
|
|
@@ -7130,11 +7130,11 @@ var ddsStyles = {
|
|
|
7130
7130
|
]
|
|
7131
7131
|
},
|
|
7132
7132
|
"paragraphSpacing": {
|
|
7133
|
-
"value":
|
|
7133
|
+
"value": 18,
|
|
7134
7134
|
"type": "number",
|
|
7135
7135
|
"unit": "pixel",
|
|
7136
7136
|
"original": {
|
|
7137
|
-
"value":
|
|
7137
|
+
"value": 18,
|
|
7138
7138
|
"type": "number",
|
|
7139
7139
|
"unit": "pixel"
|
|
7140
7140
|
},
|
|
@@ -7394,11 +7394,11 @@ var ddsStyles = {
|
|
|
7394
7394
|
]
|
|
7395
7395
|
},
|
|
7396
7396
|
"paragraphSpacing": {
|
|
7397
|
-
"value":
|
|
7397
|
+
"value": 20,
|
|
7398
7398
|
"type": "number",
|
|
7399
7399
|
"unit": "pixel",
|
|
7400
7400
|
"original": {
|
|
7401
|
-
"value":
|
|
7401
|
+
"value": 20,
|
|
7402
7402
|
"type": "number",
|
|
7403
7403
|
"unit": "pixel"
|
|
7404
7404
|
},
|
|
@@ -7658,11 +7658,11 @@ var ddsStyles = {
|
|
|
7658
7658
|
]
|
|
7659
7659
|
},
|
|
7660
7660
|
"paragraphSpacing": {
|
|
7661
|
-
"value":
|
|
7661
|
+
"value": 14,
|
|
7662
7662
|
"type": "number",
|
|
7663
7663
|
"unit": "pixel",
|
|
7664
7664
|
"original": {
|
|
7665
|
-
"value":
|
|
7665
|
+
"value": 14,
|
|
7666
7666
|
"type": "number",
|
|
7667
7667
|
"unit": "pixel"
|
|
7668
7668
|
},
|
|
@@ -7922,11 +7922,11 @@ var ddsStyles = {
|
|
|
7922
7922
|
]
|
|
7923
7923
|
},
|
|
7924
7924
|
"paragraphSpacing": {
|
|
7925
|
-
"value":
|
|
7925
|
+
"value": 16,
|
|
7926
7926
|
"type": "number",
|
|
7927
7927
|
"unit": "pixel",
|
|
7928
7928
|
"original": {
|
|
7929
|
-
"value":
|
|
7929
|
+
"value": 16,
|
|
7930
7930
|
"type": "number",
|
|
7931
7931
|
"unit": "pixel"
|
|
7932
7932
|
},
|
|
@@ -8186,11 +8186,11 @@ var ddsStyles = {
|
|
|
8186
8186
|
]
|
|
8187
8187
|
},
|
|
8188
8188
|
"paragraphSpacing": {
|
|
8189
|
-
"value":
|
|
8189
|
+
"value": 18,
|
|
8190
8190
|
"type": "number",
|
|
8191
8191
|
"unit": "pixel",
|
|
8192
8192
|
"original": {
|
|
8193
|
-
"value":
|
|
8193
|
+
"value": 18,
|
|
8194
8194
|
"type": "number",
|
|
8195
8195
|
"unit": "pixel"
|
|
8196
8196
|
},
|
|
@@ -8450,11 +8450,11 @@ var ddsStyles = {
|
|
|
8450
8450
|
]
|
|
8451
8451
|
},
|
|
8452
8452
|
"paragraphSpacing": {
|
|
8453
|
-
"value":
|
|
8453
|
+
"value": 20,
|
|
8454
8454
|
"type": "number",
|
|
8455
8455
|
"unit": "pixel",
|
|
8456
8456
|
"original": {
|
|
8457
|
-
"value":
|
|
8457
|
+
"value": 20,
|
|
8458
8458
|
"type": "number",
|
|
8459
8459
|
"unit": "pixel"
|
|
8460
8460
|
},
|
|
@@ -8716,11 +8716,11 @@ var ddsStyles = {
|
|
|
8716
8716
|
]
|
|
8717
8717
|
},
|
|
8718
8718
|
"paragraphSpacing": {
|
|
8719
|
-
"value":
|
|
8719
|
+
"value": 18,
|
|
8720
8720
|
"type": "number",
|
|
8721
8721
|
"unit": "pixel",
|
|
8722
8722
|
"original": {
|
|
8723
|
-
"value":
|
|
8723
|
+
"value": 18,
|
|
8724
8724
|
"type": "number",
|
|
8725
8725
|
"unit": "pixel"
|
|
8726
8726
|
},
|
|
@@ -8980,11 +8980,11 @@ var ddsStyles = {
|
|
|
8980
8980
|
]
|
|
8981
8981
|
},
|
|
8982
8982
|
"paragraphSpacing": {
|
|
8983
|
-
"value":
|
|
8983
|
+
"value": 16,
|
|
8984
8984
|
"type": "number",
|
|
8985
8985
|
"unit": "pixel",
|
|
8986
8986
|
"original": {
|
|
8987
|
-
"value":
|
|
8987
|
+
"value": 16,
|
|
8988
8988
|
"type": "number",
|
|
8989
8989
|
"unit": "pixel"
|
|
8990
8990
|
},
|
|
@@ -9244,11 +9244,11 @@ var ddsStyles = {
|
|
|
9244
9244
|
]
|
|
9245
9245
|
},
|
|
9246
9246
|
"paragraphSpacing": {
|
|
9247
|
-
"value":
|
|
9247
|
+
"value": 16,
|
|
9248
9248
|
"type": "number",
|
|
9249
9249
|
"unit": "pixel",
|
|
9250
9250
|
"original": {
|
|
9251
|
-
"value":
|
|
9251
|
+
"value": 16,
|
|
9252
9252
|
"type": "number",
|
|
9253
9253
|
"unit": "pixel"
|
|
9254
9254
|
},
|
|
@@ -9508,11 +9508,11 @@ var ddsStyles = {
|
|
|
9508
9508
|
]
|
|
9509
9509
|
},
|
|
9510
9510
|
"paragraphSpacing": {
|
|
9511
|
-
"value":
|
|
9511
|
+
"value": 21,
|
|
9512
9512
|
"type": "number",
|
|
9513
9513
|
"unit": "pixel",
|
|
9514
9514
|
"original": {
|
|
9515
|
-
"value":
|
|
9515
|
+
"value": 21,
|
|
9516
9516
|
"type": "number",
|
|
9517
9517
|
"unit": "pixel"
|
|
9518
9518
|
},
|
|
@@ -9772,11 +9772,11 @@ var ddsStyles = {
|
|
|
9772
9772
|
]
|
|
9773
9773
|
},
|
|
9774
9774
|
"paragraphSpacing": {
|
|
9775
|
-
"value":
|
|
9775
|
+
"value": 26,
|
|
9776
9776
|
"type": "number",
|
|
9777
9777
|
"unit": "pixel",
|
|
9778
9778
|
"original": {
|
|
9779
|
-
"value":
|
|
9779
|
+
"value": 26,
|
|
9780
9780
|
"type": "number",
|
|
9781
9781
|
"unit": "pixel"
|
|
9782
9782
|
},
|
|
@@ -10038,11 +10038,11 @@ var ddsStyles = {
|
|
|
10038
10038
|
]
|
|
10039
10039
|
},
|
|
10040
10040
|
"paragraphSpacing": {
|
|
10041
|
-
"value":
|
|
10041
|
+
"value": 14,
|
|
10042
10042
|
"type": "number",
|
|
10043
10043
|
"unit": "pixel",
|
|
10044
10044
|
"original": {
|
|
10045
|
-
"value":
|
|
10045
|
+
"value": 14,
|
|
10046
10046
|
"type": "number",
|
|
10047
10047
|
"unit": "pixel"
|
|
10048
10048
|
},
|
|
@@ -10302,11 +10302,11 @@ var ddsStyles = {
|
|
|
10302
10302
|
]
|
|
10303
10303
|
},
|
|
10304
10304
|
"paragraphSpacing": {
|
|
10305
|
-
"value":
|
|
10305
|
+
"value": 14,
|
|
10306
10306
|
"type": "number",
|
|
10307
10307
|
"unit": "pixel",
|
|
10308
10308
|
"original": {
|
|
10309
|
-
"value":
|
|
10309
|
+
"value": 14,
|
|
10310
10310
|
"type": "number",
|
|
10311
10311
|
"unit": "pixel"
|
|
10312
10312
|
},
|
|
@@ -10566,11 +10566,11 @@ var ddsStyles = {
|
|
|
10566
10566
|
]
|
|
10567
10567
|
},
|
|
10568
10568
|
"paragraphSpacing": {
|
|
10569
|
-
"value":
|
|
10569
|
+
"value": 14,
|
|
10570
10570
|
"type": "number",
|
|
10571
10571
|
"unit": "pixel",
|
|
10572
10572
|
"original": {
|
|
10573
|
-
"value":
|
|
10573
|
+
"value": 14,
|
|
10574
10574
|
"type": "number",
|
|
10575
10575
|
"unit": "pixel"
|
|
10576
10576
|
},
|
|
@@ -10830,11 +10830,11 @@ var ddsStyles = {
|
|
|
10830
10830
|
]
|
|
10831
10831
|
},
|
|
10832
10832
|
"paragraphSpacing": {
|
|
10833
|
-
"value":
|
|
10833
|
+
"value": 18,
|
|
10834
10834
|
"type": "number",
|
|
10835
10835
|
"unit": "pixel",
|
|
10836
10836
|
"original": {
|
|
10837
|
-
"value":
|
|
10837
|
+
"value": 18,
|
|
10838
10838
|
"type": "number",
|
|
10839
10839
|
"unit": "pixel"
|
|
10840
10840
|
},
|
|
@@ -11094,11 +11094,11 @@ var ddsStyles = {
|
|
|
11094
11094
|
]
|
|
11095
11095
|
},
|
|
11096
11096
|
"paragraphSpacing": {
|
|
11097
|
-
"value":
|
|
11097
|
+
"value": 20,
|
|
11098
11098
|
"type": "number",
|
|
11099
11099
|
"unit": "pixel",
|
|
11100
11100
|
"original": {
|
|
11101
|
-
"value":
|
|
11101
|
+
"value": 20,
|
|
11102
11102
|
"type": "number",
|
|
11103
11103
|
"unit": "pixel"
|
|
11104
11104
|
},
|
|
@@ -11358,11 +11358,11 @@ var ddsStyles = {
|
|
|
11358
11358
|
]
|
|
11359
11359
|
},
|
|
11360
11360
|
"paragraphSpacing": {
|
|
11361
|
-
"value":
|
|
11361
|
+
"value": 18,
|
|
11362
11362
|
"type": "number",
|
|
11363
11363
|
"unit": "pixel",
|
|
11364
11364
|
"original": {
|
|
11365
|
-
"value":
|
|
11365
|
+
"value": 18,
|
|
11366
11366
|
"type": "number",
|
|
11367
11367
|
"unit": "pixel"
|
|
11368
11368
|
},
|
|
@@ -11622,11 +11622,11 @@ var ddsStyles = {
|
|
|
11622
11622
|
]
|
|
11623
11623
|
},
|
|
11624
11624
|
"paragraphSpacing": {
|
|
11625
|
-
"value":
|
|
11625
|
+
"value": 12,
|
|
11626
11626
|
"type": "number",
|
|
11627
11627
|
"unit": "pixel",
|
|
11628
11628
|
"original": {
|
|
11629
|
-
"value":
|
|
11629
|
+
"value": 12,
|
|
11630
11630
|
"type": "number",
|
|
11631
11631
|
"unit": "pixel"
|
|
11632
11632
|
},
|
|
@@ -12752,95 +12752,6 @@ if (process.env.NODE_ENV === 'production') {
|
|
|
12752
12752
|
}
|
|
12753
12753
|
});
|
|
12754
12754
|
|
|
12755
|
-
/*
|
|
12756
|
-
object-assign
|
|
12757
|
-
(c) Sindre Sorhus
|
|
12758
|
-
@license MIT
|
|
12759
|
-
*/
|
|
12760
|
-
/* eslint-disable no-unused-vars */
|
|
12761
|
-
var getOwnPropertySymbols = Object.getOwnPropertySymbols;
|
|
12762
|
-
var hasOwnProperty$1 = Object.prototype.hasOwnProperty;
|
|
12763
|
-
var propIsEnumerable = Object.prototype.propertyIsEnumerable;
|
|
12764
|
-
|
|
12765
|
-
function toObject(val) {
|
|
12766
|
-
if (val === null || val === undefined) {
|
|
12767
|
-
throw new TypeError('Object.assign cannot be called with null or undefined');
|
|
12768
|
-
}
|
|
12769
|
-
|
|
12770
|
-
return Object(val);
|
|
12771
|
-
}
|
|
12772
|
-
|
|
12773
|
-
function shouldUseNative() {
|
|
12774
|
-
try {
|
|
12775
|
-
if (!Object.assign) {
|
|
12776
|
-
return false;
|
|
12777
|
-
}
|
|
12778
|
-
|
|
12779
|
-
// Detect buggy property enumeration order in older V8 versions.
|
|
12780
|
-
|
|
12781
|
-
// https://bugs.chromium.org/p/v8/issues/detail?id=4118
|
|
12782
|
-
var test1 = new String('abc'); // eslint-disable-line no-new-wrappers
|
|
12783
|
-
test1[5] = 'de';
|
|
12784
|
-
if (Object.getOwnPropertyNames(test1)[0] === '5') {
|
|
12785
|
-
return false;
|
|
12786
|
-
}
|
|
12787
|
-
|
|
12788
|
-
// https://bugs.chromium.org/p/v8/issues/detail?id=3056
|
|
12789
|
-
var test2 = {};
|
|
12790
|
-
for (var i = 0; i < 10; i++) {
|
|
12791
|
-
test2['_' + String.fromCharCode(i)] = i;
|
|
12792
|
-
}
|
|
12793
|
-
var order2 = Object.getOwnPropertyNames(test2).map(function (n) {
|
|
12794
|
-
return test2[n];
|
|
12795
|
-
});
|
|
12796
|
-
if (order2.join('') !== '0123456789') {
|
|
12797
|
-
return false;
|
|
12798
|
-
}
|
|
12799
|
-
|
|
12800
|
-
// https://bugs.chromium.org/p/v8/issues/detail?id=3056
|
|
12801
|
-
var test3 = {};
|
|
12802
|
-
'abcdefghijklmnopqrst'.split('').forEach(function (letter) {
|
|
12803
|
-
test3[letter] = letter;
|
|
12804
|
-
});
|
|
12805
|
-
if (Object.keys(Object.assign({}, test3)).join('') !==
|
|
12806
|
-
'abcdefghijklmnopqrst') {
|
|
12807
|
-
return false;
|
|
12808
|
-
}
|
|
12809
|
-
|
|
12810
|
-
return true;
|
|
12811
|
-
} catch (err) {
|
|
12812
|
-
// We don't expect any of the above to throw, but better to be safe.
|
|
12813
|
-
return false;
|
|
12814
|
-
}
|
|
12815
|
-
}
|
|
12816
|
-
|
|
12817
|
-
var objectAssign = shouldUseNative() ? Object.assign : function (target, source) {
|
|
12818
|
-
var from;
|
|
12819
|
-
var to = toObject(target);
|
|
12820
|
-
var symbols;
|
|
12821
|
-
|
|
12822
|
-
for (var s = 1; s < arguments.length; s++) {
|
|
12823
|
-
from = Object(arguments[s]);
|
|
12824
|
-
|
|
12825
|
-
for (var key in from) {
|
|
12826
|
-
if (hasOwnProperty$1.call(from, key)) {
|
|
12827
|
-
to[key] = from[key];
|
|
12828
|
-
}
|
|
12829
|
-
}
|
|
12830
|
-
|
|
12831
|
-
if (getOwnPropertySymbols) {
|
|
12832
|
-
symbols = getOwnPropertySymbols(from);
|
|
12833
|
-
for (var i = 0; i < symbols.length; i++) {
|
|
12834
|
-
if (propIsEnumerable.call(from, symbols[i])) {
|
|
12835
|
-
to[symbols[i]] = from[symbols[i]];
|
|
12836
|
-
}
|
|
12837
|
-
}
|
|
12838
|
-
}
|
|
12839
|
-
}
|
|
12840
|
-
|
|
12841
|
-
return to;
|
|
12842
|
-
};
|
|
12843
|
-
|
|
12844
12755
|
/**
|
|
12845
12756
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
12846
12757
|
*
|