@frollo/frollo-web-ui 1.2.2 → 1.2.3
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 +318 -218
- package/esm/fw-accordion.js +100 -0
- package/esm/fw-dropdown.js +1 -1
- package/esm/fw-table.js +2 -2
- package/esm/{index-16e7ac1e.js → index-2ee67707.js} +1 -1
- package/esm/{index-ca8d7e19.js → index-ed9adbea.js} +92 -78
- package/esm/index.js +6 -3
- package/frollo-web-ui.esm.js +358 -247
- package/icons/index.ts +3 -1
- package/icons/plus.svg +3 -0
- package/index.d.ts +68 -14
- package/package.json +1 -1
- package/types/components/fw-accordion/fw-accordion.vue.d.ts +48 -0
- package/types/components/fw-accordion/index.d.ts +2 -0
- package/types/components/fw-accordion/index.types.d.ts +5 -0
- package/types/components/index.d.ts +1 -0
- package/types/components/index.types.d.ts +1 -0
- package/types/icons/index.d.ts +2 -1
package/esm/index.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { d as documentCreateElement$1, g as global$4, a as descriptors, f as functionUncurryThis, b as functionBindNative, i as isCallable$1, e as engineUserAgent } from './function-name-0d296891.js';
|
|
2
2
|
import { _ as _export, o as objectKeys$1 } from './object-keys-f9d76c12.js';
|
|
3
3
|
import { a as arrayIteration } from './array-iteration-10670eca.js';
|
|
4
|
-
import { a as arrayMethodIsStrict$1, s as script$b, b as script$c, c as script$d } from './index-
|
|
5
|
-
export { s as FwTable, b as FwTableHead, c as FwTableRow } from './index-
|
|
4
|
+
import { a as arrayMethodIsStrict$1, s as script$b, b as script$c, c as script$d } from './index-2ee67707.js';
|
|
5
|
+
export { s as FwTable, b as FwTableHead, c as FwTableRow } from './index-2ee67707.js';
|
|
6
6
|
import { FwDropdown as script$2 } from './fw-dropdown.js';
|
|
7
7
|
export { FwDropdown } from './fw-dropdown.js';
|
|
8
8
|
import { c as createNonEnumerableProperty$1, t as toIndexedObject$1, o as objectPropertyIsEnumerable } from './is-forced-2369382d.js';
|
|
@@ -24,6 +24,8 @@ import { FwProgressBar as script$9 } from './fw-progress-bar.js';
|
|
|
24
24
|
export { FwProgressBar } from './fw-progress-bar.js';
|
|
25
25
|
import { FwTag as script$a } from './fw-tag.js';
|
|
26
26
|
export { FwTag } from './fw-tag.js';
|
|
27
|
+
import { FwAccordion as script$e } from './fw-accordion.js';
|
|
28
|
+
export { FwAccordion } from './fw-accordion.js';
|
|
27
29
|
import { FwEmailPulse as __default__, FwSuccessPulse as __default__$1 } from './fw-animations.js';
|
|
28
30
|
export { FwEmailPulse, FwSuccessPulse } from './fw-animations.js';
|
|
29
31
|
import { F as Form } from './vee-validate.esm-a17a23c3.js';
|
|
@@ -33,7 +35,7 @@ export { s as FwButton } from './fw-button-fb8e3fe2.js';
|
|
|
33
35
|
import { createApp } from 'vue';
|
|
34
36
|
import './classof-b2d09c70.js';
|
|
35
37
|
import './to-string-2588bbbe.js';
|
|
36
|
-
import './index-
|
|
38
|
+
import './index-ed9adbea.js';
|
|
37
39
|
import './check-94a5917a.js';
|
|
38
40
|
import './add-to-unscopables-44076600.js';
|
|
39
41
|
import './es.function.name-383fcdbc.js';
|
|
@@ -266,6 +268,7 @@ var components = /*#__PURE__*/Object.freeze({
|
|
|
266
268
|
FwTable: script$b,
|
|
267
269
|
FwTableHead: script$c,
|
|
268
270
|
FwTableRow: script$d,
|
|
271
|
+
FwAccordion: script$e,
|
|
269
272
|
FwEmailPulse: __default__,
|
|
270
273
|
FwSuccessPulse: __default__$1
|
|
271
274
|
});
|