@gataca/design-system 0.3.95 → 0.3.97

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.
Files changed (31) hide show
  1. package/dist/components/index.web.d.ts +1 -0
  2. package/dist/components/native/Action/ActionItems/actionItems_styles.native.d.ts +8 -8
  3. package/dist/components/native/Alerts/Alert/Alert_styles.native.d.ts +1 -1
  4. package/dist/components/native/BottomSticky/BottomStickyContainer/bottomStickyContainer_styles.native.d.ts +3 -3
  5. package/dist/components/native/Buttons/Button/styles.native.d.ts +2 -2
  6. package/dist/components/native/Buttons/RoundedButton/styles.native.d.ts +2 -2
  7. package/dist/components/native/Buttons/SegmentedButton/styles.native.d.ts +2 -2
  8. package/dist/components/native/Cards/Consent/consentCard_styles.native.d.ts +1 -1
  9. package/dist/components/native/Cards/Credential/credential_styles.native.d.ts +3 -3
  10. package/dist/components/native/Cards/HeadingAvatars/headingAvatarsCard_styles.native.d.ts +2 -2
  11. package/dist/components/native/Cards/MiniCredential/miniCredential_styles.native.d.ts +2 -2
  12. package/dist/components/native/Chips/Chip/styles.native.d.ts +1 -1
  13. package/dist/components/native/Dialog/Dialog/dialog_styles.native.d.ts +11 -11
  14. package/dist/components/native/Drawer/BottomDrawer/bottomDrawer_styles.native.d.ts +6 -6
  15. package/dist/components/native/Headings/HeadingCredential/HeadingCredential_styles.native.d.ts +8 -8
  16. package/dist/components/native/Indicator/Indicator/indicator_styles.native.d.ts +1 -1
  17. package/dist/components/native/Lists/List/list_styles.native.d.ts +1 -1
  18. package/dist/components/native/Lists/ListItem/listItem_styles.native.d.ts +3 -3
  19. package/dist/components/native/NavBar/NavigationBar/navigationBar_styles.native.d.ts +1 -1
  20. package/dist/components/native/Popover/popover_styles.native.d.ts +14 -14
  21. package/dist/components/native/TextField/TextField/textField_styles.native.d.ts +3 -3
  22. package/dist/components/native/Tooltips/Tooltip/tooltip_styles.native.d.ts +2 -2
  23. package/dist/components/native/TopAppBar/TopAppBar/topAppBar_styles.native.d.ts +2 -2
  24. package/dist/components/native/TopAppBar/TopDrawerBar/topDrawerBar_styles.native.d.ts +2 -2
  25. package/dist/components/web/HoverObserver/HoverObserver.web.d.ts +35 -0
  26. package/dist/components/web/HoverObserver/index.web.d.ts +2 -0
  27. package/dist/index.web.js +1 -1
  28. package/dist/index.web.js.map +1 -1
  29. package/dist/utils/format.d.ts +6 -0
  30. package/dist/utils/noop.d.ts +2 -0
  31. package/package.json +4 -1
@@ -0,0 +1,6 @@
1
+ type OmitFunction = (value: any, key: string, obj: Record<string, any>) => boolean;
2
+ type OmitType = (obj: Record<string, any>, props?: string | string[] | OmitFunction, fn?: OmitFunction) => Record<string, any>;
3
+ export declare const isPlainObject: (o: any) => boolean;
4
+ export declare const isExtendable: (val: any) => boolean;
5
+ declare const omit: OmitType;
6
+ export default omit;
@@ -0,0 +1,2 @@
1
+ declare const _default: () => void;
2
+ export default _default;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "homepage": "https://gataca-io.github.io/design-system",
3
3
  "name": "@gataca/design-system",
4
- "version": "0.3.95",
4
+ "version": "0.3.97",
5
5
  "files": [
6
6
  "dist"
7
7
  ],
@@ -58,6 +58,8 @@
58
58
  "@storybook/addon-themes": "^8.3.4",
59
59
  "@types/react-native-web": "^0.19.0",
60
60
  "babel-plugin-module-resolver": "^5.0.2",
61
+ "object-assign": "^4.1.1",
62
+ "prop-types": "^15.6.0",
61
63
  "react": "18.3.1",
62
64
  "react-device-detect": "^2.2.3",
63
65
  "react-native": "0.75.3",
@@ -101,6 +103,7 @@
101
103
  "@storybook/react-webpack5": "8.2.5",
102
104
  "@storybook/theming": "^8.3.4",
103
105
  "@types/node": "^14.14.35",
106
+ "@types/object-assign": "^4.0.33",
104
107
  "@types/react": "^18.2.6",
105
108
  "@types/react-test-renderer": "^18.0.0",
106
109
  "babel-jest": "^29.6.3",