@hanzo/gui 2.0.0-rc.29 → 2.0.1

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 (76) hide show
  1. package/bundle-native.mjs +1 -1
  2. package/dist/cjs/createGui.cjs +3 -3
  3. package/dist/cjs/createGui.native.js +3 -3
  4. package/dist/cjs/createGui.native.js.map +1 -1
  5. package/dist/cjs/index.cjs +71 -71
  6. package/dist/cjs/index.native.js +71 -71
  7. package/dist/cjs/index.native.js.map +1 -1
  8. package/dist/cjs/setup.cjs +1 -1
  9. package/dist/cjs/setup.native.js +1 -1
  10. package/dist/cjs/setup.native.js.map +1 -1
  11. package/dist/cjs/views/EnsureFlexed.cjs +2 -2
  12. package/dist/cjs/views/EnsureFlexed.native.js +2 -2
  13. package/dist/cjs/views/EnsureFlexed.native.js.map +1 -1
  14. package/dist/cjs/views/GuiProvider.cjs +2 -2
  15. package/dist/cjs/views/GuiProvider.native.js +2 -2
  16. package/dist/cjs/views/GuiProvider.native.js.map +1 -1
  17. package/dist/cjs/views/Text.cjs +2 -2
  18. package/dist/cjs/views/Text.native.js +2 -2
  19. package/dist/cjs/views/Text.native.js.map +1 -1
  20. package/dist/cjs/views/VisuallyHidden.cjs +2 -2
  21. package/dist/cjs/views/VisuallyHidden.native.js +2 -2
  22. package/dist/cjs/views/VisuallyHidden.native.js.map +1 -1
  23. package/dist/esm/createGui.mjs +1 -1
  24. package/dist/esm/createGui.native.js +1 -1
  25. package/dist/esm/index.js +12 -12
  26. package/dist/esm/index.mjs +12 -12
  27. package/dist/esm/index.native.js +12 -12
  28. package/dist/esm/views/EnsureFlexed.mjs +1 -1
  29. package/dist/esm/views/EnsureFlexed.native.js +1 -1
  30. package/dist/esm/views/GuiProvider.mjs +1 -1
  31. package/dist/esm/views/GuiProvider.native.js +1 -1
  32. package/dist/esm/views/Text.mjs +1 -1
  33. package/dist/esm/views/Text.native.js +1 -1
  34. package/dist/esm/views/VisuallyHidden.mjs +1 -1
  35. package/dist/esm/views/VisuallyHidden.native.js +1 -1
  36. package/dist/jsx/createGui.mjs +1 -1
  37. package/dist/jsx/createGui.native.js +3 -3
  38. package/dist/jsx/createGui.native.js.map +1 -1
  39. package/dist/jsx/index.js +12 -12
  40. package/dist/jsx/index.mjs +12 -12
  41. package/dist/jsx/index.native.js +71 -71
  42. package/dist/jsx/index.native.js.map +1 -1
  43. package/dist/jsx/setup.native.js +1 -1
  44. package/dist/jsx/views/EnsureFlexed.mjs +1 -1
  45. package/dist/jsx/views/EnsureFlexed.native.js +2 -2
  46. package/dist/jsx/views/GuiProvider.mjs +1 -1
  47. package/dist/jsx/views/GuiProvider.native.js +2 -2
  48. package/dist/jsx/views/Text.mjs +1 -1
  49. package/dist/jsx/views/Text.native.js +2 -2
  50. package/dist/jsx/views/VisuallyHidden.mjs +1 -1
  51. package/dist/jsx/views/VisuallyHidden.native.js +2 -2
  52. package/dist/jsx/views/VisuallyHidden.native.js.map +1 -1
  53. package/gui.config.ts +2 -2
  54. package/package.json +20 -20
  55. package/src/createGui.ts +1 -1
  56. package/src/index.ts +13 -13
  57. package/src/setup.ts +1 -1
  58. package/src/views/EnsureFlexed.tsx +1 -1
  59. package/src/views/GuiProvider.tsx +2 -2
  60. package/src/views/Text.tsx +1 -1
  61. package/src/views/VisuallyHidden.tsx +1 -1
  62. package/types/createGui.d.ts +1 -1
  63. package/types/index.d.ts +13 -13
  64. package/types/setup.d.ts +1 -1
  65. package/types/views/EnsureFlexed.d.ts +1 -1
  66. package/types/views/GuiProvider.d.ts +1 -1
  67. package/types/views/Text.d.ts +2 -2
  68. package/types/views/VisuallyHidden.d.ts +2 -2
  69. package/types/createGui.d.ts.map +0 -1
  70. package/types/index.d.ts.map +0 -1
  71. package/types/setup.d.ts.map +0 -1
  72. package/types/viewTypes.d.ts.map +0 -1
  73. package/types/views/EnsureFlexed.d.ts.map +0 -1
  74. package/types/views/GuiProvider.d.ts.map +0 -1
  75. package/types/views/Text.d.ts.map +0 -1
  76. package/types/views/VisuallyHidden.d.ts.map +0 -1
package/dist/esm/index.js CHANGED
@@ -1,19 +1,19 @@
1
- export * from "@hanzo/gui-compose-refs";
2
- export * from "@hanzo/gui-create-context";
3
- export * from "@hanzo/gui-font-size";
4
- export * from "@hanzo/gui-react-native-media-driver";
5
- export * from "@hanzo/gui-helpers";
6
- export * from "@hanzo/gui-theme";
7
- export * from "@hanzo/gui-use-controllable-state";
8
- export * from "@hanzo/gui-use-debounce";
9
- export * from "@hanzo/gui-use-force-update";
10
- export * from "@hanzo/gui-element";
11
- export * from "@hanzo/gui-use-window-dimensions";
1
+ export * from "@hanzogui/compose-refs";
2
+ export * from "@hanzogui/create-context";
3
+ export * from "@hanzogui/font-size";
4
+ export * from "@hanzogui/react-native-media-driver";
5
+ export * from "@hanzogui/helpers";
6
+ export * from "@hanzogui/theme";
7
+ export * from "@hanzogui/use-controllable-state";
8
+ export * from "@hanzogui/use-debounce";
9
+ export * from "@hanzogui/use-force-update";
10
+ export * from "@hanzogui/element";
11
+ export * from "@hanzogui/use-window-dimensions";
12
12
  export * from "./createGui.mjs";
13
13
  export * from "./viewTypes.mjs";
14
14
  export * from "./views/GuiProvider.mjs";
15
15
  export * from "./views/EnsureFlexed.mjs";
16
16
  export * from "./views/Text.mjs";
17
- import { ClientOnly, Configuration, ComponentContext, GroupContext, FontLanguage, Theme, View, createComponent, createFont, createShorthands, createStyledContext, createTokens, createVariable, getConfig, getMedia, getCSSStylesAtomic, getThemes, getToken, getTokenValue, getTokens, getVariable, getVariableName, getVariableValue, insertFont, setConfig, setupDev, _withStableStyle, isBrowser, isChrome, isClient, isServer, isGuiComponent, isGuiElement, isTouchable, isVariable, isWeb, isWebTouchable, matchMedia, mediaObjectToString, mediaQueryConfig, mediaState, setOnLayoutStrategy, styled, themeable, useClientValue, useDidFinishSSR, useEvent, useGet, useIsTouchDevice, useIsomorphicLayoutEffect, useMedia, useProps, usePropsAndStyle, useStyle, useConfiguration, useTheme, useThemeName, variableToString, withStaticProperties } from "@hanzo/gui-core";
17
+ import { ClientOnly, Configuration, ComponentContext, GroupContext, FontLanguage, Theme, View, createComponent, createFont, createShorthands, createStyledContext, createTokens, createVariable, getConfig, getMedia, getCSSStylesAtomic, getThemes, getToken, getTokenValue, getTokens, getVariable, getVariableName, getVariableValue, insertFont, setConfig, setupDev, _withStableStyle, isBrowser, isChrome, isClient, isServer, isGuiComponent, isGuiElement, isTouchable, isVariable, isWeb, isWebTouchable, matchMedia, mediaObjectToString, mediaQueryConfig, mediaState, setOnLayoutStrategy, styled, themeable, useClientValue, useDidFinishSSR, useEvent, useGet, useIsTouchDevice, useIsomorphicLayoutEffect, useMedia, useProps, usePropsAndStyle, useStyle, useConfiguration, useTheme, useThemeName, variableToString, withStaticProperties } from "@hanzogui/core";
18
18
  export { ClientOnly, ComponentContext, Configuration, FontLanguage, GroupContext, Theme, View, _withStableStyle, createComponent, createFont, createShorthands, createStyledContext, createTokens, createVariable, getCSSStylesAtomic, getConfig, getMedia, getThemes, getToken, getTokenValue, getTokens, getVariable, getVariableName, getVariableValue, insertFont, isBrowser, isChrome, isClient, isGuiComponent, isGuiElement, isServer, isTouchable, isVariable, isWeb, isWebTouchable, matchMedia, mediaObjectToString, mediaQueryConfig, mediaState, setConfig, setOnLayoutStrategy, setupDev, styled, themeable, useClientValue, useConfiguration, useDidFinishSSR, useEvent, useGet, useIsTouchDevice, useIsomorphicLayoutEffect, useMedia, useProps, usePropsAndStyle, useStyle, useTheme, useThemeName, variableToString, withStaticProperties };
19
19
  //# sourceMappingURL=index.js.map
@@ -1,19 +1,19 @@
1
- export * from "@hanzo/gui-compose-refs";
2
- export * from "@hanzo/gui-create-context";
3
- export * from "@hanzo/gui-font-size";
4
- export * from "@hanzo/gui-react-native-media-driver";
5
- export * from "@hanzo/gui-helpers";
6
- export * from "@hanzo/gui-theme";
7
- export * from "@hanzo/gui-use-controllable-state";
8
- export * from "@hanzo/gui-use-debounce";
9
- export * from "@hanzo/gui-use-force-update";
10
- export * from "@hanzo/gui-element";
11
- export * from "@hanzo/gui-use-window-dimensions";
1
+ export * from "@hanzogui/compose-refs";
2
+ export * from "@hanzogui/create-context";
3
+ export * from "@hanzogui/font-size";
4
+ export * from "@hanzogui/react-native-media-driver";
5
+ export * from "@hanzogui/helpers";
6
+ export * from "@hanzogui/theme";
7
+ export * from "@hanzogui/use-controllable-state";
8
+ export * from "@hanzogui/use-debounce";
9
+ export * from "@hanzogui/use-force-update";
10
+ export * from "@hanzogui/element";
11
+ export * from "@hanzogui/use-window-dimensions";
12
12
  export * from "./createGui.mjs";
13
13
  export * from "./viewTypes.mjs";
14
14
  export * from "./views/GuiProvider.mjs";
15
15
  export * from "./views/EnsureFlexed.mjs";
16
16
  export * from "./views/Text.mjs";
17
- import { ClientOnly, Configuration, ComponentContext, GroupContext, FontLanguage, Theme, View, createComponent, createFont, createShorthands, createStyledContext, createTokens, createVariable, getConfig, getMedia, getCSSStylesAtomic, getThemes, getToken, getTokenValue, getTokens, getVariable, getVariableName, getVariableValue, insertFont, setConfig, setupDev, _withStableStyle, isBrowser, isChrome, isClient, isServer, isGuiComponent, isGuiElement, isTouchable, isVariable, isWeb, isWebTouchable, matchMedia, mediaObjectToString, mediaQueryConfig, mediaState, setOnLayoutStrategy, styled, themeable, useClientValue, useDidFinishSSR, useEvent, useGet, useIsTouchDevice, useIsomorphicLayoutEffect, useMedia, useProps, usePropsAndStyle, useStyle, useConfiguration, useTheme, useThemeName, variableToString, withStaticProperties } from "@hanzo/gui-core";
17
+ import { ClientOnly, Configuration, ComponentContext, GroupContext, FontLanguage, Theme, View, createComponent, createFont, createShorthands, createStyledContext, createTokens, createVariable, getConfig, getMedia, getCSSStylesAtomic, getThemes, getToken, getTokenValue, getTokens, getVariable, getVariableName, getVariableValue, insertFont, setConfig, setupDev, _withStableStyle, isBrowser, isChrome, isClient, isServer, isGuiComponent, isGuiElement, isTouchable, isVariable, isWeb, isWebTouchable, matchMedia, mediaObjectToString, mediaQueryConfig, mediaState, setOnLayoutStrategy, styled, themeable, useClientValue, useDidFinishSSR, useEvent, useGet, useIsTouchDevice, useIsomorphicLayoutEffect, useMedia, useProps, usePropsAndStyle, useStyle, useConfiguration, useTheme, useThemeName, variableToString, withStaticProperties } from "@hanzogui/core";
18
18
  export { ClientOnly, ComponentContext, Configuration, FontLanguage, GroupContext, Theme, View, _withStableStyle, createComponent, createFont, createShorthands, createStyledContext, createTokens, createVariable, getCSSStylesAtomic, getConfig, getMedia, getThemes, getToken, getTokenValue, getTokens, getVariable, getVariableName, getVariableValue, insertFont, isBrowser, isChrome, isClient, isGuiComponent, isGuiElement, isServer, isTouchable, isVariable, isWeb, isWebTouchable, matchMedia, mediaObjectToString, mediaQueryConfig, mediaState, setConfig, setOnLayoutStrategy, setupDev, styled, themeable, useClientValue, useConfiguration, useDidFinishSSR, useEvent, useGet, useIsTouchDevice, useIsomorphicLayoutEffect, useMedia, useProps, usePropsAndStyle, useStyle, useTheme, useThemeName, variableToString, withStaticProperties };
19
19
  //# sourceMappingURL=index.mjs.map
@@ -1,19 +1,19 @@
1
- export * from "@hanzo/gui-compose-refs";
2
- export * from "@hanzo/gui-create-context";
3
- export * from "@hanzo/gui-font-size";
4
- export * from "@hanzo/gui-react-native-media-driver";
5
- export * from "@hanzo/gui-helpers";
6
- export * from "@hanzo/gui-theme";
7
- export * from "@hanzo/gui-use-controllable-state";
8
- export * from "@hanzo/gui-use-debounce";
9
- export * from "@hanzo/gui-use-force-update";
10
- export * from "@hanzo/gui-element";
11
- export * from "@hanzo/gui-use-window-dimensions";
1
+ export * from "@hanzogui/compose-refs";
2
+ export * from "@hanzogui/create-context";
3
+ export * from "@hanzogui/font-size";
4
+ export * from "@hanzogui/react-native-media-driver";
5
+ export * from "@hanzogui/helpers";
6
+ export * from "@hanzogui/theme";
7
+ export * from "@hanzogui/use-controllable-state";
8
+ export * from "@hanzogui/use-debounce";
9
+ export * from "@hanzogui/use-force-update";
10
+ export * from "@hanzogui/element";
11
+ export * from "@hanzogui/use-window-dimensions";
12
12
  export * from "./createGui.native.js";
13
13
  export * from "./viewTypes.native.js";
14
14
  export * from "./views/GuiProvider.native.js";
15
15
  export * from "./views/EnsureFlexed.native.js";
16
16
  export * from "./views/Text.native.js";
17
- import { ClientOnly, Configuration, ComponentContext, GroupContext, FontLanguage, Theme, View, createComponent, createFont, createShorthands, createStyledContext, createTokens, createVariable, getConfig, getMedia, getCSSStylesAtomic, getThemes, getToken, getTokenValue, getTokens, getVariable, getVariableName, getVariableValue, insertFont, setConfig, setupDev, _withStableStyle, isBrowser, isChrome, isClient, isServer, isGuiComponent, isGuiElement, isTouchable, isVariable, isWeb, isWebTouchable, matchMedia, mediaObjectToString, mediaQueryConfig, mediaState, setOnLayoutStrategy, styled, themeable, useClientValue, useDidFinishSSR, useEvent, useGet, useIsTouchDevice, useIsomorphicLayoutEffect, useMedia, useProps, usePropsAndStyle, useStyle, useConfiguration, useTheme, useThemeName, variableToString, withStaticProperties } from "@hanzo/gui-core";
17
+ import { ClientOnly, Configuration, ComponentContext, GroupContext, FontLanguage, Theme, View, createComponent, createFont, createShorthands, createStyledContext, createTokens, createVariable, getConfig, getMedia, getCSSStylesAtomic, getThemes, getToken, getTokenValue, getTokens, getVariable, getVariableName, getVariableValue, insertFont, setConfig, setupDev, _withStableStyle, isBrowser, isChrome, isClient, isServer, isGuiComponent, isGuiElement, isTouchable, isVariable, isWeb, isWebTouchable, matchMedia, mediaObjectToString, mediaQueryConfig, mediaState, setOnLayoutStrategy, styled, themeable, useClientValue, useDidFinishSSR, useEvent, useGet, useIsTouchDevice, useIsomorphicLayoutEffect, useMedia, useProps, usePropsAndStyle, useStyle, useConfiguration, useTheme, useThemeName, variableToString, withStaticProperties } from "@hanzogui/core";
18
18
  export { ClientOnly, ComponentContext, Configuration, FontLanguage, GroupContext, Theme, View, _withStableStyle, createComponent, createFont, createShorthands, createStyledContext, createTokens, createVariable, getCSSStylesAtomic, getConfig, getMedia, getThemes, getToken, getTokenValue, getTokens, getVariable, getVariableName, getVariableValue, insertFont, isBrowser, isChrome, isClient, isGuiComponent, isGuiElement, isServer, isTouchable, isVariable, isWeb, isWebTouchable, matchMedia, mediaObjectToString, mediaQueryConfig, mediaState, setConfig, setOnLayoutStrategy, setupDev, styled, themeable, useClientValue, useConfiguration, useDidFinishSSR, useEvent, useGet, useIsTouchDevice, useIsomorphicLayoutEffect, useMedia, useProps, usePropsAndStyle, useStyle, useTheme, useThemeName, variableToString, withStaticProperties };
19
19
  //# sourceMappingURL=index.native.js.map
@@ -1,4 +1,4 @@
1
- import { Text, styled } from "@hanzo/gui-core";
1
+ import { Text, styled } from "@hanzogui/core";
2
2
  const EnsureFlexed = styled(Text, {
3
3
  opacity: 0,
4
4
  lineHeight: 0,
@@ -1,4 +1,4 @@
1
- import { Text, styled } from "@hanzo/gui-core";
1
+ import { Text, styled } from "@hanzogui/core";
2
2
  var EnsureFlexed = styled(Text, {
3
3
  opacity: 0,
4
4
  lineHeight: 0,
@@ -1,4 +1,4 @@
1
- import { GuiProvider as CoreGuiProvider } from "@hanzo/gui-core";
1
+ import { GuiProvider as CoreGuiProvider } from "@hanzogui/core";
2
2
  const GuiProvider = CoreGuiProvider;
3
3
  export { GuiProvider };
4
4
  //# sourceMappingURL=GuiProvider.mjs.map
@@ -1,4 +1,4 @@
1
- import { GuiProvider as CoreGuiProvider } from "@hanzo/gui-core";
1
+ import { GuiProvider as CoreGuiProvider } from "@hanzogui/core";
2
2
  var GuiProvider = CoreGuiProvider;
3
3
  export { GuiProvider };
4
4
  //# sourceMappingURL=GuiProvider.native.js.map
@@ -1,4 +1,4 @@
1
- import { Text as GuiText, styled } from "@hanzo/gui-core";
1
+ import { Text as GuiText, styled } from "@hanzogui/core";
2
2
  const Text = styled(GuiText, {
3
3
  variants: {
4
4
  unstyled: {
@@ -1,4 +1,4 @@
1
- import { Text as GuiText, styled } from "@hanzo/gui-core";
1
+ import { Text as GuiText, styled } from "@hanzogui/core";
2
2
  var Text = styled(GuiText, {
3
3
  variants: {
4
4
  unstyled: {
@@ -1,4 +1,4 @@
1
- import { View, styled } from "@hanzo/gui-core";
1
+ import { View, styled } from "@hanzogui/core";
2
2
  const VisuallyHidden = styled(View, {
3
3
  position: "absolute",
4
4
  width: 1,
@@ -1,4 +1,4 @@
1
- import { View, styled } from "@hanzo/gui-core";
1
+ import { View, styled } from "@hanzogui/core";
2
2
  var VisuallyHidden = styled(View, {
3
3
  position: "absolute",
4
4
  width: 1,
@@ -1,4 +1,4 @@
1
- import { createGui as createGuiCore } from "@hanzo/gui-core";
1
+ import { createGui as createGuiCore } from "@hanzogui/core";
2
2
  const createGui = process.env.NODE_ENV !== "development" ? createGuiCore : conf => {
3
3
  const sizeTokenKeys = ["$true"],
4
4
  hasKeys = (expectedKeys, obj) => expectedKeys.every(k => typeof obj[k] < "u"),
@@ -25,13 +25,13 @@ __export(createGui_exports, {
25
25
  createGui: () => createGui
26
26
  });
27
27
  module.exports = __toCommonJS(createGui_exports);
28
- var import_gui_core = require("@hanzo/gui-core"),
29
- createGui = process.env.NODE_ENV !== "development" ? import_gui_core.createGui : function (conf) {
28
+ var import_core = require("@hanzogui/core"),
29
+ createGui = process.env.NODE_ENV !== "development" ? import_core.createGui : function (conf) {
30
30
  for (var sizeTokenKeys = ["$true"], hasKeys = function (expectedKeys, obj) {
31
31
  return expectedKeys.every(function (k) {
32
32
  return typeof obj[k] < "u";
33
33
  });
34
- }, guiConfig = (0, import_gui_core.createGui)(conf), _i = 0, _iter = ["size", "space"]; _i < _iter.length; _i++) {
34
+ }, guiConfig = (0, import_core.createGui)(conf), _i = 0, _iter = ["size", "space"]; _i < _iter.length; _i++) {
35
35
  var name = _iter[_i],
36
36
  tokenSet = guiConfig.tokensParsed[name];
37
37
  if (!tokenSet) throw new Error(`Expected tokens for "${name}" in ${Object.keys(guiConfig.tokensParsed).join(", ")}`);
@@ -1 +1 @@
1
- {"version":3,"names":["__defProp","Object","defineProperty","__getOwnPropDesc","getOwnPropertyDescriptor","__getOwnPropNames","getOwnPropertyNames","__hasOwnProp","prototype","hasOwnProperty","__export","target","all","name","get","enumerable","__copyProps","to","from","except","desc","key","call","__toCommonJS","mod","value","createGui_exports","createGui","module","exports","import_gui_core","require","process","env","NODE_ENV","conf","sizeTokenKeys","hasKeys","expectedKeys","obj","every","k","guiConfig","_i","_iter","length","tokenSet","tokensParsed","Error","keys","join"],"sources":["../../src/createGui.ts"],"sourcesContent":[null],"mappings":"AAAA,YAAS;;AAMF,IAAAA,SAAM,GAAAC,MACX,CAAAC,cAAY;AAGN,IAAAC,gBAAM,GAAAF,MAAiB,CAAAG,wBAEN;AAOjB,IAAAC,iBAAmB,GAACJ,MAAQ,CAAAK,mBAAmB;AAC7C,IAAAC,YAAM,GAAAN,MAAW,CAAAO,SAAU,CAAAC,cAAiB;AAC5C,IAAAC,QAAK,GAAAA,CAAAC,MAAA,EAAAC,GAAA;IACH,SAAAC,IAAM,IAAID,GAAA,EAAAZ,SACR,CAAAW,MAAA,EAAAE,IAAA;MAAAC,GAAwB,EAAAF,GAAI,CAAAC,IAAA,CAAQ;MAAAE,UAAO;IAAA;EAAA;EAAAC,WACzC,GAAAA,CAAAC,EAAU,EAAAC,IAAA,EAAAC,MAAA,EAAAC,IAAA;IAAA,IAAAF,IACV,WAAUA,IAAA,uBAAAA,IAAA,qBACd,IAAAG,GAAA,IAAAhB,iBAAA,CAAAa,IAAA,GAEF,CAAAX,YAAa,CAAAe,IAAA,CAAAL,EAAA,EAAAI,GAAe,KAAAA,GAAQ,KAAAF,MAAA,IAAAnB,SAAA,CAAAiB,EAAA,EAAAI,GAAA;MAAAP,GAAA,EAAAA,CAAA,KAAAI,IAAA,CAAAG,GAAA;MAAAN,UAAA,IAAAK,IAAA,GAAAjB,gBAAA,CAAAe,IAAA,EAAAG,GAAA,MAAAD,IAAA,CAAAL;IAAA;IAClC,OAAAE,EAAA;EAAgB;AACc,IAAAM,YAAA,GAAAC,GAAA,IAAAR,WAAA,CAAAhB,SAAA;EAAAyB,KAAA;AAAA,IAAAD,GAAA;AAAA,IAAAE,iBAEvB,GAAK;AAAoBhB,QAAA,CAAAgB,iBAAA;EAAAC,SAAA,EAEhCA,CAAA,KAAAA;AAAwB;AAAAC,MAAA,CAAAC,OAAA,GAAAN,YAAA,CAAAG,iBAAA;AAAA,IAAAI,eAAA,GAAAC,OAAA;EAAAJ,SAAA,GAAAK,OAAA,CAAAC,GAAA,CAAAC,QAAA,qBAAAJ,eAAA,CAAAH,SAAA,aAAAQ,IAAA;IAAA,SAAAC,aAAA,cAAAC,OAAA,YAAAA,CAAAC,YAAA,EAAAC,GAAA;QAAA,OAAAD,YAAA,CAAAE,KAAA,WAAAC,CAAA;UAAA,cAAAF,GAAA,CAAAE,CAAA;QAAA;MAAA,GAAAC,SAAA,OAAAZ,eAAA,CAAAH,SAAA,EAAAQ,IAAA,GAAAQ,EAAA,MAAAC,KAAA,sBAAAD,EAAA,GAAAC,KAAA,CAAAC,MAAA,EAAAF,EAAA;MAcnC,IAAA9B,IAAA,GAAA+B,KAAA,CAAAD,EAAA;QAAAG,QAAA,GAAAJ,SAAA,CAAAK,YAAA,CAAAlC,IAAA;MAEO,KAAAiC,QAAA,EAGA,MAAM,IAAAE,KAAW,yBAAsBnC,IAAA,QAAiBZ,MAAA,CAAAgD,IAAA,CAAAP,SAAA,CAAAK,YAAA,EAAAG,IAAA;MACxD,KAAAb,OAAW,CAAAD,aAAS,EAAUU,QAAQ,GACpC,MAAM,IAAAE,KAAW;AAGjB,sCAD6CnC,IAAS;AAEpD;AAAgB,YAAAZ,MAAA,CAAAgD,IAAA,CAAAH,QACC,CAAI,CAAAI,IAAA;AAAA;AAAA,YAErBd,aAAS,CAAKc,IAAI,CAAC;AAAA;AAAA;AAEY;AAAA;AAE1C;AAIO;AACF","ignoreList":[]}
1
+ {"version":3,"names":["__defProp","Object","defineProperty","__getOwnPropDesc","getOwnPropertyDescriptor","__getOwnPropNames","getOwnPropertyNames","__hasOwnProp","prototype","hasOwnProperty","__export","target","all","name","get","enumerable","__copyProps","to","from","except","desc","key","call","__toCommonJS","mod","value","createGui_exports","createGui","module","exports","import_core","require","process","env","NODE_ENV","conf","sizeTokenKeys","hasKeys","expectedKeys","obj","every","k","guiConfig","_i","_iter","length","tokenSet","tokensParsed","Error","keys","join"],"sources":["../../src/createGui.ts"],"sourcesContent":[null],"mappings":"AAAA,YAAS;;AAMF,IAAAA,SAAM,GAAAC,MACX,CAAAC,cAAY;AAGN,IAAAC,gBAAM,GAAAF,MAAiB,CAAAG,wBAEN;AAOjB,IAAAC,iBAAmB,GAACJ,MAAQ,CAAAK,mBAAmB;AAC7C,IAAAC,YAAM,GAAAN,MAAW,CAAAO,SAAU,CAAAC,cAAiB;AAC5C,IAAAC,QAAK,GAAAA,CAAAC,MAAA,EAAAC,GAAA;IACH,SAAAC,IAAM,IAAID,GAAA,EAAAZ,SACR,CAAAW,MAAA,EAAAE,IAAA;MAAAC,GAAwB,EAAAF,GAAI,CAAAC,IAAA,CAAQ;MAAAE,UAAO;IAAA;EAAA;EAAAC,WACzC,GAAAA,CAAAC,EAAU,EAAAC,IAAA,EAAAC,MAAA,EAAAC,IAAA;IAAA,IAAAF,IACV,WAAUA,IAAA,uBAAAA,IAAA,qBACd,IAAAG,GAAA,IAAAhB,iBAAA,CAAAa,IAAA,GAEF,CAAAX,YAAa,CAAAe,IAAA,CAAAL,EAAA,EAAAI,GAAe,KAAAA,GAAQ,KAAAF,MAAA,IAAAnB,SAAA,CAAAiB,EAAA,EAAAI,GAAA;MAAAP,GAAA,EAAAA,CAAA,KAAAI,IAAA,CAAAG,GAAA;MAAAN,UAAA,IAAAK,IAAA,GAAAjB,gBAAA,CAAAe,IAAA,EAAAG,GAAA,MAAAD,IAAA,CAAAL;IAAA;IAClC,OAAAE,EAAA;EAAgB;AACc,IAAAM,YAAA,GAAAC,GAAA,IAAAR,WAAA,CAAAhB,SAAA;EAAAyB,KAAA;AAAA,IAAAD,GAAA;AAAA,IAAAE,iBAEvB,GAAK;AAAoBhB,QAAA,CAAAgB,iBAAA;EAAAC,SAAA,EAEhCA,CAAA,KAAAA;AAAwB;AAAAC,MAAA,CAAAC,OAAA,GAAAN,YAAA,CAAAG,iBAAA;AAAA,IAAAI,WAAA,GAAAC,OAAA;EAAAJ,SAAA,GAAAK,OAAA,CAAAC,GAAA,CAAAC,QAAA,qBAAAJ,WAAA,CAAAH,SAAA,aAAAQ,IAAA;IAAA,SAAAC,aAAA,cAAAC,OAAA,YAAAA,CAAAC,YAAA,EAAAC,GAAA;QAAA,OAAAD,YAAA,CAAAE,KAAA,WAAAC,CAAA;UAAA,cAAAF,GAAA,CAAAE,CAAA;QAAA;MAAA,GAAAC,SAAA,OAAAZ,WAAA,CAAAH,SAAA,EAAAQ,IAAA,GAAAQ,EAAA,MAAAC,KAAA,sBAAAD,EAAA,GAAAC,KAAA,CAAAC,MAAA,EAAAF,EAAA;MAcnC,IAAA9B,IAAA,GAAA+B,KAAA,CAAAD,EAAA;QAAAG,QAAA,GAAAJ,SAAA,CAAAK,YAAA,CAAAlC,IAAA;MAEO,KAAAiC,QAAA,EAGA,MAAM,IAAAE,KAAW,yBAAsBnC,IAAA,QAAiBZ,MAAA,CAAAgD,IAAA,CAAAP,SAAA,CAAAK,YAAA,EAAAG,IAAA;MACxD,KAAAb,OAAW,CAAAD,aAAS,EAAUU,QAAQ,GACpC,MAAM,IAAAE,KAAW;AAGjB,sCAD6CnC,IAAS;AAEpD;AAAgB,YAAAZ,MAAA,CAAAgD,IAAA,CAAAH,QACC,CAAI,CAAAI,IAAA;AAAA;AAAA,YAErBd,aAAS,CAAKc,IAAI,CAAC;AAAA;AAAA;AAEY;AAAA;AAE1C;AAIO;AACF","ignoreList":[]}
package/dist/jsx/index.js CHANGED
@@ -1,19 +1,19 @@
1
- export * from "@hanzo/gui-compose-refs";
2
- export * from "@hanzo/gui-create-context";
3
- export * from "@hanzo/gui-font-size";
4
- export * from "@hanzo/gui-react-native-media-driver";
5
- export * from "@hanzo/gui-helpers";
6
- export * from "@hanzo/gui-theme";
7
- export * from "@hanzo/gui-use-controllable-state";
8
- export * from "@hanzo/gui-use-debounce";
9
- export * from "@hanzo/gui-use-force-update";
10
- export * from "@hanzo/gui-element";
11
- export * from "@hanzo/gui-use-window-dimensions";
1
+ export * from "@hanzogui/compose-refs";
2
+ export * from "@hanzogui/create-context";
3
+ export * from "@hanzogui/font-size";
4
+ export * from "@hanzogui/react-native-media-driver";
5
+ export * from "@hanzogui/helpers";
6
+ export * from "@hanzogui/theme";
7
+ export * from "@hanzogui/use-controllable-state";
8
+ export * from "@hanzogui/use-debounce";
9
+ export * from "@hanzogui/use-force-update";
10
+ export * from "@hanzogui/element";
11
+ export * from "@hanzogui/use-window-dimensions";
12
12
  export * from "./createGui.mjs";
13
13
  export * from "./viewTypes.mjs";
14
14
  export * from "./views/GuiProvider.mjs";
15
15
  export * from "./views/EnsureFlexed.mjs";
16
16
  export * from "./views/Text.mjs";
17
- import { ClientOnly, Configuration, ComponentContext, GroupContext, FontLanguage, Theme, View, createComponent, createFont, createShorthands, createStyledContext, createTokens, createVariable, getConfig, getMedia, getCSSStylesAtomic, getThemes, getToken, getTokenValue, getTokens, getVariable, getVariableName, getVariableValue, insertFont, setConfig, setupDev, _withStableStyle, isBrowser, isChrome, isClient, isServer, isGuiComponent, isGuiElement, isTouchable, isVariable, isWeb, isWebTouchable, matchMedia, mediaObjectToString, mediaQueryConfig, mediaState, setOnLayoutStrategy, styled, themeable, useClientValue, useDidFinishSSR, useEvent, useGet, useIsTouchDevice, useIsomorphicLayoutEffect, useMedia, useProps, usePropsAndStyle, useStyle, useConfiguration, useTheme, useThemeName, variableToString, withStaticProperties } from "@hanzo/gui-core";
17
+ import { ClientOnly, Configuration, ComponentContext, GroupContext, FontLanguage, Theme, View, createComponent, createFont, createShorthands, createStyledContext, createTokens, createVariable, getConfig, getMedia, getCSSStylesAtomic, getThemes, getToken, getTokenValue, getTokens, getVariable, getVariableName, getVariableValue, insertFont, setConfig, setupDev, _withStableStyle, isBrowser, isChrome, isClient, isServer, isGuiComponent, isGuiElement, isTouchable, isVariable, isWeb, isWebTouchable, matchMedia, mediaObjectToString, mediaQueryConfig, mediaState, setOnLayoutStrategy, styled, themeable, useClientValue, useDidFinishSSR, useEvent, useGet, useIsTouchDevice, useIsomorphicLayoutEffect, useMedia, useProps, usePropsAndStyle, useStyle, useConfiguration, useTheme, useThemeName, variableToString, withStaticProperties } from "@hanzogui/core";
18
18
  export { ClientOnly, ComponentContext, Configuration, FontLanguage, GroupContext, Theme, View, _withStableStyle, createComponent, createFont, createShorthands, createStyledContext, createTokens, createVariable, getCSSStylesAtomic, getConfig, getMedia, getThemes, getToken, getTokenValue, getTokens, getVariable, getVariableName, getVariableValue, insertFont, isBrowser, isChrome, isClient, isGuiComponent, isGuiElement, isServer, isTouchable, isVariable, isWeb, isWebTouchable, matchMedia, mediaObjectToString, mediaQueryConfig, mediaState, setConfig, setOnLayoutStrategy, setupDev, styled, themeable, useClientValue, useConfiguration, useDidFinishSSR, useEvent, useGet, useIsTouchDevice, useIsomorphicLayoutEffect, useMedia, useProps, usePropsAndStyle, useStyle, useTheme, useThemeName, variableToString, withStaticProperties };
19
19
  //# sourceMappingURL=index.js.map
@@ -1,19 +1,19 @@
1
- export * from "@hanzo/gui-compose-refs";
2
- export * from "@hanzo/gui-create-context";
3
- export * from "@hanzo/gui-font-size";
4
- export * from "@hanzo/gui-react-native-media-driver";
5
- export * from "@hanzo/gui-helpers";
6
- export * from "@hanzo/gui-theme";
7
- export * from "@hanzo/gui-use-controllable-state";
8
- export * from "@hanzo/gui-use-debounce";
9
- export * from "@hanzo/gui-use-force-update";
10
- export * from "@hanzo/gui-element";
11
- export * from "@hanzo/gui-use-window-dimensions";
1
+ export * from "@hanzogui/compose-refs";
2
+ export * from "@hanzogui/create-context";
3
+ export * from "@hanzogui/font-size";
4
+ export * from "@hanzogui/react-native-media-driver";
5
+ export * from "@hanzogui/helpers";
6
+ export * from "@hanzogui/theme";
7
+ export * from "@hanzogui/use-controllable-state";
8
+ export * from "@hanzogui/use-debounce";
9
+ export * from "@hanzogui/use-force-update";
10
+ export * from "@hanzogui/element";
11
+ export * from "@hanzogui/use-window-dimensions";
12
12
  export * from "./createGui.mjs";
13
13
  export * from "./viewTypes.mjs";
14
14
  export * from "./views/GuiProvider.mjs";
15
15
  export * from "./views/EnsureFlexed.mjs";
16
16
  export * from "./views/Text.mjs";
17
- import { ClientOnly, Configuration, ComponentContext, GroupContext, FontLanguage, Theme, View, createComponent, createFont, createShorthands, createStyledContext, createTokens, createVariable, getConfig, getMedia, getCSSStylesAtomic, getThemes, getToken, getTokenValue, getTokens, getVariable, getVariableName, getVariableValue, insertFont, setConfig, setupDev, _withStableStyle, isBrowser, isChrome, isClient, isServer, isGuiComponent, isGuiElement, isTouchable, isVariable, isWeb, isWebTouchable, matchMedia, mediaObjectToString, mediaQueryConfig, mediaState, setOnLayoutStrategy, styled, themeable, useClientValue, useDidFinishSSR, useEvent, useGet, useIsTouchDevice, useIsomorphicLayoutEffect, useMedia, useProps, usePropsAndStyle, useStyle, useConfiguration, useTheme, useThemeName, variableToString, withStaticProperties } from "@hanzo/gui-core";
17
+ import { ClientOnly, Configuration, ComponentContext, GroupContext, FontLanguage, Theme, View, createComponent, createFont, createShorthands, createStyledContext, createTokens, createVariable, getConfig, getMedia, getCSSStylesAtomic, getThemes, getToken, getTokenValue, getTokens, getVariable, getVariableName, getVariableValue, insertFont, setConfig, setupDev, _withStableStyle, isBrowser, isChrome, isClient, isServer, isGuiComponent, isGuiElement, isTouchable, isVariable, isWeb, isWebTouchable, matchMedia, mediaObjectToString, mediaQueryConfig, mediaState, setOnLayoutStrategy, styled, themeable, useClientValue, useDidFinishSSR, useEvent, useGet, useIsTouchDevice, useIsomorphicLayoutEffect, useMedia, useProps, usePropsAndStyle, useStyle, useConfiguration, useTheme, useThemeName, variableToString, withStaticProperties } from "@hanzogui/core";
18
18
  export { ClientOnly, ComponentContext, Configuration, FontLanguage, GroupContext, Theme, View, _withStableStyle, createComponent, createFont, createShorthands, createStyledContext, createTokens, createVariable, getCSSStylesAtomic, getConfig, getMedia, getThemes, getToken, getTokenValue, getTokens, getVariable, getVariableName, getVariableValue, insertFont, isBrowser, isChrome, isClient, isGuiComponent, isGuiElement, isServer, isTouchable, isVariable, isWeb, isWebTouchable, matchMedia, mediaObjectToString, mediaQueryConfig, mediaState, setConfig, setOnLayoutStrategy, setupDev, styled, themeable, useClientValue, useConfiguration, useDidFinishSSR, useEvent, useGet, useIsTouchDevice, useIsomorphicLayoutEffect, useMedia, useProps, usePropsAndStyle, useStyle, useTheme, useThemeName, variableToString, withStaticProperties };
19
19
  //# sourceMappingURL=index.mjs.map
@@ -23,83 +23,83 @@ var __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
23
23
  }), mod);
24
24
  var index_exports = {};
25
25
  __export(index_exports, {
26
- ClientOnly: () => import_gui_core.ClientOnly,
27
- ComponentContext: () => import_gui_core.ComponentContext,
28
- Configuration: () => import_gui_core.Configuration,
29
- FontLanguage: () => import_gui_core.FontLanguage,
30
- GroupContext: () => import_gui_core.GroupContext,
31
- Theme: () => import_gui_core.Theme,
32
- View: () => import_gui_core.View,
33
- _withStableStyle: () => import_gui_core._withStableStyle,
34
- createComponent: () => import_gui_core.createComponent,
35
- createFont: () => import_gui_core.createFont,
36
- createShorthands: () => import_gui_core.createShorthands,
37
- createStyledContext: () => import_gui_core.createStyledContext,
38
- createTokens: () => import_gui_core.createTokens,
39
- createVariable: () => import_gui_core.createVariable,
40
- getCSSStylesAtomic: () => import_gui_core.getCSSStylesAtomic,
41
- getConfig: () => import_gui_core.getConfig,
42
- getMedia: () => import_gui_core.getMedia,
43
- getThemes: () => import_gui_core.getThemes,
44
- getToken: () => import_gui_core.getToken,
45
- getTokenValue: () => import_gui_core.getTokenValue,
46
- getTokens: () => import_gui_core.getTokens,
47
- getVariable: () => import_gui_core.getVariable,
48
- getVariableName: () => import_gui_core.getVariableName,
49
- getVariableValue: () => import_gui_core.getVariableValue,
50
- insertFont: () => import_gui_core.insertFont,
51
- isBrowser: () => import_gui_core.isBrowser,
52
- isChrome: () => import_gui_core.isChrome,
53
- isClient: () => import_gui_core.isClient,
54
- isGuiComponent: () => import_gui_core.isGuiComponent,
55
- isGuiElement: () => import_gui_core.isGuiElement,
56
- isServer: () => import_gui_core.isServer,
57
- isTouchable: () => import_gui_core.isTouchable,
58
- isVariable: () => import_gui_core.isVariable,
59
- isWeb: () => import_gui_core.isWeb,
60
- isWebTouchable: () => import_gui_core.isWebTouchable,
61
- matchMedia: () => import_gui_core.matchMedia,
62
- mediaObjectToString: () => import_gui_core.mediaObjectToString,
63
- mediaQueryConfig: () => import_gui_core.mediaQueryConfig,
64
- mediaState: () => import_gui_core.mediaState,
65
- setConfig: () => import_gui_core.setConfig,
66
- setOnLayoutStrategy: () => import_gui_core.setOnLayoutStrategy,
67
- setupDev: () => import_gui_core.setupDev,
68
- styled: () => import_gui_core.styled,
69
- themeable: () => import_gui_core.themeable,
70
- useClientValue: () => import_gui_core.useClientValue,
71
- useConfiguration: () => import_gui_core.useConfiguration,
72
- useDidFinishSSR: () => import_gui_core.useDidFinishSSR,
73
- useEvent: () => import_gui_core.useEvent,
74
- useGet: () => import_gui_core.useGet,
75
- useIsTouchDevice: () => import_gui_core.useIsTouchDevice,
76
- useIsomorphicLayoutEffect: () => import_gui_core.useIsomorphicLayoutEffect,
77
- useMedia: () => import_gui_core.useMedia,
78
- useProps: () => import_gui_core.useProps,
79
- usePropsAndStyle: () => import_gui_core.usePropsAndStyle,
80
- useStyle: () => import_gui_core.useStyle,
81
- useTheme: () => import_gui_core.useTheme,
82
- useThemeName: () => import_gui_core.useThemeName,
83
- variableToString: () => import_gui_core.variableToString,
84
- withStaticProperties: () => import_gui_core.withStaticProperties
26
+ ClientOnly: () => import_core.ClientOnly,
27
+ ComponentContext: () => import_core.ComponentContext,
28
+ Configuration: () => import_core.Configuration,
29
+ FontLanguage: () => import_core.FontLanguage,
30
+ GroupContext: () => import_core.GroupContext,
31
+ Theme: () => import_core.Theme,
32
+ View: () => import_core.View,
33
+ _withStableStyle: () => import_core._withStableStyle,
34
+ createComponent: () => import_core.createComponent,
35
+ createFont: () => import_core.createFont,
36
+ createShorthands: () => import_core.createShorthands,
37
+ createStyledContext: () => import_core.createStyledContext,
38
+ createTokens: () => import_core.createTokens,
39
+ createVariable: () => import_core.createVariable,
40
+ getCSSStylesAtomic: () => import_core.getCSSStylesAtomic,
41
+ getConfig: () => import_core.getConfig,
42
+ getMedia: () => import_core.getMedia,
43
+ getThemes: () => import_core.getThemes,
44
+ getToken: () => import_core.getToken,
45
+ getTokenValue: () => import_core.getTokenValue,
46
+ getTokens: () => import_core.getTokens,
47
+ getVariable: () => import_core.getVariable,
48
+ getVariableName: () => import_core.getVariableName,
49
+ getVariableValue: () => import_core.getVariableValue,
50
+ insertFont: () => import_core.insertFont,
51
+ isBrowser: () => import_core.isBrowser,
52
+ isChrome: () => import_core.isChrome,
53
+ isClient: () => import_core.isClient,
54
+ isGuiComponent: () => import_core.isGuiComponent,
55
+ isGuiElement: () => import_core.isGuiElement,
56
+ isServer: () => import_core.isServer,
57
+ isTouchable: () => import_core.isTouchable,
58
+ isVariable: () => import_core.isVariable,
59
+ isWeb: () => import_core.isWeb,
60
+ isWebTouchable: () => import_core.isWebTouchable,
61
+ matchMedia: () => import_core.matchMedia,
62
+ mediaObjectToString: () => import_core.mediaObjectToString,
63
+ mediaQueryConfig: () => import_core.mediaQueryConfig,
64
+ mediaState: () => import_core.mediaState,
65
+ setConfig: () => import_core.setConfig,
66
+ setOnLayoutStrategy: () => import_core.setOnLayoutStrategy,
67
+ setupDev: () => import_core.setupDev,
68
+ styled: () => import_core.styled,
69
+ themeable: () => import_core.themeable,
70
+ useClientValue: () => import_core.useClientValue,
71
+ useConfiguration: () => import_core.useConfiguration,
72
+ useDidFinishSSR: () => import_core.useDidFinishSSR,
73
+ useEvent: () => import_core.useEvent,
74
+ useGet: () => import_core.useGet,
75
+ useIsTouchDevice: () => import_core.useIsTouchDevice,
76
+ useIsomorphicLayoutEffect: () => import_core.useIsomorphicLayoutEffect,
77
+ useMedia: () => import_core.useMedia,
78
+ useProps: () => import_core.useProps,
79
+ usePropsAndStyle: () => import_core.usePropsAndStyle,
80
+ useStyle: () => import_core.useStyle,
81
+ useTheme: () => import_core.useTheme,
82
+ useThemeName: () => import_core.useThemeName,
83
+ variableToString: () => import_core.variableToString,
84
+ withStaticProperties: () => import_core.withStaticProperties
85
85
  });
86
86
  module.exports = __toCommonJS(index_exports);
87
87
  var import_setup = require("./setup.native.js");
88
- __reExport(index_exports, require("@hanzo/gui-compose-refs"), module.exports);
89
- __reExport(index_exports, require("@hanzo/gui-create-context"), module.exports);
90
- __reExport(index_exports, require("@hanzo/gui-font-size"), module.exports);
91
- __reExport(index_exports, require("@hanzo/gui-react-native-media-driver"), module.exports);
92
- __reExport(index_exports, require("@hanzo/gui-helpers"), module.exports);
93
- __reExport(index_exports, require("@hanzo/gui-theme"), module.exports);
94
- __reExport(index_exports, require("@hanzo/gui-use-controllable-state"), module.exports);
95
- __reExport(index_exports, require("@hanzo/gui-use-debounce"), module.exports);
96
- __reExport(index_exports, require("@hanzo/gui-use-force-update"), module.exports);
97
- __reExport(index_exports, require("@hanzo/gui-element"), module.exports);
98
- __reExport(index_exports, require("@hanzo/gui-use-window-dimensions"), module.exports);
88
+ __reExport(index_exports, require("@hanzogui/compose-refs"), module.exports);
89
+ __reExport(index_exports, require("@hanzogui/create-context"), module.exports);
90
+ __reExport(index_exports, require("@hanzogui/font-size"), module.exports);
91
+ __reExport(index_exports, require("@hanzogui/react-native-media-driver"), module.exports);
92
+ __reExport(index_exports, require("@hanzogui/helpers"), module.exports);
93
+ __reExport(index_exports, require("@hanzogui/theme"), module.exports);
94
+ __reExport(index_exports, require("@hanzogui/use-controllable-state"), module.exports);
95
+ __reExport(index_exports, require("@hanzogui/use-debounce"), module.exports);
96
+ __reExport(index_exports, require("@hanzogui/use-force-update"), module.exports);
97
+ __reExport(index_exports, require("@hanzogui/element"), module.exports);
98
+ __reExport(index_exports, require("@hanzogui/use-window-dimensions"), module.exports);
99
99
  __reExport(index_exports, require("./createGui.native.js"), module.exports);
100
100
  __reExport(index_exports, require("./viewTypes.native.js"), module.exports);
101
101
  __reExport(index_exports, require("./views/GuiProvider.native.js"), module.exports);
102
102
  __reExport(index_exports, require("./views/EnsureFlexed.native.js"), module.exports);
103
103
  __reExport(index_exports, require("./views/Text.native.js"), module.exports);
104
- var import_gui_core = require("@hanzo/gui-core");
104
+ var import_core = require("@hanzogui/core");
105
105
  //# sourceMappingURL=index.native.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["__defProp","Object","defineProperty","__getOwnPropDesc","getOwnPropertyDescriptor","__getOwnPropNames","getOwnPropertyNames","__hasOwnProp","prototype","hasOwnProperty","__export","target","all","name","get","enumerable","__copyProps","to","from","except","desc","key","call","__reExport","mod","secondTarget","__toCommonJS","value","index_exports","ClientOnly","import_gui_core","ComponentContext","Configuration","FontLanguage","GroupContext","Theme","View","_withStableStyle","createComponent","createFont","createShorthands","createStyledContext","createTokens","createVariable","getCSSStylesAtomic","getConfig","getMedia","getThemes","getToken","getTokenValue","getTokens","getVariable","getVariableName","getVariableValue","insertFont","isBrowser","isChrome","isClient","isGuiComponent","isGuiElement","isServer","isTouchable","isVariable","isWeb","isWebTouchable","matchMedia","mediaObjectToString","mediaQueryConfig","mediaState","setConfig","setOnLayoutStrategy","setupDev","styled","themeable","useClientValue","useConfiguration","useDidFinishSSR","useEvent","useGet","useIsTouchDevice","useIsomorphicLayoutEffect","useMedia","useProps","usePropsAndStyle","useStyle","useTheme","useThemeName","variableToString","withStaticProperties","module","exports"],"sources":["../../src/index.ts"],"sourcesContent":[null],"mappings":"AAAA,YAAO;;AAEP,IAAAA,SAAA,GAAcC,MAAA,CAAAC,cAAA;AACd,IAAAC,gBAAc,GAAAF,MAAA,CAAAG,wBAAA;AACd,IAAAC,iBAAc,GAAAJ,MAAA,CAAAK,mBAAA;AACd,IAAAC,YAAc,GAAAN,MAAA,CAAAO,SAAA,CAAAC,cAAA;AACd,IAAAC,QAAA,GAAcA,CAAAC,MAAA,EAAAC,GAAA;IACd,SAAAC,IAAc,IAAAD,GAAA,EACdZ,SAAA,CAAcW,MAAA,EAAAE,IAAA;MAAAC,GAAA,EAAAF,GAAA,CAAAC,IAAA;MAAAE,UAAA;IAAA;EACd;EAAAC,WAAc,GAAAA,CAAAC,EAAA,EAAAC,IAAA,EAAAC,MAAA,EAAAC,IAAA;IACd,IAAAF,IAAA,IAAc,OAAAA,IAAA,uBAAAA,IAAA,gBACd,SAAAG,GAAc,IAAAhB,iBAAA,CAAAa,IAAA,GACd,CAAAX,YAAc,CAAAe,IAAA,CAAAL,EAAA,EAAAI,GAAA,KAAAA,GAAA,KAAAF,MAAA,IAAAnB,SAAA,CAAAiB,EAAA,EAAAI,GAAA;MAAAP,GAAA,EAAAA,CAAA,KAAAI,IAAA,CAAAG,GAAA;MAAAN,UAAA,IAAAK,IAAA,GAAAjB,gBAAA,CAAAe,IAAA,EAAAG,GAAA,MAAAD,IAAA,CAAAL;IAAA;IAEd,OAAAE,EAAA;EAEA;EAAAM,UAAA,GAAcA,CAAAZ,MAAA,EAAAa,GAAA,EAAAC,YAAA,MAAAT,WAAA,CAAAL,MAAA,EAAAa,GAAA,cAAAC,YAAA,IAAAT,WAAA,CAAAS,YAAA,EAAAD,GAAA;AACd,IAAAE,YAAc,GAAAF,GAAA,IAAAR,WAAA,CAAAhB,SAAA;EAAA2B,KAAA;AAAA,IAAAH,GAAA;AAEd,IAAAI,aAAc;AACdlB,QAAA,CAAAkB,aAAc;EAyEdC,UAAA,EAAAA,CAAA,KAAAC,eAAA,CAAAD,UAAA;EACEE,gBAAA,EAAAA,CAAA,KAAAD,eAAA,CAAAC,gBAAA;EACAC,aAAA,EAAAA,CAAA,KAAAF,eAAA,CAAAE,aAAA;EACAC,YAAA,EAAAA,CAAA,KAAAH,eAAA,CAAAG,YAAA;EACAC,YAAA,EAAAA,CAAA,KAAAJ,eAAA,CAAAI,YAAA;EACAC,KAAA,EAAAA,CAAA,KAAAL,eAAA,CAAAK,KAAA;EAEAC,IAAA,EAAAA,CAAA,KAAAN,eAAA,CAAAM,IAAA;EACAC,gBAAA,EAAAA,CAAA,KAAAP,eAAA,CAAAO,gBAAA;EACAC,eAAA,EAAAA,CAAA,KAAAR,eAAA,CAAAQ,eAAA;EACAC,UAAA,EAAAA,CAAA,KAAAT,eAAA,CAAAS,UAAA;EACAC,gBAAA,EAAAA,CAAA,KAAAV,eAAA,CAAAU,gBAAA;EACAC,mBAAA,EAAAA,CAAA,KAAAX,eAAA,CAAAW,mBAAA;EACAC,YAAA,EAAAA,CAAA,KAAAZ,eAAA,CAAAY,YAAA;EACAC,cAAA,EAAAA,CAAA,KAAAb,eAAA,CAAAa,cAAA;EACAC,kBAAA,EAAAA,CAAA,KAAAd,eAAA,CAAAc,kBAAA;EACAC,SAAA,EAAAA,CAAA,KAAAf,eAAA,CAAAe,SAAA;EACAC,QAAA,EAAAA,CAAA,KAAAhB,eAAA,CAAAgB,QAAA;EACAC,SAAA,EAAAA,CAAA,KAAAjB,eAAA,CAAAiB,SAAA;EACAC,QAAA,EAAAA,CAAA,KAAAlB,eAAA,CAAAkB,QAAA;EACAC,aAAA,EAAAA,CAAA,KAAAnB,eAAA,CAAAmB,aAAA;EACAC,SAAA,EAAAA,CAAA,KAAApB,eAAA,CAAAoB,SAAA;EACAC,WAAA,EAAAA,CAAA,KAAArB,eAAA,CAAAqB,WAAA;EACAC,eAAA,EAAAA,CAAA,KAAAtB,eAAA,CAAAsB,eAAA;EACAC,gBAAA,EAAAA,CAAA,KAAAvB,eAAA,CAAAuB,gBAAA;EACAC,UAAA,EAAAA,CAAA,KAAAxB,eAAA,CAAAwB,UAAA;EACAC,SAAA,EAAAA,CAAA,KAAAzB,eAAA,CAAAyB,SAAA;EACAC,QAAA,EAAAA,CAAA,KAAA1B,eAAA,CAAA0B,QAAA;EACAC,QAAA,EAAAA,CAAA,KAAA3B,eAAA,CAAA2B,QAAA;EAEAC,cAAA,EAAAA,CAAA,KAAA5B,eAAA,CAAA4B,cAAA;EACAC,YAAA,EAAAA,CAAA,KAAA7B,eAAA,CAAA6B,YAAA;EACAC,QAAA,EAAAA,CAAA,KAAA9B,eAAA,CAAA8B,QAAA;EACAC,WAAA,EAAAA,CAAA,KAAA/B,eAAA,CAAA+B,WAAA;EACAC,UAAA,EAAAA,CAAA,KAAAhC,eAAA,CAAAgC,UAAA;EACAC,KAAA,EAAAA,CAAA,KAAAjC,eAAA,CAAAiC,KAAA;EACAC,cAAA,EAAAA,CAAA,KAAAlC,eAAA,CAAAkC,cAAA;EACAC,UAAA,EAAAA,CAAA,KAAAnC,eAAA,CAAAmC,UAAA;EACAC,mBAAA,EAAAA,CAAA,KAAApC,eAAA,CAAAoC,mBAAA;EACAC,gBAAA,EAAAA,CAAA,KAAArC,eAAA,CAAAqC,gBAAA;EACAC,UAAA,EAAAA,CAAA,KAAAtC,eAAA,CAAAsC,UAAA;EACAC,SAAA,EAAAA,CAAA,KAAAvC,eAAA,CAAAuC,SAAA;EACAC,mBAAA,EAAAA,CAAA,KAAAxC,eAAA,CAAAwC,mBAAA;EACAC,QAAA,EAAAA,CAAA,KAAAzC,eAAA,CAAAyC,QAAA;EACAC,MAAA,EAAAA,CAAA,KAAA1C,eAAA,CAAA0C,MAAA;EACAC,SAAA,EAAAA,CAAA,KAAA3C,eAAA,CAAA2C,SAAA;EACAC,cAAA,EAAAA,CAAA,KAAA5C,eAAA,CAAA4C,cAAA;EAEAC,gBAAA,EAAAA,CAAA,KAAA7C,eAAA,CAAA6C,gBAAA;EACAC,eAAA,EAAAA,CAAA,KAAA9C,eAAA,CAAA8C,eAAA;EACAC,QAAA,EAAAA,CAAA,KAAA/C,eAAA,CAAA+C,QAAA;EACAC,MAAA,EAAAA,CAAA,KAAAhD,eAAA,CAAAgD,MAAA;EACAC,gBAAA,EAAAA,CAAA,KAAAjD,eAAA,CAAAiD,gBAAA;EACAC,yBAAA,EAAAA,CAAA,KAAAlD,eAAA,CAAAkD,yBAAA;EACAC,QAAA,EAAAA,CAAA,KAAAnD,eAAA,CAAAmD,QAAA;EACAC,QAAA,EAAAA,CAAA,KAAApD,eAAA,CAAAoD,QAAA;EACAC,gBAAA,EAAAA,CAAA,KAAArD,eAAA,CAAAqD,gBAAA;EACAC,QAAA,EAAAA,CAAA,KAAAtD,eAAA,CAAAsD,QAAA;EACAC,QAAA,EAAAA,CAAA,KAAAvD,eAAA,CAAAuD,QAAA;EACAC,YAAA,EAAAA,CAAA,KAAAxD,eAAA,CAAAwD,YAAA;EACAC,gBAAA,EAAAA,CAAA,KAAAzD,eAAA,CAAAyD,gBAAA;EACAC,oBAAA,EAAAA,CAAA,KAAA1D,eAAA,CAAA0D;AAAA,EACA;AAAAC,MAAA,CACKC,OAAA,GAAAhE,YAAA,CAAAE,aAAA","ignoreList":[]}
1
+ {"version":3,"names":["__defProp","Object","defineProperty","__getOwnPropDesc","getOwnPropertyDescriptor","__getOwnPropNames","getOwnPropertyNames","__hasOwnProp","prototype","hasOwnProperty","__export","target","all","name","get","enumerable","__copyProps","to","from","except","desc","key","call","__reExport","mod","secondTarget","__toCommonJS","value","index_exports","ClientOnly","import_core","ComponentContext","Configuration","FontLanguage","GroupContext","Theme","View","_withStableStyle","createComponent","createFont","createShorthands","createStyledContext","createTokens","createVariable","getCSSStylesAtomic","getConfig","getMedia","getThemes","getToken","getTokenValue","getTokens","getVariable","getVariableName","getVariableValue","insertFont","isBrowser","isChrome","isClient","isGuiComponent","isGuiElement","isServer","isTouchable","isVariable","isWeb","isWebTouchable","matchMedia","mediaObjectToString","mediaQueryConfig","mediaState","setConfig","setOnLayoutStrategy","setupDev","styled","themeable","useClientValue","useConfiguration","useDidFinishSSR","useEvent","useGet","useIsTouchDevice","useIsomorphicLayoutEffect","useMedia","useProps","usePropsAndStyle","useStyle","useTheme","useThemeName","variableToString","withStaticProperties","module","exports"],"sources":["../../src/index.ts"],"sourcesContent":[null],"mappings":"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","ignoreList":[]}
@@ -22,7 +22,7 @@ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", {
22
22
  value: mod,
23
23
  enumerable: !0
24
24
  }) : target, mod));
25
- var import_gui_polyfill_dev = require("@hanzo/gui-polyfill-dev"),
25
+ var import_polyfill_dev = require("@hanzogui/polyfill-dev"),
26
26
  React = __toESM(require("react"), 1),
27
27
  _globalThis,
28
28
  _React;
@@ -1,4 +1,4 @@
1
- import { Text, styled } from "@hanzo/gui-core";
1
+ import { Text, styled } from "@hanzogui/core";
2
2
  const EnsureFlexed = styled(Text, {
3
3
  opacity: 0,
4
4
  lineHeight: 0,
@@ -25,8 +25,8 @@ __export(EnsureFlexed_exports, {
25
25
  EnsureFlexed: () => EnsureFlexed
26
26
  });
27
27
  module.exports = __toCommonJS(EnsureFlexed_exports);
28
- var import_gui_core = require("@hanzo/gui-core"),
29
- EnsureFlexed = (0, import_gui_core.styled)(import_gui_core.Text, {
28
+ var import_core = require("@hanzogui/core"),
29
+ EnsureFlexed = (0, import_core.styled)(import_core.Text, {
30
30
  opacity: 0,
31
31
  lineHeight: 0,
32
32
  height: 0,
@@ -1,4 +1,4 @@
1
- import { GuiProvider as CoreGuiProvider } from "@hanzo/gui-core";
1
+ import { GuiProvider as CoreGuiProvider } from "@hanzogui/core";
2
2
  const GuiProvider = CoreGuiProvider;
3
3
  export { GuiProvider };
4
4
  //# sourceMappingURL=GuiProvider.mjs.map
@@ -25,6 +25,6 @@ __export(GuiProvider_exports, {
25
25
  GuiProvider: () => GuiProvider
26
26
  });
27
27
  module.exports = __toCommonJS(GuiProvider_exports);
28
- var import_gui_core = require("@hanzo/gui-core"),
29
- GuiProvider = import_gui_core.GuiProvider;
28
+ var import_core = require("@hanzogui/core"),
29
+ GuiProvider = import_core.GuiProvider;
30
30
  //# sourceMappingURL=GuiProvider.native.js.map
@@ -1,4 +1,4 @@
1
- import { Text as GuiText, styled } from "@hanzo/gui-core";
1
+ import { Text as GuiText, styled } from "@hanzogui/core";
2
2
  const Text = styled(GuiText, {
3
3
  variants: {
4
4
  unstyled: {
@@ -25,8 +25,8 @@ __export(Text_exports, {
25
25
  Text: () => Text
26
26
  });
27
27
  module.exports = __toCommonJS(Text_exports);
28
- var import_gui_core = require("@hanzo/gui-core"),
29
- Text = (0, import_gui_core.styled)(import_gui_core.Text, {
28
+ var import_core = require("@hanzogui/core"),
29
+ Text = (0, import_core.styled)(import_core.Text, {
30
30
  variants: {
31
31
  unstyled: {
32
32
  false: {
@@ -1,4 +1,4 @@
1
- import { View, styled } from "@hanzo/gui-core";
1
+ import { View, styled } from "@hanzogui/core";
2
2
  const VisuallyHidden = styled(View, {
3
3
  position: "absolute",
4
4
  width: 1,
@@ -25,8 +25,8 @@ __export(VisuallyHidden_exports, {
25
25
  VisuallyHidden: () => VisuallyHidden
26
26
  });
27
27
  module.exports = __toCommonJS(VisuallyHidden_exports);
28
- var import_gui_core = require("@hanzo/gui-core"),
29
- VisuallyHidden = (0, import_gui_core.styled)(import_gui_core.View, {
28
+ var import_core = require("@hanzogui/core"),
29
+ VisuallyHidden = (0, import_core.styled)(import_core.View, {
30
30
  position: "absolute",
31
31
  width: 1,
32
32
  height: 1,
@@ -1 +1 @@
1
- {"version":3,"names":["__defProp","Object","defineProperty","__getOwnPropDesc","getOwnPropertyDescriptor","__getOwnPropNames","getOwnPropertyNames","__hasOwnProp","prototype","hasOwnProperty","__export","target","all","name","get","enumerable","__copyProps","to","from","except","desc","key","call","__toCommonJS","mod","value","VisuallyHidden_exports","VisuallyHidden","module","exports","import_gui_core","require","styled","View","position","width","height","margin","zIndex","overflow","opacity","pointerEvents","variants","preserveDimensions","true"],"sources":["../../../src/views/VisuallyHidden.tsx"],"sourcesContent":[null],"mappings":"AAAA,YAAS;;AAEF,IAAAA,SAAM,GAAAC,MAAA,CAAiBC,cAAa;AAAA,IACzCC,gBAAU,GAAAF,MAAA,CAAAG,wBAAA;AAAA,IACVC,iBAAO,GAAAJ,MAAA,CAAAK,mBAAA;AAAA,IACPC,YAAQ,GAAAN,MAAA,CAAAO,SAAA,CAAAC,cAAA;AAAA,IACRC,QAAQ,GAAAA,CAAAC,MAAA,EAAAC,GAAA;IACR,SAAQC,IAAA,IAAAD,GAAA,EACRZ,SAAU,CAAAW,MAAA,EAAAE,IAAA;MAAAC,GAAA,EAAAF,GAAA,CAAAC,IAAA;MAAAE,UAAA;IAAA;EAAA;EACVC,WAAS,GAAAA,CAAAC,EAAA,EAAAC,IAAA,EAAAC,MAAA,EAAAC,IAAA;IACT,IAAAF,IAAA,WAAeA,IAAA,uBAAAA,IAAA,gBAEf,SAAUG,GAAA,IAAAhB,iBAAA,CAAAa,IAAA,GACR,CAAAX,YAAA,CAAAe,IAAoB,CAAAL,EAAA,EAAAI,GAAA,KAAAA,GAAA,KAAAF,MAAA,IAAAnB,SAAA,CAAAiB,EAAA,EAAAI,GAAA;MAAAP,GAAA,EAAAA,CAAA,KAAAI,IAAA,CAAAG,GAAA;MAAAN,UAAA,IAAAK,IAAA,GAAAjB,gBAAA,CAAAe,IAAA,EAAAG,GAAA,MAAAD,IAAA,CAAAL;IAAA;IAAA,OAClBE,EAAA;EAAM;AACM,IAAAM,YACH,GAAAC,GAAA,IAAAR,WAAA,CAAAhB,SAAA;EAAAyB,KAAA;AAAA,IAAAD,GAAA;AAAA,IAAAE,sBACC;AAAAhB,QACV,CAAAgB,sBAAA;EAAAC,cACF,EAAAA,CAAA,KAAAA;AAAA;AAESC,MACP,CAAAC,OAAM,GAAAN,YAAA,CAAAG,sBAAA;AAAA,IAAAI,eACM,GAAAC,OAAA;EAAAJ,cAAA,OAAAG,eAAA,CAAAE,MAAA,EAAAF,eAAA,CAAAG,IAAA;IAAAC,QACV,YAAO;IAAAC,KAAA,EACP;IAAQC,MACR;IAAQC,MACR;IAAQC,MACR;IAAUC,QACV,UAAS;IAAAC,OACT;IAAeC,aACjB;IAAAC,QACF;MACFC,kBAAA;QACDC,IAAA;UAGDV,QAAe","ignoreList":[]}
1
+ {"version":3,"names":["__defProp","Object","defineProperty","__getOwnPropDesc","getOwnPropertyDescriptor","__getOwnPropNames","getOwnPropertyNames","__hasOwnProp","prototype","hasOwnProperty","__export","target","all","name","get","enumerable","__copyProps","to","from","except","desc","key","call","__toCommonJS","mod","value","VisuallyHidden_exports","VisuallyHidden","module","exports","import_core","require","styled","View","position","width","height","margin","zIndex","overflow","opacity","pointerEvents","variants","preserveDimensions","true"],"sources":["../../../src/views/VisuallyHidden.tsx"],"sourcesContent":[null],"mappings":"AAAA,YAAS;;AAEF,IAAAA,SAAM,GAAAC,MAAA,CAAiBC,cAAa;AAAA,IACzCC,gBAAU,GAAAF,MAAA,CAAAG,wBAAA;AAAA,IACVC,iBAAO,GAAAJ,MAAA,CAAAK,mBAAA;AAAA,IACPC,YAAQ,GAAAN,MAAA,CAAAO,SAAA,CAAAC,cAAA;AAAA,IACRC,QAAQ,GAAAA,CAAAC,MAAA,EAAAC,GAAA;IACR,SAAQC,IAAA,IAAAD,GAAA,EACRZ,SAAU,CAAAW,MAAA,EAAAE,IAAA;MAAAC,GAAA,EAAAF,GAAA,CAAAC,IAAA;MAAAE,UAAA;IAAA;EAAA;EACVC,WAAS,GAAAA,CAAAC,EAAA,EAAAC,IAAA,EAAAC,MAAA,EAAAC,IAAA;IACT,IAAAF,IAAA,WAAeA,IAAA,uBAAAA,IAAA,gBAEf,SAAUG,GAAA,IAAAhB,iBAAA,CAAAa,IAAA,GACR,CAAAX,YAAA,CAAAe,IAAoB,CAAAL,EAAA,EAAAI,GAAA,KAAAA,GAAA,KAAAF,MAAA,IAAAnB,SAAA,CAAAiB,EAAA,EAAAI,GAAA;MAAAP,GAAA,EAAAA,CAAA,KAAAI,IAAA,CAAAG,GAAA;MAAAN,UAAA,IAAAK,IAAA,GAAAjB,gBAAA,CAAAe,IAAA,EAAAG,GAAA,MAAAD,IAAA,CAAAL;IAAA;IAAA,OAClBE,EAAA;EAAM;AACM,IAAAM,YACH,GAAAC,GAAA,IAAAR,WAAA,CAAAhB,SAAA;EAAAyB,KAAA;AAAA,IAAAD,GAAA;AAAA,IAAAE,sBACC;AAAAhB,QACV,CAAAgB,sBAAA;EAAAC,cACF,EAAAA,CAAA,KAAAA;AAAA;AAESC,MACP,CAAAC,OAAM,GAAAN,YAAA,CAAAG,sBAAA;AAAA,IAAAI,WACJ,GAAUC,OAAA;EAAAJ,cAAA,OAAAG,WAAA,CAAAE,MAAA,EAAAF,WAAA,CAAAG,IAAA;IAAAC,QACV,YAAO;IAAAC,KAAA,EACP;IAAQC,MACR;IAAQC,MACR;IAAQC,MACR;IAAUC,QACV,UAAS;IAAAC,OACT;IAAeC,aACjB;IAAAC,QACF;MACFC,kBAAA;QACDC,IAAA;UAGDV,QAAe","ignoreList":[]}
package/gui.config.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { defaultConfig } from '@hanzo/gui-config/v4'
2
- import { createGui } from '@hanzo/gui-core'
1
+ import { defaultConfig } from '@hanzogui/config/v4'
2
+ import { createGui } from '@hanzogui/core'
3
3
 
4
4
  export default createGui(defaultConfig)