@orchestrator-ui/orchestrator-ui-components 0.1.1 → 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/.turbo/turbo-build.log +11 -0
- package/.turbo/turbo-lint.log +15 -0
- package/.turbo/turbo-test.log +19 -0
- package/.turbo/turbo-tsc.log +1 -0
- package/CHANGELOG.md +12 -0
- package/dist/index.d.ts +483 -474
- package/dist/index.js +191 -29
- package/eslintrc.js +1 -1
- package/jest.config.cjs +7 -0
- package/package.json +13 -2
- package/src/components/Subscription/ProcessesTimeline.tsx +1 -1
- package/src/components/Subscription/SubscriptionActions.tsx +7 -5
- package/src/components/Subscription/SubscriptionBlock.tsx +4 -2
- package/src/components/Subscription/SubscriptionDetailTree.tsx +6 -7
- package/src/components/Subscription/SubscriptionGeneral.tsx +6 -2
- package/src/components/SubscriptionsTabs/SubscriptionsTabs.tsx +25 -21
- package/src/components/Tree/TreeBranch.tsx +1 -1
- package/src/components/Tree/TreeNode.tsx +3 -1
- package/src/index.ts +1 -0
- package/src/messages/en-US.json +72 -0
- package/src/messages/getTranslationMessages.spec.ts +51 -0
- package/src/messages/getTranslationMessages.ts +26 -0
- package/src/messages/index.ts +1 -0
- package/src/messages/nl-NL.json +50 -0
- package/src/types.ts +6 -0
- package/tsconfig.tsbuildinfo +1 -0
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
$ tsup src/index.ts --format esm --dts
|
|
2
|
+
[34mCLI[39m Building entry: src/index.ts
|
|
3
|
+
[34mCLI[39m Using tsconfig: tsconfig.json
|
|
4
|
+
[34mCLI[39m tsup v7.1.0
|
|
5
|
+
[34mCLI[39m Target: node16
|
|
6
|
+
[34mESM[39m Build start
|
|
7
|
+
[32mESM[39m [1mdist\index.js [22m[32m111.65 KB[39m
|
|
8
|
+
[32mESM[39m ⚡️ Build success in 90ms
|
|
9
|
+
[34mDTS[39m Build start
|
|
10
|
+
[32mDTS[39m ⚡️ Build success in 3670ms
|
|
11
|
+
[32mDTS[39m [1mdist\index.d.ts [22m[32m24.53 KB[39m
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
$ eslint "src/**/*.ts*"
|
|
2
|
+
|
|
3
|
+
C:\development\surf\orchestrator-ui\packages\orchestrator-ui-components\src\components\OrchestratorPageTemplate\OrchestratorPageHeader\OrchestratorPageHeader.stories.tsx
|
|
4
|
+
17:17 warning Using `<img>` could result in slower LCP and higher bandwidth. Consider using `<Image />` from `next/image` to automatically optimize images. This may incur additional usage or cost from your provider. See: https://nextjs.org/docs/messages/no-img-element @next/next/no-img-element
|
|
5
|
+
|
|
6
|
+
C:\development\surf\orchestrator-ui\packages\orchestrator-ui-components\src\components\OrchestratorPageTemplate\OrchestratorPageTemplate\OrchestratorPageTemplate.stories.tsx
|
|
7
|
+
17:17 warning Using `<img>` could result in slower LCP and higher bandwidth. Consider using `<Image />` from `next/image` to automatically optimize images. This may incur additional usage or cost from your provider. See: https://nextjs.org/docs/messages/no-img-element @next/next/no-img-element
|
|
8
|
+
|
|
9
|
+
C:\development\surf\orchestrator-ui\packages\orchestrator-ui-components\src\components\Table\DataGridTable\DataGridTable.tsx
|
|
10
|
+
103:28 warning 'props' is defined but never used @typescript-eslint/no-unused-vars
|
|
11
|
+
|
|
12
|
+
✖ 3 problems (0 errors, 3 warnings)
|
|
13
|
+
|
|
14
|
+
(node:11940) [DEP0128] DeprecationWarning: Invalid 'main' field in 'C:\development\surf\orchestrator-ui\node_modules\@orchestrator-ui\eslint-config-custom\package.json' of './dist/index.js'. Please either fix that or report it to the module author
|
|
15
|
+
(Use `node --trace-deprecation ...` to show where the warning was created)
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
yarn run v1.22.19
|
|
2
|
+
$ jest
|
|
3
|
+
PASS Orchestrator UI Components Tests src/utils/getTypedFieldFromObject.spec.ts
|
|
4
|
+
PASS Orchestrator UI Components Tests src/components/Table/DataGridTable/dataGridColumns.spec.ts
|
|
5
|
+
PASS Orchestrator UI Components Tests src/utils/uuid.spec.ts
|
|
6
|
+
PASS Orchestrator UI Components Tests src/utils/string.spec.ts
|
|
7
|
+
PASS Orchestrator UI Components Tests src/components/Table/utils/tableConfigPersistence.spec.ts
|
|
8
|
+
PASS Orchestrator UI Components Tests src/components/Table/utils/columns.spec.ts
|
|
9
|
+
PASS Orchestrator UI Components Tests src/utils/getTokenName.spec.ts
|
|
10
|
+
PASS Orchestrator UI Components Tests src/components/Table/utils/tableUtils.spec.ts
|
|
11
|
+
PASS Orchestrator UI Components Tests src/utils/date.spec.ts
|
|
12
|
+
PASS Orchestrator UI Components Tests src/components/SubscriptionsTabs/getSubscriptionsTabTypeFromString.spec.ts
|
|
13
|
+
|
|
14
|
+
Test Suites: 10 passed, 10 total
|
|
15
|
+
Tests: 50 passed, 50 total
|
|
16
|
+
Snapshots: 0 total
|
|
17
|
+
Time: 4.16 s
|
|
18
|
+
Ran all test suites.
|
|
19
|
+
Done in 5.13s.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
$ tsc --noEmit
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @orchestrator-ui/orchestrator-ui-components
|
|
2
2
|
|
|
3
|
+
## 0.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 6c4cb21: Added translation setup and next-inl configuration. Translation strings are now available when using the useTranslations hook. For more on how to add translations refer to apps/wfo-ui/translations/README.md
|
|
8
|
+
|
|
9
|
+
## 0.1.2
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 0cef169: Splitted WFO in separate packages
|
|
14
|
+
|
|
3
15
|
## 0.1.1
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|