@lingk/sync 0.0.8 → 0.0.9

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.
@@ -1 +1 @@
1
- {"version":3,"sources":["webpack:///webpack/bootstrap ac894840532d7da75f66?ce92**","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 ac894840532d7da75f66","// 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":""}
1
+ {"version":3,"sources":["webpack:///webpack/bootstrap b6fd18b8025d07ea5138?4cea*","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 b6fd18b8025d07ea5138","// 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":""}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lingk/sync",
3
- "version": "0.0.8",
3
+ "version": "0.0.9",
4
4
  "author": "Evan Feenstra",
5
5
  "files": [
6
6
  "build"
@@ -1,49 +0,0 @@
1
- body{
2
- margin: 0;
3
- padding: 0;
4
- }
5
- .wizard-body{
6
- width:100%;
7
- height: 100%;
8
- background: white;
9
- }
10
- .wizard-sidebar{
11
- display: inline-block;
12
- height: 100%;
13
- }
14
- .wizard-content{
15
- vertical-align:top;
16
- padding:31px 28px 31px 45px;
17
- display:inline-block;
18
- }
19
- .wizard-schema-field {
20
- cursor:pointer;
21
- }
22
- .wizard-schema-field:hover {
23
- background: #dfe0e0 !important;
24
- }
25
- .accordion-panel{
26
- line-height: 1.4;
27
- border-radius: 7px;
28
- overflow: hidden;
29
- margin-bottom: 6px;
30
- }
31
- .accordion-panel-header{
32
- color: white;
33
- padding: 9px 13px;
34
- font-weight: bold;
35
- cursor:pointer;
36
- -moz-user-select: none;
37
- -webkit-user-select: none;
38
- -ms-user-select: none;
39
- user-select: none;
40
- }
41
- .accordion-panel-header:hover{
42
- text-decoration: underline;
43
- }
44
- .accordion-panel-collapse{
45
- transition: height 0.35s;
46
- -webkit-transition: height 0.35s;
47
- padding: 0 13px;
48
- }
49
- /*# sourceMappingURL=main.css.map*/
@@ -1 +0,0 @@
1
- {"version":3,"sources":[],"names":[],"mappings":"","file":"css/main.css","sourceRoot":""}