@frollo/frollo-web-ui 0.0.3 → 0.0.4
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/cjs/index.js +7 -6
- package/esm/fw-button.js +1 -1
- package/esm/{index-280a9116.js → index-758e7e1e.js} +7 -6
- package/esm/index.js +2 -2
- package/frollo-web-ui.esm.js +7 -6
- package/package.json +1 -1
package/cjs/index.js
CHANGED
|
@@ -1500,11 +1500,11 @@ addToUnscopables('includes');var script = vue.defineComponent({
|
|
|
1500
1500
|
}
|
|
1501
1501
|
});
|
|
1502
1502
|
var sizes = vue.ref({
|
|
1503
|
-
sm: 'px-
|
|
1504
|
-
md: 'px-
|
|
1505
|
-
lg: 'px-
|
|
1506
|
-
xl: 'px-
|
|
1507
|
-
'2xl': 'px-
|
|
1503
|
+
sm: 'px-2 py-0.5 text-sm',
|
|
1504
|
+
md: 'px-6 py-1 text-md',
|
|
1505
|
+
lg: 'px-10 py-2 text-lg',
|
|
1506
|
+
xl: 'px-12 py-3 text-xl',
|
|
1507
|
+
'2xl': 'px-16 py-4 text-2xl'
|
|
1508
1508
|
});
|
|
1509
1509
|
var textColorClass = vue.computed(function () {
|
|
1510
1510
|
return buttonClasses.value[props.variant].text;
|
|
@@ -1573,7 +1573,8 @@ addToUnscopables('includes');var script = vue.defineComponent({
|
|
|
1573
1573
|
});var _hoisted_1 = ["to", "href"];
|
|
1574
1574
|
function render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
1575
1575
|
return vue.openBlock(), vue.createElementBlock("button", {
|
|
1576
|
-
"class": vue.normalizeClass(["fw-button rounded-full border-2 focus:outline-none ring-offset-2 focus:ring", [_ctx.textColorClass, _ctx.bgColorClass, _ctx.sizeClass, _ctx.borderClass]]),
|
|
1576
|
+
"class": vue.normalizeClass(["fw-button font-bold rounded-full border-2 focus:outline-none ring-offset-2 focus:ring", [_ctx.textColorClass, _ctx.bgColorClass, _ctx.sizeClass, _ctx.borderClass]]),
|
|
1577
|
+
type: "button",
|
|
1577
1578
|
to: _ctx.to,
|
|
1578
1579
|
href: _ctx.href,
|
|
1579
1580
|
onClick: _cache[0] || (_cache[0] = function () {
|
package/esm/fw-button.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { u as FwButton } from './index-
|
|
1
|
+
export { u as FwButton } from './index-758e7e1e.js';
|
|
2
2
|
import 'vue';
|
|
@@ -1216,11 +1216,11 @@ var script = defineComponent({
|
|
|
1216
1216
|
}
|
|
1217
1217
|
});
|
|
1218
1218
|
var sizes = ref({
|
|
1219
|
-
sm: 'px-
|
|
1220
|
-
md: 'px-
|
|
1221
|
-
lg: 'px-
|
|
1222
|
-
xl: 'px-
|
|
1223
|
-
'2xl': 'px-
|
|
1219
|
+
sm: 'px-2 py-0.5 text-sm',
|
|
1220
|
+
md: 'px-6 py-1 text-md',
|
|
1221
|
+
lg: 'px-10 py-2 text-lg',
|
|
1222
|
+
xl: 'px-12 py-3 text-xl',
|
|
1223
|
+
'2xl': 'px-16 py-4 text-2xl'
|
|
1224
1224
|
});
|
|
1225
1225
|
var textColorClass = computed(function () {
|
|
1226
1226
|
return buttonClasses.value[props.variant].text;
|
|
@@ -1291,7 +1291,8 @@ var script = defineComponent({
|
|
|
1291
1291
|
var _hoisted_1 = ["to", "href"];
|
|
1292
1292
|
function render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
1293
1293
|
return openBlock(), createElementBlock("button", {
|
|
1294
|
-
"class": normalizeClass(["fw-button rounded-full border-2 focus:outline-none ring-offset-2 focus:ring", [_ctx.textColorClass, _ctx.bgColorClass, _ctx.sizeClass, _ctx.borderClass]]),
|
|
1294
|
+
"class": normalizeClass(["fw-button font-bold rounded-full border-2 focus:outline-none ring-offset-2 focus:ring", [_ctx.textColorClass, _ctx.bgColorClass, _ctx.sizeClass, _ctx.borderClass]]),
|
|
1295
|
+
type: "button",
|
|
1295
1296
|
to: _ctx.to,
|
|
1296
1297
|
href: _ctx.href,
|
|
1297
1298
|
onClick: _cache[0] || (_cache[0] = function () {
|
package/esm/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { f as functionUncurryThis, a as aCallable$1, b as functionBindNative, c as classofRaw$1, w as wellKnownSymbol$3, g as global$3, i as isCallable$2, d as fails$2, e as getBuiltIn$1, h as inspectSource$1, j as isObject$1, k as indexedObject, t as toObject$1, l as lengthOfArrayLike$1, _ as _export, r as redefine$1, m as documentCreateElement$1, n as createNonEnumerableProperty$1, o as descriptors, p as objectKeys$1, q as toIndexedObject$1, s as objectPropertyIsEnumerable, u as script$1 } from './index-
|
|
2
|
-
export { u as FwButton } from './index-
|
|
1
|
+
import { f as functionUncurryThis, a as aCallable$1, b as functionBindNative, c as classofRaw$1, w as wellKnownSymbol$3, g as global$3, i as isCallable$2, d as fails$2, e as getBuiltIn$1, h as inspectSource$1, j as isObject$1, k as indexedObject, t as toObject$1, l as lengthOfArrayLike$1, _ as _export, r as redefine$1, m as documentCreateElement$1, n as createNonEnumerableProperty$1, o as descriptors, p as objectKeys$1, q as toIndexedObject$1, s as objectPropertyIsEnumerable, u as script$1 } from './index-758e7e1e.js';
|
|
2
|
+
export { u as FwButton } from './index-758e7e1e.js';
|
|
3
3
|
import { FwCard as script } from './fw-card.js';
|
|
4
4
|
export { FwCard } from './fw-card.js';
|
|
5
5
|
import 'vue';
|
package/frollo-web-ui.esm.js
CHANGED
|
@@ -1720,11 +1720,11 @@ var script = defineComponent({
|
|
|
1720
1720
|
}
|
|
1721
1721
|
});
|
|
1722
1722
|
var sizes = ref({
|
|
1723
|
-
sm: 'px-
|
|
1724
|
-
md: 'px-
|
|
1725
|
-
lg: 'px-
|
|
1726
|
-
xl: 'px-
|
|
1727
|
-
'2xl': 'px-
|
|
1723
|
+
sm: 'px-2 py-0.5 text-sm',
|
|
1724
|
+
md: 'px-6 py-1 text-md',
|
|
1725
|
+
lg: 'px-10 py-2 text-lg',
|
|
1726
|
+
xl: 'px-12 py-3 text-xl',
|
|
1727
|
+
'2xl': 'px-16 py-4 text-2xl'
|
|
1728
1728
|
});
|
|
1729
1729
|
var textColorClass = computed(function () {
|
|
1730
1730
|
return buttonClasses.value[props.variant].text;
|
|
@@ -1795,7 +1795,8 @@ var script = defineComponent({
|
|
|
1795
1795
|
var _hoisted_1 = ["to", "href"];
|
|
1796
1796
|
function render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
1797
1797
|
return openBlock(), createElementBlock("button", {
|
|
1798
|
-
"class": normalizeClass(["fw-button rounded-full border-2 focus:outline-none ring-offset-2 focus:ring", [_ctx.textColorClass, _ctx.bgColorClass, _ctx.sizeClass, _ctx.borderClass]]),
|
|
1798
|
+
"class": normalizeClass(["fw-button font-bold rounded-full border-2 focus:outline-none ring-offset-2 focus:ring", [_ctx.textColorClass, _ctx.bgColorClass, _ctx.sizeClass, _ctx.borderClass]]),
|
|
1799
|
+
type: "button",
|
|
1799
1800
|
to: _ctx.to,
|
|
1800
1801
|
href: _ctx.href,
|
|
1801
1802
|
onClick: _cache[0] || (_cache[0] = function () {
|