@mparticle/aquarium 1.19.2-fix-fix-radio-group-import.1 → 1.19.2

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.ts CHANGED
@@ -31,6 +31,8 @@ import { Col } from 'antd';
31
31
  import { CollapsePanelProps } from 'antd';
32
32
  import { CollapseProps } from 'antd';
33
33
  import { ColorPickerProps } from 'antd';
34
+ import { ColumnsType } from 'antd/es/table';
35
+ import { ColumnType } from 'antd/es/table/interface';
34
36
  import { CompositeUserPreferences } from '../services/user-preferences/models/user-preferences/composite-user-preferences';
35
37
  import { CompositeUserPreferencesService } from '../services/user-preferences/composite-user-preferences-service';
36
38
  import { ConfigOptions } from 'antd/es/message/interface';
@@ -61,6 +63,7 @@ import { DropdownButtonProps } from 'antd/es/dropdown';
61
63
  import { DropdownProps } from 'antd';
62
64
  import { EmptyProps } from 'antd';
63
65
  import { ErrorListProps } from 'antd/es/form';
66
+ import { ExpandableConfig } from 'antd/es/table/interface';
64
67
  import { FC } from 'react';
65
68
  import { FlexProps } from 'antd';
66
69
  import { FloatButtonGroupProps } from 'antd';
@@ -102,8 +105,6 @@ import { Input as Input_2 } from 'antd';
102
105
  import { InputNumberProps } from 'antd';
103
106
  import { InputProps } from 'antd';
104
107
  import { InputRef } from 'antd';
105
- import { IRadioButtonProps } from '../../../../../../../../../src/components/data-entry/Radio/RadioButton';
106
- import { IRadioGroupProps } from '../../../../../../../../../src/components/data-entry/Radio/RadioGroup';
107
108
  import { RowProps as IRowProps } from 'antd';
108
109
  import { IWorkspaceSelectorDisplayItem } from './navigation/GlobalNavigation/WorkspaceSelector/WorkspaceSelectorItems';
109
110
  import { IWorkspaceSelectorItem } from './navigation/GlobalNavigation/WorkspaceSelector/WorkspaceSelectorItems';
@@ -149,6 +150,8 @@ import { PopoverProps } from 'antd';
149
150
  import { ProgressProps } from 'antd';
150
151
  import { QRCodeProps } from 'antd';
151
152
  import { QueryItem } from './data-entry/QueryItem/QueryItem';
153
+ import { RadioButtonProps } from 'antd/es/radio/radioButton';
154
+ import { RadioGroupProps } from 'antd';
152
155
  import { RadioProps } from 'antd';
153
156
  import { RangePickerProps } from 'rc-picker';
154
157
  import { RateProps } from 'antd';
@@ -176,7 +179,8 @@ import { StepsProps } from 'antd';
176
179
  import { SubMenuProps } from 'antd';
177
180
  import { SubMenuType } from 'antd/es/menu/hooks/useItems';
178
181
  import { SwitchProps } from 'antd';
179
- import { TableProps } from 'antd';
182
+ import { TableProps } from 'antd/es/table';
183
+ import { TableProps as TableProps_2 } from 'antd';
180
184
  import { TabPaneProps } from 'antd';
181
185
  import { TabsProps } from 'antd';
182
186
  import { TagProps } from 'antd';
@@ -199,6 +203,7 @@ import { TreeProps } from 'antd';
199
203
  import { TreeSelectProps } from 'antd';
200
204
  import { TypeOpen } from 'antd/es/message/interface';
201
205
  import { TypographyProps } from 'antd';
206
+ import { UploadFile } from 'antd';
202
207
  import { UploadProps } from 'antd';
203
208
  import { UploadRef } from 'antd/es/upload/Upload';
204
209
  import { useAppProps } from 'antd/es/app/context';
@@ -294,6 +299,10 @@ export declare const Collapse: {
294
299
 
295
300
  export declare const ColorPicker: (props: IColorPickerProps) => JSX_2.Element;
296
301
 
302
+ export { ColumnsType }
303
+
304
+ export { ColumnType }
305
+
297
306
  export { CompositeUserPreferences }
298
307
 
299
308
  export { CompositeUserPreferencesService }
@@ -359,6 +368,8 @@ export declare const Empty: {
359
368
  PRESENTED_IMAGE_SIMPLE: ReactNode;
360
369
  };
361
370
 
371
+ export { ExpandableConfig }
372
+
362
373
  export declare const Flex: (props: IFlexProps) => JSX_2.Element;
363
374
 
364
375
  export declare const FloatButton: {
@@ -625,6 +636,12 @@ export declare interface IQRCodeProps extends QRCodeProps {
625
636
 
626
637
  export declare type IQueryItemQualifierOption = DefaultOptionType;
627
638
 
639
+ declare interface IRadioButtonProps extends RadioButtonProps {
640
+ }
641
+
642
+ declare interface IRadioGroupProps extends RadioGroupProps {
643
+ }
644
+
628
645
  export declare interface IRadioProps extends RadioProps {
629
646
  }
630
647
 
@@ -663,7 +680,7 @@ export declare interface IStepsProps extends StepsProps {
663
680
  export declare interface ISwitchProps extends SwitchProps {
664
681
  }
665
682
 
666
- export declare interface ITableProps<RecordType extends AnyObject = AnyObject> extends TableProps<RecordType> {
683
+ export declare interface ITableProps<RecordType extends AnyObject = AnyObject> extends TableProps_2<RecordType> {
667
684
  }
668
685
 
669
686
  export declare interface ITabsProps extends TabsProps {
@@ -709,6 +726,9 @@ declare interface ITypographyProps extends TypographyProps {
709
726
  children: ReactNode;
710
727
  }
711
728
 
729
+ export declare interface IUploadFileProps extends UploadFile {
730
+ }
731
+
712
732
  export declare interface IUploadProps extends UploadProps {
713
733
  }
714
734
 
@@ -878,6 +898,8 @@ export declare const Table: {
878
898
  SELECTION_COLUMN: {};
879
899
  };
880
900
 
901
+ export { TableProps }
902
+
881
903
  export declare const Tabs: {
882
904
  (props: ITabsProps): JSX_2.Element;
883
905
  TabPane: FC<TabPaneProps>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mparticle/aquarium",
3
- "version": "1.19.2-fix-fix-radio-group-import.1",
3
+ "version": "1.19.2",
4
4
  "description": "mParticle Component Library",
5
5
  "license": "Apache-2.0",
6
6
  "keywords": [
@@ -34,24 +34,23 @@
34
34
  "@faker-js/faker": "8.4.1",
35
35
  "@semantic-release/changelog": "6.0.3",
36
36
  "@semantic-release/git": "10.0.1",
37
- "@storybook/addon-essentials": "8.0.0",
38
- "@storybook/addon-interactions": "8.0.0",
39
- "@storybook/addon-links": "8.0.0",
40
- "@storybook/addon-onboarding": "8.0.0",
41
- "@storybook/blocks": "8.0.0",
42
- "@storybook/react": "8.0.0",
43
- "@storybook/react-vite": "8.0.0",
44
- "@storybook/test": "8.0.0",
45
- "@storybook/test-runner": "0.17.0",
37
+ "@storybook/addon-essentials": "8.1.10",
38
+ "@storybook/addon-interactions": "8.1.10",
39
+ "@storybook/addon-links": "8.1.10",
40
+ "@storybook/addon-onboarding": "8.1.10",
41
+ "@storybook/blocks": "8.1.10",
42
+ "@storybook/react": "8.1.10",
43
+ "@storybook/react-vite": "8.1.10",
44
+ "@storybook/test": "8.1.10",
45
+ "@storybook/test-runner": "0.18.2",
46
46
  "@typescript-eslint/eslint-plugin": "6.19.0",
47
47
  "@vitejs/plugin-react": "4.2.1",
48
48
  "concurrently": "8.2.2",
49
49
  "cz-conventional-changelog": "3.3.0",
50
50
  "eslint": "8.56.0",
51
51
  "eslint-config-prettier": "9.1.0",
52
- "eslint-config-standard-with-typescript": "43.0.0",
52
+ "eslint-config-standard-with-typescript": "43.0.1",
53
53
  "eslint-plugin-import": "2.29.1",
54
- "eslint-plugin-n": "16.6.2",
55
54
  "eslint-plugin-promise": "6.1.1",
56
55
  "eslint-plugin-react": "7.33.2",
57
56
  "eslint-plugin-react-hooks": "4.6.0",
@@ -59,22 +58,22 @@
59
58
  "http-server": "14.1.1",
60
59
  "husky": "9.0.11",
61
60
  "jsdom": "24.0.0",
62
- "prettier": "3.1.1",
63
- "storybook": "8.0.0",
61
+ "prettier": "3.3.2",
62
+ "storybook": "8.1.10",
64
63
  "stylelint": "16.2.0",
65
64
  "stylelint-config-recommended": "14.0.0",
66
65
  "stylelint-config-standard": "36.0.0",
67
66
  "stylelint-no-indistinguishable-colors": "2.1.0",
68
67
  "type-fest": "^4.20.0",
69
68
  "typescript": "5.3.3",
70
- "vite": "5.0.12",
69
+ "vite": "5.0.13",
71
70
  "vite-plugin-dts": "3.7.2",
72
71
  "vite-plugin-svgr": "4.2.0",
73
72
  "vitest": "1.3.1",
74
73
  "wait-on": "7.2.0"
75
74
  },
76
75
  "optionalDependencies": {
77
- "@rollup/rollup-linux-x64-gnu": "4.9.6",
76
+ "@rollup/rollup-linux-x64-gnu": "4.18.0",
78
77
  "@swc/core-linux-x64-gnu": "1.4.0",
79
78
  "@swc/core-linux-x64-musl": "1.4.0"
80
79
  },