@modernpoacher/gremlins 0.0.4 → 0.0.5
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/babel.config.cjs
CHANGED
|
@@ -40,14 +40,6 @@ const presets = [
|
|
|
40
40
|
|
|
41
41
|
const plugins = [
|
|
42
42
|
'@babel/syntax-jsx',
|
|
43
|
-
'@babel/proposal-export-default-from',
|
|
44
|
-
'@babel/proposal-export-namespace-from',
|
|
45
|
-
[
|
|
46
|
-
'@babel/proposal-class-properties',
|
|
47
|
-
{
|
|
48
|
-
loose: false
|
|
49
|
-
}
|
|
50
|
-
],
|
|
51
43
|
[
|
|
52
44
|
'module-resolver', {
|
|
53
45
|
alias: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@modernpoacher/gremlins",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.5",
|
|
4
4
|
"description": "Gremlins",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Gremlins",
|
|
@@ -48,9 +48,6 @@
|
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"@babel/core": "^7.22.17",
|
|
50
50
|
"@babel/eslint-parser": "^7.22.15",
|
|
51
|
-
"@babel/plugin-proposal-class-properties": "^7.18.6",
|
|
52
|
-
"@babel/plugin-proposal-export-default-from": "^7.22.17",
|
|
53
|
-
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
|
|
54
51
|
"@babel/preset-env": "^7.22.15",
|
|
55
52
|
"@babel/preset-react": "^7.22.15",
|
|
56
53
|
"@babel/register": "^7.22.15",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
require('@babel/register')({
|
|
2
2
|
ignore: [
|
|
3
|
-
/node_modules\/(?!@modernpoacher\/cogs|@modernpoacher\/sprockets)/
|
|
3
|
+
/node_modules\/(?!@modernpoacher\/cogs|@modernpoacher\/gremlins|@modernpoacher\/sprockets)/
|
|
4
4
|
]
|
|
5
5
|
})
|
|
6
6
|
|
|
@@ -8,7 +8,7 @@ const debug = require('debug')
|
|
|
8
8
|
|
|
9
9
|
const log = debug('@modernpoacher/sprockets/components/group')
|
|
10
10
|
|
|
11
|
-
log('`
|
|
11
|
+
log('`gremlins` is awake')
|
|
12
12
|
|
|
13
13
|
const {
|
|
14
14
|
default: component
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
require('@babel/register')({
|
|
2
2
|
ignore: [
|
|
3
|
-
/node_modules\/(?!@modernpoacher\/cogs|@modernpoacher\/sprockets)/
|
|
3
|
+
/node_modules\/(?!@modernpoacher\/cogs|@modernpoacher\/gremlins|@modernpoacher\/sprockets)/
|
|
4
4
|
]
|
|
5
5
|
})
|
|
6
6
|
|
|
@@ -8,7 +8,7 @@ const debug = require('debug')
|
|
|
8
8
|
|
|
9
9
|
const log = debug('@modernpoacher/gremlins/gremlins/fieldset/group')
|
|
10
10
|
|
|
11
|
-
log('`
|
|
11
|
+
log('`gremlins` is awake')
|
|
12
12
|
|
|
13
13
|
const {
|
|
14
14
|
default: component
|
package/src/index.cjs
CHANGED
|
@@ -18,6 +18,7 @@ const RadioGremlin = require('./gremlins/radio/index.cjs')
|
|
|
18
18
|
const SelectGremlin = require('./gremlins/select/index.cjs')
|
|
19
19
|
const TextGremlin = require('./gremlins/text/index.cjs')
|
|
20
20
|
const TextareaGremlin = require('./gremlins/textarea/index.cjs')
|
|
21
|
+
const FieldsetGremlin = require('./gremlins/fieldset/index.cjs')
|
|
21
22
|
|
|
22
23
|
module.exports.CheckboxGremlin = CheckboxGremlin
|
|
23
24
|
module.exports.EmailGremlin = EmailGremlin
|
|
@@ -27,3 +28,4 @@ module.exports.RadioGremlin = RadioGremlin
|
|
|
27
28
|
module.exports.SelectGremlin = SelectGremlin
|
|
28
29
|
module.exports.TextGremlin = TextGremlin
|
|
29
30
|
module.exports.TextareaGremlin = TextareaGremlin
|
|
31
|
+
module.exports.FieldsetGremlin = FieldsetGremlin
|
package/src/index.mjs
CHANGED
|
@@ -8,6 +8,7 @@ import RadioGremlin from './gremlins/radio/index.cjs'
|
|
|
8
8
|
import SelectGremlin from './gremlins/select/index.cjs'
|
|
9
9
|
import TextGremlin from './gremlins/text/index.cjs'
|
|
10
10
|
import TextareaGremlin from './gremlins/textarea/index.cjs'
|
|
11
|
+
import FieldsetGremlin from './gremlins/fieldset/index.cjs'
|
|
11
12
|
|
|
12
13
|
const log = debug('@modernpoacher/gremlins')
|
|
13
14
|
|
|
@@ -21,6 +22,7 @@ export { default as RadioGremlin } from './gremlins/radio/index.cjs'
|
|
|
21
22
|
export { default as SelectGremlin } from './gremlins/select/index.cjs'
|
|
22
23
|
export { default as TextGremlin } from './gremlins/text/index.cjs'
|
|
23
24
|
export { default as TextareaGremlin } from './gremlins/textarea/index.cjs'
|
|
25
|
+
export { default as FieldsetGremlin } from './gremlins/fieldset/index.cjs'
|
|
24
26
|
|
|
25
27
|
export default {
|
|
26
28
|
CheckboxGremlin,
|
|
@@ -30,5 +32,6 @@ export default {
|
|
|
30
32
|
RadioGremlin,
|
|
31
33
|
SelectGremlin,
|
|
32
34
|
TextGremlin,
|
|
33
|
-
TextareaGremlin
|
|
35
|
+
TextareaGremlin,
|
|
36
|
+
FieldsetGremlin
|
|
34
37
|
}
|