@frollo/frollo-web-ui 0.0.6 → 0.0.7

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 CHANGED
@@ -1274,28 +1274,56 @@ $$1({ target: 'Object', stat: true }, {
1274
1274
  */
1275
1275
  prefixTitle: {
1276
1276
  type: String
1277
- }
1277
+ },
1278
+
1279
+ /**
1280
+ * A `router-link` path or object
1281
+ */
1282
+ to: {
1283
+ type: [String, Object]
1284
+ },
1285
+
1286
+ /**
1287
+ * A URL to link to using a native anchor element
1288
+ */
1289
+ href: String
1290
+ },
1291
+ setup: function setup(props) {
1292
+ var componentName = vue.computed(function () {
1293
+ if (props.to) return 'router-link';
1294
+ if (props.href) return 'a';
1295
+ return 'div';
1296
+ });
1297
+ return {
1298
+ componentName: componentName
1299
+ };
1278
1300
  }
1279
1301
  });var _hoisted_1$1 = {
1280
- "class": "fw-card shadow rounded-lg"
1281
- };
1282
- var _hoisted_2$1 = {
1283
1302
  key: 0,
1284
1303
  "class": "fw-card--header text-lg px-8 py-4 font-bold bg-grey-lightest rounded-t-lg border-opacity-0"
1285
1304
  };
1286
- var _hoisted_3$1 = {
1305
+ var _hoisted_2$1 = {
1287
1306
  key: 0,
1288
1307
  "class": "fw-card--prefix-title text-primary"
1289
1308
  };
1290
- var _hoisted_4$1 = {
1309
+ var _hoisted_3$1 = {
1291
1310
  key: 1
1292
1311
  };
1293
- var _hoisted_5$1 = {
1312
+ var _hoisted_4$1 = {
1294
1313
  key: 1,
1295
1314
  "class": "p-8"
1296
1315
  };
1297
1316
  function render$2(_ctx, _cache, $props, $setup, $data, $options) {
1298
- return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$1, [_ctx.title || _ctx.prefixTitle ? (vue.openBlock(), vue.createElementBlock("h4", _hoisted_2$1, [_ctx.prefixTitle ? (vue.openBlock(), vue.createElementBlock("span", _hoisted_3$1, vue.toDisplayString(_ctx.prefixTitle), 1)) : vue.createCommentVNode("", true), _ctx.title ? (vue.openBlock(), vue.createElementBlock("span", _hoisted_4$1, vue.toDisplayString(_ctx.title), 1)) : vue.createCommentVNode("", true)])) : vue.createCommentVNode("", true), _ctx.$slots["default"] ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_5$1, [vue.renderSlot(_ctx.$slots, "default")])) : vue.createCommentVNode("", true)]);
1317
+ return vue.openBlock(), vue.createBlock(vue.resolveDynamicComponent(_ctx.componentName), {
1318
+ to: _ctx.to ? _ctx.to : null,
1319
+ href: _ctx.href ? _ctx.href : null,
1320
+ "class": vue.normalizeClass(["fw-card shadow-card rounded-lg", _ctx.to || _ctx.href ? 'block focus:outline-none ring-offset-3 focus:ring focus:ring-primary transform-none transition-transform hover:-translate-y-1' : ''])
1321
+ }, {
1322
+ "default": vue.withCtx(function () {
1323
+ return [_ctx.title || _ctx.prefixTitle ? (vue.openBlock(), vue.createElementBlock("h4", _hoisted_1$1, [_ctx.prefixTitle ? (vue.openBlock(), vue.createElementBlock("span", _hoisted_2$1, vue.toDisplayString(_ctx.prefixTitle), 1)) : vue.createCommentVNode("", true), _ctx.title ? (vue.openBlock(), vue.createElementBlock("span", _hoisted_3$1, vue.toDisplayString(_ctx.title), 1)) : vue.createCommentVNode("", true)])) : vue.createCommentVNode("", true), _ctx.$slots["default"] ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_4$1, [vue.renderSlot(_ctx.$slots, "default")])) : vue.createCommentVNode("", true)];
1324
+ }),
1325
+ _: 3
1326
+ }, 8, ["to", "href", "class"]);
1299
1327
  }script$2.render = render$2;var es_array_includes = {};var objectDefineProperties = {};var DESCRIPTORS = descriptors;
1300
1328
  var V8_PROTOTYPE_DEFINE_BUG = v8PrototypeDefineBug;
1301
1329
  var definePropertyModule$1 = objectDefineProperty;
@@ -1585,8 +1613,8 @@ addToUnscopables('includes');var script$1 = vue.defineComponent({
1585
1613
  return vue.openBlock(), vue.createBlock(vue.resolveDynamicComponent(_ctx.tagName), {
1586
1614
  "class": vue.normalizeClass(["fw-button font-bold cursor-pointer whitespace-nowrap rounded-full border-2 focus:outline-none ring-offset-2 focus:ring", [_ctx.textColorClass, _ctx.bgColorClass, _ctx.sizeClass, _ctx.borderClass]]),
1587
1615
  type: _ctx.tagName === 'button' ? _ctx.tagName : null,
1588
- to: _ctx.to,
1589
- href: _ctx.href,
1616
+ to: _ctx.to ? _ctx.to : null,
1617
+ href: _ctx.href ? _ctx.href : null,
1590
1618
  onClick: _ctx.onClick,
1591
1619
  onFocusin: _ctx.onFocusin,
1592
1620
  onFocusout: _ctx.onFocusout,
@@ -1303,8 +1303,8 @@ function render(_ctx, _cache, $props, $setup, $data, $options) {
1303
1303
  return openBlock(), createBlock(resolveDynamicComponent(_ctx.tagName), {
1304
1304
  "class": normalizeClass(["fw-button font-bold cursor-pointer whitespace-nowrap rounded-full border-2 focus:outline-none ring-offset-2 focus:ring", [_ctx.textColorClass, _ctx.bgColorClass, _ctx.sizeClass, _ctx.borderClass]]),
1305
1305
  type: _ctx.tagName === 'button' ? _ctx.tagName : null,
1306
- to: _ctx.to,
1307
- href: _ctx.href,
1306
+ to: _ctx.to ? _ctx.to : null,
1307
+ href: _ctx.href ? _ctx.href : null,
1308
1308
  onClick: _ctx.onClick,
1309
1309
  onFocusin: _ctx.onFocusin,
1310
1310
  onFocusout: _ctx.onFocusout,
package/esm/fw-button.js CHANGED
@@ -1,2 +1,2 @@
1
- export { u as FwButton } from './fw-button-deb8cb87.js';
1
+ export { u as FwButton } from './fw-button-6d5a9671.js';
2
2
  import 'vue';
package/esm/fw-card.js CHANGED
@@ -1,4 +1,4 @@
1
- import { defineComponent, openBlock, createElementBlock, toDisplayString, createCommentVNode, renderSlot } from 'vue';
1
+ import { defineComponent, computed, openBlock, createBlock, resolveDynamicComponent, normalizeClass, withCtx, createElementBlock, toDisplayString, createCommentVNode, renderSlot } from 'vue';
2
2
 
3
3
  var script = defineComponent({
4
4
  name: 'FwCard',
@@ -15,30 +15,58 @@ var script = defineComponent({
15
15
  */
16
16
  prefixTitle: {
17
17
  type: String
18
- }
18
+ },
19
+
20
+ /**
21
+ * A `router-link` path or object
22
+ */
23
+ to: {
24
+ type: [String, Object]
25
+ },
26
+
27
+ /**
28
+ * A URL to link to using a native anchor element
29
+ */
30
+ href: String
31
+ },
32
+ setup: function setup(props) {
33
+ var componentName = computed(function () {
34
+ if (props.to) return 'router-link';
35
+ if (props.href) return 'a';
36
+ return 'div';
37
+ });
38
+ return {
39
+ componentName: componentName
40
+ };
19
41
  }
20
42
  });
21
43
 
22
44
  var _hoisted_1 = {
23
- "class": "fw-card shadow rounded-lg"
24
- };
25
- var _hoisted_2 = {
26
45
  key: 0,
27
46
  "class": "fw-card--header text-lg px-8 py-4 font-bold bg-grey-lightest rounded-t-lg border-opacity-0"
28
47
  };
29
- var _hoisted_3 = {
48
+ var _hoisted_2 = {
30
49
  key: 0,
31
50
  "class": "fw-card--prefix-title text-primary"
32
51
  };
33
- var _hoisted_4 = {
52
+ var _hoisted_3 = {
34
53
  key: 1
35
54
  };
36
- var _hoisted_5 = {
55
+ var _hoisted_4 = {
37
56
  key: 1,
38
57
  "class": "p-8"
39
58
  };
40
59
  function render(_ctx, _cache, $props, $setup, $data, $options) {
41
- return openBlock(), createElementBlock("div", _hoisted_1, [_ctx.title || _ctx.prefixTitle ? (openBlock(), createElementBlock("h4", _hoisted_2, [_ctx.prefixTitle ? (openBlock(), createElementBlock("span", _hoisted_3, toDisplayString(_ctx.prefixTitle), 1)) : createCommentVNode("", true), _ctx.title ? (openBlock(), createElementBlock("span", _hoisted_4, toDisplayString(_ctx.title), 1)) : createCommentVNode("", true)])) : createCommentVNode("", true), _ctx.$slots["default"] ? (openBlock(), createElementBlock("div", _hoisted_5, [renderSlot(_ctx.$slots, "default")])) : createCommentVNode("", true)]);
60
+ return openBlock(), createBlock(resolveDynamicComponent(_ctx.componentName), {
61
+ to: _ctx.to ? _ctx.to : null,
62
+ href: _ctx.href ? _ctx.href : null,
63
+ "class": normalizeClass(["fw-card shadow-card rounded-lg", _ctx.to || _ctx.href ? 'block focus:outline-none ring-offset-3 focus:ring focus:ring-primary transform-none transition-transform hover:-translate-y-1' : ''])
64
+ }, {
65
+ "default": withCtx(function () {
66
+ return [_ctx.title || _ctx.prefixTitle ? (openBlock(), createElementBlock("h4", _hoisted_1, [_ctx.prefixTitle ? (openBlock(), createElementBlock("span", _hoisted_2, toDisplayString(_ctx.prefixTitle), 1)) : createCommentVNode("", true), _ctx.title ? (openBlock(), createElementBlock("span", _hoisted_3, toDisplayString(_ctx.title), 1)) : createCommentVNode("", true)])) : createCommentVNode("", true), _ctx.$slots["default"] ? (openBlock(), createElementBlock("div", _hoisted_4, [renderSlot(_ctx.$slots, "default")])) : createCommentVNode("", true)];
67
+ }),
68
+ _: 3
69
+ }, 8, ["to", "href", "class"]);
42
70
  }
43
71
 
44
72
  script.render = render;
@@ -1,5 +1,5 @@
1
1
  import { defineComponent, ref, createElementVNode, resolveComponent, openBlock, createElementBlock, renderSlot, createCommentVNode, Fragment, renderList, createBlock, withCtx, createTextVNode, toDisplayString, createVNode, Transition } from 'vue';
2
- import { u as script$1, v as styleInject } from './fw-button-deb8cb87.js';
2
+ import { u as script$1, v as styleInject } from './fw-button-6d5a9671.js';
3
3
 
4
4
  var script = defineComponent({
5
5
  name: 'FwNavigationMenu',
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 './fw-button-deb8cb87.js';
2
- export { u as FwButton } from './fw-button-deb8cb87.js';
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 './fw-button-6d5a9671.js';
2
+ export { u as FwButton } from './fw-button-6d5a9671.js';
3
3
  import { FwCard as script } from './fw-card.js';
4
4
  export { FwCard } from './fw-card.js';
5
5
  import './fw-button.js';
@@ -1,4 +1,4 @@
1
- import { defineComponent, openBlock, createElementBlock, toDisplayString, createCommentVNode, renderSlot, ref, computed, createBlock, resolveDynamicComponent, normalizeClass, withCtx, createElementVNode, resolveComponent, Fragment, renderList, createTextVNode, createVNode, Transition } from 'vue';
1
+ import { defineComponent, computed, openBlock, createBlock, resolveDynamicComponent, normalizeClass, withCtx, createElementBlock, toDisplayString, createCommentVNode, renderSlot, ref, createElementVNode, resolveComponent, Fragment, renderList, createTextVNode, createVNode, Transition } from 'vue';
2
2
 
3
3
  function _arrayWithHoles(arr) {
4
4
  if (Array.isArray(arr)) return arr;
@@ -1474,30 +1474,58 @@ var script$2 = defineComponent({
1474
1474
  */
1475
1475
  prefixTitle: {
1476
1476
  type: String
1477
- }
1477
+ },
1478
+
1479
+ /**
1480
+ * A `router-link` path or object
1481
+ */
1482
+ to: {
1483
+ type: [String, Object]
1484
+ },
1485
+
1486
+ /**
1487
+ * A URL to link to using a native anchor element
1488
+ */
1489
+ href: String
1490
+ },
1491
+ setup: function setup(props) {
1492
+ var componentName = computed(function () {
1493
+ if (props.to) return 'router-link';
1494
+ if (props.href) return 'a';
1495
+ return 'div';
1496
+ });
1497
+ return {
1498
+ componentName: componentName
1499
+ };
1478
1500
  }
1479
1501
  });
1480
1502
 
1481
1503
  var _hoisted_1$1 = {
1482
- "class": "fw-card shadow rounded-lg"
1483
- };
1484
- var _hoisted_2$1 = {
1485
1504
  key: 0,
1486
1505
  "class": "fw-card--header text-lg px-8 py-4 font-bold bg-grey-lightest rounded-t-lg border-opacity-0"
1487
1506
  };
1488
- var _hoisted_3$1 = {
1507
+ var _hoisted_2$1 = {
1489
1508
  key: 0,
1490
1509
  "class": "fw-card--prefix-title text-primary"
1491
1510
  };
1492
- var _hoisted_4$1 = {
1511
+ var _hoisted_3$1 = {
1493
1512
  key: 1
1494
1513
  };
1495
- var _hoisted_5$1 = {
1514
+ var _hoisted_4$1 = {
1496
1515
  key: 1,
1497
1516
  "class": "p-8"
1498
1517
  };
1499
1518
  function render$2(_ctx, _cache, $props, $setup, $data, $options) {
1500
- return openBlock(), createElementBlock("div", _hoisted_1$1, [_ctx.title || _ctx.prefixTitle ? (openBlock(), createElementBlock("h4", _hoisted_2$1, [_ctx.prefixTitle ? (openBlock(), createElementBlock("span", _hoisted_3$1, toDisplayString(_ctx.prefixTitle), 1)) : createCommentVNode("", true), _ctx.title ? (openBlock(), createElementBlock("span", _hoisted_4$1, toDisplayString(_ctx.title), 1)) : createCommentVNode("", true)])) : createCommentVNode("", true), _ctx.$slots["default"] ? (openBlock(), createElementBlock("div", _hoisted_5$1, [renderSlot(_ctx.$slots, "default")])) : createCommentVNode("", true)]);
1519
+ return openBlock(), createBlock(resolveDynamicComponent(_ctx.componentName), {
1520
+ to: _ctx.to ? _ctx.to : null,
1521
+ href: _ctx.href ? _ctx.href : null,
1522
+ "class": normalizeClass(["fw-card shadow-card rounded-lg", _ctx.to || _ctx.href ? 'block focus:outline-none ring-offset-3 focus:ring focus:ring-primary transform-none transition-transform hover:-translate-y-1' : ''])
1523
+ }, {
1524
+ "default": withCtx(function () {
1525
+ return [_ctx.title || _ctx.prefixTitle ? (openBlock(), createElementBlock("h4", _hoisted_1$1, [_ctx.prefixTitle ? (openBlock(), createElementBlock("span", _hoisted_2$1, toDisplayString(_ctx.prefixTitle), 1)) : createCommentVNode("", true), _ctx.title ? (openBlock(), createElementBlock("span", _hoisted_3$1, toDisplayString(_ctx.title), 1)) : createCommentVNode("", true)])) : createCommentVNode("", true), _ctx.$slots["default"] ? (openBlock(), createElementBlock("div", _hoisted_4$1, [renderSlot(_ctx.$slots, "default")])) : createCommentVNode("", true)];
1526
+ }),
1527
+ _: 3
1528
+ }, 8, ["to", "href", "class"]);
1501
1529
  }
1502
1530
 
1503
1531
  script$2.render = render$2;
@@ -1807,8 +1835,8 @@ function render$1(_ctx, _cache, $props, $setup, $data, $options) {
1807
1835
  return openBlock(), createBlock(resolveDynamicComponent(_ctx.tagName), {
1808
1836
  "class": normalizeClass(["fw-button font-bold cursor-pointer whitespace-nowrap rounded-full border-2 focus:outline-none ring-offset-2 focus:ring", [_ctx.textColorClass, _ctx.bgColorClass, _ctx.sizeClass, _ctx.borderClass]]),
1809
1837
  type: _ctx.tagName === 'button' ? _ctx.tagName : null,
1810
- to: _ctx.to,
1811
- href: _ctx.href,
1838
+ to: _ctx.to ? _ctx.to : null,
1839
+ href: _ctx.href ? _ctx.href : null,
1812
1840
  onClick: _ctx.onClick,
1813
1841
  onFocusin: _ctx.onFocusin,
1814
1842
  onFocusout: _ctx.onFocusout,
package/icons/index.ts ADDED
@@ -0,0 +1,11 @@
1
+ import ViewSvg from './view.svg';
2
+ import GenerateSvg from './generate.svg';
3
+ import ManageSvg from './manage.svg';
4
+ import NotFoundSvg from './not-found.svg';
5
+
6
+ export {
7
+ ViewSvg,
8
+ GenerateSvg,
9
+ ManageSvg,
10
+ NotFoundSvg
11
+ };
package/index.d.ts CHANGED
@@ -14,7 +14,19 @@ declare const _default$2: vue.DefineComponent<{
14
14
  prefixTitle: {
15
15
  type: StringConstructor;
16
16
  };
17
- }, unknown, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
17
+ /**
18
+ * A `router-link` path or object
19
+ */
20
+ to: {
21
+ type: (StringConstructor | ObjectConstructor)[];
22
+ };
23
+ /**
24
+ * A URL to link to using a native anchor element
25
+ */
26
+ href: StringConstructor;
27
+ }, {
28
+ componentName: vue.ComputedRef<"router-link" | "a" | "div">;
29
+ }, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, Readonly<vue.ExtractPropTypes<{
18
30
  /**
19
31
  * The header title of the card
20
32
  */
@@ -27,6 +39,16 @@ declare const _default$2: vue.DefineComponent<{
27
39
  prefixTitle: {
28
40
  type: StringConstructor;
29
41
  };
42
+ /**
43
+ * A `router-link` path or object
44
+ */
45
+ to: {
46
+ type: (StringConstructor | ObjectConstructor)[];
47
+ };
48
+ /**
49
+ * A URL to link to using a native anchor element
50
+ */
51
+ href: StringConstructor;
30
52
  }>>, {}>;
31
53
 
32
54
  declare type ButtonVariantName = 'primary' | 'secondary' | 'tertiary' | 'error' | 'success' | 'text';
@@ -171,4 +193,6 @@ declare const _default: vue.DefineComponent<{
171
193
 
172
194
  declare const install: Exclude<Plugin['install'], undefined>;
173
195
 
196
+ declare module '@frollo/frollo-web-ui/icons' { }
197
+
174
198
  export { ButtonDefinition, ButtonDefinitionList, ButtonSize, ButtonSizes, ButtonVariantName, _default$1 as FwButton, FwButtonProps, _default$2 as FwCard, _default as FwNavigationMenu, NavMenuItem, install as default };
package/package.json CHANGED
@@ -1,8 +1,9 @@
1
1
  {
2
2
  "name": "@frollo/frollo-web-ui",
3
- "version": "0.0.6",
3
+ "version": "0.0.7",
4
4
  "description": "Frollo's UI library for components, utilities and configs",
5
5
  "exports": {
6
+ "./icons": "./icons/index.ts",
6
7
  "./tailwind.config.js": "./tailwind.config.js",
7
8
  ".": {
8
9
  "import": "./frollo-web-ui.esm.js",
@@ -38,6 +38,9 @@ module.exports = {
38
38
  extend: {
39
39
  minWidth: {
40
40
  'banner': '420px'
41
+ },
42
+ boxShadow: {
43
+ 'card': '0px 1px 7px rgba(0, 0, 0, 0.1714)'
41
44
  }
42
45
  },
43
46
  configViewer: {
@@ -11,7 +11,19 @@ declare const _default: import("vue").DefineComponent<{
11
11
  prefixTitle: {
12
12
  type: StringConstructor;
13
13
  };
14
- }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
14
+ /**
15
+ * A `router-link` path or object
16
+ */
17
+ to: {
18
+ type: (StringConstructor | ObjectConstructor)[];
19
+ };
20
+ /**
21
+ * A URL to link to using a native anchor element
22
+ */
23
+ href: StringConstructor;
24
+ }, {
25
+ componentName: import("vue").ComputedRef<"router-link" | "a" | "div">;
26
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
15
27
  /**
16
28
  * The header title of the card
17
29
  */
@@ -24,5 +36,15 @@ declare const _default: import("vue").DefineComponent<{
24
36
  prefixTitle: {
25
37
  type: StringConstructor;
26
38
  };
39
+ /**
40
+ * A `router-link` path or object
41
+ */
42
+ to: {
43
+ type: (StringConstructor | ObjectConstructor)[];
44
+ };
45
+ /**
46
+ * A URL to link to using a native anchor element
47
+ */
48
+ href: StringConstructor;
27
49
  }>>, {}>;
28
50
  export default _default;
@@ -0,0 +1,5 @@
1
+ import ViewSvg from './view.svg';
2
+ import GenerateSvg from './generate.svg';
3
+ import ManageSvg from './manage.svg';
4
+ import NotFoundSvg from './not-found.svg';
5
+ export { ViewSvg, GenerateSvg, ManageSvg, NotFoundSvg };
@@ -1,6 +1,7 @@
1
1
  import install from './index.esm';
2
2
  export default install;
3
3
  export * from './components';
4
+ declare module '@frollo/frollo-web-ui/icons' { }
4
5
  export * from './components/fw-card/fw-card.vue';
5
6
  export * from './components/fw-button/fw-button.vue';
6
7
  export * from './components/fw-navigation-menu/fw-navigation-menu.vue';