@taiga-ui/cdk 3.36.0-dev.main-6ed3077 → 3.36.1
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/bundles/taiga-ui-cdk-constants.umd.js +1 -1
- package/bundles/taiga-ui-cdk-constants.umd.js.map +1 -1
- package/constants/version.d.ts +1 -1
- package/constants/version.js +1 -1
- package/esm2015/constants/version.js +2 -2
- package/fesm2015/taiga-ui-cdk-constants.js +1 -1
- package/fesm2015/taiga-ui-cdk-constants.js.map +1 -1
- package/package.json +1 -1
- package/schematics/ng-update/v3-35/constants/icons.js +41 -73
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"taiga-ui-cdk-constants.umd.js","sources":["../../../projects/cdk/constants/always-false-handler.ts","../../../projects/cdk/constants/always-true-handler.ts","../../../projects/cdk/constants/browser.ts","../../../projects/cdk/constants/empty.ts","../../../projects/cdk/constants/stringify.ts","../../../projects/cdk/constants/matcher.ts","../../../projects/cdk/constants/parent-animation.ts","../../../projects/cdk/constants/polling-time.ts","../../../projects/cdk/constants/svg-node-filter.ts","../../../projects/cdk/constants/unicode-chars.ts","../../../projects/cdk/constants/version.ts","../../../projects/cdk/constants/taiga-ui-cdk-constants.ts"],"sourcesContent":["/**\n * Handler that always returns `false`.\n */\n// eslint-disable-next-line no-restricted-syntax\nexport const ALWAYS_FALSE_HANDLER = (): false => false;\n","/**\n * Handler that always returns `true`.\n */\n// eslint-disable-next-line no-restricted-syntax\nexport const ALWAYS_TRUE_HANDLER = (): true => true;\n","/**\n * @deprecated\n * TODO: drop support of legacy Edge (EdgeHTML) in v4.x\n */\nexport const CHROMIUM_EDGE_START_VERSION = 79;\n","import {QueryList} from '@angular/core';\n\n/**\n * For type safety when using @ContentChildren and @ViewChildren\n *\n * NOTE: Be careful subscribing to 'changes'\n */\nexport const EMPTY_QUERY = new QueryList<any>();\nexport const EMPTY_ARRAY: [] = [];\nexport const EMPTY_FUNCTION: (...args: any[]) => void = () => {};\n\nconst rect = {\n bottom: 0,\n height: 0,\n left: 0,\n right: 0,\n top: 0,\n width: 0,\n x: 0,\n y: 0,\n} as const;\n\nexport const EMPTY_CLIENT_RECT: DOMRect = {\n ...rect,\n toJSON() {\n return rect;\n },\n};\n","import {TuiStringHandler} from '@taiga-ui/cdk/types';\n\n/**\n * Default method to turn arbitrary object into string\n */\nexport const TUI_DEFAULT_STRINGIFY: TuiStringHandler<unknown> = item => String(item);\n","import {TuiHandler, TuiIdentityMatcher} from '@taiga-ui/cdk/types';\n\nimport {TUI_DEFAULT_STRINGIFY} from './stringify';\n\n/**\n * Default handler for matching stringified version of an item and a search query\n * @param item arbitrary element to match with a string\n * @param search search query\n * @param stringify handler to turn item into a string\n */\nexport const TUI_DEFAULT_MATCHER = <T>(\n item: T,\n search: string,\n stringify: TuiHandler<T, string> = TUI_DEFAULT_STRINGIFY,\n): boolean => stringify(item).toLowerCase().includes(search.toLowerCase());\n\n/**\n * Default handler for strict matching stringified version of an item and a search query\n * @param item arbitrary element to match with a string\n * @param search search query\n * @param stringify handler to turn item into a string\n */\nexport const TUI_STRICT_MATCHER = <T>(\n item: T,\n search: string,\n stringify: TuiHandler<T, string> = TUI_DEFAULT_STRINGIFY,\n): boolean => stringify(item).toLowerCase() === search.toLowerCase();\n\n/**\n * Default handler to match equality of two elements\n * ATTENTION: considers two empty arrays equal\n *\n * @param item1 first element\n * @param item2 second element\n */\nexport const TUI_DEFAULT_IDENTITY_MATCHER: TuiIdentityMatcher<unknown> = (item1, item2) =>\n item1 === item2 || bothEmpty(item1, item2);\n\nfunction bothEmpty(item1: unknown, item2: unknown): boolean {\n return Array.isArray(item1) && Array.isArray(item2) && !item1.length && !item2.length;\n}\n","import {animateChild, query, style, transition, trigger} from '@angular/animations';\n\n/**\n * Add to enable child :leave animation (fixes https://github.com/angular/angular/issues/15753)\n */\nexport const TUI_PARENT_ANIMATION = trigger(`tuiParentAnimation`, [\n transition(`* => void`, [\n style({overflow: `hidden`}),\n query(`:scope > *`, [animateChild()], {optional: true}),\n ]),\n]);\n\n/**\n * Add on parent to stop initial :enter animation for children\n */\nexport const TUI_PARENT_STOP = trigger(`tuiParentStop`, [transition(`:enter`, [])]);\n","export const POLLING_TIME = 1000 / 15;\n","// Filtering SVGElements for TreeWalker\n// Filter must be a function in IE, other modern browsers are compliant to this format\nexport const svgNodeFilter: NodeFilter = ((node: Node) =>\n `ownerSVGElement` in node\n ? NodeFilter.FILTER_REJECT\n : NodeFilter.FILTER_ACCEPT) as any;\n","/**\n * {@link https://unicode-table.com/en/00A0/ Non-breaking space}.\n */\nexport const CHAR_NO_BREAK_SPACE = `\\u00A0`;\n\n/**\n * {@link https://unicode-table.com/en/2013/ EN dash}\n * is used to indicate a range of numbers or a span of time.\n * @example 2006–2022\n * ___\n * Don't confuse with {@link CHAR_EM_DASH} or {@link CHAR_HYPHEN}!\n */\nexport const CHAR_EN_DASH = `\\u2013`;\n\n/**\n * {@link https://unicode-table.com/en/2014/ EM dash}\n * is used to mark a break in a sentence.\n * @example Taiga UI — powerful set of open source components for Angular\n * ___\n * Don't confuse with {@link CHAR_EN_DASH} or {@link CHAR_HYPHEN}!\n */\nexport const CHAR_EM_DASH = `\\u2014`;\n\n/**\n * {@link https://unicode-table.com/en/00AB/ Left-Pointing Double Angle Quotation Mark}\n */\nexport const CHAR_LAQUO = `\\u00AB`;\n\n/**\n * {@link https://unicode-table.com/en/00BB/ Right-Pointing Double Angle Quotation Mark}\n */\nexport const CHAR_RAQUO = `\\u00BB`;\n\n/**\n * {@link https://unicode-table.com/en/002D/ Hyphen (minus sign)}\n * is used to combine words.\n * @example well-behaved\n * ___\n * Don't confuse with {@link CHAR_EN_DASH} or {@link CHAR_EM_DASH}!\n */\nexport const CHAR_HYPHEN = `\\u002D`;\n\n/**\n * {@link https://unicode-table.com/en/2212/ Minus}\n * is used as math operator symbol or before negative digits.\n * ---\n * Can be used as `−`. Don't confuse with {@link CHAR_HYPHEN}\n */\nexport const CHAR_MINUS = `\\u2212`;\n\n/**\n * {@link https://unicode-table.com/en/002B/ Plus}\n */\nexport const CHAR_PLUS = `\\u002B`;\n\n/**\n * {@link https://unicode-table.com/en/2022/ Bullet}.\n */\nexport const CHAR_BULLET = `\\u2022`;\n\n/**\n * {@link https://unicode-table.com/en/2026/ Suspension points}.\n */\nexport const CHAR_ELLIPSIS = `\\u2026`;\n\n/**\n * {@link https://unicode-table.com/en/00A4/ Suspension points}.\n */\nexport const CHAR_CURRENCY_SIGN = `\\u00A4`;\n\n/**\n * {@link https://unicode-table.com/en/200b/ Suspension points}.\n */\nexport const CHAR_ZERO_WIDTH_SPACE = `\\u200B`;\n","export const TUI_VERSION = `3.36.
|
1
|
+
{"version":3,"file":"taiga-ui-cdk-constants.umd.js","sources":["../../../projects/cdk/constants/always-false-handler.ts","../../../projects/cdk/constants/always-true-handler.ts","../../../projects/cdk/constants/browser.ts","../../../projects/cdk/constants/empty.ts","../../../projects/cdk/constants/stringify.ts","../../../projects/cdk/constants/matcher.ts","../../../projects/cdk/constants/parent-animation.ts","../../../projects/cdk/constants/polling-time.ts","../../../projects/cdk/constants/svg-node-filter.ts","../../../projects/cdk/constants/unicode-chars.ts","../../../projects/cdk/constants/version.ts","../../../projects/cdk/constants/taiga-ui-cdk-constants.ts"],"sourcesContent":["/**\n * Handler that always returns `false`.\n */\n// eslint-disable-next-line no-restricted-syntax\nexport const ALWAYS_FALSE_HANDLER = (): false => false;\n","/**\n * Handler that always returns `true`.\n */\n// eslint-disable-next-line no-restricted-syntax\nexport const ALWAYS_TRUE_HANDLER = (): true => true;\n","/**\n * @deprecated\n * TODO: drop support of legacy Edge (EdgeHTML) in v4.x\n */\nexport const CHROMIUM_EDGE_START_VERSION = 79;\n","import {QueryList} from '@angular/core';\n\n/**\n * For type safety when using @ContentChildren and @ViewChildren\n *\n * NOTE: Be careful subscribing to 'changes'\n */\nexport const EMPTY_QUERY = new QueryList<any>();\nexport const EMPTY_ARRAY: [] = [];\nexport const EMPTY_FUNCTION: (...args: any[]) => void = () => {};\n\nconst rect = {\n bottom: 0,\n height: 0,\n left: 0,\n right: 0,\n top: 0,\n width: 0,\n x: 0,\n y: 0,\n} as const;\n\nexport const EMPTY_CLIENT_RECT: DOMRect = {\n ...rect,\n toJSON() {\n return rect;\n },\n};\n","import {TuiStringHandler} from '@taiga-ui/cdk/types';\n\n/**\n * Default method to turn arbitrary object into string\n */\nexport const TUI_DEFAULT_STRINGIFY: TuiStringHandler<unknown> = item => String(item);\n","import {TuiHandler, TuiIdentityMatcher} from '@taiga-ui/cdk/types';\n\nimport {TUI_DEFAULT_STRINGIFY} from './stringify';\n\n/**\n * Default handler for matching stringified version of an item and a search query\n * @param item arbitrary element to match with a string\n * @param search search query\n * @param stringify handler to turn item into a string\n */\nexport const TUI_DEFAULT_MATCHER = <T>(\n item: T,\n search: string,\n stringify: TuiHandler<T, string> = TUI_DEFAULT_STRINGIFY,\n): boolean => stringify(item).toLowerCase().includes(search.toLowerCase());\n\n/**\n * Default handler for strict matching stringified version of an item and a search query\n * @param item arbitrary element to match with a string\n * @param search search query\n * @param stringify handler to turn item into a string\n */\nexport const TUI_STRICT_MATCHER = <T>(\n item: T,\n search: string,\n stringify: TuiHandler<T, string> = TUI_DEFAULT_STRINGIFY,\n): boolean => stringify(item).toLowerCase() === search.toLowerCase();\n\n/**\n * Default handler to match equality of two elements\n * ATTENTION: considers two empty arrays equal\n *\n * @param item1 first element\n * @param item2 second element\n */\nexport const TUI_DEFAULT_IDENTITY_MATCHER: TuiIdentityMatcher<unknown> = (item1, item2) =>\n item1 === item2 || bothEmpty(item1, item2);\n\nfunction bothEmpty(item1: unknown, item2: unknown): boolean {\n return Array.isArray(item1) && Array.isArray(item2) && !item1.length && !item2.length;\n}\n","import {animateChild, query, style, transition, trigger} from '@angular/animations';\n\n/**\n * Add to enable child :leave animation (fixes https://github.com/angular/angular/issues/15753)\n */\nexport const TUI_PARENT_ANIMATION = trigger(`tuiParentAnimation`, [\n transition(`* => void`, [\n style({overflow: `hidden`}),\n query(`:scope > *`, [animateChild()], {optional: true}),\n ]),\n]);\n\n/**\n * Add on parent to stop initial :enter animation for children\n */\nexport const TUI_PARENT_STOP = trigger(`tuiParentStop`, [transition(`:enter`, [])]);\n","export const POLLING_TIME = 1000 / 15;\n","// Filtering SVGElements for TreeWalker\n// Filter must be a function in IE, other modern browsers are compliant to this format\nexport const svgNodeFilter: NodeFilter = ((node: Node) =>\n `ownerSVGElement` in node\n ? NodeFilter.FILTER_REJECT\n : NodeFilter.FILTER_ACCEPT) as any;\n","/**\n * {@link https://unicode-table.com/en/00A0/ Non-breaking space}.\n */\nexport const CHAR_NO_BREAK_SPACE = `\\u00A0`;\n\n/**\n * {@link https://unicode-table.com/en/2013/ EN dash}\n * is used to indicate a range of numbers or a span of time.\n * @example 2006–2022\n * ___\n * Don't confuse with {@link CHAR_EM_DASH} or {@link CHAR_HYPHEN}!\n */\nexport const CHAR_EN_DASH = `\\u2013`;\n\n/**\n * {@link https://unicode-table.com/en/2014/ EM dash}\n * is used to mark a break in a sentence.\n * @example Taiga UI — powerful set of open source components for Angular\n * ___\n * Don't confuse with {@link CHAR_EN_DASH} or {@link CHAR_HYPHEN}!\n */\nexport const CHAR_EM_DASH = `\\u2014`;\n\n/**\n * {@link https://unicode-table.com/en/00AB/ Left-Pointing Double Angle Quotation Mark}\n */\nexport const CHAR_LAQUO = `\\u00AB`;\n\n/**\n * {@link https://unicode-table.com/en/00BB/ Right-Pointing Double Angle Quotation Mark}\n */\nexport const CHAR_RAQUO = `\\u00BB`;\n\n/**\n * {@link https://unicode-table.com/en/002D/ Hyphen (minus sign)}\n * is used to combine words.\n * @example well-behaved\n * ___\n * Don't confuse with {@link CHAR_EN_DASH} or {@link CHAR_EM_DASH}!\n */\nexport const CHAR_HYPHEN = `\\u002D`;\n\n/**\n * {@link https://unicode-table.com/en/2212/ Minus}\n * is used as math operator symbol or before negative digits.\n * ---\n * Can be used as `−`. Don't confuse with {@link CHAR_HYPHEN}\n */\nexport const CHAR_MINUS = `\\u2212`;\n\n/**\n * {@link https://unicode-table.com/en/002B/ Plus}\n */\nexport const CHAR_PLUS = `\\u002B`;\n\n/**\n * {@link https://unicode-table.com/en/2022/ Bullet}.\n */\nexport const CHAR_BULLET = `\\u2022`;\n\n/**\n * {@link https://unicode-table.com/en/2026/ Suspension points}.\n */\nexport const CHAR_ELLIPSIS = `\\u2026`;\n\n/**\n * {@link https://unicode-table.com/en/00A4/ Suspension points}.\n */\nexport const CHAR_CURRENCY_SIGN = `\\u00A4`;\n\n/**\n * {@link https://unicode-table.com/en/200b/ Suspension points}.\n */\nexport const CHAR_ZERO_WIDTH_SPACE = `\\u200B`;\n","export const TUI_VERSION = `3.36.1`;\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["QueryList","trigger","transition","style","query","animateChild"],"mappings":"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"}
|
package/constants/version.d.ts
CHANGED
@@ -1 +1 @@
|
|
1
|
-
export declare const TUI_VERSION = "3.36.
|
1
|
+
export declare const TUI_VERSION = "3.36.1";
|
package/constants/version.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
export const TUI_VERSION = `3.36.
|
2
|
-
//# sourceMappingURL=data:application/json;base64,
|
1
|
+
export const TUI_VERSION = `3.36.1`;
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidmVyc2lvbi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3Byb2plY3RzL2Nkay9jb25zdGFudHMvdmVyc2lvbi50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxNQUFNLENBQUMsTUFBTSxXQUFXLEdBQUcsUUFBUSxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGNvbnN0IFRVSV9WRVJTSU9OID0gYDMuMzYuMWA7XG4iXX0=
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"taiga-ui-cdk-constants.js","sources":["../../../projects/cdk/constants/always-false-handler.ts","../../../projects/cdk/constants/always-true-handler.ts","../../../projects/cdk/constants/browser.ts","../../../projects/cdk/constants/empty.ts","../../../projects/cdk/constants/stringify.ts","../../../projects/cdk/constants/matcher.ts","../../../projects/cdk/constants/parent-animation.ts","../../../projects/cdk/constants/polling-time.ts","../../../projects/cdk/constants/svg-node-filter.ts","../../../projects/cdk/constants/unicode-chars.ts","../../../projects/cdk/constants/version.ts","../../../projects/cdk/constants/taiga-ui-cdk-constants.ts"],"sourcesContent":["/**\n * Handler that always returns `false`.\n */\n// eslint-disable-next-line no-restricted-syntax\nexport const ALWAYS_FALSE_HANDLER = (): false => false;\n","/**\n * Handler that always returns `true`.\n */\n// eslint-disable-next-line no-restricted-syntax\nexport const ALWAYS_TRUE_HANDLER = (): true => true;\n","/**\n * @deprecated\n * TODO: drop support of legacy Edge (EdgeHTML) in v4.x\n */\nexport const CHROMIUM_EDGE_START_VERSION = 79;\n","import {QueryList} from '@angular/core';\n\n/**\n * For type safety when using @ContentChildren and @ViewChildren\n *\n * NOTE: Be careful subscribing to 'changes'\n */\nexport const EMPTY_QUERY = new QueryList<any>();\nexport const EMPTY_ARRAY: [] = [];\nexport const EMPTY_FUNCTION: (...args: any[]) => void = () => {};\n\nconst rect = {\n bottom: 0,\n height: 0,\n left: 0,\n right: 0,\n top: 0,\n width: 0,\n x: 0,\n y: 0,\n} as const;\n\nexport const EMPTY_CLIENT_RECT: DOMRect = {\n ...rect,\n toJSON() {\n return rect;\n },\n};\n","import {TuiStringHandler} from '@taiga-ui/cdk/types';\n\n/**\n * Default method to turn arbitrary object into string\n */\nexport const TUI_DEFAULT_STRINGIFY: TuiStringHandler<unknown> = item => String(item);\n","import {TuiHandler, TuiIdentityMatcher} from '@taiga-ui/cdk/types';\n\nimport {TUI_DEFAULT_STRINGIFY} from './stringify';\n\n/**\n * Default handler for matching stringified version of an item and a search query\n * @param item arbitrary element to match with a string\n * @param search search query\n * @param stringify handler to turn item into a string\n */\nexport const TUI_DEFAULT_MATCHER = <T>(\n item: T,\n search: string,\n stringify: TuiHandler<T, string> = TUI_DEFAULT_STRINGIFY,\n): boolean => stringify(item).toLowerCase().includes(search.toLowerCase());\n\n/**\n * Default handler for strict matching stringified version of an item and a search query\n * @param item arbitrary element to match with a string\n * @param search search query\n * @param stringify handler to turn item into a string\n */\nexport const TUI_STRICT_MATCHER = <T>(\n item: T,\n search: string,\n stringify: TuiHandler<T, string> = TUI_DEFAULT_STRINGIFY,\n): boolean => stringify(item).toLowerCase() === search.toLowerCase();\n\n/**\n * Default handler to match equality of two elements\n * ATTENTION: considers two empty arrays equal\n *\n * @param item1 first element\n * @param item2 second element\n */\nexport const TUI_DEFAULT_IDENTITY_MATCHER: TuiIdentityMatcher<unknown> = (item1, item2) =>\n item1 === item2 || bothEmpty(item1, item2);\n\nfunction bothEmpty(item1: unknown, item2: unknown): boolean {\n return Array.isArray(item1) && Array.isArray(item2) && !item1.length && !item2.length;\n}\n","import {animateChild, query, style, transition, trigger} from '@angular/animations';\n\n/**\n * Add to enable child :leave animation (fixes https://github.com/angular/angular/issues/15753)\n */\nexport const TUI_PARENT_ANIMATION = trigger(`tuiParentAnimation`, [\n transition(`* => void`, [\n style({overflow: `hidden`}),\n query(`:scope > *`, [animateChild()], {optional: true}),\n ]),\n]);\n\n/**\n * Add on parent to stop initial :enter animation for children\n */\nexport const TUI_PARENT_STOP = trigger(`tuiParentStop`, [transition(`:enter`, [])]);\n","export const POLLING_TIME = 1000 / 15;\n","// Filtering SVGElements for TreeWalker\n// Filter must be a function in IE, other modern browsers are compliant to this format\nexport const svgNodeFilter: NodeFilter = ((node: Node) =>\n `ownerSVGElement` in node\n ? NodeFilter.FILTER_REJECT\n : NodeFilter.FILTER_ACCEPT) as any;\n","/**\n * {@link https://unicode-table.com/en/00A0/ Non-breaking space}.\n */\nexport const CHAR_NO_BREAK_SPACE = `\\u00A0`;\n\n/**\n * {@link https://unicode-table.com/en/2013/ EN dash}\n * is used to indicate a range of numbers or a span of time.\n * @example 2006–2022\n * ___\n * Don't confuse with {@link CHAR_EM_DASH} or {@link CHAR_HYPHEN}!\n */\nexport const CHAR_EN_DASH = `\\u2013`;\n\n/**\n * {@link https://unicode-table.com/en/2014/ EM dash}\n * is used to mark a break in a sentence.\n * @example Taiga UI — powerful set of open source components for Angular\n * ___\n * Don't confuse with {@link CHAR_EN_DASH} or {@link CHAR_HYPHEN}!\n */\nexport const CHAR_EM_DASH = `\\u2014`;\n\n/**\n * {@link https://unicode-table.com/en/00AB/ Left-Pointing Double Angle Quotation Mark}\n */\nexport const CHAR_LAQUO = `\\u00AB`;\n\n/**\n * {@link https://unicode-table.com/en/00BB/ Right-Pointing Double Angle Quotation Mark}\n */\nexport const CHAR_RAQUO = `\\u00BB`;\n\n/**\n * {@link https://unicode-table.com/en/002D/ Hyphen (minus sign)}\n * is used to combine words.\n * @example well-behaved\n * ___\n * Don't confuse with {@link CHAR_EN_DASH} or {@link CHAR_EM_DASH}!\n */\nexport const CHAR_HYPHEN = `\\u002D`;\n\n/**\n * {@link https://unicode-table.com/en/2212/ Minus}\n * is used as math operator symbol or before negative digits.\n * ---\n * Can be used as `−`. Don't confuse with {@link CHAR_HYPHEN}\n */\nexport const CHAR_MINUS = `\\u2212`;\n\n/**\n * {@link https://unicode-table.com/en/002B/ Plus}\n */\nexport const CHAR_PLUS = `\\u002B`;\n\n/**\n * {@link https://unicode-table.com/en/2022/ Bullet}.\n */\nexport const CHAR_BULLET = `\\u2022`;\n\n/**\n * {@link https://unicode-table.com/en/2026/ Suspension points}.\n */\nexport const CHAR_ELLIPSIS = `\\u2026`;\n\n/**\n * {@link https://unicode-table.com/en/00A4/ Suspension points}.\n */\nexport const CHAR_CURRENCY_SIGN = `\\u00A4`;\n\n/**\n * {@link https://unicode-table.com/en/200b/ Suspension points}.\n */\nexport const CHAR_ZERO_WIDTH_SPACE = `\\u200B`;\n","export const TUI_VERSION = `3.36.
|
1
|
+
{"version":3,"file":"taiga-ui-cdk-constants.js","sources":["../../../projects/cdk/constants/always-false-handler.ts","../../../projects/cdk/constants/always-true-handler.ts","../../../projects/cdk/constants/browser.ts","../../../projects/cdk/constants/empty.ts","../../../projects/cdk/constants/stringify.ts","../../../projects/cdk/constants/matcher.ts","../../../projects/cdk/constants/parent-animation.ts","../../../projects/cdk/constants/polling-time.ts","../../../projects/cdk/constants/svg-node-filter.ts","../../../projects/cdk/constants/unicode-chars.ts","../../../projects/cdk/constants/version.ts","../../../projects/cdk/constants/taiga-ui-cdk-constants.ts"],"sourcesContent":["/**\n * Handler that always returns `false`.\n */\n// eslint-disable-next-line no-restricted-syntax\nexport const ALWAYS_FALSE_HANDLER = (): false => false;\n","/**\n * Handler that always returns `true`.\n */\n// eslint-disable-next-line no-restricted-syntax\nexport const ALWAYS_TRUE_HANDLER = (): true => true;\n","/**\n * @deprecated\n * TODO: drop support of legacy Edge (EdgeHTML) in v4.x\n */\nexport const CHROMIUM_EDGE_START_VERSION = 79;\n","import {QueryList} from '@angular/core';\n\n/**\n * For type safety when using @ContentChildren and @ViewChildren\n *\n * NOTE: Be careful subscribing to 'changes'\n */\nexport const EMPTY_QUERY = new QueryList<any>();\nexport const EMPTY_ARRAY: [] = [];\nexport const EMPTY_FUNCTION: (...args: any[]) => void = () => {};\n\nconst rect = {\n bottom: 0,\n height: 0,\n left: 0,\n right: 0,\n top: 0,\n width: 0,\n x: 0,\n y: 0,\n} as const;\n\nexport const EMPTY_CLIENT_RECT: DOMRect = {\n ...rect,\n toJSON() {\n return rect;\n },\n};\n","import {TuiStringHandler} from '@taiga-ui/cdk/types';\n\n/**\n * Default method to turn arbitrary object into string\n */\nexport const TUI_DEFAULT_STRINGIFY: TuiStringHandler<unknown> = item => String(item);\n","import {TuiHandler, TuiIdentityMatcher} from '@taiga-ui/cdk/types';\n\nimport {TUI_DEFAULT_STRINGIFY} from './stringify';\n\n/**\n * Default handler for matching stringified version of an item and a search query\n * @param item arbitrary element to match with a string\n * @param search search query\n * @param stringify handler to turn item into a string\n */\nexport const TUI_DEFAULT_MATCHER = <T>(\n item: T,\n search: string,\n stringify: TuiHandler<T, string> = TUI_DEFAULT_STRINGIFY,\n): boolean => stringify(item).toLowerCase().includes(search.toLowerCase());\n\n/**\n * Default handler for strict matching stringified version of an item and a search query\n * @param item arbitrary element to match with a string\n * @param search search query\n * @param stringify handler to turn item into a string\n */\nexport const TUI_STRICT_MATCHER = <T>(\n item: T,\n search: string,\n stringify: TuiHandler<T, string> = TUI_DEFAULT_STRINGIFY,\n): boolean => stringify(item).toLowerCase() === search.toLowerCase();\n\n/**\n * Default handler to match equality of two elements\n * ATTENTION: considers two empty arrays equal\n *\n * @param item1 first element\n * @param item2 second element\n */\nexport const TUI_DEFAULT_IDENTITY_MATCHER: TuiIdentityMatcher<unknown> = (item1, item2) =>\n item1 === item2 || bothEmpty(item1, item2);\n\nfunction bothEmpty(item1: unknown, item2: unknown): boolean {\n return Array.isArray(item1) && Array.isArray(item2) && !item1.length && !item2.length;\n}\n","import {animateChild, query, style, transition, trigger} from '@angular/animations';\n\n/**\n * Add to enable child :leave animation (fixes https://github.com/angular/angular/issues/15753)\n */\nexport const TUI_PARENT_ANIMATION = trigger(`tuiParentAnimation`, [\n transition(`* => void`, [\n style({overflow: `hidden`}),\n query(`:scope > *`, [animateChild()], {optional: true}),\n ]),\n]);\n\n/**\n * Add on parent to stop initial :enter animation for children\n */\nexport const TUI_PARENT_STOP = trigger(`tuiParentStop`, [transition(`:enter`, [])]);\n","export const POLLING_TIME = 1000 / 15;\n","// Filtering SVGElements for TreeWalker\n// Filter must be a function in IE, other modern browsers are compliant to this format\nexport const svgNodeFilter: NodeFilter = ((node: Node) =>\n `ownerSVGElement` in node\n ? NodeFilter.FILTER_REJECT\n : NodeFilter.FILTER_ACCEPT) as any;\n","/**\n * {@link https://unicode-table.com/en/00A0/ Non-breaking space}.\n */\nexport const CHAR_NO_BREAK_SPACE = `\\u00A0`;\n\n/**\n * {@link https://unicode-table.com/en/2013/ EN dash}\n * is used to indicate a range of numbers or a span of time.\n * @example 2006–2022\n * ___\n * Don't confuse with {@link CHAR_EM_DASH} or {@link CHAR_HYPHEN}!\n */\nexport const CHAR_EN_DASH = `\\u2013`;\n\n/**\n * {@link https://unicode-table.com/en/2014/ EM dash}\n * is used to mark a break in a sentence.\n * @example Taiga UI — powerful set of open source components for Angular\n * ___\n * Don't confuse with {@link CHAR_EN_DASH} or {@link CHAR_HYPHEN}!\n */\nexport const CHAR_EM_DASH = `\\u2014`;\n\n/**\n * {@link https://unicode-table.com/en/00AB/ Left-Pointing Double Angle Quotation Mark}\n */\nexport const CHAR_LAQUO = `\\u00AB`;\n\n/**\n * {@link https://unicode-table.com/en/00BB/ Right-Pointing Double Angle Quotation Mark}\n */\nexport const CHAR_RAQUO = `\\u00BB`;\n\n/**\n * {@link https://unicode-table.com/en/002D/ Hyphen (minus sign)}\n * is used to combine words.\n * @example well-behaved\n * ___\n * Don't confuse with {@link CHAR_EN_DASH} or {@link CHAR_EM_DASH}!\n */\nexport const CHAR_HYPHEN = `\\u002D`;\n\n/**\n * {@link https://unicode-table.com/en/2212/ Minus}\n * is used as math operator symbol or before negative digits.\n * ---\n * Can be used as `−`. Don't confuse with {@link CHAR_HYPHEN}\n */\nexport const CHAR_MINUS = `\\u2212`;\n\n/**\n * {@link https://unicode-table.com/en/002B/ Plus}\n */\nexport const CHAR_PLUS = `\\u002B`;\n\n/**\n * {@link https://unicode-table.com/en/2022/ Bullet}.\n */\nexport const CHAR_BULLET = `\\u2022`;\n\n/**\n * {@link https://unicode-table.com/en/2026/ Suspension points}.\n */\nexport const CHAR_ELLIPSIS = `\\u2026`;\n\n/**\n * {@link https://unicode-table.com/en/00A4/ Suspension points}.\n */\nexport const CHAR_CURRENCY_SIGN = `\\u00A4`;\n\n/**\n * {@link https://unicode-table.com/en/200b/ Suspension points}.\n */\nexport const CHAR_ZERO_WIDTH_SPACE = `\\u200B`;\n","export const TUI_VERSION = `3.36.1`;\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
@@ -11,7 +11,7 @@ exports.ICONS = [
|
|
11
11
|
from: `tuiIconAddRowLarge`,
|
12
12
|
},
|
13
13
|
{
|
14
|
-
to: `
|
14
|
+
to: `tuiIconTdsExclamationSmallPragmatic`,
|
15
15
|
from: `tuiIconAlert`,
|
16
16
|
},
|
17
17
|
{
|
@@ -19,7 +19,7 @@ exports.ICONS = [
|
|
19
19
|
from: `tuiIconAlertCircle`,
|
20
20
|
},
|
21
21
|
{
|
22
|
-
to: `
|
22
|
+
to: `tuiIconTdsAlertMedium`,
|
23
23
|
from: `tuiIconAlertCircleLarge`,
|
24
24
|
},
|
25
25
|
{
|
@@ -31,7 +31,7 @@ exports.ICONS = [
|
|
31
31
|
from: `tuiIconAlertCircleOutline`,
|
32
32
|
},
|
33
33
|
{
|
34
|
-
to: `
|
34
|
+
to: `tuiIconTdsExclamationMediumPragmatic`,
|
35
35
|
from: `tuiIconAlertLarge`,
|
36
36
|
},
|
37
37
|
{
|
@@ -75,7 +75,7 @@ exports.ICONS = [
|
|
75
75
|
from: `tuiIconArrowLeft`,
|
76
76
|
},
|
77
77
|
{
|
78
|
-
to: `
|
78
|
+
to: `tuiIconTdsArrowLeftCircleMediumPragmatic`,
|
79
79
|
from: `tuiIconArrowLeftCircle`,
|
80
80
|
},
|
81
81
|
{
|
@@ -175,7 +175,7 @@ exports.ICONS = [
|
|
175
175
|
from: `tuiIconBellOutline`,
|
176
176
|
},
|
177
177
|
{
|
178
|
-
to: `
|
178
|
+
to: `tuiIconTdsReceiptMediumPragmatic`,
|
179
179
|
from: `tuiIconBillOutLarge`,
|
180
180
|
},
|
181
181
|
{
|
@@ -183,7 +183,7 @@ exports.ICONS = [
|
|
183
183
|
from: `tuiIconBookmark`,
|
184
184
|
},
|
185
185
|
{
|
186
|
-
to: `
|
186
|
+
to: `tuiIconTdsBookmarkFilledMedium`,
|
187
187
|
from: `tuiIconBookmarkLarge`,
|
188
188
|
},
|
189
189
|
{
|
@@ -303,7 +303,7 @@ exports.ICONS = [
|
|
303
303
|
from: `tuiIconCameraOutline`,
|
304
304
|
},
|
305
305
|
{
|
306
|
-
to: `
|
306
|
+
to: `tuiIconTdsCardsMediumPragmatic`,
|
307
307
|
from: `tuiIconCardsLarge`,
|
308
308
|
},
|
309
309
|
{
|
@@ -371,11 +371,11 @@ exports.ICONS = [
|
|
371
371
|
from: `tuiIconChatLarge`,
|
372
372
|
},
|
373
373
|
{
|
374
|
-
to: `
|
374
|
+
to: `tuiIconTdsChatsMediumPragmatic`,
|
375
375
|
from: `tuiIconChatLargeOutline`,
|
376
376
|
},
|
377
377
|
{
|
378
|
-
to: `
|
378
|
+
to: `tuiIconTdsChatsSmallPragmatic`,
|
379
379
|
from: `tuiIconChatOutline`,
|
380
380
|
},
|
381
381
|
{
|
@@ -387,7 +387,7 @@ exports.ICONS = [
|
|
387
387
|
from: `tuiIconCheckCircle`,
|
388
388
|
},
|
389
389
|
{
|
390
|
-
to: `
|
390
|
+
to: `tuiIconTdsCheckCircleMedium`,
|
391
391
|
from: `tuiIconCheckCircleLarge`,
|
392
392
|
},
|
393
393
|
{
|
@@ -451,11 +451,11 @@ exports.ICONS = [
|
|
451
451
|
from: `tuiIconChevronUpLarge`,
|
452
452
|
},
|
453
453
|
{
|
454
|
-
to: `
|
454
|
+
to: `tuiIconTdsChevronDoubleDownMediumPragmatic`,
|
455
455
|
from: `tuiIconChevronsDownLarge`,
|
456
456
|
},
|
457
457
|
{
|
458
|
-
to: `
|
458
|
+
to: `tuiIconTdsChevronDoubleLeftMediumPragmatic`,
|
459
459
|
from: `tuiIconChevronsLeftLarge`,
|
460
460
|
},
|
461
461
|
{
|
@@ -463,7 +463,7 @@ exports.ICONS = [
|
|
463
463
|
from: `tuiIconChevronsRightLarge`,
|
464
464
|
},
|
465
465
|
{
|
466
|
-
to: `
|
466
|
+
to: `tuiIconTdsChevronDoubleUpSmallPragmatic`,
|
467
467
|
from: `tuiIconChevronsUp`,
|
468
468
|
},
|
469
469
|
{
|
@@ -587,7 +587,7 @@ exports.ICONS = [
|
|
587
587
|
from: `tuiIconDelete`,
|
588
588
|
},
|
589
589
|
{
|
590
|
-
to: `
|
590
|
+
to: `tuiIconTdsBackspaceMediumPragmatic`,
|
591
591
|
from: `tuiIconDeleteLarge`,
|
592
592
|
},
|
593
593
|
{
|
@@ -639,7 +639,7 @@ exports.ICONS = [
|
|
639
639
|
from: `tuiIconEdit2`,
|
640
640
|
},
|
641
641
|
{
|
642
|
-
to: `
|
642
|
+
to: `tuiIconTdsPencilMediumPragmatic`,
|
643
643
|
from: `tuiIconEdit2Large`,
|
644
644
|
},
|
645
645
|
{
|
@@ -867,11 +867,11 @@ exports.ICONS = [
|
|
867
867
|
from: `tuiIconHeadsetLarge`,
|
868
868
|
},
|
869
869
|
{
|
870
|
-
to: `
|
870
|
+
to: `tuiIconTdsHeartFilledSmall`,
|
871
871
|
from: `tuiIconHeart`,
|
872
872
|
},
|
873
873
|
{
|
874
|
-
to: `
|
874
|
+
to: `tuiIconTdsHeartFilledOpaqueMedium`,
|
875
875
|
from: `tuiIconHeartLarge`,
|
876
876
|
},
|
877
877
|
{
|
@@ -883,11 +883,11 @@ exports.ICONS = [
|
|
883
883
|
from: `tuiIconHeartOutline`,
|
884
884
|
},
|
885
885
|
{
|
886
|
-
to: `
|
886
|
+
to: `tuiIconTdsQuestionCircleSmall`,
|
887
887
|
from: `tuiIconHelp`,
|
888
888
|
},
|
889
889
|
{
|
890
|
-
to: `
|
890
|
+
to: `tuiIconTdsQuestionCircleSmall`,
|
891
891
|
from: `tuiIconHelpCircle`,
|
892
892
|
},
|
893
893
|
{
|
@@ -903,7 +903,7 @@ exports.ICONS = [
|
|
903
903
|
from: `tuiIconHelpCircleOutline`,
|
904
904
|
},
|
905
905
|
{
|
906
|
-
to: `
|
906
|
+
to: `tuiIconTdsQuestionCircleSmallPragmatic`,
|
907
907
|
from: `tuiIconHelpOutline`,
|
908
908
|
},
|
909
909
|
{
|
@@ -931,23 +931,19 @@ exports.ICONS = [
|
|
931
931
|
from: `tuiIconHomeOutline`,
|
932
932
|
},
|
933
933
|
{
|
934
|
-
to: `
|
934
|
+
to: `tuiIconTdsWysiwygDividerMediumPragmatic`,
|
935
935
|
from: `tuiIconHrLarge`,
|
936
936
|
},
|
937
937
|
{
|
938
938
|
to: `tuiIconTdsImageSmallPragmatic`,
|
939
939
|
from: `tuiIconImage`,
|
940
940
|
},
|
941
|
-
{
|
942
|
-
to: `\u0426\u0412\u0415\u0422\u041D\u0410\u042F`,
|
943
|
-
from: `tuiIconImageDocLarge`,
|
944
|
-
},
|
945
941
|
{
|
946
942
|
to: `tuiIconTdsImageMediumPragmatic`,
|
947
943
|
from: `tuiIconImageLarge`,
|
948
944
|
},
|
949
945
|
{
|
950
|
-
to: `
|
946
|
+
to: `tuiIconTdsImageSmallPragmatic`,
|
951
947
|
from: `tuiIconImageOutline`,
|
952
948
|
},
|
953
949
|
{
|
@@ -955,11 +951,11 @@ exports.ICONS = [
|
|
955
951
|
from: `tuiIconIndentLarge`,
|
956
952
|
},
|
957
953
|
{
|
958
|
-
to: `
|
954
|
+
to: `tuiIconTdsInfoCircleMedium`,
|
959
955
|
from: `tuiIconInfo`,
|
960
956
|
},
|
961
957
|
{
|
962
|
-
to: `
|
958
|
+
to: `tuiIconTdsInfoCircleMedium`,
|
963
959
|
from: `tuiIconInfoCircleLarge`,
|
964
960
|
},
|
965
961
|
{
|
@@ -971,15 +967,15 @@ exports.ICONS = [
|
|
971
967
|
from: `tuiIconInfoLarge`,
|
972
968
|
},
|
973
969
|
{
|
974
|
-
to: `
|
970
|
+
to: `tuiIconTdsInfoCircleMediumPragmatic`,
|
975
971
|
from: `tuiIconInfoLargeOutline`,
|
976
972
|
},
|
977
973
|
{
|
978
|
-
to: `
|
974
|
+
to: `tuiIconTdsInfoCircleSmallPragmatic`,
|
979
975
|
from: `tuiIconInfoOutline`,
|
980
976
|
},
|
981
977
|
{
|
982
|
-
to: `
|
978
|
+
to: `tuiIconTdsDocMediumPragmatic`,
|
983
979
|
from: `tuiIconInvoiceLarge`,
|
984
980
|
},
|
985
981
|
{
|
@@ -1290,10 +1286,6 @@ exports.ICONS = [
|
|
1290
1286
|
to: `tuiIconTdsMusicSmallPragmatic`,
|
1291
1287
|
from: `tuiIconMusic`,
|
1292
1288
|
},
|
1293
|
-
{
|
1294
|
-
to: `\u0426\u0412\u0415\u0422\u041D\u0410\u042F`,
|
1295
|
-
from: `tuiIconMusicDocLarge`,
|
1296
|
-
},
|
1297
1289
|
{
|
1298
1290
|
to: `tuiIconTdsMusicMediumPragmatic`,
|
1299
1291
|
from: `tuiIconMusicLarge`,
|
@@ -1386,10 +1378,6 @@ exports.ICONS = [
|
|
1386
1378
|
to: `tuiIconTdsPauseMediumPragmatic`,
|
1387
1379
|
from: `tuiIconPauseLarge`,
|
1388
1380
|
},
|
1389
|
-
{
|
1390
|
-
to: `\u0426\u0412\u0415\u0422\u041D\u0410\u042F`,
|
1391
|
-
from: `tuiIconPdfDocLarge`,
|
1392
|
-
},
|
1393
1381
|
{
|
1394
1382
|
to: `tuiIconTdsPercentSmallPragmatic`,
|
1395
1383
|
from: `tuiIconPercent`,
|
@@ -1427,7 +1415,7 @@ exports.ICONS = [
|
|
1427
1415
|
from: `tuiIconPhoneOutgoingLarge`,
|
1428
1416
|
},
|
1429
1417
|
{
|
1430
|
-
to:
|
1418
|
+
to: `tuiIconTdsImageSmallPragmatic`,
|
1431
1419
|
from: `tuiIconPictureOutline`,
|
1432
1420
|
},
|
1433
1421
|
{
|
@@ -1475,7 +1463,7 @@ exports.ICONS = [
|
|
1475
1463
|
from: `tuiIconPlusCircleLarge`,
|
1476
1464
|
},
|
1477
1465
|
{
|
1478
|
-
to: `
|
1466
|
+
to: `tuiIconTdsPlusCircleMediumPragmatic`,
|
1479
1467
|
from: `tuiIconPlusCircleLargeOutline`,
|
1480
1468
|
},
|
1481
1469
|
{
|
@@ -1490,10 +1478,6 @@ exports.ICONS = [
|
|
1490
1478
|
to: `tuiIconTdsPlus2SmallPragmatic`,
|
1491
1479
|
from: `tuiIconPlusSmall`,
|
1492
1480
|
},
|
1493
|
-
{
|
1494
|
-
to: `\u0426\u0412\u0415\u0422\u041D\u0410\u042F`,
|
1495
|
-
from: `tuiIconPresentDocLarge`,
|
1496
|
-
},
|
1497
1481
|
{
|
1498
1482
|
to: `tuiIconTdsPrinterSmallPragmatic`,
|
1499
1483
|
from: `tuiIconPrinter`,
|
@@ -1742,10 +1726,6 @@ exports.ICONS = [
|
|
1742
1726
|
to: `tuiIconTdsArrowsSplitMediumPragmatic`,
|
1743
1727
|
from: `tuiIconSplitLarge`,
|
1744
1728
|
},
|
1745
|
-
{
|
1746
|
-
to: `\u0426\u0412\u0415\u0422\u041D\u0410\u042F`,
|
1747
|
-
from: `tuiIconSpreadSheetDocLarge`,
|
1748
|
-
},
|
1749
1729
|
{
|
1750
1730
|
to: `tuiIconTdsStopSmallPragmatic`,
|
1751
1731
|
from: `tuiIconSquare`,
|
@@ -1755,11 +1735,11 @@ exports.ICONS = [
|
|
1755
1735
|
from: `tuiIconSquareLarge`,
|
1756
1736
|
},
|
1757
1737
|
{
|
1758
|
-
to: `
|
1738
|
+
to: `tuiIconTdsStarSmall`,
|
1759
1739
|
from: `tuiIconStar`,
|
1760
1740
|
},
|
1761
1741
|
{
|
1762
|
-
to: `
|
1742
|
+
to: `tuiIconTdsStarSmall`,
|
1763
1743
|
from: `tuiIconStarFilled`,
|
1764
1744
|
},
|
1765
1745
|
{
|
@@ -1822,10 +1802,6 @@ exports.ICONS = [
|
|
1822
1802
|
to: `tuiIconTdsTagSmallPragmatic`,
|
1823
1803
|
from: `tuiIconTagOutline`,
|
1824
1804
|
},
|
1825
|
-
{
|
1826
|
-
to: `\u0426\u0412\u0415\u0422\u041D\u0410\u042F`,
|
1827
|
-
from: `tuiIconTextDocLarge`,
|
1828
|
-
},
|
1829
1805
|
{
|
1830
1806
|
to: `tuiIconTdsThumbDownMediumPragmatic`,
|
1831
1807
|
from: `tuiIconThumbsDownLarge`,
|
@@ -1903,7 +1879,7 @@ exports.ICONS = [
|
|
1903
1879
|
from: `tuiIconUnlockLarge`,
|
1904
1880
|
},
|
1905
1881
|
{
|
1906
|
-
to: `
|
1882
|
+
to: `tuiIconTdsLockOpenMediumPragmatic`,
|
1907
1883
|
from: `tuiIconUnlockLargeOutline`,
|
1908
1884
|
},
|
1909
1885
|
{
|
@@ -1923,11 +1899,11 @@ exports.ICONS = [
|
|
1923
1899
|
from: `tuiIconUploadLarge`,
|
1924
1900
|
},
|
1925
1901
|
{
|
1926
|
-
to: `
|
1902
|
+
to: `tuiIconTdsUserImpersonalSmallPragmatic`,
|
1927
1903
|
from: `tuiIconUser`,
|
1928
1904
|
},
|
1929
1905
|
{
|
1930
|
-
to: `
|
1906
|
+
to: `tuiIconTdsUserImpersonalSmallPragmatic`,
|
1931
1907
|
from: `tuiIconUserOutline`,
|
1932
1908
|
},
|
1933
1909
|
{
|
@@ -2151,21 +2127,17 @@ exports.ICONS = [
|
|
2151
2127
|
from: `tuiIconCreditCard`,
|
2152
2128
|
},
|
2153
2129
|
{
|
2154
|
-
to: `
|
2130
|
+
to: `tuiIconTdsCardsMediumPragmatic`,
|
2155
2131
|
from: `tuiIconCreditCardLarge`,
|
2156
2132
|
},
|
2157
2133
|
{
|
2158
|
-
to: `
|
2134
|
+
to: `tuiIconTdsCardsMediumPragmatic`,
|
2159
2135
|
from: `tuiIconCreditCardLargeOutline`,
|
2160
2136
|
},
|
2161
2137
|
{
|
2162
2138
|
to: `tuiIconTdsCardBacksideSmallPragmatic`,
|
2163
2139
|
from: `tuiIconCreditCardOutline`,
|
2164
2140
|
},
|
2165
|
-
{
|
2166
|
-
to: `tuiIconTdsChevronDownMediumPragmatic`,
|
2167
|
-
from: `tuiIconDropLarge`,
|
2168
|
-
},
|
2169
2141
|
{
|
2170
2142
|
to: `tuiIconTdsLogoFacebookMedium`,
|
2171
2143
|
from: `tuiIconFacebookLarge`,
|
@@ -2195,7 +2167,7 @@ exports.ICONS = [
|
|
2195
2167
|
from: `tuiIconMapLarge`,
|
2196
2168
|
},
|
2197
2169
|
{
|
2198
|
-
to: `
|
2170
|
+
to: `tuiIconTdsPaymentMastercardLogo`,
|
2199
2171
|
from: `tuiIconMastercard`,
|
2200
2172
|
},
|
2201
2173
|
{
|
@@ -2203,11 +2175,11 @@ exports.ICONS = [
|
|
2203
2175
|
from: `tuiIconMastercardMono`,
|
2204
2176
|
},
|
2205
2177
|
{
|
2206
|
-
to: `
|
2178
|
+
to: `tuiIconTdsPaymentMirLogo`,
|
2207
2179
|
from: `tuiIconMir`,
|
2208
2180
|
},
|
2209
2181
|
{
|
2210
|
-
to: `
|
2182
|
+
to: `tuiIconTdsPaymentMirMonochromeLogo`,
|
2211
2183
|
from: `tuiIconMirMono`,
|
2212
2184
|
},
|
2213
2185
|
{
|
@@ -2311,7 +2283,7 @@ exports.ICONS = [
|
|
2311
2283
|
from: `tuiIconTwitterLarge`,
|
2312
2284
|
},
|
2313
2285
|
{
|
2314
|
-
to: `
|
2286
|
+
to: `tuiIconTdsPaymentUnionpayLogo`,
|
2315
2287
|
from: `tuiIconUnionPay`,
|
2316
2288
|
},
|
2317
2289
|
{
|
@@ -2323,7 +2295,7 @@ exports.ICONS = [
|
|
2323
2295
|
from: `tuiIconUsersOutline`,
|
2324
2296
|
},
|
2325
2297
|
{
|
2326
|
-
to: `
|
2298
|
+
to: `tuiIconTdsPaymentVisaLogo`,
|
2327
2299
|
from: `tuiIconVisa`,
|
2328
2300
|
},
|
2329
2301
|
{
|
@@ -2350,8 +2322,4 @@ exports.ICONS = [
|
|
2350
2322
|
to: `tuiIconTdsAnchorMediumPragmatic`,
|
2351
2323
|
from: `tuiIconAnchorLarge`,
|
2352
2324
|
},
|
2353
|
-
{
|
2354
|
-
to: `tuiIconTdsDocArchiveMedium`,
|
2355
|
-
from: `tuiIconArchiveDocLarge`,
|
2356
|
-
},
|
2357
2325
|
].sort((prev, next) => next.from.length - prev.from.length);
|