@seeqdev/qomponents 0.0.159-patch-package-alternative → 0.0.160

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,7 +1,5 @@
1
1
  import React, { MouseEvent } from 'react';
2
2
  import { TooltipProps } from '../Tooltip/Tooltip.types';
3
- export declare const tooltipPositions: readonly ['top', 'left', 'right', 'bottom'];
4
- export type TooltipPosition = (typeof tooltipPositions)[number];
5
3
  export declare const toolbarButtonVariants: readonly ["outline", "theme", "theme-light", "warning", "danger", "no-border"];
6
4
  export type ToolbarButtonVariant = (typeof toolbarButtonVariants)[number];
7
5
  /**
@@ -43,3 +43,4 @@ export { Slider };
43
43
  export { ProgressBar };
44
44
  export { ButtonGroup };
45
45
  export { Carousel };
46
+ export * from './types';
@@ -1,2 +1,27 @@
1
1
  export type InputGroupPlacement = 'left' | 'right' | undefined;
2
2
  export type FormControlElement = HTMLInputElement | HTMLSelectElement | HTMLTextAreaElement;
3
+ export * from './Accordion/Accordion.types';
4
+ export * from './Alert/Alert.types';
5
+ export * from './Button/Button.types';
6
+ export * from './ButtonGroup/ButtonGroup.types';
7
+ export * from './ButtonWithDropdown/ButtonWithDropdown.types';
8
+ export * from './ButtonWithPopover/ButtonWithPopover.types';
9
+ export * from './Carousel/Carousel.types';
10
+ export * from './Checkbox/Checkbox.types';
11
+ export * from './Collapse/Collapse.types';
12
+ export * from './Icon/Icon.types';
13
+ export * from './InputGroup/InputGroup.types';
14
+ export * from './Modal/Modal.types';
15
+ export * from './ProgressBar/ProgressBar.types';
16
+ export * from './SeeqActionDropdown/SeeqActionDropdown.types';
17
+ export * from './Select/Select.types';
18
+ export * from './Slider/Slider.types';
19
+ export * from './SvgIcon/SvgIcon.types';
20
+ export * from './Tabs/Tabs.types';
21
+ export * from './TextArea/TextArea.types';
22
+ export * from './TextField/TextField.types';
23
+ export * from './ToolbarButton/ToolbarButton.types';
24
+ export * from './Tooltip/QTip.types';
25
+ export * from './Tooltip/Tooltip.types';
26
+ export type { ToolbarButtonVariant, ToolbarButtonProps } from './ToolbarButton/ToolbarButton.types';
27
+ export { toolbarButtonVariants } from './ToolbarButton/ToolbarButton.types';
package/dist/styles.css CHANGED
@@ -2278,6 +2278,10 @@ ol,
2278
2278
  max-width: 72rem;
2279
2279
  }
2280
2280
 
2281
+ .tw-max-w-96 {
2282
+ max-width: 24rem;
2283
+ }
2284
+
2281
2285
  .tw-max-w-full {
2282
2286
  max-width: 100%;
2283
2287
  }
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@seeqdev/qomponents",
3
- "version": "0.0.159-patch-package-alternative",
3
+ "version": "0.0.160",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.esm.js",
6
- "types": "dist/index.js",
6
+ "types": "dist/src/index.d.ts",
7
7
  "skip-lib-check": true,
8
8
  "files": [
9
9
  "dist"
@@ -18,7 +18,6 @@
18
18
  "description": "A library that allows you to build native UIs ... TODO",
19
19
  "scripts": {
20
20
  "build": "rollup -c --bundleConfigAsCjs",
21
- "postinstall": "node ./node_modules/patch-package/index.js --patch-dir=patches",
22
21
  "watchRollup": "rollup -c --bundleConfigAsCjs --watch",
23
22
  "test": "jest",
24
23
  "test:watch": "jest --watch",
@@ -56,7 +55,6 @@
56
55
  "jest-environment-jsdom": "29.7.0",
57
56
  "jest-junit": "16.0.0",
58
57
  "jest-silent-reporter": "0.5.0",
59
- "patch-package": "8.0.0",
60
58
  "postcss-import": "16.0.0",
61
59
  "react": "19.1.0",
62
60
  "react-dom": "19.1.0",