@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.
- package/lib/commonjs/context-menu/index.js +1 -1
- package/lib/commonjs/dialog/index.web.js +56 -0
- package/lib/commonjs/dialog/index.web.js.map +1 -0
- package/lib/commonjs/index.js +56 -56
- package/lib/commonjs/index.js.map +1 -1
- package/lib/commonjs/index.web.js +386 -0
- package/lib/commonjs/index.web.js.map +1 -0
- package/lib/commonjs/menu/index.js +1 -1
- package/lib/commonjs/prompt/Prompt.js +1 -1
- package/lib/commonjs/select/index.js +3 -3
- package/lib/commonjs/select/index.js.map +1 -1
- package/lib/commonjs/theme/BloomThemeProvider.js +1 -1
- package/lib/module/context-menu/index.js +1 -1
- package/lib/module/context-menu/index.js.map +1 -1
- package/lib/module/dialog/index.web.js +16 -0
- package/lib/module/dialog/index.web.js.map +1 -0
- package/lib/module/index.js +1 -1
- package/lib/module/index.js.map +1 -1
- package/lib/module/index.web.js +74 -0
- package/lib/module/index.web.js.map +1 -0
- package/lib/module/menu/index.js +2 -2
- package/lib/module/menu/index.js.map +1 -1
- package/lib/module/prompt/Prompt.js +2 -2
- package/lib/module/prompt/Prompt.js.map +1 -1
- package/lib/module/select/index.js +1 -1
- package/lib/module/select/index.js.map +1 -1
- package/lib/module/theme/BloomThemeProvider.js +1 -1
- package/lib/module/theme/BloomThemeProvider.js.map +1 -1
- package/lib/typescript/commonjs/dialog/index.web.d.ts +4 -0
- package/lib/typescript/commonjs/dialog/index.web.d.ts.map +1 -0
- package/lib/typescript/commonjs/index.web.d.ts +48 -0
- package/lib/typescript/commonjs/index.web.d.ts.map +1 -0
- package/lib/typescript/module/dialog/index.web.d.ts +4 -0
- package/lib/typescript/module/dialog/index.web.d.ts.map +1 -0
- package/lib/typescript/module/index.web.d.ts +48 -0
- package/lib/typescript/module/index.web.d.ts.map +1 -0
- package/package.json +38 -1
- package/src/dialog/index.web.ts +14 -0
- package/src/index.web.ts +75 -0
- package/lib/commonjs/theme/adaptive-colors.web.js +0 -10
- package/lib/commonjs/theme/adaptive-colors.web.js.map +0 -1
- package/lib/module/theme/adaptive-colors.web.js +0 -6
- package/lib/module/theme/adaptive-colors.web.js.map +0 -1
- package/lib/typescript/commonjs/theme/adaptive-colors.web.d.ts +0 -3
- package/lib/typescript/commonjs/theme/adaptive-colors.web.d.ts.map +0 -1
- package/lib/typescript/module/theme/adaptive-colors.web.d.ts +0 -3
- package/lib/typescript/module/theme/adaptive-colors.web.d.ts.map +0 -1
- package/src/theme/adaptive-colors.web.ts +0 -5
package/src/index.web.ts
ADDED
|
@@ -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 +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 +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 +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 +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"}
|