@ship-it-ui/shipit 0.0.13 → 0.0.15
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/index.d.cts +2 -3
- package/dist/index.d.ts +2 -3
- package/package.json +8 -8
package/dist/index.d.cts
CHANGED
|
@@ -2,7 +2,6 @@ import { BadgeProps, DataTableProps, DataTableColumn } from '@ship-it-ui/ui';
|
|
|
2
2
|
export { cn } from '@ship-it-ui/ui';
|
|
3
3
|
import * as react from 'react';
|
|
4
4
|
import { HTMLAttributes, ReactNode, ButtonHTMLAttributes, MouseEventHandler, SVGAttributes, Ref } from 'react';
|
|
5
|
-
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
6
5
|
import { ConnectorName } from '@ship-it-ui/icons';
|
|
7
6
|
|
|
8
7
|
/**
|
|
@@ -403,7 +402,7 @@ interface EntityListRowProps extends Omit<HTMLAttributes<HTMLElement>, 'title' |
|
|
|
403
402
|
* supplied, otherwise `EntityListRowDiv`. Does not forward refs — when you
|
|
404
403
|
* need a typed ref, reach for the specialized component directly.
|
|
405
404
|
*/
|
|
406
|
-
declare function EntityListRow({ type, name, relation, meta, hideGlyph, actions, onClick, className, ...props }: EntityListRowProps):
|
|
405
|
+
declare function EntityListRow({ type, name, relation, meta, hideGlyph, actions, onClick, className, ...props }: EntityListRowProps): react.JSX.Element;
|
|
407
406
|
declare namespace EntityListRow {
|
|
408
407
|
var displayName: string;
|
|
409
408
|
}
|
|
@@ -732,7 +731,7 @@ type EntityTableProps<T extends MinimalEntity> = Omit<DataTableProps<T>, 'rowKey
|
|
|
732
731
|
};
|
|
733
732
|
declare function EntityTable<T extends MinimalEntity>(props: EntityTableProps<T> & {
|
|
734
733
|
ref?: Ref<HTMLTableElement>;
|
|
735
|
-
}):
|
|
734
|
+
}): react.JSX.Element;
|
|
736
735
|
/**
|
|
737
736
|
* Pre-built column for the entity name. Renders the type glyph (in the type's
|
|
738
737
|
* tone) followed by the name in mono. Sorts on `name`.
|
package/dist/index.d.ts
CHANGED
|
@@ -2,7 +2,6 @@ import { BadgeProps, DataTableProps, DataTableColumn } from '@ship-it-ui/ui';
|
|
|
2
2
|
export { cn } from '@ship-it-ui/ui';
|
|
3
3
|
import * as react from 'react';
|
|
4
4
|
import { HTMLAttributes, ReactNode, ButtonHTMLAttributes, MouseEventHandler, SVGAttributes, Ref } from 'react';
|
|
5
|
-
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
6
5
|
import { ConnectorName } from '@ship-it-ui/icons';
|
|
7
6
|
|
|
8
7
|
/**
|
|
@@ -403,7 +402,7 @@ interface EntityListRowProps extends Omit<HTMLAttributes<HTMLElement>, 'title' |
|
|
|
403
402
|
* supplied, otherwise `EntityListRowDiv`. Does not forward refs — when you
|
|
404
403
|
* need a typed ref, reach for the specialized component directly.
|
|
405
404
|
*/
|
|
406
|
-
declare function EntityListRow({ type, name, relation, meta, hideGlyph, actions, onClick, className, ...props }: EntityListRowProps):
|
|
405
|
+
declare function EntityListRow({ type, name, relation, meta, hideGlyph, actions, onClick, className, ...props }: EntityListRowProps): react.JSX.Element;
|
|
407
406
|
declare namespace EntityListRow {
|
|
408
407
|
var displayName: string;
|
|
409
408
|
}
|
|
@@ -732,7 +731,7 @@ type EntityTableProps<T extends MinimalEntity> = Omit<DataTableProps<T>, 'rowKey
|
|
|
732
731
|
};
|
|
733
732
|
declare function EntityTable<T extends MinimalEntity>(props: EntityTableProps<T> & {
|
|
734
733
|
ref?: Ref<HTMLTableElement>;
|
|
735
|
-
}):
|
|
734
|
+
}): react.JSX.Element;
|
|
736
735
|
/**
|
|
737
736
|
* Pre-built column for the entity name. Renders the type glyph (in the type's
|
|
738
737
|
* tone) followed by the name in mono. Sorts on `name`.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ship-it-ui/shipit",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.15",
|
|
4
4
|
"description": "ShipIt-AI domain composites: AI surfaces, knowledge-graph chrome, entity displays, and marketing components — built on @ship-it-ui/ui.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://ship-it-ops.github.io/ship-it-design/",
|
|
@@ -43,28 +43,28 @@
|
|
|
43
43
|
"peerDependencies": {
|
|
44
44
|
"react": "^19.0.0",
|
|
45
45
|
"react-dom": "^19.0.0",
|
|
46
|
-
"@ship-it-ui/icons": "0.0.
|
|
47
|
-
"@ship-it-ui/ui": "0.0.
|
|
46
|
+
"@ship-it-ui/icons": "0.0.12",
|
|
47
|
+
"@ship-it-ui/ui": "0.0.14"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"@testing-library/jest-dom": "^6.6.3",
|
|
51
51
|
"@testing-library/react": "^16.0.1",
|
|
52
52
|
"@testing-library/user-event": "^14.5.2",
|
|
53
|
-
"@types/react": "^19.2.
|
|
53
|
+
"@types/react": "^19.2.16",
|
|
54
54
|
"@types/react-dom": "^19.2.0",
|
|
55
55
|
"axe-core": "^4.10.2",
|
|
56
56
|
"esbuild-plugin-preserve-directives": "^0.0.11",
|
|
57
57
|
"jsdom": "^29.1.1",
|
|
58
|
-
"react": "^19.2.
|
|
59
|
-
"react-dom": "^19.2.
|
|
58
|
+
"react": "^19.2.7",
|
|
59
|
+
"react-dom": "^19.2.7",
|
|
60
60
|
"tsup": "^8.3.0",
|
|
61
61
|
"typescript": "^5.6.3",
|
|
62
62
|
"vitest": "^2.1.3",
|
|
63
63
|
"vitest-axe": "^0.1.0",
|
|
64
64
|
"@ship-it-ui/eslint-config": "0.0.1",
|
|
65
|
-
"@ship-it-ui/icons": "0.0.11",
|
|
66
65
|
"@ship-it-ui/tokens": "0.0.7",
|
|
67
|
-
"@ship-it-ui/
|
|
66
|
+
"@ship-it-ui/icons": "0.0.12",
|
|
67
|
+
"@ship-it-ui/ui": "0.0.14",
|
|
68
68
|
"@ship-it-ui/tsconfig": "0.0.1"
|
|
69
69
|
},
|
|
70
70
|
"scripts": {
|