@planningcenter/tapestry 2.9.0-rc.13 → 2.9.0-rc.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.css +202 -0
- package/dist/index.css.map +1 -1
- package/dist/reactRender.css +348 -146
- package/dist/reactRender.css.map +1 -1
- package/dist/reactRenderLegacy.css +348 -146
- package/dist/reactRenderLegacy.css.map +1 -1
- package/dist/tapestry-reset.css +186 -0
- package/dist/tapestry-reset.css.map +1 -0
- package/dist/tapestry-reset.js +3 -0
- package/dist/unstable.css +202 -0
- package/dist/unstable.css.map +1 -1
- package/package.json +4 -3
package/dist/index.css
CHANGED
|
@@ -969,6 +969,208 @@
|
|
|
969
969
|
@media (prefers-color-scheme: dark){
|
|
970
970
|
}
|
|
971
971
|
|
|
972
|
+
/*! modern-normalize v3.0.1 | MIT License | https://github.com/sindresorhus/modern-normalize */
|
|
973
|
+
|
|
974
|
+
*,
|
|
975
|
+
::before,
|
|
976
|
+
::after{
|
|
977
|
+
box-sizing:border-box;
|
|
978
|
+
}
|
|
979
|
+
|
|
980
|
+
html{
|
|
981
|
+
font-family:var(--t-font-sans-serif);
|
|
982
|
+
line-height:1.15;
|
|
983
|
+
color:var(--t-text-color);
|
|
984
|
+
-moz-tab-size:4;
|
|
985
|
+
-o-tab-size:4;
|
|
986
|
+
tab-size:4;
|
|
987
|
+
accent-color:var(--t-fill-color-interaction);
|
|
988
|
+
caret-color:var(--t-text-color);
|
|
989
|
+
background-color:var(--t-surface-color-card);
|
|
990
|
+
interpolate-size:allow-keywords;
|
|
991
|
+
-webkit-text-size-adjust:100%;
|
|
992
|
+
-moz-text-size-adjust:100%;
|
|
993
|
+
text-size-adjust:100%;
|
|
994
|
+
-webkit-tap-highlight-color:transparent;
|
|
995
|
+
}
|
|
996
|
+
|
|
997
|
+
body{
|
|
998
|
+
margin:0;
|
|
999
|
+
font-size:var(--t-font-size-md);
|
|
1000
|
+
font-weight:var(--t-font-weight-normal);
|
|
1001
|
+
-moz-osx-font-smoothing:grayscale;
|
|
1002
|
+
-webkit-font-smoothing:antialiased;
|
|
1003
|
+
container-type:inline-size;
|
|
1004
|
+
}
|
|
1005
|
+
|
|
1006
|
+
b,
|
|
1007
|
+
strong{
|
|
1008
|
+
font-weight:bolder;
|
|
1009
|
+
}
|
|
1010
|
+
|
|
1011
|
+
code,
|
|
1012
|
+
kbd,
|
|
1013
|
+
samp,
|
|
1014
|
+
pre{
|
|
1015
|
+
font-family:var(--t-font-monospace);
|
|
1016
|
+
font-size:1em;
|
|
1017
|
+
}
|
|
1018
|
+
|
|
1019
|
+
small{
|
|
1020
|
+
font-size:80%;
|
|
1021
|
+
}
|
|
1022
|
+
|
|
1023
|
+
sub,
|
|
1024
|
+
sup{
|
|
1025
|
+
position:relative;
|
|
1026
|
+
font-size:75%;
|
|
1027
|
+
line-height:0;
|
|
1028
|
+
vertical-align:baseline;
|
|
1029
|
+
}
|
|
1030
|
+
|
|
1031
|
+
sub{
|
|
1032
|
+
bottom:-.25em;
|
|
1033
|
+
}
|
|
1034
|
+
|
|
1035
|
+
sup{
|
|
1036
|
+
top:-.5em;
|
|
1037
|
+
}
|
|
1038
|
+
|
|
1039
|
+
a{
|
|
1040
|
+
color:var(--t-fill-color-interaction);
|
|
1041
|
+
}
|
|
1042
|
+
|
|
1043
|
+
a:hover{
|
|
1044
|
+
color:var(--t-fill-color-interaction-hover);
|
|
1045
|
+
}
|
|
1046
|
+
|
|
1047
|
+
a:active{
|
|
1048
|
+
color:var(--t-fill-color-interaction-active);
|
|
1049
|
+
}
|
|
1050
|
+
|
|
1051
|
+
h1,
|
|
1052
|
+
h2,
|
|
1053
|
+
h3,
|
|
1054
|
+
h4,
|
|
1055
|
+
h5,
|
|
1056
|
+
h6{
|
|
1057
|
+
text-wrap:balance;
|
|
1058
|
+
overflow-wrap:break-word;
|
|
1059
|
+
}
|
|
1060
|
+
|
|
1061
|
+
p{
|
|
1062
|
+
text-wrap:pretty;
|
|
1063
|
+
overflow-wrap:break-word;
|
|
1064
|
+
}
|
|
1065
|
+
|
|
1066
|
+
table{
|
|
1067
|
+
text-indent:0;
|
|
1068
|
+
border-collapse:collapse;
|
|
1069
|
+
border-color:currentcolor;
|
|
1070
|
+
}
|
|
1071
|
+
|
|
1072
|
+
button,
|
|
1073
|
+
input,
|
|
1074
|
+
optgroup,
|
|
1075
|
+
select,
|
|
1076
|
+
textarea{
|
|
1077
|
+
margin:0;
|
|
1078
|
+
font-family:inherit;
|
|
1079
|
+
font-size:100%;
|
|
1080
|
+
line-height:1.15;
|
|
1081
|
+
}
|
|
1082
|
+
|
|
1083
|
+
textarea{
|
|
1084
|
+
resize:vertical;
|
|
1085
|
+
}
|
|
1086
|
+
|
|
1087
|
+
select{
|
|
1088
|
+
word-wrap:normal;
|
|
1089
|
+
}
|
|
1090
|
+
|
|
1091
|
+
select:disabled{
|
|
1092
|
+
opacity:1;
|
|
1093
|
+
}
|
|
1094
|
+
|
|
1095
|
+
::-moz-placeholder{
|
|
1096
|
+
color:var(--t-text-color-placeholder);
|
|
1097
|
+
opacity:1;
|
|
1098
|
+
}
|
|
1099
|
+
|
|
1100
|
+
::placeholder{
|
|
1101
|
+
color:var(--t-text-color-placeholder);
|
|
1102
|
+
opacity:1;
|
|
1103
|
+
}
|
|
1104
|
+
|
|
1105
|
+
button,
|
|
1106
|
+
[type="button"],
|
|
1107
|
+
[type="reset"],
|
|
1108
|
+
[type="submit"]{
|
|
1109
|
+
-webkit-appearance:auto;
|
|
1110
|
+
-moz-appearance:auto;
|
|
1111
|
+
appearance:auto;
|
|
1112
|
+
}
|
|
1113
|
+
|
|
1114
|
+
legend{
|
|
1115
|
+
padding:0;
|
|
1116
|
+
}
|
|
1117
|
+
|
|
1118
|
+
progress{
|
|
1119
|
+
vertical-align:baseline;
|
|
1120
|
+
}
|
|
1121
|
+
|
|
1122
|
+
::-webkit-inner-spin-button,
|
|
1123
|
+
::-webkit-outer-spin-button{
|
|
1124
|
+
height:auto;
|
|
1125
|
+
}
|
|
1126
|
+
|
|
1127
|
+
[type="search"]{
|
|
1128
|
+
-webkit-appearance:textfield;
|
|
1129
|
+
-moz-appearance:textfield;
|
|
1130
|
+
appearance:textfield;
|
|
1131
|
+
outline-offset:-2px;
|
|
1132
|
+
}
|
|
1133
|
+
|
|
1134
|
+
::-webkit-search-decoration{
|
|
1135
|
+
-webkit-appearance:none;
|
|
1136
|
+
appearance:none;
|
|
1137
|
+
}
|
|
1138
|
+
|
|
1139
|
+
::-webkit-file-upload-button{
|
|
1140
|
+
font:inherit;
|
|
1141
|
+
-webkit-appearance:auto;
|
|
1142
|
+
appearance:auto;
|
|
1143
|
+
}
|
|
1144
|
+
|
|
1145
|
+
summary{
|
|
1146
|
+
display:list-item;
|
|
1147
|
+
}
|
|
1148
|
+
|
|
1149
|
+
::-webkit-date-and-time-value{
|
|
1150
|
+
min-height:1lh;
|
|
1151
|
+
text-align:inherit;
|
|
1152
|
+
}
|
|
1153
|
+
|
|
1154
|
+
::-webkit-datetime-edit{
|
|
1155
|
+
display:inline-flex;
|
|
1156
|
+
}
|
|
1157
|
+
|
|
1158
|
+
::-webkit-datetime-edit-fields-wrapper{
|
|
1159
|
+
padding:0;
|
|
1160
|
+
}
|
|
1161
|
+
|
|
1162
|
+
::-webkit-datetime-edit,
|
|
1163
|
+
::-webkit-datetime-edit-year-field,
|
|
1164
|
+
::-webkit-datetime-edit-month-field,
|
|
1165
|
+
::-webkit-datetime-edit-day-field,
|
|
1166
|
+
::-webkit-datetime-edit-hour-field,
|
|
1167
|
+
::-webkit-datetime-edit-minute-field,
|
|
1168
|
+
::-webkit-datetime-edit-second-field,
|
|
1169
|
+
::-webkit-datetime-edit-millisecond-field,
|
|
1170
|
+
::-webkit-datetime-edit-meridiem-field{
|
|
1171
|
+
padding-block:0;
|
|
1172
|
+
}
|
|
1173
|
+
|
|
972
1174
|
@layer t-critical{
|
|
973
1175
|
tds-page-header:not(.hydrated){
|
|
974
1176
|
display:none;
|