@carbon/themes 10.48.0 → 10.49.0-rc.0
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/es/index.js +9 -21
- package/lib/index.js +106 -308
- package/package.json +11 -11
- package/scss/compat/generated/_themes.scss +192 -192
- package/scss/modules/generated/_themes.scss +292 -292
- package/umd/index.js +108 -310
package/lib/index.js
CHANGED
|
@@ -16,14 +16,9 @@ function ownKeys(object, enumerableOnly) {
|
|
|
16
16
|
|
|
17
17
|
if (Object.getOwnPropertySymbols) {
|
|
18
18
|
var symbols = Object.getOwnPropertySymbols(object);
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
return Object.getOwnPropertyDescriptor(object, sym).enumerable;
|
|
23
|
-
});
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
keys.push.apply(keys, symbols);
|
|
19
|
+
enumerableOnly && (symbols = symbols.filter(function (sym) {
|
|
20
|
+
return Object.getOwnPropertyDescriptor(object, sym).enumerable;
|
|
21
|
+
})), keys.push.apply(keys, symbols);
|
|
27
22
|
}
|
|
28
23
|
|
|
29
24
|
return keys;
|
|
@@ -31,19 +26,12 @@ function ownKeys(object, enumerableOnly) {
|
|
|
31
26
|
|
|
32
27
|
function _objectSpread2(target) {
|
|
33
28
|
for (var i = 1; i < arguments.length; i++) {
|
|
34
|
-
var source = arguments[i]
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
} else if (Object.getOwnPropertyDescriptors) {
|
|
41
|
-
Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));
|
|
42
|
-
} else {
|
|
43
|
-
ownKeys(Object(source)).forEach(function (key) {
|
|
44
|
-
Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
|
|
45
|
-
});
|
|
46
|
-
}
|
|
29
|
+
var source = null != arguments[i] ? arguments[i] : {};
|
|
30
|
+
i % 2 ? ownKeys(Object(source), !0).forEach(function (key) {
|
|
31
|
+
_defineProperty(target, key, source[key]);
|
|
32
|
+
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) {
|
|
33
|
+
Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
|
|
34
|
+
});
|
|
47
35
|
}
|
|
48
36
|
|
|
49
37
|
return target;
|
|
@@ -75,8 +63,8 @@ function _defineProperty(obj, key, value) {
|
|
|
75
63
|
*/
|
|
76
64
|
|
|
77
65
|
function adjustLightness(token, shift) {
|
|
78
|
-
var original = Color__default[
|
|
79
|
-
return Color__default[
|
|
66
|
+
var original = Color__default["default"](token).hsl().object();
|
|
67
|
+
return Color__default["default"](_objectSpread2(_objectSpread2({}, original), {}, {
|
|
80
68
|
l: original.l += shift
|
|
81
69
|
})).round().hex().toLowerCase();
|
|
82
70
|
}
|
|
@@ -2620,573 +2608,383 @@ var themes = {
|
|
|
2620
2608
|
|
|
2621
2609
|
Object.defineProperty(exports, 'body01', {
|
|
2622
2610
|
enumerable: true,
|
|
2623
|
-
get: function () {
|
|
2624
|
-
return type.body01;
|
|
2625
|
-
}
|
|
2611
|
+
get: function () { return type.body01; }
|
|
2626
2612
|
});
|
|
2627
2613
|
Object.defineProperty(exports, 'body02', {
|
|
2628
2614
|
enumerable: true,
|
|
2629
|
-
get: function () {
|
|
2630
|
-
return type.body02;
|
|
2631
|
-
}
|
|
2615
|
+
get: function () { return type.body02; }
|
|
2632
2616
|
});
|
|
2633
2617
|
Object.defineProperty(exports, 'bodyCompact01', {
|
|
2634
2618
|
enumerable: true,
|
|
2635
|
-
get: function () {
|
|
2636
|
-
return type.bodyCompact01;
|
|
2637
|
-
}
|
|
2619
|
+
get: function () { return type.bodyCompact01; }
|
|
2638
2620
|
});
|
|
2639
2621
|
Object.defineProperty(exports, 'bodyCompact02', {
|
|
2640
2622
|
enumerable: true,
|
|
2641
|
-
get: function () {
|
|
2642
|
-
return type.bodyCompact02;
|
|
2643
|
-
}
|
|
2623
|
+
get: function () { return type.bodyCompact02; }
|
|
2644
2624
|
});
|
|
2645
2625
|
Object.defineProperty(exports, 'bodyLong01', {
|
|
2646
2626
|
enumerable: true,
|
|
2647
|
-
get: function () {
|
|
2648
|
-
return type.bodyLong01;
|
|
2649
|
-
}
|
|
2627
|
+
get: function () { return type.bodyLong01; }
|
|
2650
2628
|
});
|
|
2651
2629
|
Object.defineProperty(exports, 'bodyLong02', {
|
|
2652
2630
|
enumerable: true,
|
|
2653
|
-
get: function () {
|
|
2654
|
-
return type.bodyLong02;
|
|
2655
|
-
}
|
|
2631
|
+
get: function () { return type.bodyLong02; }
|
|
2656
2632
|
});
|
|
2657
2633
|
Object.defineProperty(exports, 'bodyShort01', {
|
|
2658
2634
|
enumerable: true,
|
|
2659
|
-
get: function () {
|
|
2660
|
-
return type.bodyShort01;
|
|
2661
|
-
}
|
|
2635
|
+
get: function () { return type.bodyShort01; }
|
|
2662
2636
|
});
|
|
2663
2637
|
Object.defineProperty(exports, 'bodyShort02', {
|
|
2664
2638
|
enumerable: true,
|
|
2665
|
-
get: function () {
|
|
2666
|
-
return type.bodyShort02;
|
|
2667
|
-
}
|
|
2639
|
+
get: function () { return type.bodyShort02; }
|
|
2668
2640
|
});
|
|
2669
2641
|
Object.defineProperty(exports, 'caption01', {
|
|
2670
2642
|
enumerable: true,
|
|
2671
|
-
get: function () {
|
|
2672
|
-
return type.caption01;
|
|
2673
|
-
}
|
|
2643
|
+
get: function () { return type.caption01; }
|
|
2674
2644
|
});
|
|
2675
2645
|
Object.defineProperty(exports, 'caption02', {
|
|
2676
2646
|
enumerable: true,
|
|
2677
|
-
get: function () {
|
|
2678
|
-
return type.caption02;
|
|
2679
|
-
}
|
|
2647
|
+
get: function () { return type.caption02; }
|
|
2680
2648
|
});
|
|
2681
2649
|
Object.defineProperty(exports, 'code01', {
|
|
2682
2650
|
enumerable: true,
|
|
2683
|
-
get: function () {
|
|
2684
|
-
return type.code01;
|
|
2685
|
-
}
|
|
2651
|
+
get: function () { return type.code01; }
|
|
2686
2652
|
});
|
|
2687
2653
|
Object.defineProperty(exports, 'code02', {
|
|
2688
2654
|
enumerable: true,
|
|
2689
|
-
get: function () {
|
|
2690
|
-
return type.code02;
|
|
2691
|
-
}
|
|
2655
|
+
get: function () { return type.code02; }
|
|
2692
2656
|
});
|
|
2693
2657
|
Object.defineProperty(exports, 'display01', {
|
|
2694
2658
|
enumerable: true,
|
|
2695
|
-
get: function () {
|
|
2696
|
-
return type.display01;
|
|
2697
|
-
}
|
|
2659
|
+
get: function () { return type.display01; }
|
|
2698
2660
|
});
|
|
2699
2661
|
Object.defineProperty(exports, 'display02', {
|
|
2700
2662
|
enumerable: true,
|
|
2701
|
-
get: function () {
|
|
2702
|
-
return type.display02;
|
|
2703
|
-
}
|
|
2663
|
+
get: function () { return type.display02; }
|
|
2704
2664
|
});
|
|
2705
2665
|
Object.defineProperty(exports, 'display03', {
|
|
2706
2666
|
enumerable: true,
|
|
2707
|
-
get: function () {
|
|
2708
|
-
return type.display03;
|
|
2709
|
-
}
|
|
2667
|
+
get: function () { return type.display03; }
|
|
2710
2668
|
});
|
|
2711
2669
|
Object.defineProperty(exports, 'display04', {
|
|
2712
2670
|
enumerable: true,
|
|
2713
|
-
get: function () {
|
|
2714
|
-
return type.display04;
|
|
2715
|
-
}
|
|
2671
|
+
get: function () { return type.display04; }
|
|
2716
2672
|
});
|
|
2717
2673
|
Object.defineProperty(exports, 'expressiveHeading01', {
|
|
2718
2674
|
enumerable: true,
|
|
2719
|
-
get: function () {
|
|
2720
|
-
return type.expressiveHeading01;
|
|
2721
|
-
}
|
|
2675
|
+
get: function () { return type.expressiveHeading01; }
|
|
2722
2676
|
});
|
|
2723
2677
|
Object.defineProperty(exports, 'expressiveHeading02', {
|
|
2724
2678
|
enumerable: true,
|
|
2725
|
-
get: function () {
|
|
2726
|
-
return type.expressiveHeading02;
|
|
2727
|
-
}
|
|
2679
|
+
get: function () { return type.expressiveHeading02; }
|
|
2728
2680
|
});
|
|
2729
2681
|
Object.defineProperty(exports, 'expressiveHeading03', {
|
|
2730
2682
|
enumerable: true,
|
|
2731
|
-
get: function () {
|
|
2732
|
-
return type.expressiveHeading03;
|
|
2733
|
-
}
|
|
2683
|
+
get: function () { return type.expressiveHeading03; }
|
|
2734
2684
|
});
|
|
2735
2685
|
Object.defineProperty(exports, 'expressiveHeading04', {
|
|
2736
2686
|
enumerable: true,
|
|
2737
|
-
get: function () {
|
|
2738
|
-
return type.expressiveHeading04;
|
|
2739
|
-
}
|
|
2687
|
+
get: function () { return type.expressiveHeading04; }
|
|
2740
2688
|
});
|
|
2741
2689
|
Object.defineProperty(exports, 'expressiveHeading05', {
|
|
2742
2690
|
enumerable: true,
|
|
2743
|
-
get: function () {
|
|
2744
|
-
return type.expressiveHeading05;
|
|
2745
|
-
}
|
|
2691
|
+
get: function () { return type.expressiveHeading05; }
|
|
2746
2692
|
});
|
|
2747
2693
|
Object.defineProperty(exports, 'expressiveHeading06', {
|
|
2748
2694
|
enumerable: true,
|
|
2749
|
-
get: function () {
|
|
2750
|
-
return type.expressiveHeading06;
|
|
2751
|
-
}
|
|
2695
|
+
get: function () { return type.expressiveHeading06; }
|
|
2752
2696
|
});
|
|
2753
2697
|
Object.defineProperty(exports, 'expressiveParagraph01', {
|
|
2754
2698
|
enumerable: true,
|
|
2755
|
-
get: function () {
|
|
2756
|
-
return type.expressiveParagraph01;
|
|
2757
|
-
}
|
|
2699
|
+
get: function () { return type.expressiveParagraph01; }
|
|
2758
2700
|
});
|
|
2759
2701
|
Object.defineProperty(exports, 'fluidDisplay01', {
|
|
2760
2702
|
enumerable: true,
|
|
2761
|
-
get: function () {
|
|
2762
|
-
return type.fluidDisplay01;
|
|
2763
|
-
}
|
|
2703
|
+
get: function () { return type.fluidDisplay01; }
|
|
2764
2704
|
});
|
|
2765
2705
|
Object.defineProperty(exports, 'fluidDisplay02', {
|
|
2766
2706
|
enumerable: true,
|
|
2767
|
-
get: function () {
|
|
2768
|
-
return type.fluidDisplay02;
|
|
2769
|
-
}
|
|
2707
|
+
get: function () { return type.fluidDisplay02; }
|
|
2770
2708
|
});
|
|
2771
2709
|
Object.defineProperty(exports, 'fluidDisplay03', {
|
|
2772
2710
|
enumerable: true,
|
|
2773
|
-
get: function () {
|
|
2774
|
-
return type.fluidDisplay03;
|
|
2775
|
-
}
|
|
2711
|
+
get: function () { return type.fluidDisplay03; }
|
|
2776
2712
|
});
|
|
2777
2713
|
Object.defineProperty(exports, 'fluidDisplay04', {
|
|
2778
2714
|
enumerable: true,
|
|
2779
|
-
get: function () {
|
|
2780
|
-
return type.fluidDisplay04;
|
|
2781
|
-
}
|
|
2715
|
+
get: function () { return type.fluidDisplay04; }
|
|
2782
2716
|
});
|
|
2783
2717
|
Object.defineProperty(exports, 'fluidHeading03', {
|
|
2784
2718
|
enumerable: true,
|
|
2785
|
-
get: function () {
|
|
2786
|
-
return type.fluidHeading03;
|
|
2787
|
-
}
|
|
2719
|
+
get: function () { return type.fluidHeading03; }
|
|
2788
2720
|
});
|
|
2789
2721
|
Object.defineProperty(exports, 'fluidHeading04', {
|
|
2790
2722
|
enumerable: true,
|
|
2791
|
-
get: function () {
|
|
2792
|
-
return type.fluidHeading04;
|
|
2793
|
-
}
|
|
2723
|
+
get: function () { return type.fluidHeading04; }
|
|
2794
2724
|
});
|
|
2795
2725
|
Object.defineProperty(exports, 'fluidHeading05', {
|
|
2796
2726
|
enumerable: true,
|
|
2797
|
-
get: function () {
|
|
2798
|
-
return type.fluidHeading05;
|
|
2799
|
-
}
|
|
2727
|
+
get: function () { return type.fluidHeading05; }
|
|
2800
2728
|
});
|
|
2801
2729
|
Object.defineProperty(exports, 'fluidHeading06', {
|
|
2802
2730
|
enumerable: true,
|
|
2803
|
-
get: function () {
|
|
2804
|
-
return type.fluidHeading06;
|
|
2805
|
-
}
|
|
2731
|
+
get: function () { return type.fluidHeading06; }
|
|
2806
2732
|
});
|
|
2807
2733
|
Object.defineProperty(exports, 'fluidParagraph01', {
|
|
2808
2734
|
enumerable: true,
|
|
2809
|
-
get: function () {
|
|
2810
|
-
return type.fluidParagraph01;
|
|
2811
|
-
}
|
|
2735
|
+
get: function () { return type.fluidParagraph01; }
|
|
2812
2736
|
});
|
|
2813
2737
|
Object.defineProperty(exports, 'fluidQuotation01', {
|
|
2814
2738
|
enumerable: true,
|
|
2815
|
-
get: function () {
|
|
2816
|
-
return type.fluidQuotation01;
|
|
2817
|
-
}
|
|
2739
|
+
get: function () { return type.fluidQuotation01; }
|
|
2818
2740
|
});
|
|
2819
2741
|
Object.defineProperty(exports, 'fluidQuotation02', {
|
|
2820
2742
|
enumerable: true,
|
|
2821
|
-
get: function () {
|
|
2822
|
-
return type.fluidQuotation02;
|
|
2823
|
-
}
|
|
2743
|
+
get: function () { return type.fluidQuotation02; }
|
|
2824
2744
|
});
|
|
2825
2745
|
Object.defineProperty(exports, 'heading01', {
|
|
2826
2746
|
enumerable: true,
|
|
2827
|
-
get: function () {
|
|
2828
|
-
return type.heading01;
|
|
2829
|
-
}
|
|
2747
|
+
get: function () { return type.heading01; }
|
|
2830
2748
|
});
|
|
2831
2749
|
Object.defineProperty(exports, 'heading02', {
|
|
2832
2750
|
enumerable: true,
|
|
2833
|
-
get: function () {
|
|
2834
|
-
return type.heading02;
|
|
2835
|
-
}
|
|
2751
|
+
get: function () { return type.heading02; }
|
|
2836
2752
|
});
|
|
2837
2753
|
Object.defineProperty(exports, 'heading03', {
|
|
2838
2754
|
enumerable: true,
|
|
2839
|
-
get: function () {
|
|
2840
|
-
return type.heading03;
|
|
2841
|
-
}
|
|
2755
|
+
get: function () { return type.heading03; }
|
|
2842
2756
|
});
|
|
2843
2757
|
Object.defineProperty(exports, 'heading04', {
|
|
2844
2758
|
enumerable: true,
|
|
2845
|
-
get: function () {
|
|
2846
|
-
return type.heading04;
|
|
2847
|
-
}
|
|
2759
|
+
get: function () { return type.heading04; }
|
|
2848
2760
|
});
|
|
2849
2761
|
Object.defineProperty(exports, 'heading05', {
|
|
2850
2762
|
enumerable: true,
|
|
2851
|
-
get: function () {
|
|
2852
|
-
return type.heading05;
|
|
2853
|
-
}
|
|
2763
|
+
get: function () { return type.heading05; }
|
|
2854
2764
|
});
|
|
2855
2765
|
Object.defineProperty(exports, 'heading06', {
|
|
2856
2766
|
enumerable: true,
|
|
2857
|
-
get: function () {
|
|
2858
|
-
return type.heading06;
|
|
2859
|
-
}
|
|
2767
|
+
get: function () { return type.heading06; }
|
|
2860
2768
|
});
|
|
2861
2769
|
Object.defineProperty(exports, 'heading07', {
|
|
2862
2770
|
enumerable: true,
|
|
2863
|
-
get: function () {
|
|
2864
|
-
return type.heading07;
|
|
2865
|
-
}
|
|
2771
|
+
get: function () { return type.heading07; }
|
|
2866
2772
|
});
|
|
2867
2773
|
Object.defineProperty(exports, 'headingCompact01', {
|
|
2868
2774
|
enumerable: true,
|
|
2869
|
-
get: function () {
|
|
2870
|
-
return type.headingCompact01;
|
|
2871
|
-
}
|
|
2775
|
+
get: function () { return type.headingCompact01; }
|
|
2872
2776
|
});
|
|
2873
2777
|
Object.defineProperty(exports, 'headingCompact02', {
|
|
2874
2778
|
enumerable: true,
|
|
2875
|
-
get: function () {
|
|
2876
|
-
return type.headingCompact02;
|
|
2877
|
-
}
|
|
2779
|
+
get: function () { return type.headingCompact02; }
|
|
2878
2780
|
});
|
|
2879
2781
|
Object.defineProperty(exports, 'helperText01', {
|
|
2880
2782
|
enumerable: true,
|
|
2881
|
-
get: function () {
|
|
2882
|
-
return type.helperText01;
|
|
2883
|
-
}
|
|
2783
|
+
get: function () { return type.helperText01; }
|
|
2884
2784
|
});
|
|
2885
2785
|
Object.defineProperty(exports, 'helperText02', {
|
|
2886
2786
|
enumerable: true,
|
|
2887
|
-
get: function () {
|
|
2888
|
-
return type.helperText02;
|
|
2889
|
-
}
|
|
2787
|
+
get: function () { return type.helperText02; }
|
|
2890
2788
|
});
|
|
2891
2789
|
Object.defineProperty(exports, 'label01', {
|
|
2892
2790
|
enumerable: true,
|
|
2893
|
-
get: function () {
|
|
2894
|
-
return type.label01;
|
|
2895
|
-
}
|
|
2791
|
+
get: function () { return type.label01; }
|
|
2896
2792
|
});
|
|
2897
2793
|
Object.defineProperty(exports, 'label02', {
|
|
2898
2794
|
enumerable: true,
|
|
2899
|
-
get: function () {
|
|
2900
|
-
return type.label02;
|
|
2901
|
-
}
|
|
2795
|
+
get: function () { return type.label02; }
|
|
2902
2796
|
});
|
|
2903
2797
|
Object.defineProperty(exports, 'legal01', {
|
|
2904
2798
|
enumerable: true,
|
|
2905
|
-
get: function () {
|
|
2906
|
-
return type.legal01;
|
|
2907
|
-
}
|
|
2799
|
+
get: function () { return type.legal01; }
|
|
2908
2800
|
});
|
|
2909
2801
|
Object.defineProperty(exports, 'legal02', {
|
|
2910
2802
|
enumerable: true,
|
|
2911
|
-
get: function () {
|
|
2912
|
-
return type.legal02;
|
|
2913
|
-
}
|
|
2803
|
+
get: function () { return type.legal02; }
|
|
2914
2804
|
});
|
|
2915
2805
|
Object.defineProperty(exports, 'productiveHeading01', {
|
|
2916
2806
|
enumerable: true,
|
|
2917
|
-
get: function () {
|
|
2918
|
-
return type.productiveHeading01;
|
|
2919
|
-
}
|
|
2807
|
+
get: function () { return type.productiveHeading01; }
|
|
2920
2808
|
});
|
|
2921
2809
|
Object.defineProperty(exports, 'productiveHeading02', {
|
|
2922
2810
|
enumerable: true,
|
|
2923
|
-
get: function () {
|
|
2924
|
-
return type.productiveHeading02;
|
|
2925
|
-
}
|
|
2811
|
+
get: function () { return type.productiveHeading02; }
|
|
2926
2812
|
});
|
|
2927
2813
|
Object.defineProperty(exports, 'productiveHeading03', {
|
|
2928
2814
|
enumerable: true,
|
|
2929
|
-
get: function () {
|
|
2930
|
-
return type.productiveHeading03;
|
|
2931
|
-
}
|
|
2815
|
+
get: function () { return type.productiveHeading03; }
|
|
2932
2816
|
});
|
|
2933
2817
|
Object.defineProperty(exports, 'productiveHeading04', {
|
|
2934
2818
|
enumerable: true,
|
|
2935
|
-
get: function () {
|
|
2936
|
-
return type.productiveHeading04;
|
|
2937
|
-
}
|
|
2819
|
+
get: function () { return type.productiveHeading04; }
|
|
2938
2820
|
});
|
|
2939
2821
|
Object.defineProperty(exports, 'productiveHeading05', {
|
|
2940
2822
|
enumerable: true,
|
|
2941
|
-
get: function () {
|
|
2942
|
-
return type.productiveHeading05;
|
|
2943
|
-
}
|
|
2823
|
+
get: function () { return type.productiveHeading05; }
|
|
2944
2824
|
});
|
|
2945
2825
|
Object.defineProperty(exports, 'productiveHeading06', {
|
|
2946
2826
|
enumerable: true,
|
|
2947
|
-
get: function () {
|
|
2948
|
-
return type.productiveHeading06;
|
|
2949
|
-
}
|
|
2827
|
+
get: function () { return type.productiveHeading06; }
|
|
2950
2828
|
});
|
|
2951
2829
|
Object.defineProperty(exports, 'productiveHeading07', {
|
|
2952
2830
|
enumerable: true,
|
|
2953
|
-
get: function () {
|
|
2954
|
-
return type.productiveHeading07;
|
|
2955
|
-
}
|
|
2831
|
+
get: function () { return type.productiveHeading07; }
|
|
2956
2832
|
});
|
|
2957
2833
|
Object.defineProperty(exports, 'quotation01', {
|
|
2958
2834
|
enumerable: true,
|
|
2959
|
-
get: function () {
|
|
2960
|
-
return type.quotation01;
|
|
2961
|
-
}
|
|
2835
|
+
get: function () { return type.quotation01; }
|
|
2962
2836
|
});
|
|
2963
2837
|
Object.defineProperty(exports, 'quotation02', {
|
|
2964
2838
|
enumerable: true,
|
|
2965
|
-
get: function () {
|
|
2966
|
-
return type.quotation02;
|
|
2967
|
-
}
|
|
2839
|
+
get: function () { return type.quotation02; }
|
|
2968
2840
|
});
|
|
2969
2841
|
Object.defineProperty(exports, 'container01', {
|
|
2970
2842
|
enumerable: true,
|
|
2971
|
-
get: function () {
|
|
2972
|
-
return layout.container01;
|
|
2973
|
-
}
|
|
2843
|
+
get: function () { return layout.container01; }
|
|
2974
2844
|
});
|
|
2975
2845
|
Object.defineProperty(exports, 'container02', {
|
|
2976
2846
|
enumerable: true,
|
|
2977
|
-
get: function () {
|
|
2978
|
-
return layout.container02;
|
|
2979
|
-
}
|
|
2847
|
+
get: function () { return layout.container02; }
|
|
2980
2848
|
});
|
|
2981
2849
|
Object.defineProperty(exports, 'container03', {
|
|
2982
2850
|
enumerable: true,
|
|
2983
|
-
get: function () {
|
|
2984
|
-
return layout.container03;
|
|
2985
|
-
}
|
|
2851
|
+
get: function () { return layout.container03; }
|
|
2986
2852
|
});
|
|
2987
2853
|
Object.defineProperty(exports, 'container04', {
|
|
2988
2854
|
enumerable: true,
|
|
2989
|
-
get: function () {
|
|
2990
|
-
return layout.container04;
|
|
2991
|
-
}
|
|
2855
|
+
get: function () { return layout.container04; }
|
|
2992
2856
|
});
|
|
2993
2857
|
Object.defineProperty(exports, 'container05', {
|
|
2994
2858
|
enumerable: true,
|
|
2995
|
-
get: function () {
|
|
2996
|
-
return layout.container05;
|
|
2997
|
-
}
|
|
2859
|
+
get: function () { return layout.container05; }
|
|
2998
2860
|
});
|
|
2999
2861
|
Object.defineProperty(exports, 'fluidSpacing01', {
|
|
3000
2862
|
enumerable: true,
|
|
3001
|
-
get: function () {
|
|
3002
|
-
return layout.fluidSpacing01;
|
|
3003
|
-
}
|
|
2863
|
+
get: function () { return layout.fluidSpacing01; }
|
|
3004
2864
|
});
|
|
3005
2865
|
Object.defineProperty(exports, 'fluidSpacing02', {
|
|
3006
2866
|
enumerable: true,
|
|
3007
|
-
get: function () {
|
|
3008
|
-
return layout.fluidSpacing02;
|
|
3009
|
-
}
|
|
2867
|
+
get: function () { return layout.fluidSpacing02; }
|
|
3010
2868
|
});
|
|
3011
2869
|
Object.defineProperty(exports, 'fluidSpacing03', {
|
|
3012
2870
|
enumerable: true,
|
|
3013
|
-
get: function () {
|
|
3014
|
-
return layout.fluidSpacing03;
|
|
3015
|
-
}
|
|
2871
|
+
get: function () { return layout.fluidSpacing03; }
|
|
3016
2872
|
});
|
|
3017
2873
|
Object.defineProperty(exports, 'fluidSpacing04', {
|
|
3018
2874
|
enumerable: true,
|
|
3019
|
-
get: function () {
|
|
3020
|
-
return layout.fluidSpacing04;
|
|
3021
|
-
}
|
|
2875
|
+
get: function () { return layout.fluidSpacing04; }
|
|
3022
2876
|
});
|
|
3023
2877
|
Object.defineProperty(exports, 'iconSize01', {
|
|
3024
2878
|
enumerable: true,
|
|
3025
|
-
get: function () {
|
|
3026
|
-
return layout.iconSize01;
|
|
3027
|
-
}
|
|
2879
|
+
get: function () { return layout.iconSize01; }
|
|
3028
2880
|
});
|
|
3029
2881
|
Object.defineProperty(exports, 'iconSize02', {
|
|
3030
2882
|
enumerable: true,
|
|
3031
|
-
get: function () {
|
|
3032
|
-
return layout.iconSize02;
|
|
3033
|
-
}
|
|
2883
|
+
get: function () { return layout.iconSize02; }
|
|
3034
2884
|
});
|
|
3035
2885
|
Object.defineProperty(exports, 'layout01', {
|
|
3036
2886
|
enumerable: true,
|
|
3037
|
-
get: function () {
|
|
3038
|
-
return layout.layout01;
|
|
3039
|
-
}
|
|
2887
|
+
get: function () { return layout.layout01; }
|
|
3040
2888
|
});
|
|
3041
2889
|
Object.defineProperty(exports, 'layout02', {
|
|
3042
2890
|
enumerable: true,
|
|
3043
|
-
get: function () {
|
|
3044
|
-
return layout.layout02;
|
|
3045
|
-
}
|
|
2891
|
+
get: function () { return layout.layout02; }
|
|
3046
2892
|
});
|
|
3047
2893
|
Object.defineProperty(exports, 'layout03', {
|
|
3048
2894
|
enumerable: true,
|
|
3049
|
-
get: function () {
|
|
3050
|
-
return layout.layout03;
|
|
3051
|
-
}
|
|
2895
|
+
get: function () { return layout.layout03; }
|
|
3052
2896
|
});
|
|
3053
2897
|
Object.defineProperty(exports, 'layout04', {
|
|
3054
2898
|
enumerable: true,
|
|
3055
|
-
get: function () {
|
|
3056
|
-
return layout.layout04;
|
|
3057
|
-
}
|
|
2899
|
+
get: function () { return layout.layout04; }
|
|
3058
2900
|
});
|
|
3059
2901
|
Object.defineProperty(exports, 'layout05', {
|
|
3060
2902
|
enumerable: true,
|
|
3061
|
-
get: function () {
|
|
3062
|
-
return layout.layout05;
|
|
3063
|
-
}
|
|
2903
|
+
get: function () { return layout.layout05; }
|
|
3064
2904
|
});
|
|
3065
2905
|
Object.defineProperty(exports, 'layout06', {
|
|
3066
2906
|
enumerable: true,
|
|
3067
|
-
get: function () {
|
|
3068
|
-
return layout.layout06;
|
|
3069
|
-
}
|
|
2907
|
+
get: function () { return layout.layout06; }
|
|
3070
2908
|
});
|
|
3071
2909
|
Object.defineProperty(exports, 'layout07', {
|
|
3072
2910
|
enumerable: true,
|
|
3073
|
-
get: function () {
|
|
3074
|
-
return layout.layout07;
|
|
3075
|
-
}
|
|
2911
|
+
get: function () { return layout.layout07; }
|
|
3076
2912
|
});
|
|
3077
2913
|
Object.defineProperty(exports, 'size2XLarge', {
|
|
3078
2914
|
enumerable: true,
|
|
3079
|
-
get: function () {
|
|
3080
|
-
return layout.size2XLarge;
|
|
3081
|
-
}
|
|
2915
|
+
get: function () { return layout.size2XLarge; }
|
|
3082
2916
|
});
|
|
3083
2917
|
Object.defineProperty(exports, 'sizeLarge', {
|
|
3084
2918
|
enumerable: true,
|
|
3085
|
-
get: function () {
|
|
3086
|
-
return layout.sizeLarge;
|
|
3087
|
-
}
|
|
2919
|
+
get: function () { return layout.sizeLarge; }
|
|
3088
2920
|
});
|
|
3089
2921
|
Object.defineProperty(exports, 'sizeMedium', {
|
|
3090
2922
|
enumerable: true,
|
|
3091
|
-
get: function () {
|
|
3092
|
-
return layout.sizeMedium;
|
|
3093
|
-
}
|
|
2923
|
+
get: function () { return layout.sizeMedium; }
|
|
3094
2924
|
});
|
|
3095
2925
|
Object.defineProperty(exports, 'sizeSmall', {
|
|
3096
2926
|
enumerable: true,
|
|
3097
|
-
get: function () {
|
|
3098
|
-
return layout.sizeSmall;
|
|
3099
|
-
}
|
|
2927
|
+
get: function () { return layout.sizeSmall; }
|
|
3100
2928
|
});
|
|
3101
2929
|
Object.defineProperty(exports, 'sizeXLarge', {
|
|
3102
2930
|
enumerable: true,
|
|
3103
|
-
get: function () {
|
|
3104
|
-
return layout.sizeXLarge;
|
|
3105
|
-
}
|
|
2931
|
+
get: function () { return layout.sizeXLarge; }
|
|
3106
2932
|
});
|
|
3107
2933
|
Object.defineProperty(exports, 'sizeXSmall', {
|
|
3108
2934
|
enumerable: true,
|
|
3109
|
-
get: function () {
|
|
3110
|
-
return layout.sizeXSmall;
|
|
3111
|
-
}
|
|
2935
|
+
get: function () { return layout.sizeXSmall; }
|
|
3112
2936
|
});
|
|
3113
2937
|
Object.defineProperty(exports, 'spacing01', {
|
|
3114
2938
|
enumerable: true,
|
|
3115
|
-
get: function () {
|
|
3116
|
-
return layout.spacing01;
|
|
3117
|
-
}
|
|
2939
|
+
get: function () { return layout.spacing01; }
|
|
3118
2940
|
});
|
|
3119
2941
|
Object.defineProperty(exports, 'spacing02', {
|
|
3120
2942
|
enumerable: true,
|
|
3121
|
-
get: function () {
|
|
3122
|
-
return layout.spacing02;
|
|
3123
|
-
}
|
|
2943
|
+
get: function () { return layout.spacing02; }
|
|
3124
2944
|
});
|
|
3125
2945
|
Object.defineProperty(exports, 'spacing03', {
|
|
3126
2946
|
enumerable: true,
|
|
3127
|
-
get: function () {
|
|
3128
|
-
return layout.spacing03;
|
|
3129
|
-
}
|
|
2947
|
+
get: function () { return layout.spacing03; }
|
|
3130
2948
|
});
|
|
3131
2949
|
Object.defineProperty(exports, 'spacing04', {
|
|
3132
2950
|
enumerable: true,
|
|
3133
|
-
get: function () {
|
|
3134
|
-
return layout.spacing04;
|
|
3135
|
-
}
|
|
2951
|
+
get: function () { return layout.spacing04; }
|
|
3136
2952
|
});
|
|
3137
2953
|
Object.defineProperty(exports, 'spacing05', {
|
|
3138
2954
|
enumerable: true,
|
|
3139
|
-
get: function () {
|
|
3140
|
-
return layout.spacing05;
|
|
3141
|
-
}
|
|
2955
|
+
get: function () { return layout.spacing05; }
|
|
3142
2956
|
});
|
|
3143
2957
|
Object.defineProperty(exports, 'spacing06', {
|
|
3144
2958
|
enumerable: true,
|
|
3145
|
-
get: function () {
|
|
3146
|
-
return layout.spacing06;
|
|
3147
|
-
}
|
|
2959
|
+
get: function () { return layout.spacing06; }
|
|
3148
2960
|
});
|
|
3149
2961
|
Object.defineProperty(exports, 'spacing07', {
|
|
3150
2962
|
enumerable: true,
|
|
3151
|
-
get: function () {
|
|
3152
|
-
return layout.spacing07;
|
|
3153
|
-
}
|
|
2963
|
+
get: function () { return layout.spacing07; }
|
|
3154
2964
|
});
|
|
3155
2965
|
Object.defineProperty(exports, 'spacing08', {
|
|
3156
2966
|
enumerable: true,
|
|
3157
|
-
get: function () {
|
|
3158
|
-
return layout.spacing08;
|
|
3159
|
-
}
|
|
2967
|
+
get: function () { return layout.spacing08; }
|
|
3160
2968
|
});
|
|
3161
2969
|
Object.defineProperty(exports, 'spacing09', {
|
|
3162
2970
|
enumerable: true,
|
|
3163
|
-
get: function () {
|
|
3164
|
-
return layout.spacing09;
|
|
3165
|
-
}
|
|
2971
|
+
get: function () { return layout.spacing09; }
|
|
3166
2972
|
});
|
|
3167
2973
|
Object.defineProperty(exports, 'spacing10', {
|
|
3168
2974
|
enumerable: true,
|
|
3169
|
-
get: function () {
|
|
3170
|
-
return layout.spacing10;
|
|
3171
|
-
}
|
|
2975
|
+
get: function () { return layout.spacing10; }
|
|
3172
2976
|
});
|
|
3173
2977
|
Object.defineProperty(exports, 'spacing11', {
|
|
3174
2978
|
enumerable: true,
|
|
3175
|
-
get: function () {
|
|
3176
|
-
return layout.spacing11;
|
|
3177
|
-
}
|
|
2979
|
+
get: function () { return layout.spacing11; }
|
|
3178
2980
|
});
|
|
3179
2981
|
Object.defineProperty(exports, 'spacing12', {
|
|
3180
2982
|
enumerable: true,
|
|
3181
|
-
get: function () {
|
|
3182
|
-
return layout.spacing12;
|
|
3183
|
-
}
|
|
2983
|
+
get: function () { return layout.spacing12; }
|
|
3184
2984
|
});
|
|
3185
2985
|
Object.defineProperty(exports, 'spacing13', {
|
|
3186
2986
|
enumerable: true,
|
|
3187
|
-
get: function () {
|
|
3188
|
-
return layout.spacing13;
|
|
3189
|
-
}
|
|
2987
|
+
get: function () { return layout.spacing13; }
|
|
3190
2988
|
});
|
|
3191
2989
|
exports.active01 = active01$5;
|
|
3192
2990
|
exports.activeDanger = activeDanger$5;
|