@gtivr4/a1-design-system-react 0.2.4 → 0.3.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.
@@ -33,7 +33,7 @@
33
33
  border-radius: var(--base-radius-md);
34
34
  color: var(--semantic-color-text-default);
35
35
  cursor: pointer;
36
- font-size: 24px;
36
+ font-size: var(--component-button-medium-icon-size);
37
37
  flex-shrink: 0;
38
38
  transition: background var(--semantic-motion-duration-fast) var(--semantic-motion-easing-standard);
39
39
  }
@@ -157,12 +157,12 @@
157
157
  }
158
158
 
159
159
  .a1-top-header__nav-link-icon {
160
- font-size: 20px;
160
+ font-size: var(--component-side-nav-item-icon-size);
161
161
  flex-shrink: 0;
162
162
  }
163
163
 
164
164
  .a1-top-header__nav-chevron {
165
- font-size: 18px;
165
+ font-size: var(--component-menu-item-icon-size);
166
166
  flex-shrink: 0;
167
167
  margin-inline-start: calc(var(--base-spacing-4) * -1);
168
168
  transition: transform var(--semantic-motion-duration-fast) var(--semantic-motion-easing-standard);
@@ -279,7 +279,7 @@
279
279
  color: var(--semantic-color-status-error-foreground);
280
280
  border-radius: 8px;
281
281
  font-family: var(--component-paragraph-font-family);
282
- font-size: 10px;
282
+ font-size: var(--component-tab-count-font-size);
283
283
  font-weight: 700;
284
284
  line-height: 16px;
285
285
  text-align: center;
package/src/index.js CHANGED
@@ -33,6 +33,7 @@ export { NumberField } from "./components/field/NumberField.jsx";
33
33
  export { TimeField } from "./components/field/TimeField.jsx";
34
34
  export { TextareaField } from "./components/field/TextareaField.jsx";
35
35
  export { CheckboxGroup } from "./components/checkbox-group/CheckboxGroup.jsx";
36
+ export { ChoiceGroup } from "./components/choice-group/ChoiceGroup.jsx";
36
37
  export { RadioGroup } from "./components/radio-group/RadioGroup.jsx";
37
38
  export { Switch } from "./components/switch/Switch.jsx";
38
39
  export { MessageBadge, MessageEmptyState } from "./components/message/Message.jsx";