@orchestrator-ui/orchestrator-ui-components 2.13.0 → 2.14.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.
@@ -1,12 +1,12 @@
1
1
 
2
- > @orchestrator-ui/orchestrator-ui-components@2.13.0 build
2
+ > @orchestrator-ui/orchestrator-ui-components@2.14.0 build
3
3
  > npm run generate-version && tsup src/index.ts
4
4
 
5
5
 
6
- > @orchestrator-ui/orchestrator-ui-components@2.13.0 generate-version
6
+ > @orchestrator-ui/orchestrator-ui-components@2.14.0 generate-version
7
7
  > node -p "'export const ORCHESTRATOR_UI_LIBRARY_VERSION = ' + JSON.stringify(require('./package.json').version) + ';'" > src/configuration/version.ts && prettier --write src/configuration/version.ts
8
8
 
9
- src/configuration/version.ts 169ms
9
+ src/configuration/version.ts 124ms
10
10
  CLI Building entry: src/index.ts
11
11
  CLI Using tsconfig: tsconfig.build.json
12
12
  CLI tsup v8.3.5
@@ -15,7 +15,7 @@ src/configuration/version.ts 169ms
15
15
  ESM Build start
16
16
  DTS Build start
17
17
  ESM dist/index.js 1.92 MB
18
- ESM dist/index.js.map 3.49 MB
19
- ESM ⚡️ Build success in 483ms
20
- DTS ⚡️ Build success in 17723ms
21
- DTS dist/index.d.ts 652.66 KB
18
+ ESM dist/index.js.map 3.50 MB
19
+ ESM ⚡️ Build success in 457ms
20
+ DTS ⚡️ Build success in 17796ms
21
+ DTS dist/index.d.ts 652.80 KB
@@ -1,5 +1,5 @@
1
1
 
2
- > @orchestrator-ui/orchestrator-ui-components@2.13.0 lint
2
+ > @orchestrator-ui/orchestrator-ui-components@2.14.0 lint
3
3
  > eslint "src/**/*.ts*"
4
4
 
5
5
 
@@ -1,15 +1,15 @@
1
1
 
2
- > @orchestrator-ui/orchestrator-ui-components@2.13.0 test
2
+ > @orchestrator-ui/orchestrator-ui-components@2.14.0 test
3
3
  > jest
4
4
 
5
+ PASS Wfo-UI Tests src/components/WfoSubscription/utils/utils.spec.ts
5
6
  PASS Wfo-UI Tests src/components/WfoTree/treeUtils.spec.ts
6
7
  PASS Wfo-UI Tests src/components/WfoForms/formFields/utils.spec.ts
7
- PASS Wfo-UI Tests src/components/WfoSubscription/utils/utils.spec.ts
8
+ PASS Wfo-UI Tests src/pages/processes/timelineUtils.spec.ts
8
9
  PASS Wfo-UI Tests src/utils/date.spec.ts
9
10
  PASS Wfo-UI Tests src/utils/string.spec.ts
10
- PASS Wfo-UI Tests src/pages/processes/timelineUtils.spec.ts
11
- PASS Wfo-UI Tests src/components/WfoTable/WfoTable/WfoGroupedTable/utils.spec.ts
12
11
  PASS Wfo-UI Tests src/utils/getProductNamesFromProcess.spec.ts
12
+ PASS Wfo-UI Tests src/components/WfoTable/WfoTable/WfoGroupedTable/utils.spec.ts
13
13
  PASS Wfo-UI Tests src/components/WfoTable/WfoTableWithFilter/updateQueryString.spec.ts
14
14
  PASS Wfo-UI Tests src/components/WfoTable/utils/tableConfigPersistence.spec.ts
15
15
  PASS Wfo-UI Tests src/components/WfoTable/utils/tableUtils.spec.ts
@@ -31,12 +31,12 @@ PASS Wfo-UI Tests src/utils/onlyUnique.spec.ts
31
31
  PASS Wfo-UI Tests src/utils/uuid.spec.ts
32
32
  PASS Wfo-UI Tests src/utils/getTypedFieldFromObject.spec.ts
33
33
  PASS Wfo-UI Tests src/utils/cacheTag.spec.ts
34
- PASS Wfo-UI Tests src/components/WfoPageTemplate/WfoPageHeader/utils/toHexColorWithOpacity.spec.ts
35
34
  PASS Wfo-UI Tests src/utils/getQueryVariablesForExport.spec.ts
36
- PASS Wfo-UI Tests src/components/WfoTable/WfoTable/utils.spec.ts (5.882 s)
35
+ PASS Wfo-UI Tests src/components/WfoPageTemplate/WfoPageHeader/utils/toHexColorWithOpacity.spec.ts
36
+ PASS Wfo-UI Tests src/components/WfoTable/WfoTable/utils.spec.ts (5.655 s)
37
37
 
38
38
  Test Suites: 32 passed, 32 total
39
39
  Tests: 197 passed, 197 total
40
40
  Snapshots: 0 total
41
- Time: 8.045 s
41
+ Time: 8.012 s
42
42
  Ran all test suites.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @orchestrator-ui/orchestrator-ui-components
2
2
 
3
+ ## 2.14.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 0172be2: Adds resizable table columns
8
+
3
9
  ## 2.13.0
4
10
 
5
11
  ### Minor Changes
package/dist/index.d.ts CHANGED
@@ -11007,19 +11007,21 @@ declare const WfoTable: <T extends object>({ data, columnConfig, hiddenColumns,
11007
11007
 
11008
11008
  declare const TABLE_ROW_HEIGHT = "40px";
11009
11009
 
11010
- declare const getWfoTableStyles: ({ theme }: WfoTheme) => {
11010
+ declare const getWfoTableStyles: ({ theme, isDarkThemeActive }: WfoTheme) => {
11011
11011
  tableContainerStyle: _emotion_react.SerializedStyles;
11012
11012
  tableStyle: _emotion_react.SerializedStyles;
11013
11013
  headerStyle: _emotion_react.SerializedStyles;
11014
+ headerCellContainer: _emotion_react.SerializedStyles;
11014
11015
  bodyLoadingStyle: _emotion_react.SerializedStyles;
11015
11016
  rowStyle: _emotion_react.SerializedStyles;
11016
11017
  dataRowStyle: _emotion_react.SerializedStyles;
11017
11018
  expandedRowStyle: _emotion_react.SerializedStyles;
11018
- headerCellStyle: _emotion_react.SerializedStyles;
11019
+ sortableHeaderCellStyle: _emotion_react.SerializedStyles;
11019
11020
  cellStyle: _emotion_react.SerializedStyles;
11020
11021
  cellContentStyle: _emotion_react.SerializedStyles;
11021
11022
  emptyTableMessageStyle: _emotion_react.SerializedStyles;
11022
11023
  clickableStyle: _emotion_react.SerializedStyles;
11024
+ dragAndDropStyle: _emotion_react.SerializedStyles;
11023
11025
  setWidth: (width?: CSSProperties["width"]) => false | _emotion_react.SerializedStyles;
11024
11026
  };
11025
11027
 
@@ -14462,7 +14464,7 @@ declare const IPAM_IP_BLOCKS_ENDPOINT = "surf/ipam/ip_blocks";
14462
14464
  declare const IPAM_FREE_SUBNETS_ENDPOINT = "surf/ipam/free_subnets";
14463
14465
  declare const SUBSCRIPTION_ACTIONS_ENDPOINT = "subscriptions/workflows";
14464
14466
 
14465
- declare const ORCHESTRATOR_UI_LIBRARY_VERSION = "2.13.0";
14467
+ declare const ORCHESTRATOR_UI_LIBRARY_VERSION = "2.14.0";
14466
14468
 
14467
14469
  declare const useGetTranslationMessages: (locale: string | undefined) => {
14468
14470
  pydanticForms: {