bianic-ui 0.3.1 → 0.3.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/dist/cjs/index.js +6 -0
- package/dist/esm/index.js +6 -0
- package/package.json +1 -1
package/dist/cjs/index.js
CHANGED
|
@@ -3166,6 +3166,11 @@ var Text = function (_a) {
|
|
|
3166
3166
|
fontSize = "text-sm";
|
|
3167
3167
|
fontWeight = "font-semibold";
|
|
3168
3168
|
}
|
|
3169
|
+
else if (variant === "normal-text-semilight") {
|
|
3170
|
+
// text-zinc-800 text-sm font-['Segoe UI'] leading-[21px]
|
|
3171
|
+
fontSize = "text-sm";
|
|
3172
|
+
fontWeight = "";
|
|
3173
|
+
}
|
|
3169
3174
|
else if (variant === "normal-text-bold") {
|
|
3170
3175
|
// text-zinc-800 text-sm font-bold font-['Segoe UI'] leading-[21px]
|
|
3171
3176
|
fontSize = "text-sm";
|
|
@@ -3195,6 +3200,7 @@ var Text = function (_a) {
|
|
|
3195
3200
|
}
|
|
3196
3201
|
else if (variant === "small-script") {
|
|
3197
3202
|
// text-zinc-800 text-xs font-normal font-['Consolas']
|
|
3203
|
+
font = "font-['Consolas']";
|
|
3198
3204
|
fontSize = "text-sm";
|
|
3199
3205
|
fontWeight = "font-normal";
|
|
3200
3206
|
}
|
package/dist/esm/index.js
CHANGED
|
@@ -3164,6 +3164,11 @@ var Text = function (_a) {
|
|
|
3164
3164
|
fontSize = "text-sm";
|
|
3165
3165
|
fontWeight = "font-semibold";
|
|
3166
3166
|
}
|
|
3167
|
+
else if (variant === "normal-text-semilight") {
|
|
3168
|
+
// text-zinc-800 text-sm font-['Segoe UI'] leading-[21px]
|
|
3169
|
+
fontSize = "text-sm";
|
|
3170
|
+
fontWeight = "";
|
|
3171
|
+
}
|
|
3167
3172
|
else if (variant === "normal-text-bold") {
|
|
3168
3173
|
// text-zinc-800 text-sm font-bold font-['Segoe UI'] leading-[21px]
|
|
3169
3174
|
fontSize = "text-sm";
|
|
@@ -3193,6 +3198,7 @@ var Text = function (_a) {
|
|
|
3193
3198
|
}
|
|
3194
3199
|
else if (variant === "small-script") {
|
|
3195
3200
|
// text-zinc-800 text-xs font-normal font-['Consolas']
|
|
3201
|
+
font = "font-['Consolas']";
|
|
3196
3202
|
fontSize = "text-sm";
|
|
3197
3203
|
fontWeight = "font-normal";
|
|
3198
3204
|
}
|
package/package.json
CHANGED