echothink-ui 0.2.0
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/README.md +9 -0
- package/dist/index.cjs +156 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.ts +41 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +81 -0
- package/dist/index.js.map +1 -0
- package/package.json +79 -0
- package/src/index.tsx +41 -0
- package/src/styles.css +7 -0
package/README.md
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# echothink-ui
|
|
2
|
+
|
|
3
|
+
Umbrella package for the EchoThink UI component family. Import common primitives
|
|
4
|
+
directly from `echothink-ui`, or use package namespaces for larger domains.
|
|
5
|
+
|
|
6
|
+
```ts
|
|
7
|
+
import { Button, StyleScope, Core, Charts } from "echothink-ui";
|
|
8
|
+
import "echothink-ui/styles.css";
|
|
9
|
+
```
|
package/dist/index.cjs
ADDED
|
@@ -0,0 +1,156 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __create = Object.create;
|
|
3
|
+
var __defProp = Object.defineProperty;
|
|
4
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
7
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
+
var __export = (target, all) => {
|
|
9
|
+
for (var name in all)
|
|
10
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
11
|
+
};
|
|
12
|
+
var __copyProps = (to, from, except, desc) => {
|
|
13
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
14
|
+
for (let key of __getOwnPropNames(from))
|
|
15
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
16
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
17
|
+
}
|
|
18
|
+
return to;
|
|
19
|
+
};
|
|
20
|
+
var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
|
|
21
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
22
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
23
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
24
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
25
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
26
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
27
|
+
mod
|
|
28
|
+
));
|
|
29
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
30
|
+
|
|
31
|
+
// src/index.tsx
|
|
32
|
+
var index_exports = {};
|
|
33
|
+
__export(index_exports, {
|
|
34
|
+
Accessibility: () => Accessibility,
|
|
35
|
+
Activity: () => Activity,
|
|
36
|
+
Admin: () => Admin,
|
|
37
|
+
Agent: () => Agent,
|
|
38
|
+
Annotation: () => Annotation,
|
|
39
|
+
AppDomain: () => AppDomain,
|
|
40
|
+
Calendar: () => Calendar,
|
|
41
|
+
CarbonTheme: () => CarbonTheme,
|
|
42
|
+
Charts: () => Charts,
|
|
43
|
+
Core: () => Core,
|
|
44
|
+
Data: () => Data,
|
|
45
|
+
Developer: () => Developer,
|
|
46
|
+
Documents: () => Documents,
|
|
47
|
+
DomainWidgets: () => DomainWidgets,
|
|
48
|
+
Events: () => Events,
|
|
49
|
+
Forms: () => Forms,
|
|
50
|
+
Icons: () => Icons,
|
|
51
|
+
Identity: () => Identity,
|
|
52
|
+
Inbox: () => Inbox,
|
|
53
|
+
Layout: () => Layout,
|
|
54
|
+
Layouts: () => Layouts,
|
|
55
|
+
Motion: () => Motion,
|
|
56
|
+
Project: () => Project,
|
|
57
|
+
Quality: () => Quality,
|
|
58
|
+
Resources: () => Resources,
|
|
59
|
+
Runtime: () => Runtime,
|
|
60
|
+
Search: () => Search,
|
|
61
|
+
Skills: () => Skills,
|
|
62
|
+
Style: () => Style,
|
|
63
|
+
Task: () => Task,
|
|
64
|
+
Templates: () => Templates,
|
|
65
|
+
Todo: () => Todo,
|
|
66
|
+
Tokens: () => Tokens,
|
|
67
|
+
Validators: () => Validators,
|
|
68
|
+
Voice: () => Voice,
|
|
69
|
+
WorkbenchRuntime: () => WorkbenchRuntime,
|
|
70
|
+
Workflow: () => Workflow
|
|
71
|
+
});
|
|
72
|
+
module.exports = __toCommonJS(index_exports);
|
|
73
|
+
__reExport(index_exports, require("@echothink-ui/core"), module.exports);
|
|
74
|
+
__reExport(index_exports, require("@echothink-ui/style"), module.exports);
|
|
75
|
+
__reExport(index_exports, require("@echothink-ui/layout"), module.exports);
|
|
76
|
+
var Accessibility = __toESM(require("@echothink-ui/accessibility"), 1);
|
|
77
|
+
var Activity = __toESM(require("@echothink-ui/activity"), 1);
|
|
78
|
+
var Admin = __toESM(require("@echothink-ui/admin"), 1);
|
|
79
|
+
var Agent = __toESM(require("@echothink-ui/agent"), 1);
|
|
80
|
+
var Annotation = __toESM(require("@echothink-ui/annotation"), 1);
|
|
81
|
+
var AppDomain = __toESM(require("@echothink-ui/app-domain"), 1);
|
|
82
|
+
var Calendar = __toESM(require("@echothink-ui/calendar"), 1);
|
|
83
|
+
var CarbonTheme = __toESM(require("@echothink-ui/carbon-theme"), 1);
|
|
84
|
+
var Charts = __toESM(require("@echothink-ui/charts"), 1);
|
|
85
|
+
var Core = __toESM(require("@echothink-ui/core"), 1);
|
|
86
|
+
var Data = __toESM(require("@echothink-ui/data"), 1);
|
|
87
|
+
var Developer = __toESM(require("@echothink-ui/developer"), 1);
|
|
88
|
+
var Documents = __toESM(require("@echothink-ui/documents"), 1);
|
|
89
|
+
var DomainWidgets = __toESM(require("@echothink-ui/domain-widgets"), 1);
|
|
90
|
+
var Events = __toESM(require("@echothink-ui/events"), 1);
|
|
91
|
+
var Forms = __toESM(require("@echothink-ui/forms"), 1);
|
|
92
|
+
var Icons = __toESM(require("@echothink-ui/icons"), 1);
|
|
93
|
+
var Identity = __toESM(require("@echothink-ui/identity"), 1);
|
|
94
|
+
var Inbox = __toESM(require("@echothink-ui/inbox"), 1);
|
|
95
|
+
var Layout = __toESM(require("@echothink-ui/layout"), 1);
|
|
96
|
+
var Layouts = __toESM(require("@echothink-ui/layouts"), 1);
|
|
97
|
+
var Motion = __toESM(require("@echothink-ui/motion"), 1);
|
|
98
|
+
var Project = __toESM(require("@echothink-ui/project"), 1);
|
|
99
|
+
var Quality = __toESM(require("@echothink-ui/quality"), 1);
|
|
100
|
+
var Resources = __toESM(require("@echothink-ui/resources"), 1);
|
|
101
|
+
var Runtime = __toESM(require("@echothink-ui/runtime"), 1);
|
|
102
|
+
var Search = __toESM(require("@echothink-ui/search"), 1);
|
|
103
|
+
var Skills = __toESM(require("@echothink-ui/skills"), 1);
|
|
104
|
+
var Style = __toESM(require("@echothink-ui/style"), 1);
|
|
105
|
+
var Task = __toESM(require("@echothink-ui/task"), 1);
|
|
106
|
+
var Templates = __toESM(require("@echothink-ui/templates"), 1);
|
|
107
|
+
var Todo = __toESM(require("@echothink-ui/todo"), 1);
|
|
108
|
+
var Tokens = __toESM(require("@echothink-ui/tokens"), 1);
|
|
109
|
+
var Validators = __toESM(require("@echothink-ui/validators"), 1);
|
|
110
|
+
var Voice = __toESM(require("@echothink-ui/voice"), 1);
|
|
111
|
+
var WorkbenchRuntime = __toESM(require("@echothink-ui/workbench-runtime"), 1);
|
|
112
|
+
var Workflow = __toESM(require("@echothink-ui/workflow"), 1);
|
|
113
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
114
|
+
0 && (module.exports = {
|
|
115
|
+
Accessibility,
|
|
116
|
+
Activity,
|
|
117
|
+
Admin,
|
|
118
|
+
Agent,
|
|
119
|
+
Annotation,
|
|
120
|
+
AppDomain,
|
|
121
|
+
Calendar,
|
|
122
|
+
CarbonTheme,
|
|
123
|
+
Charts,
|
|
124
|
+
Core,
|
|
125
|
+
Data,
|
|
126
|
+
Developer,
|
|
127
|
+
Documents,
|
|
128
|
+
DomainWidgets,
|
|
129
|
+
Events,
|
|
130
|
+
Forms,
|
|
131
|
+
Icons,
|
|
132
|
+
Identity,
|
|
133
|
+
Inbox,
|
|
134
|
+
Layout,
|
|
135
|
+
Layouts,
|
|
136
|
+
Motion,
|
|
137
|
+
Project,
|
|
138
|
+
Quality,
|
|
139
|
+
Resources,
|
|
140
|
+
Runtime,
|
|
141
|
+
Search,
|
|
142
|
+
Skills,
|
|
143
|
+
Style,
|
|
144
|
+
Task,
|
|
145
|
+
Templates,
|
|
146
|
+
Todo,
|
|
147
|
+
Tokens,
|
|
148
|
+
Validators,
|
|
149
|
+
Voice,
|
|
150
|
+
WorkbenchRuntime,
|
|
151
|
+
Workflow,
|
|
152
|
+
...require("@echothink-ui/core"),
|
|
153
|
+
...require("@echothink-ui/style"),
|
|
154
|
+
...require("@echothink-ui/layout")
|
|
155
|
+
});
|
|
156
|
+
//# sourceMappingURL=index.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/index.tsx"],"sourcesContent":["export * from \"@echothink-ui/core\";\nexport * from \"@echothink-ui/style\";\nexport * from \"@echothink-ui/layout\";\n\nexport * as Accessibility from \"@echothink-ui/accessibility\";\nexport * as Activity from \"@echothink-ui/activity\";\nexport * as Admin from \"@echothink-ui/admin\";\nexport * as Agent from \"@echothink-ui/agent\";\nexport * as Annotation from \"@echothink-ui/annotation\";\nexport * as AppDomain from \"@echothink-ui/app-domain\";\nexport * as Calendar from \"@echothink-ui/calendar\";\nexport * as CarbonTheme from \"@echothink-ui/carbon-theme\";\nexport * as Charts from \"@echothink-ui/charts\";\nexport * as Core from \"@echothink-ui/core\";\nexport * as Data from \"@echothink-ui/data\";\nexport * as Developer from \"@echothink-ui/developer\";\nexport * as Documents from \"@echothink-ui/documents\";\nexport * as DomainWidgets from \"@echothink-ui/domain-widgets\";\nexport * as Events from \"@echothink-ui/events\";\nexport * as Forms from \"@echothink-ui/forms\";\nexport * as Icons from \"@echothink-ui/icons\";\nexport * as Identity from \"@echothink-ui/identity\";\nexport * as Inbox from \"@echothink-ui/inbox\";\nexport * as Layout from \"@echothink-ui/layout\";\nexport * as Layouts from \"@echothink-ui/layouts\";\nexport * as Motion from \"@echothink-ui/motion\";\nexport * as Project from \"@echothink-ui/project\";\nexport * as Quality from \"@echothink-ui/quality\";\nexport * as Resources from \"@echothink-ui/resources\";\nexport * as Runtime from \"@echothink-ui/runtime\";\nexport * as Search from \"@echothink-ui/search\";\nexport * as Skills from \"@echothink-ui/skills\";\nexport * as Style from \"@echothink-ui/style\";\nexport * as Task from \"@echothink-ui/task\";\nexport * as Templates from \"@echothink-ui/templates\";\nexport * as Todo from \"@echothink-ui/todo\";\nexport * as Tokens from \"@echothink-ui/tokens\";\nexport * as Validators from \"@echothink-ui/validators\";\nexport * as Voice from \"@echothink-ui/voice\";\nexport * as WorkbenchRuntime from \"@echothink-ui/workbench-runtime\";\nexport * as Workflow from \"@echothink-ui/workflow\";\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,0BAAc,+BAAd;AACA,0BAAc,gCADd;AAEA,0BAAc,iCAFd;AAIA,oBAA+B;AAC/B,eAA0B;AAC1B,YAAuB;AACvB,YAAuB;AACvB,iBAA4B;AAC5B,gBAA2B;AAC3B,eAA0B;AAC1B,kBAA6B;AAC7B,aAAwB;AACxB,WAAsB;AACtB,WAAsB;AACtB,gBAA2B;AAC3B,gBAA2B;AAC3B,oBAA+B;AAC/B,aAAwB;AACxB,YAAuB;AACvB,YAAuB;AACvB,eAA0B;AAC1B,YAAuB;AACvB,aAAwB;AACxB,cAAyB;AACzB,aAAwB;AACxB,cAAyB;AACzB,cAAyB;AACzB,gBAA2B;AAC3B,cAAyB;AACzB,aAAwB;AACxB,aAAwB;AACxB,YAAuB;AACvB,WAAsB;AACtB,gBAA2B;AAC3B,WAAsB;AACtB,aAAwB;AACxB,iBAA4B;AAC5B,YAAuB;AACvB,uBAAkC;AAClC,eAA0B;","names":[]}
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
export * from "@echothink-ui/core";
|
|
2
|
+
export * from "@echothink-ui/style";
|
|
3
|
+
export * from "@echothink-ui/layout";
|
|
4
|
+
export * as Accessibility from "@echothink-ui/accessibility";
|
|
5
|
+
export * as Activity from "@echothink-ui/activity";
|
|
6
|
+
export * as Admin from "@echothink-ui/admin";
|
|
7
|
+
export * as Agent from "@echothink-ui/agent";
|
|
8
|
+
export * as Annotation from "@echothink-ui/annotation";
|
|
9
|
+
export * as AppDomain from "@echothink-ui/app-domain";
|
|
10
|
+
export * as Calendar from "@echothink-ui/calendar";
|
|
11
|
+
export * as CarbonTheme from "@echothink-ui/carbon-theme";
|
|
12
|
+
export * as Charts from "@echothink-ui/charts";
|
|
13
|
+
export * as Core from "@echothink-ui/core";
|
|
14
|
+
export * as Data from "@echothink-ui/data";
|
|
15
|
+
export * as Developer from "@echothink-ui/developer";
|
|
16
|
+
export * as Documents from "@echothink-ui/documents";
|
|
17
|
+
export * as DomainWidgets from "@echothink-ui/domain-widgets";
|
|
18
|
+
export * as Events from "@echothink-ui/events";
|
|
19
|
+
export * as Forms from "@echothink-ui/forms";
|
|
20
|
+
export * as Icons from "@echothink-ui/icons";
|
|
21
|
+
export * as Identity from "@echothink-ui/identity";
|
|
22
|
+
export * as Inbox from "@echothink-ui/inbox";
|
|
23
|
+
export * as Layout from "@echothink-ui/layout";
|
|
24
|
+
export * as Layouts from "@echothink-ui/layouts";
|
|
25
|
+
export * as Motion from "@echothink-ui/motion";
|
|
26
|
+
export * as Project from "@echothink-ui/project";
|
|
27
|
+
export * as Quality from "@echothink-ui/quality";
|
|
28
|
+
export * as Resources from "@echothink-ui/resources";
|
|
29
|
+
export * as Runtime from "@echothink-ui/runtime";
|
|
30
|
+
export * as Search from "@echothink-ui/search";
|
|
31
|
+
export * as Skills from "@echothink-ui/skills";
|
|
32
|
+
export * as Style from "@echothink-ui/style";
|
|
33
|
+
export * as Task from "@echothink-ui/task";
|
|
34
|
+
export * as Templates from "@echothink-ui/templates";
|
|
35
|
+
export * as Todo from "@echothink-ui/todo";
|
|
36
|
+
export * as Tokens from "@echothink-ui/tokens";
|
|
37
|
+
export * as Validators from "@echothink-ui/validators";
|
|
38
|
+
export * as Voice from "@echothink-ui/voice";
|
|
39
|
+
export * as WorkbenchRuntime from "@echothink-ui/workbench-runtime";
|
|
40
|
+
export * as Workflow from "@echothink-ui/workflow";
|
|
41
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.tsx"],"names":[],"mappings":"AAAA,cAAc,oBAAoB,CAAC;AACnC,cAAc,qBAAqB,CAAC;AACpC,cAAc,sBAAsB,CAAC;AAErC,OAAO,KAAK,aAAa,MAAM,6BAA6B,CAAC;AAC7D,OAAO,KAAK,QAAQ,MAAM,wBAAwB,CAAC;AACnD,OAAO,KAAK,KAAK,MAAM,qBAAqB,CAAC;AAC7C,OAAO,KAAK,KAAK,MAAM,qBAAqB,CAAC;AAC7C,OAAO,KAAK,UAAU,MAAM,0BAA0B,CAAC;AACvD,OAAO,KAAK,SAAS,MAAM,0BAA0B,CAAC;AACtD,OAAO,KAAK,QAAQ,MAAM,wBAAwB,CAAC;AACnD,OAAO,KAAK,WAAW,MAAM,4BAA4B,CAAC;AAC1D,OAAO,KAAK,MAAM,MAAM,sBAAsB,CAAC;AAC/C,OAAO,KAAK,IAAI,MAAM,oBAAoB,CAAC;AAC3C,OAAO,KAAK,IAAI,MAAM,oBAAoB,CAAC;AAC3C,OAAO,KAAK,SAAS,MAAM,yBAAyB,CAAC;AACrD,OAAO,KAAK,SAAS,MAAM,yBAAyB,CAAC;AACrD,OAAO,KAAK,aAAa,MAAM,8BAA8B,CAAC;AAC9D,OAAO,KAAK,MAAM,MAAM,sBAAsB,CAAC;AAC/C,OAAO,KAAK,KAAK,MAAM,qBAAqB,CAAC;AAC7C,OAAO,KAAK,KAAK,MAAM,qBAAqB,CAAC;AAC7C,OAAO,KAAK,QAAQ,MAAM,wBAAwB,CAAC;AACnD,OAAO,KAAK,KAAK,MAAM,qBAAqB,CAAC;AAC7C,OAAO,KAAK,MAAM,MAAM,sBAAsB,CAAC;AAC/C,OAAO,KAAK,OAAO,MAAM,uBAAuB,CAAC;AACjD,OAAO,KAAK,MAAM,MAAM,sBAAsB,CAAC;AAC/C,OAAO,KAAK,OAAO,MAAM,uBAAuB,CAAC;AACjD,OAAO,KAAK,OAAO,MAAM,uBAAuB,CAAC;AACjD,OAAO,KAAK,SAAS,MAAM,yBAAyB,CAAC;AACrD,OAAO,KAAK,OAAO,MAAM,uBAAuB,CAAC;AACjD,OAAO,KAAK,MAAM,MAAM,sBAAsB,CAAC;AAC/C,OAAO,KAAK,MAAM,MAAM,sBAAsB,CAAC;AAC/C,OAAO,KAAK,KAAK,MAAM,qBAAqB,CAAC;AAC7C,OAAO,KAAK,IAAI,MAAM,oBAAoB,CAAC;AAC3C,OAAO,KAAK,SAAS,MAAM,yBAAyB,CAAC;AACrD,OAAO,KAAK,IAAI,MAAM,oBAAoB,CAAC;AAC3C,OAAO,KAAK,MAAM,MAAM,sBAAsB,CAAC;AAC/C,OAAO,KAAK,UAAU,MAAM,0BAA0B,CAAC;AACvD,OAAO,KAAK,KAAK,MAAM,qBAAqB,CAAC;AAC7C,OAAO,KAAK,gBAAgB,MAAM,iCAAiC,CAAC;AACpE,OAAO,KAAK,QAAQ,MAAM,wBAAwB,CAAC"}
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
// src/index.tsx
|
|
2
|
+
export * from "@echothink-ui/core";
|
|
3
|
+
export * from "@echothink-ui/style";
|
|
4
|
+
export * from "@echothink-ui/layout";
|
|
5
|
+
import * as Accessibility from "@echothink-ui/accessibility";
|
|
6
|
+
import * as Activity from "@echothink-ui/activity";
|
|
7
|
+
import * as Admin from "@echothink-ui/admin";
|
|
8
|
+
import * as Agent from "@echothink-ui/agent";
|
|
9
|
+
import * as Annotation from "@echothink-ui/annotation";
|
|
10
|
+
import * as AppDomain from "@echothink-ui/app-domain";
|
|
11
|
+
import * as Calendar from "@echothink-ui/calendar";
|
|
12
|
+
import * as CarbonTheme from "@echothink-ui/carbon-theme";
|
|
13
|
+
import * as Charts from "@echothink-ui/charts";
|
|
14
|
+
import * as Core from "@echothink-ui/core";
|
|
15
|
+
import * as Data from "@echothink-ui/data";
|
|
16
|
+
import * as Developer from "@echothink-ui/developer";
|
|
17
|
+
import * as Documents from "@echothink-ui/documents";
|
|
18
|
+
import * as DomainWidgets from "@echothink-ui/domain-widgets";
|
|
19
|
+
import * as Events from "@echothink-ui/events";
|
|
20
|
+
import * as Forms from "@echothink-ui/forms";
|
|
21
|
+
import * as Icons from "@echothink-ui/icons";
|
|
22
|
+
import * as Identity from "@echothink-ui/identity";
|
|
23
|
+
import * as Inbox from "@echothink-ui/inbox";
|
|
24
|
+
import * as Layout from "@echothink-ui/layout";
|
|
25
|
+
import * as Layouts from "@echothink-ui/layouts";
|
|
26
|
+
import * as Motion from "@echothink-ui/motion";
|
|
27
|
+
import * as Project from "@echothink-ui/project";
|
|
28
|
+
import * as Quality from "@echothink-ui/quality";
|
|
29
|
+
import * as Resources from "@echothink-ui/resources";
|
|
30
|
+
import * as Runtime from "@echothink-ui/runtime";
|
|
31
|
+
import * as Search from "@echothink-ui/search";
|
|
32
|
+
import * as Skills from "@echothink-ui/skills";
|
|
33
|
+
import * as Style from "@echothink-ui/style";
|
|
34
|
+
import * as Task from "@echothink-ui/task";
|
|
35
|
+
import * as Templates from "@echothink-ui/templates";
|
|
36
|
+
import * as Todo from "@echothink-ui/todo";
|
|
37
|
+
import * as Tokens from "@echothink-ui/tokens";
|
|
38
|
+
import * as Validators from "@echothink-ui/validators";
|
|
39
|
+
import * as Voice from "@echothink-ui/voice";
|
|
40
|
+
import * as WorkbenchRuntime from "@echothink-ui/workbench-runtime";
|
|
41
|
+
import * as Workflow from "@echothink-ui/workflow";
|
|
42
|
+
export {
|
|
43
|
+
Accessibility,
|
|
44
|
+
Activity,
|
|
45
|
+
Admin,
|
|
46
|
+
Agent,
|
|
47
|
+
Annotation,
|
|
48
|
+
AppDomain,
|
|
49
|
+
Calendar,
|
|
50
|
+
CarbonTheme,
|
|
51
|
+
Charts,
|
|
52
|
+
Core,
|
|
53
|
+
Data,
|
|
54
|
+
Developer,
|
|
55
|
+
Documents,
|
|
56
|
+
DomainWidgets,
|
|
57
|
+
Events,
|
|
58
|
+
Forms,
|
|
59
|
+
Icons,
|
|
60
|
+
Identity,
|
|
61
|
+
Inbox,
|
|
62
|
+
Layout,
|
|
63
|
+
Layouts,
|
|
64
|
+
Motion,
|
|
65
|
+
Project,
|
|
66
|
+
Quality,
|
|
67
|
+
Resources,
|
|
68
|
+
Runtime,
|
|
69
|
+
Search,
|
|
70
|
+
Skills,
|
|
71
|
+
Style,
|
|
72
|
+
Task,
|
|
73
|
+
Templates,
|
|
74
|
+
Todo,
|
|
75
|
+
Tokens,
|
|
76
|
+
Validators,
|
|
77
|
+
Voice,
|
|
78
|
+
WorkbenchRuntime,
|
|
79
|
+
Workflow
|
|
80
|
+
};
|
|
81
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/index.tsx"],"sourcesContent":["export * from \"@echothink-ui/core\";\nexport * from \"@echothink-ui/style\";\nexport * from \"@echothink-ui/layout\";\n\nexport * as Accessibility from \"@echothink-ui/accessibility\";\nexport * as Activity from \"@echothink-ui/activity\";\nexport * as Admin from \"@echothink-ui/admin\";\nexport * as Agent from \"@echothink-ui/agent\";\nexport * as Annotation from \"@echothink-ui/annotation\";\nexport * as AppDomain from \"@echothink-ui/app-domain\";\nexport * as Calendar from \"@echothink-ui/calendar\";\nexport * as CarbonTheme from \"@echothink-ui/carbon-theme\";\nexport * as Charts from \"@echothink-ui/charts\";\nexport * as Core from \"@echothink-ui/core\";\nexport * as Data from \"@echothink-ui/data\";\nexport * as Developer from \"@echothink-ui/developer\";\nexport * as Documents from \"@echothink-ui/documents\";\nexport * as DomainWidgets from \"@echothink-ui/domain-widgets\";\nexport * as Events from \"@echothink-ui/events\";\nexport * as Forms from \"@echothink-ui/forms\";\nexport * as Icons from \"@echothink-ui/icons\";\nexport * as Identity from \"@echothink-ui/identity\";\nexport * as Inbox from \"@echothink-ui/inbox\";\nexport * as Layout from \"@echothink-ui/layout\";\nexport * as Layouts from \"@echothink-ui/layouts\";\nexport * as Motion from \"@echothink-ui/motion\";\nexport * as Project from \"@echothink-ui/project\";\nexport * as Quality from \"@echothink-ui/quality\";\nexport * as Resources from \"@echothink-ui/resources\";\nexport * as Runtime from \"@echothink-ui/runtime\";\nexport * as Search from \"@echothink-ui/search\";\nexport * as Skills from \"@echothink-ui/skills\";\nexport * as Style from \"@echothink-ui/style\";\nexport * as Task from \"@echothink-ui/task\";\nexport * as Templates from \"@echothink-ui/templates\";\nexport * as Todo from \"@echothink-ui/todo\";\nexport * as Tokens from \"@echothink-ui/tokens\";\nexport * as Validators from \"@echothink-ui/validators\";\nexport * as Voice from \"@echothink-ui/voice\";\nexport * as WorkbenchRuntime from \"@echothink-ui/workbench-runtime\";\nexport * as Workflow from \"@echothink-ui/workflow\";\n"],"mappings":";AAAA,cAAc;AACd,cAAc;AACd,cAAc;AAEd,YAAY,mBAAmB;AAC/B,YAAY,cAAc;AAC1B,YAAY,WAAW;AACvB,YAAY,WAAW;AACvB,YAAY,gBAAgB;AAC5B,YAAY,eAAe;AAC3B,YAAY,cAAc;AAC1B,YAAY,iBAAiB;AAC7B,YAAY,YAAY;AACxB,YAAY,UAAU;AACtB,YAAY,UAAU;AACtB,YAAY,eAAe;AAC3B,YAAY,eAAe;AAC3B,YAAY,mBAAmB;AAC/B,YAAY,YAAY;AACxB,YAAY,WAAW;AACvB,YAAY,WAAW;AACvB,YAAY,cAAc;AAC1B,YAAY,WAAW;AACvB,YAAY,YAAY;AACxB,YAAY,aAAa;AACzB,YAAY,YAAY;AACxB,YAAY,aAAa;AACzB,YAAY,aAAa;AACzB,YAAY,eAAe;AAC3B,YAAY,aAAa;AACzB,YAAY,YAAY;AACxB,YAAY,YAAY;AACxB,YAAY,WAAW;AACvB,YAAY,UAAU;AACtB,YAAY,eAAe;AAC3B,YAAY,UAAU;AACtB,YAAY,YAAY;AACxB,YAAY,gBAAgB;AAC5B,YAAY,WAAW;AACvB,YAAY,sBAAsB;AAClC,YAAY,cAAc;","names":[]}
|
package/package.json
ADDED
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "echothink-ui",
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"private": false,
|
|
5
|
+
"type": "module",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.css"
|
|
8
|
+
],
|
|
9
|
+
"main": "./dist/index.cjs",
|
|
10
|
+
"module": "./dist/index.js",
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"style": "./src/styles.css",
|
|
13
|
+
"styles": "./src/styles.css",
|
|
14
|
+
"exports": {
|
|
15
|
+
".": {
|
|
16
|
+
"types": "./dist/index.d.ts",
|
|
17
|
+
"import": "./dist/index.js",
|
|
18
|
+
"require": "./dist/index.cjs"
|
|
19
|
+
},
|
|
20
|
+
"./styles.css": "./src/styles.css"
|
|
21
|
+
},
|
|
22
|
+
"files": [
|
|
23
|
+
"dist",
|
|
24
|
+
"src",
|
|
25
|
+
"README.md"
|
|
26
|
+
],
|
|
27
|
+
"peerDependencies": {
|
|
28
|
+
"react": ">=18.3.0",
|
|
29
|
+
"react-dom": ">=18.3.0"
|
|
30
|
+
},
|
|
31
|
+
"dependencies": {
|
|
32
|
+
"@echothink-ui/admin": "0.1.0",
|
|
33
|
+
"@echothink-ui/agent": "0.1.0",
|
|
34
|
+
"@echothink-ui/app-domain": "0.1.0",
|
|
35
|
+
"@echothink-ui/charts": "0.2.0",
|
|
36
|
+
"@echothink-ui/core": "0.2.0",
|
|
37
|
+
"@echothink-ui/data": "0.2.0",
|
|
38
|
+
"@echothink-ui/calendar": "0.1.0",
|
|
39
|
+
"@echothink-ui/developer": "0.1.0",
|
|
40
|
+
"@echothink-ui/documents": "0.1.0",
|
|
41
|
+
"@echothink-ui/domain-widgets": "0.1.0",
|
|
42
|
+
"@echothink-ui/activity": "0.1.0",
|
|
43
|
+
"@echothink-ui/annotation": "0.1.0",
|
|
44
|
+
"@echothink-ui/accessibility": "0.1.0",
|
|
45
|
+
"@echothink-ui/forms": "0.2.0",
|
|
46
|
+
"@echothink-ui/inbox": "0.1.0",
|
|
47
|
+
"@echothink-ui/identity": "0.1.0",
|
|
48
|
+
"@echothink-ui/icons": "0.2.0",
|
|
49
|
+
"@echothink-ui/layouts": "0.2.0",
|
|
50
|
+
"@echothink-ui/project": "0.1.0",
|
|
51
|
+
"@echothink-ui/carbon-theme": "0.2.0",
|
|
52
|
+
"@echothink-ui/runtime": "0.1.0",
|
|
53
|
+
"@echothink-ui/resources": "0.1.0",
|
|
54
|
+
"@echothink-ui/quality": "0.1.0",
|
|
55
|
+
"@echothink-ui/events": "0.1.0",
|
|
56
|
+
"@echothink-ui/motion": "0.1.0",
|
|
57
|
+
"@echothink-ui/skills": "0.1.0",
|
|
58
|
+
"@echothink-ui/task": "0.1.0",
|
|
59
|
+
"@echothink-ui/layout": "0.2.0",
|
|
60
|
+
"@echothink-ui/search": "0.1.0",
|
|
61
|
+
"@echothink-ui/todo": "0.1.0",
|
|
62
|
+
"@echothink-ui/style": "0.2.0",
|
|
63
|
+
"@echothink-ui/templates": "0.2.0",
|
|
64
|
+
"@echothink-ui/tokens": "0.2.0",
|
|
65
|
+
"@echothink-ui/workflow": "0.1.0",
|
|
66
|
+
"@echothink-ui/validators": "0.2.0",
|
|
67
|
+
"@echothink-ui/voice": "0.1.0",
|
|
68
|
+
"@echothink-ui/workbench-runtime": "0.1.0"
|
|
69
|
+
},
|
|
70
|
+
"publishConfig": {
|
|
71
|
+
"access": "public"
|
|
72
|
+
},
|
|
73
|
+
"scripts": {
|
|
74
|
+
"build": "tsup src/index.tsx --format esm,cjs --sourcemap --clean --external react --external react-dom && tsc -p tsconfig.json --declaration --emitDeclarationOnly --noEmit false --outDir dist",
|
|
75
|
+
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
76
|
+
"test": "vitest run --config ../../vitest.config.ts --passWithNoTests",
|
|
77
|
+
"lint": "eslint src"
|
|
78
|
+
}
|
|
79
|
+
}
|
package/src/index.tsx
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
export * from "@echothink-ui/core";
|
|
2
|
+
export * from "@echothink-ui/style";
|
|
3
|
+
export * from "@echothink-ui/layout";
|
|
4
|
+
|
|
5
|
+
export * as Accessibility from "@echothink-ui/accessibility";
|
|
6
|
+
export * as Activity from "@echothink-ui/activity";
|
|
7
|
+
export * as Admin from "@echothink-ui/admin";
|
|
8
|
+
export * as Agent from "@echothink-ui/agent";
|
|
9
|
+
export * as Annotation from "@echothink-ui/annotation";
|
|
10
|
+
export * as AppDomain from "@echothink-ui/app-domain";
|
|
11
|
+
export * as Calendar from "@echothink-ui/calendar";
|
|
12
|
+
export * as CarbonTheme from "@echothink-ui/carbon-theme";
|
|
13
|
+
export * as Charts from "@echothink-ui/charts";
|
|
14
|
+
export * as Core from "@echothink-ui/core";
|
|
15
|
+
export * as Data from "@echothink-ui/data";
|
|
16
|
+
export * as Developer from "@echothink-ui/developer";
|
|
17
|
+
export * as Documents from "@echothink-ui/documents";
|
|
18
|
+
export * as DomainWidgets from "@echothink-ui/domain-widgets";
|
|
19
|
+
export * as Events from "@echothink-ui/events";
|
|
20
|
+
export * as Forms from "@echothink-ui/forms";
|
|
21
|
+
export * as Icons from "@echothink-ui/icons";
|
|
22
|
+
export * as Identity from "@echothink-ui/identity";
|
|
23
|
+
export * as Inbox from "@echothink-ui/inbox";
|
|
24
|
+
export * as Layout from "@echothink-ui/layout";
|
|
25
|
+
export * as Layouts from "@echothink-ui/layouts";
|
|
26
|
+
export * as Motion from "@echothink-ui/motion";
|
|
27
|
+
export * as Project from "@echothink-ui/project";
|
|
28
|
+
export * as Quality from "@echothink-ui/quality";
|
|
29
|
+
export * as Resources from "@echothink-ui/resources";
|
|
30
|
+
export * as Runtime from "@echothink-ui/runtime";
|
|
31
|
+
export * as Search from "@echothink-ui/search";
|
|
32
|
+
export * as Skills from "@echothink-ui/skills";
|
|
33
|
+
export * as Style from "@echothink-ui/style";
|
|
34
|
+
export * as Task from "@echothink-ui/task";
|
|
35
|
+
export * as Templates from "@echothink-ui/templates";
|
|
36
|
+
export * as Todo from "@echothink-ui/todo";
|
|
37
|
+
export * as Tokens from "@echothink-ui/tokens";
|
|
38
|
+
export * as Validators from "@echothink-ui/validators";
|
|
39
|
+
export * as Voice from "@echothink-ui/voice";
|
|
40
|
+
export * as WorkbenchRuntime from "@echothink-ui/workbench-runtime";
|
|
41
|
+
export * as Workflow from "@echothink-ui/workflow";
|
package/src/styles.css
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
@import "@echothink-ui/core/styles.css";
|
|
2
|
+
@import "@echothink-ui/data/styles.css";
|
|
3
|
+
@import "@echothink-ui/layout/styles.css";
|
|
4
|
+
@import "@echothink-ui/layouts/styles.css";
|
|
5
|
+
@import "@echothink-ui/charts/styles.css";
|
|
6
|
+
@import "@echothink-ui/forms/styles.css";
|
|
7
|
+
@import "@echothink-ui/style/styles.css";
|