pds-dev-kit-web-test 0.1.2 → 0.1.3
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/index.d.ts +1 -0
- package/dist/index.js +8 -1
- package/dist/src/desktop/common/components/TextFieldBase/TextFieldBase.js +1 -1
- package/dist/src/desktop/components/PageTitleTextGroup/DateButton.d.ts +10 -0
- package/dist/src/desktop/components/PageTitleTextGroup/DateButton.js +69 -0
- package/dist/src/desktop/components/PageTitleTextGroup/PageTitleTextGroup.d.ts +6 -2
- package/dist/src/desktop/components/PageTitleTextGroup/PageTitleTextGroup.js +21 -5
- package/dist/src/sub/AdminList/AdminList/AdminList.d.ts +54 -0
- package/dist/src/sub/AdminList/AdminList/AdminList.js +226 -0
- package/dist/src/sub/AdminList/AdminList/HeaderRow.d.ts +30 -0
- package/dist/src/sub/AdminList/AdminList/HeaderRow.js +98 -0
- package/dist/src/sub/AdminList/AdminList/index.d.ts +1 -0
- package/dist/src/sub/AdminList/AdminList/index.js +8 -0
- package/dist/src/sub/AdminList/AdminListHeader/AdminListHeader.d.ts +18 -0
- package/dist/src/sub/AdminList/AdminListHeader/AdminListHeader.js +53 -0
- package/dist/src/sub/AdminList/AdminListHeader/HeaderBar.d.ts +17 -0
- package/dist/src/sub/AdminList/AdminListHeader/HeaderBar.js +89 -0
- package/dist/src/sub/AdminList/AdminListHeader/index.d.ts +1 -0
- package/dist/src/sub/AdminList/AdminListHeader/index.js +8 -0
- package/dist/src/sub/AdminList/AdminListItem/AdminListItem.d.ts +57 -0
- package/dist/src/sub/AdminList/AdminListItem/AdminListItem.js +282 -0
- package/dist/src/sub/AdminList/AdminListItem/index.d.ts +1 -0
- package/dist/src/sub/AdminList/AdminListItem/index.js +8 -0
- package/dist/src/sub/AdminList/BulkActionBar/BulkActionBar.d.ts +31 -0
- package/dist/src/sub/AdminList/BulkActionBar/BulkActionBar.js +51 -0
- package/dist/src/sub/AdminList/BulkActionBar/index.d.ts +1 -0
- package/dist/src/sub/AdminList/BulkActionBar/index.js +8 -0
- package/dist/src/sub/AdminList/ToolBar/ChipList.d.ts +9 -0
- package/dist/src/sub/AdminList/ToolBar/ChipList.js +29 -0
- package/dist/src/sub/AdminList/ToolBar/SearchField.d.ts +15 -0
- package/dist/src/sub/AdminList/ToolBar/SearchField.js +259 -0
- package/dist/src/sub/AdminList/ToolBar/ToolBar.d.ts +25 -0
- package/dist/src/sub/AdminList/ToolBar/ToolBar.js +118 -0
- package/dist/src/sub/AdminList/ToolBar/index.d.ts +1 -0
- package/dist/src/sub/AdminList/ToolBar/index.js +8 -0
- package/dist/src/sub/AdminList/index.d.ts +5 -0
- package/dist/src/sub/AdminList/index.js +13 -0
- package/dist/src/sub/DynamicLayout/mock_samplePage.js +0 -7
- package/dist/src/sub/DynamicLayout/sections/ContentsCarouselSection/ContentsCarouselSection.js +1 -1
- package/dist/src/sub/DynamicLayout/sections/ContentsSection/ContentsSection.js +1 -1
- package/dist/src/sub/DynamicLayout/sections/FooterSection/FooterSection.js +1 -1
- package/dist/src/sub/DynamicLayout/sections/InfoBoxSection/InfoBoxSection.js +1 -1
- package/dist/src/sub/DynamicLayout/sections/IntroSection/IntroSection.js +1 -1
- package/dist/src/sub/DynamicLayout/types.d.ts +0 -1
- package/dist/src/sub/index.d.ts +1 -0
- package/dist/src/sub/index.js +11 -1
- package/package.json +1 -1
- package/release-note.md +6 -3
|
@@ -35,7 +35,7 @@ var components_1 = require("../../components");
|
|
|
35
35
|
var templates_1 = require("./templates");
|
|
36
36
|
function ContentsSection(_a) {
|
|
37
37
|
var props = __rest(_a, []);
|
|
38
|
-
return (react_1.default.createElement(S_SectionWrapper, { "x-dlayout-section-type": "Contents"
|
|
38
|
+
return (react_1.default.createElement(S_SectionWrapper, { "x-dlayout-section-type": "Contents" },
|
|
39
39
|
react_1.default.createElement(components_1.Section, __assign({}, props),
|
|
40
40
|
react_1.default.createElement(TemplateMather, { styleTemplate: props.template }))));
|
|
41
41
|
}
|
|
@@ -35,7 +35,7 @@ var components_1 = require("../../components");
|
|
|
35
35
|
var templates_1 = require("./templates");
|
|
36
36
|
function FooterSection(_a) {
|
|
37
37
|
var props = __rest(_a, []);
|
|
38
|
-
return (react_1.default.createElement(S_SectionWrapper, { "x-dlayout-section-type": "Footer"
|
|
38
|
+
return (react_1.default.createElement(S_SectionWrapper, { "x-dlayout-section-type": "Footer" },
|
|
39
39
|
react_1.default.createElement(components_1.Section, __assign({}, props),
|
|
40
40
|
react_1.default.createElement(TemplateMather, { styleTemplate: props.template }))));
|
|
41
41
|
}
|
|
@@ -35,7 +35,7 @@ var components_1 = require("../../components");
|
|
|
35
35
|
var templates_1 = require("./templates");
|
|
36
36
|
function InfoBoxSection(_a) {
|
|
37
37
|
var props = __rest(_a, []);
|
|
38
|
-
return (react_1.default.createElement(S_SectionWrapper, { "x-dlayout-section-type": "InfoBox"
|
|
38
|
+
return (react_1.default.createElement(S_SectionWrapper, { "x-dlayout-section-type": "InfoBox" },
|
|
39
39
|
react_1.default.createElement(components_1.Section, __assign({}, props),
|
|
40
40
|
react_1.default.createElement(TemplateMather, { styleTemplate: props.template }))));
|
|
41
41
|
}
|
|
@@ -35,7 +35,7 @@ var components_1 = require("../../components");
|
|
|
35
35
|
var templates_1 = require("./templates");
|
|
36
36
|
function IntroSection(_a) {
|
|
37
37
|
var props = __rest(_a, []);
|
|
38
|
-
return (react_1.default.createElement(S_SectionWrapper, { "x-dlayout-section-type": "Intro"
|
|
38
|
+
return (react_1.default.createElement(S_SectionWrapper, { "x-dlayout-section-type": "Intro" },
|
|
39
39
|
react_1.default.createElement(components_1.Section, __assign({}, props),
|
|
40
40
|
react_1.default.createElement(TemplateMatcher, { styleTemplate: props.template }))));
|
|
41
41
|
}
|
package/dist/src/sub/index.d.ts
CHANGED
package/dist/src/sub/index.js
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
5
|
+
}) : (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
o[k2] = m[k];
|
|
8
|
+
}));
|
|
9
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
10
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
11
|
+
};
|
|
2
12
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
13
|
exports.DynamicLayout = void 0;
|
|
4
|
-
// NOTE: 이름은 변경될 수 있습니다.
|
|
5
14
|
var DynamicLayout_1 = require("./DynamicLayout");
|
|
6
15
|
Object.defineProperty(exports, "DynamicLayout", { enumerable: true, get: function () { return DynamicLayout_1.DynamicLayout; } });
|
|
16
|
+
__exportStar(require("./AdminList"), exports);
|
package/package.json
CHANGED
package/release-note.md
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
# pds-dev-kit-web-test Release Notes
|
|
2
|
-
## [v0.1.
|
|
2
|
+
## [v0.1.3]
|
|
3
3
|
|
|
4
4
|
## 기준 pds-dev-kit-web 버전 @1.9.12
|
|
5
|
+
### Component
|
|
6
|
+
* PageTitleTextGroup
|
|
7
|
+
* tooltipText prop 추가
|
|
8
|
+
* dateBtn 관련 props 추가
|
|
5
9
|
### sub
|
|
6
|
-
*
|
|
7
|
-
* section단위에 x-dlayout-section-id 추가
|
|
10
|
+
* AdminList 추가
|