@frollo/frollo-web-ui 0.0.9 → 0.0.12
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 +86 -37
- package/esm/{fw-button-02fc3f47.js → fw-button-54999a6e.js} +25 -9
- package/esm/fw-button.js +1 -1
- package/esm/fw-form.js +2 -0
- package/esm/fw-input.js +59 -3161
- package/esm/fw-navigation-menu.js +1 -1
- package/esm/index.js +6 -2
- package/esm/vee-validate.esm-028c6424.js +3139 -0
- package/frollo-web-ui.esm.js +86 -36
- package/icons/eye-crossed.svg +3 -0
- package/icons/eye.svg +8 -0
- package/icons/index.ts +7 -1
- package/icons/lock.svg +3 -0
- package/index.d.ts +52 -3
- package/package.json +1 -1
- package/types/components/fw-button/fw-button.vue.d.ts +21 -2
- package/types/components/fw-form/index.d.ts +2 -0
- package/types/components/fw-input/fw-input.vue.d.ts +29 -0
- package/types/components/index.d.ts +1 -0
- package/types/icons/index.d.ts +4 -1
|
@@ -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 { s as script$1 } from './fw-button-
|
|
2
|
+
import { s as script$1 } from './fw-button-54999a6e.js';
|
|
3
3
|
import { u as styleInject } from './style-inject.es-da8f7768.js';
|
|
4
4
|
|
|
5
5
|
var script = defineComponent({
|
package/esm/index.js
CHANGED
|
@@ -4,10 +4,13 @@ export { FwCard } from './fw-card.js';
|
|
|
4
4
|
import './fw-button.js';
|
|
5
5
|
import { FwNavigationMenu as script$2 } from './fw-navigation-menu.js';
|
|
6
6
|
export { FwNavigationMenu } from './fw-navigation-menu.js';
|
|
7
|
+
import './fw-form.js';
|
|
7
8
|
import { FwInput as script$3 } from './fw-input.js';
|
|
8
9
|
export { FwInput } from './fw-input.js';
|
|
9
|
-
import { s as script$1 } from './fw-button-
|
|
10
|
-
export { s as FwButton } from './fw-button-
|
|
10
|
+
import { s as script$1 } from './fw-button-54999a6e.js';
|
|
11
|
+
export { s as FwButton } from './fw-button-54999a6e.js';
|
|
12
|
+
import { F as Form } from './vee-validate.esm-028c6424.js';
|
|
13
|
+
export { F as FwForm } from './vee-validate.esm-028c6424.js';
|
|
11
14
|
import 'vue';
|
|
12
15
|
|
|
13
16
|
function _arrayWithHoles(arr) {
|
|
@@ -476,6 +479,7 @@ var components = /*#__PURE__*/Object.freeze({
|
|
|
476
479
|
FwCard: script,
|
|
477
480
|
FwButton: script$1,
|
|
478
481
|
FwNavigationMenu: script$2,
|
|
482
|
+
FwForm: Form,
|
|
479
483
|
FwInput: script$3
|
|
480
484
|
});
|
|
481
485
|
|