@axdspub/axiom-ui-forms 0.1.2 → 0.1.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/library/axiom-ui-forms.d.ts +9 -1
- package/library/index.js +305 -253
- package/library/index.js.map +1 -1
- package/library/umd.js +599 -546
- package/library/umd.js.map +1 -1
- package/package.json +1 -1
- package/rollup.config.mjs +10 -0
- package/src/Form/index.ts +1 -0
package/package.json
CHANGED
package/rollup.config.mjs
CHANGED
@@ -30,6 +30,16 @@ const config = [
|
|
30
30
|
if (warning.code === 'MODULE_LEVEL_DIRECTIVE') {
|
31
31
|
return
|
32
32
|
}
|
33
|
+
// got same warning as with d3.. assuming same deal for now (bostock sez: it's allowed in the spec, not gonna fix. just supress it)
|
34
|
+
// https://github.com/d3/d3-selection/issues/168#issuecomment-451983830
|
35
|
+
if (warning.code === 'CIRCULAR_DEPENDENCY') return
|
36
|
+
|
37
|
+
// rollup says - what do you expect to happen with eval? make sure code isn't evil https://github.com/rollup/rollup/issues/4366#issuecomment-1023346209
|
38
|
+
// cesium says - there's a reason we use eval and (I'm assuming they aren't particularly evil)
|
39
|
+
// also, it sounds like they're getting close to removing eval
|
40
|
+
// https://github.com/CesiumGS/cesium/issues/9024#issuecomment-1533025563 and https://github.com/CesiumGS/cesium/issues/9473 (and FF blocker https://bugzilla.mozilla.org/show_bug.cgi?id=1247687)
|
41
|
+
if (warning.code === 'EVAL') return
|
42
|
+
|
33
43
|
warn(warning)
|
34
44
|
},
|
35
45
|
output: [
|
package/src/Form/index.ts
CHANGED