From c9851f49064b20242e016ddcc3cce5a6e1f53c03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9C=BA=E6=99=BA=E7=9A=84=E5=B0=8F=E9=B1=BC=E5=90=9B?= <44761872+dragon-fish@users.noreply.github.com> Date: Wed, 3 Sep 2025 10:57:20 +0800 Subject: [PATCH 1/4] =?UTF-8?q?=F0=9F=A4=96=20Merge=20PR=20#73600=20feat:?= =?UTF-8?q?=20+=20@types/ssi-modal=20by=20@dragon-fish?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- types/ssi-modal/.npmignore | 5 + types/ssi-modal/SsiModal.d.ts | 319 +++++++++++++++++++++++++++++ types/ssi-modal/index.d.ts | 18 ++ types/ssi-modal/package.json | 20 ++ types/ssi-modal/ssi-modal-tests.ts | 170 +++++++++++++++ types/ssi-modal/tsconfig.json | 20 ++ 6 files changed, 552 insertions(+) create mode 100644 types/ssi-modal/.npmignore create mode 100644 types/ssi-modal/SsiModal.d.ts create mode 100644 types/ssi-modal/index.d.ts create mode 100644 types/ssi-modal/package.json create mode 100644 types/ssi-modal/ssi-modal-tests.ts create mode 100644 types/ssi-modal/tsconfig.json diff --git a/types/ssi-modal/.npmignore b/types/ssi-modal/.npmignore new file mode 100644 index 00000000000000..93e307400a5456 --- /dev/null +++ b/types/ssi-modal/.npmignore @@ -0,0 +1,5 @@ +* +!**/*.d.ts +!**/*.d.cts +!**/*.d.mts +!**/*.d.*.ts diff --git a/types/ssi-modal/SsiModal.d.ts b/types/ssi-modal/SsiModal.d.ts new file mode 100644 index 00000000000000..56f76fd9ca93e2 --- /dev/null +++ b/types/ssi-modal/SsiModal.d.ts @@ -0,0 +1,319 @@ +/** + * SsiModal: + * @see https://github.com/ssbeefeater/ssi-modal + * @author ssbeefeater + * + * This d.ts file: + * @author dragon-fish + * + * @license MIT + */ + +declare namespace SsiModal { + class SsiModal { + constructor(options: Partial); + + readonly backdropId: string; + readonly modalId: string; + readonly numberId: string; + options: SsiModalOptions; + readonly pluginName: string; + /** + * Initialize the modal and backdrop and expose them to the DOM + */ + init(): this; + /** + * Changes the previe state (fullScreen) of the modal. + */ + changePreviewState(): this; + /** + * Generates a button according to the options. + * @returns The button element. + */ + generateButton(buttonOptions: Partial): JQuery; + /** + * Returns the backdrop element of the modal. + * Or outer element if the modal is stack. + */ + get$backdrop(): JQuery; + /** + * Returns the buttons element of the modal. + * @param type - 'left' or 'right'. If not specified, returns all buttons' container. + */ + get$buttons(type?: "buttons" | "leftButtons" | "rightButtons"): JQuery; + /** + * Returns the content element of the modal. + */ + get$content(): JQuery; + /** + * Returns the title icons of the modal. + */ + get$icons(): JQuery; + /** + * Returns the modal element of the modal. + * @description returns the outer element of the modal (ie if we use stack modals will return the window object else will return the modalOuter) + */ + get$modal(): SsiModalModalElement; + /** + * Returns the title element of the modal. + */ + get$title(): JQuery; + /** + * Returns the window element of the modal. + */ + get$window(): JQuery; + /** + * Returns the wrapper element of the modal. + */ + get$wrapper(): JQuery; + /** + * Initialize the buttons element if it is necessary, and add the buttons to the element. + * @returns Buttons container element. + */ + setButtons( + buttons: Partial[], + area?: AnyJQueryElement, + $modalWindow?: JQuery, + ): JQuery; + /** + * Initialize the content element if it is necessary and registers the content. + * @param content The content of the element. + * @param method The jquery method that will use to register the content to the modal. + * @returns The content element of the modal. + */ + setContent( + content: string | HTMLElement | JQuery, + method?: "html" | "append" | "prepend", + ): JQuery; + setIcons(icons: { className: string; method: () => void }[]): JQuery; + setModalHeight(offset: number, option?: "height" | "min-height" | "max-height"): number; + setOptions(option: T, value: SsiModalOptions[T]): this; + setOptions(options: Partial): this; + setPluginName(name: string): this; + setTitle(title: string | HTMLElement | JQuery): JQuery; + show(): this; + close(): this; + + protected backdropInit(): JQuery; + protected modalInit(): SsiModalModalElement; + protected showBackdrop(): void; + protected destroyBackdrop(): this; + protected destroyModal(): this; + protected destroyTitle(): this; + protected destroyContent(): this; + protected destroyButtons(): this; + protected destroyIcons(): this; + } + + // default module export + interface ssi_modal { + /** + * Checks if the element is a ssi modal object. + */ + checkElement(element: AnyJQueryElement): SsiModal | false; + /** + * Creates a ssi modal object and shows it immediately. + * @param options The options of the modal + * @param element The id or class name of the element that trigger the modal. + * @example ```js + * ssi_modal.show({ content:'Hello World' }) + * ``` + */ + show(options: Partial, element?: AnyJQueryElement): ReturnType; + /** + * Creates a ssi modal object but does not init or show it. + * @param options The options of the modal + * @param element The id or class name of the element that trigger the modal. + * @example ```js + * ssi_modal.createObject({ content:'Hello World' }).init().show() + * ``` + */ + createObject(options: Partial, element?: AnyJQueryElement): SsiModal; + /** + * Closes the very top modal. If you pass a target parameter will close the modal you specified. + */ + close(modalId?: string | JQuery): ReturnType; + /** + * Close all opened modal with the right order and all callbacks will execute normally + * @param group `"normalModal"` or plugin names + * @param except Except modals with this selector + */ + closeAll(group?: string | string[], except?: string | string[]): SsiModal; + /** + * Remove all the modals from the dom immediately. No callbacks will execute. + */ + removeAll(): void; + /** + * You can extend the prototype of the SsiModal by adding new methods on ssi.proto + * @example ```ts + * ssi_modal.proto.clearContent = function () { this.get$content().text('') } + * ssi_modal.show({ content: 'hello, world' }).clearContent() + * // ↑ here + * ``` + */ + proto: SsiModal; + } + + // == Plugins == + interface ssi_modal { + // dialog + dialog( + options: Partial, + method: (event: MouseEvent, modal: SsiModal) => void, + ): SsiModal; + // confirm + confirm( + options: + & Partial + & Partial<{ + okBtn: Pick; + cancelBtn: Pick; + }>, + method: (event: MouseEvent, modal: SsiModal) => void, + ): SsiModal; + // notify + /** + * Display a popup notification similar to a toast box + * @param type One of predefined types, or any custom className + */ + notify( + type: "success" | "error" | "warning" | "info" | "dialog" | "confirm" | string, + options: + & Partial + & Partial<{ + icon: string; + okBtn: Pick; + cancelBtn: Pick; + overrideOther: boolean; + }>, + callback?: (result: boolean) => void, + ): SsiModal; + } + + interface SsiModalOptions { + animation: SsiModalAnimation; + animationSpeed: number; + backdrop: boolean | ("shared" | "byKindShared"); + backdropAnimation: SsiModalAnimation; + backdropClassName: string; + /** + * Trigger before the modal is closed. + * If `false` is returned, the modal will not be closed. + */ + // eslint-disable-next-line @typescript-eslint/no-invalid-void-type + beforeClose: (modal: SsiModal) => boolean | void; + /** + * Trigger before the modal is shown. + * If `false` is returned, the modal will not be shown. + */ + // eslint-disable-next-line @typescript-eslint/no-invalid-void-type + beforeShow: (modal: SsiModal) => boolean | void; + bodyElement: boolean; + bodyScroll: boolean; + buttons: Partial[]; + center: boolean; + className: string; + closeAfter: { + time: number; + displayTime: number; + resetOnHover: boolean; + }; + closeIcon: boolean; + content: AnyJQueryElement; + fitScreen: boolean; + fixedHeight: boolean | number; + iconButtons: boolean; + iframe: unknown; + keepContent: boolean; + modalAnimation: SsiModalAnimation; + navigation: boolean; + /** + * Trigger after closed via close icon + */ + onClickClose: boolean; + /** + * Trigger after the modal is closed. + */ + onClose: (modal: SsiModal) => void; + /** + * Trigger after the modal is shown. + */ + onShow: (modal: SsiModal) => void; + /** + * Should the modal be closed when clicking backdrop of it? + */ + outSideClose: boolean; + position: + | "right top" + | "right bottom" + | "left top" + | "left bottom" + | "center top" + | "center bottom"; + preview: unknown; + sizeClass: SsiModalSizeClass; + stack: boolean; + title: AnyJQueryElement; + } + + interface SsiModalButtonOptions { + label: AnyJQueryElement; + type: "button" | "link"; + className: string; + enableAfter: number | false; + id: string; + method: (this: HTMLButtonElement, event: MouseEvent, modal: SsiModal) => void; + side: "left" | "right"; + keyPress: string; + closeAfter: number | false; + } + + type SsiModalSizeClass = + | "dialog" + | "small" + | "smallToMedium" + | "medium" + | "mediumToLarge" + | "large" + | "full" + | "auto"; + + type SsiModalModalElement = JQuery & { + on: + & JQuery["on"] + & (( + event: T, + callback: (event: SsiModalEventMap[T]) => void, + ) => SsiModalModalElement); + data: JQuery["data"] & { + (key: "ssi-modal"): SsiModal; + }; + }; + interface SsiModalEventMap { + "beforeShow.ssi-modal": JQuery.Event; + "onShow.ssi-modal": JQuery.Event; + "backdropClose.ssi-modal": JQuery.Event; + "beforeClose.ssi-modal": JQuery.Event; + "onClose.ssi-modal": JQuery.Event; + } + + type SsiModalAnimation = + | string + | { + show: string | false; + hide: string | false; + } + | false; + + // eslint-disable-next-line @definitelytyped/strict-export-declare-modifiers + type AnyJQueryElement = string | HTMLElement | JQuery; +} + +declare const ssi_modal: SsiModal.ssi_modal; +type SsiModal = SsiModal.SsiModal; +type SsiModalOptions = SsiModal.SsiModalOptions; +type SsiModalButtonOptions = SsiModal.SsiModalButtonOptions; +type SsiModalSizeClass = SsiModal.SsiModalSizeClass; +type SsiModalModalElement = SsiModal.SsiModalModalElement; +type SsiModalEventMap = SsiModal.SsiModalEventMap; +type SsiModalAnimation = SsiModal.SsiModalAnimation; diff --git a/types/ssi-modal/index.d.ts b/types/ssi-modal/index.d.ts new file mode 100644 index 00000000000000..e87b4b999c012f --- /dev/null +++ b/types/ssi-modal/index.d.ts @@ -0,0 +1,18 @@ +/// +/// + +export = ssi_modal; + +declare global { + interface Window { + ssi_modal: SsiModal.ssi_modal; + } + interface JQuery { + /** + * Initialize a ssi-modal on the selected element(s). + * Equivalent to calling `ssi_modal.show({ content: element })` but chainable from a jQuery collection. + * @param options Modal options override. + */ + ssi_modal(options: Partial): SsiModal; + } +} diff --git a/types/ssi-modal/package.json b/types/ssi-modal/package.json new file mode 100644 index 00000000000000..2bc4293d1b8623 --- /dev/null +++ b/types/ssi-modal/package.json @@ -0,0 +1,20 @@ +{ + "private": true, + "name": "@types/ssi-modal", + "version": "1.0.9999", + "projects": [ + "https://github.com/ssbeefeater/ssi-modal#readme" + ], + "dependencies": { + "@types/jquery": "*" + }, + "devDependencies": { + "@types/ssi-modal": "workspace:." + }, + "owners": [ + { + "name": "Dragon Fish", + "githubUsername": "dragon-fish" + } + ] +} diff --git a/types/ssi-modal/ssi-modal-tests.ts b/types/ssi-modal/ssi-modal-tests.ts new file mode 100644 index 00000000000000..37f2a22294eda6 --- /dev/null +++ b/types/ssi-modal/ssi-modal-tests.ts @@ -0,0 +1,170 @@ +// basic usage +ssi_modal.show({ title: "hello, world", content: "this is a test" }); +ssi_modal.show({ title: "hello, world", content: document.createElement("div") }); +ssi_modal.show({ title: "hello, world", content: $("
") }); + +// basic chaining +const myModal: SsiModal = ssi_modal.show({ + title: "Constructor Modal", + content: "content", + className: "my-modal", + sizeClass: "medium", + position: "center top", + animation: "fade", + backdrop: true, + buttons: [ + { label: "OK", className: "btn btn-ok", side: "right" }, + { label: "Cancel", className: "btn btn-cancel", side: "left" }, + ], +}) + .changePreviewState() + .setOptions("backdrop", false) + .setOptions({ className: "another-class", sizeClass: "large" }) + .close(); + +// setContent +myModal.setContent("string content"); +myModal.setContent(document.createElement("div")); +myModal.setContent($("
")); +myModal.setContent("append content", "append"); +myModal.setContent("prepend content", "prepend"); +// @ts-expect-error invalid method for setContent +myModal.setContent("x", "invalid"); + +// setButtons +myModal.setButtons([ + { + label: "Delayed", + className: "btn-delayed", + enableAfter: 1000, + method(this: HTMLButtonElement, e, modal) { + this.disabled = true; + modal.close(); + }, + side: "right", + }, + { + label: $("JQ"), + className: "btn-second", + side: "left", + method: (e, modal) => modal.show(), + }, +]); + +// @ts-expect-error invalid side +myModal.setButtons([{ label: "NoSide", className: "x", side: "invalid" }]); + +// setTitle +myModal.setTitle("New Title"); +myModal.setTitle(document.createElement("span")); +myModal.setTitle($("")); + +// setModalHeight +const newHeight: number = myModal.setModalHeight(10, "height"); +myModal.setModalHeight(5, "min-height"); +myModal.setModalHeight(5, "max-height"); +// @ts-expect-error invalid second parameter +myModal.setModalHeight(5, "invalid"); + +// get modal elements +const $backdrop = myModal.get$backdrop(); +const $buttonsAll = myModal.get$buttons(); +const $buttonsLeft = myModal.get$buttons("leftButtons"); +const $buttonsRight = myModal.get$buttons("rightButtons"); +const $modalElement = myModal.get$modal(); +const $content = myModal.get$content(); +const $icons = myModal.get$icons(); +const $title = myModal.get$title(); +const $window = myModal.get$window(); +const $wrapper = myModal.get$wrapper(); +[$backdrop, $buttonsAll, $buttonsLeft, $buttonsRight, $modalElement, $content, $icons, $title, $window, $wrapper] + .forEach(jq => jq.addClass("touched")); + +// SsiModalModalElement events +$modalElement.on("onShow.ssi-modal", e => {}); +$modalElement.on("backdropClose.ssi-modal", e => {}); +$modalElement.on("beforeClose.ssi-modal", e => {}); +$modalElement.on("onClose.ssi-modal", e => {}); + +// static methods +ssi_modal.close(); +ssi_modal.close("someId"); +ssi_modal.closeAll(); +ssi_modal.removeAll(); + +ssi_modal.createObject({ title: "obj only", content: "c" }).init(); +ssi_modal.show({ title: "direct show", content: "c" }); + +// ====== official plugins ====== + +// dialog +ssi_modal.dialog({ title: "Dialog", content: "dialog content" }, (e, m) => { + m.close(); +}); +// confirm +ssi_modal.confirm({ title: "Confirm", content: "confirm content" }, (e, m) => { + m.close(); +}); +// notify +ssi_modal.notify("success", { title: "t", content: "c" }, result => {}); +ssi_modal.notify("error", { title: "t", content: "c" }); +ssi_modal.notify("warning", { title: "t", content: "c" }); +ssi_modal.notify("info", { title: "t", content: "c" }); +ssi_modal.notify("dialog", { title: "t", content: "c" }); +ssi_modal.notify("confirm", { title: "t", content: "c" }); +ssi_modal.notify("anthing-you-like", { title: "t", content: "c" }); + +// checkElement +const maybeModal = ssi_modal.checkElement($("
")); +if (maybeModal) { + maybeModal.show(); +} +// @ts-expect-error invalid element +ssi_modal.checkElement(123); + +// ========== 选项联合类型边界 ========== +ssi_modal.show({ sizeClass: "dialog" }); +ssi_modal.show({ sizeClass: "auto" }); +// @ts-expect-error invalid size +ssi_modal.show({ sizeClass: "invalid" }); + +ssi_modal.show({ position: "right top" }); +ssi_modal.show({ position: "left bottom" }); +// @ts-expect-error invalid position +ssi_modal.show({ position: "invalid" }); + +ssi_modal.show({ animation: false }); +ssi_modal.show({ animation: { show: "fadeIn", hide: "fadeOut" } }); +// @ts-expect-error object animation setting with broken payload +ssi_modal.show({ animation: { show: "in" } }); + +// lifecycle callbacks +ssi_modal.show({ + content: "callbacks", + beforeShow: (modal) => { + if (!modal) return false; + return true; + }, + beforeClose: (modal) => { + if (Math.random() > 0.5) return false; + return true; + }, + onShow: (modal) => { + modal.changePreviewState(); + }, + onClose: (modal) => { + modal.close(); + }, +}); + +// @ts-expect-error invalid callback returns +ssi_modal.show({ beforeShow: () => "not allowed" }); + +// pluginName & options +myModal.setPluginName("newName").setOptions({ className: "abc" }).show(); + +// ssi-modal jQuery data +typeof myModal.get$modal().data("ssi-modal") === "object"; + +// modal's jQuery data is the same as the it's instance +myModal.get$modal().data("ssi-modal") === myModal; diff --git a/types/ssi-modal/tsconfig.json b/types/ssi-modal/tsconfig.json new file mode 100644 index 00000000000000..440db51a52a628 --- /dev/null +++ b/types/ssi-modal/tsconfig.json @@ -0,0 +1,20 @@ +{ + "compilerOptions": { + "module": "commonjs", + "lib": [ + "es6", + "dom" + ], + "noImplicitAny": true, + "noImplicitThis": true, + "strictNullChecks": true, + "strictFunctionTypes": true, + "types": [], + "noEmit": true, + "forceConsistentCasingInFileNames": true + }, + "files": [ + "index.d.ts", + "ssi-modal-tests.ts" + ] +} From ffd81321bcbfc7c79299773951434277940ae186 Mon Sep 17 00:00:00 2001 From: "quisi.do" Date: Tue, 2 Sep 2025 20:17:40 -0700 Subject: [PATCH 2/4] =?UTF-8?q?=F0=9F=A4=96=20Merge=20PR=20#73543=20fix=20?= =?UTF-8?q?`react-conciler`=20documentation=20by=20@quisido?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- types/react-reconciler/index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/types/react-reconciler/index.d.ts b/types/react-reconciler/index.d.ts index a0902c1a418ebf..036024deb22716 100644 --- a/types/react-reconciler/index.d.ts +++ b/types/react-reconciler/index.d.ts @@ -373,7 +373,7 @@ declare namespace ReactReconciler { // ------------------- // Persistence Methods // (optional) - // If you use the persistent mode instead of the mutation mode, you would still need the "Core Methods". However, instead of the Mutation Methods above you will implement a different set of methods that performs cloning nodes and replacing them at the root level. You can find a list of them in the "Persistence" section [listed in this file](https://github.com/facebook/react/blob/master/packages/react-reconciler/src/forks/ReactFiberHostConfig.custom.js). File an issue if you need help. + // If you use the persistent mode instead of the mutation mode, you would still need the "Core Methods". However, instead of the Mutation Methods above you will implement a different set of methods that performs cloning nodes and replacing them at the root level. You can find a list of them in the "Persistence" section [listed in this file](https://github.com/facebook/react/blob/master/packages/react-reconciler/src/forks/ReactFiberConfig.custom.js). File an issue if you need help. // ------------------- cloneInstance?( instance: Instance, @@ -401,7 +401,7 @@ declare namespace ReactReconciler { // (optional) // You can optionally implement hydration to "attach" to the existing tree during the initial render instead of creating it from scratch. For example, the DOM renderer uses this to attach to an HTML markup. // - // To support hydration, you need to declare `supportsHydration: true` and then implement the methods in the "Hydration" section [listed in this file](https://github.com/facebook/react/blob/master/packages/react-reconciler/src/forks/ReactFiberHostConfig.custom.js). File an issue if you need help. + // To support hydration, you need to declare `supportsHydration: true` and then implement the methods in the "Hydration" section [listed in this file](https://github.com/facebook/react/blob/master/packages/react-reconciler/src/forks/ReactFiberConfig.custom.js). File an issue if you need help. // ------------------- supportsHydration: boolean; From c7acf4ae78a1ac41b9409b96969714ce891fbf73 Mon Sep 17 00:00:00 2001 From: Eric Liu Date: Tue, 2 Sep 2025 20:34:21 -0700 Subject: [PATCH 3/4] =?UTF-8?q?=F0=9F=A4=96=20Merge=20PR=20#73465=20feat(c?= =?UTF-8?q?arbon=5F=5Fpictograms-react):=20bump=20to=2012.58.0=20by=20@met?= =?UTF-8?q?onym?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../carbon__pictograms-react-tests.tsx | 2 ++ .../es/client--support/index.d.ts | 1 + .../es/control--tower/index.d.ts | 1 + .../es/cybersecurity/index.d.ts | 1 + .../es/finance-and-operations/index.d.ts | 1 + .../es/finance-and-supply-chain/index.d.ts | 1 + .../es/global--infrastructure/index.d.ts | 1 + types/carbon__pictograms-react/es/index.d.ts | 16 ++++++++++++++++ .../es/punching-bag--01/index.d.ts | 1 + .../es/punching-bag--02/index.d.ts | 1 + .../es/punching-bag--03/index.d.ts | 1 + .../es/speed-bag/index.d.ts | 1 + .../es/systems-and-tools/index.d.ts | 1 + .../es/team-radio/index.d.ts | 1 + .../es/transparent-supply/index.d.ts | 1 + .../es/ufc--belt/index.d.ts | 1 + .../es/ufc--fighting/index.d.ts | 1 + .../es/ufc--ring/index.d.ts | 1 + types/carbon__pictograms-react/index.d.ts | 18 +++++++++++++++++- .../lib/client--support/index.d.ts | 3 +++ .../lib/control--tower/index.d.ts | 3 +++ .../lib/cybersecurity/index.d.ts | 3 +++ .../lib/finance-and-operations/index.d.ts | 3 +++ .../lib/finance-and-supply-chain/index.d.ts | 3 +++ .../lib/global--infrastructure/index.d.ts | 3 +++ types/carbon__pictograms-react/lib/index.d.ts | 16 ++++++++++++++++ .../lib/punching-bag--01/index.d.ts | 3 +++ .../lib/punching-bag--02/index.d.ts | 3 +++ .../lib/punching-bag--03/index.d.ts | 3 +++ .../lib/speed-bag/index.d.ts | 3 +++ .../lib/systems-and-tools/index.d.ts | 3 +++ .../lib/team-radio/index.d.ts | 3 +++ .../lib/transparent-supply/index.d.ts | 3 +++ .../lib/ufc--belt/index.d.ts | 3 +++ .../lib/ufc--fighting/index.d.ts | 3 +++ .../lib/ufc--ring/index.d.ts | 3 +++ 36 files changed, 115 insertions(+), 1 deletion(-) create mode 100644 types/carbon__pictograms-react/es/client--support/index.d.ts create mode 100644 types/carbon__pictograms-react/es/control--tower/index.d.ts create mode 100644 types/carbon__pictograms-react/es/cybersecurity/index.d.ts create mode 100644 types/carbon__pictograms-react/es/finance-and-operations/index.d.ts create mode 100644 types/carbon__pictograms-react/es/finance-and-supply-chain/index.d.ts create mode 100644 types/carbon__pictograms-react/es/global--infrastructure/index.d.ts create mode 100644 types/carbon__pictograms-react/es/punching-bag--01/index.d.ts create mode 100644 types/carbon__pictograms-react/es/punching-bag--02/index.d.ts create mode 100644 types/carbon__pictograms-react/es/punching-bag--03/index.d.ts create mode 100644 types/carbon__pictograms-react/es/speed-bag/index.d.ts create mode 100644 types/carbon__pictograms-react/es/systems-and-tools/index.d.ts create mode 100644 types/carbon__pictograms-react/es/team-radio/index.d.ts create mode 100644 types/carbon__pictograms-react/es/transparent-supply/index.d.ts create mode 100644 types/carbon__pictograms-react/es/ufc--belt/index.d.ts create mode 100644 types/carbon__pictograms-react/es/ufc--fighting/index.d.ts create mode 100644 types/carbon__pictograms-react/es/ufc--ring/index.d.ts create mode 100644 types/carbon__pictograms-react/lib/client--support/index.d.ts create mode 100644 types/carbon__pictograms-react/lib/control--tower/index.d.ts create mode 100644 types/carbon__pictograms-react/lib/cybersecurity/index.d.ts create mode 100644 types/carbon__pictograms-react/lib/finance-and-operations/index.d.ts create mode 100644 types/carbon__pictograms-react/lib/finance-and-supply-chain/index.d.ts create mode 100644 types/carbon__pictograms-react/lib/global--infrastructure/index.d.ts create mode 100644 types/carbon__pictograms-react/lib/punching-bag--01/index.d.ts create mode 100644 types/carbon__pictograms-react/lib/punching-bag--02/index.d.ts create mode 100644 types/carbon__pictograms-react/lib/punching-bag--03/index.d.ts create mode 100644 types/carbon__pictograms-react/lib/speed-bag/index.d.ts create mode 100644 types/carbon__pictograms-react/lib/systems-and-tools/index.d.ts create mode 100644 types/carbon__pictograms-react/lib/team-radio/index.d.ts create mode 100644 types/carbon__pictograms-react/lib/transparent-supply/index.d.ts create mode 100644 types/carbon__pictograms-react/lib/ufc--belt/index.d.ts create mode 100644 types/carbon__pictograms-react/lib/ufc--fighting/index.d.ts create mode 100644 types/carbon__pictograms-react/lib/ufc--ring/index.d.ts diff --git a/types/carbon__pictograms-react/carbon__pictograms-react-tests.tsx b/types/carbon__pictograms-react/carbon__pictograms-react-tests.tsx index b524bd1f42b6ec..02c6b31ad048e2 100644 --- a/types/carbon__pictograms-react/carbon__pictograms-react-tests.tsx +++ b/types/carbon__pictograms-react/carbon__pictograms-react-tests.tsx @@ -15,6 +15,7 @@ import { BentoBoxTray, Bluepages, ClientFinancing_01, + ClientSupport, CloudPakForApplications, CodeConversion, ContentDesign, @@ -89,3 +90,4 @@ import * as React from "react"; ; // $ExpectType Element ; // $ExpectType Element ; // $ExpectType Element +; // $ExpectType Element diff --git a/types/carbon__pictograms-react/es/client--support/index.d.ts b/types/carbon__pictograms-react/es/client--support/index.d.ts new file mode 100644 index 00000000000000..6c475ebd61a202 --- /dev/null +++ b/types/carbon__pictograms-react/es/client--support/index.d.ts @@ -0,0 +1 @@ +export { ClientSupport as default } from "../../"; diff --git a/types/carbon__pictograms-react/es/control--tower/index.d.ts b/types/carbon__pictograms-react/es/control--tower/index.d.ts new file mode 100644 index 00000000000000..2b20c9054ae436 --- /dev/null +++ b/types/carbon__pictograms-react/es/control--tower/index.d.ts @@ -0,0 +1 @@ +export { ControlTower as default } from "../../"; diff --git a/types/carbon__pictograms-react/es/cybersecurity/index.d.ts b/types/carbon__pictograms-react/es/cybersecurity/index.d.ts new file mode 100644 index 00000000000000..edb92ed53ac548 --- /dev/null +++ b/types/carbon__pictograms-react/es/cybersecurity/index.d.ts @@ -0,0 +1 @@ +export { Cybersecurity as default } from "../../"; diff --git a/types/carbon__pictograms-react/es/finance-and-operations/index.d.ts b/types/carbon__pictograms-react/es/finance-and-operations/index.d.ts new file mode 100644 index 00000000000000..05a7a4e0da6d23 --- /dev/null +++ b/types/carbon__pictograms-react/es/finance-and-operations/index.d.ts @@ -0,0 +1 @@ +export { FinanceAndOperations as default } from "../../"; diff --git a/types/carbon__pictograms-react/es/finance-and-supply-chain/index.d.ts b/types/carbon__pictograms-react/es/finance-and-supply-chain/index.d.ts new file mode 100644 index 00000000000000..ca7b836211f080 --- /dev/null +++ b/types/carbon__pictograms-react/es/finance-and-supply-chain/index.d.ts @@ -0,0 +1 @@ +export { FinanceAndSupplyChain as default } from "../../"; diff --git a/types/carbon__pictograms-react/es/global--infrastructure/index.d.ts b/types/carbon__pictograms-react/es/global--infrastructure/index.d.ts new file mode 100644 index 00000000000000..9e10af22068cf0 --- /dev/null +++ b/types/carbon__pictograms-react/es/global--infrastructure/index.d.ts @@ -0,0 +1 @@ +export { GlobalInfrastructure as default } from "../../"; diff --git a/types/carbon__pictograms-react/es/index.d.ts b/types/carbon__pictograms-react/es/index.d.ts index 78a275534cbc3f..949fd4806ca90a 100644 --- a/types/carbon__pictograms-react/es/index.d.ts +++ b/types/carbon__pictograms-react/es/index.d.ts @@ -204,6 +204,7 @@ export { CicsVsamTransparencyForZOs } from "../"; export { CirclePacking } from "../"; export { ClientFinancing_01 } from "../"; export { ClientFinancing_02 } from "../"; +export { ClientSupport } from "../"; export { ClothesRack_01 } from "../"; export { ClothesRack_02 } from "../"; export { Cloud } from "../"; @@ -305,6 +306,7 @@ export { Continuous } from "../"; export { ContinuousSecurity } from "../"; export { Contract } from "../"; export { Control } from "../"; +export { ControlTower } from "../"; export { ControlPanel } from "../"; export { ControlsFramework } from "../"; export { Conversation } from "../"; @@ -330,6 +332,7 @@ export { CustomWorkloads } from "../"; export { CustomReports } from "../"; export { CustomerService } from "../"; export { Customizable } from "../"; +export { Cybersecurity } from "../"; export { DallasReunionTower } from "../"; export { DallasSkyline } from "../"; export { Dashboard } from "../"; @@ -491,6 +494,8 @@ export { FileTransfer } from "../"; export { FilterVariable } from "../"; export { FilterAndGroupData } from "../"; export { FinanceStrategy } from "../"; +export { FinanceAndOperations } from "../"; +export { FinanceAndSupplyChain } from "../"; export { FinancialConsultant } from "../"; export { FinancialGain } from "../"; export { FinancialNetworks } from "../"; @@ -553,6 +558,7 @@ export { GlobalFinanceEuro } from "../"; export { GlobalFinanceNetwork } from "../"; export { GlobalFinanceSterling } from "../"; export { GlobalFootprint } from "../"; +export { GlobalInfrastructure } from "../"; export { GlobalMarkets } from "../"; export { GlobalMarketsBar } from "../"; export { GlobalNetwork } from "../"; @@ -974,6 +980,9 @@ export { ProtectCriticalAssets } from "../"; export { ProvenTechnology } from "../"; export { Public } from "../"; export { PublicCloudToPrivateCloud } from "../"; +export { PunchingBag_01 } from "../"; +export { PunchingBag_02 } from "../"; +export { PunchingBag_03 } from "../"; export { Puzzle } from "../"; export { QQPlot } from "../"; export { Qiskit } from "../"; @@ -1120,6 +1129,7 @@ export { Solve } from "../"; export { Spaceship } from "../"; export { Speech } from "../"; export { SpeechToText } from "../"; +export { SpeedBag } from "../"; export { Speedometer } from "../"; export { SponsorUserProgram } from "../"; export { Sports } from "../"; @@ -1177,6 +1187,7 @@ export { SwipeRight } from "../"; export { SydneyMlcCentre } from "../"; export { SydneyOperaHouse } from "../"; export { Synergy } from "../"; +export { SystemsAndTools } from "../"; export { SystemsDevopsAnalyze } from "../"; export { SystemsDevopsBuild } from "../"; export { SystemsDevopsCicdPipeline } from "../"; @@ -1198,6 +1209,7 @@ export { Target } from "../"; export { TargetArea } from "../"; export { Teacher } from "../"; export { TeamAlignment } from "../"; +export { TeamRadio } from "../"; export { Teammates } from "../"; export { TechnicalOwner } from "../"; export { TelAviv } from "../"; @@ -1260,6 +1272,7 @@ export { Transparency_01 } from "../"; export { Transparency_02 } from "../"; export { TransparencyAndTrust_01 } from "../"; export { TransparencyAndTrust_02 } from "../"; +export { TransparentSupply } from "../"; export { Trash } from "../"; export { TrashBurnable } from "../"; export { TrashContainer } from "../"; @@ -1277,6 +1290,9 @@ export { Trusted } from "../"; export { TrustedUser } from "../"; export { Tunnel } from "../"; export { TwoPersonLift } from "../"; +export { UfcBelt } from "../"; +export { UfcFighting } from "../"; +export { UfcRing } from "../"; export { UnauthorizedUserAccess } from "../"; export { UnderUtilizedSecurity } from "../"; export { UnifyEndpointManagement } from "../"; diff --git a/types/carbon__pictograms-react/es/punching-bag--01/index.d.ts b/types/carbon__pictograms-react/es/punching-bag--01/index.d.ts new file mode 100644 index 00000000000000..6c96ea41bd7d8d --- /dev/null +++ b/types/carbon__pictograms-react/es/punching-bag--01/index.d.ts @@ -0,0 +1 @@ +export { PunchingBag_01 as default } from "../../"; diff --git a/types/carbon__pictograms-react/es/punching-bag--02/index.d.ts b/types/carbon__pictograms-react/es/punching-bag--02/index.d.ts new file mode 100644 index 00000000000000..bf9de499136eb0 --- /dev/null +++ b/types/carbon__pictograms-react/es/punching-bag--02/index.d.ts @@ -0,0 +1 @@ +export { PunchingBag_02 as default } from "../../"; diff --git a/types/carbon__pictograms-react/es/punching-bag--03/index.d.ts b/types/carbon__pictograms-react/es/punching-bag--03/index.d.ts new file mode 100644 index 00000000000000..f4e54f8d95f474 --- /dev/null +++ b/types/carbon__pictograms-react/es/punching-bag--03/index.d.ts @@ -0,0 +1 @@ +export { PunchingBag_03 as default } from "../../"; diff --git a/types/carbon__pictograms-react/es/speed-bag/index.d.ts b/types/carbon__pictograms-react/es/speed-bag/index.d.ts new file mode 100644 index 00000000000000..da826e141cf770 --- /dev/null +++ b/types/carbon__pictograms-react/es/speed-bag/index.d.ts @@ -0,0 +1 @@ +export { SpeedBag as default } from "../../"; diff --git a/types/carbon__pictograms-react/es/systems-and-tools/index.d.ts b/types/carbon__pictograms-react/es/systems-and-tools/index.d.ts new file mode 100644 index 00000000000000..cbb52abe78c2ed --- /dev/null +++ b/types/carbon__pictograms-react/es/systems-and-tools/index.d.ts @@ -0,0 +1 @@ +export { SystemsAndTools as default } from "../../"; diff --git a/types/carbon__pictograms-react/es/team-radio/index.d.ts b/types/carbon__pictograms-react/es/team-radio/index.d.ts new file mode 100644 index 00000000000000..de71099e0d3a66 --- /dev/null +++ b/types/carbon__pictograms-react/es/team-radio/index.d.ts @@ -0,0 +1 @@ +export { TeamRadio as default } from "../../"; diff --git a/types/carbon__pictograms-react/es/transparent-supply/index.d.ts b/types/carbon__pictograms-react/es/transparent-supply/index.d.ts new file mode 100644 index 00000000000000..c6d95f992ca81a --- /dev/null +++ b/types/carbon__pictograms-react/es/transparent-supply/index.d.ts @@ -0,0 +1 @@ +export { TransparentSupply as default } from "../../"; diff --git a/types/carbon__pictograms-react/es/ufc--belt/index.d.ts b/types/carbon__pictograms-react/es/ufc--belt/index.d.ts new file mode 100644 index 00000000000000..e6055d2e7484d2 --- /dev/null +++ b/types/carbon__pictograms-react/es/ufc--belt/index.d.ts @@ -0,0 +1 @@ +export { UfcBelt as default } from "../../"; diff --git a/types/carbon__pictograms-react/es/ufc--fighting/index.d.ts b/types/carbon__pictograms-react/es/ufc--fighting/index.d.ts new file mode 100644 index 00000000000000..042d838cd7f860 --- /dev/null +++ b/types/carbon__pictograms-react/es/ufc--fighting/index.d.ts @@ -0,0 +1 @@ +export { UfcFighting as default } from "../../"; diff --git a/types/carbon__pictograms-react/es/ufc--ring/index.d.ts b/types/carbon__pictograms-react/es/ufc--ring/index.d.ts new file mode 100644 index 00000000000000..114fdae76c19e5 --- /dev/null +++ b/types/carbon__pictograms-react/es/ufc--ring/index.d.ts @@ -0,0 +1 @@ +export { UfcRing as default } from "../../"; diff --git a/types/carbon__pictograms-react/index.d.ts b/types/carbon__pictograms-react/index.d.ts index 0d1be148dd5620..89d92ea1434c74 100644 --- a/types/carbon__pictograms-react/index.d.ts +++ b/types/carbon__pictograms-react/index.d.ts @@ -1,4 +1,4 @@ -/** 1378 pictograms in total */ +/** 1394 pictograms in total */ export interface CarbonPictogramProps extends Omit< @@ -228,6 +228,7 @@ export const CicsVsamTransparencyForZOs: CarbonPictogramType; export const CirclePacking: CarbonPictogramType; export const ClientFinancing_01: CarbonPictogramType; export const ClientFinancing_02: CarbonPictogramType; +export const ClientSupport: CarbonPictogramType; export const ClothesRack_01: CarbonPictogramType; export const ClothesRack_02: CarbonPictogramType; export const Cloud: CarbonPictogramType; @@ -329,6 +330,7 @@ export const Continuous: CarbonPictogramType; export const ContinuousSecurity: CarbonPictogramType; export const Contract: CarbonPictogramType; export const Control: CarbonPictogramType; +export const ControlTower: CarbonPictogramType; export const ControlPanel: CarbonPictogramType; export const ControlsFramework: CarbonPictogramType; export const Conversation: CarbonPictogramType; @@ -354,6 +356,7 @@ export const CustomWorkloads: CarbonPictogramType; export const CustomReports: CarbonPictogramType; export const CustomerService: CarbonPictogramType; export const Customizable: CarbonPictogramType; +export const Cybersecurity: CarbonPictogramType; export const DallasReunionTower: CarbonPictogramType; export const DallasSkyline: CarbonPictogramType; export const Dashboard: CarbonPictogramType; @@ -515,6 +518,8 @@ export const FileTransfer: CarbonPictogramType; export const FilterVariable: CarbonPictogramType; export const FilterAndGroupData: CarbonPictogramType; export const FinanceStrategy: CarbonPictogramType; +export const FinanceAndOperations: CarbonPictogramType; +export const FinanceAndSupplyChain: CarbonPictogramType; export const FinancialConsultant: CarbonPictogramType; export const FinancialGain: CarbonPictogramType; export const FinancialNetworks: CarbonPictogramType; @@ -577,6 +582,7 @@ export const GlobalFinanceEuro: CarbonPictogramType; export const GlobalFinanceNetwork: CarbonPictogramType; export const GlobalFinanceSterling: CarbonPictogramType; export const GlobalFootprint: CarbonPictogramType; +export const GlobalInfrastructure: CarbonPictogramType; export const GlobalMarkets: CarbonPictogramType; export const GlobalMarketsBar: CarbonPictogramType; export const GlobalNetwork: CarbonPictogramType; @@ -1018,6 +1024,9 @@ export const ProtectCriticalAssets: CarbonPictogramType; export const ProvenTechnology: CarbonPictogramType; export const Public: CarbonPictogramType; export const PublicCloudToPrivateCloud: CarbonPictogramType; +export const PunchingBag_01: CarbonPictogramType; +export const PunchingBag_02: CarbonPictogramType; +export const PunchingBag_03: CarbonPictogramType; export const Puzzle: CarbonPictogramType; export const QQPlot: CarbonPictogramType; export const Qiskit: CarbonPictogramType; @@ -1164,6 +1173,7 @@ export const Solve: CarbonPictogramType; export const Spaceship: CarbonPictogramType; export const Speech: CarbonPictogramType; export const SpeechToText: CarbonPictogramType; +export const SpeedBag: CarbonPictogramType; export const Speedometer: CarbonPictogramType; export const SponsorUserProgram: CarbonPictogramType; export const Sports: CarbonPictogramType; @@ -1221,6 +1231,7 @@ export const SwipeRight: CarbonPictogramType; export const SydneyMlcCentre: CarbonPictogramType; export const SydneyOperaHouse: CarbonPictogramType; export const Synergy: CarbonPictogramType; +export const SystemsAndTools: CarbonPictogramType; export const SystemsDevopsAnalyze: CarbonPictogramType; export const SystemsDevopsBuild: CarbonPictogramType; export const SystemsDevopsCicdPipeline: CarbonPictogramType; @@ -1242,6 +1253,7 @@ export const Target: CarbonPictogramType; export const TargetArea: CarbonPictogramType; export const Teacher: CarbonPictogramType; export const TeamAlignment: CarbonPictogramType; +export const TeamRadio: CarbonPictogramType; export const Teammates: CarbonPictogramType; export const TechnicalOwner: CarbonPictogramType; export const TelAviv: CarbonPictogramType; @@ -1312,6 +1324,7 @@ export const Transparency_01: CarbonPictogramType; export const Transparency_02: CarbonPictogramType; export const TransparencyAndTrust_01: CarbonPictogramType; export const TransparencyAndTrust_02: CarbonPictogramType; +export const TransparentSupply: CarbonPictogramType; export const Trash: CarbonPictogramType; export const TrashBurnable: CarbonPictogramType; export const TrashContainer: CarbonPictogramType; @@ -1329,6 +1342,9 @@ export const Trusted: CarbonPictogramType; export const TrustedUser: CarbonPictogramType; export const Tunnel: CarbonPictogramType; export const TwoPersonLift: CarbonPictogramType; +export const UfcBelt: CarbonPictogramType; +export const UfcFighting: CarbonPictogramType; +export const UfcRing: CarbonPictogramType; export const UnauthorizedUserAccess: CarbonPictogramType; export const UnderUtilizedSecurity: CarbonPictogramType; export const UnifyEndpointManagement: CarbonPictogramType; diff --git a/types/carbon__pictograms-react/lib/client--support/index.d.ts b/types/carbon__pictograms-react/lib/client--support/index.d.ts new file mode 100644 index 00000000000000..082cdb85acfca2 --- /dev/null +++ b/types/carbon__pictograms-react/lib/client--support/index.d.ts @@ -0,0 +1,3 @@ +import { ClientSupport } from "../../"; + +export = ClientSupport; diff --git a/types/carbon__pictograms-react/lib/control--tower/index.d.ts b/types/carbon__pictograms-react/lib/control--tower/index.d.ts new file mode 100644 index 00000000000000..dd2b0d066eefa3 --- /dev/null +++ b/types/carbon__pictograms-react/lib/control--tower/index.d.ts @@ -0,0 +1,3 @@ +import { ControlTower } from "../../"; + +export = ControlTower; diff --git a/types/carbon__pictograms-react/lib/cybersecurity/index.d.ts b/types/carbon__pictograms-react/lib/cybersecurity/index.d.ts new file mode 100644 index 00000000000000..dc8f47a080f22c --- /dev/null +++ b/types/carbon__pictograms-react/lib/cybersecurity/index.d.ts @@ -0,0 +1,3 @@ +import { Cybersecurity } from "../../"; + +export = Cybersecurity; diff --git a/types/carbon__pictograms-react/lib/finance-and-operations/index.d.ts b/types/carbon__pictograms-react/lib/finance-and-operations/index.d.ts new file mode 100644 index 00000000000000..9b5b9d5f93bb1d --- /dev/null +++ b/types/carbon__pictograms-react/lib/finance-and-operations/index.d.ts @@ -0,0 +1,3 @@ +import { FinanceAndOperations } from "../../"; + +export = FinanceAndOperations; diff --git a/types/carbon__pictograms-react/lib/finance-and-supply-chain/index.d.ts b/types/carbon__pictograms-react/lib/finance-and-supply-chain/index.d.ts new file mode 100644 index 00000000000000..0102ef6c896d23 --- /dev/null +++ b/types/carbon__pictograms-react/lib/finance-and-supply-chain/index.d.ts @@ -0,0 +1,3 @@ +import { FinanceAndSupplyChain } from "../../"; + +export = FinanceAndSupplyChain; diff --git a/types/carbon__pictograms-react/lib/global--infrastructure/index.d.ts b/types/carbon__pictograms-react/lib/global--infrastructure/index.d.ts new file mode 100644 index 00000000000000..4b688639add416 --- /dev/null +++ b/types/carbon__pictograms-react/lib/global--infrastructure/index.d.ts @@ -0,0 +1,3 @@ +import { GlobalInfrastructure } from "../../"; + +export = GlobalInfrastructure; diff --git a/types/carbon__pictograms-react/lib/index.d.ts b/types/carbon__pictograms-react/lib/index.d.ts index 78a275534cbc3f..949fd4806ca90a 100644 --- a/types/carbon__pictograms-react/lib/index.d.ts +++ b/types/carbon__pictograms-react/lib/index.d.ts @@ -204,6 +204,7 @@ export { CicsVsamTransparencyForZOs } from "../"; export { CirclePacking } from "../"; export { ClientFinancing_01 } from "../"; export { ClientFinancing_02 } from "../"; +export { ClientSupport } from "../"; export { ClothesRack_01 } from "../"; export { ClothesRack_02 } from "../"; export { Cloud } from "../"; @@ -305,6 +306,7 @@ export { Continuous } from "../"; export { ContinuousSecurity } from "../"; export { Contract } from "../"; export { Control } from "../"; +export { ControlTower } from "../"; export { ControlPanel } from "../"; export { ControlsFramework } from "../"; export { Conversation } from "../"; @@ -330,6 +332,7 @@ export { CustomWorkloads } from "../"; export { CustomReports } from "../"; export { CustomerService } from "../"; export { Customizable } from "../"; +export { Cybersecurity } from "../"; export { DallasReunionTower } from "../"; export { DallasSkyline } from "../"; export { Dashboard } from "../"; @@ -491,6 +494,8 @@ export { FileTransfer } from "../"; export { FilterVariable } from "../"; export { FilterAndGroupData } from "../"; export { FinanceStrategy } from "../"; +export { FinanceAndOperations } from "../"; +export { FinanceAndSupplyChain } from "../"; export { FinancialConsultant } from "../"; export { FinancialGain } from "../"; export { FinancialNetworks } from "../"; @@ -553,6 +558,7 @@ export { GlobalFinanceEuro } from "../"; export { GlobalFinanceNetwork } from "../"; export { GlobalFinanceSterling } from "../"; export { GlobalFootprint } from "../"; +export { GlobalInfrastructure } from "../"; export { GlobalMarkets } from "../"; export { GlobalMarketsBar } from "../"; export { GlobalNetwork } from "../"; @@ -974,6 +980,9 @@ export { ProtectCriticalAssets } from "../"; export { ProvenTechnology } from "../"; export { Public } from "../"; export { PublicCloudToPrivateCloud } from "../"; +export { PunchingBag_01 } from "../"; +export { PunchingBag_02 } from "../"; +export { PunchingBag_03 } from "../"; export { Puzzle } from "../"; export { QQPlot } from "../"; export { Qiskit } from "../"; @@ -1120,6 +1129,7 @@ export { Solve } from "../"; export { Spaceship } from "../"; export { Speech } from "../"; export { SpeechToText } from "../"; +export { SpeedBag } from "../"; export { Speedometer } from "../"; export { SponsorUserProgram } from "../"; export { Sports } from "../"; @@ -1177,6 +1187,7 @@ export { SwipeRight } from "../"; export { SydneyMlcCentre } from "../"; export { SydneyOperaHouse } from "../"; export { Synergy } from "../"; +export { SystemsAndTools } from "../"; export { SystemsDevopsAnalyze } from "../"; export { SystemsDevopsBuild } from "../"; export { SystemsDevopsCicdPipeline } from "../"; @@ -1198,6 +1209,7 @@ export { Target } from "../"; export { TargetArea } from "../"; export { Teacher } from "../"; export { TeamAlignment } from "../"; +export { TeamRadio } from "../"; export { Teammates } from "../"; export { TechnicalOwner } from "../"; export { TelAviv } from "../"; @@ -1260,6 +1272,7 @@ export { Transparency_01 } from "../"; export { Transparency_02 } from "../"; export { TransparencyAndTrust_01 } from "../"; export { TransparencyAndTrust_02 } from "../"; +export { TransparentSupply } from "../"; export { Trash } from "../"; export { TrashBurnable } from "../"; export { TrashContainer } from "../"; @@ -1277,6 +1290,9 @@ export { Trusted } from "../"; export { TrustedUser } from "../"; export { Tunnel } from "../"; export { TwoPersonLift } from "../"; +export { UfcBelt } from "../"; +export { UfcFighting } from "../"; +export { UfcRing } from "../"; export { UnauthorizedUserAccess } from "../"; export { UnderUtilizedSecurity } from "../"; export { UnifyEndpointManagement } from "../"; diff --git a/types/carbon__pictograms-react/lib/punching-bag--01/index.d.ts b/types/carbon__pictograms-react/lib/punching-bag--01/index.d.ts new file mode 100644 index 00000000000000..e2a90623efad5a --- /dev/null +++ b/types/carbon__pictograms-react/lib/punching-bag--01/index.d.ts @@ -0,0 +1,3 @@ +import { PunchingBag_01 } from "../../"; + +export = PunchingBag_01; diff --git a/types/carbon__pictograms-react/lib/punching-bag--02/index.d.ts b/types/carbon__pictograms-react/lib/punching-bag--02/index.d.ts new file mode 100644 index 00000000000000..2a673f98e8ddfc --- /dev/null +++ b/types/carbon__pictograms-react/lib/punching-bag--02/index.d.ts @@ -0,0 +1,3 @@ +import { PunchingBag_02 } from "../../"; + +export = PunchingBag_02; diff --git a/types/carbon__pictograms-react/lib/punching-bag--03/index.d.ts b/types/carbon__pictograms-react/lib/punching-bag--03/index.d.ts new file mode 100644 index 00000000000000..3f2c7207130313 --- /dev/null +++ b/types/carbon__pictograms-react/lib/punching-bag--03/index.d.ts @@ -0,0 +1,3 @@ +import { PunchingBag_03 } from "../../"; + +export = PunchingBag_03; diff --git a/types/carbon__pictograms-react/lib/speed-bag/index.d.ts b/types/carbon__pictograms-react/lib/speed-bag/index.d.ts new file mode 100644 index 00000000000000..8a0097cfe172a7 --- /dev/null +++ b/types/carbon__pictograms-react/lib/speed-bag/index.d.ts @@ -0,0 +1,3 @@ +import { SpeedBag } from "../../"; + +export = SpeedBag; diff --git a/types/carbon__pictograms-react/lib/systems-and-tools/index.d.ts b/types/carbon__pictograms-react/lib/systems-and-tools/index.d.ts new file mode 100644 index 00000000000000..6fc2edd81b18dc --- /dev/null +++ b/types/carbon__pictograms-react/lib/systems-and-tools/index.d.ts @@ -0,0 +1,3 @@ +import { SystemsAndTools } from "../../"; + +export = SystemsAndTools; diff --git a/types/carbon__pictograms-react/lib/team-radio/index.d.ts b/types/carbon__pictograms-react/lib/team-radio/index.d.ts new file mode 100644 index 00000000000000..45cf3935d20cad --- /dev/null +++ b/types/carbon__pictograms-react/lib/team-radio/index.d.ts @@ -0,0 +1,3 @@ +import { TeamRadio } from "../../"; + +export = TeamRadio; diff --git a/types/carbon__pictograms-react/lib/transparent-supply/index.d.ts b/types/carbon__pictograms-react/lib/transparent-supply/index.d.ts new file mode 100644 index 00000000000000..5ba869c1e9d16a --- /dev/null +++ b/types/carbon__pictograms-react/lib/transparent-supply/index.d.ts @@ -0,0 +1,3 @@ +import { TransparentSupply } from "../../"; + +export = TransparentSupply; diff --git a/types/carbon__pictograms-react/lib/ufc--belt/index.d.ts b/types/carbon__pictograms-react/lib/ufc--belt/index.d.ts new file mode 100644 index 00000000000000..de46bc8eabb48b --- /dev/null +++ b/types/carbon__pictograms-react/lib/ufc--belt/index.d.ts @@ -0,0 +1,3 @@ +import { UfcBelt } from "../../"; + +export = UfcBelt; diff --git a/types/carbon__pictograms-react/lib/ufc--fighting/index.d.ts b/types/carbon__pictograms-react/lib/ufc--fighting/index.d.ts new file mode 100644 index 00000000000000..a5ddb8f2b8237b --- /dev/null +++ b/types/carbon__pictograms-react/lib/ufc--fighting/index.d.ts @@ -0,0 +1,3 @@ +import { UfcFighting } from "../../"; + +export = UfcFighting; diff --git a/types/carbon__pictograms-react/lib/ufc--ring/index.d.ts b/types/carbon__pictograms-react/lib/ufc--ring/index.d.ts new file mode 100644 index 00000000000000..87bd727eda8feb --- /dev/null +++ b/types/carbon__pictograms-react/lib/ufc--ring/index.d.ts @@ -0,0 +1,3 @@ +import { UfcRing } from "../../"; + +export = UfcRing; From ed1efb89221729c5949eb3e3b622734fd8a2ade0 Mon Sep 17 00:00:00 2001 From: Benjamin Tan Date: Wed, 3 Sep 2025 12:05:54 +0800 Subject: [PATCH 4/4] =?UTF-8?q?=F0=9F=A4=96=20Merge=20PR=20#73457=20[googl?= =?UTF-8?q?e.accounts]=20IdConfiguration:=20Add=20`color=5Fscheme`=20confi?= =?UTF-8?q?g=20option=20by=20@bnjmnt4n?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- types/google.accounts/google.accounts-tests.ts | 1 + types/google.accounts/index.d.ts | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/types/google.accounts/google.accounts-tests.ts b/types/google.accounts/google.accounts-tests.ts index 1883f6e9a516e3..aaaffabe5d269a 100644 --- a/types/google.accounts/google.accounts-tests.ts +++ b/types/google.accounts/google.accounts-tests.ts @@ -185,6 +185,7 @@ google.accounts.id.initialize({ client_id: "YOUR_GOOGLE_CLIENT_ID" }); // all options google.accounts.id.initialize({ client_id: "YOUR_GOOGLE_CLIENT_ID", + color_scheme: "default", callback: response => { // $ExpectType string response.credential; diff --git a/types/google.accounts/index.d.ts b/types/google.accounts/index.d.ts index ac5b3828cc5f9b..38760f85331a62 100644 --- a/types/google.accounts/index.d.ts +++ b/types/google.accounts/index.d.ts @@ -553,6 +553,11 @@ declare namespace google.accounts { */ client_id: string; + /** + * The color scheme applied to the One Tap prompt. + */ + color_scheme?: "default" | "light" | "dark"; + /** * Enables automatic selection. */