@quartzds/core-react 1.0.0-beta.113 → 1.0.0-beta.114

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/CHANGELOG.md CHANGED
@@ -11,6 +11,22 @@ SPDX-License-Identifier: Apache-2.0
11
11
 
12
12
  > All notable changes to this project will be documented in this file
13
13
 
14
+ ## @quartzds/core-react 1.0.0-beta.114 (2025-12-18)
15
+
16
+ * fix!: remove unused nav-list-item component from core package ([7b2e9e6](https://github.com/quartzds/core-foundations/commit/7b2e9e6))
17
+
18
+
19
+ ### BREAKING CHANGE
20
+
21
+ * qds-nav-list-item is not part of the core package anymore
22
+
23
+
24
+
25
+
26
+ ### Dependencies
27
+
28
+ * **@quartzds/core:** upgraded to 1.0.0-beta.115
29
+
14
30
  ## @quartzds/core-react 1.0.0-beta.113 (2025-12-03)
15
31
 
16
32
  * feat: introduce `qds-avatar-media` ([1f792c3](https://github.com/quartzds/core-foundations/commit/1f792c3))
package/lib/index.cjs CHANGED
@@ -51,7 +51,6 @@ __export(index_exports, {
51
51
  QdsLoader: () => QdsLoader,
52
52
  QdsMenuItem: () => QdsMenuItem,
53
53
  QdsMiniButton: () => QdsMiniButton,
54
- QdsNavListItem: () => QdsNavListItem,
55
54
  QdsProgressBar: () => QdsProgressBar,
56
55
  QdsRadio: () => QdsRadio,
57
56
  QdsSelect: () => QdsSelect,
@@ -101,7 +100,6 @@ var import_qds_list_item = require("@quartzds/core/components/qds-list-item.js")
101
100
  var import_qds_loader = require("@quartzds/core/components/qds-loader.js");
102
101
  var import_qds_menu_item = require("@quartzds/core/components/qds-menu-item.js");
103
102
  var import_qds_mini_button = require("@quartzds/core/components/qds-mini-button.js");
104
- var import_qds_nav_list_item = require("@quartzds/core/components/qds-nav-list-item.js");
105
103
  var import_qds_progress_bar = require("@quartzds/core/components/qds-progress-bar.js");
106
104
  var import_qds_radio = require("@quartzds/core/components/qds-radio.js");
107
105
  var import_qds_select = require("@quartzds/core/components/qds-select.js");
@@ -335,17 +333,6 @@ var QdsMiniButton = /* @__PURE__ */ (0, import_runtime.createComponent)({
335
333
  },
336
334
  defineCustomElement: import_qds_mini_button.defineCustomElement
337
335
  });
338
- var QdsNavListItem = /* @__PURE__ */ (0, import_runtime.createComponent)({
339
- tagName: "qds-nav-list-item",
340
- elementClass: import_qds_nav_list_item.QdsNavListItem,
341
- // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
342
- react: import_react.default,
343
- events: {
344
- onQdsBlur: "qdsBlur",
345
- onQdsFocus: "qdsFocus"
346
- },
347
- defineCustomElement: import_qds_nav_list_item.defineCustomElement
348
- });
349
336
  var QdsProgressBar = /* @__PURE__ */ (0, import_runtime.createComponent)({
350
337
  tagName: "qds-progress-bar",
351
338
  elementClass: import_qds_progress_bar.QdsProgressBar,
@@ -520,7 +507,6 @@ var import_core2 = require("@quartzds/core");
520
507
  QdsLoader,
521
508
  QdsMenuItem,
522
509
  QdsMiniButton,
523
- QdsNavListItem,
524
510
  QdsProgressBar,
525
511
  QdsRadio,
526
512
  QdsSelect,
package/lib/index.d.cts CHANGED
@@ -1,4 +1,4 @@
1
- import { QdsActionItemCustomEvent, QdsFocusEventDetail, QdsButtonCustomEvent, QdsCheckboxCustomEvent, QdsChipCustomEvent, QdsIconButtonCustomEvent, QdsInlineLinkCustomEvent, QdsInputCustomEvent, QdsInputEventDetail, QdsListItemCustomEvent, QdsMenuItemCustomEvent, QdsMiniButtonCustomEvent, QdsNavListItemCustomEvent, QdsRadioCustomEvent, QdsSelectCustomEvent, QdsStandaloneLinkCustomEvent, QdsSwitchCustomEvent, QdsTabCustomEvent, QdsTabbarCustomEvent, QdsTextareaCustomEvent } from '@quartzds/core';
1
+ import { QdsActionItemCustomEvent, QdsFocusEventDetail, QdsButtonCustomEvent, QdsCheckboxCustomEvent, QdsChipCustomEvent, QdsIconButtonCustomEvent, QdsInlineLinkCustomEvent, QdsInputCustomEvent, QdsInputEventDetail, QdsListItemCustomEvent, QdsMenuItemCustomEvent, QdsMiniButtonCustomEvent, QdsRadioCustomEvent, QdsSelectCustomEvent, QdsStandaloneLinkCustomEvent, QdsSwitchCustomEvent, QdsTabCustomEvent, QdsTabbarCustomEvent, QdsTextareaCustomEvent } from '@quartzds/core';
2
2
  export { IconLibrary, IconLibraryResolver, getPlatform, getTheme, registerIconLibrary, setAssetPath, setNonce, setPlatform, setTheme, unregisterIconLibrary } from '@quartzds/core';
3
3
  import { QdsActionItem as QdsActionItem$1 } from '@quartzds/core/components/qds-action-item.js';
4
4
  import { QdsAvatarMedia as QdsAvatarMedia$1 } from '@quartzds/core/components/qds-avatar-media.js';
@@ -21,7 +21,6 @@ import { QdsListItem as QdsListItem$1 } from '@quartzds/core/components/qds-list
21
21
  import { QdsLoader as QdsLoader$1 } from '@quartzds/core/components/qds-loader.js';
22
22
  import { QdsMenuItem as QdsMenuItem$1 } from '@quartzds/core/components/qds-menu-item.js';
23
23
  import { QdsMiniButton as QdsMiniButton$1 } from '@quartzds/core/components/qds-mini-button.js';
24
- import { QdsNavListItem as QdsNavListItem$1 } from '@quartzds/core/components/qds-nav-list-item.js';
25
24
  import { QdsProgressBar as QdsProgressBar$1 } from '@quartzds/core/components/qds-progress-bar.js';
26
25
  import { QdsRadio as QdsRadio$1 } from '@quartzds/core/components/qds-radio.js';
27
26
  import { QdsSelect as QdsSelect$1 } from '@quartzds/core/components/qds-select.js';
@@ -136,11 +135,6 @@ type QdsMiniButtonEvents = {
136
135
  onQdsFocus: EventName<QdsMiniButtonCustomEvent<QdsFocusEventDetail>>;
137
136
  };
138
137
  declare const QdsMiniButton: StencilReactComponent<QdsMiniButton$1, QdsMiniButtonEvents>;
139
- type QdsNavListItemEvents = {
140
- onQdsBlur: EventName<QdsNavListItemCustomEvent<QdsFocusEventDetail>>;
141
- onQdsFocus: EventName<QdsNavListItemCustomEvent<QdsFocusEventDetail>>;
142
- };
143
- declare const QdsNavListItem: StencilReactComponent<QdsNavListItem$1, QdsNavListItemEvents>;
144
138
  type QdsProgressBarEvents = NonNullable<unknown>;
145
139
  declare const QdsProgressBar: StencilReactComponent<QdsProgressBar$1, QdsProgressBarEvents>;
146
140
  type QdsRadioEvents = {
@@ -202,4 +196,4 @@ type QdsTooltipEvents = {
202
196
  };
203
197
  declare const QdsTooltip: StencilReactComponent<QdsTooltip$1, QdsTooltipEvents>;
204
198
 
205
- export { QdsActionItem, type QdsActionItemEvents, QdsAvatarMedia, type QdsAvatarMediaEvents, QdsBadgeCounter, type QdsBadgeCounterEvents, QdsBadgeIndicator, type QdsBadgeIndicatorEvents, QdsBreadcrumbItem, type QdsBreadcrumbItemEvents, QdsButton, type QdsButtonEvents, QdsCheckbox, type QdsCheckboxEvents, QdsChip, type QdsChipEvents, QdsDialog, type QdsDialogEvents, QdsDivider, type QdsDividerEvents, QdsDropdown, type QdsDropdownEvents, QdsFormMessage, type QdsFormMessageEvents, QdsIcon, QdsIconButton, type QdsIconButtonEvents, type QdsIconEvents, QdsInlineLink, type QdsInlineLinkEvents, QdsInput, type QdsInputEvents, QdsLabel, type QdsLabelEvents, QdsListItem, type QdsListItemEvents, QdsLoader, type QdsLoaderEvents, QdsMenuItem, type QdsMenuItemEvents, QdsMiniButton, type QdsMiniButtonEvents, QdsNavListItem, type QdsNavListItemEvents, QdsProgressBar, type QdsProgressBarEvents, QdsRadio, type QdsRadioEvents, QdsSelect, type QdsSelectEvents, QdsStandaloneLink, type QdsStandaloneLinkEvents, QdsSwitch, type QdsSwitchEvents, QdsTab, type QdsTabEvents, QdsTabbar, type QdsTabbarEvents, QdsTable, QdsTableCell, type QdsTableCellEvents, type QdsTableEvents, QdsTableHeadCell, type QdsTableHeadCellEvents, QdsTableRow, type QdsTableRowEvents, QdsTag, type QdsTagEvents, QdsTextarea, type QdsTextareaEvents, QdsTitle, type QdsTitleEvents, QdsTooltip, type QdsTooltipEvents };
199
+ export { QdsActionItem, type QdsActionItemEvents, QdsAvatarMedia, type QdsAvatarMediaEvents, QdsBadgeCounter, type QdsBadgeCounterEvents, QdsBadgeIndicator, type QdsBadgeIndicatorEvents, QdsBreadcrumbItem, type QdsBreadcrumbItemEvents, QdsButton, type QdsButtonEvents, QdsCheckbox, type QdsCheckboxEvents, QdsChip, type QdsChipEvents, QdsDialog, type QdsDialogEvents, QdsDivider, type QdsDividerEvents, QdsDropdown, type QdsDropdownEvents, QdsFormMessage, type QdsFormMessageEvents, QdsIcon, QdsIconButton, type QdsIconButtonEvents, type QdsIconEvents, QdsInlineLink, type QdsInlineLinkEvents, QdsInput, type QdsInputEvents, QdsLabel, type QdsLabelEvents, QdsListItem, type QdsListItemEvents, QdsLoader, type QdsLoaderEvents, QdsMenuItem, type QdsMenuItemEvents, QdsMiniButton, type QdsMiniButtonEvents, QdsProgressBar, type QdsProgressBarEvents, QdsRadio, type QdsRadioEvents, QdsSelect, type QdsSelectEvents, QdsStandaloneLink, type QdsStandaloneLinkEvents, QdsSwitch, type QdsSwitchEvents, QdsTab, type QdsTabEvents, QdsTabbar, type QdsTabbarEvents, QdsTable, QdsTableCell, type QdsTableCellEvents, type QdsTableEvents, QdsTableHeadCell, type QdsTableHeadCellEvents, QdsTableRow, type QdsTableRowEvents, QdsTag, type QdsTagEvents, QdsTextarea, type QdsTextareaEvents, QdsTitle, type QdsTitleEvents, QdsTooltip, type QdsTooltipEvents };
package/lib/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { QdsActionItemCustomEvent, QdsFocusEventDetail, QdsButtonCustomEvent, QdsCheckboxCustomEvent, QdsChipCustomEvent, QdsIconButtonCustomEvent, QdsInlineLinkCustomEvent, QdsInputCustomEvent, QdsInputEventDetail, QdsListItemCustomEvent, QdsMenuItemCustomEvent, QdsMiniButtonCustomEvent, QdsNavListItemCustomEvent, QdsRadioCustomEvent, QdsSelectCustomEvent, QdsStandaloneLinkCustomEvent, QdsSwitchCustomEvent, QdsTabCustomEvent, QdsTabbarCustomEvent, QdsTextareaCustomEvent } from '@quartzds/core';
1
+ import { QdsActionItemCustomEvent, QdsFocusEventDetail, QdsButtonCustomEvent, QdsCheckboxCustomEvent, QdsChipCustomEvent, QdsIconButtonCustomEvent, QdsInlineLinkCustomEvent, QdsInputCustomEvent, QdsInputEventDetail, QdsListItemCustomEvent, QdsMenuItemCustomEvent, QdsMiniButtonCustomEvent, QdsRadioCustomEvent, QdsSelectCustomEvent, QdsStandaloneLinkCustomEvent, QdsSwitchCustomEvent, QdsTabCustomEvent, QdsTabbarCustomEvent, QdsTextareaCustomEvent } from '@quartzds/core';
2
2
  export { IconLibrary, IconLibraryResolver, getPlatform, getTheme, registerIconLibrary, setAssetPath, setNonce, setPlatform, setTheme, unregisterIconLibrary } from '@quartzds/core';
3
3
  import { QdsActionItem as QdsActionItem$1 } from '@quartzds/core/components/qds-action-item.js';
4
4
  import { QdsAvatarMedia as QdsAvatarMedia$1 } from '@quartzds/core/components/qds-avatar-media.js';
@@ -21,7 +21,6 @@ import { QdsListItem as QdsListItem$1 } from '@quartzds/core/components/qds-list
21
21
  import { QdsLoader as QdsLoader$1 } from '@quartzds/core/components/qds-loader.js';
22
22
  import { QdsMenuItem as QdsMenuItem$1 } from '@quartzds/core/components/qds-menu-item.js';
23
23
  import { QdsMiniButton as QdsMiniButton$1 } from '@quartzds/core/components/qds-mini-button.js';
24
- import { QdsNavListItem as QdsNavListItem$1 } from '@quartzds/core/components/qds-nav-list-item.js';
25
24
  import { QdsProgressBar as QdsProgressBar$1 } from '@quartzds/core/components/qds-progress-bar.js';
26
25
  import { QdsRadio as QdsRadio$1 } from '@quartzds/core/components/qds-radio.js';
27
26
  import { QdsSelect as QdsSelect$1 } from '@quartzds/core/components/qds-select.js';
@@ -136,11 +135,6 @@ type QdsMiniButtonEvents = {
136
135
  onQdsFocus: EventName<QdsMiniButtonCustomEvent<QdsFocusEventDetail>>;
137
136
  };
138
137
  declare const QdsMiniButton: StencilReactComponent<QdsMiniButton$1, QdsMiniButtonEvents>;
139
- type QdsNavListItemEvents = {
140
- onQdsBlur: EventName<QdsNavListItemCustomEvent<QdsFocusEventDetail>>;
141
- onQdsFocus: EventName<QdsNavListItemCustomEvent<QdsFocusEventDetail>>;
142
- };
143
- declare const QdsNavListItem: StencilReactComponent<QdsNavListItem$1, QdsNavListItemEvents>;
144
138
  type QdsProgressBarEvents = NonNullable<unknown>;
145
139
  declare const QdsProgressBar: StencilReactComponent<QdsProgressBar$1, QdsProgressBarEvents>;
146
140
  type QdsRadioEvents = {
@@ -202,4 +196,4 @@ type QdsTooltipEvents = {
202
196
  };
203
197
  declare const QdsTooltip: StencilReactComponent<QdsTooltip$1, QdsTooltipEvents>;
204
198
 
205
- export { QdsActionItem, type QdsActionItemEvents, QdsAvatarMedia, type QdsAvatarMediaEvents, QdsBadgeCounter, type QdsBadgeCounterEvents, QdsBadgeIndicator, type QdsBadgeIndicatorEvents, QdsBreadcrumbItem, type QdsBreadcrumbItemEvents, QdsButton, type QdsButtonEvents, QdsCheckbox, type QdsCheckboxEvents, QdsChip, type QdsChipEvents, QdsDialog, type QdsDialogEvents, QdsDivider, type QdsDividerEvents, QdsDropdown, type QdsDropdownEvents, QdsFormMessage, type QdsFormMessageEvents, QdsIcon, QdsIconButton, type QdsIconButtonEvents, type QdsIconEvents, QdsInlineLink, type QdsInlineLinkEvents, QdsInput, type QdsInputEvents, QdsLabel, type QdsLabelEvents, QdsListItem, type QdsListItemEvents, QdsLoader, type QdsLoaderEvents, QdsMenuItem, type QdsMenuItemEvents, QdsMiniButton, type QdsMiniButtonEvents, QdsNavListItem, type QdsNavListItemEvents, QdsProgressBar, type QdsProgressBarEvents, QdsRadio, type QdsRadioEvents, QdsSelect, type QdsSelectEvents, QdsStandaloneLink, type QdsStandaloneLinkEvents, QdsSwitch, type QdsSwitchEvents, QdsTab, type QdsTabEvents, QdsTabbar, type QdsTabbarEvents, QdsTable, QdsTableCell, type QdsTableCellEvents, type QdsTableEvents, QdsTableHeadCell, type QdsTableHeadCellEvents, QdsTableRow, type QdsTableRowEvents, QdsTag, type QdsTagEvents, QdsTextarea, type QdsTextareaEvents, QdsTitle, type QdsTitleEvents, QdsTooltip, type QdsTooltipEvents };
199
+ export { QdsActionItem, type QdsActionItemEvents, QdsAvatarMedia, type QdsAvatarMediaEvents, QdsBadgeCounter, type QdsBadgeCounterEvents, QdsBadgeIndicator, type QdsBadgeIndicatorEvents, QdsBreadcrumbItem, type QdsBreadcrumbItemEvents, QdsButton, type QdsButtonEvents, QdsCheckbox, type QdsCheckboxEvents, QdsChip, type QdsChipEvents, QdsDialog, type QdsDialogEvents, QdsDivider, type QdsDividerEvents, QdsDropdown, type QdsDropdownEvents, QdsFormMessage, type QdsFormMessageEvents, QdsIcon, QdsIconButton, type QdsIconButtonEvents, type QdsIconEvents, QdsInlineLink, type QdsInlineLinkEvents, QdsInput, type QdsInputEvents, QdsLabel, type QdsLabelEvents, QdsListItem, type QdsListItemEvents, QdsLoader, type QdsLoaderEvents, QdsMenuItem, type QdsMenuItemEvents, QdsMiniButton, type QdsMiniButtonEvents, QdsProgressBar, type QdsProgressBarEvents, QdsRadio, type QdsRadioEvents, QdsSelect, type QdsSelectEvents, QdsStandaloneLink, type QdsStandaloneLinkEvents, QdsSwitch, type QdsSwitchEvents, QdsTab, type QdsTabEvents, QdsTabbar, type QdsTabbarEvents, QdsTable, QdsTableCell, type QdsTableCellEvents, type QdsTableEvents, QdsTableHeadCell, type QdsTableHeadCellEvents, QdsTableRow, type QdsTableRowEvents, QdsTag, type QdsTagEvents, QdsTextarea, type QdsTextareaEvents, QdsTitle, type QdsTitleEvents, QdsTooltip, type QdsTooltipEvents };
package/lib/index.js CHANGED
@@ -21,7 +21,6 @@ import { QdsListItem as QdsListItemElement, defineCustomElement as defineQdsList
21
21
  import { QdsLoader as QdsLoaderElement, defineCustomElement as defineQdsLoader } from "@quartzds/core/components/qds-loader.js";
22
22
  import { QdsMenuItem as QdsMenuItemElement, defineCustomElement as defineQdsMenuItem } from "@quartzds/core/components/qds-menu-item.js";
23
23
  import { QdsMiniButton as QdsMiniButtonElement, defineCustomElement as defineQdsMiniButton } from "@quartzds/core/components/qds-mini-button.js";
24
- import { QdsNavListItem as QdsNavListItemElement, defineCustomElement as defineQdsNavListItem } from "@quartzds/core/components/qds-nav-list-item.js";
25
24
  import { QdsProgressBar as QdsProgressBarElement, defineCustomElement as defineQdsProgressBar } from "@quartzds/core/components/qds-progress-bar.js";
26
25
  import { QdsRadio as QdsRadioElement, defineCustomElement as defineQdsRadio } from "@quartzds/core/components/qds-radio.js";
27
26
  import { QdsSelect as QdsSelectElement, defineCustomElement as defineQdsSelect } from "@quartzds/core/components/qds-select.js";
@@ -255,17 +254,6 @@ var QdsMiniButton = /* @__PURE__ */ createComponent({
255
254
  },
256
255
  defineCustomElement: defineQdsMiniButton
257
256
  });
258
- var QdsNavListItem = /* @__PURE__ */ createComponent({
259
- tagName: "qds-nav-list-item",
260
- elementClass: QdsNavListItemElement,
261
- // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
262
- react: React,
263
- events: {
264
- onQdsBlur: "qdsBlur",
265
- onQdsFocus: "qdsFocus"
266
- },
267
- defineCustomElement: defineQdsNavListItem
268
- });
269
257
  var QdsProgressBar = /* @__PURE__ */ createComponent({
270
258
  tagName: "qds-progress-bar",
271
259
  elementClass: QdsProgressBarElement,
@@ -448,7 +436,6 @@ export {
448
436
  QdsLoader,
449
437
  QdsMenuItem,
450
438
  QdsMiniButton,
451
- QdsNavListItem,
452
439
  QdsProgressBar,
453
440
  QdsRadio,
454
441
  QdsSelect,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quartzds/core-react",
3
- "version": "1.0.0-beta.113",
3
+ "version": "1.0.0-beta.114",
4
4
  "description": "React wrapper for @quartzds/core",
5
5
  "homepage": "https://github.com/quartzds/core-foundations/tree/main/packages/react",
6
6
  "bugs": {
@@ -29,7 +29,7 @@
29
29
  "CHANGELOG.md"
30
30
  ],
31
31
  "dependencies": {
32
- "@quartzds/core": "1.0.0-beta.114",
32
+ "@quartzds/core": "1.0.0-beta.115",
33
33
  "@stencil/core": "^4.37.0",
34
34
  "@stencil/react-output-target": "^1.2.0",
35
35
  "@stencil/ssr": "^0.1.1"