@lingk/sync 0.0.23 → 0.0.24
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/build/lightning.js.map +1 -1
- package/build/lingk.js.map +1 -1
- package/build/main.js +2 -0
- package/build/main.js.map +1 -1
- package/build/reducer.js.map +1 -1
- package/package.json +1 -1
package/build/reducer.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["webpack:///webpack/bootstrap
|
|
1
|
+
{"version":3,"sources":["webpack:///webpack/bootstrap f8384f611f11660ccd48?7dc0**","webpack:///./src/lib/wizard/actions/types.js?caa0","webpack:///./src/lib/reducer/wizard.js"],"names":["SET_WIZARD_DATA_ENTITIES","SET_WIZARD_RESOURCE_META","SET_WIZARD_LOADED","SET_WIZARD_DATA","SET_WIZARD_SAVED_SCHEMAS","wizardReducer","types","initialState","loaded","data","savedSchemas","schemaGuids","dataEntities","resourceMeta","state","action","type","bool"],"mappings":";;AAAA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA,uBAAe;AACf;AACA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;AACA;;;AAGA;AACA;;AAEA;AACA;;AAEA;AACA;;AAEA;AACA;;;;;;;;;;;;;;;;;;;;;ACtCA;AACO,KAAMA,8DAA2B,0BAAjC;AACA,KAAMC,8DAA2B,0BAAjC;AACA,KAAMC,gDAAoB,mBAA1B;AACA,KAAMC,4CAAkB,iBAAxB;AACA,KAAMC,8DAA2B,0BAAjC,C;;;;;;;;;;;;mBCOiBC,a;;AAZxB;;KAAYC,K;;;;AAEZ,KAAMC,eAAe;AACnBC,WAAO,KADY;AAEnBC,SAAK,EAFc;AAGnBC,iBAAa,EAHM;AAInBC,gBAAa,EAJM;;AAMnBC,iBAAc,EANK;AAOnBC,iBAAc;AAPK,EAArB;;AAUe,UAASR,aAAT,GAA0D;AAAA,OAAnCS,KAAmC,uEAA3BP,YAA2B;AAAA,OAAbQ,MAAa,uEAAJ,EAAI;;AACvE,WAAQA,OAAOC,IAAf;AACE,UAAKV,MAAMJ,iBAAX;AACE,gCACKY,KADL;AAEEN,iBAAQO,OAAOE;AAFjB;AAIF,UAAKX,MAAMH,eAAX;AACE,gCACKW,KADL;AAEEL,eAAMM,OAAON,IAFf;AAGED,iBAAQ;AAHV;AAKF,UAAKF,MAAMF,wBAAX;AACE,gCACKU,KADL;AAEEJ,uBAAcK,OAAON;AAFvB;;AAKF,UAAKH,MAAMN,wBAAX;AACE,gCACKc,KADL;AAEEF,uBAAcG,OAAON;AAFvB;AAIF,UAAKH,MAAML,wBAAX;AACE,gCACKa,KADL;AAEED,uBAAcE,OAAON;AAFvB;AAIF;AAAS,cAAOK,KAAP;AA5BX;AA8BD,G","file":"reducer.js","sourcesContent":[" \t// The module cache\n \tvar installedModules = {};\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId])\n \t\t\treturn installedModules[moduleId].exports;\n\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\texports: {},\n \t\t\tid: moduleId,\n \t\t\tloaded: false\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.loaded = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"\";\n\n \t// Load entry module and return exports\n \treturn __webpack_require__(0);\n\n\n\n// WEBPACK FOOTER //\n// webpack/bootstrap f8384f611f11660ccd48","// Wizard\nexport const SET_WIZARD_DATA_ENTITIES = 'SET_WIZARD_DATA_ENTITIES';\nexport const SET_WIZARD_RESOURCE_META = 'SET_WIZARD_RESOURCE_META';\nexport const SET_WIZARD_LOADED = 'SET_WIZARD_LOADED';\nexport const SET_WIZARD_DATA = 'SET_WIZARD_DATA';\nexport const SET_WIZARD_SAVED_SCHEMAS = 'SET_WIZARD_SAVED_SCHEMAS';\n\n\n\n// WEBPACK FOOTER //\n// ./src/lib/wizard/actions/types.js","import * as types from '../wizard/actions/types';\n\nconst initialState = {\n loaded:false,\n data:{},\n savedSchemas:[],\n schemaGuids: {},\n\n dataEntities: {},\n resourceMeta: [],\n};\n\nexport default function wizardReducer(state = initialState, action = {}) {\n switch (action.type) {\n case types.SET_WIZARD_LOADED:\n return {\n ...state,\n loaded: action.bool\n };\n case types.SET_WIZARD_DATA:\n return {\n ...state,\n data: action.data,\n loaded: true\n }\n case types.SET_WIZARD_SAVED_SCHEMAS:\n return {\n ...state,\n savedSchemas: action.data\n }\n\n case types.SET_WIZARD_DATA_ENTITIES:\n return {\n ...state,\n dataEntities: action.data,\n };\n case types.SET_WIZARD_RESOURCE_META:\n return {\n ...state,\n resourceMeta: action.data,\n };\n default: return state;\n }\n};\n\n\n\n\n// WEBPACK FOOTER //\n// ./src/lib/reducer/wizard.js"],"sourceRoot":""}
|