@3t-transform/threeteeui 0.0.5 → 0.0.6
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/loader.cjs.js +1 -1
- package/dist/cjs/{ui.popover-27780a1d.js → toolbar-656be6e6.js} +9677 -8994
- package/dist/cjs/tttx-page.cjs.entry.js +57 -58
- package/dist/cjs/tttx-worksheet.cjs.entry.js +2 -3
- package/dist/cjs/tttx.cjs.js +1 -1
- package/dist/collection/collection-manifest.json +0 -1
- package/dist/components/index.d.ts +0 -1
- package/dist/components/index.js +0 -1
- package/dist/components/tttx-page.js +1 -2
- package/dist/components/tttx-worksheet.js +1 -1
- package/dist/components/tttx-worksheet2.js +33430 -60
- package/dist/esm/loader.js +1 -1
- package/dist/{components/ui.popover.js → esm/toolbar-cede4385.js} +9677 -8895
- package/dist/esm/tttx-page.entry.js +1 -2
- package/dist/esm/tttx-worksheet.entry.js +1 -2
- package/dist/esm/tttx.js +1 -1
- package/dist/tttx/p-4b57de2e.entry.js +1 -0
- package/dist/tttx/p-61f78304.entry.js +1 -0
- package/dist/tttx/p-d038fe18.js +1 -0
- package/dist/tttx/tttx.esm.js +1 -1
- package/dist/types/components.d.ts +0 -13
- package/package.json +1 -1
- package/dist/cjs/qualifications-list.cjs.entry.js +0 -7149
- package/dist/cjs/toolbar-02115550.js +0 -864
- package/dist/collection/components/patterns/qualifications-list/qualifications-list.js +0 -32
- package/dist/collection/components/patterns/qualifications-list/qualifications-list.stories.js +0 -7
- package/dist/components/qualifications-list.d.ts +0 -11
- package/dist/components/qualifications-list.js +0 -7162
- package/dist/esm/qualifications-list.entry.js +0 -7145
- package/dist/esm/toolbar-b147a3aa.js +0 -862
- package/dist/esm/ui.popover-0c8f8d79.js +0 -33449
- package/dist/tttx/p-4f4963aa.entry.js +0 -1
- package/dist/tttx/p-69ca02f6.entry.js +0 -1
- package/dist/tttx/p-7eb8146c.entry.js +0 -1
- package/dist/tttx/p-81cad444.js +0 -1
- package/dist/tttx/p-955d89ac.js +0 -1
- package/dist/types/components/patterns/qualifications-list/qualifications-list.d.ts +0 -6
- package/dist/types/components/patterns/qualifications-list/qualifications-list.stories.d.ts +0 -5
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import { h, Host } from '@stencil/core';
|
|
2
|
-
import List from 'devextreme/esm/ui/list';
|
|
3
|
-
import CustomStore from 'devextreme/esm/data/custom_store';
|
|
4
|
-
import DataSource from 'devextreme/esm/data/data_source';
|
|
5
|
-
export class QualificationsList {
|
|
6
|
-
componentDidLoad() {
|
|
7
|
-
const store = new CustomStore({
|
|
8
|
-
key: 'id',
|
|
9
|
-
load: async () => {
|
|
10
|
-
const userId = '83526262-996f-48bc-9927-60233074d144';
|
|
11
|
-
const continuationToken = this.continuationToken ? `&${this.continuationToken}` : '';
|
|
12
|
-
return fetch(`https://pr-626.dev.3tplatform.com/v2/attestations?UserId=${userId}&Limit=1${continuationToken}`).then(response => {
|
|
13
|
-
console.log(response.body);
|
|
14
|
-
//this.continuationToken = response.body.continuationToken;
|
|
15
|
-
return response.body;
|
|
16
|
-
});
|
|
17
|
-
},
|
|
18
|
-
});
|
|
19
|
-
const dataSource = new DataSource({ store });
|
|
20
|
-
new List(this.listWrapper, {
|
|
21
|
-
dataSource: dataSource,
|
|
22
|
-
itemTemplate: (data) => {
|
|
23
|
-
console.log(data);
|
|
24
|
-
return h("p", null, data.name);
|
|
25
|
-
},
|
|
26
|
-
});
|
|
27
|
-
}
|
|
28
|
-
render() {
|
|
29
|
-
return (h(Host, null, h("div", { ref: el => (this.listWrapper = el) })));
|
|
30
|
-
}
|
|
31
|
-
static get is() { return "qualifications-list"; }
|
|
32
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import type { Components, JSX } from "../types/components";
|
|
2
|
-
|
|
3
|
-
interface QualificationsList extends Components.QualificationsList, HTMLElement {}
|
|
4
|
-
export const QualificationsList: {
|
|
5
|
-
prototype: QualificationsList;
|
|
6
|
-
new (): QualificationsList;
|
|
7
|
-
};
|
|
8
|
-
/**
|
|
9
|
-
* Used to define this component and all nested components recursively.
|
|
10
|
-
*/
|
|
11
|
-
export const defineCustomElement: () => void;
|