phx-react 1.3.1 → 1.3.2
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/dist/cjs/components/Func/clientMutationV2.d.ts +2 -0
- package/dist/cjs/components/Func/clientMutationV2.js +28 -0
- package/dist/cjs/components/Func/clientMutationV2.js.map +1 -0
- package/dist/cjs/components/Func/clientQueryV2.d.ts +2 -0
- package/dist/cjs/components/Func/clientQueryV2.js +28 -0
- package/dist/cjs/components/Func/clientQueryV2.js.map +1 -0
- package/dist/cjs/components/Func/getLoginInfo.d.ts +1 -1
- package/dist/cjs/components/Func/getLoginInfo.js +2 -2
- package/dist/cjs/components/Func/getLoginInfo.js.map +1 -1
- package/dist/cjs/index.d.ts +5 -3
- package/dist/cjs/index.js +7 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/components/Func/clientMutationV2.d.ts +2 -0
- package/dist/esm/components/Func/clientMutationV2.js +25 -0
- package/dist/esm/components/Func/clientMutationV2.js.map +1 -0
- package/dist/esm/components/Func/clientQueryV2.d.ts +2 -0
- package/dist/esm/components/Func/clientQueryV2.js +25 -0
- package/dist/esm/components/Func/clientQueryV2.js.map +1 -0
- package/dist/esm/components/Func/getLoginInfo.d.ts +1 -1
- package/dist/esm/components/Func/getLoginInfo.js +1 -1
- package/dist/esm/components/Func/getLoginInfo.js.map +1 -1
- package/dist/esm/index.d.ts +5 -3
- package/dist/esm/index.js +5 -3
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import { ApolloCache, DefaultContext, MutationFunction, OperationVariables } from '@apollo/client';
|
|
2
|
+
export default function PHXClientMutation(mutationName: MutationFunction<any, OperationVariables, DefaultContext, ApolloCache<any>>): Promise<import("@apollo/client").FetchResult<any, Record<string, any>, Record<string, any>>>;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
exports.__esModule = true;
|
|
3
|
+
var tslib_1 = require("tslib");
|
|
4
|
+
function PHXClientMutation(mutationName) {
|
|
5
|
+
return tslib_1.__awaiter(this, void 0, void 0, function () {
|
|
6
|
+
var startTime, data, endTime, duration;
|
|
7
|
+
return tslib_1.__generator(this, function (_a) {
|
|
8
|
+
switch (_a.label) {
|
|
9
|
+
case 0:
|
|
10
|
+
startTime = performance.now();
|
|
11
|
+
return [4 /*yield*/, mutationName()];
|
|
12
|
+
case 1:
|
|
13
|
+
data = _a.sent();
|
|
14
|
+
endTime = performance.now();
|
|
15
|
+
duration = endTime - startTime;
|
|
16
|
+
if (!(duration < 100)) return [3 /*break*/, 3];
|
|
17
|
+
console.info('promise delay...');
|
|
18
|
+
return [4 /*yield*/, new Promise(function (r) { return setTimeout(r, 200); })];
|
|
19
|
+
case 2:
|
|
20
|
+
_a.sent();
|
|
21
|
+
_a.label = 3;
|
|
22
|
+
case 3: return [2 /*return*/, data];
|
|
23
|
+
}
|
|
24
|
+
});
|
|
25
|
+
});
|
|
26
|
+
}
|
|
27
|
+
exports["default"] = PHXClientMutation;
|
|
28
|
+
//# sourceMappingURL=clientMutationV2.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"clientMutationV2.js","sourceRoot":"","sources":["../../../../src/components/Func/clientMutationV2.ts"],"names":[],"mappings":";;;AAEA,SAA8B,iBAAiB,CAC7C,YAAyF;;;;;;oBAEnF,SAAS,GAAG,WAAW,CAAC,GAAG,EAAE,CAAA;oBAGtB,qBAAM,YAAY,EAAE,EAAA;;oBAA3B,IAAI,GAAG,SAAoB;oBAE3B,OAAO,GAAG,WAAW,CAAC,GAAG,EAAE,CAAA;oBAC3B,QAAQ,GAAG,OAAO,GAAG,SAAS,CAAA;yBAEhC,CAAA,QAAQ,GAAG,GAAG,CAAA,EAAd,wBAAc;oBAChB,OAAO,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAA;oBAChC,qBAAM,IAAI,OAAO,CAAC,UAAC,CAAC,IAAK,OAAA,UAAU,CAAC,CAAC,EAAE,GAAG,CAAC,EAAlB,CAAkB,CAAC,EAAA;;oBAA5C,SAA4C,CAAA;;wBAE9C,sBAAO,IAAI,EAAA;;;;CACZ;AAhBD,uCAgBC"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
exports.__esModule = true;
|
|
3
|
+
var tslib_1 = require("tslib");
|
|
4
|
+
function PHXClientQuery(queryName) {
|
|
5
|
+
return tslib_1.__awaiter(this, void 0, void 0, function () {
|
|
6
|
+
var startTime, data, endTime, duration;
|
|
7
|
+
return tslib_1.__generator(this, function (_a) {
|
|
8
|
+
switch (_a.label) {
|
|
9
|
+
case 0:
|
|
10
|
+
startTime = performance.now();
|
|
11
|
+
return [4 /*yield*/, queryName()];
|
|
12
|
+
case 1:
|
|
13
|
+
data = _a.sent();
|
|
14
|
+
endTime = performance.now();
|
|
15
|
+
duration = endTime - startTime;
|
|
16
|
+
if (!(duration < 100)) return [3 /*break*/, 3];
|
|
17
|
+
console.info('promise delay...');
|
|
18
|
+
return [4 /*yield*/, new Promise(function (r) { return setTimeout(r, 200); })];
|
|
19
|
+
case 2:
|
|
20
|
+
_a.sent();
|
|
21
|
+
_a.label = 3;
|
|
22
|
+
case 3: return [2 /*return*/, data];
|
|
23
|
+
}
|
|
24
|
+
});
|
|
25
|
+
});
|
|
26
|
+
}
|
|
27
|
+
exports["default"] = PHXClientQuery;
|
|
28
|
+
//# sourceMappingURL=clientQueryV2.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"clientQueryV2.js","sourceRoot":"","sources":["../../../../src/components/Func/clientQueryV2.ts"],"names":[],"mappings":";;;AAEA,SAA8B,cAAc,CAAC,SAAyD;;;;;;oBAC9F,SAAS,GAAG,WAAW,CAAC,GAAG,EAAE,CAAA;oBAGtB,qBAAM,SAAS,EAAE,EAAA;;oBAAxB,IAAI,GAAG,SAAiB;oBAExB,OAAO,GAAG,WAAW,CAAC,GAAG,EAAE,CAAA;oBAC3B,QAAQ,GAAG,OAAO,GAAG,SAAS,CAAA;yBAEhC,CAAA,QAAQ,GAAG,GAAG,CAAA,EAAd,wBAAc;oBAChB,OAAO,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAA;oBAChC,qBAAM,IAAI,OAAO,CAAC,UAAC,CAAC,IAAK,OAAA,UAAU,CAAC,CAAC,EAAE,GAAG,CAAC,EAAlB,CAAkB,CAAC,EAAA;;oBAA5C,SAA4C,CAAA;;wBAE9C,sBAAO,IAAI,EAAA;;;;CACZ;AAdD,oCAcC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export default function
|
|
1
|
+
export default function PHXFuncGetLoggedInfo(): any;
|
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
exports.__esModule = true;
|
|
3
3
|
var tslib_1 = require("tslib");
|
|
4
4
|
var js_cookie_1 = tslib_1.__importDefault(require("js-cookie"));
|
|
5
|
-
function
|
|
5
|
+
function PHXFuncGetLoggedInfo() {
|
|
6
6
|
var loggedInfoString = js_cookie_1["default"].get('isLoggedIn');
|
|
7
7
|
var parsedLoggedInfo = loggedInfoString && JSON.parse(loggedInfoString);
|
|
8
8
|
return parsedLoggedInfo;
|
|
9
9
|
}
|
|
10
|
-
exports["default"] =
|
|
10
|
+
exports["default"] = PHXFuncGetLoggedInfo;
|
|
11
11
|
//# sourceMappingURL=getLoginInfo.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getLoginInfo.js","sourceRoot":"","sources":["../../../../src/components/Func/getLoginInfo.ts"],"names":[],"mappings":";;;AAAA,gEAA+B;AAE/B,SAAwB,
|
|
1
|
+
{"version":3,"file":"getLoginInfo.js","sourceRoot":"","sources":["../../../../src/components/Func/getLoginInfo.ts"],"names":[],"mappings":";;;AAAA,gEAA+B;AAE/B,SAAwB,oBAAoB;IAC1C,IAAM,gBAAgB,GAAG,sBAAO,CAAC,GAAG,CAAC,YAAY,CAAW,CAAA;IAC5D,IAAM,gBAAgB,GAAG,gBAAgB,IAAI,IAAI,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAA;IACzE,OAAO,gBAAgB,CAAA;AACzB,CAAC;AAJD,0CAIC"}
|
package/dist/cjs/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { PHXStep } from './components/Step
|
|
1
|
+
import { PHXStep } from './components/Step';
|
|
2
2
|
import MyCounter from './components/App';
|
|
3
3
|
import { PHXButton } from './components/Button';
|
|
4
4
|
import { PHXCard } from './components/Card';
|
|
@@ -14,5 +14,7 @@ import { PHXCheckbox } from './components/Checkbox';
|
|
|
14
14
|
import { PHXFormStep } from './components/FormStep';
|
|
15
15
|
import { PHXNotifications } from './components/Notifications';
|
|
16
16
|
import { PHXSkeletonLarge } from './components/Skeleton';
|
|
17
|
-
import
|
|
18
|
-
|
|
17
|
+
import PHXFuncGetLoggedInfo from './components/Func/getLoginInfo';
|
|
18
|
+
import PHXClientQuery from './components/Func/clientQueryV2';
|
|
19
|
+
import PHXClientMutation from './components/Func/clientMutationV2';
|
|
20
|
+
export { MyCounter, PHXButton, PHXCard, PHXSpinner, MainWrap, PHXFormWrap, PHXHeaderBar, PHXTable, PHXInput, PHXSelect, PHXRadio, PHXCheckbox, PHXFormStep, PHXNotifications, PHXStep, PHXSkeletonLarge, PHXFuncGetLoggedInfo, PHXClientQuery, PHXClientMutation, };
|
package/dist/cjs/index.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
exports.__esModule = true;
|
|
3
|
-
exports.
|
|
3
|
+
exports.PHXClientMutation = exports.PHXClientQuery = exports.PHXFuncGetLoggedInfo = exports.PHXSkeletonLarge = exports.PHXStep = exports.PHXNotifications = exports.PHXFormStep = exports.PHXCheckbox = exports.PHXRadio = exports.PHXSelect = exports.PHXInput = exports.PHXTable = exports.PHXHeaderBar = exports.PHXFormWrap = exports.MainWrap = exports.PHXSpinner = exports.PHXCard = exports.PHXButton = exports.MyCounter = void 0;
|
|
4
4
|
var tslib_1 = require("tslib");
|
|
5
|
-
var Step_1 = require("./components/Step
|
|
5
|
+
var Step_1 = require("./components/Step");
|
|
6
6
|
exports.PHXStep = Step_1.PHXStep;
|
|
7
7
|
var App_1 = tslib_1.__importDefault(require("./components/App"));
|
|
8
8
|
exports.MyCounter = App_1["default"];
|
|
@@ -35,5 +35,9 @@ exports.PHXNotifications = Notifications_1.PHXNotifications;
|
|
|
35
35
|
var Skeleton_1 = require("./components/Skeleton");
|
|
36
36
|
exports.PHXSkeletonLarge = Skeleton_1.PHXSkeletonLarge;
|
|
37
37
|
var getLoginInfo_1 = tslib_1.__importDefault(require("./components/Func/getLoginInfo"));
|
|
38
|
-
exports.
|
|
38
|
+
exports.PHXFuncGetLoggedInfo = getLoginInfo_1["default"];
|
|
39
|
+
var clientQueryV2_1 = tslib_1.__importDefault(require("./components/Func/clientQueryV2"));
|
|
40
|
+
exports.PHXClientQuery = clientQueryV2_1["default"];
|
|
41
|
+
var clientMutationV2_1 = tslib_1.__importDefault(require("./components/Func/clientMutationV2"));
|
|
42
|
+
exports.PHXClientMutation = clientMutationV2_1["default"];
|
|
39
43
|
//# sourceMappingURL=index.js.map
|
package/dist/cjs/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";;;;AAAA
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";;;;AAAA,0CAA2C;AAmCzC,kBAnCO,cAAO,CAmCP;AAlCT,iEAAwC;AAoBtC,oBApBK,gBAAS,CAoBL;AAnBX,8CAA+C;AAoB7C,oBApBO,kBAAS,CAoBP;AAnBX,0CAA2C;AAoBzC,kBApBO,cAAO,CAoBP;AAnBT,gDAAiD;AAoB/C,qBApBO,oBAAU,CAoBP;AAnBZ,kDAAgD;AAoB9C,mBApBO,mBAAQ,CAoBP;AAnBV,4CAA6C;AAsB3C,mBAtBO,gBAAQ,CAsBP;AArBV,kDAAmD;AAmBjD,sBAnBO,sBAAW,CAmBP;AAlBb,oDAAqD;AAmBnD,uBAnBO,wBAAY,CAmBP;AAlBd,4CAA6C;AAoB3C,mBApBO,gBAAQ,CAoBP;AAnBV,8CAA+C;AAoB7C,oBApBO,kBAAS,CAoBP;AAnBX,4CAA6C;AAoB3C,mBApBO,gBAAQ,CAoBP;AAnBV,kDAAmD;AAoBjD,sBApBO,sBAAW,CAoBP;AAnBb,kDAAmD;AAoBjD,sBApBO,sBAAW,CAoBP;AAnBb,4DAA6D;AAoB3D,2BApBO,gCAAgB,CAoBP;AAnBlB,kDAAwD;AAqBtD,2BArBO,2BAAgB,CAqBP;AApBlB,wFAAiE;AAqB/D,+BArBK,yBAAoB,CAqBL;AApBtB,0FAA4D;AAqB1D,yBArBK,0BAAc,CAqBL;AApBhB,gGAAkE;AAqBhE,4BArBK,6BAAiB,CAqBL"}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import { ApolloCache, DefaultContext, MutationFunction, OperationVariables } from '@apollo/client';
|
|
2
|
+
export default function PHXClientMutation(mutationName: MutationFunction<any, OperationVariables, DefaultContext, ApolloCache<any>>): Promise<import("@apollo/client").FetchResult<any, Record<string, any>, Record<string, any>>>;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { __awaiter, __generator } from "tslib";
|
|
2
|
+
export default function PHXClientMutation(mutationName) {
|
|
3
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
4
|
+
var startTime, data, endTime, duration;
|
|
5
|
+
return __generator(this, function (_a) {
|
|
6
|
+
switch (_a.label) {
|
|
7
|
+
case 0:
|
|
8
|
+
startTime = performance.now();
|
|
9
|
+
return [4 /*yield*/, mutationName()];
|
|
10
|
+
case 1:
|
|
11
|
+
data = _a.sent();
|
|
12
|
+
endTime = performance.now();
|
|
13
|
+
duration = endTime - startTime;
|
|
14
|
+
if (!(duration < 100)) return [3 /*break*/, 3];
|
|
15
|
+
console.info('promise delay...');
|
|
16
|
+
return [4 /*yield*/, new Promise(function (r) { return setTimeout(r, 200); })];
|
|
17
|
+
case 2:
|
|
18
|
+
_a.sent();
|
|
19
|
+
_a.label = 3;
|
|
20
|
+
case 3: return [2 /*return*/, data];
|
|
21
|
+
}
|
|
22
|
+
});
|
|
23
|
+
});
|
|
24
|
+
}
|
|
25
|
+
//# sourceMappingURL=clientMutationV2.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"clientMutationV2.js","sourceRoot":"","sources":["../../../../src/components/Func/clientMutationV2.ts"],"names":[],"mappings":";AAEA,MAAM,CAAC,OAAO,UAAgB,iBAAiB,CAC7C,YAAyF;;;;;;oBAEnF,SAAS,GAAG,WAAW,CAAC,GAAG,EAAE,CAAA;oBAGtB,qBAAM,YAAY,EAAE,EAAA;;oBAA3B,IAAI,GAAG,SAAoB;oBAE3B,OAAO,GAAG,WAAW,CAAC,GAAG,EAAE,CAAA;oBAC3B,QAAQ,GAAG,OAAO,GAAG,SAAS,CAAA;yBAEhC,CAAA,QAAQ,GAAG,GAAG,CAAA,EAAd,wBAAc;oBAChB,OAAO,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAA;oBAChC,qBAAM,IAAI,OAAO,CAAC,UAAC,CAAC,IAAK,OAAA,UAAU,CAAC,CAAC,EAAE,GAAG,CAAC,EAAlB,CAAkB,CAAC,EAAA;;oBAA5C,SAA4C,CAAA;;wBAE9C,sBAAO,IAAI,EAAA;;;;CACZ"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { __awaiter, __generator } from "tslib";
|
|
2
|
+
export default function PHXClientQuery(queryName) {
|
|
3
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
4
|
+
var startTime, data, endTime, duration;
|
|
5
|
+
return __generator(this, function (_a) {
|
|
6
|
+
switch (_a.label) {
|
|
7
|
+
case 0:
|
|
8
|
+
startTime = performance.now();
|
|
9
|
+
return [4 /*yield*/, queryName()];
|
|
10
|
+
case 1:
|
|
11
|
+
data = _a.sent();
|
|
12
|
+
endTime = performance.now();
|
|
13
|
+
duration = endTime - startTime;
|
|
14
|
+
if (!(duration < 100)) return [3 /*break*/, 3];
|
|
15
|
+
console.info('promise delay...');
|
|
16
|
+
return [4 /*yield*/, new Promise(function (r) { return setTimeout(r, 200); })];
|
|
17
|
+
case 2:
|
|
18
|
+
_a.sent();
|
|
19
|
+
_a.label = 3;
|
|
20
|
+
case 3: return [2 /*return*/, data];
|
|
21
|
+
}
|
|
22
|
+
});
|
|
23
|
+
});
|
|
24
|
+
}
|
|
25
|
+
//# sourceMappingURL=clientQueryV2.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"clientQueryV2.js","sourceRoot":"","sources":["../../../../src/components/Func/clientQueryV2.ts"],"names":[],"mappings":";AAEA,MAAM,CAAC,OAAO,UAAgB,cAAc,CAAC,SAAyD;;;;;;oBAC9F,SAAS,GAAG,WAAW,CAAC,GAAG,EAAE,CAAA;oBAGtB,qBAAM,SAAS,EAAE,EAAA;;oBAAxB,IAAI,GAAG,SAAiB;oBAExB,OAAO,GAAG,WAAW,CAAC,GAAG,EAAE,CAAA;oBAC3B,QAAQ,GAAG,OAAO,GAAG,SAAS,CAAA;yBAEhC,CAAA,QAAQ,GAAG,GAAG,CAAA,EAAd,wBAAc;oBAChB,OAAO,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAA;oBAChC,qBAAM,IAAI,OAAO,CAAC,UAAC,CAAC,IAAK,OAAA,UAAU,CAAC,CAAC,EAAE,GAAG,CAAC,EAAlB,CAAkB,CAAC,EAAA;;oBAA5C,SAA4C,CAAA;;wBAE9C,sBAAO,IAAI,EAAA;;;;CACZ"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export default function
|
|
1
|
+
export default function PHXFuncGetLoggedInfo(): any;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import Cookies from 'js-cookie';
|
|
2
|
-
export default function
|
|
2
|
+
export default function PHXFuncGetLoggedInfo() {
|
|
3
3
|
var loggedInfoString = Cookies.get('isLoggedIn');
|
|
4
4
|
var parsedLoggedInfo = loggedInfoString && JSON.parse(loggedInfoString);
|
|
5
5
|
return parsedLoggedInfo;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getLoginInfo.js","sourceRoot":"","sources":["../../../../src/components/Func/getLoginInfo.ts"],"names":[],"mappings":"AAAA,OAAO,OAAO,MAAM,WAAW,CAAA;AAE/B,MAAM,CAAC,OAAO,UAAU,
|
|
1
|
+
{"version":3,"file":"getLoginInfo.js","sourceRoot":"","sources":["../../../../src/components/Func/getLoginInfo.ts"],"names":[],"mappings":"AAAA,OAAO,OAAO,MAAM,WAAW,CAAA;AAE/B,MAAM,CAAC,OAAO,UAAU,oBAAoB;IAC1C,IAAM,gBAAgB,GAAG,OAAO,CAAC,GAAG,CAAC,YAAY,CAAW,CAAA;IAC5D,IAAM,gBAAgB,GAAG,gBAAgB,IAAI,IAAI,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAA;IACzE,OAAO,gBAAgB,CAAA;AACzB,CAAC"}
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { PHXStep } from './components/Step
|
|
1
|
+
import { PHXStep } from './components/Step';
|
|
2
2
|
import MyCounter from './components/App';
|
|
3
3
|
import { PHXButton } from './components/Button';
|
|
4
4
|
import { PHXCard } from './components/Card';
|
|
@@ -14,5 +14,7 @@ import { PHXCheckbox } from './components/Checkbox';
|
|
|
14
14
|
import { PHXFormStep } from './components/FormStep';
|
|
15
15
|
import { PHXNotifications } from './components/Notifications';
|
|
16
16
|
import { PHXSkeletonLarge } from './components/Skeleton';
|
|
17
|
-
import
|
|
18
|
-
|
|
17
|
+
import PHXFuncGetLoggedInfo from './components/Func/getLoginInfo';
|
|
18
|
+
import PHXClientQuery from './components/Func/clientQueryV2';
|
|
19
|
+
import PHXClientMutation from './components/Func/clientMutationV2';
|
|
20
|
+
export { MyCounter, PHXButton, PHXCard, PHXSpinner, MainWrap, PHXFormWrap, PHXHeaderBar, PHXTable, PHXInput, PHXSelect, PHXRadio, PHXCheckbox, PHXFormStep, PHXNotifications, PHXStep, PHXSkeletonLarge, PHXFuncGetLoggedInfo, PHXClientQuery, PHXClientMutation, };
|
package/dist/esm/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { PHXStep } from './components/Step
|
|
1
|
+
import { PHXStep } from './components/Step';
|
|
2
2
|
import MyCounter from './components/App';
|
|
3
3
|
import { PHXButton } from './components/Button';
|
|
4
4
|
import { PHXCard } from './components/Card';
|
|
@@ -14,6 +14,8 @@ import { PHXCheckbox } from './components/Checkbox';
|
|
|
14
14
|
import { PHXFormStep } from './components/FormStep';
|
|
15
15
|
import { PHXNotifications } from './components/Notifications';
|
|
16
16
|
import { PHXSkeletonLarge } from './components/Skeleton';
|
|
17
|
-
import
|
|
18
|
-
|
|
17
|
+
import PHXFuncGetLoggedInfo from './components/Func/getLoginInfo';
|
|
18
|
+
import PHXClientQuery from './components/Func/clientQueryV2';
|
|
19
|
+
import PHXClientMutation from './components/Func/clientMutationV2';
|
|
20
|
+
export { MyCounter, PHXButton, PHXCard, PHXSpinner, MainWrap, PHXFormWrap, PHXHeaderBar, PHXTable, PHXInput, PHXSelect, PHXRadio, PHXCheckbox, PHXFormStep, PHXNotifications, PHXStep, PHXSkeletonLarge, PHXFuncGetLoggedInfo, PHXClientQuery, PHXClientMutation, };
|
|
19
21
|
//# sourceMappingURL=index.js.map
|
package/dist/esm/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,mBAAmB,CAAA;AAC3C,OAAO,SAAS,MAAM,kBAAkB,CAAA;AACxC,OAAO,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAA;AAC/C,OAAO,EAAE,OAAO,EAAE,MAAM,mBAAmB,CAAA;AAC3C,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAA;AACjD,OAAO,EAAE,QAAQ,EAAE,MAAM,uBAAuB,CAAA;AAChD,OAAO,EAAE,QAAQ,EAAE,MAAM,oBAAoB,CAAA;AAC7C,OAAO,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAA;AACnD,OAAO,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAA;AACrD,OAAO,EAAE,QAAQ,EAAE,MAAM,oBAAoB,CAAA;AAC7C,OAAO,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAA;AAC/C,OAAO,EAAE,QAAQ,EAAE,MAAM,oBAAoB,CAAA;AAC7C,OAAO,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAA;AACnD,OAAO,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAA;AACnD,OAAO,EAAE,gBAAgB,EAAE,MAAM,4BAA4B,CAAA;AAC7D,OAAO,EAAE,gBAAgB,EAAE,MAAM,uBAAuB,CAAA;AACxD,OAAO,oBAAoB,MAAM,gCAAgC,CAAA;AACjE,OAAO,cAAc,MAAM,iCAAiC,CAAA;AAC5D,OAAO,iBAAiB,MAAM,oCAAoC,CAAA;AAElE,OAAO,EACL,SAAS,EACT,SAAS,EACT,OAAO,EACP,UAAU,EACV,QAAQ,EACR,WAAW,EACX,YAAY,EACZ,QAAQ,EACR,QAAQ,EACR,SAAS,EACT,QAAQ,EACR,WAAW,EACX,WAAW,EACX,gBAAgB,EAChB,OAAO,EACP,gBAAgB,EAChB,oBAAoB,EACpB,cAAc,EACd,iBAAiB,GAClB,CAAA"}
|