Skip to content

Commit

Permalink
deps
Browse files Browse the repository at this point in the history
  • Loading branch information
rjrodger committed Jul 12, 2024
1 parent 4d3ecf0 commit 8a7f85d
Show file tree
Hide file tree
Showing 16 changed files with 173 additions and 171 deletions.
157 changes: 79 additions & 78 deletions dist/voxgig-model-react.es.js

Large diffs are not rendered by default.

157 changes: 79 additions & 78 deletions dist/voxgig-model-react.umd.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,13 +61,13 @@
"react-router-dom": ">=6",
"redux": ">=5.0.1",
"redux-thunk": ">=3",
"seneca-entity": ">=27",
"seneca-entity": ">=28",
"@seneca/browser-store": ">=0",
"@seneca/redux": ">=0",
"styled-components": ">=6"
},
"devDependencies": {
"@babel/core": "7.24.7",
"@babel/core": "7.24.8",
"@hapi/code": "^9.0.3",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
Expand Down
2 changes: 1 addition & 1 deletion src/lib/BasicAccountTool.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const BasicAccountToolSpecShape = Gubu({
attr: {},
sx: {},
style: {},
}, {prefix: CMPNAME})
}, {name: CMPNAME})


function BasicAccountTool (props: BasicProps) {
Expand Down
2 changes: 1 addition & 1 deletion src/lib/BasicAdmin.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const BasicAdminSpecShape = Gubu({
nav: {},
tool: {},
}
}, {prefix: CMPNAME})
}, {name: CMPNAME})


// TODO: need a BasicLoadingSplash
Expand Down
2 changes: 1 addition & 1 deletion src/lib/BasicEntityEdit.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ console.log(CMPNAME,'1')

// const { Open } = Gubu
// const BasicEntityEditSpecShape = Gubu(Open({
// }), {prefix: CMPNAME})
// }), {name: CMPNAME})



Expand Down
2 changes: 1 addition & 1 deletion src/lib/BasicEntityField.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ console.log(CMPNAME,'3')
const { Open } = Gubu
const BasicEntityFieldSpecShape = Gubu(Open({

}), {prefix: CMPNAME})
}), {name: CMPNAME})



Expand Down
2 changes: 1 addition & 1 deletion src/lib/BasicHead.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const BasicHeadSpecShape = Gubu({
ToolBar: {},
}

}, {prefix:CMPNAME})
}, {name: CMPNAME})


function BasicHead (props: BasicProps) {
Expand Down
2 changes: 1 addition & 1 deletion src/lib/BasicHeadTool.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const BasicHeadToolSpecShape = Gubu({
attr: {},
sx: {},
style: {},
}, {prefix: CMPNAME})
}, {name: CMPNAME})


function BasicHeadTool (props: BasicProps) {
Expand Down
2 changes: 1 addition & 1 deletion src/lib/BasicLedFoot.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ console.log(CMPNAME,'1')

const { Open } = Gubu
const BasicLedFootSpecShape = Gubu(Open({
}), {prefix: CMPNAME})
}), {name: CMPNAME})


function BasicLedFoot (props: any) {
Expand Down
2 changes: 1 addition & 1 deletion src/lib/BasicLedHead.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const BasicLedHeadSpecShape = Gubu(Open({
mui: Open({
Toolbar: Open({})
})
}), {prefix: CMPNAME})
}), {name: CMPNAME})


function BasicLedHead (props: any) {
Expand Down
2 changes: 1 addition & 1 deletion src/lib/BasicLoading.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ console.log(CMPNAME,'1')

// const { Exact } = Gubu
const BasicLoadingSpecShape = Gubu({
}, {prefix: CMPNAME})
}, {name: CMPNAME})



Expand Down
2 changes: 1 addition & 1 deletion src/lib/BasicSide.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const BasicSideSpecShape = Gubu({
mui: {
Drawer: {},
}
}, {prefix: CMPNAME})
}, {name: CMPNAME})



Expand Down
2 changes: 1 addition & 1 deletion src/lib/VxgBasicEntityEditPlugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const Shape = Gubu(Open({
ent: String,
order: [String],
field: Child({}, {})
}), { prefix: 'BasicEntityEdit' })
}), { name: 'BasicEntityEdit' })


function VxgBasicEntityEditPlugin(this: any, options: any) {
Expand Down
2 changes: 1 addition & 1 deletion src/lib/VxgBasicEntityListPlugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const Shape = Gubu(Open({
ent: String,
order: [String],
field: Child({}, {})
}), { prefix: 'BasicEntityList' })
}), { name: 'BasicEntityList' })


function VxgBasicEntityListPlugin(this: any, options: any) {
Expand Down
2 changes: 1 addition & 1 deletion src/lib/VxgBasicLedPlugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const Shape = Gubu({
active: false,
}),
},
}, { prefix: 'BasicLed' })
}, { name: 'BasicLed' })


function VxgBasicLedPlugin(this: any, options: any) {
Expand Down

0 comments on commit 8a7f85d

Please sign in to comment.