@pingux/astro 2.121.0-alpha.0 → 2.121.0-alpha.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/cjs/components/Footer/CopyrightText.d.ts +4 -0
- package/lib/cjs/components/Footer/CopyrightText.js +28 -0
- package/lib/cjs/components/Footer/Footer.d.ts +3 -0
- package/lib/cjs/components/Footer/Footer.js +35 -0
- package/lib/cjs/components/Footer/Footer.mdx +30 -0
- package/lib/cjs/components/Footer/Footer.stories.d.ts +5 -0
- package/lib/cjs/components/Footer/Footer.stories.js +148 -0
- package/lib/cjs/components/Footer/Footer.styles.js +9 -0
- package/lib/cjs/components/Footer/Footer.test.d.ts +1 -0
- package/lib/cjs/components/Footer/Footer.test.js +109 -0
- package/lib/cjs/components/Footer/FooterNav.d.ts +4 -0
- package/lib/cjs/components/Footer/FooterNav.js +25 -0
- package/lib/cjs/components/Footer/FooterNavItem.d.ts +6 -0
- package/lib/cjs/components/Footer/FooterNavItem.js +23 -0
- package/lib/cjs/components/Footer/index.d.ts +4 -0
- package/lib/cjs/components/Footer/index.js +35 -0
- package/lib/cjs/components/Footer/stories/FooterNextGenComponent.d.ts +2 -0
- package/lib/cjs/components/Footer/stories/FooterNextGenComponent.js +126 -0
- package/lib/cjs/{recipes/NextGen/ListViewNextGen.stories.js → components/Footer/stories/NextGenDarkFooterStory.chomatic.stories.js} +6 -7
- package/lib/cjs/components/Footer/stories/NextGenFooterStory.chromatic.stories.js +22 -0
- package/lib/cjs/components/Icon/Icon.js +13 -10
- package/lib/cjs/components/IconButton/IconButton.styles.d.ts +37 -0
- package/lib/cjs/components/IconButton/IconButton.styles.js +6 -1
- package/lib/cjs/components/IconWrapper/iconWrapperAttributes.js +1 -1
- package/lib/cjs/components/Link/Link.styles.d.ts +37 -0
- package/lib/cjs/components/Link/Link.styles.js +31 -1
- package/lib/cjs/components/ListView/ListView.js +5 -0
- package/lib/cjs/components/ListView/ListView.stories.d.ts +3 -3
- package/lib/cjs/components/ListView/ListView.stories.js +27 -458
- package/lib/cjs/components/ListView/ListViewExpandableItem.js +1 -0
- package/lib/cjs/components/ListView/ListViewItem.js +4 -1
- package/lib/cjs/{styles/themes/next-gen/stories/NextGenListView.chromatic.stories.js → components/ListView/stories/ListView.chromatic.stories.js} +2 -2
- package/lib/cjs/components/ListView/stories/ListViewNextGenComponent.js +144 -0
- package/lib/cjs/components/ListView/stories/ListViewOnyxDark.stories.d.ts +6 -0
- package/lib/cjs/{styles/themeOverrides/nextGenDarkMode/stories/NextGenDarkListView.chromatic.stories.js → components/ListView/stories/ListViewOnyxDark.stories.js} +3 -3
- package/lib/cjs/components/ListViewItem/ListViewItem.js +16 -5
- package/lib/cjs/components/ListViewItem/ListViewItem.stories.js +40 -3
- package/lib/cjs/components/ListViewItem/ListViewItem.styles.js +15 -1
- package/lib/cjs/components/ListViewItem/controls/ListViewItemEditButton.js +1 -1
- package/lib/cjs/components/ListViewItem/controls/ListViewItemMenu.js +9 -3
- package/lib/cjs/components/ListViewItem/controls/ListViewItemMenu.test.js +1 -0
- package/lib/cjs/components/ListViewItem/controls/chart/ListViewItemChart.js +5 -1
- package/lib/cjs/components/Pagination/Pagination.stories.js +3 -3
- package/lib/cjs/components/SearchField/SearchField.js +2 -8
- package/lib/cjs/components/Text/Text.styles.d.ts +7 -0
- package/lib/cjs/components/Text/Text.styles.js +8 -0
- package/lib/cjs/hooks/useExpandableListViewItem/useExpandableListViewItem.js +9 -3
- package/lib/cjs/hooks/useGetTheme/useGetTheme.d.ts +2 -0
- package/lib/cjs/index.d.ts +2 -0
- package/lib/cjs/index.js +76 -57
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/colors.d.ts +4 -0
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/colors.js +4 -0
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/customProperties/icons.d.ts +1 -0
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/customProperties/index.d.ts +1 -0
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/nextGenDarkModeOverride.js +2 -0
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/footer.d.ts +5 -0
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/footer.js +14 -0
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/links.d.ts +27 -0
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/links.js +13 -1
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/listview.d.ts +58 -0
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/{lsitview.js → listview.js} +37 -2
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/text.d.ts +18 -0
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/text.js +26 -0
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/variants.d.ts +39 -0
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/variants.js +6 -3
- package/lib/cjs/styles/themes/astro/customProperties/icons.d.ts +1 -0
- package/lib/cjs/styles/themes/astro/customProperties/icons.js +2 -1
- package/lib/cjs/styles/themes/astro/customProperties/index.d.ts +1 -0
- package/lib/cjs/styles/themes/next-gen/colors/colors.d.ts +4 -0
- package/lib/cjs/styles/themes/next-gen/colors/iconWrapper.d.ts +4 -0
- package/lib/cjs/styles/themes/next-gen/colors/iconWrapper.js +4 -0
- package/lib/cjs/styles/themes/next-gen/convertedComponentList.js +2 -2
- package/lib/cjs/styles/themes/next-gen/customProperties/icons.d.ts +1 -0
- package/lib/cjs/styles/themes/next-gen/customProperties/icons.js +2 -1
- package/lib/cjs/styles/themes/next-gen/customProperties/index.d.ts +1 -0
- package/lib/cjs/styles/themes/next-gen/next-gen.d.ts +175 -18
- package/lib/cjs/styles/themes/next-gen/variants/button.d.ts +29 -0
- package/lib/cjs/styles/themes/next-gen/variants/button.js +14 -2
- package/lib/cjs/styles/themes/next-gen/variants/footer.d.ts +31 -0
- package/lib/cjs/styles/themes/next-gen/variants/footer.js +43 -0
- package/lib/cjs/styles/themes/next-gen/variants/links.d.ts +21 -0
- package/lib/cjs/styles/themes/next-gen/variants/links.js +18 -2
- package/lib/cjs/styles/themes/next-gen/variants/listview.d.ts +79 -17
- package/lib/cjs/styles/themes/next-gen/variants/listview.js +89 -24
- package/lib/cjs/styles/themes/next-gen/variants/text.d.ts +13 -1
- package/lib/cjs/styles/themes/next-gen/variants/text.js +16 -4
- package/lib/cjs/styles/themes/next-gen/variants/variants.d.ts +113 -17
- package/lib/cjs/styles/themes/next-gen/variants/variants.js +10 -1
- package/lib/cjs/styles/variants/variants.js +2 -0
- package/lib/cjs/types/footer.d.ts +11 -0
- package/lib/cjs/types/footer.js +6 -0
- package/lib/cjs/types/iconWrapper.d.ts +1 -1
- package/lib/cjs/types/index.d.ts +1 -0
- package/lib/cjs/types/index.js +53 -42
- package/lib/cjs/utils/devUtils/constants/animals.js +449 -1
- package/lib/cjs/utils/devUtils/constants/images.d.ts +1 -0
- package/lib/cjs/utils/devUtils/constants/images.js +4 -2
- package/lib/components/Footer/CopyrightText.js +19 -0
- package/lib/components/Footer/Footer.js +21 -0
- package/lib/components/Footer/Footer.mdx +30 -0
- package/lib/components/Footer/Footer.stories.js +138 -0
- package/lib/components/Footer/Footer.styles.js +1 -0
- package/lib/components/Footer/Footer.test.js +100 -0
- package/lib/components/Footer/FooterNav.js +16 -0
- package/lib/components/Footer/FooterNavItem.js +14 -0
- package/lib/components/Footer/index.js +4 -0
- package/lib/components/Footer/stories/FooterNextGenComponent.js +117 -0
- package/lib/components/Footer/stories/NextGenDarkFooterStory.chomatic.stories.js +12 -0
- package/lib/components/Footer/stories/NextGenFooterStory.chromatic.stories.js +12 -0
- package/lib/components/Icon/Icon.js +13 -10
- package/lib/components/IconButton/IconButton.styles.js +6 -1
- package/lib/components/IconWrapper/iconWrapperAttributes.js +1 -1
- package/lib/components/Link/Link.styles.js +31 -1
- package/lib/components/ListView/ListView.js +5 -0
- package/lib/components/ListView/ListView.stories.js +25 -455
- package/lib/components/ListView/ListViewExpandableItem.js +1 -0
- package/lib/components/ListView/ListViewItem.js +4 -1
- package/lib/{styles/themes/next-gen/stories/NextGenListView.chromatic.stories.js → components/ListView/stories/ListView.chromatic.stories.js} +2 -2
- package/lib/components/ListView/stories/ListViewNextGenComponent.js +130 -0
- package/lib/{styles/themeOverrides/nextGenDarkMode/stories/NextGenDarkListView.chromatic.stories.js → components/ListView/stories/ListViewOnyxDark.stories.js} +3 -3
- package/lib/components/ListViewItem/ListViewItem.js +18 -7
- package/lib/components/ListViewItem/ListViewItem.stories.js +40 -3
- package/lib/components/ListViewItem/ListViewItem.styles.js +15 -1
- package/lib/components/ListViewItem/controls/ListViewItemEditButton.js +1 -1
- package/lib/components/ListViewItem/controls/ListViewItemMenu.js +9 -3
- package/lib/components/ListViewItem/controls/ListViewItemMenu.test.js +1 -0
- package/lib/components/ListViewItem/controls/chart/ListViewItemChart.js +5 -1
- package/lib/components/Pagination/Pagination.stories.js +1 -1
- package/lib/components/SearchField/SearchField.js +2 -8
- package/lib/components/Text/Text.styles.js +8 -0
- package/lib/hooks/useExpandableListViewItem/useExpandableListViewItem.js +9 -3
- package/lib/index.js +2 -0
- package/lib/styles/themeOverrides/nextGenDarkMode/colors.js +4 -0
- package/lib/styles/themeOverrides/nextGenDarkMode/nextGenDarkModeOverride.js +2 -0
- package/lib/styles/themeOverrides/nextGenDarkMode/variants/footer.js +6 -0
- package/lib/styles/themeOverrides/nextGenDarkMode/variants/links.js +13 -1
- package/lib/styles/themeOverrides/nextGenDarkMode/variants/listview.js +58 -0
- package/lib/styles/themeOverrides/nextGenDarkMode/variants/text.js +18 -0
- package/lib/styles/themeOverrides/nextGenDarkMode/variants/variants.js +4 -1
- package/lib/styles/themes/astro/customProperties/icons.js +2 -1
- package/lib/styles/themes/next-gen/colors/iconWrapper.js +4 -0
- package/lib/styles/themes/next-gen/convertedComponentList.js +2 -2
- package/lib/styles/themes/next-gen/customProperties/icons.js +2 -1
- package/lib/styles/themes/next-gen/variants/button.js +13 -2
- package/lib/styles/themes/next-gen/variants/footer.js +35 -0
- package/lib/styles/themes/next-gen/variants/links.js +14 -2
- package/lib/styles/themes/next-gen/variants/listview.js +84 -22
- package/lib/styles/themes/next-gen/variants/text.js +16 -4
- package/lib/styles/themes/next-gen/variants/variants.js +11 -2
- package/lib/styles/variants/variants.js +2 -0
- package/lib/types/footer.js +1 -0
- package/lib/types/index.js +1 -0
- package/lib/utils/devUtils/constants/animals.js +449 -1
- package/lib/utils/devUtils/constants/images.js +2 -1
- package/package.json +5 -1
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/lsitview.d.ts +0 -24
- package/lib/cjs/styles/themes/next-gen/stories/ListViewItemNextGen.d.ts +0 -29
- package/lib/cjs/styles/themes/next-gen/stories/ListViewItemNextGen.js +0 -84
- package/lib/cjs/styles/themes/next-gen/stories/ListViewNextGenComponent.js +0 -67
- package/lib/cjs/styles/themes/next-gen/stories/NextGenListViewItem.stories.js +0 -35
- package/lib/recipes/NextGen/ListViewNextGen.stories.js +0 -13
- package/lib/styles/themeOverrides/nextGenDarkMode/variants/lsitview.js +0 -24
- package/lib/styles/themes/next-gen/stories/ListViewItemNextGen.js +0 -75
- package/lib/styles/themes/next-gen/stories/ListViewNextGenComponent.js +0 -58
- package/lib/styles/themes/next-gen/stories/NextGenListViewItem.stories.js +0 -25
- /package/lib/cjs/{styles/themeOverrides/nextGenDarkMode/stories/NextGenDarkListView.chromatic.stories.d.ts → components/Footer/stories/NextGenDarkFooterStory.chomatic.stories.d.ts} +0 -0
- /package/lib/cjs/{styles/themes/next-gen/stories/NextGenListView.chromatic.stories.d.ts → components/Footer/stories/NextGenFooterStory.chromatic.stories.d.ts} +0 -0
- /package/lib/cjs/{styles/themes/next-gen/stories/NextGenListViewItem.stories.d.ts → components/ListView/stories/ListView.chromatic.stories.d.ts} +0 -0
- /package/lib/cjs/{styles/themes/next-gen → components/ListView}/stories/ListViewNextGenComponent.d.ts +0 -0
@@ -50,6 +50,8 @@ declare const _default: {
|
|
50
50
|
red: string;
|
51
51
|
yellow: string;
|
52
52
|
teal: string;
|
53
|
+
blue: string;
|
54
|
+
indigo: string;
|
53
55
|
lightBlue: string;
|
54
56
|
lightPink: string;
|
55
57
|
lightGreen: string;
|
@@ -65,6 +67,8 @@ declare const _default: {
|
|
65
67
|
red: string;
|
66
68
|
yellow: string;
|
67
69
|
teal: string;
|
70
|
+
blue: string;
|
71
|
+
indigo: string;
|
68
72
|
lightBlue: string;
|
69
73
|
lightPink: string;
|
70
74
|
lightGreen: string;
|
@@ -1012,6 +1016,30 @@ declare const _default: {
|
|
1012
1016
|
backgroundColor: string;
|
1013
1017
|
};
|
1014
1018
|
};
|
1019
|
+
searchClearButton: {
|
1020
|
+
border: string;
|
1021
|
+
'&.is-hovered': {
|
1022
|
+
bg: string;
|
1023
|
+
};
|
1024
|
+
'&.is-pressed': {
|
1025
|
+
bg: string;
|
1026
|
+
};
|
1027
|
+
position: string;
|
1028
|
+
right: number;
|
1029
|
+
cursor: string;
|
1030
|
+
transition: string;
|
1031
|
+
outline: string;
|
1032
|
+
borderRadius: string;
|
1033
|
+
borderColor: string;
|
1034
|
+
path: {
|
1035
|
+
fill: string;
|
1036
|
+
};
|
1037
|
+
'&.is-focused': {
|
1038
|
+
outline: string;
|
1039
|
+
outlineColor: string;
|
1040
|
+
outlineOffset: string;
|
1041
|
+
};
|
1042
|
+
};
|
1015
1043
|
};
|
1016
1044
|
modalCloseButton: {
|
1017
1045
|
position: string;
|
@@ -1324,14 +1352,26 @@ declare const _default: {
|
|
1324
1352
|
lineHeight: string;
|
1325
1353
|
};
|
1326
1354
|
listViewItemText: {
|
1355
|
+
fontFamily: string;
|
1327
1356
|
color: string;
|
1328
1357
|
fontWeight: number;
|
1358
|
+
mb: string;
|
1359
|
+
fontSize: string;
|
1329
1360
|
};
|
1330
|
-
|
1361
|
+
listViewItemSubtext: {
|
1331
1362
|
fontSize: string;
|
1363
|
+
lineHeight: string;
|
1332
1364
|
color: string;
|
1365
|
+
};
|
1366
|
+
itemTitle: {
|
1367
|
+
fontWeight: number;
|
1368
|
+
color: string;
|
1369
|
+
};
|
1370
|
+
small: {
|
1371
|
+
fontSize: string;
|
1333
1372
|
fontFamily: string;
|
1334
1373
|
lineHeight: string;
|
1374
|
+
color: string;
|
1335
1375
|
};
|
1336
1376
|
response: {
|
1337
1377
|
color: string;
|
@@ -2031,6 +2071,27 @@ declare const _default: {
|
|
2031
2071
|
outlineColor: string;
|
2032
2072
|
};
|
2033
2073
|
};
|
2074
|
+
copyRightLink: {
|
2075
|
+
'&.is-focused': {
|
2076
|
+
outline: string;
|
2077
|
+
outlineColor: string;
|
2078
|
+
outlineOffset: string;
|
2079
|
+
};
|
2080
|
+
};
|
2081
|
+
footerEALink: {
|
2082
|
+
'&.is-focused': {
|
2083
|
+
outline: string;
|
2084
|
+
outlineColor: string;
|
2085
|
+
outlineOffset: string;
|
2086
|
+
};
|
2087
|
+
};
|
2088
|
+
footerLink: {
|
2089
|
+
'&.is-focused': {
|
2090
|
+
outline: string;
|
2091
|
+
outlineColor: string;
|
2092
|
+
outlineOffset: string;
|
2093
|
+
};
|
2094
|
+
};
|
2034
2095
|
};
|
2035
2096
|
cards: {
|
2036
2097
|
interactive: {
|
@@ -2544,12 +2605,14 @@ declare const _default: {
|
|
2544
2605
|
};
|
2545
2606
|
listViewItem: {
|
2546
2607
|
rightOfData: {
|
2547
|
-
flexShrink: number;
|
2548
2608
|
whiteSpace: string;
|
2549
2609
|
};
|
2550
2610
|
iconContainer: {
|
2551
2611
|
ml: string;
|
2552
2612
|
};
|
2613
|
+
imageWrapper: {
|
2614
|
+
ml: string;
|
2615
|
+
};
|
2553
2616
|
styledListItem: {
|
2554
2617
|
bg: string;
|
2555
2618
|
'&.is-selected': {
|
@@ -2567,10 +2630,19 @@ declare const _default: {
|
|
2567
2630
|
boxShadow: string;
|
2568
2631
|
bg: string;
|
2569
2632
|
};
|
2633
|
+
'&.is-first-item': {
|
2634
|
+
borderTopLeftRadius: string;
|
2635
|
+
borderTopRightRadius: string;
|
2636
|
+
};
|
2637
|
+
'&.is-last-item': {
|
2638
|
+
borderBottomLeftRadius: string;
|
2639
|
+
borderBottomRightRadius: string;
|
2640
|
+
'&.has-separator': {
|
2641
|
+
border: string;
|
2642
|
+
};
|
2643
|
+
};
|
2570
2644
|
};
|
2571
2645
|
styledContainer: {
|
2572
|
-
py: string;
|
2573
|
-
px: string;
|
2574
2646
|
bg: string;
|
2575
2647
|
'&.is-hovered': {
|
2576
2648
|
bg: string;
|
@@ -2578,17 +2650,58 @@ declare const _default: {
|
|
2578
2650
|
};
|
2579
2651
|
};
|
2580
2652
|
expandableStyledListItem: {
|
2581
|
-
|
2582
|
-
|
2653
|
+
px: string;
|
2654
|
+
bg: string;
|
2655
|
+
'&.is-first-item': {
|
2656
|
+
borderTopLeftRadius: string;
|
2657
|
+
borderTopRightRadius: string;
|
2658
|
+
};
|
2659
|
+
'&.is-last-item': {
|
2660
|
+
borderBottomLeftRadius: string;
|
2661
|
+
borderBottomRightRadius: string;
|
2662
|
+
'&.is-hovered, &.is-expanded': {
|
2663
|
+
borderBottomLeftRadius: string;
|
2664
|
+
borderBottomRightRadius: string;
|
2665
|
+
};
|
2666
|
+
};
|
2667
|
+
'&.is-hovered': {
|
2668
|
+
bg: string;
|
2669
|
+
};
|
2670
|
+
'&.is-selected': {
|
2671
|
+
bg: string;
|
2672
|
+
};
|
2673
|
+
'&.is-focused': {
|
2674
|
+
boxShadow: string;
|
2675
|
+
bg: string;
|
2676
|
+
};
|
2583
2677
|
};
|
2584
2678
|
expandableItemBody: {
|
2585
2679
|
px: string;
|
2680
|
+
outline: string;
|
2681
|
+
'&.is-last-item-body': {
|
2682
|
+
borderBottomLeftRadius: string;
|
2683
|
+
borderBottomRightRadius: string;
|
2684
|
+
};
|
2685
|
+
'&.is-focused': {
|
2686
|
+
boxShadow: string;
|
2687
|
+
};
|
2586
2688
|
};
|
2587
2689
|
expandableRow: {
|
2588
2690
|
'&.has-separator': {
|
2589
2691
|
borderBottom: string;
|
2590
2692
|
borderBottomColor: string;
|
2591
2693
|
};
|
2694
|
+
'&.has-separator.is-last-row': {
|
2695
|
+
border: string;
|
2696
|
+
};
|
2697
|
+
};
|
2698
|
+
editIcon: {
|
2699
|
+
width: string;
|
2700
|
+
height: string;
|
2701
|
+
};
|
2702
|
+
menuIcon: {
|
2703
|
+
width: string;
|
2704
|
+
height: string;
|
2592
2705
|
};
|
2593
2706
|
};
|
2594
2707
|
progressBar: {
|
@@ -2609,18 +2722,26 @@ declare const _default: {
|
|
2609
2722
|
borderRadius: string;
|
2610
2723
|
border: string;
|
2611
2724
|
borderColor: string;
|
2612
|
-
|
2613
|
-
|
2614
|
-
|
2615
|
-
|
2616
|
-
|
2617
|
-
|
2618
|
-
|
2619
|
-
|
2620
|
-
|
2621
|
-
|
2622
|
-
|
2623
|
-
|
2725
|
+
};
|
2726
|
+
};
|
2727
|
+
lisViewItemChart: {
|
2728
|
+
title: {
|
2729
|
+
color: string;
|
2730
|
+
};
|
2731
|
+
count: {
|
2732
|
+
color: string;
|
2733
|
+
};
|
2734
|
+
countLabel: {
|
2735
|
+
color: string;
|
2736
|
+
};
|
2737
|
+
chartLabel: {
|
2738
|
+
color: string;
|
2739
|
+
};
|
2740
|
+
trend: {
|
2741
|
+
color: string;
|
2742
|
+
};
|
2743
|
+
chartButton: {
|
2744
|
+
color: string;
|
2624
2745
|
};
|
2625
2746
|
};
|
2626
2747
|
dataTable: {
|
@@ -3094,6 +3215,42 @@ declare const _default: {
|
|
3094
3215
|
};
|
3095
3216
|
};
|
3096
3217
|
};
|
3218
|
+
footer: {
|
3219
|
+
container: {
|
3220
|
+
fontFamily: string;
|
3221
|
+
justifyContent: string;
|
3222
|
+
backgroundColor: string;
|
3223
|
+
};
|
3224
|
+
wrapper: {
|
3225
|
+
px: string[];
|
3226
|
+
py: string;
|
3227
|
+
maxWidth: string;
|
3228
|
+
mx: string;
|
3229
|
+
width: string;
|
3230
|
+
flexDirection: string[];
|
3231
|
+
justifyContent: string;
|
3232
|
+
alignItems: string;
|
3233
|
+
};
|
3234
|
+
footerLeftSection: {
|
3235
|
+
columnGap: string;
|
3236
|
+
flexDirection: string[];
|
3237
|
+
};
|
3238
|
+
footerNav: {
|
3239
|
+
listStyle: string;
|
3240
|
+
margin: string;
|
3241
|
+
padding: string;
|
3242
|
+
alignItems: string;
|
3243
|
+
justifyContent: string[];
|
3244
|
+
gap: string;
|
3245
|
+
flexWrap: string;
|
3246
|
+
my: string;
|
3247
|
+
};
|
3248
|
+
};
|
3249
|
+
loader: {
|
3250
|
+
withinListView: {
|
3251
|
+
color: string;
|
3252
|
+
};
|
3253
|
+
};
|
3097
3254
|
};
|
3098
3255
|
images: {
|
3099
3256
|
avatar: {};
|
@@ -1,3 +1,8 @@
|
|
1
|
+
export declare const defaultFocus: {
|
2
|
+
outline: string;
|
3
|
+
outlineColor: string;
|
4
|
+
outlineOffset: string;
|
5
|
+
};
|
1
6
|
declare const buttons: {
|
2
7
|
neutral: {
|
3
8
|
'&.is-pressed': {
|
@@ -769,6 +774,30 @@ declare const buttons: {
|
|
769
774
|
backgroundColor: string;
|
770
775
|
};
|
771
776
|
};
|
777
|
+
searchClearButton: {
|
778
|
+
border: string;
|
779
|
+
'&.is-hovered': {
|
780
|
+
bg: string;
|
781
|
+
};
|
782
|
+
'&.is-pressed': {
|
783
|
+
bg: string;
|
784
|
+
};
|
785
|
+
position: string;
|
786
|
+
right: number;
|
787
|
+
cursor: string;
|
788
|
+
transition: string;
|
789
|
+
outline: string;
|
790
|
+
borderRadius: string;
|
791
|
+
borderColor: string;
|
792
|
+
path: {
|
793
|
+
fill: string;
|
794
|
+
};
|
795
|
+
'&.is-focused': {
|
796
|
+
outline: string;
|
797
|
+
outlineColor: string;
|
798
|
+
outlineOffset: string;
|
799
|
+
};
|
800
|
+
};
|
772
801
|
};
|
773
802
|
modalCloseButton: {
|
774
803
|
position: string;
|
@@ -12,7 +12,7 @@ var _interopRequireDefault = require("@babel/runtime-corejs3/helpers/interopRequ
|
|
12
12
|
_Object$defineProperty(exports, "__esModule", {
|
13
13
|
value: true
|
14
14
|
});
|
15
|
-
exports["default"] = void 0;
|
15
|
+
exports.defaultFocus = exports["default"] = void 0;
|
16
16
|
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime-corejs3/helpers/defineProperty"));
|
17
17
|
var _chromaJs = _interopRequireDefault(require("chroma-js"));
|
18
18
|
var _codeView = require("../codeView/codeView");
|
@@ -29,6 +29,7 @@ var defaultFocus = {
|
|
29
29
|
outlineColor: 'active',
|
30
30
|
outlineOffset: '3px'
|
31
31
|
};
|
32
|
+
exports.defaultFocus = defaultFocus;
|
32
33
|
var buttonBase = _objectSpread(_objectSpread({}, transitions), {}, {
|
33
34
|
alignItems: 'center',
|
34
35
|
justifyContent: 'center',
|
@@ -341,7 +342,18 @@ var iconButtons = {
|
|
341
342
|
'&.is-disabled': {
|
342
343
|
backgroundColor: 'gray-300'
|
343
344
|
}
|
344
|
-
}
|
345
|
+
},
|
346
|
+
searchClearButton: _objectSpread(_objectSpread({}, baseIconButton), {}, {
|
347
|
+
border: 'none',
|
348
|
+
'&.is-hovered': {
|
349
|
+
bg: 'background.hover'
|
350
|
+
},
|
351
|
+
'&.is-pressed': {
|
352
|
+
bg: 'background.hover'
|
353
|
+
},
|
354
|
+
position: 'absolute',
|
355
|
+
right: 10
|
356
|
+
})
|
345
357
|
};
|
346
358
|
var buttons = {
|
347
359
|
neutral: neutral,
|
@@ -0,0 +1,31 @@
|
|
1
|
+
export declare const footer: {
|
2
|
+
container: {
|
3
|
+
fontFamily: string;
|
4
|
+
justifyContent: string;
|
5
|
+
backgroundColor: string;
|
6
|
+
};
|
7
|
+
wrapper: {
|
8
|
+
px: string[];
|
9
|
+
py: string;
|
10
|
+
maxWidth: string;
|
11
|
+
mx: string;
|
12
|
+
width: string;
|
13
|
+
flexDirection: string[];
|
14
|
+
justifyContent: string;
|
15
|
+
alignItems: string;
|
16
|
+
};
|
17
|
+
footerLeftSection: {
|
18
|
+
columnGap: string;
|
19
|
+
flexDirection: string[];
|
20
|
+
};
|
21
|
+
footerNav: {
|
22
|
+
listStyle: string;
|
23
|
+
margin: string;
|
24
|
+
padding: string;
|
25
|
+
alignItems: string;
|
26
|
+
justifyContent: string[];
|
27
|
+
gap: string;
|
28
|
+
flexWrap: string;
|
29
|
+
my: string;
|
30
|
+
};
|
31
|
+
};
|
@@ -0,0 +1,43 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
var _Object$defineProperty = require("@babel/runtime-corejs3/core-js-stable/object/define-property");
|
4
|
+
_Object$defineProperty(exports, "__esModule", {
|
5
|
+
value: true
|
6
|
+
});
|
7
|
+
exports.footer = void 0;
|
8
|
+
var container = {
|
9
|
+
fontFamily: 'standard',
|
10
|
+
justifyContent: 'center',
|
11
|
+
backgroundColor: 'gray-800'
|
12
|
+
};
|
13
|
+
var wrapper = {
|
14
|
+
px: ['1.5rem', '1.5rem', '1.5rem', '3rem', '3rem', '3rem'],
|
15
|
+
py: 'sm',
|
16
|
+
maxWidth: '1540px',
|
17
|
+
mx: 'auto',
|
18
|
+
width: '100%',
|
19
|
+
flexDirection: ['column', 'column', 'column', 'column', 'column', 'row'],
|
20
|
+
justifyContent: 'space-between',
|
21
|
+
alignItems: 'center'
|
22
|
+
};
|
23
|
+
var footerLeftSection = {
|
24
|
+
columnGap: 'sm',
|
25
|
+
flexDirection: ['column', 'column', 'column', 'column', 'column', 'row']
|
26
|
+
};
|
27
|
+
var footerNav = {
|
28
|
+
listStyle: 'none',
|
29
|
+
margin: '0',
|
30
|
+
padding: '0',
|
31
|
+
alignItems: 'center',
|
32
|
+
justifyContent: ['center', 'center', 'center', 'center', 'center', 'flex-end'],
|
33
|
+
gap: 'xs',
|
34
|
+
flexWrap: 'wrap',
|
35
|
+
my: 'sm'
|
36
|
+
};
|
37
|
+
var footer = {
|
38
|
+
container: container,
|
39
|
+
wrapper: wrapper,
|
40
|
+
footerLeftSection: footerLeftSection,
|
41
|
+
footerNav: footerNav
|
42
|
+
};
|
43
|
+
exports.footer = footer;
|
@@ -238,5 +238,26 @@ declare const _default: {
|
|
238
238
|
outlineColor: string;
|
239
239
|
};
|
240
240
|
};
|
241
|
+
copyRightLink: {
|
242
|
+
'&.is-focused': {
|
243
|
+
outline: string;
|
244
|
+
outlineColor: string;
|
245
|
+
outlineOffset: string;
|
246
|
+
};
|
247
|
+
};
|
248
|
+
footerEALink: {
|
249
|
+
'&.is-focused': {
|
250
|
+
outline: string;
|
251
|
+
outlineColor: string;
|
252
|
+
outlineOffset: string;
|
253
|
+
};
|
254
|
+
};
|
255
|
+
footerLink: {
|
256
|
+
'&.is-focused': {
|
257
|
+
outline: string;
|
258
|
+
outlineColor: string;
|
259
|
+
outlineOffset: string;
|
260
|
+
};
|
261
|
+
};
|
241
262
|
};
|
242
263
|
export default _default;
|
@@ -1,5 +1,6 @@
|
|
1
1
|
"use strict";
|
2
2
|
|
3
|
+
var _typeof = require("@babel/runtime-corejs3/helpers/typeof");
|
3
4
|
var _Object$keys = require("@babel/runtime-corejs3/core-js-stable/object/keys");
|
4
5
|
var _Object$getOwnPropertySymbols = require("@babel/runtime-corejs3/core-js-stable/object/get-own-property-symbols");
|
5
6
|
var _filterInstanceProperty = require("@babel/runtime-corejs3/core-js-stable/instance/filter");
|
@@ -8,13 +9,16 @@ var _forEachInstanceProperty = require("@babel/runtime-corejs3/core-js-stable/in
|
|
8
9
|
var _Object$getOwnPropertyDescriptors = require("@babel/runtime-corejs3/core-js-stable/object/get-own-property-descriptors");
|
9
10
|
var _Object$defineProperties = require("@babel/runtime-corejs3/core-js-stable/object/define-properties");
|
10
11
|
var _Object$defineProperty = require("@babel/runtime-corejs3/core-js-stable/object/define-property");
|
12
|
+
var _WeakMap = require("@babel/runtime-corejs3/core-js-stable/weak-map");
|
11
13
|
var _interopRequireDefault = require("@babel/runtime-corejs3/helpers/interopRequireDefault");
|
12
14
|
_Object$defineProperty(exports, "__esModule", {
|
13
15
|
value: true
|
14
16
|
});
|
15
17
|
exports["default"] = void 0;
|
16
18
|
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime-corejs3/helpers/defineProperty"));
|
17
|
-
var _button =
|
19
|
+
var _button = _interopRequireWildcard(require("./button"));
|
20
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof _WeakMap !== "function") return null; var cacheBabelInterop = new _WeakMap(); var cacheNodeInterop = new _WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
21
|
+
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = _Object$defineProperty && _Object$getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? _Object$getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { _Object$defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
18
22
|
function ownKeys(object, enumerableOnly) { var keys = _Object$keys(object); if (_Object$getOwnPropertySymbols) { var symbols = _Object$getOwnPropertySymbols(object); enumerableOnly && (symbols = _filterInstanceProperty(symbols).call(symbols, function (sym) { return _Object$getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
19
23
|
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var _context, _context2; var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? _forEachInstanceProperty(_context = ownKeys(Object(source), !0)).call(_context, function (key) { (0, _defineProperty2["default"])(target, key, source[key]); }) : _Object$getOwnPropertyDescriptors ? _Object$defineProperties(target, _Object$getOwnPropertyDescriptors(source)) : _forEachInstanceProperty(_context2 = ownKeys(Object(source))).call(_context2, function (key) { _Object$defineProperty(target, key, _Object$getOwnPropertyDescriptor(source, key)); }); } return target; }
|
20
24
|
var navBarFocus = {
|
@@ -79,6 +83,15 @@ var navBarLogoLink = {
|
|
79
83
|
py: 'sm',
|
80
84
|
'&.is-focused': _objectSpread({}, navBarFocus)
|
81
85
|
};
|
86
|
+
var copyRightLink = {
|
87
|
+
'&.is-focused': _objectSpread({}, _button.defaultFocus)
|
88
|
+
};
|
89
|
+
var footerLink = {
|
90
|
+
'&.is-focused': _objectSpread({}, _button.defaultFocus)
|
91
|
+
};
|
92
|
+
var footerEALink = {
|
93
|
+
'&.is-focused': _objectSpread({}, _button.defaultFocus)
|
94
|
+
};
|
82
95
|
var _default = {
|
83
96
|
nextGen: nextGen,
|
84
97
|
onyx: onyx,
|
@@ -87,6 +100,9 @@ var _default = {
|
|
87
100
|
footerHeader: footerHeader,
|
88
101
|
button: button,
|
89
102
|
primaryButton: primaryButton,
|
90
|
-
navBarLogoLink: navBarLogoLink
|
103
|
+
navBarLogoLink: navBarLogoLink,
|
104
|
+
copyRightLink: copyRightLink,
|
105
|
+
footerEALink: footerEALink,
|
106
|
+
footerLink: footerLink
|
91
107
|
};
|
92
108
|
exports["default"] = _default;
|
@@ -1,11 +1,15 @@
|
|
1
|
+
export declare const focusBoxShadow = "0 0 0 3px inset #1a73e8";
|
2
|
+
export declare const borderRadius = "16px";
|
1
3
|
export declare const listViewItem: {
|
2
4
|
rightOfData: {
|
3
|
-
flexShrink: number;
|
4
5
|
whiteSpace: string;
|
5
6
|
};
|
6
7
|
iconContainer: {
|
7
8
|
ml: string;
|
8
9
|
};
|
10
|
+
imageWrapper: {
|
11
|
+
ml: string;
|
12
|
+
};
|
9
13
|
styledListItem: {
|
10
14
|
bg: string;
|
11
15
|
'&.is-selected': {
|
@@ -23,10 +27,19 @@ export declare const listViewItem: {
|
|
23
27
|
boxShadow: string;
|
24
28
|
bg: string;
|
25
29
|
};
|
30
|
+
'&.is-first-item': {
|
31
|
+
borderTopLeftRadius: string;
|
32
|
+
borderTopRightRadius: string;
|
33
|
+
};
|
34
|
+
'&.is-last-item': {
|
35
|
+
borderBottomLeftRadius: string;
|
36
|
+
borderBottomRightRadius: string;
|
37
|
+
'&.has-separator': {
|
38
|
+
border: string;
|
39
|
+
};
|
40
|
+
};
|
26
41
|
};
|
27
42
|
styledContainer: {
|
28
|
-
py: string;
|
29
|
-
px: string;
|
30
43
|
bg: string;
|
31
44
|
'&.is-hovered': {
|
32
45
|
bg: string;
|
@@ -34,17 +47,58 @@ export declare const listViewItem: {
|
|
34
47
|
};
|
35
48
|
};
|
36
49
|
expandableStyledListItem: {
|
37
|
-
|
38
|
-
|
50
|
+
px: string;
|
51
|
+
bg: string;
|
52
|
+
'&.is-first-item': {
|
53
|
+
borderTopLeftRadius: string;
|
54
|
+
borderTopRightRadius: string;
|
55
|
+
};
|
56
|
+
'&.is-last-item': {
|
57
|
+
borderBottomLeftRadius: string;
|
58
|
+
borderBottomRightRadius: string;
|
59
|
+
'&.is-hovered, &.is-expanded': {
|
60
|
+
borderBottomLeftRadius: string;
|
61
|
+
borderBottomRightRadius: string;
|
62
|
+
};
|
63
|
+
};
|
64
|
+
'&.is-hovered': {
|
65
|
+
bg: string;
|
66
|
+
};
|
67
|
+
'&.is-selected': {
|
68
|
+
bg: string;
|
69
|
+
};
|
70
|
+
'&.is-focused': {
|
71
|
+
boxShadow: string;
|
72
|
+
bg: string;
|
73
|
+
};
|
39
74
|
};
|
40
75
|
expandableItemBody: {
|
41
76
|
px: string;
|
77
|
+
outline: string;
|
78
|
+
'&.is-last-item-body': {
|
79
|
+
borderBottomLeftRadius: string;
|
80
|
+
borderBottomRightRadius: string;
|
81
|
+
};
|
82
|
+
'&.is-focused': {
|
83
|
+
boxShadow: string;
|
84
|
+
};
|
42
85
|
};
|
43
86
|
expandableRow: {
|
44
87
|
'&.has-separator': {
|
45
88
|
borderBottom: string;
|
46
89
|
borderBottomColor: string;
|
47
90
|
};
|
91
|
+
'&.has-separator.is-last-row': {
|
92
|
+
border: string;
|
93
|
+
};
|
94
|
+
};
|
95
|
+
editIcon: {
|
96
|
+
width: string;
|
97
|
+
height: string;
|
98
|
+
};
|
99
|
+
menuIcon: {
|
100
|
+
width: string;
|
101
|
+
height: string;
|
48
102
|
};
|
49
103
|
};
|
50
104
|
export declare const listView: {
|
@@ -52,17 +106,25 @@ export declare const listView: {
|
|
52
106
|
borderRadius: string;
|
53
107
|
border: string;
|
54
108
|
borderColor: string;
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
109
|
+
};
|
110
|
+
};
|
111
|
+
export declare const lisViewItemChart: {
|
112
|
+
title: {
|
113
|
+
color: string;
|
114
|
+
};
|
115
|
+
count: {
|
116
|
+
color: string;
|
117
|
+
};
|
118
|
+
countLabel: {
|
119
|
+
color: string;
|
120
|
+
};
|
121
|
+
chartLabel: {
|
122
|
+
color: string;
|
123
|
+
};
|
124
|
+
trend: {
|
125
|
+
color: string;
|
126
|
+
};
|
127
|
+
chartButton: {
|
128
|
+
color: string;
|
67
129
|
};
|
68
130
|
};
|