dap-design-system 0.35.11 → 0.35.13
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/dark.theme.css +2 -2
- package/dist/dds.d.ts +169 -0
- package/dist/dds.js +3274 -3054
- package/dist/dds.js.map +1 -1
- package/dist/high-contrast.theme.css +2 -2
- package/dist/light.theme.css +2 -2
- package/dist/manifest/types/vue/index.d.ts +231 -129
- package/dist/manifest/vscode.html-custom-data.json +239 -91
- package/dist/manifest/web-types.json +415 -153
- package/dist/react-types.ts +10 -6
- package/dist/react.d.ts +391 -146
- package/dist/react.js +465 -435
- package/dist/react.js.map +1 -1
- package/dist/variables/variables-dark.css +2 -1
- package/dist/variables/variables-high-contrast.css +2 -1
- package/dist/variables/variables-light.css +2 -1
- package/package.json +1 -1
package/dist/react-types.ts
CHANGED
|
@@ -2,14 +2,14 @@ import * as DDS from "./dds.js"
|
|
|
2
2
|
type HtmlType = { children?: React.ReactNode | Element, class?: string, ref?: React.RefObject<any>, key?: React.Key | null | undefined,
|
|
3
3
|
style?: Partial<CSSStyleDeclaration>, id?: string, onClick?: (e: React.MouseEvent) => void, onChange?: (e: React.ChangeEvent) => void}
|
|
4
4
|
|
|
5
|
+
export type DapDSAnchorHeadingType = HtmlType & Partial<Omit<DDS.DapDSAnchorHeading, 'children' | 'style'>>
|
|
5
6
|
export type DapDSAccordionType = HtmlType & Partial<Omit<DDS.DapDSAccordion, 'children' | 'style'>>
|
|
6
|
-
export type DapDSAvatarType = HtmlType & Partial<Omit<DDS.DapDSAvatar, 'children' | 'style'>>
|
|
7
7
|
export type DapDSBadgeType = HtmlType & Partial<Omit<DDS.DapDSBadge, 'children' | 'style'>>
|
|
8
|
-
export type DapDSAnchorHeadingType = HtmlType & Partial<Omit<DDS.DapDSAnchorHeading, 'children' | 'style'>>
|
|
9
|
-
export type DapDSAccordionGroupType = HtmlType & Partial<Omit<DDS.DapDSAccordionGroup, 'children' | 'style'>>
|
|
10
|
-
export type DapDSBannerType = HtmlType & Partial<Omit<DDS.DapDSBanner, 'children' | 'style'>>
|
|
11
8
|
export type DapDSBreadcrumbType = HtmlType & Partial<Omit<DDS.DapDSBreadcrumb, 'children' | 'style'>>
|
|
9
|
+
export type DapDSBannerType = HtmlType & Partial<Omit<DDS.DapDSBanner, 'children' | 'style'>>
|
|
10
|
+
export type DapDSAvatarType = HtmlType & Partial<Omit<DDS.DapDSAvatar, 'children' | 'style'>>
|
|
12
11
|
export type DapDSBreadcrumbItemType = HtmlType & Partial<Omit<DDS.DapDSBreadcrumbItem, 'children' | 'style'>>
|
|
12
|
+
export type DapDSAccordionGroupType = HtmlType & Partial<Omit<DDS.DapDSAccordionGroup, 'children' | 'style'>>
|
|
13
13
|
export type DapDSButtonType = HtmlType & Partial<Omit<DDS.DapDSButton, 'children' | 'style'>>
|
|
14
14
|
export type DapDSCalendarCellType = HtmlType & Partial<Omit<DDS.DapDSCalendarCell, 'children' | 'style'>>
|
|
15
15
|
export type DapDSCalendarType = HtmlType & Partial<Omit<DDS.DapDSCalendar, 'children' | 'style'>>
|
|
@@ -132,9 +132,13 @@ export type SystemInformationFillType = HtmlType & Partial<Omit<DDS.SystemInform
|
|
|
132
132
|
export type SystemInformationLineType = HtmlType & Partial<Omit<DDS.SystemInformationLine, 'children' | 'style'>>
|
|
133
133
|
export type SystemLightbulbFillType = HtmlType & Partial<Omit<DDS.SystemLightbulbFill, 'children' | 'style'>>
|
|
134
134
|
export type SystemLoadingSpinnerType = HtmlType & Partial<Omit<DDS.SystemLoadingSpinner, 'children' | 'style'>>
|
|
135
|
+
export type SystemLockFillType = HtmlType & Partial<Omit<DDS.SystemLockFill, 'children' | 'style'>>
|
|
136
|
+
export type SystemLockLineType = HtmlType & Partial<Omit<DDS.SystemLockLine, 'children' | 'style'>>
|
|
135
137
|
export type SystemMenuLineType = HtmlType & Partial<Omit<DDS.SystemMenuLine, 'children' | 'style'>>
|
|
136
138
|
export type SystemMenuLineSType = HtmlType & Partial<Omit<DDS.SystemMenuLineS, 'children' | 'style'>>
|
|
137
139
|
export type SystemSearchLineType = HtmlType & Partial<Omit<DDS.SystemSearchLine, 'children' | 'style'>>
|
|
140
|
+
export type SystemShieldCheckFillType = HtmlType & Partial<Omit<DDS.SystemShieldCheckFill, 'children' | 'style'>>
|
|
141
|
+
export type SystemShieldCheckLineType = HtmlType & Partial<Omit<DDS.SystemShieldCheckLine, 'children' | 'style'>>
|
|
138
142
|
export type SystemStarFillType = HtmlType & Partial<Omit<DDS.SystemStarFill, 'children' | 'style'>>
|
|
139
|
-
export type
|
|
140
|
-
export type
|
|
143
|
+
export type SystemSubtractLine2Type = HtmlType & Partial<Omit<DDS.SystemSubtractLine2, 'children' | 'style'>>
|
|
144
|
+
export type SystemSubtractLineType = HtmlType & Partial<Omit<DDS.SystemSubtractLine, 'children' | 'style'>>
|