@accelint/design-system 0.1.1 → 0.2.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.
package/dist/vanilla.d.ts CHANGED
@@ -24,4 +24,7 @@ export { layers } from './styles/layers.vanilla.js';
24
24
  export { surfaces } from './styles/surfaces.vanilla.js';
25
25
  export { defaultElevationVarValues, defaultElevations, defaultFocus, defaultFocusVarValues, defaultGenericColorVarValues, defaultGenericColors, defaultRadius, defaultRadiusVarValues, defaultSemanticColorVarValues, defaultSemanticColors, defaultSizes, defaultSizesVarValues, defaultSpace, defaultSpaceVarValues, defaultTypography, defaultTypographyVarValues, defaultZIndex, defaultZIndexVarValues, elevationVars, focusOutlineStyle, focusVars, genericColorVars, radiusVars, semanticColorVars, sizeVars, spaceVars, typographyVars, zIndexVars } from './styles/theme.vanilla.js';
26
26
  export { bodies, families, headings, inputs, label } from './styles/typography.vanilla.js';
27
- export { applyThemeVars, assignPartialVars, computeContract, containerQueries, containerQuery, inlineVars, unwrapCssVar } from './utils/css.js';
27
+ export { applyThemeVars, assignPartialVars, computeContract, containerQueries, containerQuery, inlineVars, unwrapCssVar } from './utils/css.js';
28
+ export type { ButtonClassNames, ButtonColors, ButtonMapping, ButtonProps, ButtonRenderProps, ButtonSizes, ButtonState, CheckboxAlignment, CheckboxClassNames, CheckboxGroupProps, CheckboxGroupRenderProps, CheckboxGroupState, CheckboxProps, CheckboxRenderProps, CheckboxState, ChipClassNames, ChipColors, ChipGroupProps, ChipItemProps, ChipListProps, ChipMapping, ChipProps, ChipRenderProps, ChipSizes, ChipState, ComboBoxClassNames, ComboBoxMapping, ComboBoxProps, ComboBoxRenderProps, ComboBoxSizes, ComboBoxState, DialogClassNames, DialogMapping, DialogProps, DialogRenderProps, DialogSizes, DialogState, DrawerAnchor, DrawerClassNames, DrawerDialogProps, DrawerDialogState, DrawerMapping, DrawerProps, DrawerRenderProps, DrawerState, DrawerTabListProps, DrawerTabProps, DrawerTabRenderProps, ElementProps, GroupClassNames, GroupProps, GroupState, IconClassNames, IconProps, IconSizes, IconState, InputClassNames, InputMapping, InputProps, InputRenderProps, InputState, InputType, LinkButtonProps, MenuClassNames, MenuItemProps, MenuItemRenderProps, MenuItemState, MenuListProps, MenuMapping, MenuProps, MenuSizes, MenuState, MergeProviderProps, OptionsClassNames, OptionsItemProps, OptionsItemState, OptionsListProps, OptionsListState, OptionsMapping, OptionsProps, OptionsSizes, OptionsState, PickerClassNames, PickerItemProps, PickerItemRenderProps, PickerItemState, PickerProps, PickerState, PopoverClassNames, PopoverProps, PopoverState, QueryBuilderClassNames, QueryBuilderContextValue, QueryBuilderGroupState, QueryBuilderMapping, QueryBuilderProps, QueryBuilderRuleState, QueryBuilderSizes, QueryBuilderState, QueryBuilderValueEditors, RadioAlignment, RadioClassNames, RadioGroupProps, RadioGroupState, RadioProps, RadioState, SearchFieldClassNames, SearchFieldMapping, SearchFieldProps, SearchFieldRenderProps, SearchFieldState, SelectClassNames, SelectMapping, SelectProps, SelectRenderProps, SelectState, SwitchAlignment, SwitchClassNames, SwitchProps, SwitchRenderProps, SwitchState, TabListAlignment, TabListAnchor, TabListProps, TabListState, TabListVariants, TabPanelProps, TabPanelRenderProps, TabPanelState, TabPanelsProps, TabPanelsState, TabProps, TabRenderProps, TabState, TabsClassNames, TabsProps, TextAreaClassNames, TextAreaProps, TextAreaRenderProps, TextAreaState, ToggleButtonProps, TooltipClassNames, TooltipMapping, TooltipProps, TooltipRenderProps, TooltipState, TooltipTargetProps, TooltipTargetState, TreeClassNames, TreeGroupProps, TreeGroupRenderProps, TreeGroupState, TreeIndicatorRenderProps, TreeIndicatorState, TreeItemProps, TreeItemRenderProps, TreeItemState, TreeMapping, TreeProps, TreeRenderProps, TreeSizes, TreeState, TreeStateContextValue, } from './components';
29
+ export type { DefaultsContext, DefaultsProviderProps, ThemeContext, ThemeVars, } from './hooks';
30
+ export type { AsType, ChildrenRenderProps, ClassNameRenderProps, ClassNames, Contract, CssVarFunction, MapLeafNodes, OmitProtectedProps, PartialMapLeafNodes, Primitive, ProviderValue, ProviderValues, RGBA, RenderProps, RenderPropsChildren, RenderPropsClassName, RenderPropsStyle, StylePropRenderProps, StyleRenderProps, TreeActions, TreeGroupNode, TreeItemNode, TreeNode, TreeNodes, UseTreeOptions, UseTreeResult, } from './types';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@accelint/design-system",
3
- "version": "0.1.1",
3
+ "version": "0.2.1",
4
4
  "private": false,
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
@@ -10,15 +10,24 @@
10
10
  "types": "./dist/index.d.ts",
11
11
  "exports": {
12
12
  ".": {
13
- "types": "./dist/index.d.ts",
14
- "module": "./dist/index.js"
13
+ "import": {
14
+ "types": "./dist/index.d.ts",
15
+ "default": "./dist/index.js"
16
+ },
17
+ "default": "./dist/index.js"
15
18
  },
16
19
  "./styles": {
17
- "module": "./dist/styles.css"
20
+ "import": {
21
+ "default": "./dist/styles.css"
22
+ },
23
+ "default": "./dist/styles.css"
18
24
  },
19
25
  "./vanilla": {
20
- "types": "./dist/vanilla.d.ts",
21
- "module": "./dist/vanilla.js"
26
+ "import": {
27
+ "types": "./dist/vanilla.d.ts",
28
+ "default": "./dist/vanilla.js"
29
+ },
30
+ "default": "./dist/vanilla.js"
22
31
  }
23
32
  },
24
33
  "devDependencies": {
@@ -44,9 +53,9 @@
44
53
  "rollup-plugin-typescript-paths": "^1.5.0",
45
54
  "vite": "^5.4.9",
46
55
  "vitest": "^2.1.3",
47
- "@accelint/biome-config": "0.1.1",
48
- "@accelint/typescript-config": "0.1.1",
49
- "@accelint/vitest-config": "0.1.1"
56
+ "@accelint/biome-config": "0.1.2",
57
+ "@accelint/typescript-config": "0.1.2",
58
+ "@accelint/vitest-config": "0.1.2"
50
59
  },
51
60
  "dependencies": {
52
61
  "@react-aria/collections": "3.0.0-alpha.5",
@@ -67,7 +76,7 @@
67
76
  "type-fest": "^4.26.1",
68
77
  "typescript": "^5.6.3",
69
78
  "zod": "^3.23.8",
70
- "@accelint/converters": "0.1.1"
79
+ "@accelint/converters": "0.1.3"
71
80
  },
72
81
  "$schema": "https://json.schemastore.org/package",
73
82
  "author": "https://hypergiant.com",