@govtechsg/sgds-web-component 3.21.1 → 3.21.2-rc.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/components/Tab/index.umd.min.js +1 -1
- package/components/Tab/index.umd.min.js.map +1 -1
- package/components/Tab/sgds-tab-panel.js +1 -0
- package/components/Tab/sgds-tab-panel.js.map +1 -1
- package/components/index.umd.min.js +1 -1
- package/components/index.umd.min.js.map +1 -1
- package/custom-elements.json +1 -1
- package/index.umd.min.js +1 -1
- package/index.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/react/components/Tab/sgds-tab-panel.cjs.js +1 -0
- package/react/components/Tab/sgds-tab-panel.cjs.js.map +1 -1
- package/react/components/Tab/sgds-tab-panel.js +1 -0
- package/react/components/Tab/sgds-tab-panel.js.map +1 -1
- package/types/react.d.ts +73 -73
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sgds-tab-panel.cjs.js","sources":["../../../../src/components/Tab/sgds-tab-panel.ts"],"sourcesContent":["import { html } from \"lit\";\nimport { property } from \"lit/decorators.js\";\nimport { classMap } from \"lit/directives/class-map.js\";\nimport SgdsElement from \"../../base/sgds-element\";\nimport { watch } from \"../../utils/watch\";\nimport tabPanelStyles from \"./tab-panel.css\";\n\nlet id = 0;\n\n/**\n * @summary Tab panels are used inside tab groups to display tabbed content.\n * @slot - The tab panel's content.\n *\n */\nexport class SgdsTabPanel extends SgdsElement {\n static styles = [...SgdsElement.styles, tabPanelStyles];\n private readonly attrId = ++id;\n private readonly componentId = `sgds-tab-panel-${this.attrId}`;\n /** The tab panel's name. */\n @property({ reflect: true }) name = \"\";\n\n /** When true, the tab panel will be shown. When used with tab-group, this property is already being managed */\n @property({ type: Boolean, reflect: true }) active = false;\n\n connectedCallback() {\n super.connectedCallback();\n this.id = this.id.length > 0 ? this.id : this.componentId;\n this.setAttribute(\"role\", \"tabpanel\");\n }\n\n @watch(\"active\")\n _handleActiveChange() {\n this.setAttribute(\"aria-hidden\", this.active ? \"false\" : \"true\");\n }\n\n render() {\n return html`\n <slot\n class=${classMap({\n \"tab-panel\": true,\n \"tab-panel--active\": this.active\n })}\n ></slot>\n `;\n }\n}\n\nexport default SgdsTabPanel;\n"],"names":["SgdsElement","html","classMap","tabPanelStyles","__decorate","property","watch"],"mappings":";;;;;;;;;;;;;AAOA,IAAI,EAAE,GAAG,CAAC,CAAC;AAEX;;;;AAIG;AACG,MAAO,YAAa,SAAQA,sBAAW,CAAA;AAA7C,IAAA,WAAA,GAAA;;QAEmB,IAAM,CAAA,MAAA,GAAG,EAAE,EAAE,CAAC;AACd,QAAA,IAAA,CAAA,WAAW,GAAG,CAAkB,eAAA,EAAA,IAAI,CAAC,MAAM,EAAE,CAAC;;QAElC,IAAI,CAAA,IAAA,GAAG,EAAE,CAAC;;QAGK,IAAM,CAAA,MAAA,GAAG,KAAK,CAAC;
|
|
1
|
+
{"version":3,"file":"sgds-tab-panel.cjs.js","sources":["../../../../src/components/Tab/sgds-tab-panel.ts"],"sourcesContent":["import { html } from \"lit\";\nimport { property } from \"lit/decorators.js\";\nimport { classMap } from \"lit/directives/class-map.js\";\nimport SgdsElement from \"../../base/sgds-element\";\nimport { watch } from \"../../utils/watch\";\nimport tabPanelStyles from \"./tab-panel.css\";\n\nlet id = 0;\n\n/**\n * @summary Tab panels are used inside tab groups to display tabbed content.\n * @slot - The tab panel's content.\n *\n */\nexport class SgdsTabPanel extends SgdsElement {\n static styles = [...SgdsElement.styles, tabPanelStyles];\n private readonly attrId = ++id;\n private readonly componentId = `sgds-tab-panel-${this.attrId}`;\n /** The tab panel's name. */\n @property({ reflect: true }) name = \"\";\n\n /** When true, the tab panel will be shown. When used with tab-group, this property is already being managed */\n @property({ type: Boolean, reflect: true }) active = false;\n\n connectedCallback() {\n super.connectedCallback();\n this.id = this.id.length > 0 ? this.id : this.componentId;\n this.setAttribute(\"role\", \"tabpanel\");\n }\n\n @watch(\"active\")\n _handleActiveChange() {\n this.setAttribute(\"aria-hidden\", this.active ? \"false\" : \"true\");\n this.inert = !this.active;\n }\n\n render() {\n return html`\n <slot\n class=${classMap({\n \"tab-panel\": true,\n \"tab-panel--active\": this.active\n })}\n ></slot>\n `;\n }\n}\n\nexport default SgdsTabPanel;\n"],"names":["SgdsElement","html","classMap","tabPanelStyles","__decorate","property","watch"],"mappings":";;;;;;;;;;;;;AAOA,IAAI,EAAE,GAAG,CAAC,CAAC;AAEX;;;;AAIG;AACG,MAAO,YAAa,SAAQA,sBAAW,CAAA;AAA7C,IAAA,WAAA,GAAA;;QAEmB,IAAM,CAAA,MAAA,GAAG,EAAE,EAAE,CAAC;AACd,QAAA,IAAA,CAAA,WAAW,GAAG,CAAkB,eAAA,EAAA,IAAI,CAAC,MAAM,EAAE,CAAC;;QAElC,IAAI,CAAA,IAAA,GAAG,EAAE,CAAC;;QAGK,IAAM,CAAA,MAAA,GAAG,KAAK,CAAC;KAwB5D;IAtBC,iBAAiB,GAAA;QACf,KAAK,CAAC,iBAAiB,EAAE,CAAC;QAC1B,IAAI,CAAC,EAAE,GAAG,IAAI,CAAC,EAAE,CAAC,MAAM,GAAG,CAAC,GAAG,IAAI,CAAC,EAAE,GAAG,IAAI,CAAC,WAAW,CAAC;AAC1D,QAAA,IAAI,CAAC,YAAY,CAAC,MAAM,EAAE,UAAU,CAAC,CAAC;KACvC;IAGD,mBAAmB,GAAA;AACjB,QAAA,IAAI,CAAC,YAAY,CAAC,aAAa,EAAE,IAAI,CAAC,MAAM,GAAG,OAAO,GAAG,MAAM,CAAC,CAAC;AACjE,QAAA,IAAI,CAAC,KAAK,GAAG,CAAC,IAAI,CAAC,MAAM,CAAC;KAC3B;IAED,MAAM,GAAA;AACJ,QAAA,OAAOC,QAAI,CAAA,CAAA;;AAEC,cAAA,EAAAC,oBAAQ,CAAC;AACf,YAAA,WAAW,EAAE,IAAI;YACjB,mBAAmB,EAAE,IAAI,CAAC,MAAM;SACjC,CAAC,CAAA;;KAEL,CAAC;KACH;;AA9BM,YAAM,CAAA,MAAA,GAAG,CAAC,GAAGF,sBAAW,CAAC,MAAM,EAAEG,mBAAc,CAAzC,CAA2C;AAI3BC,gBAAA,CAAA;AAA5B,IAAAC,sBAAQ,CAAC,EAAE,OAAO,EAAE,IAAI,EAAE,CAAC;AAAW,CAAA,EAAA,YAAA,CAAA,SAAA,EAAA,MAAA,EAAA,KAAA,CAAA,CAAA,CAAA;AAGKD,gBAAA,CAAA;IAA3CC,sBAAQ,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,OAAO,EAAE,IAAI,EAAE,CAAC;AAAgB,CAAA,EAAA,YAAA,CAAA,SAAA,EAAA,QAAA,EAAA,KAAA,CAAA,CAAA,CAAA;AAS3DD,gBAAA,CAAA;IADCE,WAAK,CAAC,QAAQ,CAAC;AAIf,CAAA,EAAA,YAAA,CAAA,SAAA,EAAA,qBAAA,EAAA,IAAA,CAAA;;;;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sgds-tab-panel.js","sources":["../../../../src/components/Tab/sgds-tab-panel.ts"],"sourcesContent":["import { html } from \"lit\";\nimport { property } from \"lit/decorators.js\";\nimport { classMap } from \"lit/directives/class-map.js\";\nimport SgdsElement from \"../../base/sgds-element\";\nimport { watch } from \"../../utils/watch\";\nimport tabPanelStyles from \"./tab-panel.css\";\n\nlet id = 0;\n\n/**\n * @summary Tab panels are used inside tab groups to display tabbed content.\n * @slot - The tab panel's content.\n *\n */\nexport class SgdsTabPanel extends SgdsElement {\n static styles = [...SgdsElement.styles, tabPanelStyles];\n private readonly attrId = ++id;\n private readonly componentId = `sgds-tab-panel-${this.attrId}`;\n /** The tab panel's name. */\n @property({ reflect: true }) name = \"\";\n\n /** When true, the tab panel will be shown. When used with tab-group, this property is already being managed */\n @property({ type: Boolean, reflect: true }) active = false;\n\n connectedCallback() {\n super.connectedCallback();\n this.id = this.id.length > 0 ? this.id : this.componentId;\n this.setAttribute(\"role\", \"tabpanel\");\n }\n\n @watch(\"active\")\n _handleActiveChange() {\n this.setAttribute(\"aria-hidden\", this.active ? \"false\" : \"true\");\n }\n\n render() {\n return html`\n <slot\n class=${classMap({\n \"tab-panel\": true,\n \"tab-panel--active\": this.active\n })}\n ></slot>\n `;\n }\n}\n\nexport default SgdsTabPanel;\n"],"names":["tabPanelStyles"],"mappings":";;;;;;;;;AAOA,IAAI,EAAE,GAAG,CAAC,CAAC;AAEX;;;;AAIG;AACG,MAAO,YAAa,SAAQ,WAAW,CAAA;AAA7C,IAAA,WAAA,GAAA;;QAEmB,IAAM,CAAA,MAAA,GAAG,EAAE,EAAE,CAAC;AACd,QAAA,IAAA,CAAA,WAAW,GAAG,CAAkB,eAAA,EAAA,IAAI,CAAC,MAAM,EAAE,CAAC;;QAElC,IAAI,CAAA,IAAA,GAAG,EAAE,CAAC;;QAGK,IAAM,CAAA,MAAA,GAAG,KAAK,CAAC;
|
|
1
|
+
{"version":3,"file":"sgds-tab-panel.js","sources":["../../../../src/components/Tab/sgds-tab-panel.ts"],"sourcesContent":["import { html } from \"lit\";\nimport { property } from \"lit/decorators.js\";\nimport { classMap } from \"lit/directives/class-map.js\";\nimport SgdsElement from \"../../base/sgds-element\";\nimport { watch } from \"../../utils/watch\";\nimport tabPanelStyles from \"./tab-panel.css\";\n\nlet id = 0;\n\n/**\n * @summary Tab panels are used inside tab groups to display tabbed content.\n * @slot - The tab panel's content.\n *\n */\nexport class SgdsTabPanel extends SgdsElement {\n static styles = [...SgdsElement.styles, tabPanelStyles];\n private readonly attrId = ++id;\n private readonly componentId = `sgds-tab-panel-${this.attrId}`;\n /** The tab panel's name. */\n @property({ reflect: true }) name = \"\";\n\n /** When true, the tab panel will be shown. When used with tab-group, this property is already being managed */\n @property({ type: Boolean, reflect: true }) active = false;\n\n connectedCallback() {\n super.connectedCallback();\n this.id = this.id.length > 0 ? this.id : this.componentId;\n this.setAttribute(\"role\", \"tabpanel\");\n }\n\n @watch(\"active\")\n _handleActiveChange() {\n this.setAttribute(\"aria-hidden\", this.active ? \"false\" : \"true\");\n this.inert = !this.active;\n }\n\n render() {\n return html`\n <slot\n class=${classMap({\n \"tab-panel\": true,\n \"tab-panel--active\": this.active\n })}\n ></slot>\n `;\n }\n}\n\nexport default SgdsTabPanel;\n"],"names":["tabPanelStyles"],"mappings":";;;;;;;;;AAOA,IAAI,EAAE,GAAG,CAAC,CAAC;AAEX;;;;AAIG;AACG,MAAO,YAAa,SAAQ,WAAW,CAAA;AAA7C,IAAA,WAAA,GAAA;;QAEmB,IAAM,CAAA,MAAA,GAAG,EAAE,EAAE,CAAC;AACd,QAAA,IAAA,CAAA,WAAW,GAAG,CAAkB,eAAA,EAAA,IAAI,CAAC,MAAM,EAAE,CAAC;;QAElC,IAAI,CAAA,IAAA,GAAG,EAAE,CAAC;;QAGK,IAAM,CAAA,MAAA,GAAG,KAAK,CAAC;KAwB5D;IAtBC,iBAAiB,GAAA;QACf,KAAK,CAAC,iBAAiB,EAAE,CAAC;QAC1B,IAAI,CAAC,EAAE,GAAG,IAAI,CAAC,EAAE,CAAC,MAAM,GAAG,CAAC,GAAG,IAAI,CAAC,EAAE,GAAG,IAAI,CAAC,WAAW,CAAC;AAC1D,QAAA,IAAI,CAAC,YAAY,CAAC,MAAM,EAAE,UAAU,CAAC,CAAC;KACvC;IAGD,mBAAmB,GAAA;AACjB,QAAA,IAAI,CAAC,YAAY,CAAC,aAAa,EAAE,IAAI,CAAC,MAAM,GAAG,OAAO,GAAG,MAAM,CAAC,CAAC;AACjE,QAAA,IAAI,CAAC,KAAK,GAAG,CAAC,IAAI,CAAC,MAAM,CAAC;KAC3B;IAED,MAAM,GAAA;AACJ,QAAA,OAAO,IAAI,CAAA,CAAA;;AAEC,cAAA,EAAA,QAAQ,CAAC;AACf,YAAA,WAAW,EAAE,IAAI;YACjB,mBAAmB,EAAE,IAAI,CAAC,MAAM;SACjC,CAAC,CAAA;;KAEL,CAAC;KACH;;AA9BM,YAAM,CAAA,MAAA,GAAG,CAAC,GAAG,WAAW,CAAC,MAAM,EAAEA,QAAc,CAAzC,CAA2C;AAI3B,UAAA,CAAA;AAA5B,IAAA,QAAQ,CAAC,EAAE,OAAO,EAAE,IAAI,EAAE,CAAC;AAAW,CAAA,EAAA,YAAA,CAAA,SAAA,EAAA,MAAA,EAAA,KAAA,CAAA,CAAA,CAAA;AAGK,UAAA,CAAA;IAA3C,QAAQ,CAAC,EAAE,IAAI,EAAE,OAAO,EAAE,OAAO,EAAE,IAAI,EAAE,CAAC;AAAgB,CAAA,EAAA,YAAA,CAAA,SAAA,EAAA,QAAA,EAAA,KAAA,CAAA,CAAA,CAAA;AAS3D,UAAA,CAAA;IADC,KAAK,CAAC,QAAQ,CAAC;AAIf,CAAA,EAAA,YAAA,CAAA,SAAA,EAAA,qBAAA,EAAA,IAAA,CAAA;;;;"}
|
package/types/react.d.ts
CHANGED
|
@@ -1553,79 +1553,79 @@ export interface SgdsTooltipProps extends SgdsBaseProps {
|
|
|
1553
1553
|
declare module "react" {
|
|
1554
1554
|
namespace JSX {
|
|
1555
1555
|
interface IntrinsicElements {
|
|
1556
|
-
"sgds-accordion-item": SgdsAccordionItemProps
|
|
1557
|
-
"sgds-accordion": SgdsAccordionProps
|
|
1558
|
-
"sgds-alert-link": SgdsAlertLinkProps
|
|
1559
|
-
"sgds-alert": SgdsAlertProps
|
|
1560
|
-
"sgds-badge": SgdsBadgeProps
|
|
1561
|
-
"sgds-breadcrumb-item": SgdsBreadcrumbItemProps
|
|
1562
|
-
"sgds-breadcrumb": SgdsBreadcrumbProps
|
|
1563
|
-
"sgds-button": SgdsButtonProps
|
|
1564
|
-
"sgds-card": SgdsCardProps
|
|
1565
|
-
"sgds-checkbox-group": SgdsCheckboxGroupProps
|
|
1566
|
-
"sgds-checkbox": SgdsCheckboxProps
|
|
1567
|
-
"sgds-close-button": SgdsCloseButtonProps
|
|
1568
|
-
"sgds-combo-box-option": SgdsComboBoxOptionProps
|
|
1569
|
-
"sgds-combo-box": SgdsComboBoxProps
|
|
1570
|
-
"sgds-datepicker": SgdsDatepickerProps
|
|
1571
|
-
"sgds-description-list-group": SgdsDescriptionListGroupProps
|
|
1572
|
-
"sgds-description-list": SgdsDescriptionListProps
|
|
1573
|
-
"sgds-divider": SgdsDividerProps
|
|
1574
|
-
"sgds-drawer": SgdsDrawerProps
|
|
1575
|
-
"sgds-dropdown-item": SgdsDropdownItemProps
|
|
1576
|
-
"sgds-dropdown": SgdsDropdownProps
|
|
1577
|
-
"sgds-file-upload": SgdsFileUploadProps
|
|
1578
|
-
"sgds-footer-item": SgdsFooterItemProps
|
|
1579
|
-
"sgds-footer": SgdsFooterProps
|
|
1580
|
-
"sgds-icon": SgdsIconProps
|
|
1581
|
-
"sgds-icon-button": SgdsIconButtonProps
|
|
1582
|
-
"sgds-icon-card": SgdsIconCardProps
|
|
1583
|
-
"sgds-icon-list": SgdsIconListProps
|
|
1584
|
-
"sgds-image-card": SgdsImageCardProps
|
|
1585
|
-
"sgds-input": SgdsInputProps
|
|
1586
|
-
"sgds-link": SgdsLinkProps
|
|
1587
|
-
"sgds-mainnav-dropdown": SgdsMainnavDropdownProps
|
|
1588
|
-
"sgds-mainnav-item": SgdsMainnavItemProps
|
|
1589
|
-
"sgds-mainnav": SgdsMainnavProps
|
|
1590
|
-
"sgds-masthead": SgdsMastheadProps
|
|
1591
|
-
"sgds-modal": SgdsModalProps
|
|
1592
|
-
"sgds-overflow-menu": SgdsOverflowMenuProps
|
|
1593
|
-
"sgds-pagination": SgdsPaginationProps
|
|
1594
|
-
"sgds-progress-bar": SgdsProgressBarProps
|
|
1595
|
-
"sgds-quantity-toggle": SgdsQuantityToggleProps
|
|
1596
|
-
"sgds-radio-group": SgdsRadioGroupProps
|
|
1597
|
-
"sgds-radio": SgdsRadioProps
|
|
1598
|
-
"sgds-select-option": SgdsSelectOptionProps
|
|
1599
|
-
"sgds-select": SgdsSelectProps
|
|
1600
|
-
"sgds-sidebar-group": SgdsSidebarGroupProps
|
|
1601
|
-
"sgds-sidebar-item": SgdsSidebarItemProps
|
|
1602
|
-
"sgds-sidebar-section": SgdsSidebarSectionProps
|
|
1603
|
-
"sgds-sidebar": SgdsSidebarProps
|
|
1604
|
-
"sgds-sidenav-item": SgdsSidenavItemProps
|
|
1605
|
-
"sgds-sidenav-link": SgdsSidenavLinkProps
|
|
1606
|
-
"sgds-sidenav": SgdsSidenavProps
|
|
1607
|
-
"sgds-skeleton": SgdsSkeletonProps
|
|
1608
|
-
"sgds-spinner": SgdsSpinnerProps
|
|
1609
|
-
"sgds-step": SgdsStepProps
|
|
1610
|
-
"sgds-stepper": SgdsStepperProps
|
|
1611
|
-
"sgds-subnav-item": SgdsSubnavItemProps
|
|
1612
|
-
"sgds-subnav": SgdsSubnavProps
|
|
1613
|
-
"sgds-switch": SgdsSwitchProps
|
|
1614
|
-
"sgds-system-banner-item": SgdsSystemBannerItemProps
|
|
1615
|
-
"sgds-system-banner": SgdsSystemBannerProps
|
|
1616
|
-
"sgds-tab-group": SgdsTabGroupProps
|
|
1617
|
-
"sgds-tab-panel": SgdsTabPanelProps
|
|
1618
|
-
"sgds-tab": SgdsTabProps
|
|
1619
|
-
"sgds-table-cell": SgdsTableCellProps
|
|
1620
|
-
"sgds-table-head": SgdsTableHeadProps
|
|
1621
|
-
"sgds-table-row": SgdsTableRowProps
|
|
1622
|
-
"sgds-table": SgdsTableProps
|
|
1623
|
-
"sgds-table-of-contents": SgdsTableOfContentsProps
|
|
1624
|
-
"sgds-textarea": SgdsTextareaProps
|
|
1625
|
-
"sgds-thumbnail-card": SgdsThumbnailCardProps
|
|
1626
|
-
"sgds-toast-container": SgdsToastContainerProps
|
|
1627
|
-
"sgds-toast": SgdsToastProps
|
|
1628
|
-
"sgds-tooltip": SgdsTooltipProps
|
|
1556
|
+
"sgds-accordion-item": React.DetailedHTMLProps<SgdsAccordionItemProps, HTMLElement>;
|
|
1557
|
+
"sgds-accordion": React.DetailedHTMLProps<SgdsAccordionProps, HTMLElement>;
|
|
1558
|
+
"sgds-alert-link": React.DetailedHTMLProps<SgdsAlertLinkProps, HTMLElement>;
|
|
1559
|
+
"sgds-alert": React.DetailedHTMLProps<SgdsAlertProps, HTMLElement>;
|
|
1560
|
+
"sgds-badge": React.DetailedHTMLProps<SgdsBadgeProps, HTMLElement>;
|
|
1561
|
+
"sgds-breadcrumb-item": React.DetailedHTMLProps<SgdsBreadcrumbItemProps, HTMLElement>;
|
|
1562
|
+
"sgds-breadcrumb": React.DetailedHTMLProps<SgdsBreadcrumbProps, HTMLElement>;
|
|
1563
|
+
"sgds-button": React.DetailedHTMLProps<SgdsButtonProps, HTMLElement>;
|
|
1564
|
+
"sgds-card": React.DetailedHTMLProps<SgdsCardProps, HTMLElement>;
|
|
1565
|
+
"sgds-checkbox-group": React.DetailedHTMLProps<SgdsCheckboxGroupProps, HTMLElement>;
|
|
1566
|
+
"sgds-checkbox": React.DetailedHTMLProps<SgdsCheckboxProps, HTMLElement>;
|
|
1567
|
+
"sgds-close-button": React.DetailedHTMLProps<SgdsCloseButtonProps, HTMLElement>;
|
|
1568
|
+
"sgds-combo-box-option": React.DetailedHTMLProps<SgdsComboBoxOptionProps, HTMLElement>;
|
|
1569
|
+
"sgds-combo-box": React.DetailedHTMLProps<SgdsComboBoxProps, HTMLElement>;
|
|
1570
|
+
"sgds-datepicker": React.DetailedHTMLProps<SgdsDatepickerProps, HTMLElement>;
|
|
1571
|
+
"sgds-description-list-group": React.DetailedHTMLProps<SgdsDescriptionListGroupProps, HTMLElement>;
|
|
1572
|
+
"sgds-description-list": React.DetailedHTMLProps<SgdsDescriptionListProps, HTMLElement>;
|
|
1573
|
+
"sgds-divider": React.DetailedHTMLProps<SgdsDividerProps, HTMLElement>;
|
|
1574
|
+
"sgds-drawer": React.DetailedHTMLProps<SgdsDrawerProps, HTMLElement>;
|
|
1575
|
+
"sgds-dropdown-item": React.DetailedHTMLProps<SgdsDropdownItemProps, HTMLElement>;
|
|
1576
|
+
"sgds-dropdown": React.DetailedHTMLProps<SgdsDropdownProps, HTMLElement>;
|
|
1577
|
+
"sgds-file-upload": React.DetailedHTMLProps<SgdsFileUploadProps, HTMLElement>;
|
|
1578
|
+
"sgds-footer-item": React.DetailedHTMLProps<SgdsFooterItemProps, HTMLElement>;
|
|
1579
|
+
"sgds-footer": React.DetailedHTMLProps<SgdsFooterProps, HTMLElement>;
|
|
1580
|
+
"sgds-icon": React.DetailedHTMLProps<SgdsIconProps, HTMLElement>;
|
|
1581
|
+
"sgds-icon-button": React.DetailedHTMLProps<SgdsIconButtonProps, HTMLElement>;
|
|
1582
|
+
"sgds-icon-card": React.DetailedHTMLProps<SgdsIconCardProps, HTMLElement>;
|
|
1583
|
+
"sgds-icon-list": React.DetailedHTMLProps<SgdsIconListProps, HTMLElement>;
|
|
1584
|
+
"sgds-image-card": React.DetailedHTMLProps<SgdsImageCardProps, HTMLElement>;
|
|
1585
|
+
"sgds-input": React.DetailedHTMLProps<SgdsInputProps, HTMLElement>;
|
|
1586
|
+
"sgds-link": React.DetailedHTMLProps<SgdsLinkProps, HTMLElement>;
|
|
1587
|
+
"sgds-mainnav-dropdown": React.DetailedHTMLProps<SgdsMainnavDropdownProps, HTMLElement>;
|
|
1588
|
+
"sgds-mainnav-item": React.DetailedHTMLProps<SgdsMainnavItemProps, HTMLElement>;
|
|
1589
|
+
"sgds-mainnav": React.DetailedHTMLProps<SgdsMainnavProps, HTMLElement>;
|
|
1590
|
+
"sgds-masthead": React.DetailedHTMLProps<SgdsMastheadProps, HTMLElement>;
|
|
1591
|
+
"sgds-modal": React.DetailedHTMLProps<SgdsModalProps, HTMLElement>;
|
|
1592
|
+
"sgds-overflow-menu": React.DetailedHTMLProps<SgdsOverflowMenuProps, HTMLElement>;
|
|
1593
|
+
"sgds-pagination": React.DetailedHTMLProps<SgdsPaginationProps, HTMLElement>;
|
|
1594
|
+
"sgds-progress-bar": React.DetailedHTMLProps<SgdsProgressBarProps, HTMLElement>;
|
|
1595
|
+
"sgds-quantity-toggle": React.DetailedHTMLProps<SgdsQuantityToggleProps, HTMLElement>;
|
|
1596
|
+
"sgds-radio-group": React.DetailedHTMLProps<SgdsRadioGroupProps, HTMLElement>;
|
|
1597
|
+
"sgds-radio": React.DetailedHTMLProps<SgdsRadioProps, HTMLElement>;
|
|
1598
|
+
"sgds-select-option": React.DetailedHTMLProps<SgdsSelectOptionProps, HTMLElement>;
|
|
1599
|
+
"sgds-select": React.DetailedHTMLProps<SgdsSelectProps, HTMLElement>;
|
|
1600
|
+
"sgds-sidebar-group": React.DetailedHTMLProps<SgdsSidebarGroupProps, HTMLElement>;
|
|
1601
|
+
"sgds-sidebar-item": React.DetailedHTMLProps<SgdsSidebarItemProps, HTMLElement>;
|
|
1602
|
+
"sgds-sidebar-section": React.DetailedHTMLProps<SgdsSidebarSectionProps, HTMLElement>;
|
|
1603
|
+
"sgds-sidebar": React.DetailedHTMLProps<SgdsSidebarProps, HTMLElement>;
|
|
1604
|
+
"sgds-sidenav-item": React.DetailedHTMLProps<SgdsSidenavItemProps, HTMLElement>;
|
|
1605
|
+
"sgds-sidenav-link": React.DetailedHTMLProps<SgdsSidenavLinkProps, HTMLElement>;
|
|
1606
|
+
"sgds-sidenav": React.DetailedHTMLProps<SgdsSidenavProps, HTMLElement>;
|
|
1607
|
+
"sgds-skeleton": React.DetailedHTMLProps<SgdsSkeletonProps, HTMLElement>;
|
|
1608
|
+
"sgds-spinner": React.DetailedHTMLProps<SgdsSpinnerProps, HTMLElement>;
|
|
1609
|
+
"sgds-step": React.DetailedHTMLProps<SgdsStepProps, HTMLElement>;
|
|
1610
|
+
"sgds-stepper": React.DetailedHTMLProps<SgdsStepperProps, HTMLElement>;
|
|
1611
|
+
"sgds-subnav-item": React.DetailedHTMLProps<SgdsSubnavItemProps, HTMLElement>;
|
|
1612
|
+
"sgds-subnav": React.DetailedHTMLProps<SgdsSubnavProps, HTMLElement>;
|
|
1613
|
+
"sgds-switch": React.DetailedHTMLProps<SgdsSwitchProps, HTMLElement>;
|
|
1614
|
+
"sgds-system-banner-item": React.DetailedHTMLProps<SgdsSystemBannerItemProps, HTMLElement>;
|
|
1615
|
+
"sgds-system-banner": React.DetailedHTMLProps<SgdsSystemBannerProps, HTMLElement>;
|
|
1616
|
+
"sgds-tab-group": React.DetailedHTMLProps<SgdsTabGroupProps, HTMLElement>;
|
|
1617
|
+
"sgds-tab-panel": React.DetailedHTMLProps<SgdsTabPanelProps, HTMLElement>;
|
|
1618
|
+
"sgds-tab": React.DetailedHTMLProps<SgdsTabProps, HTMLElement>;
|
|
1619
|
+
"sgds-table-cell": React.DetailedHTMLProps<SgdsTableCellProps, HTMLElement>;
|
|
1620
|
+
"sgds-table-head": React.DetailedHTMLProps<SgdsTableHeadProps, HTMLElement>;
|
|
1621
|
+
"sgds-table-row": React.DetailedHTMLProps<SgdsTableRowProps, HTMLElement>;
|
|
1622
|
+
"sgds-table": React.DetailedHTMLProps<SgdsTableProps, HTMLElement>;
|
|
1623
|
+
"sgds-table-of-contents": React.DetailedHTMLProps<SgdsTableOfContentsProps, HTMLElement>;
|
|
1624
|
+
"sgds-textarea": React.DetailedHTMLProps<SgdsTextareaProps, HTMLElement>;
|
|
1625
|
+
"sgds-thumbnail-card": React.DetailedHTMLProps<SgdsThumbnailCardProps, HTMLElement>;
|
|
1626
|
+
"sgds-toast-container": React.DetailedHTMLProps<SgdsToastContainerProps, HTMLElement>;
|
|
1627
|
+
"sgds-toast": React.DetailedHTMLProps<SgdsToastProps, HTMLElement>;
|
|
1628
|
+
"sgds-tooltip": React.DetailedHTMLProps<SgdsTooltipProps, HTMLElement>;
|
|
1629
1629
|
}
|
|
1630
1630
|
}
|
|
1631
1631
|
}
|