@wallarm-org/design-system 0.45.0-rc-feature-WDS-121-progress.3 → 0.45.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/Progress/Progress.js +2 -1
- package/dist/components/Progress/classes.d.ts +1 -0
- package/dist/components/Progress/classes.js +29 -4
- package/dist/components/SplashScreen/index.d.ts +1 -0
- package/dist/components/SplashScreen/index.js +2 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +2 -1
- package/dist/metadata/components.json +280 -3
- package/package.json +1 -1
|
@@ -14,7 +14,8 @@ const Progress_Progress = ({ value = 0, min = 0, max = 100, size = 'md', color =
|
|
|
14
14
|
/*#__PURE__*/ jsx(Progress.Track, {
|
|
15
15
|
"data-slot": "progress-track",
|
|
16
16
|
className: progressTrackVariants({
|
|
17
|
-
size
|
|
17
|
+
size,
|
|
18
|
+
color
|
|
18
19
|
}),
|
|
19
20
|
children: /*#__PURE__*/ jsx(Progress.Range, {
|
|
20
21
|
"data-slot": "progress-range",
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { ProgressColor } from './types';
|
|
2
2
|
export declare const progressTrackVariants: (props?: ({
|
|
3
3
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
4
|
+
color?: ProgressColor | null | undefined;
|
|
4
5
|
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
5
6
|
export declare const progressRangeVariants: (props?: ({
|
|
6
7
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
@@ -22,16 +22,41 @@ const progressColorMap = {
|
|
|
22
22
|
neutral: 'bg-badge-neutral-strong',
|
|
23
23
|
stone: 'bg-badge-stone-strong'
|
|
24
24
|
};
|
|
25
|
-
const
|
|
25
|
+
const trackColorMap = {
|
|
26
|
+
slate: 'bg-badge-slate-light',
|
|
27
|
+
red: 'bg-badge-red-light',
|
|
28
|
+
'w-orange': 'bg-badge-w-orange-light',
|
|
29
|
+
amber: 'bg-badge-amber-light',
|
|
30
|
+
yellow: 'bg-badge-yellow-light',
|
|
31
|
+
lime: 'bg-badge-lime-light',
|
|
32
|
+
green: 'bg-badge-green-light',
|
|
33
|
+
emerald: 'bg-badge-emerald-light',
|
|
34
|
+
teal: 'bg-badge-teal-light',
|
|
35
|
+
cyan: 'bg-badge-cyan-light',
|
|
36
|
+
sky: 'bg-badge-sky-light',
|
|
37
|
+
blue: 'bg-badge-blue-light',
|
|
38
|
+
indigo: 'bg-badge-indigo-light',
|
|
39
|
+
violet: 'bg-badge-violet-light',
|
|
40
|
+
fuchsia: 'bg-badge-fuchsia-light',
|
|
41
|
+
pink: 'bg-badge-pink-light',
|
|
42
|
+
rose: 'bg-badge-rose-light',
|
|
43
|
+
gray: 'bg-badge-gray-light',
|
|
44
|
+
zinc: 'bg-badge-zinc-light',
|
|
45
|
+
neutral: 'bg-badge-neutral-light',
|
|
46
|
+
stone: 'bg-badge-stone-light'
|
|
47
|
+
};
|
|
48
|
+
const progressTrackVariants = cva('relative w-full overflow-hidden', {
|
|
26
49
|
variants: {
|
|
27
50
|
size: {
|
|
28
51
|
sm: 'h-4 rounded-2',
|
|
29
52
|
md: 'h-8 rounded-4',
|
|
30
53
|
lg: 'h-12 rounded-6'
|
|
31
|
-
}
|
|
54
|
+
},
|
|
55
|
+
color: trackColorMap
|
|
32
56
|
},
|
|
33
57
|
defaultVariants: {
|
|
34
|
-
size: 'md'
|
|
58
|
+
size: 'md',
|
|
59
|
+
color: 'w-orange'
|
|
35
60
|
}
|
|
36
61
|
});
|
|
37
62
|
const progressRangeVariants = cva('h-full transition-all duration-300 ease-out', {
|
|
@@ -45,7 +70,7 @@ const progressRangeVariants = cva('h-full transition-all duration-300 ease-out',
|
|
|
45
70
|
},
|
|
46
71
|
defaultVariants: {
|
|
47
72
|
size: 'md',
|
|
48
|
-
color: '
|
|
73
|
+
color: 'w-orange'
|
|
49
74
|
}
|
|
50
75
|
});
|
|
51
76
|
export { progressRangeVariants, progressTrackVariants };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SplashScreen, type SplashScreenProps } from './SplashScreen';
|
package/dist/index.d.ts
CHANGED
|
@@ -58,6 +58,7 @@ export { Select, SelectButton, SelectClearTrigger, SelectContent, SelectFooter,
|
|
|
58
58
|
export { Selection, SelectionAll, type SelectionAllProps, SelectionBulkBar, type SelectionBulkBarPlacement, type SelectionBulkBarProps, SelectionItem, type SelectionItemProps, type SelectionProps, } from './components/Selection';
|
|
59
59
|
export { Separator, type SeparatorProps } from './components/Separator';
|
|
60
60
|
export { Skeleton, type SkeletonProps } from './components/Skeleton';
|
|
61
|
+
export { SplashScreen, type SplashScreenProps } from './components/SplashScreen';
|
|
61
62
|
export { SplitButton, type SplitButtonProps } from './components/SplitButton';
|
|
62
63
|
export { HStack, type HStackProps, Stack, type StackProps, VStack, type VStackProps, } from './components/Stack';
|
|
63
64
|
export { Switch, SwitchControl, SwitchDescription, type SwitchDescriptionProps, SwitchLabel, type SwitchLabelProps, type SwitchProps, } from './components/Switch';
|
package/dist/index.js
CHANGED
|
@@ -47,6 +47,7 @@ import { Select, SelectButton, SelectClearTrigger, SelectContent, SelectFooter,
|
|
|
47
47
|
import { Selection, SelectionAll, SelectionBulkBar, SelectionItem } from "./components/Selection/index.js";
|
|
48
48
|
import { Separator } from "./components/Separator/index.js";
|
|
49
49
|
import { Skeleton } from "./components/Skeleton/index.js";
|
|
50
|
+
import { SplashScreen } from "./components/SplashScreen/index.js";
|
|
50
51
|
import { SplitButton } from "./components/SplitButton/index.js";
|
|
51
52
|
import { HStack, Stack, VStack } from "./components/Stack/index.js";
|
|
52
53
|
import { Switch, SwitchControl, SwitchDescription, SwitchLabel } from "./components/Switch/index.js";
|
|
@@ -63,4 +64,4 @@ import { Tooltip, TooltipContent, TooltipTrigger } from "./components/Tooltip/in
|
|
|
63
64
|
import { TopHeader, TopHeaderActions, TopHeaderLogo } from "./components/TopHeader/index.js";
|
|
64
65
|
import { Tour, beaconStepEffect, useTour, waitForStepEvent } from "./components/Tour/index.js";
|
|
65
66
|
import { TestIdProvider, useTestId } from "./utils/testId.js";
|
|
66
|
-
export { Accordion, AccordionActions, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertClose, AlertContent, AlertControls, AlertDescription, AlertIcon, AlertTitle, AppShell, AppShellHeader, AppShellRail, AppShellRemote, Attribute, AttributeActions, AttributeActionsContent, AttributeActionsItem, AttributeActionsTarget, AttributeLabel, AttributeLabelDescription, AttributeLabelInfo, AttributeValue, Badge, Breadcrumbs, BreadcrumbsEllipsis, BreadcrumbsItem, BreadcrumbsScopeSwitcher, BreadcrumbsSeparator, Button, Calendar, CalendarApplyButton, CalendarBody, CalendarContent, CalendarDate, CalendarDateTime, CalendarDayName, CalendarFooter, CalendarFooterControls, CalendarGrid, CalendarGrids, CalendarHeader, CalendarInputHeader, CalendarKeyboardHints, CalendarPresetItem, CalendarPresets, CalendarProvider, CalendarResetButton, CalendarTrigger, Card, CardContent, CardFooter, CardHeader, CardTitle, Checkbox, CheckboxDescription, CheckboxGroup, CheckboxIndicator, CheckboxLabel, Code, Country, CountryFlag, CountryName, DAY_NAMES, DEFAULT_RANGE_PRESETS, DEFAULT_SINGLE_PRESETS, DateFormatProvider, DateInput, DateRangeEndValue, DateRangeInput, DateRangeProvider, DateRangeSeparator, DateRangeStartValue, Drawer, DrawerBody, DrawerClose, DrawerContent, DrawerFooter, DrawerFooterControls, DrawerHeader, DrawerPositioner, DrawerResizeHandle, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuContent, DropdownMenuContextTrigger, DropdownMenuFooter, DropdownMenuGroup, DropdownMenuInput, DropdownMenuItem, DropdownMenuItemContent, DropdownMenuItemDescription, DropdownMenuItemIcon, DropdownMenuItemText, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuTrigger, DropdownMenuTriggerItem, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, FilterInput, FilterInputChip, FilterInputFieldMenu, FilterInputOperatorMenu, Flex, FormatDateTime, HStack, HTTP_METHODS, HTTP_METHOD_COLOR, Heading, HttpMethod, Input, InputGroup, InputGroupAddon, InputGroupText, Ip, IpAddress, IpCountry, IpList, IpPort, IpProvider, Kbd, KbdGroup, Link, Loader, Logo, MONTH_NAMES, NavRail, NavRailBody, NavRailFooter, NavRailItem, NavRailSeparator, NumberInput, NumericBadge, OverflowTooltip, OverflowTooltipContent, ParameterPath, Popover, PopoverContent, PopoverTrigger, ProductNav, ProductNavBreadcrumbs, ProductNavPanel, Progress, RESPONSE_CODE_COLOR, Radio, RadioDescription, RadioGroup, RadioIndicator, RadioLabel, RemoteShell, RemoteShellBreadcrumb, RemoteShellContent, RemoteShellPanel, ResponseCode, ScrollArea, ScrollAreaContent, ScrollAreaCorner, ScrollAreaScrollbar, ScrollAreaViewport, SegmentedControl, SegmentedControlButton, SegmentedControlItem, SegmentedControlSeparator, SegmentedTabs, SegmentedTabsButton, SegmentedTabsContent, SegmentedTabsList, SegmentedTabsSeparator, SegmentedTabsTrigger, SegmentedTabsTriggerButton, Select, SelectButton, SelectClearTrigger, SelectContent, SelectFooter, SelectGroup, SelectGroupLabel, SelectHeader, SelectInput, SelectOption, SelectOptionDescription, SelectOptionIndicator, SelectOptionText, SelectPositioner, SelectSearchInput, SelectSeparator, Selection, SelectionAll, SelectionBulkBar, SelectionItem, Separator, Skeleton, SplitButton, Stack, Switch, SwitchControl, SwitchDescription, SwitchLabel, Table, TableActionBar, TableEmptyState, TableSettingsMenu, Tabs, TabsButton, TabsContent, TabsLineActions, TabsList, TabsSeparator, TabsTrigger, Tag, TagClose, TestIdProvider, Text, Textarea, ThemeProvider, Time, TimeInput, Toast, ToastActions, Toaster, ToggleButton, Tooltip, TooltipContent, TooltipTrigger, TopHeader, TopHeaderActions, TopHeaderLogo, Tour, VStack, ZonedDateTime, beaconStepEffect, cardVariants, createTableColumnHelper, datacenters, drawerContentVariants, drawerPositionerVariants, findDrillNode, findFirstLinkPath, formatAsFilter, getLocalTimeZone, getResponseCodeCategory, matchNav, parseDate, parseDateTime, parseTime, parseZonedDateTime, proxyTypes, sourceLabels, toaster, today, useCalendarContext, useDateFormat, useDateRangeContext, useDrawerContext, useProductNav, useProductNavContext, useTestId, useTheme, useTour, waitForStepEvent };
|
|
67
|
+
export { Accordion, AccordionActions, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertClose, AlertContent, AlertControls, AlertDescription, AlertIcon, AlertTitle, AppShell, AppShellHeader, AppShellRail, AppShellRemote, Attribute, AttributeActions, AttributeActionsContent, AttributeActionsItem, AttributeActionsTarget, AttributeLabel, AttributeLabelDescription, AttributeLabelInfo, AttributeValue, Badge, Breadcrumbs, BreadcrumbsEllipsis, BreadcrumbsItem, BreadcrumbsScopeSwitcher, BreadcrumbsSeparator, Button, Calendar, CalendarApplyButton, CalendarBody, CalendarContent, CalendarDate, CalendarDateTime, CalendarDayName, CalendarFooter, CalendarFooterControls, CalendarGrid, CalendarGrids, CalendarHeader, CalendarInputHeader, CalendarKeyboardHints, CalendarPresetItem, CalendarPresets, CalendarProvider, CalendarResetButton, CalendarTrigger, Card, CardContent, CardFooter, CardHeader, CardTitle, Checkbox, CheckboxDescription, CheckboxGroup, CheckboxIndicator, CheckboxLabel, Code, Country, CountryFlag, CountryName, DAY_NAMES, DEFAULT_RANGE_PRESETS, DEFAULT_SINGLE_PRESETS, DateFormatProvider, DateInput, DateRangeEndValue, DateRangeInput, DateRangeProvider, DateRangeSeparator, DateRangeStartValue, Drawer, DrawerBody, DrawerClose, DrawerContent, DrawerFooter, DrawerFooterControls, DrawerHeader, DrawerPositioner, DrawerResizeHandle, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuContent, DropdownMenuContextTrigger, DropdownMenuFooter, DropdownMenuGroup, DropdownMenuInput, DropdownMenuItem, DropdownMenuItemContent, DropdownMenuItemDescription, DropdownMenuItemIcon, DropdownMenuItemText, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuTrigger, DropdownMenuTriggerItem, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, FilterInput, FilterInputChip, FilterInputFieldMenu, FilterInputOperatorMenu, Flex, FormatDateTime, HStack, HTTP_METHODS, HTTP_METHOD_COLOR, Heading, HttpMethod, Input, InputGroup, InputGroupAddon, InputGroupText, Ip, IpAddress, IpCountry, IpList, IpPort, IpProvider, Kbd, KbdGroup, Link, Loader, Logo, MONTH_NAMES, NavRail, NavRailBody, NavRailFooter, NavRailItem, NavRailSeparator, NumberInput, NumericBadge, OverflowTooltip, OverflowTooltipContent, ParameterPath, Popover, PopoverContent, PopoverTrigger, ProductNav, ProductNavBreadcrumbs, ProductNavPanel, Progress, RESPONSE_CODE_COLOR, Radio, RadioDescription, RadioGroup, RadioIndicator, RadioLabel, RemoteShell, RemoteShellBreadcrumb, RemoteShellContent, RemoteShellPanel, ResponseCode, ScrollArea, ScrollAreaContent, ScrollAreaCorner, ScrollAreaScrollbar, ScrollAreaViewport, SegmentedControl, SegmentedControlButton, SegmentedControlItem, SegmentedControlSeparator, SegmentedTabs, SegmentedTabsButton, SegmentedTabsContent, SegmentedTabsList, SegmentedTabsSeparator, SegmentedTabsTrigger, SegmentedTabsTriggerButton, Select, SelectButton, SelectClearTrigger, SelectContent, SelectFooter, SelectGroup, SelectGroupLabel, SelectHeader, SelectInput, SelectOption, SelectOptionDescription, SelectOptionIndicator, SelectOptionText, SelectPositioner, SelectSearchInput, SelectSeparator, Selection, SelectionAll, SelectionBulkBar, SelectionItem, Separator, Skeleton, SplashScreen, SplitButton, Stack, Switch, SwitchControl, SwitchDescription, SwitchLabel, Table, TableActionBar, TableEmptyState, TableSettingsMenu, Tabs, TabsButton, TabsContent, TabsLineActions, TabsList, TabsSeparator, TabsTrigger, Tag, TagClose, TestIdProvider, Text, Textarea, ThemeProvider, Time, TimeInput, Toast, ToastActions, Toaster, ToggleButton, Tooltip, TooltipContent, TooltipTrigger, TopHeader, TopHeaderActions, TopHeaderLogo, Tour, VStack, ZonedDateTime, beaconStepEffect, cardVariants, createTableColumnHelper, datacenters, drawerContentVariants, drawerPositionerVariants, findDrillNode, findFirstLinkPath, formatAsFilter, getLocalTimeZone, getResponseCodeCategory, matchNav, parseDate, parseDateTime, parseTime, parseZonedDateTime, proxyTypes, sourceLabels, toaster, today, useCalendarContext, useDateFormat, useDateRangeContext, useDrawerContext, useProductNav, useProductNavContext, useTestId, useTheme, useTour, waitForStepEvent };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": "0.44.1",
|
|
3
|
-
"generatedAt": "2026-05-
|
|
3
|
+
"generatedAt": "2026-05-22T12:06:04.874Z",
|
|
4
4
|
"components": [
|
|
5
5
|
{
|
|
6
6
|
"name": "Accordion",
|
|
@@ -30592,7 +30592,7 @@
|
|
|
30592
30592
|
{
|
|
30593
30593
|
"name": "color",
|
|
30594
30594
|
"options": [],
|
|
30595
|
-
"defaultValue": "
|
|
30595
|
+
"defaultValue": "w-orange"
|
|
30596
30596
|
}
|
|
30597
30597
|
],
|
|
30598
30598
|
"subComponents": [],
|
|
@@ -46523,7 +46523,284 @@
|
|
|
46523
46523
|
{
|
|
46524
46524
|
"name": "SplashScreen",
|
|
46525
46525
|
"importPath": "@wallarm-org/design-system/SplashScreen",
|
|
46526
|
-
"props": [
|
|
46526
|
+
"props": [
|
|
46527
|
+
{
|
|
46528
|
+
"name": "visible",
|
|
46529
|
+
"type": "boolean | undefined",
|
|
46530
|
+
"required": false,
|
|
46531
|
+
"defaultValue": "true"
|
|
46532
|
+
},
|
|
46533
|
+
{
|
|
46534
|
+
"name": "defaultChecked",
|
|
46535
|
+
"type": "boolean | undefined",
|
|
46536
|
+
"required": false
|
|
46537
|
+
},
|
|
46538
|
+
{
|
|
46539
|
+
"name": "defaultValue",
|
|
46540
|
+
"type": "string | number | readonly string[] | undefined",
|
|
46541
|
+
"required": false
|
|
46542
|
+
},
|
|
46543
|
+
{
|
|
46544
|
+
"name": "suppressContentEditableWarning",
|
|
46545
|
+
"type": "boolean | undefined",
|
|
46546
|
+
"required": false
|
|
46547
|
+
},
|
|
46548
|
+
{
|
|
46549
|
+
"name": "suppressHydrationWarning",
|
|
46550
|
+
"type": "boolean | undefined",
|
|
46551
|
+
"required": false
|
|
46552
|
+
},
|
|
46553
|
+
{
|
|
46554
|
+
"name": "accessKey",
|
|
46555
|
+
"type": "string | undefined",
|
|
46556
|
+
"required": false
|
|
46557
|
+
},
|
|
46558
|
+
{
|
|
46559
|
+
"name": "autoCapitalize",
|
|
46560
|
+
"type": "\"off\" | \"none\" | \"on\" | \"sentences\" | \"words\" | \"characters\" | (string & {}) | undefined",
|
|
46561
|
+
"required": false
|
|
46562
|
+
},
|
|
46563
|
+
{
|
|
46564
|
+
"name": "autoFocus",
|
|
46565
|
+
"type": "boolean | undefined",
|
|
46566
|
+
"required": false
|
|
46567
|
+
},
|
|
46568
|
+
{
|
|
46569
|
+
"name": "contentEditable",
|
|
46570
|
+
"type": "Booleanish | \"inherit\" | \"plaintext-only\" | undefined",
|
|
46571
|
+
"required": false
|
|
46572
|
+
},
|
|
46573
|
+
{
|
|
46574
|
+
"name": "contextMenu",
|
|
46575
|
+
"type": "string | undefined",
|
|
46576
|
+
"required": false
|
|
46577
|
+
},
|
|
46578
|
+
{
|
|
46579
|
+
"name": "dir",
|
|
46580
|
+
"type": "string | undefined",
|
|
46581
|
+
"required": false
|
|
46582
|
+
},
|
|
46583
|
+
{
|
|
46584
|
+
"name": "draggable",
|
|
46585
|
+
"type": "Booleanish | undefined",
|
|
46586
|
+
"required": false
|
|
46587
|
+
},
|
|
46588
|
+
{
|
|
46589
|
+
"name": "enterKeyHint",
|
|
46590
|
+
"type": "\"enter\" | \"done\" | \"go\" | \"next\" | \"previous\" | \"search\" | \"send\" | undefined",
|
|
46591
|
+
"required": false
|
|
46592
|
+
},
|
|
46593
|
+
{
|
|
46594
|
+
"name": "hidden",
|
|
46595
|
+
"type": "boolean | undefined",
|
|
46596
|
+
"required": false
|
|
46597
|
+
},
|
|
46598
|
+
{
|
|
46599
|
+
"name": "id",
|
|
46600
|
+
"type": "string | undefined",
|
|
46601
|
+
"required": false
|
|
46602
|
+
},
|
|
46603
|
+
{
|
|
46604
|
+
"name": "lang",
|
|
46605
|
+
"type": "string | undefined",
|
|
46606
|
+
"required": false
|
|
46607
|
+
},
|
|
46608
|
+
{
|
|
46609
|
+
"name": "nonce",
|
|
46610
|
+
"type": "string | undefined",
|
|
46611
|
+
"required": false
|
|
46612
|
+
},
|
|
46613
|
+
{
|
|
46614
|
+
"name": "slot",
|
|
46615
|
+
"type": "string | undefined",
|
|
46616
|
+
"required": false
|
|
46617
|
+
},
|
|
46618
|
+
{
|
|
46619
|
+
"name": "spellCheck",
|
|
46620
|
+
"type": "Booleanish | undefined",
|
|
46621
|
+
"required": false
|
|
46622
|
+
},
|
|
46623
|
+
{
|
|
46624
|
+
"name": "tabIndex",
|
|
46625
|
+
"type": "number | undefined",
|
|
46626
|
+
"required": false
|
|
46627
|
+
},
|
|
46628
|
+
{
|
|
46629
|
+
"name": "title",
|
|
46630
|
+
"type": "string | undefined",
|
|
46631
|
+
"required": false
|
|
46632
|
+
},
|
|
46633
|
+
{
|
|
46634
|
+
"name": "translate",
|
|
46635
|
+
"type": "\"yes\" | \"no\" | undefined",
|
|
46636
|
+
"required": false
|
|
46637
|
+
},
|
|
46638
|
+
{
|
|
46639
|
+
"name": "radioGroup",
|
|
46640
|
+
"type": "string | undefined",
|
|
46641
|
+
"required": false
|
|
46642
|
+
},
|
|
46643
|
+
{
|
|
46644
|
+
"name": "role",
|
|
46645
|
+
"type": "AriaRole | undefined",
|
|
46646
|
+
"required": false
|
|
46647
|
+
},
|
|
46648
|
+
{
|
|
46649
|
+
"name": "about",
|
|
46650
|
+
"type": "string | undefined",
|
|
46651
|
+
"required": false
|
|
46652
|
+
},
|
|
46653
|
+
{
|
|
46654
|
+
"name": "content",
|
|
46655
|
+
"type": "string | undefined",
|
|
46656
|
+
"required": false
|
|
46657
|
+
},
|
|
46658
|
+
{
|
|
46659
|
+
"name": "datatype",
|
|
46660
|
+
"type": "string | undefined",
|
|
46661
|
+
"required": false
|
|
46662
|
+
},
|
|
46663
|
+
{
|
|
46664
|
+
"name": "inlist",
|
|
46665
|
+
"type": "any",
|
|
46666
|
+
"required": false
|
|
46667
|
+
},
|
|
46668
|
+
{
|
|
46669
|
+
"name": "prefix",
|
|
46670
|
+
"type": "string | undefined",
|
|
46671
|
+
"required": false
|
|
46672
|
+
},
|
|
46673
|
+
{
|
|
46674
|
+
"name": "property",
|
|
46675
|
+
"type": "string | undefined",
|
|
46676
|
+
"required": false
|
|
46677
|
+
},
|
|
46678
|
+
{
|
|
46679
|
+
"name": "rel",
|
|
46680
|
+
"type": "string | undefined",
|
|
46681
|
+
"required": false
|
|
46682
|
+
},
|
|
46683
|
+
{
|
|
46684
|
+
"name": "resource",
|
|
46685
|
+
"type": "string | undefined",
|
|
46686
|
+
"required": false
|
|
46687
|
+
},
|
|
46688
|
+
{
|
|
46689
|
+
"name": "rev",
|
|
46690
|
+
"type": "string | undefined",
|
|
46691
|
+
"required": false
|
|
46692
|
+
},
|
|
46693
|
+
{
|
|
46694
|
+
"name": "typeof",
|
|
46695
|
+
"type": "string | undefined",
|
|
46696
|
+
"required": false
|
|
46697
|
+
},
|
|
46698
|
+
{
|
|
46699
|
+
"name": "vocab",
|
|
46700
|
+
"type": "string | undefined",
|
|
46701
|
+
"required": false
|
|
46702
|
+
},
|
|
46703
|
+
{
|
|
46704
|
+
"name": "autoCorrect",
|
|
46705
|
+
"type": "string | undefined",
|
|
46706
|
+
"required": false
|
|
46707
|
+
},
|
|
46708
|
+
{
|
|
46709
|
+
"name": "autoSave",
|
|
46710
|
+
"type": "string | undefined",
|
|
46711
|
+
"required": false
|
|
46712
|
+
},
|
|
46713
|
+
{
|
|
46714
|
+
"name": "color",
|
|
46715
|
+
"type": "string | undefined",
|
|
46716
|
+
"required": false
|
|
46717
|
+
},
|
|
46718
|
+
{
|
|
46719
|
+
"name": "itemProp",
|
|
46720
|
+
"type": "string | undefined",
|
|
46721
|
+
"required": false
|
|
46722
|
+
},
|
|
46723
|
+
{
|
|
46724
|
+
"name": "itemScope",
|
|
46725
|
+
"type": "boolean | undefined",
|
|
46726
|
+
"required": false
|
|
46727
|
+
},
|
|
46728
|
+
{
|
|
46729
|
+
"name": "itemType",
|
|
46730
|
+
"type": "string | undefined",
|
|
46731
|
+
"required": false
|
|
46732
|
+
},
|
|
46733
|
+
{
|
|
46734
|
+
"name": "itemID",
|
|
46735
|
+
"type": "string | undefined",
|
|
46736
|
+
"required": false
|
|
46737
|
+
},
|
|
46738
|
+
{
|
|
46739
|
+
"name": "itemRef",
|
|
46740
|
+
"type": "string | undefined",
|
|
46741
|
+
"required": false
|
|
46742
|
+
},
|
|
46743
|
+
{
|
|
46744
|
+
"name": "results",
|
|
46745
|
+
"type": "number | undefined",
|
|
46746
|
+
"required": false
|
|
46747
|
+
},
|
|
46748
|
+
{
|
|
46749
|
+
"name": "security",
|
|
46750
|
+
"type": "string | undefined",
|
|
46751
|
+
"required": false
|
|
46752
|
+
},
|
|
46753
|
+
{
|
|
46754
|
+
"name": "unselectable",
|
|
46755
|
+
"type": "\"off\" | \"on\" | undefined",
|
|
46756
|
+
"required": false
|
|
46757
|
+
},
|
|
46758
|
+
{
|
|
46759
|
+
"name": "popover",
|
|
46760
|
+
"type": "\"\" | \"auto\" | \"manual\" | \"hint\" | undefined",
|
|
46761
|
+
"required": false
|
|
46762
|
+
},
|
|
46763
|
+
{
|
|
46764
|
+
"name": "popoverTargetAction",
|
|
46765
|
+
"type": "\"toggle\" | \"show\" | \"hide\" | undefined",
|
|
46766
|
+
"required": false
|
|
46767
|
+
},
|
|
46768
|
+
{
|
|
46769
|
+
"name": "popoverTarget",
|
|
46770
|
+
"type": "string | undefined",
|
|
46771
|
+
"required": false
|
|
46772
|
+
},
|
|
46773
|
+
{
|
|
46774
|
+
"name": "inert",
|
|
46775
|
+
"type": "boolean | undefined",
|
|
46776
|
+
"required": false,
|
|
46777
|
+
"description": "@see https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/inert"
|
|
46778
|
+
},
|
|
46779
|
+
{
|
|
46780
|
+
"name": "inputMode",
|
|
46781
|
+
"type": "\"none\" | \"search\" | \"text\" | \"tel\" | \"url\" | \"email\" | \"numeric\" | \"decimal\" | undefined",
|
|
46782
|
+
"required": false,
|
|
46783
|
+
"description": "Hints at the type of data that might be entered by the user while editing the element or its contents"
|
|
46784
|
+
},
|
|
46785
|
+
{
|
|
46786
|
+
"name": "is",
|
|
46787
|
+
"type": "string | undefined",
|
|
46788
|
+
"required": false,
|
|
46789
|
+
"description": "Specify that a standard HTML element should behave like a defined custom built-in element"
|
|
46790
|
+
},
|
|
46791
|
+
{
|
|
46792
|
+
"name": "exportparts",
|
|
46793
|
+
"type": "string | undefined",
|
|
46794
|
+
"required": false,
|
|
46795
|
+
"description": "@see {@link https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/exportparts}"
|
|
46796
|
+
},
|
|
46797
|
+
{
|
|
46798
|
+
"name": "part",
|
|
46799
|
+
"type": "string | undefined",
|
|
46800
|
+
"required": false,
|
|
46801
|
+
"description": "@see {@link https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/part}"
|
|
46802
|
+
}
|
|
46803
|
+
],
|
|
46527
46804
|
"variants": [],
|
|
46528
46805
|
"subComponents": [],
|
|
46529
46806
|
"examples": [
|
package/package.json
CHANGED