@frollo/frollo-web-ui 0.0.10 → 0.0.13

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.
@@ -0,0 +1,29 @@
1
+ import { j as descriptors, x as functionName, f as functionUncurryThis, o as objectDefineProperty } from './style-inject.es-f0777dab.js';
2
+
3
+ var es_function_name = {};
4
+
5
+ var DESCRIPTORS = descriptors;
6
+ var FUNCTION_NAME_EXISTS = functionName.EXISTS;
7
+ var uncurryThis = functionUncurryThis;
8
+ var defineProperty = objectDefineProperty.f;
9
+
10
+ var FunctionPrototype = Function.prototype;
11
+ var functionToString = uncurryThis(FunctionPrototype.toString);
12
+ var nameRE = /function\b(?:\s|\/\*[\S\s]*?\*\/|\/\/[^\n\r]*[\n\r]+)*([^\s(/]*)/;
13
+ var regExpExec = uncurryThis(nameRE.exec);
14
+ var NAME = 'name';
15
+
16
+ // Function instances `.name` property
17
+ // https://tc39.es/ecma262/#sec-function-instances-name
18
+ if (DESCRIPTORS && !FUNCTION_NAME_EXISTS) {
19
+ defineProperty(FunctionPrototype, NAME, {
20
+ configurable: true,
21
+ get: function () {
22
+ try {
23
+ return regExpExec(nameRE, functionToString(this))[1];
24
+ } catch (error) {
25
+ return '';
26
+ }
27
+ }
28
+ });
29
+ }
@@ -1,5 +1,6 @@
1
- import { u as styleInject } from './style-inject.es-da8f7768.js';
1
+ import './es.array.includes-da6c7cd3.js';
2
2
  import { defineComponent, ref, computed, openBlock, createBlock, resolveDynamicComponent, normalizeClass, withCtx, renderSlot } from 'vue';
3
+ import { s as styleInject } from './style-inject.es-f0777dab.js';
3
4
 
4
5
  var script = defineComponent({
5
6
  name: 'FwButton',
@@ -36,7 +37,18 @@ var script = defineComponent({
36
37
  type: String,
37
38
  "default": 'primary',
38
39
  validator: function validator(value) {
39
- return ['primary', 'secondary', 'tertiary', 'error', 'success', 'text'].includes(value);
40
+ return ['primary', 'secondary', 'tertiary', 'error', 'success', 'link', 'text'].includes(value);
41
+ }
42
+ },
43
+
44
+ /**
45
+ * The type attribute of the button
46
+ */
47
+ buttonType: {
48
+ type: String,
49
+ "default": 'button',
50
+ validator: function validator(value) {
51
+ return ['button', 'submit', 'reset'].includes(value);
40
52
  }
41
53
  }
42
54
  },
@@ -45,32 +57,37 @@ var script = defineComponent({
45
57
  primary: {
46
58
  text: 'text-tertiary hover:text-primary active:text-primary',
47
59
  background: 'bg-primary hover:bg-tertiary active:bg-tertiary',
48
- border: 'border-primary focus:ring-primary'
60
+ border: 'border-primary focus-visible:ring-primary'
49
61
  },
50
62
  secondary: {
51
63
  text: 'text-primary hover:text-tertiary active:text-tertiary',
52
64
  background: 'bg-tertiary hover:bg-primary active:bg-primary',
53
- border: 'border-primary focus:ring-primary'
65
+ border: 'border-primary focus-visible:ring-primary'
54
66
  },
55
67
  tertiary: {
56
68
  text: 'text-tertiary hover:text-secondary active:text-secondary',
57
69
  background: 'bg-secondary hover:bg-tertiary active:bg-tertiary',
58
- border: 'border-tertiary focus:ring-tertiary'
70
+ border: 'border-secondary focus-visible:ring-secondary'
59
71
  },
60
72
  success: {
61
73
  text: 'text-white hover:text-success active:text-success',
62
74
  background: 'bg-success hover:bg-white active:bg-white',
63
- border: 'border-success focus:ring-success'
75
+ border: 'border-success focus-visible:ring-success'
64
76
  },
65
77
  error: {
66
78
  text: 'text-white hover:text-error active:text-error',
67
79
  background: 'bg-error hover:bg-white active:bg-white',
68
- border: 'border-error focus:ring-error'
80
+ border: 'border-error focus-visible:ring-error'
81
+ },
82
+ link: {
83
+ text: 'text-primary font-normal underline hover:no-underline active:no-underline focus-visible:no-underline',
84
+ background: '',
85
+ border: 'border-none focus-visible:ring-primary'
69
86
  },
70
87
  text: {
71
88
  text: 'text-body font-medium hover:text-white active:text-white',
72
89
  background: 'bg-white hover:bg-body active:bg-body',
73
- border: 'border-transparent focus:ring-body'
90
+ border: 'border-transparent focus-visible:ring-body'
74
91
  }
75
92
  });
76
93
  var sizes = ref({
@@ -154,8 +171,8 @@ var script = defineComponent({
154
171
 
155
172
  function render(_ctx, _cache, $props, $setup, $data, $options) {
156
173
  return openBlock(), createBlock(resolveDynamicComponent(_ctx.tagName), {
157
- "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]]),
158
- type: _ctx.tagName === 'button' ? _ctx.tagName : null,
174
+ "class": normalizeClass(["fw-button cursor-pointer whitespace-nowrap border-2 focus:outline-0 focus-visible:outline-0 focus:ring-none ring-offset-2 focus-visible:ring", [_ctx.textColorClass, _ctx.bgColorClass, _ctx.sizeClass, _ctx.borderClass, _ctx.variant === 'link' ? 'pl-0 pr-0 pt-0 pb-0 rounded-none font-normal' : 'font-bold rounded-full']]),
175
+ type: _ctx.tagName === 'button' ? _ctx.buttonType : null,
159
176
  to: _ctx.to ? _ctx.to : null,
160
177
  href: _ctx.href ? _ctx.href : null,
161
178
  tabindex: _ctx.to ? 0 : null,
package/esm/fw-button.js CHANGED
@@ -1,3 +1,4 @@
1
- export { s as FwButton } from './fw-button-02fc3f47.js';
2
- import './style-inject.es-da8f7768.js';
1
+ export { s as FwButton } from './fw-button-41138928.js';
2
+ import './es.array.includes-da6c7cd3.js';
3
+ import './style-inject.es-f0777dab.js';
3
4
  import 'vue';
@@ -0,0 +1,108 @@
1
+ import { defineComponent, resolveComponent, openBlock, createElementBlock, createVNode, withCtx, createElementVNode, mergeProps, createCommentVNode, Transition, toDisplayString } from 'vue';
2
+ import { a as Field } from './vee-validate.esm-028c6424.js';
3
+ import './es.function.name-b783cd46.js';
4
+ import { s as styleInject } from './style-inject.es-f0777dab.js';
5
+
6
+ var script = defineComponent({
7
+ name: 'FwCheckbox',
8
+ components: {
9
+ InputField: Field
10
+ },
11
+ props: {
12
+ /**
13
+ * The name of the input field. Must be unique per form.
14
+ */
15
+ name: {
16
+ type: String,
17
+ required: true
18
+ },
19
+
20
+ /**
21
+ * Label for the input. Also renders to an aria-label attribute
22
+ */
23
+ label: {
24
+ type: String
25
+ },
26
+
27
+ /**
28
+ * Validation rules. Accepts a string, object, function or schema.
29
+ */
30
+ rules: {
31
+ type: [String, Object, Function]
32
+ },
33
+
34
+ /**
35
+ * The hint text shown below the input
36
+ */
37
+ hint: {
38
+ type: String
39
+ }
40
+ }
41
+ });
42
+
43
+ var _hoisted_1 = {
44
+ "class": "fw-checkbox w-full"
45
+ };
46
+ var _hoisted_2 = {
47
+ "class": "flex flex-col"
48
+ };
49
+ var _hoisted_3 = ["for"];
50
+ var _hoisted_4 = ["value", "name"];
51
+ var _hoisted_5 = ["innerHTML"];
52
+ var _hoisted_6 = {
53
+ "class": "italic text-sm font-medium min-h-[21px]"
54
+ };
55
+ var _hoisted_7 = {
56
+ key: 0,
57
+ "class": "text-error"
58
+ };
59
+ var _hoisted_8 = {
60
+ key: 1
61
+ };
62
+ function render(_ctx, _cache, $props, $setup, $data, $options) {
63
+ var _component_InputField = resolveComponent("InputField");
64
+
65
+ return openBlock(), createElementBlock("div", _hoisted_1, [createVNode(_component_InputField, {
66
+ name: _ctx.name,
67
+ value: _ctx.name,
68
+ type: "checkbox",
69
+ rules: _ctx.rules
70
+ }, {
71
+ "default": withCtx(function (_ref) {
72
+ var field = _ref.field,
73
+ errors = _ref.errors,
74
+ errorMessage = _ref.errorMessage,
75
+ meta = _ref.meta;
76
+ return [createElementVNode("div", _hoisted_2, [_ctx.label ? (openBlock(), createElementBlock("label", {
77
+ key: 0,
78
+ "for": _ctx.name,
79
+ "class": "inline-flex items-center mb-3"
80
+ }, [createElementVNode("input", mergeProps(field, {
81
+ value: _ctx.name,
82
+ name: _ctx.name,
83
+ type: "checkbox",
84
+ "class": "text-primary w-6 h-6 cursor-pointer bg-white border-grey-light border rounded"
85
+ }), null, 16, _hoisted_4), createElementVNode("span", {
86
+ "class": "ml-2",
87
+ innerHTML: _ctx.label
88
+ }, null, 8, _hoisted_5)], 8, _hoisted_3)) : createCommentVNode("", true), createElementVNode("div", _hoisted_6, [createVNode(Transition, {
89
+ name: "fwFadeIn",
90
+ mode: "out-in"
91
+ }, {
92
+ "default": withCtx(function () {
93
+ return [(errorMessage || errors[0]) && meta.touched ? (openBlock(), createElementBlock("span", _hoisted_7, toDisplayString(errorMessage || errors[0]), 1)) : _ctx.hint ? (openBlock(), createElementBlock("span", _hoisted_8, toDisplayString(_ctx.hint), 1)) : createCommentVNode("", true)];
94
+ }),
95
+ _: 2
96
+ }, 1024)])])];
97
+ }),
98
+ _: 1
99
+ }, 8, ["name", "value", "rules"])]);
100
+ }
101
+
102
+ var css_248z = ".fwFadeIn-enter-active{-webkit-animation:fwFadeIn .35s;animation:fwFadeIn .35s;-webkit-transition:opacity .35s ease-in;-o-transition:opacity .35s ease-in;transition:opacity .35s ease-in}.fwFadeIn-leave-active{animation:fwFadeIn .35s reverse;-webkit-transition:opacity .35s ease-out;-o-transition:opacity .35s ease-out;transition:opacity .35s ease-out}@-webkit-keyframes fwFadeIn{0%{opacity:0}to{opacity:1}}@keyframes fwFadeIn{0%{opacity:0}to{opacity:1}}.fw-checkbox input{-webkit-print-color-adjust:exact;-ms-flex-negative:0;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-origin:border-box;color-adjust:exact;display:inline-block;flex-shrink:0;-webkit-transition:background .2s ease-in;-o-transition:background .2s ease-in;transition:background .2s ease-in;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle}.fw-checkbox input:checked{background-color:currentColor;background-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='3 3 10 10' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.707 7.293a1 1 0 0 0-1.414 1.414l2 2a1 1 0 0 0 1.414 0l4-4a1 1 0 0 0-1.414-1.414L7 8.586 5.707 7.293z'/%3E%3C/svg%3E\");background-position:50%;background-repeat:no-repeat;background-size:100% 100%;border-color:transparent}";
103
+ var stylesheet = ".fwFadeIn-enter-active{-webkit-animation:fwFadeIn .35s;animation:fwFadeIn .35s;-webkit-transition:opacity .35s ease-in;-o-transition:opacity .35s ease-in;transition:opacity .35s ease-in}.fwFadeIn-leave-active{animation:fwFadeIn .35s reverse;-webkit-transition:opacity .35s ease-out;-o-transition:opacity .35s ease-out;transition:opacity .35s ease-out}@-webkit-keyframes fwFadeIn{0%{opacity:0}to{opacity:1}}@keyframes fwFadeIn{0%{opacity:0}to{opacity:1}}.fw-checkbox input{-webkit-print-color-adjust:exact;-ms-flex-negative:0;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-origin:border-box;color-adjust:exact;display:inline-block;flex-shrink:0;-webkit-transition:background .2s ease-in;-o-transition:background .2s ease-in;transition:background .2s ease-in;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle}.fw-checkbox input:checked{background-color:currentColor;background-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg viewBox='3 3 10 10' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.707 7.293a1 1 0 0 0-1.414 1.414l2 2a1 1 0 0 0 1.414 0l4-4a1 1 0 0 0-1.414-1.414L7 8.586 5.707 7.293z'/%3E%3C/svg%3E\");background-position:50%;background-repeat:no-repeat;background-size:100% 100%;border-color:transparent}";
104
+ styleInject(css_248z);
105
+
106
+ script.render = render;
107
+
108
+ export { script as FwCheckbox };
package/esm/fw-input.js CHANGED
@@ -1,6 +1,8 @@
1
- import { o as descriptors, v as functionName, f as functionUncurryThis, x as objectDefineProperty, u as styleInject } from './style-inject.es-da8f7768.js';
2
- import { defineComponent, computed, createElementVNode, resolveComponent, openBlock, createElementBlock, createVNode, withCtx, toDisplayString, createCommentVNode, renderSlot, mergeProps, Transition } from 'vue';
1
+ import './es.array.includes-da6c7cd3.js';
2
+ import { defineComponent, computed, createElementVNode, resolveComponent, openBlock, createElementBlock, createVNode, withCtx, toDisplayString, createCommentVNode, renderSlot, mergeProps, Transition, normalizeClass } from 'vue';
3
3
  import { a as Field } from './vee-validate.esm-028c6424.js';
4
+ import './es.function.name-b783cd46.js';
5
+ import { s as styleInject } from './style-inject.es-f0777dab.js';
4
6
 
5
7
  var script = defineComponent({
6
8
  name: 'FwInput',
@@ -56,6 +58,21 @@ var script = defineComponent({
56
58
  */
57
59
  rules: {
58
60
  type: [String, Object, Function]
61
+ },
62
+
63
+ /**
64
+ * Converts the input into a readonly disabled field
65
+ */
66
+ readonly: {
67
+ type: Boolean,
68
+ "default": false
69
+ },
70
+
71
+ /**
72
+ * The hint text shown below the input
73
+ */
74
+ hint: {
75
+ type: String
59
76
  }
60
77
  },
61
78
  setup: function setup(props, ctx) {
@@ -73,55 +90,29 @@ var script = defineComponent({
73
90
  }
74
91
  });
75
92
 
76
- var es_function_name = {};
77
-
78
- var DESCRIPTORS = descriptors;
79
- var FUNCTION_NAME_EXISTS = functionName.EXISTS;
80
- var uncurryThis = functionUncurryThis;
81
- var defineProperty = objectDefineProperty.f;
82
-
83
- var FunctionPrototype = Function.prototype;
84
- var functionToString = uncurryThis(FunctionPrototype.toString);
85
- var nameRE = /function\b(?:\s|\/\*[\S\s]*?\*\/|\/\/[^\n\r]*[\n\r]+)*([^\s(/]*)/;
86
- var regExpExec = uncurryThis(nameRE.exec);
87
- var NAME = 'name';
88
-
89
- // Function instances `.name` property
90
- // https://tc39.es/ecma262/#sec-function-instances-name
91
- if (DESCRIPTORS && !FUNCTION_NAME_EXISTS) {
92
- defineProperty(FunctionPrototype, NAME, {
93
- configurable: true,
94
- get: function () {
95
- try {
96
- return regExpExec(nameRE, functionToString(this))[1];
97
- } catch (error) {
98
- return '';
99
- }
100
- }
101
- });
102
- }
103
-
104
93
  var _hoisted_1 = {
105
94
  "class": "fw-input w-full"
106
95
  };
107
96
  var _hoisted_2 = {
108
97
  "class": "flex flex-col"
109
98
  };
110
- var _hoisted_3 = ["for"];
111
- var _hoisted_4 = {
112
- "class": "relative"
99
+ var _hoisted_3 = {
100
+ "class": "flex flex-row justify-between"
113
101
  };
102
+ var _hoisted_4 = ["for"];
114
103
  var _hoisted_5 = {
115
- key: 0,
116
- "class": "flex text-grey-base absolute w-9 h-full inset-y-0 left-0 items-center pl-3 pointer-events-none"
104
+ key: 1
105
+ };
106
+ var _hoisted_6 = {
107
+ "class": "relative"
117
108
  };
118
- var _hoisted_6 = ["placeholder", "type"];
119
109
  var _hoisted_7 = {
120
110
  key: 0,
121
- "class": "flex text-error absolute w-9 h-full inset-y-0 right-0 items-center pr-3 pointer-events-none"
111
+ "class": "flex text-black absolute w-9 h-full inset-y-0 left-0 items-center pl-3 pointer-events-none"
122
112
  };
113
+ var _hoisted_8 = ["placeholder", "type", "readonly", "disabled"];
123
114
 
124
- var _hoisted_8 = /*#__PURE__*/createElementVNode("svg", {
115
+ var _hoisted_9 = /*#__PURE__*/createElementVNode("svg", {
125
116
  fill: "currentColor",
126
117
  "aria-hidden": "true",
127
118
  focusable: "false",
@@ -132,12 +123,20 @@ var _hoisted_8 = /*#__PURE__*/createElementVNode("svg", {
132
123
  d: "M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256s256-114.6 256-256S397.4 0 256 0zM232 152C232 138.8\n 242.8 128 256 128s24 10.75 24 24v128c0 13.25-10.75 24-24 24S232 293.3 232 280V152zM256 400c-17.36\n 0-31.44-14.08-31.44-31.44c0-17.36 14.07-31.44 31.44-31.44s31.44 14.08 31.44 31.44C287.4 385.9 273.4\n 400 256 400z"
133
124
  })], -1);
134
125
 
135
- var _hoisted_9 = [_hoisted_8];
136
- var _hoisted_10 = {
137
- "class": "text-error italic text-right text-sm font-medium mt-2 min-h-[21px]"
138
- };
126
+ var _hoisted_10 = [_hoisted_9];
139
127
  var _hoisted_11 = {
140
- key: 0
128
+ key: 1,
129
+ "class": "flex text-black absolute w-10 h-full inset-y-0 right-0 items-center pr-3"
130
+ };
131
+ var _hoisted_12 = {
132
+ "class": "italic text-right text-sm font-medium mt-2 min-h-[21px]"
133
+ };
134
+ var _hoisted_13 = {
135
+ key: 0,
136
+ "class": "text-error"
137
+ };
138
+ var _hoisted_14 = {
139
+ key: 1
141
140
  };
142
141
  function render(_ctx, _cache, $props, $setup, $data, $options) {
143
142
  var _component_InputField = resolveComponent("InputField");
@@ -155,28 +154,35 @@ function render(_ctx, _cache, $props, $setup, $data, $options) {
155
154
  errors = _ref.errors,
156
155
  errorMessage = _ref.errorMessage,
157
156
  meta = _ref.meta;
158
- return [createElementVNode("div", _hoisted_2, [_ctx.label ? (openBlock(), createElementBlock("label", {
157
+ return [createElementVNode("div", _hoisted_2, [createElementVNode("div", _hoisted_3, [_ctx.label ? (openBlock(), createElementBlock("label", {
159
158
  key: 0,
160
159
  "for": _ctx.name,
161
160
  "class": "block mb-2"
162
- }, toDisplayString(_ctx.label), 9, _hoisted_3)) : createCommentVNode("", true), createElementVNode("div", _hoisted_4, [_ctx.$slots.prefixIcon ? (openBlock(), createElementBlock("div", _hoisted_5, [renderSlot(_ctx.$slots, "prefixIcon")])) : createCommentVNode("", true), createElementVNode("input", mergeProps(field, {
161
+ }, toDisplayString(_ctx.label), 9, _hoisted_4)) : createCommentVNode("", true), _ctx.$slots.action ? (openBlock(), createElementBlock("div", _hoisted_5, [renderSlot(_ctx.$slots, "action")])) : createCommentVNode("", true)]), createElementVNode("div", _hoisted_6, [_ctx.$slots.prefix ? (openBlock(), createElementBlock("div", _hoisted_7, [renderSlot(_ctx.$slots, "prefix")])) : createCommentVNode("", true), createElementVNode("input", mergeProps(field, {
163
162
  placeholder: _ctx.placeholder,
164
163
  type: _ctx.type,
164
+ readonly: _ctx.readonly,
165
+ disabled: _ctx.readonly,
165
166
  "class": ["border-2 border-grey-lightest rounded-lg focus:outline-none focus:ring-2 focus:ring-primary block w-full p-2.5", {
166
- 'pl-10': !!_ctx.$slots.prefixIcon
167
+ 'pl-10': !!_ctx.$slots.prefix,
168
+ 'pr-20': !!_ctx.$slots.suffix
167
169
  }]
168
- }), null, 16, _hoisted_6), createVNode(Transition, {
169
- name: "errorFadeIn"
170
+ }), null, 16, _hoisted_8), createVNode(Transition, {
171
+ name: "fwFadeIn"
170
172
  }, {
171
173
  "default": withCtx(function () {
172
- return [(errorMessage || errors[0]) && meta.touched ? (openBlock(), createElementBlock("div", _hoisted_7, _hoisted_9)) : createCommentVNode("", true)];
174
+ return [(errorMessage || errors[0]) && meta.touched ? (openBlock(), createElementBlock("div", {
175
+ key: 0,
176
+ "class": normalizeClass(["flex text-error absolute w-9 h-full inset-y-0 right-0 items-center pr-3 pointer-events-none", _ctx.$slots.suffix ? 'mr-8' : ''])
177
+ }, _hoisted_10, 2)) : createCommentVNode("", true)];
173
178
  }),
174
179
  _: 2
175
- }, 1024)]), createElementVNode("div", _hoisted_10, [createVNode(Transition, {
176
- name: "errorFadeIn"
180
+ }, 1024), _ctx.$slots.suffix ? (openBlock(), createElementBlock("div", _hoisted_11, [renderSlot(_ctx.$slots, "suffix")])) : createCommentVNode("", true)]), createElementVNode("div", _hoisted_12, [createVNode(Transition, {
181
+ name: "fwFadeIn",
182
+ mode: "out-in"
177
183
  }, {
178
184
  "default": withCtx(function () {
179
- return [(errorMessage || errors[0]) && meta.touched ? (openBlock(), createElementBlock("span", _hoisted_11, toDisplayString(errorMessage || errors[0]), 1)) : createCommentVNode("", true)];
185
+ return [(errorMessage || errors[0]) && meta.touched ? (openBlock(), createElementBlock("span", _hoisted_13, toDisplayString(errorMessage || errors[0]), 1)) : _ctx.hint ? (openBlock(), createElementBlock("span", _hoisted_14, toDisplayString(_ctx.hint), 1)) : createCommentVNode("", true)];
180
186
  }),
181
187
  _: 2
182
188
  }, 1024)])])];
@@ -185,8 +191,8 @@ function render(_ctx, _cache, $props, $setup, $data, $options) {
185
191
  }, 8, ["modelValue", "name", "rules"])]);
186
192
  }
187
193
 
188
- var css_248z = ".errorFadeIn-enter-active{-webkit-animation:errorFadeIn .35s;animation:errorFadeIn .35s;-webkit-transition:opacity .35s ease-in;-o-transition:opacity .35s ease-in;transition:opacity .35s ease-in}.errorFadeIn-leave-active{animation:errorFadeIn .35s reverse;-webkit-transition:opacity .35s ease-out;-o-transition:opacity .35s ease-out;transition:opacity .35s ease-out}@-webkit-keyframes errorFadeIn{0%{opacity:0}to{opacity:1}}@keyframes errorFadeIn{0%{opacity:0}to{opacity:1}}";
189
- var stylesheet = ".errorFadeIn-enter-active{-webkit-animation:errorFadeIn .35s;animation:errorFadeIn .35s;-webkit-transition:opacity .35s ease-in;-o-transition:opacity .35s ease-in;transition:opacity .35s ease-in}.errorFadeIn-leave-active{animation:errorFadeIn .35s reverse;-webkit-transition:opacity .35s ease-out;-o-transition:opacity .35s ease-out;transition:opacity .35s ease-out}@-webkit-keyframes errorFadeIn{0%{opacity:0}to{opacity:1}}@keyframes errorFadeIn{0%{opacity:0}to{opacity:1}}";
194
+ var css_248z = ".fwFadeIn-enter-active{-webkit-animation:fwFadeIn .35s;animation:fwFadeIn .35s;-webkit-transition:opacity .35s ease-in;-o-transition:opacity .35s ease-in;transition:opacity .35s ease-in}.fwFadeIn-leave-active{animation:fwFadeIn .35s reverse;-webkit-transition:opacity .35s ease-out;-o-transition:opacity .35s ease-out;transition:opacity .35s ease-out}@-webkit-keyframes fwFadeIn{0%{opacity:0}to{opacity:1}}@keyframes fwFadeIn{0%{opacity:0}to{opacity:1}}";
195
+ var stylesheet = ".fwFadeIn-enter-active{-webkit-animation:fwFadeIn .35s;animation:fwFadeIn .35s;-webkit-transition:opacity .35s ease-in;-o-transition:opacity .35s ease-in;transition:opacity .35s ease-in}.fwFadeIn-leave-active{animation:fwFadeIn .35s reverse;-webkit-transition:opacity .35s ease-out;-o-transition:opacity .35s ease-out;transition:opacity .35s ease-out}@-webkit-keyframes fwFadeIn{0%{opacity:0}to{opacity:1}}@keyframes fwFadeIn{0%{opacity:0}to{opacity:1}}";
190
196
  styleInject(css_248z);
191
197
 
192
198
  script.render = render;
@@ -1,6 +1,7 @@
1
1
  import { defineComponent, ref, createElementVNode, resolveComponent, openBlock, createElementBlock, renderSlot, createCommentVNode, Fragment, renderList, createBlock, withCtx, createTextVNode, toDisplayString, createVNode, Transition } from 'vue';
2
- import { s as script$1 } from './fw-button-02fc3f47.js';
3
- import { u as styleInject } from './style-inject.es-da8f7768.js';
2
+ import { s as script$1 } from './fw-button-41138928.js';
3
+ import { s as styleInject } from './style-inject.es-f0777dab.js';
4
+ import './es.array.includes-da6c7cd3.js';
4
5
 
5
6
  var script = defineComponent({
6
7
  name: 'FwNavigationMenu',
package/esm/index.js CHANGED
@@ -1,4 +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 } from './style-inject.es-da8f7768.js';
1
+ import { f as functionUncurryThis, a as aCallable$1, b as functionBindNative, w as wellKnownSymbol$3, g as global$3, i as isCallable$2, c as fails$2, d as getBuiltIn$1, e as isObject$1, t as toObject$1, h as documentCreateElement$1, j as descriptors } from './style-inject.es-f0777dab.js';
2
+ import { c as classofRaw$1, i as inspectSource$1, a as indexedObject, l as lengthOfArrayLike$1, _ as _export, r as redefine$1, b as createNonEnumerableProperty$1, o as objectKeys$1, t as toIndexedObject$1, d as objectPropertyIsEnumerable } from './es.array.includes-da6c7cd3.js';
2
3
  import { FwCard as script } from './fw-card.js';
3
4
  export { FwCard } from './fw-card.js';
4
5
  import './fw-button.js';
@@ -7,11 +8,14 @@ export { FwNavigationMenu } from './fw-navigation-menu.js';
7
8
  import './fw-form.js';
8
9
  import { FwInput as script$3 } from './fw-input.js';
9
10
  export { FwInput } from './fw-input.js';
10
- import { s as script$1 } from './fw-button-02fc3f47.js';
11
- export { s as FwButton } from './fw-button-02fc3f47.js';
11
+ import { FwCheckbox as script$4 } from './fw-checkbox.js';
12
+ export { FwCheckbox } from './fw-checkbox.js';
13
+ import { s as script$1 } from './fw-button-41138928.js';
14
+ export { s as FwButton } from './fw-button-41138928.js';
12
15
  import { F as Form } from './vee-validate.esm-028c6424.js';
13
16
  export { F as FwForm } from './vee-validate.esm-028c6424.js';
14
17
  import 'vue';
18
+ import './es.function.name-b783cd46.js';
15
19
 
16
20
  function _arrayWithHoles(arr) {
17
21
  if (Array.isArray(arr)) return arr;
@@ -480,7 +484,8 @@ var components = /*#__PURE__*/Object.freeze({
480
484
  FwButton: script$1,
481
485
  FwNavigationMenu: script$2,
482
486
  FwForm: Form,
483
- FwInput: script$3
487
+ FwInput: script$3,
488
+ FwCheckbox: script$4
484
489
  });
485
490
 
486
491
  var install = function install(app) {