@wallarm-org/design-system 1.7.0 → 1.9.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/dist/components/FilterInput/FilterInputField/ChipsWithGaps.js +2 -0
- package/dist/components/FilterInput/FilterInputField/FilterInputChip/FilterInputChip.d.ts +7 -0
- package/dist/components/FilterInput/FilterInputField/FilterInputChip/FilterInputChip.js +18 -2
- package/dist/components/FilterInput/FilterInputField/FilterInputChip/Segment.d.ts +6 -0
- package/dist/components/FilterInput/FilterInputField/FilterInputChip/Segment.js +10 -3
- package/dist/components/FilterInput/FilterInputField/FilterInputChip/applyEditCaret.d.ts +1 -0
- package/dist/components/FilterInput/FilterInputField/FilterInputChip/applyEditCaret.js +10 -0
- package/dist/components/FilterInput/FilterInputField/FilterInputChip/index.d.ts +1 -0
- package/dist/components/FilterInput/FilterInputField/FilterInputChip/index.js +1 -0
- package/dist/components/FilterInput/hooks/useFilterInputAutocomplete/useFilterInputAutocomplete.js +4 -1
- package/dist/components/FilterInput/hooks/useFilterInputAutocomplete/useFocusManagement.js +16 -5
- package/dist/components/FilterInput/hooks/useFilterInputExpression/buildChips.js +6 -0
- package/dist/components/FilterInput/types.d.ts +16 -0
- package/dist/metadata/components.json +1104 -627
- package/dist/theme/Pixel.stories.tsx +8 -0
- package/package.json +1 -1
|
@@ -39,6 +39,10 @@ const STEPS: PixelStep[] = [
|
|
|
39
39
|
{ token: 'pixel-lg', utilities: 'font-pixel text-base', metrics: '16 / 24' },
|
|
40
40
|
];
|
|
41
41
|
|
|
42
|
+
/**
|
|
43
|
+
* The four sanctioned steps, with the Figma token beside each. Only one ships today —
|
|
44
|
+
* `EmptyStateTitle` at 16 on 24 — so treat the rest as available rather than established.
|
|
45
|
+
*/
|
|
42
46
|
export const Scale: StoryFn<typeof meta> = () => (
|
|
43
47
|
<VStack gap={32} align='start'>
|
|
44
48
|
{STEPS.map(({ token, utilities, metrics }) => (
|
|
@@ -57,6 +61,10 @@ export const Scale: StoryFn<typeof meta> = () => (
|
|
|
57
61
|
</VStack>
|
|
58
62
|
);
|
|
59
63
|
|
|
64
|
+
/**
|
|
65
|
+
* One cut only, Square at regular weight. `font-bold` on pixel type renders as a
|
|
66
|
+
* browser-synthesised fake, so emphasis has to come from size or colour and never from weight.
|
|
67
|
+
*/
|
|
60
68
|
export const Decorative: StoryFn<typeof meta> = () => (
|
|
61
69
|
<VStack gap={40} align='start'>
|
|
62
70
|
<VStack gap={12} align='start'>
|