@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@axdspub/axiom-ui-forms",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "private": false,
5
5
  "main": "./library/index.js",
6
6
  "module": "./library/index.js",
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
@@ -1 +1,2 @@
1
1
  export * from '@/Form/helpers'
2
+ export { default as FormCreator } from '@/Form/FormCreator'