@frollo/frollo-web-ui 0.0.12 → 0.0.15
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 +147 -53
- package/esm/{style-inject.es-da8f7768.js → es.array.includes-a402ff0b.js} +59 -584
- package/esm/es.function.name-caf4301b.js +29 -0
- package/esm/{fw-button-54999a6e.js → fw-button-3d8a5227.js} +9 -8
- package/esm/fw-button.js +3 -2
- package/esm/fw-checkbox.js +108 -0
- package/esm/fw-input.js +3 -29
- package/esm/fw-navigation-menu.js +3 -2
- package/esm/index.js +9 -4
- package/esm/style-inject.es-4735be61.js +528 -0
- package/frollo-web-ui.esm.js +162 -59
- package/icons/download.svg +4 -0
- package/icons/id-card.svg +3 -0
- package/icons/index.ts +7 -1
- package/icons/info-circle.svg +3 -0
- package/index.d.ts +65 -5
- package/package.json +1 -1
- package/types/components/fw-checkbox/fw-checkbox.vue.d.ts +60 -0
- package/types/components/fw-checkbox/index.d.ts +2 -0
- package/types/components/index.d.ts +1 -0
- package/types/icons/index.d.ts +4 -1
- package/types/index-types.esm.d.ts +1 -0
package/types/icons/index.d.ts
CHANGED
|
@@ -7,4 +7,7 @@ import AlertSvg from './alert.svg';
|
|
|
7
7
|
import LockSvg from './lock.svg';
|
|
8
8
|
import EyeSvg from './eye.svg';
|
|
9
9
|
import EyeCrossedSvg from './eye-crossed.svg';
|
|
10
|
-
|
|
10
|
+
import DownloadSvg from './download.svg';
|
|
11
|
+
import IdCardSvg from './id-card.svg';
|
|
12
|
+
import InfoCircleSvg from './info-circle.svg';
|
|
13
|
+
export { ViewSvg, GenerateSvg, ManageSvg, NotFoundSvg, EmailFilledSvg, AlertSvg, LockSvg, EyeSvg, EyeCrossedSvg, DownloadSvg, IdCardSvg, InfoCircleSvg };
|
|
@@ -6,3 +6,4 @@ export * from './components/fw-card/fw-card.vue';
|
|
|
6
6
|
export * from './components/fw-button/fw-button.vue';
|
|
7
7
|
export * from './components/fw-navigation-menu/fw-navigation-menu.vue';
|
|
8
8
|
export * from './components/fw-input/fw-input.vue';
|
|
9
|
+
export * from './components/fw-checkbox/fw-checkbox.vue';
|