-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update ky, fix ag to svelte example, RestDataApi will look for q and do stringify if its an object * Fixed quick search * Fixed search * refactor select2 so uses same fomratter for displayFields * comment out select tests since we dont support * get tests working for jest and ts. revamp truthy and empty * add jest to the checks * remove the setup for now * get jest tests working and move critical tests in, all tests are in __tests__ * Select fixes (#643) * Fixed select with complex dataApiParams * Lint fix * esm to get mockserver working with imports * reverted ts, to slow. * fix and cleanup the listctrl dep (#644) * fix and cleanup the listctrl dep * should have a property that we pass to GRidCtrl for contextMenuClickAction * pass everything through with the gridOpts * fixed showSearchForm * more clean up * cleanup to get rid of extendFilters * removed a bunch of console logs * add init search to config * Filtering refactoring Co-authored-by: alexeyzvegintcev <alexey.zvegintcev@sysgears.com> * Grid remove listctrl dep (#645) * fix and cleanup the listctrl dep * should have a property that we pass to GRidCtrl for contextMenuClickAction * pass everything through with the gridOpts * fixed showSearchForm * more clean up * cleanup to get rid of extendFilters * removed a bunch of console logs * add init search to config * Filtering refactoring * get sort squared away * more lodash cleanup * fix for es6 * rename to restrictSearch * add start of the DataQuery class Co-authored-by: alexeyzvegintcev <alexey.zvegintcev@sysgears.com> * Grid remove listctrl dep (#646) * fix and cleanup the listctrl dep * should have a property that we pass to GRidCtrl for contextMenuClickAction * pass everything through with the gridOpts * fixed showSearchForm * more clean up * cleanup to get rid of extendFilters * removed a bunch of console logs * add init search to config * Filtering refactoring * get sort squared away * more lodash cleanup * fix for es6 * rename to restrictSearch * add start of the DataQuery class Co-authored-by: alexeyzvegintcev <alexey.zvegintcev@sysgears.com> * fixed foo bar * Grid fixes (#648) * Fixed cors issue for grids * Grid actions without listCtrl import * Custom toolbar actions * Fixed typo Co-authored-by: alexeyzvegintcev <alexey.zvegintcev@sysgears.com> * Datastore (#647) * added mixer and batch of tests * added getter * added ky type * get common stuff out on datastore * rename * removed grails from demo to cut down on noise * fix session store * working demos * working grids, select2 is broken * mostly working now * renames * simplify * out of chaos comes order * det names in order * fix oageView sub, add unsun for destroy * rm pwd * lint fix * added chip and fixed setting current item * fix bad comma * added chip css * hack to fix sub on addJson * add go to AppState and apiUrl * redo api to standardize key instead of endpoint * add some logging * more logging * remove pocs * Restrict apply grids (#651) * grids adde restrict search * gridList restrictSearch * Fixed grid toolbar (#652) * TEmp quick fix (#653) * Ds grid (#654) * fix open on memdata, dont blow up if no config is found, fix tailwind warning * Fixed editting grid (#655) * fix bad squigly * tests passing again * remove bad case * flush out forms and bad camel case on StoreHolder * z-index on selects * fix select2 ability to have special key * fixes grid flash on insert 9ci/rcm-ui#102 * Edit modal errors 9ci/rcm#110 (#656) * Edit modal errors 9ci/rcm#110 * see if this works Co-authored-by: Joshua B <joshdev@9ci.com> * Fixed typo for error handler (#657) * change to html5 date inputs * remove placeholder until we figure it out * Swal fix (#658) * Remove swal from grids * Fixed typo * Added ctx to gridz directive (#660) * Fixed export to excel 9ci/rcm-ui#118 (#659) * Svelte select (#661) * Fix Date Formatting (#662) * Added ability to change restrict search (#663) * Added ability to specify qSearch and q for select (#664) * Added ability to specify qSearch and q for select * Added XXX * change for more detailed format on selects * Fixed gridId genaration (#666) * yakit move (#667) move to @yakit/core, @yakit/ui, @yakit/svelte * Added ability to set deafult sorting (#668) * forms and crudQuery (#671) * add tile comps and import text-editor from f7. * Grid edit popover (#672) * popover edit, formify from config with yup validation and examples. * on submit * edit example is working * create new popup working but failing on save * popover working for new * moved create form into core * fix tests * fix where editSchema get setup * add example for rest select in dynamic * added showLink formatter and fixed for type=date on schema forms * fixed sort reset and turned off multiSort by default Co-authored-by: alexeyzvegintcev <alexey.zvegintcev@sysgears.com>
- Loading branch information
1 parent
fb4d019
commit 9042740
Showing
418 changed files
with
14,428 additions
and
5,424 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"useTabs": false, | ||
"singleQuote": true, | ||
"trailingComma": "none", | ||
"printWidth": 120, | ||
"tabWidth": 2, | ||
"semi": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
{ | ||
"git.ignoreLimitWarning": true | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
module.exports = function(api) { | ||
api.cache(true); | ||
const presets = [ | ||
["@babel/preset-env",{ | ||
// "useBuiltIns": "entry" , | ||
"useBuiltIns": "usage" , | ||
"corejs": 3, | ||
"targets": { "node": "current" } | ||
}] | ||
]; | ||
const plugins = [ | ||
["angularjs-annotate"], | ||
"lodash", | ||
"babel-plugin-transform-async-to-promises", | ||
"@babel/plugin-proposal-class-properties", | ||
"@babel/plugin-proposal-optional-chaining", | ||
"wildcard", | ||
//aliases are not DRY, setup here for Jest, in jsconfig.json for vscode and webpack for svelte | ||
["module-resolver", { | ||
"root": ["./src"], | ||
//make it work with both | ||
"alias": [ | ||
{"@yakit/core": "./yakit/core"}, | ||
{"@yakit/ui": "./yakit/ui"}, | ||
{"@yakit/svelte": "./yakit/svelte"}, | ||
{"@ag": "./src"}, | ||
{"angle-grinder/src": "./src"}, | ||
//used for demo | ||
{ "~": "./examples/demo/src"}, | ||
] | ||
}], | ||
[ // required for svelte-jsx and svelte-fragment-component | ||
"@babel/plugin-transform-react-jsx", | ||
{"runtime": "automatic", "importSource": "svelte-jsx"} | ||
] | ||
]; | ||
|
||
return { | ||
presets, | ||
plugins | ||
}; | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.