@3t-transform/threeteeui 0.0.3 → 0.0.5

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.
Files changed (53) hide show
  1. package/dist/cjs/{index-eb8fc323.js → index-8a7479e4.js} +22 -2
  2. package/dist/cjs/loader.cjs.js +2 -2
  3. package/dist/cjs/qualifications-list.cjs.entry.js +7149 -0
  4. package/dist/cjs/toolbar-02115550.js +864 -0
  5. package/dist/cjs/tttx-icon.cjs.entry.js +21 -0
  6. package/dist/cjs/tttx-page.cjs.entry.js +59 -58
  7. package/dist/cjs/tttx-worksheet.cjs.entry.js +4 -3
  8. package/dist/cjs/tttx.cjs.js +2 -2
  9. package/dist/cjs/{toolbar-656be6e6.js → ui.popover-27780a1d.js} +9546 -10229
  10. package/dist/collection/collection-manifest.json +2 -0
  11. package/dist/collection/components/components/tttx-icon/tttx-icon.css +89 -0
  12. package/dist/collection/components/components/tttx-icon/tttx-icon.js +59 -0
  13. package/dist/collection/components/components/tttx-icon/tttx-icon.stories.js +40 -0
  14. package/dist/collection/components/patterns/qualifications-list/qualifications-list.js +32 -0
  15. package/dist/collection/components/patterns/qualifications-list/qualifications-list.stories.js +7 -0
  16. package/dist/components/index.d.ts +2 -0
  17. package/dist/components/index.js +2 -0
  18. package/dist/components/qualifications-list.d.ts +11 -0
  19. package/dist/components/qualifications-list.js +7162 -0
  20. package/dist/components/tttx-icon.d.ts +11 -0
  21. package/dist/components/tttx-icon.js +37 -0
  22. package/dist/components/tttx-page.js +2 -1
  23. package/dist/components/tttx-worksheet.js +1 -1
  24. package/dist/components/tttx-worksheet2.js +61 -33431
  25. package/dist/{esm/toolbar-cede4385.js → components/ui.popover.js} +9447 -10229
  26. package/dist/esm/{index-4c11a593.js → index-854ff56f.js} +22 -2
  27. package/dist/esm/loader.js +2 -2
  28. package/dist/esm/qualifications-list.entry.js +7145 -0
  29. package/dist/esm/toolbar-b147a3aa.js +862 -0
  30. package/dist/esm/tttx-icon.entry.js +17 -0
  31. package/dist/esm/tttx-page.entry.js +3 -2
  32. package/dist/esm/tttx-worksheet.entry.js +3 -2
  33. package/dist/esm/tttx.js +2 -2
  34. package/dist/esm/ui.popover-0c8f8d79.js +33449 -0
  35. package/dist/tttx/p-4f4963aa.entry.js +1 -0
  36. package/dist/tttx/p-69ca02f6.entry.js +1 -0
  37. package/dist/tttx/p-7244abd4.entry.js +1 -0
  38. package/dist/tttx/p-7eb8146c.entry.js +1 -0
  39. package/dist/tttx/p-81cad444.js +1 -0
  40. package/dist/tttx/p-955d89ac.js +1 -0
  41. package/dist/tttx/p-ddfeb0ba.js +2 -0
  42. package/dist/tttx/tttx.css +1 -1
  43. package/dist/tttx/tttx.esm.js +1 -1
  44. package/dist/types/components/components/tttx-icon/tttx-icon.d.ts +5 -0
  45. package/dist/types/components/components/tttx-icon/tttx-icon.stories.d.ts +24 -0
  46. package/dist/types/components/patterns/qualifications-list/qualifications-list.d.ts +6 -0
  47. package/dist/types/components/patterns/qualifications-list/qualifications-list.stories.d.ts +5 -0
  48. package/dist/types/components.d.ts +30 -0
  49. package/package.json +2 -3
  50. package/dist/tttx/p-2681b874.js +0 -2
  51. package/dist/tttx/p-285977b3.entry.js +0 -1
  52. package/dist/tttx/p-997a8339.entry.js +0 -1
  53. package/dist/tttx/p-d038fe18.js +0 -1
@@ -0,0 +1,17 @@
1
+ import { r as registerInstance, h } from './index-854ff56f.js';
2
+
3
+ const tttxIconCss = "@import url(\"https://fonts.googleapis.com/css?family=Roboto&display=swap\");@import url(\"https://fonts.googleapis.com/css2?family=Material+Icons+Round\");*{box-sizing:border-box}.flex-start{justify-content:start}.flex-end{justify-content:end}.flex-centre{justify-content:center}[class^=col-]{display:flex;padding-left:8px !important;padding-right:8px !important}h1,h2,h3,h4,h5,h6,p,label,small{margin:0;padding:0}h1,h2,h3,h4,h5,h6,p,label{display:block}*{font-family:\"Roboto\", sans-serif}html,body{font-weight:normal;font-size:16px}h1{font-weight:700;font-size:24px}h2{font-weight:700;font-size:20px}h3{font-weight:700;font-size:18px}h4{font-weight:normal;font-size:14px;text-transform:uppercase}button{font-weight:500;font-size:14px;text-transform:uppercase}small{font-weight:normal;font-size:14px}label{font-weight:700;font-size:16px}:host{display:block}.material-icons-round{vertical-align:-6px;color:var(--ui-color-lt)}";
4
+
5
+ const TttxIcon = class {
6
+ constructor(hostRef) {
7
+ registerInstance(this, hostRef);
8
+ this.name = undefined;
9
+ this.color = undefined;
10
+ }
11
+ render() {
12
+ return (h("span", { class: "material-icons-round", style: { color: this.color } }, this.name));
13
+ }
14
+ };
15
+ TttxIcon.style = tttxIconCss;
16
+
17
+ export { TttxIcon as tttx_icon };
@@ -1,5 +1,6 @@
1
- import { r as registerInstance, h, H as Host } from './index-4c11a593.js';
2
- import { C as CollectionWidget, B as BindableTemplate, a as Button, e as extend, i as isFunction, $, W as Widget, b as isDefined, r as registerComponent, h as hasWindow, g as getOuterWidth, m as messageLocalization, F as FunctionTemplate, L as ListSearch, D as DataSource, A as ArrayStore, c as compileGetter, n as noop, d as Deferred, G as Guid, f as getPublicElement, P as Popup, j as isPlainObject, k as ensureDefined, l as DataHelperMixin, o as getImageContainer, T as Toolbar } from './toolbar-cede4385.js';
1
+ import { r as registerInstance, h, H as Host } from './index-854ff56f.js';
2
+ import { T as Toolbar } from './toolbar-b147a3aa.js';
3
+ import { ac as CollectionWidget, ad as BindableTemplate, aa as Button, e as extend, ao as isFunction, $, W as Widget, o as isDefined, d as registerComponent, h as hasWindow, g as getOuterWidth, a5 as messageLocalization, a_ as FunctionTemplate, aZ as ListSearch, aY as DataSource, a$ as ArrayStore, b0 as compileGetter, k as noop, ag as Deferred, G as Guid, aq as getPublicElement, af as Popup, p as isPlainObject, b1 as ensureDefined, b2 as DataHelperMixin, b3 as getImageContainer } from './ui.popover-0c8f8d79.js';
3
4
 
4
5
  /**
5
6
  * DevExtreme (esm/ui/button_group.js)
@@ -1,5 +1,6 @@
1
- import { r as registerInstance, h, H as Host } from './index-4c11a593.js';
2
- import { T as Toolbar, a as Button } from './toolbar-cede4385.js';
1
+ import { r as registerInstance, h, H as Host } from './index-854ff56f.js';
2
+ import { T as Toolbar } from './toolbar-b147a3aa.js';
3
+ import { aa as Button } from './ui.popover-0c8f8d79.js';
3
4
 
4
5
  const tttxWorksheetCss = "@import url(\"https://fonts.googleapis.com/css?family=Roboto&display=swap\");*{box-sizing:border-box}.flex-start{justify-content:start}.flex-end{justify-content:end}.flex-centre{justify-content:center}[class^=col-]{display:flex;padding-left:8px !important;padding-right:8px !important}h1,h2,h3,h4,h5,h6,p,label,small{margin:0;padding:0}h1,h2,h3,h4,h5,h6,p,label{display:block}*{font-family:\"Roboto\", sans-serif}html,body{font-weight:normal;font-size:16px}h1{font-weight:700;font-size:24px}h2{font-weight:700;font-size:20px}h3{font-weight:700;font-size:18px}h4{font-weight:normal;font-size:14px;text-transform:uppercase}button{font-weight:500;font-size:14px;text-transform:uppercase}small{font-weight:normal;font-size:14px}label{font-weight:700;font-size:16px}:host{display:block}.worksheet__container,.worksheet__container--large,.worksheet__container--medium,.worksheet__container--small{position:absolute;top:104px;bottom:8px;left:0px;right:0px;overflow:auto;background-color:#ffffff;clear:both}.worksheet__container,.worksheet__container--medium,.worksheet__container--small,.worksheet__footer--medium,.worksheet__footer--small{margin:0px auto}.worksheet__container--large{margin:0px 16px}.worksheet__container--medium{width:900px}.worksheet__container--small{width:600px}.worksheet__footer--medium.dx-toolbar,.worksheet__footer--small.dx-toolbar{position:fixed;bottom:0px;left:0px;right:0px;padding:0 8px}.worksheet__footer--medium.dx-toolbar{width:900px}.worksheet__footer--small.dx-toolbar{width:600px}";
5
6
 
package/dist/esm/tttx.js CHANGED
@@ -1,4 +1,4 @@
1
- import { p as promiseResolve, b as bootstrapLazy } from './index-4c11a593.js';
1
+ import { p as promiseResolve, b as bootstrapLazy } from './index-854ff56f.js';
2
2
 
3
3
  /*
4
4
  Stencil Client Patch Browser v2.20.0 | MIT Licensed | https://stenciljs.com
@@ -13,5 +13,5 @@ const patchBrowser = () => {
13
13
  };
14
14
 
15
15
  patchBrowser().then(options => {
16
- return bootstrapLazy([["tttx-worksheet",[[4,"tttx-worksheet",{"pageSize":[1,"page-size"]}]]],["tttx-page",[[4,"tttx-page",{"appName":[1,"app-name"],"pageTitle":[1,"page-title"],"lastUpdated":[1,"last-updated"],"manageAccountsUrl":[1,"manage-accounts-url"],"logoutUrl":[1,"logout-url"],"pageSize":[1,"page-size"],"helpUrl":[1,"help-url"]}]]]], options);
16
+ return bootstrapLazy([["tttx-page",[[4,"tttx-page",{"appName":[1,"app-name"],"pageTitle":[1,"page-title"],"lastUpdated":[1,"last-updated"],"manageAccountsUrl":[1,"manage-accounts-url"],"logoutUrl":[1,"logout-url"],"pageSize":[1,"page-size"],"helpUrl":[1,"help-url"]}]]],["qualifications-list",[[0,"qualifications-list"]]],["tttx-icon",[[0,"tttx-icon",{"name":[1],"color":[1]}]]],["tttx-worksheet",[[4,"tttx-worksheet",{"pageSize":[1,"page-size"]}]]]], options);
17
17
  });