@nordcode/ui 1.0.0 → 1.0.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/README.md +8 -8
- package/out/bundle.css +19 -28
- package/out/bundle_configless.css +19 -28
- package/out/complete.css +21 -30
- package/out/complete_configless.css +21 -30
- package/package.json +5 -1
- package/src/styles/components/notifications.css +5 -7
- package/src/styles/utils/layouts.css +30 -42
- package/CHANGELOG.md +0 -157
package/README.md
CHANGED
|
@@ -10,14 +10,14 @@ You can use this browserlist config to target the Baseline Widely Adapted standa
|
|
|
10
10
|
|
|
11
11
|
```json
|
|
12
12
|
[
|
|
13
|
-
"Chrome > 0 and last 2.5 years"
|
|
14
|
-
"ChromeAndroid > 0 and last 2.5 years"
|
|
15
|
-
"Edge > 0 and last 2.5 years"
|
|
16
|
-
"Firefox > 0 and last 2.5 years"
|
|
17
|
-
"FirefoxAndroid > 0 and last 2.5 years"
|
|
18
|
-
"Safari > 0 and last 2.5 years"
|
|
19
|
-
"iOS > 0 and last 2.5 years"
|
|
20
|
-
"not dead"
|
|
13
|
+
"Chrome > 0 and last 2.5 years",
|
|
14
|
+
"ChromeAndroid > 0 and last 2.5 years",
|
|
15
|
+
"Edge > 0 and last 2.5 years",
|
|
16
|
+
"Firefox > 0 and last 2.5 years",
|
|
17
|
+
"FirefoxAndroid > 0 and last 2.5 years",
|
|
18
|
+
"Safari > 0 and last 2.5 years",
|
|
19
|
+
"iOS > 0 and last 2.5 years",
|
|
20
|
+
"not dead"
|
|
21
21
|
]
|
|
22
22
|
```
|
|
23
23
|
|
package/out/bundle.css
CHANGED
|
@@ -910,10 +910,6 @@
|
|
|
910
910
|
display: flex;
|
|
911
911
|
}
|
|
912
912
|
|
|
913
|
-
:where(.nc-stack).-inherit {
|
|
914
|
-
gap: var(--stack-gap, var(--spacing-base));
|
|
915
|
-
}
|
|
916
|
-
|
|
917
913
|
:where(.nc-stack).-stretched {
|
|
918
914
|
inline-size: 100%;
|
|
919
915
|
}
|
|
@@ -975,10 +971,6 @@
|
|
|
975
971
|
display: flex;
|
|
976
972
|
}
|
|
977
973
|
|
|
978
|
-
:where(.nc-cluster).-inherit {
|
|
979
|
-
gap: var(--cluster-gap, var(--spacing-base));
|
|
980
|
-
}
|
|
981
|
-
|
|
982
974
|
:where(.nc-cluster).-centered {
|
|
983
975
|
align-items: center;
|
|
984
976
|
}
|
|
@@ -1061,49 +1053,48 @@
|
|
|
1061
1053
|
grid-area: pile;
|
|
1062
1054
|
}
|
|
1063
1055
|
|
|
1064
|
-
:where(.nc-
|
|
1056
|
+
:where(.nc-ram-grid) {
|
|
1057
|
+
--_nc-ram-grid-gap-row: var(--nc-ram-grid-gap-row, var(--_nc-ram-grid-gap));
|
|
1058
|
+
--_nc-ram-grid-gap-column: var(--nc-ram-grid-gap-column, var(--_nc-ram-grid-gap));
|
|
1059
|
+
--_nc-ram-grid-gap: var(--nc-ram-grid-gap, var(--spacing-near));
|
|
1060
|
+
--_nc-ram-grid-min-width: var(--nc-ram-grid-min-width, 150px);
|
|
1061
|
+
--_nc-ram-grid-repeat-count: var(--nc-ram-grid-repeat-count, auto-fit);
|
|
1062
|
+
gap: var(--_nc-ram-grid-gap-column) var(--_nc-ram-grid-gap-row);
|
|
1063
|
+
grid-template-columns: repeat(var(--_nc-ram-grid-repeat-count), minmax(min(var(--_nc-ram-grid-min-width), 100%), 1fr));
|
|
1064
|
+
display: grid;
|
|
1065
|
+
}
|
|
1066
|
+
|
|
1067
|
+
:where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher, .nc-ram-grid).-inherit {
|
|
1065
1068
|
gap: inherit;
|
|
1066
1069
|
}
|
|
1067
1070
|
|
|
1068
|
-
:where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher).-tiny {
|
|
1071
|
+
:where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher, .nc-ram-grid).-tiny {
|
|
1069
1072
|
gap: var(--spacing-tiny);
|
|
1070
1073
|
}
|
|
1071
1074
|
|
|
1072
|
-
:where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher).-nearest {
|
|
1075
|
+
:where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher, .nc-ram-grid).-nearest {
|
|
1073
1076
|
gap: var(--spacing-nearest);
|
|
1074
1077
|
}
|
|
1075
1078
|
|
|
1076
|
-
:where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher).-near {
|
|
1079
|
+
:where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher, .nc-ram-grid).-near {
|
|
1077
1080
|
gap: var(--spacing-near);
|
|
1078
1081
|
}
|
|
1079
1082
|
|
|
1080
|
-
:where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher).-base {
|
|
1083
|
+
:where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher, .nc-ram-grid).-base {
|
|
1081
1084
|
gap: var(--spacing-base);
|
|
1082
1085
|
}
|
|
1083
1086
|
|
|
1084
|
-
:where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher).-far {
|
|
1087
|
+
:where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher, .nc-ram-grid).-far {
|
|
1085
1088
|
gap: var(--spacing-far);
|
|
1086
1089
|
}
|
|
1087
1090
|
|
|
1088
|
-
:where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher).-farthest {
|
|
1091
|
+
:where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher, .nc-ram-grid).-farthest {
|
|
1089
1092
|
gap: var(--spacing-farthest);
|
|
1090
1093
|
}
|
|
1091
1094
|
|
|
1092
|
-
:where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher).-nogap {
|
|
1095
|
+
:where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher, .nc-ram-grid).-nogap {
|
|
1093
1096
|
gap: 0;
|
|
1094
1097
|
}
|
|
1095
|
-
|
|
1096
|
-
:where(.nc-ram-grid) {
|
|
1097
|
-
--_nc-ram-grid-gap-row: var(--nc-ram-grid-gap-row, var(--_nc-ram-grid-gap));
|
|
1098
|
-
--_nc-ram-grid-gap-column: var(--nc-ram-grid-gap-column, var(--_nc-ram-grid-gap));
|
|
1099
|
-
--_nc-ram-grid-gap: var(--nc-ram-grid-gap, var(--spacing-near));
|
|
1100
|
-
--_nc-ram-grid-min-width: var(--nc-ram-grid-min-width, 150px);
|
|
1101
|
-
--_nc-ram-grid-repeat-count: var(--nc-ram-grid-repeat-count, auto-fit);
|
|
1102
|
-
row-gap: var(--_nc-ram-grid-gap-row);
|
|
1103
|
-
column-gap: var(--_nc-ram-grid-gap-column);
|
|
1104
|
-
grid-template-columns: repeat(var(--_nc-ram-grid-repeat-count), minmax(min(var(--_nc-ram-grid-min-width), 100%), 1fr));
|
|
1105
|
-
display: grid;
|
|
1106
|
-
}
|
|
1107
1098
|
}
|
|
1108
1099
|
|
|
1109
1100
|
@layer components, helpers;
|
|
@@ -645,10 +645,6 @@
|
|
|
645
645
|
display: flex;
|
|
646
646
|
}
|
|
647
647
|
|
|
648
|
-
:where(.nc-stack).-inherit {
|
|
649
|
-
gap: var(--stack-gap, var(--spacing-base));
|
|
650
|
-
}
|
|
651
|
-
|
|
652
648
|
:where(.nc-stack).-stretched {
|
|
653
649
|
inline-size: 100%;
|
|
654
650
|
}
|
|
@@ -710,10 +706,6 @@
|
|
|
710
706
|
display: flex;
|
|
711
707
|
}
|
|
712
708
|
|
|
713
|
-
:where(.nc-cluster).-inherit {
|
|
714
|
-
gap: var(--cluster-gap, var(--spacing-base));
|
|
715
|
-
}
|
|
716
|
-
|
|
717
709
|
:where(.nc-cluster).-centered {
|
|
718
710
|
align-items: center;
|
|
719
711
|
}
|
|
@@ -796,49 +788,48 @@
|
|
|
796
788
|
grid-area: pile;
|
|
797
789
|
}
|
|
798
790
|
|
|
799
|
-
:where(.nc-
|
|
791
|
+
:where(.nc-ram-grid) {
|
|
792
|
+
--_nc-ram-grid-gap-row: var(--nc-ram-grid-gap-row, var(--_nc-ram-grid-gap));
|
|
793
|
+
--_nc-ram-grid-gap-column: var(--nc-ram-grid-gap-column, var(--_nc-ram-grid-gap));
|
|
794
|
+
--_nc-ram-grid-gap: var(--nc-ram-grid-gap, var(--spacing-near));
|
|
795
|
+
--_nc-ram-grid-min-width: var(--nc-ram-grid-min-width, 150px);
|
|
796
|
+
--_nc-ram-grid-repeat-count: var(--nc-ram-grid-repeat-count, auto-fit);
|
|
797
|
+
gap: var(--_nc-ram-grid-gap-column) var(--_nc-ram-grid-gap-row);
|
|
798
|
+
grid-template-columns: repeat(var(--_nc-ram-grid-repeat-count), minmax(min(var(--_nc-ram-grid-min-width), 100%), 1fr));
|
|
799
|
+
display: grid;
|
|
800
|
+
}
|
|
801
|
+
|
|
802
|
+
:where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher, .nc-ram-grid).-inherit {
|
|
800
803
|
gap: inherit;
|
|
801
804
|
}
|
|
802
805
|
|
|
803
|
-
:where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher).-tiny {
|
|
806
|
+
:where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher, .nc-ram-grid).-tiny {
|
|
804
807
|
gap: var(--spacing-tiny);
|
|
805
808
|
}
|
|
806
809
|
|
|
807
|
-
:where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher).-nearest {
|
|
810
|
+
:where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher, .nc-ram-grid).-nearest {
|
|
808
811
|
gap: var(--spacing-nearest);
|
|
809
812
|
}
|
|
810
813
|
|
|
811
|
-
:where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher).-near {
|
|
814
|
+
:where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher, .nc-ram-grid).-near {
|
|
812
815
|
gap: var(--spacing-near);
|
|
813
816
|
}
|
|
814
817
|
|
|
815
|
-
:where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher).-base {
|
|
818
|
+
:where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher, .nc-ram-grid).-base {
|
|
816
819
|
gap: var(--spacing-base);
|
|
817
820
|
}
|
|
818
821
|
|
|
819
|
-
:where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher).-far {
|
|
822
|
+
:where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher, .nc-ram-grid).-far {
|
|
820
823
|
gap: var(--spacing-far);
|
|
821
824
|
}
|
|
822
825
|
|
|
823
|
-
:where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher).-farthest {
|
|
826
|
+
:where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher, .nc-ram-grid).-farthest {
|
|
824
827
|
gap: var(--spacing-farthest);
|
|
825
828
|
}
|
|
826
829
|
|
|
827
|
-
:where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher).-nogap {
|
|
830
|
+
:where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher, .nc-ram-grid).-nogap {
|
|
828
831
|
gap: 0;
|
|
829
832
|
}
|
|
830
|
-
|
|
831
|
-
:where(.nc-ram-grid) {
|
|
832
|
-
--_nc-ram-grid-gap-row: var(--nc-ram-grid-gap-row, var(--_nc-ram-grid-gap));
|
|
833
|
-
--_nc-ram-grid-gap-column: var(--nc-ram-grid-gap-column, var(--_nc-ram-grid-gap));
|
|
834
|
-
--_nc-ram-grid-gap: var(--nc-ram-grid-gap, var(--spacing-near));
|
|
835
|
-
--_nc-ram-grid-min-width: var(--nc-ram-grid-min-width, 150px);
|
|
836
|
-
--_nc-ram-grid-repeat-count: var(--nc-ram-grid-repeat-count, auto-fit);
|
|
837
|
-
row-gap: var(--_nc-ram-grid-gap-row);
|
|
838
|
-
column-gap: var(--_nc-ram-grid-gap-column);
|
|
839
|
-
grid-template-columns: repeat(var(--_nc-ram-grid-repeat-count), minmax(min(var(--_nc-ram-grid-min-width), 100%), 1fr));
|
|
840
|
-
display: grid;
|
|
841
|
-
}
|
|
842
833
|
}
|
|
843
834
|
|
|
844
835
|
@layer components, helpers;
|
package/out/complete.css
CHANGED
|
@@ -910,10 +910,6 @@
|
|
|
910
910
|
display: flex;
|
|
911
911
|
}
|
|
912
912
|
|
|
913
|
-
:where(.nc-stack).-inherit {
|
|
914
|
-
gap: var(--stack-gap, var(--spacing-base));
|
|
915
|
-
}
|
|
916
|
-
|
|
917
913
|
:where(.nc-stack).-stretched {
|
|
918
914
|
inline-size: 100%;
|
|
919
915
|
}
|
|
@@ -975,10 +971,6 @@
|
|
|
975
971
|
display: flex;
|
|
976
972
|
}
|
|
977
973
|
|
|
978
|
-
:where(.nc-cluster).-inherit {
|
|
979
|
-
gap: var(--cluster-gap, var(--spacing-base));
|
|
980
|
-
}
|
|
981
|
-
|
|
982
974
|
:where(.nc-cluster).-centered {
|
|
983
975
|
align-items: center;
|
|
984
976
|
}
|
|
@@ -1061,49 +1053,48 @@
|
|
|
1061
1053
|
grid-area: pile;
|
|
1062
1054
|
}
|
|
1063
1055
|
|
|
1064
|
-
:where(.nc-
|
|
1056
|
+
:where(.nc-ram-grid) {
|
|
1057
|
+
--_nc-ram-grid-gap-row: var(--nc-ram-grid-gap-row, var(--_nc-ram-grid-gap));
|
|
1058
|
+
--_nc-ram-grid-gap-column: var(--nc-ram-grid-gap-column, var(--_nc-ram-grid-gap));
|
|
1059
|
+
--_nc-ram-grid-gap: var(--nc-ram-grid-gap, var(--spacing-near));
|
|
1060
|
+
--_nc-ram-grid-min-width: var(--nc-ram-grid-min-width, 150px);
|
|
1061
|
+
--_nc-ram-grid-repeat-count: var(--nc-ram-grid-repeat-count, auto-fit);
|
|
1062
|
+
gap: var(--_nc-ram-grid-gap-column) var(--_nc-ram-grid-gap-row);
|
|
1063
|
+
grid-template-columns: repeat(var(--_nc-ram-grid-repeat-count), minmax(min(var(--_nc-ram-grid-min-width), 100%), 1fr));
|
|
1064
|
+
display: grid;
|
|
1065
|
+
}
|
|
1066
|
+
|
|
1067
|
+
:where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher, .nc-ram-grid).-inherit {
|
|
1065
1068
|
gap: inherit;
|
|
1066
1069
|
}
|
|
1067
1070
|
|
|
1068
|
-
:where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher).-tiny {
|
|
1071
|
+
:where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher, .nc-ram-grid).-tiny {
|
|
1069
1072
|
gap: var(--spacing-tiny);
|
|
1070
1073
|
}
|
|
1071
1074
|
|
|
1072
|
-
:where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher).-nearest {
|
|
1075
|
+
:where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher, .nc-ram-grid).-nearest {
|
|
1073
1076
|
gap: var(--spacing-nearest);
|
|
1074
1077
|
}
|
|
1075
1078
|
|
|
1076
|
-
:where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher).-near {
|
|
1079
|
+
:where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher, .nc-ram-grid).-near {
|
|
1077
1080
|
gap: var(--spacing-near);
|
|
1078
1081
|
}
|
|
1079
1082
|
|
|
1080
|
-
:where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher).-base {
|
|
1083
|
+
:where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher, .nc-ram-grid).-base {
|
|
1081
1084
|
gap: var(--spacing-base);
|
|
1082
1085
|
}
|
|
1083
1086
|
|
|
1084
|
-
:where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher).-far {
|
|
1087
|
+
:where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher, .nc-ram-grid).-far {
|
|
1085
1088
|
gap: var(--spacing-far);
|
|
1086
1089
|
}
|
|
1087
1090
|
|
|
1088
|
-
:where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher).-farthest {
|
|
1091
|
+
:where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher, .nc-ram-grid).-farthest {
|
|
1089
1092
|
gap: var(--spacing-farthest);
|
|
1090
1093
|
}
|
|
1091
1094
|
|
|
1092
|
-
:where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher).-nogap {
|
|
1095
|
+
:where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher, .nc-ram-grid).-nogap {
|
|
1093
1096
|
gap: 0;
|
|
1094
1097
|
}
|
|
1095
|
-
|
|
1096
|
-
:where(.nc-ram-grid) {
|
|
1097
|
-
--_nc-ram-grid-gap-row: var(--nc-ram-grid-gap-row, var(--_nc-ram-grid-gap));
|
|
1098
|
-
--_nc-ram-grid-gap-column: var(--nc-ram-grid-gap-column, var(--_nc-ram-grid-gap));
|
|
1099
|
-
--_nc-ram-grid-gap: var(--nc-ram-grid-gap, var(--spacing-near));
|
|
1100
|
-
--_nc-ram-grid-min-width: var(--nc-ram-grid-min-width, 150px);
|
|
1101
|
-
--_nc-ram-grid-repeat-count: var(--nc-ram-grid-repeat-count, auto-fit);
|
|
1102
|
-
row-gap: var(--_nc-ram-grid-gap-row);
|
|
1103
|
-
column-gap: var(--_nc-ram-grid-gap-column);
|
|
1104
|
-
grid-template-columns: repeat(var(--_nc-ram-grid-repeat-count), minmax(min(var(--_nc-ram-grid-min-width), 100%), 1fr));
|
|
1105
|
-
display: grid;
|
|
1106
|
-
}
|
|
1107
1098
|
}
|
|
1108
1099
|
|
|
1109
1100
|
@layer components, helpers;
|
|
@@ -2381,7 +2372,7 @@
|
|
|
2381
2372
|
--_notification-max-width: var(--notifications-max-width, 20rem);
|
|
2382
2373
|
--_notification-gap: var(--notification-gap, var(--spacing-base));
|
|
2383
2374
|
--_notification-border-color: var(--notification-border-color, var(--color-border-base));
|
|
2384
|
-
--_notification-center-background: var(--notification-center-background, oklch
|
|
2375
|
+
--_notification-center-background: var(--notification-center-background, color-mix(in oklch, var(---color-surface-subtle), transparent 95%) ;);
|
|
2385
2376
|
}
|
|
2386
2377
|
|
|
2387
2378
|
:where(.nc-notification-center, .nc-notification-output) {
|
|
@@ -2395,7 +2386,7 @@
|
|
|
2395
2386
|
inset-inline-end: 0;
|
|
2396
2387
|
}
|
|
2397
2388
|
|
|
2398
|
-
.nc-notification-center {
|
|
2389
|
+
:where(.nc-notification-center) {
|
|
2399
2390
|
-webkit-backdrop-filter: blur(3px);
|
|
2400
2391
|
backdrop-filter: blur(3px);
|
|
2401
2392
|
background-color: var(--_notification-center-background);
|
|
@@ -645,10 +645,6 @@
|
|
|
645
645
|
display: flex;
|
|
646
646
|
}
|
|
647
647
|
|
|
648
|
-
:where(.nc-stack).-inherit {
|
|
649
|
-
gap: var(--stack-gap, var(--spacing-base));
|
|
650
|
-
}
|
|
651
|
-
|
|
652
648
|
:where(.nc-stack).-stretched {
|
|
653
649
|
inline-size: 100%;
|
|
654
650
|
}
|
|
@@ -710,10 +706,6 @@
|
|
|
710
706
|
display: flex;
|
|
711
707
|
}
|
|
712
708
|
|
|
713
|
-
:where(.nc-cluster).-inherit {
|
|
714
|
-
gap: var(--cluster-gap, var(--spacing-base));
|
|
715
|
-
}
|
|
716
|
-
|
|
717
709
|
:where(.nc-cluster).-centered {
|
|
718
710
|
align-items: center;
|
|
719
711
|
}
|
|
@@ -796,49 +788,48 @@
|
|
|
796
788
|
grid-area: pile;
|
|
797
789
|
}
|
|
798
790
|
|
|
799
|
-
:where(.nc-
|
|
791
|
+
:where(.nc-ram-grid) {
|
|
792
|
+
--_nc-ram-grid-gap-row: var(--nc-ram-grid-gap-row, var(--_nc-ram-grid-gap));
|
|
793
|
+
--_nc-ram-grid-gap-column: var(--nc-ram-grid-gap-column, var(--_nc-ram-grid-gap));
|
|
794
|
+
--_nc-ram-grid-gap: var(--nc-ram-grid-gap, var(--spacing-near));
|
|
795
|
+
--_nc-ram-grid-min-width: var(--nc-ram-grid-min-width, 150px);
|
|
796
|
+
--_nc-ram-grid-repeat-count: var(--nc-ram-grid-repeat-count, auto-fit);
|
|
797
|
+
gap: var(--_nc-ram-grid-gap-column) var(--_nc-ram-grid-gap-row);
|
|
798
|
+
grid-template-columns: repeat(var(--_nc-ram-grid-repeat-count), minmax(min(var(--_nc-ram-grid-min-width), 100%), 1fr));
|
|
799
|
+
display: grid;
|
|
800
|
+
}
|
|
801
|
+
|
|
802
|
+
:where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher, .nc-ram-grid).-inherit {
|
|
800
803
|
gap: inherit;
|
|
801
804
|
}
|
|
802
805
|
|
|
803
|
-
:where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher).-tiny {
|
|
806
|
+
:where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher, .nc-ram-grid).-tiny {
|
|
804
807
|
gap: var(--spacing-tiny);
|
|
805
808
|
}
|
|
806
809
|
|
|
807
|
-
:where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher).-nearest {
|
|
810
|
+
:where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher, .nc-ram-grid).-nearest {
|
|
808
811
|
gap: var(--spacing-nearest);
|
|
809
812
|
}
|
|
810
813
|
|
|
811
|
-
:where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher).-near {
|
|
814
|
+
:where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher, .nc-ram-grid).-near {
|
|
812
815
|
gap: var(--spacing-near);
|
|
813
816
|
}
|
|
814
817
|
|
|
815
|
-
:where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher).-base {
|
|
818
|
+
:where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher, .nc-ram-grid).-base {
|
|
816
819
|
gap: var(--spacing-base);
|
|
817
820
|
}
|
|
818
821
|
|
|
819
|
-
:where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher).-far {
|
|
822
|
+
:where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher, .nc-ram-grid).-far {
|
|
820
823
|
gap: var(--spacing-far);
|
|
821
824
|
}
|
|
822
825
|
|
|
823
|
-
:where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher).-farthest {
|
|
826
|
+
:where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher, .nc-ram-grid).-farthest {
|
|
824
827
|
gap: var(--spacing-farthest);
|
|
825
828
|
}
|
|
826
829
|
|
|
827
|
-
:where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher).-nogap {
|
|
830
|
+
:where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher, .nc-ram-grid).-nogap {
|
|
828
831
|
gap: 0;
|
|
829
832
|
}
|
|
830
|
-
|
|
831
|
-
:where(.nc-ram-grid) {
|
|
832
|
-
--_nc-ram-grid-gap-row: var(--nc-ram-grid-gap-row, var(--_nc-ram-grid-gap));
|
|
833
|
-
--_nc-ram-grid-gap-column: var(--nc-ram-grid-gap-column, var(--_nc-ram-grid-gap));
|
|
834
|
-
--_nc-ram-grid-gap: var(--nc-ram-grid-gap, var(--spacing-near));
|
|
835
|
-
--_nc-ram-grid-min-width: var(--nc-ram-grid-min-width, 150px);
|
|
836
|
-
--_nc-ram-grid-repeat-count: var(--nc-ram-grid-repeat-count, auto-fit);
|
|
837
|
-
row-gap: var(--_nc-ram-grid-gap-row);
|
|
838
|
-
column-gap: var(--_nc-ram-grid-gap-column);
|
|
839
|
-
grid-template-columns: repeat(var(--_nc-ram-grid-repeat-count), minmax(min(var(--_nc-ram-grid-min-width), 100%), 1fr));
|
|
840
|
-
display: grid;
|
|
841
|
-
}
|
|
842
833
|
}
|
|
843
834
|
|
|
844
835
|
@layer components, helpers;
|
|
@@ -2116,7 +2107,7 @@
|
|
|
2116
2107
|
--_notification-max-width: var(--notifications-max-width, 20rem);
|
|
2117
2108
|
--_notification-gap: var(--notification-gap, var(--spacing-base));
|
|
2118
2109
|
--_notification-border-color: var(--notification-border-color, var(--color-border-base));
|
|
2119
|
-
--_notification-center-background: var(--notification-center-background, oklch
|
|
2110
|
+
--_notification-center-background: var(--notification-center-background, color-mix(in oklch, var(---color-surface-subtle), transparent 95%) ;);
|
|
2120
2111
|
}
|
|
2121
2112
|
|
|
2122
2113
|
:where(.nc-notification-center, .nc-notification-output) {
|
|
@@ -2130,7 +2121,7 @@
|
|
|
2130
2121
|
inset-inline-end: 0;
|
|
2131
2122
|
}
|
|
2132
2123
|
|
|
2133
|
-
.nc-notification-center {
|
|
2124
|
+
:where(.nc-notification-center) {
|
|
2134
2125
|
-webkit-backdrop-filter: blur(3px);
|
|
2135
2126
|
backdrop-filter: blur(3px);
|
|
2136
2127
|
background-color: var(--_notification-center-background);
|
package/package.json
CHANGED
|
@@ -8,7 +8,11 @@
|
|
|
8
8
|
"Boneless UI"
|
|
9
9
|
],
|
|
10
10
|
"license": "AGPL-3.0-or-later",
|
|
11
|
-
"
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "https://github.com/nordcode-agency/nordcode/tree/main/packages/ui"
|
|
14
|
+
},
|
|
15
|
+
"version": "1.0.2",
|
|
12
16
|
"publishConfig": {
|
|
13
17
|
"access": "public"
|
|
14
18
|
},
|
|
@@ -3,10 +3,9 @@
|
|
|
3
3
|
--_notification-max-width: var(--notifications-max-width, 20rem);
|
|
4
4
|
--_notification-gap: var(--notification-gap, var(--spacing-base));
|
|
5
5
|
--_notification-border-color: var(--notification-border-color, var(--color-border-base));
|
|
6
|
-
--_notification-center-background: var(
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
);
|
|
6
|
+
--_notification-center-background: var(--notification-center-background,
|
|
7
|
+
color-mix(in oklch, var(---color-surface-subtle), transparent 95%);
|
|
8
|
+
);
|
|
10
9
|
}
|
|
11
10
|
|
|
12
11
|
:where(.nc-notification-center, .nc-notification-output) {
|
|
@@ -21,7 +20,7 @@
|
|
|
21
20
|
pointer-events: none;
|
|
22
21
|
}
|
|
23
22
|
|
|
24
|
-
.nc-notification-center {
|
|
23
|
+
:where(.nc-notification-center) {
|
|
25
24
|
block-size: 100%;
|
|
26
25
|
backdrop-filter: blur(3px);
|
|
27
26
|
background-color: var(--_notification-center-background);
|
|
@@ -108,8 +107,7 @@
|
|
|
108
107
|
}
|
|
109
108
|
|
|
110
109
|
:where(.nc-notification.-closing) {
|
|
111
|
-
animation: remove-notification var(--transition-duration-base) cubic-bezier(0.7, 0, 1, 1)
|
|
112
|
-
forwards;
|
|
110
|
+
animation: remove-notification var(--transition-duration-base) cubic-bezier(0.7, 0, 1, 1) forwards;
|
|
113
111
|
}
|
|
114
112
|
|
|
115
113
|
@keyframes pop-in {
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
@layer utils {
|
|
2
|
+
|
|
2
3
|
/* Layout classes that handle 80% of the layout*/
|
|
3
4
|
:where(.nc-box) {
|
|
4
5
|
padding: var(--spacing-base);
|
|
@@ -39,46 +40,42 @@
|
|
|
39
40
|
gap: var(--spacing-base);
|
|
40
41
|
align-items: flex-start;
|
|
41
42
|
|
|
42
|
-
&.-inherit {
|
|
43
|
-
gap: var(--stack-gap, var(--spacing-base));
|
|
44
|
-
}
|
|
45
|
-
|
|
46
43
|
&.-stretched {
|
|
47
44
|
inline-size: 100%;
|
|
48
45
|
|
|
49
|
-
|
|
46
|
+
&>* {
|
|
50
47
|
inline-size: 100%;
|
|
51
48
|
}
|
|
52
49
|
}
|
|
53
50
|
|
|
54
|
-
&.-contained
|
|
51
|
+
&.-contained>* {
|
|
55
52
|
max-inline-size: 100%;
|
|
56
53
|
}
|
|
57
54
|
}
|
|
58
55
|
|
|
59
56
|
:where(.nc-flow) {
|
|
60
|
-
|
|
57
|
+
>*+* {
|
|
61
58
|
margin-block-start: var(--flow-gap, 0.6lh);
|
|
62
59
|
}
|
|
63
60
|
|
|
64
|
-
|
|
61
|
+
>* {
|
|
65
62
|
max-inline-size: var(--flow-base-meassure, 72ch);
|
|
66
63
|
}
|
|
67
64
|
|
|
68
|
-
|
|
65
|
+
>*:is(h1, h2, h3, h4, h5, h6) {
|
|
69
66
|
max-inline-size: var(--flow-headline-meassure, 32ch);
|
|
70
67
|
--flow-gap: 1.3lh;
|
|
71
68
|
}
|
|
72
69
|
|
|
73
|
-
|
|
70
|
+
>*:is(h1, h2, h3, h4, h5, h6)+p {
|
|
74
71
|
--flow-gap: 0.5lh;
|
|
75
72
|
}
|
|
76
73
|
|
|
77
|
-
>
|
|
74
|
+
>p+p {
|
|
78
75
|
--flow-gap: 0.8lh;
|
|
79
76
|
}
|
|
80
77
|
|
|
81
|
-
>
|
|
78
|
+
>figure {
|
|
82
79
|
margin-inline: 0;
|
|
83
80
|
margin-block: 1lh;
|
|
84
81
|
}
|
|
@@ -114,10 +111,6 @@
|
|
|
114
111
|
gap: var(--spacing-base);
|
|
115
112
|
align-items: flex-start;
|
|
116
113
|
|
|
117
|
-
&.-inherit {
|
|
118
|
-
gap: var(--cluster-gap, var(--spacing-base));
|
|
119
|
-
}
|
|
120
|
-
|
|
121
114
|
&.-centered {
|
|
122
115
|
align-items: center;
|
|
123
116
|
}
|
|
@@ -138,13 +131,13 @@
|
|
|
138
131
|
align-items: flex-start;
|
|
139
132
|
gap: var(--with-sidebar-gap, var(--spacing-far));
|
|
140
133
|
|
|
141
|
-
|
|
134
|
+
&>[data-aside] {
|
|
142
135
|
flex-grow: 1;
|
|
143
136
|
min-width: min-content;
|
|
144
137
|
flex-basis: var(--with-sidebar-target-width, 20rem);
|
|
145
138
|
}
|
|
146
139
|
|
|
147
|
-
|
|
140
|
+
&>[data-grow] {
|
|
148
141
|
flex-basis: 0;
|
|
149
142
|
flex-grow: 999;
|
|
150
143
|
min-width: var(--with-sidebar-min-size, 50%);
|
|
@@ -177,10 +170,8 @@
|
|
|
177
170
|
*/
|
|
178
171
|
:where(.nc-grid) {
|
|
179
172
|
display: grid;
|
|
180
|
-
grid-template-columns: repeat(
|
|
181
|
-
var(--grid-
|
|
182
|
-
minmax(var(--grid-min-item-size, 16rem), 1fr)
|
|
183
|
-
);
|
|
173
|
+
grid-template-columns: repeat(var(--grid-placement, auto-fill),
|
|
174
|
+
minmax(var(--grid-min-item-size, 16rem), 1fr));
|
|
184
175
|
gap: var(--grid-gap, var(--spacing-base));
|
|
185
176
|
|
|
186
177
|
/* A split 50/50 layout */
|
|
@@ -220,7 +211,7 @@
|
|
|
220
211
|
gap: var(--switcher-gap, var(--spacing-base));
|
|
221
212
|
align-items: var(--switcher-vertical-alignment, flex-start);
|
|
222
213
|
|
|
223
|
-
|
|
214
|
+
&>* {
|
|
224
215
|
flex-grow: 1;
|
|
225
216
|
flex-basis: calc((var(--switcher-target-container-width, 40rem) - 100%) * 999);
|
|
226
217
|
}
|
|
@@ -228,7 +219,7 @@
|
|
|
228
219
|
/* Max 2 items,
|
|
229
220
|
so anything greater than 2 is ful width */
|
|
230
221
|
|
|
231
|
-
|
|
222
|
+
&> :nth-child(n + 4) {
|
|
232
223
|
flex-basis: 100%;
|
|
233
224
|
}
|
|
234
225
|
}
|
|
@@ -241,12 +232,25 @@
|
|
|
241
232
|
place-items: center;
|
|
242
233
|
grid: [pile] 1fr / [pile] 1fr;
|
|
243
234
|
|
|
244
|
-
|
|
235
|
+
&>* {
|
|
245
236
|
grid-area: pile;
|
|
246
237
|
}
|
|
247
238
|
}
|
|
248
239
|
|
|
249
|
-
:where(.nc-
|
|
240
|
+
:where(.nc-ram-grid) {
|
|
241
|
+
--_nc-ram-grid-gap-row: var(--nc-ram-grid-gap-row, var(--_nc-ram-grid-gap));
|
|
242
|
+
--_nc-ram-grid-gap-column: var(--nc-ram-grid-gap-column, var(--_nc-ram-grid-gap));
|
|
243
|
+
--_nc-ram-grid-gap: var(--nc-ram-grid-gap, var(--spacing-near));
|
|
244
|
+
--_nc-ram-grid-min-width: var(--nc-ram-grid-min-width, 150px);
|
|
245
|
+
--_nc-ram-grid-repeat-count: var(--nc-ram-grid-repeat-count, auto-fit);
|
|
246
|
+
|
|
247
|
+
display: grid;
|
|
248
|
+
gap: var(--_nc-ram-grid-gap-column) var(--_nc-ram-grid-gap-row);
|
|
249
|
+
grid-template-columns: repeat(var(--_nc-ram-grid-repeat-count),
|
|
250
|
+
minmax(min(var(--_nc-ram-grid-min-width), 100%), 1fr));
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
:where(.nc-stack, .nc-cluster, .nc-with-sidebar, .nc-grid, .nc-gallery, .nc-switcher, .nc-ram-grid) {
|
|
250
254
|
&.-inherit {
|
|
251
255
|
gap: inherit;
|
|
252
256
|
}
|
|
@@ -279,20 +283,4 @@
|
|
|
279
283
|
gap: 0;
|
|
280
284
|
}
|
|
281
285
|
}
|
|
282
|
-
|
|
283
|
-
:where(.nc-ram-grid) {
|
|
284
|
-
--_nc-ram-grid-gap-row: var(--nc-ram-grid-gap-row, var(--_nc-ram-grid-gap));
|
|
285
|
-
--_nc-ram-grid-gap-column: var(--nc-ram-grid-gap-column, var(--_nc-ram-grid-gap));
|
|
286
|
-
--_nc-ram-grid-gap: var(--nc-ram-grid-gap, var(--spacing-near));
|
|
287
|
-
--_nc-ram-grid-min-width: var(--nc-ram-grid-min-width, 150px);
|
|
288
|
-
--_nc-ram-grid-repeat-count: var(--nc-ram-grid-repeat-count, auto-fit);
|
|
289
|
-
|
|
290
|
-
display: grid;
|
|
291
|
-
row-gap: var(--_nc-ram-grid-gap-row);
|
|
292
|
-
column-gap: var(--_nc-ram-grid-gap-column);
|
|
293
|
-
grid-template-columns: repeat(
|
|
294
|
-
var(--_nc-ram-grid-repeat-count),
|
|
295
|
-
minmax(min(var(--_nc-ram-grid-min-width), 100%), 1fr)
|
|
296
|
-
);
|
|
297
|
-
}
|
|
298
286
|
}
|
package/CHANGELOG.md
DELETED
|
@@ -1,157 +0,0 @@
|
|
|
1
|
-
# @nordcode/ui
|
|
2
|
-
|
|
3
|
-
## 2.3.0
|
|
4
|
-
|
|
5
|
-
### Minor Changes
|
|
6
|
-
|
|
7
|
-
- ## Add default shadows to UI elements & tweaks
|
|
8
|
-
|
|
9
|
-
- apply heading font weight to headings
|
|
10
|
-
- tweak button design
|
|
11
|
-
- add slight shadow to default buttons
|
|
12
|
-
- make offset button a variant
|
|
13
|
-
- add inset shadow to inputs by default
|
|
14
|
-
- style input range thumb
|
|
15
|
-
- add shadow to switch thumb
|
|
16
|
-
|
|
17
|
-
## 2.2.0
|
|
18
|
-
|
|
19
|
-
### Minor Changes
|
|
20
|
-
|
|
21
|
-
- ## Small tweaks and additions
|
|
22
|
-
|
|
23
|
-
- add all font sizes as utility classes
|
|
24
|
-
- add sr-only as screen-reader class too
|
|
25
|
-
- make details more clickable by adding the padding to the summary instead
|
|
26
|
-
- add badges variants for primary & secondary
|
|
27
|
-
- make breadcrumbs and buttons more consistent
|
|
28
|
-
|
|
29
|
-
## 2.1.0
|
|
30
|
-
|
|
31
|
-
### Minor Changes
|
|
32
|
-
|
|
33
|
-
- ## Tweaks to base styles
|
|
34
|
-
|
|
35
|
-
- Add missing style: `var`
|
|
36
|
-
- Add text-rendering: optimizeSpeed;
|
|
37
|
-
- Fix Metalist styles
|
|
38
|
-
- Increase details default padding
|
|
39
|
-
- Simplify and improve blockquote styles
|
|
40
|
-
- Make em and i serif for improved italics
|
|
41
|
-
- Add font-smoothing to base
|
|
42
|
-
- Use `ex` in nc-flow for improved vertical rhythm
|
|
43
|
-
- Update line-height calculations after switching to `ex`-based line-heights in the generator
|
|
44
|
-
|
|
45
|
-
## 2.0.0
|
|
46
|
-
|
|
47
|
-
### Major Changes
|
|
48
|
-
|
|
49
|
-
- Change most spacings to use lh,ch and ex
|
|
50
|
-
|
|
51
|
-
## What changed
|
|
52
|
-
|
|
53
|
-
- Most components now have their spacings based on lh, ch and ex instead of the spacings
|
|
54
|
-
|
|
55
|
-
## Why we did it
|
|
56
|
-
|
|
57
|
-
- We keep a consistent and flexible UI like this
|
|
58
|
-
- AND we can be more flexible in the spacing scale without creating UI issues in the components
|
|
59
|
-
|
|
60
|
-
## How to migrate
|
|
61
|
-
|
|
62
|
-
Probably just use it and make sure, your styles are not broken
|
|
63
|
-
|
|
64
|
-
## 1.2.0
|
|
65
|
-
|
|
66
|
-
### Minor Changes
|
|
67
|
-
|
|
68
|
-
- Lots of small tweaks and new layouts
|
|
69
|
-
- feat(ui): extend styles for kbd and code and at scroll-margin to :target
|
|
70
|
-
- feat(ui): remove padding on small icon buttons
|
|
71
|
-
- feat(ui): simplify .text-assistive style
|
|
72
|
-
- feat(ui): add more layout utilities
|
|
73
|
-
- .nc-region for page sections
|
|
74
|
-
- .nc-grid for common grid layouts (50:50 / thirds)
|
|
75
|
-
- .nc-switcher for items that go beneath each other automatically
|
|
76
|
-
- add -between to cluster to provide for spacing-between
|
|
77
|
-
- feat(ui): add style for <del>
|
|
78
|
-
|
|
79
|
-
## 1.1.2
|
|
80
|
-
|
|
81
|
-
### Patch Changes
|
|
82
|
-
|
|
83
|
-
- Feat: use primary contrast color in checkboxes
|
|
84
|
-
|
|
85
|
-
## 1.1.1
|
|
86
|
-
|
|
87
|
-
### Patch Changes
|
|
88
|
-
|
|
89
|
-
- Fix generated dark theme
|
|
90
|
-
|
|
91
|
-
## 1.1.0
|
|
92
|
-
|
|
93
|
-
### Minor Changes
|
|
94
|
-
|
|
95
|
-
- Fix dark theme, tweak styles, add easings
|
|
96
|
-
- ab524dd: Fix Icon Button and remove rlh support checks
|
|
97
|
-
|
|
98
|
-
## 1.0.0
|
|
99
|
-
|
|
100
|
-
### Major Changes
|
|
101
|
-
|
|
102
|
-
- First proper release
|
|
103
|
-
|
|
104
|
-
## 2023-12-17: Chroma-js & color renames
|
|
105
|
-
|
|
106
|
-
**Includes Breaking Changes**
|
|
107
|
-
|
|
108
|
-
- switched to chroma-js to generate all colors based on a scale
|
|
109
|
-
- renamed `color-brand-primary-subtle` to `color-brand-primary-surface` to better reflect its
|
|
110
|
-
purpose
|
|
111
|
-
- renamed `color-brand-surface-subtle` to `color-brand-surface-surface` to better reflect its
|
|
112
|
-
purpose
|
|
113
|
-
- renamed `color-info-subtle` to `color-info-surface` to better reflect its purpose
|
|
114
|
-
- renamed `color-warning-subtle` to `color-warning-surface` to better reflect its purpose
|
|
115
|
-
- renamed `color-success-subtle` to `color-success-surface` to better reflect its purpose
|
|
116
|
-
- renamed `color-danger-subtle` to `color-danger-surface` to better reflect its purpose
|
|
117
|
-
|
|
118
|
-
_Notes: Needs tweaking for some of the values_
|
|
119
|
-
|
|
120
|
-
## 2023-12-18: Tweak presets
|
|
121
|
-
|
|
122
|
-
Tweak preset and color generations a little bit.
|
|
123
|
-
|
|
124
|
-
## 2023-12-19: Tweak presets, design improvements
|
|
125
|
-
|
|
126
|
-
- Tweak preset values for `brutalist`
|
|
127
|
-
- Change default text-underline-offset to `0.25lh`
|
|
128
|
-
- Fix description-list style
|
|
129
|
-
|
|
130
|
-
## 2023-12-22: Fix shadow generation
|
|
131
|
-
|
|
132
|
-
## 2023-12-25: Extend color possibilities
|
|
133
|
-
|
|
134
|
-
- Split Neutral Chroma into 3 for FG, BG and Borders
|
|
135
|
-
- Allow secondary brand color to be used in generating FG and BG neutral colors
|
|
136
|
-
|
|
137
|
-
## 2023-12-27: More color tweaks
|
|
138
|
-
|
|
139
|
-
- tweak button colors and fix base button hover
|
|
140
|
-
- use base chroma and hue in generation of scales when generating colors
|
|
141
|
-
|
|
142
|
-
### Minor Changes
|
|
143
|
-
|
|
144
|
-
- d829e99: added --gallery-scroll-snap-stop css prop to gallery
|
|
145
|
-
- 6025a83: add first batch of css component styles
|
|
146
|
-
- c42d1f3: add new export /media for css @custom-media
|
|
147
|
-
|
|
148
|
-
### Patch Changes
|
|
149
|
-
|
|
150
|
-
- a59822e: fixed border-radius-round typo (1e5px)
|
|
151
|
-
- bcae962: add icons and assets exports
|
|
152
|
-
|
|
153
|
-
## 0.0.1
|
|
154
|
-
|
|
155
|
-
### Patch Changes
|
|
156
|
-
|
|
157
|
-
- 65eca97: first try of changesets
|