@oxyhq/bloom 0.1.37 → 0.2.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.
Files changed (48) hide show
  1. package/lib/commonjs/context-menu/index.js +1 -1
  2. package/lib/commonjs/dialog/index.web.js +56 -0
  3. package/lib/commonjs/dialog/index.web.js.map +1 -0
  4. package/lib/commonjs/index.js +56 -56
  5. package/lib/commonjs/index.js.map +1 -1
  6. package/lib/commonjs/index.web.js +386 -0
  7. package/lib/commonjs/index.web.js.map +1 -0
  8. package/lib/commonjs/menu/index.js +1 -1
  9. package/lib/commonjs/prompt/Prompt.js +1 -1
  10. package/lib/commonjs/select/index.js +3 -3
  11. package/lib/commonjs/select/index.js.map +1 -1
  12. package/lib/commonjs/theme/BloomThemeProvider.js +1 -1
  13. package/lib/module/context-menu/index.js +1 -1
  14. package/lib/module/context-menu/index.js.map +1 -1
  15. package/lib/module/dialog/index.web.js +16 -0
  16. package/lib/module/dialog/index.web.js.map +1 -0
  17. package/lib/module/index.js +1 -1
  18. package/lib/module/index.js.map +1 -1
  19. package/lib/module/index.web.js +74 -0
  20. package/lib/module/index.web.js.map +1 -0
  21. package/lib/module/menu/index.js +2 -2
  22. package/lib/module/menu/index.js.map +1 -1
  23. package/lib/module/prompt/Prompt.js +2 -2
  24. package/lib/module/prompt/Prompt.js.map +1 -1
  25. package/lib/module/select/index.js +1 -1
  26. package/lib/module/select/index.js.map +1 -1
  27. package/lib/module/theme/BloomThemeProvider.js +1 -1
  28. package/lib/module/theme/BloomThemeProvider.js.map +1 -1
  29. package/lib/typescript/commonjs/dialog/index.web.d.ts +4 -0
  30. package/lib/typescript/commonjs/dialog/index.web.d.ts.map +1 -0
  31. package/lib/typescript/commonjs/index.web.d.ts +48 -0
  32. package/lib/typescript/commonjs/index.web.d.ts.map +1 -0
  33. package/lib/typescript/module/dialog/index.web.d.ts +4 -0
  34. package/lib/typescript/module/dialog/index.web.d.ts.map +1 -0
  35. package/lib/typescript/module/index.web.d.ts +48 -0
  36. package/lib/typescript/module/index.web.d.ts.map +1 -0
  37. package/package.json +38 -1
  38. package/src/dialog/index.web.ts +14 -0
  39. package/src/index.web.ts +75 -0
  40. package/lib/commonjs/theme/adaptive-colors.web.js +0 -10
  41. package/lib/commonjs/theme/adaptive-colors.web.js.map +0 -1
  42. package/lib/module/theme/adaptive-colors.web.js +0 -6
  43. package/lib/module/theme/adaptive-colors.web.js.map +0 -1
  44. package/lib/typescript/commonjs/theme/adaptive-colors.web.d.ts +0 -3
  45. package/lib/typescript/commonjs/theme/adaptive-colors.web.d.ts.map +0 -1
  46. package/lib/typescript/module/theme/adaptive-colors.web.d.ts +0 -3
  47. package/lib/typescript/module/theme/adaptive-colors.web.d.ts.map +0 -1
  48. package/src/theme/adaptive-colors.web.ts +0 -5
@@ -0,0 +1,75 @@
1
+ // AUTO-GENERATED by scripts/generate-platform-exports.mjs — DO NOT EDIT.
2
+ // Source of truth: src/index.ts.
3
+ // Re-run `bun run generate:exports` (or any `bun run build`) after
4
+ // changing the root barrel or the set of web-forked subpaths.
5
+
6
+ // Theme
7
+ export * from './theme';
8
+
9
+ // Styles & Utilities
10
+ export { atoms, flatten } from './styles';
11
+ export type { ViewStyleProp, TextStyleProp } from './styles';
12
+ export * as tokens from './styles/tokens';
13
+ export { web, native, ios, android, platform, select } from './styles/platform';
14
+
15
+ // Hooks
16
+ export { useInteractionState } from './hooks/useInteractionState';
17
+ export { useDelayedLoading } from './hooks/useDelayedLoading';
18
+ export { useThrottledValue } from './hooks/useThrottledValue';
19
+
20
+ // Icons
21
+ export * as Icons from './icons';
22
+ export { type Props as IconProps, sizes as iconSizes, useCommonSVGProps } from './icons/common';
23
+
24
+ // Core components
25
+ export * from './portal';
26
+ export * as Dialog from './dialog/index.web';
27
+ export * as Prompt from './prompt';
28
+ export * from './button';
29
+ export * from './grouped-buttons';
30
+ export * from './divider';
31
+ export * from './radio-indicator';
32
+ export * from './collapsible';
33
+ export { ErrorBoundary } from './error-boundary';
34
+ export type { ErrorBoundaryProps } from './error-boundary';
35
+ export * from './avatar';
36
+ export * from './loading';
37
+ export * as PromptInput from './prompt-input';
38
+ export * from './switch';
39
+ export * as Toast from './toast/index.web';
40
+
41
+ // Typography
42
+ export * as Typography from './typography';
43
+
44
+ // Layout primitives
45
+ export * as Skeleton from './skeleton';
46
+ export * as Grid from './grid';
47
+ export { Fill } from './fill';
48
+ export { IconCircle } from './icon-circle';
49
+
50
+ // Form components
51
+ export * as TextField from './text-field';
52
+ export * as SegmentedControl from './segmented-control';
53
+ export { SearchInput } from './search-input';
54
+
55
+ // Bottom sheet
56
+ export { BottomSheet } from './bottom-sheet';
57
+ export type { BottomSheetRef, BottomSheetProps } from './bottom-sheet';
58
+
59
+ // Data display
60
+ export * from './card';
61
+ export * from './badge';
62
+ export * from './chip';
63
+ export * as Tabs from './tabs';
64
+ export * from './checkbox';
65
+ export * as Accordion from './accordion';
66
+
67
+ // Settings / Grouped list
68
+ export * from './settings-list';
69
+
70
+ // Overlay components
71
+ export * as Admonition from './admonition';
72
+ export * as Menu from './menu/index.web';
73
+ export * as Tooltip from './tooltip/index.web';
74
+ export * as Select from './select/index.web';
75
+ export * as ContextMenu from './context-menu/index.web';
@@ -1,10 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.getAdaptiveColors = getAdaptiveColors;
7
- function getAdaptiveColors() {
8
- return null;
9
- }
10
- //# sourceMappingURL=adaptive-colors.web.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["getAdaptiveColors"],"sourceRoot":"../../../src","sources":["theme/adaptive-colors.web.ts"],"mappings":";;;;;;AAEO,SAASA,iBAAiBA,CAAA,EAAuB;EACtD,OAAO,IAAI;AACb","ignoreList":[]}
@@ -1,6 +0,0 @@
1
- "use strict";
2
-
3
- export function getAdaptiveColors() {
4
- return null;
5
- }
6
- //# sourceMappingURL=adaptive-colors.web.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["getAdaptiveColors"],"sourceRoot":"../../../src","sources":["theme/adaptive-colors.web.ts"],"mappings":";;AAEA,OAAO,SAASA,iBAAiBA,CAAA,EAAuB;EACtD,OAAO,IAAI;AACb","ignoreList":[]}
@@ -1,3 +0,0 @@
1
- import type { ThemeColors } from './types';
2
- export declare function getAdaptiveColors(): ThemeColors | null;
3
- //# sourceMappingURL=adaptive-colors.web.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"adaptive-colors.web.d.ts","sourceRoot":"","sources":["../../../../src/theme/adaptive-colors.web.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;AAE3C,wBAAgB,iBAAiB,IAAI,WAAW,GAAG,IAAI,CAEtD"}
@@ -1,3 +0,0 @@
1
- import type { ThemeColors } from './types';
2
- export declare function getAdaptiveColors(): ThemeColors | null;
3
- //# sourceMappingURL=adaptive-colors.web.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"adaptive-colors.web.d.ts","sourceRoot":"","sources":["../../../../src/theme/adaptive-colors.web.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;AAE3C,wBAAgB,iBAAiB,IAAI,WAAW,GAAG,IAAI,CAEtD"}
@@ -1,5 +0,0 @@
1
- import type { ThemeColors } from './types';
2
-
3
- export function getAdaptiveColors(): ThemeColors | null {
4
- return null;
5
- }