@skyux/progress-indicator 12.23.0 → 13.0.0-alpha.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/fesm2022/skyux-progress-indicator-testing.mjs.map +1 -1
- package/fesm2022/skyux-progress-indicator.mjs +35 -35
- package/fesm2022/skyux-progress-indicator.mjs.map +1 -1
- package/index.d.ts +373 -15
- package/package.json +9 -9
- package/testing/index.d.ts +87 -3
- package/lib/modules/progress-indicator/progress-indicator-item/progress-indicator-item.component.d.ts +0 -49
- package/lib/modules/progress-indicator/progress-indicator-nav-button/progress-indicator-nav-button-class.pipe.d.ts +0 -7
- package/lib/modules/progress-indicator/progress-indicator-nav-button/progress-indicator-nav-button-disabled.pipe.d.ts +0 -9
- package/lib/modules/progress-indicator/progress-indicator-nav-button/progress-indicator-nav-button.component.d.ts +0 -51
- package/lib/modules/progress-indicator/progress-indicator-reset-button/progress-indicator-reset-button.component.d.ts +0 -32
- package/lib/modules/progress-indicator/progress-indicator-status-marker/progress-indicator-status-marker-class.pipe.d.ts +0 -8
- package/lib/modules/progress-indicator/progress-indicator-status-marker/progress-indicator-status-marker.component.d.ts +0 -20
- package/lib/modules/progress-indicator/progress-indicator-title/progress-indicator-title.component.d.ts +0 -8
- package/lib/modules/progress-indicator/progress-indicator.component.d.ts +0 -62
- package/lib/modules/progress-indicator/progress-indicator.module.d.ts +0 -21
- package/lib/modules/progress-indicator/types/progress-indicator-action-click-args.d.ts +0 -14
- package/lib/modules/progress-indicator/types/progress-indicator-action-click-progress-handler.d.ts +0 -12
- package/lib/modules/progress-indicator/types/progress-indicator-change.d.ts +0 -15
- package/lib/modules/progress-indicator/types/progress-indicator-display-mode-type.d.ts +0 -1
- package/lib/modules/progress-indicator/types/progress-indicator-item-status.d.ts +0 -18
- package/lib/modules/progress-indicator/types/progress-indicator-message-type.d.ts +0 -26
- package/lib/modules/progress-indicator/types/progress-indicator-message.d.ts +0 -15
- package/lib/modules/progress-indicator/types/progress-indicator-mode.d.ts +0 -14
- package/lib/modules/progress-indicator/types/progress-indicator-nav-button-type.d.ts +0 -4
- package/lib/modules/shared/sky-progress-indicator-resources.module.d.ts +0 -10
- package/testing/modules/progress-indicator/progress-indicator-harness-filters.d.ts +0 -6
- package/testing/modules/progress-indicator/progress-indicator-harness.d.ts +0 -40
- package/testing/modules/progress-indicator/progress-indicator-item-harness-filters.d.ts +0 -6
- package/testing/modules/progress-indicator/progress-indicator-item-harness.d.ts +0 -38
- package/testing/public-api.d.ts +0 -4
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"skyux-progress-indicator-testing.mjs","sources":["../../../../../libs/components/progress-indicator/testing/src/modules/progress-indicator/progress-indicator-item-harness.ts","../../../../../libs/components/progress-indicator/testing/src/modules/progress-indicator/progress-indicator-harness.ts","../../../../../libs/components/progress-indicator/testing/src/skyux-progress-indicator-testing.ts"],"sourcesContent":["import { HarnessPredicate } from '@angular/cdk/testing';\nimport { SkyComponentHarness } from '@skyux/core/testing';\nimport { SkyHelpInlineHarness } from '@skyux/help-inline/testing';\n\nimport { SkyProgressIndicatorItemFilters } from './progress-indicator-item-harness-filters';\n\n/**\n * Harness for interacting with a progress indicator item component in tests.\n */\nexport class SkyProgressIndicatorItemHarness extends SkyComponentHarness {\n /**\n * @internal\n */\n public static hostSelector = 'sky-progress-indicator-item';\n\n #getHeading = this.locatorFor('.sky-progress-indicator-item-heading');\n #getIndicator = this.locatorFor('.sky-progress-indicator-status-marker');\n\n /**\n * Gets a `HarnessPredicate` that can be used to search for a\n * `SkyProgressIndicatorItemHarness` that meets certain criteria\n */\n public static with(\n filters: SkyProgressIndicatorItemFilters,\n ): HarnessPredicate<SkyProgressIndicatorItemHarness> {\n return SkyProgressIndicatorItemHarness.getDataSkyIdPredicate(filters);\n }\n\n /**\n * Clicks the help inline button.\n */\n public async clickHelpInline(): Promise<void> {\n await (await this.#getHelpInline()).click();\n }\n\n /**\n * Gets the help inline popover content.\n */\n public async getHelpPopoverContent(): Promise<string | undefined> {\n return await (await this.#getHelpInline()).getPopoverContent();\n }\n\n /**\n * Gets the help inline popover title.\n */\n public async getHelpPopoverTitle(): Promise<string | undefined> {\n return await (await this.#getHelpInline()).getPopoverTitle();\n }\n\n /**\n * Gets the progress indicator item's title text.\n */\n public async getTitle(): Promise<string> {\n const title = await (await this.#getHeading()).text();\n return title.substring(title.indexOf('-') + 1).trim();\n }\n\n /**\n * Whether the indicator item step is completed.\n */\n public async isCompleted(): Promise<boolean> {\n return await (\n await this.#getIndicator()\n ).hasClass('sky-progress-indicator-status-marker-status-complete');\n }\n\n async #getHelpInline(): Promise<SkyHelpInlineHarness> {\n const harness = await this.locatorForOptional(SkyHelpInlineHarness)();\n\n if (harness) {\n return harness;\n }\n\n throw Error('No help inline found.');\n }\n}\n","import { HarnessPredicate } from '@angular/cdk/testing';\nimport { SkyComponentHarness } from '@skyux/core/testing';\n\nimport { SkyProgressIndicatorFilters } from './progress-indicator-harness-filters';\nimport { SkyProgressIndicatorItemHarness } from './progress-indicator-item-harness';\nimport { SkyProgressIndicatorItemFilters } from './progress-indicator-item-harness-filters';\n\n/**\n * Harness for interacting with a progress indicator component in tests.\n */\nexport class SkyProgressIndicatorHarness extends SkyComponentHarness {\n /**\n * @internal\n */\n public static hostSelector = 'sky-progress-indicator';\n\n #getProgressIndicator = this.locatorFor('.sky-progress-indicator');\n #getResetButton = this.locatorFor(\n 'sky-progress-indicator-reset-button > .sky-btn-link',\n );\n #getTitle = this.locatorFor('.sky-progress-indicator-title');\n\n /**\n * Gets a `HarnessPredicate` that can be used to search for a\n * `SkyProgressIndicatorHarness` that meets certain criteria.\n */\n public static with(\n filters: SkyProgressIndicatorFilters,\n ): HarnessPredicate<SkyProgressIndicatorHarness> {\n return SkyProgressIndicatorHarness.getDataSkyIdPredicate(filters);\n }\n\n /**\n * Clicks the reset button.\n */\n public async clickResetButton(): Promise<void> {\n try {\n await (await this.#getResetButton()).click();\n } catch {\n throw new Error('Unable to find reset button.');\n }\n }\n\n /**\n * Gets a specific progress indicator item that meets certain criteria.\n */\n public async getItem(\n filter: SkyProgressIndicatorItemFilters,\n ): Promise<SkyProgressIndicatorItemHarness> {\n return await this.locatorFor(\n SkyProgressIndicatorItemHarness.with(filter),\n )();\n }\n\n /**\n * Gets an array of all progress indicator items.\n */\n public async getItems(\n filters?: SkyProgressIndicatorItemFilters,\n ): Promise<SkyProgressIndicatorItemHarness[]> {\n const items = await this.locatorForAll(\n SkyProgressIndicatorItemHarness.with(filters || {}),\n )();\n\n if (items.length === 0) {\n if (filters) {\n throw new Error(\n `Unable to find any progress indicator items with filter(s): ${JSON.stringify(filters)}`,\n );\n }\n throw new Error('Unable to find any progress indicator items.');\n }\n\n return items;\n }\n\n /**\n * Gets the progress indicator title.\n */\n public async getTitle(): Promise<string> {\n try {\n return (await (await this.#getTitle()).text()).trim();\n } catch {\n throw new Error('Unable to find title.');\n }\n }\n\n /**\n * Whether the progress indicator is passive.\n */\n public async isPassive(): Promise<boolean> {\n return await (\n await this.#getProgressIndicator()\n ).hasClass('sky-progress-indicator-passive');\n }\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"skyux-progress-indicator-testing.mjs","sources":["../tmp-esm2022/testing/modules/progress-indicator/progress-indicator-item-harness.js","../tmp-esm2022/testing/modules/progress-indicator/progress-indicator-harness.js","../tmp-esm2022/testing/skyux-progress-indicator-testing.js"],"sourcesContent":["import { SkyComponentHarness } from '@skyux/core/testing';\nimport { SkyHelpInlineHarness } from '@skyux/help-inline/testing';\n/**\n * Harness for interacting with a progress indicator item component in tests.\n */\nexport class SkyProgressIndicatorItemHarness extends SkyComponentHarness {\n /**\n * @internal\n */\n static { this.hostSelector = 'sky-progress-indicator-item'; }\n #getHeading = this.locatorFor('.sky-progress-indicator-item-heading');\n #getIndicator = this.locatorFor('.sky-progress-indicator-status-marker');\n /**\n * Gets a `HarnessPredicate` that can be used to search for a\n * `SkyProgressIndicatorItemHarness` that meets certain criteria\n */\n static with(filters) {\n return SkyProgressIndicatorItemHarness.getDataSkyIdPredicate(filters);\n }\n /**\n * Clicks the help inline button.\n */\n async clickHelpInline() {\n await (await this.#getHelpInline()).click();\n }\n /**\n * Gets the help inline popover content.\n */\n async getHelpPopoverContent() {\n return await (await this.#getHelpInline()).getPopoverContent();\n }\n /**\n * Gets the help inline popover title.\n */\n async getHelpPopoverTitle() {\n return await (await this.#getHelpInline()).getPopoverTitle();\n }\n /**\n * Gets the progress indicator item's title text.\n */\n async getTitle() {\n const title = await (await this.#getHeading()).text();\n return title.substring(title.indexOf('-') + 1).trim();\n }\n /**\n * Whether the indicator item step is completed.\n */\n async isCompleted() {\n return await (await this.#getIndicator()).hasClass('sky-progress-indicator-status-marker-status-complete');\n }\n async #getHelpInline() {\n const harness = await this.locatorForOptional(SkyHelpInlineHarness)();\n if (harness) {\n return harness;\n }\n throw Error('No help inline found.');\n }\n}\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHJvZ3Jlc3MtaW5kaWNhdG9yLWl0ZW0taGFybmVzcy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY29tcG9uZW50cy9wcm9ncmVzcy1pbmRpY2F0b3IvdGVzdGluZy9zcmMvbW9kdWxlcy9wcm9ncmVzcy1pbmRpY2F0b3IvcHJvZ3Jlc3MtaW5kaWNhdG9yLWl0ZW0taGFybmVzcy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFDQSxPQUFPLEVBQUUsbUJBQW1CLEVBQUUsTUFBTSxxQkFBcUIsQ0FBQztBQUMxRCxPQUFPLEVBQUUsb0JBQW9CLEVBQUUsTUFBTSw0QkFBNEIsQ0FBQztBQUlsRTs7R0FFRztBQUNILE1BQU0sT0FBTywrQkFBZ0MsU0FBUSxtQkFBbUI7SUFDdEU7O09BRUc7YUFDVyxpQkFBWSxHQUFHLDZCQUE2QixDQUFDO0lBRTNELFdBQVcsR0FBRyxJQUFJLENBQUMsVUFBVSxDQUFDLHNDQUFzQyxDQUFDLENBQUM7SUFDdEUsYUFBYSxHQUFHLElBQUksQ0FBQyxVQUFVLENBQUMsdUNBQXVDLENBQUMsQ0FBQztJQUV6RTs7O09BR0c7SUFDSSxNQUFNLENBQUMsSUFBSSxDQUNoQixPQUF3QztRQUV4QyxPQUFPLCtCQUErQixDQUFDLHFCQUFxQixDQUFDLE9BQU8sQ0FBQyxDQUFDO0lBQ3hFLENBQUM7SUFFRDs7T0FFRztJQUNJLEtBQUssQ0FBQyxlQUFlO1FBQzFCLE1BQU0sQ0FBQyxNQUFNLElBQUksQ0FBQyxjQUFjLEVBQUUsQ0FBQyxDQUFDLEtBQUssRUFBRSxDQUFDO0lBQzlDLENBQUM7SUFFRDs7T0FFRztJQUNJLEtBQUssQ0FBQyxxQkFBcUI7UUFDaEMsT0FBTyxNQUFNLENBQUMsTUFBTSxJQUFJLENBQUMsY0FBYyxFQUFFLENBQUMsQ0FBQyxpQkFBaUIsRUFBRSxDQUFDO0lBQ2pFLENBQUM7SUFFRDs7T0FFRztJQUNJLEtBQUssQ0FBQyxtQkFBbUI7UUFDOUIsT0FBTyxNQUFNLENBQUMsTUFBTSxJQUFJLENBQUMsY0FBYyxFQUFFLENBQUMsQ0FBQyxlQUFlLEVBQUUsQ0FBQztJQUMvRCxDQUFDO0lBRUQ7O09BRUc7SUFDSSxLQUFLLENBQUMsUUFBUTtRQUNuQixNQUFNLEtBQUssR0FBRyxNQUFNLENBQUMsTUFBTSxJQUFJLENBQUMsV0FBVyxFQUFFLENBQUMsQ0FBQyxJQUFJLEVBQUUsQ0FBQztRQUN0RCxPQUFPLEtBQUssQ0FBQyxTQUFTLENBQUMsS0FBSyxDQUFDLE9BQU8sQ0FBQyxHQUFHLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FBQyxJQUFJLEVBQUUsQ0FBQztJQUN4RCxDQUFDO0lBRUQ7O09BRUc7SUFDSSxLQUFLLENBQUMsV0FBVztRQUN0QixPQUFPLE1BQU0sQ0FDWCxNQUFNLElBQUksQ0FBQyxhQUFhLEVBQUUsQ0FDM0IsQ0FBQyxRQUFRLENBQUMsc0RBQXNELENBQUMsQ0FBQztJQUNyRSxDQUFDO0lBRUQsS0FBSyxDQUFDLGNBQWM7UUFDbEIsTUFBTSxPQUFPLEdBQUcsTUFBTSxJQUFJLENBQUMsa0JBQWtCLENBQUMsb0JBQW9CLENBQUMsRUFBRSxDQUFDO1FBRXRFLElBQUksT0FBTyxFQUFFLENBQUM7WUFDWixPQUFPLE9BQU8sQ0FBQztRQUNqQixDQUFDO1FBRUQsTUFBTSxLQUFLLENBQUMsdUJBQXVCLENBQUMsQ0FBQztJQUN2QyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgSGFybmVzc1ByZWRpY2F0ZSB9IGZyb20gJ0Bhbmd1bGFyL2Nkay90ZXN0aW5nJztcbmltcG9ydCB7IFNreUNvbXBvbmVudEhhcm5lc3MgfSBmcm9tICdAc2t5dXgvY29yZS90ZXN0aW5nJztcbmltcG9ydCB7IFNreUhlbHBJbmxpbmVIYXJuZXNzIH0gZnJvbSAnQHNreXV4L2hlbHAtaW5saW5lL3Rlc3RpbmcnO1xuXG5pbXBvcnQgeyBTa3lQcm9ncmVzc0luZGljYXRvckl0ZW1GaWx0ZXJzIH0gZnJvbSAnLi9wcm9ncmVzcy1pbmRpY2F0b3ItaXRlbS1oYXJuZXNzLWZpbHRlcnMnO1xuXG4vKipcbiAqIEhhcm5lc3MgZm9yIGludGVyYWN0aW5nIHdpdGggYSBwcm9ncmVzcyBpbmRpY2F0b3IgaXRlbSBjb21wb25lbnQgaW4gdGVzdHMuXG4gKi9cbmV4cG9ydCBjbGFzcyBTa3lQcm9ncmVzc0luZGljYXRvckl0ZW1IYXJuZXNzIGV4dGVuZHMgU2t5Q29tcG9uZW50SGFybmVzcyB7XG4gIC8qKlxuICAgKiBAaW50ZXJuYWxcbiAgICovXG4gIHB1YmxpYyBzdGF0aWMgaG9zdFNlbGVjdG9yID0gJ3NreS1wcm9ncmVzcy1pbmRpY2F0b3ItaXRlbSc7XG5cbiAgI2dldEhlYWRpbmcgPSB0aGlzLmxvY2F0b3JGb3IoJy5za3ktcHJvZ3Jlc3MtaW5kaWNhdG9yLWl0ZW0taGVhZGluZycpO1xuICAjZ2V0SW5kaWNhdG9yID0gdGhpcy5sb2NhdG9yRm9yKCcuc2t5LXByb2dyZXNzLWluZGljYXRvci1zdGF0dXMtbWFya2VyJyk7XG5cbiAgLyoqXG4gICAqIEdldHMgYSBgSGFybmVzc1ByZWRpY2F0ZWAgdGhhdCBjYW4gYmUgdXNlZCB0byBzZWFyY2ggZm9yIGFcbiAgICogYFNreVByb2dyZXNzSW5kaWNhdG9ySXRlbUhhcm5lc3NgIHRoYXQgbWVldHMgY2VydGFpbiBjcml0ZXJpYVxuICAgKi9cbiAgcHVibGljIHN0YXRpYyB3aXRoKFxuICAgIGZpbHRlcnM6IFNreVByb2dyZXNzSW5kaWNhdG9ySXRlbUZpbHRlcnMsXG4gICk6IEhhcm5lc3NQcmVkaWNhdGU8U2t5UHJvZ3Jlc3NJbmRpY2F0b3JJdGVtSGFybmVzcz4ge1xuICAgIHJldHVybiBTa3lQcm9ncmVzc0luZGljYXRvckl0ZW1IYXJuZXNzLmdldERhdGFTa3lJZFByZWRpY2F0ZShmaWx0ZXJzKTtcbiAgfVxuXG4gIC8qKlxuICAgKiBDbGlja3MgdGhlIGhlbHAgaW5saW5lIGJ1dHRvbi5cbiAgICovXG4gIHB1YmxpYyBhc3luYyBjbGlja0hlbHBJbmxpbmUoKTogUHJvbWlzZTx2b2lkPiB7XG4gICAgYXdhaXQgKGF3YWl0IHRoaXMuI2dldEhlbHBJbmxpbmUoKSkuY2xpY2soKTtcbiAgfVxuXG4gIC8qKlxuICAgKiBHZXRzIHRoZSBoZWxwIGlubGluZSBwb3BvdmVyIGNvbnRlbnQuXG4gICAqL1xuICBwdWJsaWMgYXN5bmMgZ2V0SGVscFBvcG92ZXJDb250ZW50KCk6IFByb21pc2U8c3RyaW5nIHwgdW5kZWZpbmVkPiB7XG4gICAgcmV0dXJuIGF3YWl0IChhd2FpdCB0aGlzLiNnZXRIZWxwSW5saW5lKCkpLmdldFBvcG92ZXJDb250ZW50KCk7XG4gIH1cblxuICAvKipcbiAgICogR2V0cyB0aGUgaGVscCBpbmxpbmUgcG9wb3ZlciB0aXRsZS5cbiAgICovXG4gIHB1YmxpYyBhc3luYyBnZXRIZWxwUG9wb3ZlclRpdGxlKCk6IFByb21pc2U8c3RyaW5nIHwgdW5kZWZpbmVkPiB7XG4gICAgcmV0dXJuIGF3YWl0IChhd2FpdCB0aGlzLiNnZXRIZWxwSW5saW5lKCkpLmdldFBvcG92ZXJUaXRsZSgpO1xuICB9XG5cbiAgLyoqXG4gICAqIEdldHMgdGhlIHByb2dyZXNzIGluZGljYXRvciBpdGVtJ3MgdGl0bGUgdGV4dC5cbiAgICovXG4gIHB1YmxpYyBhc3luYyBnZXRUaXRsZSgpOiBQcm9taXNlPHN0cmluZz4ge1xuICAgIGNvbnN0IHRpdGxlID0gYXdhaXQgKGF3YWl0IHRoaXMuI2dldEhlYWRpbmcoKSkudGV4dCgpO1xuICAgIHJldHVybiB0aXRsZS5zdWJzdHJpbmcodGl0bGUuaW5kZXhPZignLScpICsgMSkudHJpbSgpO1xuICB9XG5cbiAgLyoqXG4gICAqIFdoZXRoZXIgdGhlIGluZGljYXRvciBpdGVtIHN0ZXAgaXMgY29tcGxldGVkLlxuICAgKi9cbiAgcHVibGljIGFzeW5jIGlzQ29tcGxldGVkKCk6IFByb21pc2U8Ym9vbGVhbj4ge1xuICAgIHJldHVybiBhd2FpdCAoXG4gICAgICBhd2FpdCB0aGlzLiNnZXRJbmRpY2F0b3IoKVxuICAgICkuaGFzQ2xhc3MoJ3NreS1wcm9ncmVzcy1pbmRpY2F0b3Itc3RhdHVzLW1hcmtlci1zdGF0dXMtY29tcGxldGUnKTtcbiAgfVxuXG4gIGFzeW5jICNnZXRIZWxwSW5saW5lKCk6IFByb21pc2U8U2t5SGVscElubGluZUhhcm5lc3M+IHtcbiAgICBjb25zdCBoYXJuZXNzID0gYXdhaXQgdGhpcy5sb2NhdG9yRm9yT3B0aW9uYWwoU2t5SGVscElubGluZUhhcm5lc3MpKCk7XG5cbiAgICBpZiAoaGFybmVzcykge1xuICAgICAgcmV0dXJuIGhhcm5lc3M7XG4gICAgfVxuXG4gICAgdGhyb3cgRXJyb3IoJ05vIGhlbHAgaW5saW5lIGZvdW5kLicpO1xuICB9XG59XG4iXX0=","import { SkyComponentHarness } from '@skyux/core/testing';\nimport { SkyProgressIndicatorItemHarness } from './progress-indicator-item-harness';\n/**\n * Harness for interacting with a progress indicator component in tests.\n */\nexport class SkyProgressIndicatorHarness extends SkyComponentHarness {\n /**\n * @internal\n */\n static { this.hostSelector = 'sky-progress-indicator'; }\n #getProgressIndicator = this.locatorFor('.sky-progress-indicator');\n #getResetButton = this.locatorFor('sky-progress-indicator-reset-button > .sky-btn-link');\n #getTitle = this.locatorFor('.sky-progress-indicator-title');\n /**\n * Gets a `HarnessPredicate` that can be used to search for a\n * `SkyProgressIndicatorHarness` that meets certain criteria.\n */\n static with(filters) {\n return SkyProgressIndicatorHarness.getDataSkyIdPredicate(filters);\n }\n /**\n * Clicks the reset button.\n */\n async clickResetButton() {\n try {\n await (await this.#getResetButton()).click();\n }\n catch {\n throw new Error('Unable to find reset button.');\n }\n }\n /**\n * Gets a specific progress indicator item that meets certain criteria.\n */\n async getItem(filter) {\n return await this.locatorFor(SkyProgressIndicatorItemHarness.with(filter))();\n }\n /**\n * Gets an array of all progress indicator items.\n */\n async getItems(filters) {\n const items = await this.locatorForAll(SkyProgressIndicatorItemHarness.with(filters || {}))();\n if (items.length === 0) {\n if (filters) {\n throw new Error(`Unable to find any progress indicator items with filter(s): ${JSON.stringify(filters)}`);\n }\n throw new Error('Unable to find any progress indicator items.');\n }\n return items;\n }\n /**\n * Gets the progress indicator title.\n */\n async getTitle() {\n try {\n return (await (await this.#getTitle()).text()).trim();\n }\n catch {\n throw new Error('Unable to find title.');\n }\n }\n /**\n * Whether the progress indicator is passive.\n */\n async isPassive() {\n return await (await this.#getProgressIndicator()).hasClass('sky-progress-indicator-passive');\n }\n}\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHJvZ3Jlc3MtaW5kaWNhdG9yLWhhcm5lc3MuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2NvbXBvbmVudHMvcHJvZ3Jlc3MtaW5kaWNhdG9yL3Rlc3Rpbmcvc3JjL21vZHVsZXMvcHJvZ3Jlc3MtaW5kaWNhdG9yL3Byb2dyZXNzLWluZGljYXRvci1oYXJuZXNzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUNBLE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxNQUFNLHFCQUFxQixDQUFDO0FBRzFELE9BQU8sRUFBRSwrQkFBK0IsRUFBRSxNQUFNLG1DQUFtQyxDQUFDO0FBR3BGOztHQUVHO0FBQ0gsTUFBTSxPQUFPLDJCQUE0QixTQUFRLG1CQUFtQjtJQUNsRTs7T0FFRzthQUNXLGlCQUFZLEdBQUcsd0JBQXdCLENBQUM7SUFFdEQscUJBQXFCLEdBQUcsSUFBSSxDQUFDLFVBQVUsQ0FBQyx5QkFBeUIsQ0FBQyxDQUFDO0lBQ25FLGVBQWUsR0FBRyxJQUFJLENBQUMsVUFBVSxDQUMvQixxREFBcUQsQ0FDdEQsQ0FBQztJQUNGLFNBQVMsR0FBRyxJQUFJLENBQUMsVUFBVSxDQUFDLCtCQUErQixDQUFDLENBQUM7SUFFN0Q7OztPQUdHO0lBQ0ksTUFBTSxDQUFDLElBQUksQ0FDaEIsT0FBb0M7UUFFcEMsT0FBTywyQkFBMkIsQ0FBQyxxQkFBcUIsQ0FBQyxPQUFPLENBQUMsQ0FBQztJQUNwRSxDQUFDO0lBRUQ7O09BRUc7SUFDSSxLQUFLLENBQUMsZ0JBQWdCO1FBQzNCLElBQUksQ0FBQztZQUNILE1BQU0sQ0FBQyxNQUFNLElBQUksQ0FBQyxlQUFlLEVBQUUsQ0FBQyxDQUFDLEtBQUssRUFBRSxDQUFDO1FBQy9DLENBQUM7UUFBQyxNQUFNLENBQUM7WUFDUCxNQUFNLElBQUksS0FBSyxDQUFDLDhCQUE4QixDQUFDLENBQUM7UUFDbEQsQ0FBQztJQUNILENBQUM7SUFFRDs7T0FFRztJQUNJLEtBQUssQ0FBQyxPQUFPLENBQ2xCLE1BQXVDO1FBRXZDLE9BQU8sTUFBTSxJQUFJLENBQUMsVUFBVSxDQUMxQiwrQkFBK0IsQ0FBQyxJQUFJLENBQUMsTUFBTSxDQUFDLENBQzdDLEVBQUUsQ0FBQztJQUNOLENBQUM7SUFFRDs7T0FFRztJQUNJLEtBQUssQ0FBQyxRQUFRLENBQ25CLE9BQXlDO1FBRXpDLE1BQU0sS0FBSyxHQUFHLE1BQU0sSUFBSSxDQUFDLGFBQWEsQ0FDcEMsK0JBQStCLENBQUMsSUFBSSxDQUFDLE9BQU8sSUFBSSxFQUFFLENBQUMsQ0FDcEQsRUFBRSxDQUFDO1FBRUosSUFBSSxLQUFLLENBQUMsTUFBTSxLQUFLLENBQUMsRUFBRSxDQUFDO1lBQ3ZCLElBQUksT0FBTyxFQUFFLENBQUM7Z0JBQ1osTUFBTSxJQUFJLEtBQUssQ0FDYiwrREFBK0QsSUFBSSxDQUFDLFNBQVMsQ0FBQyxPQUFPLENBQUMsRUFBRSxDQUN6RixDQUFDO1lBQ0osQ0FBQztZQUNELE1BQU0sSUFBSSxLQUFLLENBQUMsOENBQThDLENBQUMsQ0FBQztRQUNsRSxDQUFDO1FBRUQsT0FBTyxLQUFLLENBQUM7SUFDZixDQUFDO0lBRUQ7O09BRUc7SUFDSSxLQUFLLENBQUMsUUFBUTtRQUNuQixJQUFJLENBQUM7WUFDSCxPQUFPLENBQUMsTUFBTSxDQUFDLE1BQU0sSUFBSSxDQUFDLFNBQVMsRUFBRSxDQUFDLENBQUMsSUFBSSxFQUFFLENBQUMsQ0FBQyxJQUFJLEVBQUUsQ0FBQztRQUN4RCxDQUFDO1FBQUMsTUFBTSxDQUFDO1lBQ1AsTUFBTSxJQUFJLEtBQUssQ0FBQyx1QkFBdUIsQ0FBQyxDQUFDO1FBQzNDLENBQUM7SUFDSCxDQUFDO0lBRUQ7O09BRUc7SUFDSSxLQUFLLENBQUMsU0FBUztRQUNwQixPQUFPLE1BQU0sQ0FDWCxNQUFNLElBQUksQ0FBQyxxQkFBcUIsRUFBRSxDQUNuQyxDQUFDLFFBQVEsQ0FBQyxnQ0FBZ0MsQ0FBQyxDQUFDO0lBQy9DLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBIYXJuZXNzUHJlZGljYXRlIH0gZnJvbSAnQGFuZ3VsYXIvY2RrL3Rlc3RpbmcnO1xuaW1wb3J0IHsgU2t5Q29tcG9uZW50SGFybmVzcyB9IGZyb20gJ0Bza3l1eC9jb3JlL3Rlc3RpbmcnO1xuXG5pbXBvcnQgeyBTa3lQcm9ncmVzc0luZGljYXRvckZpbHRlcnMgfSBmcm9tICcuL3Byb2dyZXNzLWluZGljYXRvci1oYXJuZXNzLWZpbHRlcnMnO1xuaW1wb3J0IHsgU2t5UHJvZ3Jlc3NJbmRpY2F0b3JJdGVtSGFybmVzcyB9IGZyb20gJy4vcHJvZ3Jlc3MtaW5kaWNhdG9yLWl0ZW0taGFybmVzcyc7XG5pbXBvcnQgeyBTa3lQcm9ncmVzc0luZGljYXRvckl0ZW1GaWx0ZXJzIH0gZnJvbSAnLi9wcm9ncmVzcy1pbmRpY2F0b3ItaXRlbS1oYXJuZXNzLWZpbHRlcnMnO1xuXG4vKipcbiAqIEhhcm5lc3MgZm9yIGludGVyYWN0aW5nIHdpdGggYSBwcm9ncmVzcyBpbmRpY2F0b3IgY29tcG9uZW50IGluIHRlc3RzLlxuICovXG5leHBvcnQgY2xhc3MgU2t5UHJvZ3Jlc3NJbmRpY2F0b3JIYXJuZXNzIGV4dGVuZHMgU2t5Q29tcG9uZW50SGFybmVzcyB7XG4gIC8qKlxuICAgKiBAaW50ZXJuYWxcbiAgICovXG4gIHB1YmxpYyBzdGF0aWMgaG9zdFNlbGVjdG9yID0gJ3NreS1wcm9ncmVzcy1pbmRpY2F0b3InO1xuXG4gICNnZXRQcm9ncmVzc0luZGljYXRvciA9IHRoaXMubG9jYXRvckZvcignLnNreS1wcm9ncmVzcy1pbmRpY2F0b3InKTtcbiAgI2dldFJlc2V0QnV0dG9uID0gdGhpcy5sb2NhdG9yRm9yKFxuICAgICdza3ktcHJvZ3Jlc3MtaW5kaWNhdG9yLXJlc2V0LWJ1dHRvbiA+IC5za3ktYnRuLWxpbmsnLFxuICApO1xuICAjZ2V0VGl0bGUgPSB0aGlzLmxvY2F0b3JGb3IoJy5za3ktcHJvZ3Jlc3MtaW5kaWNhdG9yLXRpdGxlJyk7XG5cbiAgLyoqXG4gICAqIEdldHMgYSBgSGFybmVzc1ByZWRpY2F0ZWAgdGhhdCBjYW4gYmUgdXNlZCB0byBzZWFyY2ggZm9yIGFcbiAgICogYFNreVByb2dyZXNzSW5kaWNhdG9ySGFybmVzc2AgdGhhdCBtZWV0cyBjZXJ0YWluIGNyaXRlcmlhLlxuICAgKi9cbiAgcHVibGljIHN0YXRpYyB3aXRoKFxuICAgIGZpbHRlcnM6IFNreVByb2dyZXNzSW5kaWNhdG9yRmlsdGVycyxcbiAgKTogSGFybmVzc1ByZWRpY2F0ZTxTa3lQcm9ncmVzc0luZGljYXRvckhhcm5lc3M+IHtcbiAgICByZXR1cm4gU2t5UHJvZ3Jlc3NJbmRpY2F0b3JIYXJuZXNzLmdldERhdGFTa3lJZFByZWRpY2F0ZShmaWx0ZXJzKTtcbiAgfVxuXG4gIC8qKlxuICAgKiBDbGlja3MgdGhlIHJlc2V0IGJ1dHRvbi5cbiAgICovXG4gIHB1YmxpYyBhc3luYyBjbGlja1Jlc2V0QnV0dG9uKCk6IFByb21pc2U8dm9pZD4ge1xuICAgIHRyeSB7XG4gICAgICBhd2FpdCAoYXdhaXQgdGhpcy4jZ2V0UmVzZXRCdXR0b24oKSkuY2xpY2soKTtcbiAgICB9IGNhdGNoIHtcbiAgICAgIHRocm93IG5ldyBFcnJvcignVW5hYmxlIHRvIGZpbmQgcmVzZXQgYnV0dG9uLicpO1xuICAgIH1cbiAgfVxuXG4gIC8qKlxuICAgKiBHZXRzIGEgc3BlY2lmaWMgcHJvZ3Jlc3MgaW5kaWNhdG9yIGl0ZW0gdGhhdCBtZWV0cyBjZXJ0YWluIGNyaXRlcmlhLlxuICAgKi9cbiAgcHVibGljIGFzeW5jIGdldEl0ZW0oXG4gICAgZmlsdGVyOiBTa3lQcm9ncmVzc0luZGljYXRvckl0ZW1GaWx0ZXJzLFxuICApOiBQcm9taXNlPFNreVByb2dyZXNzSW5kaWNhdG9ySXRlbUhhcm5lc3M+IHtcbiAgICByZXR1cm4gYXdhaXQgdGhpcy5sb2NhdG9yRm9yKFxuICAgICAgU2t5UHJvZ3Jlc3NJbmRpY2F0b3JJdGVtSGFybmVzcy53aXRoKGZpbHRlciksXG4gICAgKSgpO1xuICB9XG5cbiAgLyoqXG4gICAqIEdldHMgYW4gYXJyYXkgb2YgYWxsIHByb2dyZXNzIGluZGljYXRvciBpdGVtcy5cbiAgICovXG4gIHB1YmxpYyBhc3luYyBnZXRJdGVtcyhcbiAgICBmaWx0ZXJzPzogU2t5UHJvZ3Jlc3NJbmRpY2F0b3JJdGVtRmlsdGVycyxcbiAgKTogUHJvbWlzZTxTa3lQcm9ncmVzc0luZGljYXRvckl0ZW1IYXJuZXNzW10+IHtcbiAgICBjb25zdCBpdGVtcyA9IGF3YWl0IHRoaXMubG9jYXRvckZvckFsbChcbiAgICAgIFNreVByb2dyZXNzSW5kaWNhdG9ySXRlbUhhcm5lc3Mud2l0aChmaWx0ZXJzIHx8IHt9KSxcbiAgICApKCk7XG5cbiAgICBpZiAoaXRlbXMubGVuZ3RoID09PSAwKSB7XG4gICAgICBpZiAoZmlsdGVycykge1xuICAgICAgICB0aHJvdyBuZXcgRXJyb3IoXG4gICAgICAgICAgYFVuYWJsZSB0byBmaW5kIGFueSBwcm9ncmVzcyBpbmRpY2F0b3IgaXRlbXMgd2l0aCBmaWx0ZXIocyk6ICR7SlNPTi5zdHJpbmdpZnkoZmlsdGVycyl9YCxcbiAgICAgICAgKTtcbiAgICAgIH1cbiAgICAgIHRocm93IG5ldyBFcnJvcignVW5hYmxlIHRvIGZpbmQgYW55IHByb2dyZXNzIGluZGljYXRvciBpdGVtcy4nKTtcbiAgICB9XG5cbiAgICByZXR1cm4gaXRlbXM7XG4gIH1cblxuICAvKipcbiAgICogR2V0cyB0aGUgcHJvZ3Jlc3MgaW5kaWNhdG9yIHRpdGxlLlxuICAgKi9cbiAgcHVibGljIGFzeW5jIGdldFRpdGxlKCk6IFByb21pc2U8c3RyaW5nPiB7XG4gICAgdHJ5IHtcbiAgICAgIHJldHVybiAoYXdhaXQgKGF3YWl0IHRoaXMuI2dldFRpdGxlKCkpLnRleHQoKSkudHJpbSgpO1xuICAgIH0gY2F0Y2gge1xuICAgICAgdGhyb3cgbmV3IEVycm9yKCdVbmFibGUgdG8gZmluZCB0aXRsZS4nKTtcbiAgICB9XG4gIH1cblxuICAvKipcbiAgICogV2hldGhlciB0aGUgcHJvZ3Jlc3MgaW5kaWNhdG9yIGlzIHBhc3NpdmUuXG4gICAqL1xuICBwdWJsaWMgYXN5bmMgaXNQYXNzaXZlKCk6IFByb21pc2U8Ym9vbGVhbj4ge1xuICAgIHJldHVybiBhd2FpdCAoXG4gICAgICBhd2FpdCB0aGlzLiNnZXRQcm9ncmVzc0luZGljYXRvcigpXG4gICAgKS5oYXNDbGFzcygnc2t5LXByb2dyZXNzLWluZGljYXRvci1wYXNzaXZlJyk7XG4gIH1cbn1cbiJdfQ==","/**\n * Generated bundle index. Do not edit.\n */\nexport * from './public-api';\n//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2t5dXgtcHJvZ3Jlc3MtaW5kaWNhdG9yLXRlc3RpbmcuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9saWJzL2NvbXBvbmVudHMvcHJvZ3Jlc3MtaW5kaWNhdG9yL3Rlc3Rpbmcvc3JjL3NreXV4LXByb2dyZXNzLWluZGljYXRvci10ZXN0aW5nLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBRUgsY0FBYyxjQUFjLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIEdlbmVyYXRlZCBidW5kbGUgaW5kZXguIERvIG5vdCBlZGl0LlxuICovXG5cbmV4cG9ydCAqIGZyb20gJy4vcHVibGljLWFwaSc7XG4iXX0="],"names":[],"mappings":"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"}
|
|
@@ -41,11 +41,11 @@ SkyLibResourcesService.addResources(RESOURCES);
|
|
|
41
41
|
* Import into any component library module that needs to use resource strings.
|
|
42
42
|
*/
|
|
43
43
|
class SkyProgressIndicatorResourcesModule {
|
|
44
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
45
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
46
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
44
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.5", ngImport: i0, type: SkyProgressIndicatorResourcesModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
45
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.0.5", ngImport: i0, type: SkyProgressIndicatorResourcesModule, exports: [SkyI18nModule] }); }
|
|
46
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.0.5", ngImport: i0, type: SkyProgressIndicatorResourcesModule, imports: [SkyI18nModule] }); }
|
|
47
47
|
}
|
|
48
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
48
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.5", ngImport: i0, type: SkyProgressIndicatorResourcesModule, decorators: [{
|
|
49
49
|
type: NgModule,
|
|
50
50
|
args: [{
|
|
51
51
|
exports: [SkyI18nModule],
|
|
@@ -90,10 +90,10 @@ class SkyProgressIndicatorMarkerClassPipe {
|
|
|
90
90
|
}
|
|
91
91
|
return `sky-progress-indicator-status-marker-mode-${displayMode} sky-progress-indicator-status-marker-status-${statusName}`;
|
|
92
92
|
}
|
|
93
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
94
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
93
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.5", ngImport: i0, type: SkyProgressIndicatorMarkerClassPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
94
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.0.5", ngImport: i0, type: SkyProgressIndicatorMarkerClassPipe, isStandalone: false, name: "skyProgressIndicatorMarkerClass" }); }
|
|
95
95
|
}
|
|
96
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
96
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.5", ngImport: i0, type: SkyProgressIndicatorMarkerClassPipe, decorators: [{
|
|
97
97
|
type: Pipe,
|
|
98
98
|
args: [{
|
|
99
99
|
name: 'skyProgressIndicatorMarkerClass',
|
|
@@ -140,10 +140,10 @@ class SkyProgressIndicatorStatusMarkerComponent {
|
|
|
140
140
|
this.#ngUnsubscribe.next();
|
|
141
141
|
this.#ngUnsubscribe.complete();
|
|
142
142
|
}
|
|
143
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
144
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "
|
|
143
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.5", ngImport: i0, type: SkyProgressIndicatorStatusMarkerComponent, deps: [{ token: i0.ChangeDetectorRef }, { token: i1.SkyThemeService, optional: true }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
144
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.5", type: SkyProgressIndicatorStatusMarkerComponent, isStandalone: false, selector: "sky-progress-indicator-status-marker", inputs: { displayMode: "displayMode", status: "status" }, ngImport: i0, template: "<div\n class=\"sky-progress-indicator-status-marker\"\n role=\"presentation\"\n [ngClass]=\"displayMode | skyProgressIndicatorMarkerClass: status\"\n>\n <div class=\"sky-progress-indicator-status-marker-icon\">\n @if (isComplete) {\n <sky-icon iconName=\"checkmark\" />\n }\n </div>\n <div class=\"sky-progress-indicator-status-marker-line\"></div>\n</div>\n", styles: [".sky-progress-indicator-status-marker:not(.sky-theme-modern *){--sky-override-progress-indicator-mode-vertical-width: auto;--sky-override-progress-indicator-status-marker-before-display: block;--sky-override-progress-indicator-status-marker-horizontal-icon-height: 15px;--sky-override-progress-indicator-status-marker-horizontal-padding-left: 5px;--sky-override-progress-indicator-status-marker-icon-active-color: #5a9936;--sky-override-progress-indicator-status-marker-icon-border-color: var( --sky-border-color-neutral-medium );--sky-override-progress-indicator-status-marker-icon-border-radius: 15px;--sky-override-progress-indicator-status-marker-icon-border-width: 2px;--sky-override-progress-indicator-status-marker-icon-margin-left: -1px;--sky-override-progress-indicator-status-marker-icon-margin-top: 1px;--sky-override-progress-indicator-status-marker-icon-pending-color: #5a9936;--sky-override-progress-indicator-status-marker-icon-size: 15px;--sky-override-progress-indicator-status-marker-icon-success-color: #5a9936;--sky-override-progress-indicator-status-marker-line-color: var( --sky-border-color-neutral-medium );--sky-override-progress-indicator-status-marker-line-complete-color: #5a9936;--sky-override-progress-indicator-status-marker-line-width: 1px;--sky-override-progress-indicator-status-marker-margin-right: 15px;--sky-override-progress-indicator-status-marker-status-active-icon-border-color: transparent}:host-context(.sky-theme-modern:not(.sky-theme-brand-base)) .sky-progress-indicator-status-marker{--sky-override-progress-indicator-mode-vertical-width: auto;--sky-override-progress-indicator-status-marker-before-display: block;--sky-override-progress-indicator-status-marker-horizontal-icon-top: 1px;--sky-override-progress-indicator-status-marker-horizontal-padding-left: 5px;--sky-override-progress-indicator-status-marker-icon-active-color: #5a9936;--sky-override-progress-indicator-status-marker-icon-border-color: var( --sky-border-color-neutral-medium-dark );--sky-override-progress-indicator-status-marker-icon-border-radius: 17px;--sky-override-progress-indicator-status-marker-icon-margin-left: -1px;--sky-override-progress-indicator-status-marker-icon-margin-top: 1px;--sky-override-progress-indicator-status-marker-icon-pending-color: #5a9936;--sky-override-progress-indicator-status-marker-icon-size: 17px;--sky-override-progress-indicator-status-marker-icon-success-color: #5a9936;--sky-override-progress-indicator-status-marker-line-color: var( --sky-border-color-neutral-medium-dark );--sky-override-progress-indicator-status-marker-line-complete-color: #5a9936;--sky-override-progress-indicator-status-marker-line-width: 1px;--sky-override-progress-indicator-status-marker-margin-right: 20px;--sky-override-progress-indicator-status-marker-mode-vertical-top: 3px;--sky-override-progress-indicator-status-marker-status-active-icon-border-color: transparent}.sky-progress-indicator-status-marker{display:flex;height:100%}.sky-progress-indicator-status-marker.sky-progress-indicator-status-marker-mode-vertical{flex-direction:column;margin-right:var(--sky-override-progress-indicator-status-marker-margin-right, var(--sky-space-gap-label-xl));position:relative;top:var(--sky-override-progress-indicator-status-marker-mode-vertical-top, 0);width:var(--sky-override-progress-indicator-mode-vertical-width, max(var(--sky-size-progress_step), var(--sky-size-icon-m)))}.sky-progress-indicator-status-marker.sky-progress-indicator-status-marker-mode-vertical .sky-progress-indicator-status-marker-icon{margin:var(--sky-override-progress-indicator-status-marker-icon-margin-top, 0) auto 0;width:var(--sky-override-progress-indicator-status-marker-icon-size, var(--sky-size-progress_step))}.sky-progress-indicator-status-marker.sky-progress-indicator-status-marker-mode-vertical .sky-progress-indicator-status-marker-icon>::ng-deep sky-icon{margin-left:var(--sky-override-progress-indicator-status-marker-icon-margin-left, 0)}.sky-progress-indicator-status-marker.sky-progress-indicator-status-marker-mode-vertical.sky-progress-indicator-status-marker-status-complete .sky-progress-indicator-status-marker-icon{width:var(--sky-override-progress-indicator-status-marker-icon-size, var(--sky-size-icon-m))}.sky-progress-indicator-status-marker.sky-progress-indicator-status-marker-mode-vertical .sky-progress-indicator-status-marker-line{margin:0 auto;width:var(--sky-override-progress-indicator-status-marker-line-width, var(--sky-border-width-progress_connector))}.sky-progress-indicator-status-marker.sky-progress-indicator-status-marker-mode-horizontal{flex-direction:row;width:100%;padding-left:var(--sky-override-progress-indicator-status-marker-horizontal-padding-left, 0)}.sky-progress-indicator-status-marker.sky-progress-indicator-status-marker-mode-horizontal .sky-progress-indicator-status-marker-icon{height:var(--sky-override-progress-indicator-status-marker-horizontal-icon-height, 17px);top:var(--sky-override-progress-indicator-status-marker-horizontal-icon-top, 0);width:var(--sky-override-progress-indicator-status-marker-horizontal-icon-height, 17px);flex-basis:var(--sky-override-progress-indicator-status-marker-horizontal-icon-height, 17px)}.sky-progress-indicator-status-marker.sky-progress-indicator-status-marker-mode-horizontal .sky-progress-indicator-status-marker-line{margin:auto 0;height:1px}.sky-progress-indicator-status-marker.sky-progress-indicator-status-marker-mode-horizontal.sky-progress-indicator-status-marker-status-complete .sky-progress-indicator-status-marker-icon{border:0;margin-right:5px}.sky-progress-indicator-status-marker.sky-progress-indicator-status-marker-mode-horizontal.sky-progress-indicator-status-marker-status-active .sky-progress-indicator-status-marker-icon{position:relative}.sky-progress-indicator-status-marker.sky-progress-indicator-status-marker-mode-horizontal.sky-progress-indicator-status-marker-status-active .sky-progress-indicator-status-marker-icon:before{content:\"\";display:var(--sky-override-progress-indicator-status-marker-before-display, none);width:5px;height:1px;background-color:#5a9936;position:absolute;left:-7px;top:5px}.sky-progress-indicator-status-marker.sky-progress-indicator-status-marker-mode-horizontal.sky-progress-indicator-status-marker-status-incomplete .sky-progress-indicator-status-marker-icon{position:relative}.sky-progress-indicator-status-marker.sky-progress-indicator-status-marker-mode-horizontal.sky-progress-indicator-status-marker-status-incomplete .sky-progress-indicator-status-marker-icon:before{content:\"\";display:var(--sky-override-progress-indicator-status-marker-before-display, none);width:5px;height:1px;background-color:#cdcfd2;position:absolute;left:-7px;top:5px}.sky-progress-indicator-status-marker-icon{border-radius:var(--sky-override-progress-indicator-status-marker-icon-border-radius, var(--sky-border-radius-round));border:var(--sky-override-progress-indicator-status-marker-icon-border-width, var(--sky-border-width-progress_step)) solid var(--sky-override-progress-indicator-status-marker-icon-border-color, var(--sky-color-border-progress_step));flex:0 0 var(--sky-override-progress-indicator-status-marker-icon-size, var(--sky-size-progress_step))}.sky-progress-indicator-status-marker-line{background-color:var(--sky-override-progress-indicator-status-marker-line-color, var(--sky-color-border-progress_step));flex:1 0 auto}.sky-progress-indicator-status-marker-status-active .sky-progress-indicator-status-marker-icon{background-color:var(--sky-override-progress-indicator-status-marker-icon-active-color, var(--sky-color-icon-success));border-color:var(--sky-override-progress-indicator-status-marker-status-active-icon-border-color, var(--sky-color-border-success))}.sky-progress-indicator-status-marker-status-pending .sky-progress-indicator-status-marker-icon{border-color:var(--sky-override-progress-indicator-status-marker-icon-pending-color, var(--sky-color-border-success))}.sky-progress-indicator-status-marker-status-complete .sky-progress-indicator-status-marker-icon{border-color:transparent;color:var(--sky-override-progress-indicator-status-marker-icon-success-color, var(--sky-color-icon-success));margin-top:0}.sky-progress-indicator-status-marker-status-complete .sky-progress-indicator-status-marker-line{background-color:var(--sky-override-progress-indicator-status-marker-line-complete-color, var(--sky-color-border-success));width:var(--sky-override-progress-indicator-status-marker-line-width, var(--sky-border-width-divider))}\n"], dependencies: [{ kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: i3.λ1, selector: "sky-icon", inputs: ["icon", "iconName", "iconType", "size", "fixedWidth", "variant", "iconSize"] }, { kind: "pipe", type: SkyProgressIndicatorMarkerClassPipe, name: "skyProgressIndicatorMarkerClass" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
145
145
|
}
|
|
146
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
146
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.5", ngImport: i0, type: SkyProgressIndicatorStatusMarkerComponent, decorators: [{
|
|
147
147
|
type: Component,
|
|
148
148
|
args: [{ selector: 'sky-progress-indicator-status-marker', changeDetection: ChangeDetectionStrategy.OnPush, standalone: false, template: "<div\n class=\"sky-progress-indicator-status-marker\"\n role=\"presentation\"\n [ngClass]=\"displayMode | skyProgressIndicatorMarkerClass: status\"\n>\n <div class=\"sky-progress-indicator-status-marker-icon\">\n @if (isComplete) {\n <sky-icon iconName=\"checkmark\" />\n }\n </div>\n <div class=\"sky-progress-indicator-status-marker-line\"></div>\n</div>\n", styles: [".sky-progress-indicator-status-marker:not(.sky-theme-modern *){--sky-override-progress-indicator-mode-vertical-width: auto;--sky-override-progress-indicator-status-marker-before-display: block;--sky-override-progress-indicator-status-marker-horizontal-icon-height: 15px;--sky-override-progress-indicator-status-marker-horizontal-padding-left: 5px;--sky-override-progress-indicator-status-marker-icon-active-color: #5a9936;--sky-override-progress-indicator-status-marker-icon-border-color: var( --sky-border-color-neutral-medium );--sky-override-progress-indicator-status-marker-icon-border-radius: 15px;--sky-override-progress-indicator-status-marker-icon-border-width: 2px;--sky-override-progress-indicator-status-marker-icon-margin-left: -1px;--sky-override-progress-indicator-status-marker-icon-margin-top: 1px;--sky-override-progress-indicator-status-marker-icon-pending-color: #5a9936;--sky-override-progress-indicator-status-marker-icon-size: 15px;--sky-override-progress-indicator-status-marker-icon-success-color: #5a9936;--sky-override-progress-indicator-status-marker-line-color: var( --sky-border-color-neutral-medium );--sky-override-progress-indicator-status-marker-line-complete-color: #5a9936;--sky-override-progress-indicator-status-marker-line-width: 1px;--sky-override-progress-indicator-status-marker-margin-right: 15px;--sky-override-progress-indicator-status-marker-status-active-icon-border-color: transparent}:host-context(.sky-theme-modern:not(.sky-theme-brand-base)) .sky-progress-indicator-status-marker{--sky-override-progress-indicator-mode-vertical-width: auto;--sky-override-progress-indicator-status-marker-before-display: block;--sky-override-progress-indicator-status-marker-horizontal-icon-top: 1px;--sky-override-progress-indicator-status-marker-horizontal-padding-left: 5px;--sky-override-progress-indicator-status-marker-icon-active-color: #5a9936;--sky-override-progress-indicator-status-marker-icon-border-color: var( --sky-border-color-neutral-medium-dark );--sky-override-progress-indicator-status-marker-icon-border-radius: 17px;--sky-override-progress-indicator-status-marker-icon-margin-left: -1px;--sky-override-progress-indicator-status-marker-icon-margin-top: 1px;--sky-override-progress-indicator-status-marker-icon-pending-color: #5a9936;--sky-override-progress-indicator-status-marker-icon-size: 17px;--sky-override-progress-indicator-status-marker-icon-success-color: #5a9936;--sky-override-progress-indicator-status-marker-line-color: var( --sky-border-color-neutral-medium-dark );--sky-override-progress-indicator-status-marker-line-complete-color: #5a9936;--sky-override-progress-indicator-status-marker-line-width: 1px;--sky-override-progress-indicator-status-marker-margin-right: 20px;--sky-override-progress-indicator-status-marker-mode-vertical-top: 3px;--sky-override-progress-indicator-status-marker-status-active-icon-border-color: transparent}.sky-progress-indicator-status-marker{display:flex;height:100%}.sky-progress-indicator-status-marker.sky-progress-indicator-status-marker-mode-vertical{flex-direction:column;margin-right:var(--sky-override-progress-indicator-status-marker-margin-right, var(--sky-space-gap-label-xl));position:relative;top:var(--sky-override-progress-indicator-status-marker-mode-vertical-top, 0);width:var(--sky-override-progress-indicator-mode-vertical-width, max(var(--sky-size-progress_step), var(--sky-size-icon-m)))}.sky-progress-indicator-status-marker.sky-progress-indicator-status-marker-mode-vertical .sky-progress-indicator-status-marker-icon{margin:var(--sky-override-progress-indicator-status-marker-icon-margin-top, 0) auto 0;width:var(--sky-override-progress-indicator-status-marker-icon-size, var(--sky-size-progress_step))}.sky-progress-indicator-status-marker.sky-progress-indicator-status-marker-mode-vertical .sky-progress-indicator-status-marker-icon>::ng-deep sky-icon{margin-left:var(--sky-override-progress-indicator-status-marker-icon-margin-left, 0)}.sky-progress-indicator-status-marker.sky-progress-indicator-status-marker-mode-vertical.sky-progress-indicator-status-marker-status-complete .sky-progress-indicator-status-marker-icon{width:var(--sky-override-progress-indicator-status-marker-icon-size, var(--sky-size-icon-m))}.sky-progress-indicator-status-marker.sky-progress-indicator-status-marker-mode-vertical .sky-progress-indicator-status-marker-line{margin:0 auto;width:var(--sky-override-progress-indicator-status-marker-line-width, var(--sky-border-width-progress_connector))}.sky-progress-indicator-status-marker.sky-progress-indicator-status-marker-mode-horizontal{flex-direction:row;width:100%;padding-left:var(--sky-override-progress-indicator-status-marker-horizontal-padding-left, 0)}.sky-progress-indicator-status-marker.sky-progress-indicator-status-marker-mode-horizontal .sky-progress-indicator-status-marker-icon{height:var(--sky-override-progress-indicator-status-marker-horizontal-icon-height, 17px);top:var(--sky-override-progress-indicator-status-marker-horizontal-icon-top, 0);width:var(--sky-override-progress-indicator-status-marker-horizontal-icon-height, 17px);flex-basis:var(--sky-override-progress-indicator-status-marker-horizontal-icon-height, 17px)}.sky-progress-indicator-status-marker.sky-progress-indicator-status-marker-mode-horizontal .sky-progress-indicator-status-marker-line{margin:auto 0;height:1px}.sky-progress-indicator-status-marker.sky-progress-indicator-status-marker-mode-horizontal.sky-progress-indicator-status-marker-status-complete .sky-progress-indicator-status-marker-icon{border:0;margin-right:5px}.sky-progress-indicator-status-marker.sky-progress-indicator-status-marker-mode-horizontal.sky-progress-indicator-status-marker-status-active .sky-progress-indicator-status-marker-icon{position:relative}.sky-progress-indicator-status-marker.sky-progress-indicator-status-marker-mode-horizontal.sky-progress-indicator-status-marker-status-active .sky-progress-indicator-status-marker-icon:before{content:\"\";display:var(--sky-override-progress-indicator-status-marker-before-display, none);width:5px;height:1px;background-color:#5a9936;position:absolute;left:-7px;top:5px}.sky-progress-indicator-status-marker.sky-progress-indicator-status-marker-mode-horizontal.sky-progress-indicator-status-marker-status-incomplete .sky-progress-indicator-status-marker-icon{position:relative}.sky-progress-indicator-status-marker.sky-progress-indicator-status-marker-mode-horizontal.sky-progress-indicator-status-marker-status-incomplete .sky-progress-indicator-status-marker-icon:before{content:\"\";display:var(--sky-override-progress-indicator-status-marker-before-display, none);width:5px;height:1px;background-color:#cdcfd2;position:absolute;left:-7px;top:5px}.sky-progress-indicator-status-marker-icon{border-radius:var(--sky-override-progress-indicator-status-marker-icon-border-radius, var(--sky-border-radius-round));border:var(--sky-override-progress-indicator-status-marker-icon-border-width, var(--sky-border-width-progress_step)) solid var(--sky-override-progress-indicator-status-marker-icon-border-color, var(--sky-color-border-progress_step));flex:0 0 var(--sky-override-progress-indicator-status-marker-icon-size, var(--sky-size-progress_step))}.sky-progress-indicator-status-marker-line{background-color:var(--sky-override-progress-indicator-status-marker-line-color, var(--sky-color-border-progress_step));flex:1 0 auto}.sky-progress-indicator-status-marker-status-active .sky-progress-indicator-status-marker-icon{background-color:var(--sky-override-progress-indicator-status-marker-icon-active-color, var(--sky-color-icon-success));border-color:var(--sky-override-progress-indicator-status-marker-status-active-icon-border-color, var(--sky-color-border-success))}.sky-progress-indicator-status-marker-status-pending .sky-progress-indicator-status-marker-icon{border-color:var(--sky-override-progress-indicator-status-marker-icon-pending-color, var(--sky-color-border-success))}.sky-progress-indicator-status-marker-status-complete .sky-progress-indicator-status-marker-icon{border-color:transparent;color:var(--sky-override-progress-indicator-status-marker-icon-success-color, var(--sky-color-icon-success));margin-top:0}.sky-progress-indicator-status-marker-status-complete .sky-progress-indicator-status-marker-line{background-color:var(--sky-override-progress-indicator-status-marker-line-complete-color, var(--sky-color-border-success));width:var(--sky-override-progress-indicator-status-marker-line-width, var(--sky-border-width-divider))}\n"] }]
|
|
149
149
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i1.SkyThemeService, decorators: [{
|
|
@@ -248,10 +248,10 @@ class SkyProgressIndicatorItemComponent {
|
|
|
248
248
|
this.formattedTitle = `${this.#titlePrefix}${this.title}`;
|
|
249
249
|
this.#changeDetector.markForCheck();
|
|
250
250
|
}
|
|
251
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
252
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "
|
|
251
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.5", ngImport: i0, type: SkyProgressIndicatorItemComponent, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
252
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.5", type: SkyProgressIndicatorItemComponent, isStandalone: false, selector: "sky-progress-indicator-item", inputs: { title: "title", helpKey: "helpKey", helpPopoverContent: "helpPopoverContent", helpPopoverTitle: "helpPopoverTitle" }, ngImport: i0, template: "@if (isVisible) {\n <div\n class=\"sky-progress-indicator-item\"\n [ngClass]=\"'sky-progress-indicator-item-status-' + statusName\"\n >\n @if (showStatusMarker) {\n <sky-progress-indicator-status-marker [status]=\"status\" />\n }\n\n <div class=\"sky-progress-indicator-item-content\">\n @if (showTitle) {\n <div class=\"sky-progress-indicator-item-heading-wrapper\" skyTrim>\n <span\n aria-level=\"2\"\n class=\"sky-progress-indicator-item-heading\"\n role=\"heading\"\n [ngClass]=\"{\n 'sky-font-deemphasized': statusName === 'pending'\n }\"\n [skyThemeClass]=\"{\n 'sky-font-display-3': 'modern'\n }\"\n >\n {{ formattedTitle }}\n @if (!helpKey && !helpPopoverContent) {\n <span class=\"sky-control-help-container\" skyTrim\n ><ng-content select=\".sky-control-help\"></ng-content\n ></span>\n }\n </span>\n @if (helpKey || helpPopoverContent) {\n <span class=\"sky-control-help-container\">\n <sky-help-inline\n [helpKey]=\"helpKey\"\n [labelText]=\"title\"\n [popoverTitle]=\"helpPopoverTitle\"\n [popoverContent]=\"helpPopoverContent\"\n />\n </span>\n }\n </div>\n }\n <div class=\"sky-progress-indicator-item-body\">\n @if (statusName !== 'incomplete') {\n <ng-content />\n }\n </div>\n </div>\n </div>\n}\n", styles: [".sky-progress-indicator-item:not(.sky-theme-modern *){--sky-override-progress-indicator-item-body-empty-padding: 10px 0 30px;--sky-override-progress-indicator-item-body-margin-bottom: 0;--sky-override-progress-indicator-item-body-min-height: 20px;--sky-override-progress-indicator-item-body-padding-bottom: 30px;--sky-override-progress-indicator-item-body-padding-top: 10px;--sky-override-progress-indicator-item-heading-wrapper-margin-top: 0;--sky-override-progress-indicator-item-margin: 0 0 -1px}:host-context(.sky-theme-modern:not(.sky-theme-brand-base)) .sky-progress-indicator-item{--sky-override-progress-indicator-item-body-margin-bottom: 0;--sky-override-progress-indicator-item-body-min-height: 20px;--sky-override-progress-indicator-item-body-padding-bottom: 30px;--sky-override-progress-indicator-item-body-padding-top: 20px;--sky-override-progress-indicator-item-heading-wrapper-margin-top: 0}.sky-progress-indicator-item{display:flex;margin:var(--sky-override-progress-indicator-item-margin, 0)}.sky-progress-indicator-item-content{flex:1 1 100%}.sky-progress-indicator-item-body{min-height:var(--sky-override-progress-indicator-item-body-min-height, 0);padding-top:var(--sky-override-progress-indicator-item-body-padding-top, var(--sky-space-stacked-l));padding-bottom:var(--sky-override-progress-indicator-item-body-padding-bottom, var(--sky-space-stacked-xl))}.sky-progress-indicator-item-body:empty{padding:var(--sky-override-progress-indicator-item-body-empty-padding, 0);margin-bottom:var(--sky-override-progress-indicator-item-body-margin-bottom, var(--sky-space-stacked-l))}.sky-progress-indicator-item-heading-wrapper{margin-top:var(--sky-override-progress-indicator-item-heading-wrapper-margin-top, calc((var(--sky-font-size-display-3) * var(--sky-font-line_height-display-3) - var(--sky-size-progress_step)) / 2 * -1))}.sky-progress-indicator-item-status-complete .sky-progress-indicator-item-heading-wrapper{margin-top:var(--sky-override-progress-indicator-item-heading-wrapper-margin-top, calc((var(--sky-font-size-display-3) * var(--sky-font-line_height-display-3) - var(--sky-size-icon-m)) / 2 * -1))}.sky-progress-indicator-item-status-incomplete .sky-progress-indicator-item-body{padding:0}\n"], dependencies: [{ kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: i2$1.λ1, selector: "sky-help-inline", inputs: ["ariaControls", "ariaExpanded", "ariaLabel", "helpKey", "labelledBy", "labelText", "popoverContent", "popoverTitle"], outputs: ["actionClick"] }, { kind: "directive", type: i1.λ2, selector: "[skyThemeClass]", inputs: ["class", "skyThemeClass"] }, { kind: "directive", type: i1$1.λ4, selector: "[skyTrim]" }, { kind: "component", type: SkyProgressIndicatorStatusMarkerComponent, selector: "sky-progress-indicator-status-marker", inputs: ["displayMode", "status"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
253
253
|
}
|
|
254
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
254
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.5", ngImport: i0, type: SkyProgressIndicatorItemComponent, decorators: [{
|
|
255
255
|
type: Component,
|
|
256
256
|
args: [{ selector: 'sky-progress-indicator-item', changeDetection: ChangeDetectionStrategy.OnPush, standalone: false, template: "@if (isVisible) {\n <div\n class=\"sky-progress-indicator-item\"\n [ngClass]=\"'sky-progress-indicator-item-status-' + statusName\"\n >\n @if (showStatusMarker) {\n <sky-progress-indicator-status-marker [status]=\"status\" />\n }\n\n <div class=\"sky-progress-indicator-item-content\">\n @if (showTitle) {\n <div class=\"sky-progress-indicator-item-heading-wrapper\" skyTrim>\n <span\n aria-level=\"2\"\n class=\"sky-progress-indicator-item-heading\"\n role=\"heading\"\n [ngClass]=\"{\n 'sky-font-deemphasized': statusName === 'pending'\n }\"\n [skyThemeClass]=\"{\n 'sky-font-display-3': 'modern'\n }\"\n >\n {{ formattedTitle }}\n @if (!helpKey && !helpPopoverContent) {\n <span class=\"sky-control-help-container\" skyTrim\n ><ng-content select=\".sky-control-help\"></ng-content\n ></span>\n }\n </span>\n @if (helpKey || helpPopoverContent) {\n <span class=\"sky-control-help-container\">\n <sky-help-inline\n [helpKey]=\"helpKey\"\n [labelText]=\"title\"\n [popoverTitle]=\"helpPopoverTitle\"\n [popoverContent]=\"helpPopoverContent\"\n />\n </span>\n }\n </div>\n }\n <div class=\"sky-progress-indicator-item-body\">\n @if (statusName !== 'incomplete') {\n <ng-content />\n }\n </div>\n </div>\n </div>\n}\n", styles: [".sky-progress-indicator-item:not(.sky-theme-modern *){--sky-override-progress-indicator-item-body-empty-padding: 10px 0 30px;--sky-override-progress-indicator-item-body-margin-bottom: 0;--sky-override-progress-indicator-item-body-min-height: 20px;--sky-override-progress-indicator-item-body-padding-bottom: 30px;--sky-override-progress-indicator-item-body-padding-top: 10px;--sky-override-progress-indicator-item-heading-wrapper-margin-top: 0;--sky-override-progress-indicator-item-margin: 0 0 -1px}:host-context(.sky-theme-modern:not(.sky-theme-brand-base)) .sky-progress-indicator-item{--sky-override-progress-indicator-item-body-margin-bottom: 0;--sky-override-progress-indicator-item-body-min-height: 20px;--sky-override-progress-indicator-item-body-padding-bottom: 30px;--sky-override-progress-indicator-item-body-padding-top: 20px;--sky-override-progress-indicator-item-heading-wrapper-margin-top: 0}.sky-progress-indicator-item{display:flex;margin:var(--sky-override-progress-indicator-item-margin, 0)}.sky-progress-indicator-item-content{flex:1 1 100%}.sky-progress-indicator-item-body{min-height:var(--sky-override-progress-indicator-item-body-min-height, 0);padding-top:var(--sky-override-progress-indicator-item-body-padding-top, var(--sky-space-stacked-l));padding-bottom:var(--sky-override-progress-indicator-item-body-padding-bottom, var(--sky-space-stacked-xl))}.sky-progress-indicator-item-body:empty{padding:var(--sky-override-progress-indicator-item-body-empty-padding, 0);margin-bottom:var(--sky-override-progress-indicator-item-body-margin-bottom, var(--sky-space-stacked-l))}.sky-progress-indicator-item-heading-wrapper{margin-top:var(--sky-override-progress-indicator-item-heading-wrapper-margin-top, calc((var(--sky-font-size-display-3) * var(--sky-font-line_height-display-3) - var(--sky-size-progress_step)) / 2 * -1))}.sky-progress-indicator-item-status-complete .sky-progress-indicator-item-heading-wrapper{margin-top:var(--sky-override-progress-indicator-item-heading-wrapper-margin-top, calc((var(--sky-font-size-display-3) * var(--sky-font-line_height-display-3) - var(--sky-size-icon-m)) / 2 * -1))}.sky-progress-indicator-item-status-incomplete .sky-progress-indicator-item-body{padding:0}\n"] }]
|
|
257
257
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }], propDecorators: { title: [{
|
|
@@ -280,10 +280,10 @@ class SkyProgressIndicatorNavButtonClass {
|
|
|
280
280
|
}
|
|
281
281
|
return classNames;
|
|
282
282
|
}
|
|
283
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
284
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
283
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.5", ngImport: i0, type: SkyProgressIndicatorNavButtonClass, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
284
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.0.5", ngImport: i0, type: SkyProgressIndicatorNavButtonClass, isStandalone: false, name: "skyProgressIndicatorNavButtonClass" }); }
|
|
285
285
|
}
|
|
286
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
286
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.5", ngImport: i0, type: SkyProgressIndicatorNavButtonClass, decorators: [{
|
|
287
287
|
type: Pipe,
|
|
288
288
|
args: [{
|
|
289
289
|
name: 'skyProgressIndicatorNavButtonClass',
|
|
@@ -298,10 +298,10 @@ class SkyProgressIndicatorNavButtonDisabledPipe {
|
|
|
298
298
|
(buttonType === 'previous' && activeIndex === 0) ||
|
|
299
299
|
disabled);
|
|
300
300
|
}
|
|
301
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
302
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
301
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.5", ngImport: i0, type: SkyProgressIndicatorNavButtonDisabledPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
302
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.0.5", ngImport: i0, type: SkyProgressIndicatorNavButtonDisabledPipe, isStandalone: false, name: "skyProgressIndicatorNavButtonDisabled" }); }
|
|
303
303
|
}
|
|
304
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
304
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.5", ngImport: i0, type: SkyProgressIndicatorNavButtonDisabledPipe, decorators: [{
|
|
305
305
|
type: Pipe,
|
|
306
306
|
args: [{
|
|
307
307
|
name: 'skyProgressIndicatorNavButtonDisabled',
|
|
@@ -665,10 +665,10 @@ class SkyProgressIndicatorComponent {
|
|
|
665
665
|
#getLastIndex() {
|
|
666
666
|
return (this.itemComponents?.length || 0) - 1;
|
|
667
667
|
}
|
|
668
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
669
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "
|
|
668
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.5", ngImport: i0, type: SkyProgressIndicatorComponent, deps: [{ token: i0.ChangeDetectorRef }, { token: i1$1.SkyAppWindowRef }, { token: i1$1.SkyLogService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
669
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.5", type: SkyProgressIndicatorComponent, isStandalone: false, selector: "sky-progress-indicator", inputs: { displayMode: "displayMode", isPassive: "isPassive", messageStream: "messageStream", startingIndex: "startingIndex" }, outputs: { progressChanges: "progressChanges" }, queries: [{ propertyName: "itemComponents", predicate: SkyProgressIndicatorItemComponent }], ngImport: i0, template: "<div class=\"sky-progress-indicator\" [ngClass]=\"cssClassNames\">\n @if (displayMode === 'horizontal') {\n <div class=\"sky-progress-indicator-horizontal-status-markers\">\n @for (status of itemStatuses; track status) {\n <sky-progress-indicator-status-marker\n [displayMode]=\"displayMode\"\n [status]=\"status\"\n />\n }\n </div>\n }\n <ng-content />\n</div>\n", styles: [".sky-progress-indicator:not(.sky-theme-modern *){--sky-override-progress-indicator-mode-horizontal-item-heading-font-size: 16px;--sky-override-progress-indicator-mode-horizontal-item-heading-font-weight: 600;--sky-override-progress-indicator-mode-vertical-margin-left: -30px;--sky-override-progress-indicator-nav-and-reset-margin: 0;--sky-override-progress-indicator-nav-and-reset-padding: 30px 0 0 15px;--sky-override-progress-indicator-nav-and-reset-text-align: start}:host-context(.sky-theme-modern:not(.sky-theme-brand-base)) .sky-progress-indicator{--sky-override-progress-indicator-nav-and-reset-margin: 60px 0 0;--sky-override-progress-indicator-mode-vertical-margin-left: -30px}.sky-progress-indicator ::ng-deep sky-progress-indicator-item:last-of-type .sky-progress-indicator-status-marker-line{display:none}.sky-progress-indicator-mode-vertical{max-width:400px;min-width:250px;margin:0 auto}.sky-progress-indicator-mode-vertical ::ng-deep .sky-progress-indicator-item-body{text-align:center;margin-left:var(--sky-override-progress-indicator-mode-vertical-margin-left, calc(-2*max(var(--sky-size-progress_step), var(--sky-size-icon-m))) )}.sky-progress-indicator-mode-vertical ::ng-deep sky-progress-indicator-nav-button,.sky-progress-indicator-mode-vertical ::ng-deep sky-progress-indicator-reset-button{display:block;padding:var(--sky-override-progress-indicator-nav-and-reset-padding, 0);text-align:var(--sky-override-progress-indicator-nav-and-reset-text-align, center);margin:var(--sky-override-progress-indicator-nav-and-reset-margin, var(--sky-space-stacked-xxl) 0 0)}::ng-deep .sky-popover ::ng-deep .sky-progress-indicator-mode-vertical{min-width:auto}.sky-progress-indicator-mode-horizontal ::ng-deep .sky-progress-indicator-item-heading{font-weight:var(--sky-override-progress-indicator-mode-horizontal-item-heading-font-weight, inherit);font-size:var(--sky-override-progress-indicator-mode-horizontal-item-heading-font-size, inherit)}.sky-progress-indicator-horizontal-status-markers{display:flex;margin-bottom:10px}.sky-progress-indicator-horizontal-status-markers ::ng-deep sky-progress-indicator-status-marker{flex-basis:45px;flex-grow:0}.sky-progress-indicator-horizontal-status-markers ::ng-deep sky-progress-indicator-status-marker:first-of-type{margin-left:-5px}.sky-progress-indicator-horizontal-status-markers ::ng-deep sky-progress-indicator-status-marker:first-of-type .sky-progress-indicator-status-marker .sky-progress-indicator-status-marker-icon:before{display:none!important}.sky-progress-indicator-horizontal-status-markers ::ng-deep sky-progress-indicator-status-marker:last-of-type .sky-progress-indicator-status-marker-line{display:none}\n"], dependencies: [{ kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: SkyProgressIndicatorStatusMarkerComponent, selector: "sky-progress-indicator-status-marker", inputs: ["displayMode", "status"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
670
670
|
}
|
|
671
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
671
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.5", ngImport: i0, type: SkyProgressIndicatorComponent, decorators: [{
|
|
672
672
|
type: Component,
|
|
673
673
|
args: [{ selector: 'sky-progress-indicator', changeDetection: ChangeDetectionStrategy.OnPush, standalone: false, template: "<div class=\"sky-progress-indicator\" [ngClass]=\"cssClassNames\">\n @if (displayMode === 'horizontal') {\n <div class=\"sky-progress-indicator-horizontal-status-markers\">\n @for (status of itemStatuses; track status) {\n <sky-progress-indicator-status-marker\n [displayMode]=\"displayMode\"\n [status]=\"status\"\n />\n }\n </div>\n }\n <ng-content />\n</div>\n", styles: [".sky-progress-indicator:not(.sky-theme-modern *){--sky-override-progress-indicator-mode-horizontal-item-heading-font-size: 16px;--sky-override-progress-indicator-mode-horizontal-item-heading-font-weight: 600;--sky-override-progress-indicator-mode-vertical-margin-left: -30px;--sky-override-progress-indicator-nav-and-reset-margin: 0;--sky-override-progress-indicator-nav-and-reset-padding: 30px 0 0 15px;--sky-override-progress-indicator-nav-and-reset-text-align: start}:host-context(.sky-theme-modern:not(.sky-theme-brand-base)) .sky-progress-indicator{--sky-override-progress-indicator-nav-and-reset-margin: 60px 0 0;--sky-override-progress-indicator-mode-vertical-margin-left: -30px}.sky-progress-indicator ::ng-deep sky-progress-indicator-item:last-of-type .sky-progress-indicator-status-marker-line{display:none}.sky-progress-indicator-mode-vertical{max-width:400px;min-width:250px;margin:0 auto}.sky-progress-indicator-mode-vertical ::ng-deep .sky-progress-indicator-item-body{text-align:center;margin-left:var(--sky-override-progress-indicator-mode-vertical-margin-left, calc(-2*max(var(--sky-size-progress_step), var(--sky-size-icon-m))) )}.sky-progress-indicator-mode-vertical ::ng-deep sky-progress-indicator-nav-button,.sky-progress-indicator-mode-vertical ::ng-deep sky-progress-indicator-reset-button{display:block;padding:var(--sky-override-progress-indicator-nav-and-reset-padding, 0);text-align:var(--sky-override-progress-indicator-nav-and-reset-text-align, center);margin:var(--sky-override-progress-indicator-nav-and-reset-margin, var(--sky-space-stacked-xxl) 0 0)}::ng-deep .sky-popover ::ng-deep .sky-progress-indicator-mode-vertical{min-width:auto}.sky-progress-indicator-mode-horizontal ::ng-deep .sky-progress-indicator-item-heading{font-weight:var(--sky-override-progress-indicator-mode-horizontal-item-heading-font-weight, inherit);font-size:var(--sky-override-progress-indicator-mode-horizontal-item-heading-font-size, inherit)}.sky-progress-indicator-horizontal-status-markers{display:flex;margin-bottom:10px}.sky-progress-indicator-horizontal-status-markers ::ng-deep sky-progress-indicator-status-marker{flex-basis:45px;flex-grow:0}.sky-progress-indicator-horizontal-status-markers ::ng-deep sky-progress-indicator-status-marker:first-of-type{margin-left:-5px}.sky-progress-indicator-horizontal-status-markers ::ng-deep sky-progress-indicator-status-marker:first-of-type .sky-progress-indicator-status-marker .sky-progress-indicator-status-marker-icon:before{display:none!important}.sky-progress-indicator-horizontal-status-markers ::ng-deep sky-progress-indicator-status-marker:last-of-type .sky-progress-indicator-status-marker-line{display:none}\n"] }]
|
|
674
674
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i1$1.SkyAppWindowRef }, { type: i1$1.SkyLogService }], propDecorators: { displayMode: [{
|
|
@@ -855,10 +855,10 @@ class SkyProgressIndicatorNavButtonComponent {
|
|
|
855
855
|
}
|
|
856
856
|
this.isVisible = true;
|
|
857
857
|
}
|
|
858
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
859
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "
|
|
858
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.5", ngImport: i0, type: SkyProgressIndicatorNavButtonComponent, deps: [{ token: i0.ChangeDetectorRef }, { token: SkyProgressIndicatorComponent, optional: true }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
859
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.0.5", type: SkyProgressIndicatorNavButtonComponent, isStandalone: false, selector: "sky-progress-indicator-nav-button", inputs: { buttonText: "buttonText", buttonType: "buttonType", disabled: "disabled", progressIndicator: "progressIndicator" }, outputs: { actionClick: "actionClick" }, ngImport: i0, template: "@if (isVisible) {\n <button\n class=\"sky-btn sky-margin-inline-sm\"\n type=\"button\"\n [disabled]=\"\n disabled\n | skyProgressIndicatorNavButtonDisabled\n : buttonType\n : lastProgressChange?.activeIndex\n : lastProgressChange?.itemStatuses\n \"\n [ngClass]=\"buttonType | skyProgressIndicatorNavButtonClass\"\n (click)=\"onClick($event)\"\n >\n {{\n buttonText ||\n ('skyux_progress_indicator_navigator_' + buttonType | skyLibResources)\n }}\n </button>\n}\n", dependencies: [{ kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "pipe", type: i3$1.SkyLibResourcesPipe, name: "skyLibResources" }, { kind: "pipe", type: SkyProgressIndicatorNavButtonClass, name: "skyProgressIndicatorNavButtonClass" }, { kind: "pipe", type: SkyProgressIndicatorNavButtonDisabledPipe, name: "skyProgressIndicatorNavButtonDisabled" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
860
860
|
}
|
|
861
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
861
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.5", ngImport: i0, type: SkyProgressIndicatorNavButtonComponent, decorators: [{
|
|
862
862
|
type: Component,
|
|
863
863
|
args: [{ selector: 'sky-progress-indicator-nav-button', changeDetection: ChangeDetectionStrategy.OnPush, standalone: false, template: "@if (isVisible) {\n <button\n class=\"sky-btn sky-margin-inline-sm\"\n type=\"button\"\n [disabled]=\"\n disabled\n | skyProgressIndicatorNavButtonDisabled\n : buttonType\n : lastProgressChange?.activeIndex\n : lastProgressChange?.itemStatuses\n \"\n [ngClass]=\"buttonType | skyProgressIndicatorNavButtonClass\"\n (click)=\"onClick($event)\"\n >\n {{\n buttonText ||\n ('skyux_progress_indicator_navigator_' + buttonType | skyLibResources)\n }}\n </button>\n}\n" }]
|
|
864
864
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: SkyProgressIndicatorComponent, decorators: [{
|
|
@@ -911,10 +911,10 @@ class SkyProgressIndicatorResetButtonComponent {
|
|
|
911
911
|
type: SkyProgressIndicatorMessageType.Reset,
|
|
912
912
|
});
|
|
913
913
|
}
|
|
914
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
915
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
914
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.5", ngImport: i0, type: SkyProgressIndicatorResetButtonComponent, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
915
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.5", type: SkyProgressIndicatorResetButtonComponent, isStandalone: false, selector: "sky-progress-indicator-reset-button", inputs: { disabled: "disabled", progressIndicator: "progressIndicator" }, outputs: { resetClick: "resetClick" }, ngImport: i0, template: "<button\n class=\"sky-btn sky-btn-link\"\n type=\"button\"\n [disabled]=\"disabled\"\n (click)=\"onClick()\"\n>\n <ng-content />\n</button>\n", changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
916
916
|
}
|
|
917
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
917
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.5", ngImport: i0, type: SkyProgressIndicatorResetButtonComponent, decorators: [{
|
|
918
918
|
type: Component,
|
|
919
919
|
args: [{ selector: 'sky-progress-indicator-reset-button', changeDetection: ChangeDetectionStrategy.OnPush, standalone: false, template: "<button\n class=\"sky-btn sky-btn-link\"\n type=\"button\"\n [disabled]=\"disabled\"\n (click)=\"onClick()\"\n>\n <ng-content />\n</button>\n" }]
|
|
920
920
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }], propDecorators: { disabled: [{
|
|
@@ -929,17 +929,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
|
|
|
929
929
|
* Specifies a header to display above the progress indicator.
|
|
930
930
|
*/
|
|
931
931
|
class SkyProgressIndicatorTitleComponent {
|
|
932
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
933
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
932
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.5", ngImport: i0, type: SkyProgressIndicatorTitleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
933
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.0.5", type: SkyProgressIndicatorTitleComponent, isStandalone: false, selector: "sky-progress-indicator-title", ngImport: i0, template: "<div\n aria-level=\"1\"\n class=\"sky-progress-indicator-title\"\n role=\"heading\"\n [skyThemeClass]=\"{\n 'sky-font-heading-2': 'default',\n 'sky-font-heading-1': 'modern'\n }\"\n>\n <ng-content />\n</div>\n", styles: [".sky-progress-indicator-title:not(.sky-theme-modern *){--sky-override-progress-indicator-title-line-height: 1.1;--sky-override-progress-indicator-title-margin-bottom: 30px}.sky-progress-indicator-title{line-height:var(--sky-override-progress-indicator-title-line-height);margin:0 0 var(--sky-override-progress-indicator-title-margin-bottom, var(--sky-space-stacked-xxl));text-align:center}\n"], dependencies: [{ kind: "directive", type: i1.λ2, selector: "[skyThemeClass]", inputs: ["class", "skyThemeClass"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
934
934
|
}
|
|
935
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
935
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.5", ngImport: i0, type: SkyProgressIndicatorTitleComponent, decorators: [{
|
|
936
936
|
type: Component,
|
|
937
937
|
args: [{ selector: 'sky-progress-indicator-title', changeDetection: ChangeDetectionStrategy.OnPush, standalone: false, template: "<div\n aria-level=\"1\"\n class=\"sky-progress-indicator-title\"\n role=\"heading\"\n [skyThemeClass]=\"{\n 'sky-font-heading-2': 'default',\n 'sky-font-heading-1': 'modern'\n }\"\n>\n <ng-content />\n</div>\n", styles: [".sky-progress-indicator-title:not(.sky-theme-modern *){--sky-override-progress-indicator-title-line-height: 1.1;--sky-override-progress-indicator-title-margin-bottom: 30px}.sky-progress-indicator-title{line-height:var(--sky-override-progress-indicator-title-line-height);margin:0 0 var(--sky-override-progress-indicator-title-margin-bottom, var(--sky-space-stacked-xxl));text-align:center}\n"] }]
|
|
938
938
|
}] });
|
|
939
939
|
|
|
940
940
|
class SkyProgressIndicatorModule {
|
|
941
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
942
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
941
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.5", ngImport: i0, type: SkyProgressIndicatorModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
942
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.0.5", ngImport: i0, type: SkyProgressIndicatorModule, declarations: [SkyProgressIndicatorComponent,
|
|
943
943
|
SkyProgressIndicatorItemComponent,
|
|
944
944
|
SkyProgressIndicatorMarkerClassPipe,
|
|
945
945
|
SkyProgressIndicatorNavButtonClass,
|
|
@@ -957,14 +957,14 @@ class SkyProgressIndicatorModule {
|
|
|
957
957
|
SkyProgressIndicatorNavButtonComponent,
|
|
958
958
|
SkyProgressIndicatorResetButtonComponent,
|
|
959
959
|
SkyProgressIndicatorTitleComponent] }); }
|
|
960
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
960
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.0.5", ngImport: i0, type: SkyProgressIndicatorModule, imports: [CommonModule,
|
|
961
961
|
SkyHelpInlineModule,
|
|
962
962
|
SkyIconModule,
|
|
963
963
|
SkyProgressIndicatorResourcesModule,
|
|
964
964
|
SkyThemeModule,
|
|
965
965
|
SkyTrimModule] }); }
|
|
966
966
|
}
|
|
967
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
967
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.5", ngImport: i0, type: SkyProgressIndicatorModule, decorators: [{
|
|
968
968
|
type: NgModule,
|
|
969
969
|
args: [{
|
|
970
970
|
declarations: [
|