@taiga-ui/cdk 3.36.2 → 3.37.0-dev.main.1570962
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 +172 -0
@@ -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.
|
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.37.0`;\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.
|
1
|
+
export declare const TUI_VERSION = "3.37.0";
|
package/constants/version.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
export const TUI_VERSION = `3.
|
2
|
-
//# sourceMappingURL=data:application/json;base64,
|
1
|
+
export const TUI_VERSION = `3.37.0`;
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidmVyc2lvbi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3Byb2plY3RzL2Nkay9jb25zdGFudHMvdmVyc2lvbi50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxNQUFNLENBQUMsTUFBTSxXQUFXLEdBQUcsUUFBUSxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGNvbnN0IFRVSV9WRVJTSU9OID0gYDMuMzcuMGA7XG4iXX0=
|
@@ -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.
|
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.37.0`;\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
@@ -14,6 +14,10 @@ exports.ICONS = [
|
|
14
14
|
to: `tuiIconTdsExclamationSmallPragmatic`,
|
15
15
|
from: `tuiIconAlert`,
|
16
16
|
},
|
17
|
+
{
|
18
|
+
to: `tuiIconTdsAlertSmallPragmatic`,
|
19
|
+
from: `tuiIconAttention`,
|
20
|
+
},
|
17
21
|
{
|
18
22
|
to: `tuiIconTdsAlertSmallPragmatic`,
|
19
23
|
from: `tuiIconAlertCircle`,
|
@@ -74,6 +78,10 @@ exports.ICONS = [
|
|
74
78
|
to: `tuiIconTdsArrowLeftSmallPragmatic`,
|
75
79
|
from: `tuiIconArrowLeft`,
|
76
80
|
},
|
81
|
+
{
|
82
|
+
to: `tuiIconTdsArrowLeftCircleMediumPragmatic`,
|
83
|
+
from: `tuiIconBackCircle`,
|
84
|
+
},
|
77
85
|
{
|
78
86
|
to: `tuiIconTdsArrowLeftCircleMediumPragmatic`,
|
79
87
|
from: `tuiIconArrowLeftCircle`,
|
@@ -126,6 +134,14 @@ exports.ICONS = [
|
|
126
134
|
to: `tuiIconTdsBackspaceSmallPragmatic`,
|
127
135
|
from: `tuiIconBackspace`,
|
128
136
|
},
|
137
|
+
{
|
138
|
+
to: `tuiIconTdsChartBarSmallPragmatic`,
|
139
|
+
from: `tuiIconChart`,
|
140
|
+
},
|
141
|
+
{
|
142
|
+
to: `tuiIconTdsChartBarSmallPragmatic`,
|
143
|
+
from: `tuiIconChartBar`,
|
144
|
+
},
|
129
145
|
{
|
130
146
|
to: `tuiIconTdsChartBarSmallPragmatic`,
|
131
147
|
from: `tuiIconBarChart`,
|
@@ -382,6 +398,10 @@ exports.ICONS = [
|
|
382
398
|
to: `tuiIconTdsCheckSmallPragmatic`,
|
383
399
|
from: `tuiIconCheck`,
|
384
400
|
},
|
401
|
+
{
|
402
|
+
to: `tuiIconTdsCheckCircleSmallPragmatic`,
|
403
|
+
from: `tuiIconDone`,
|
404
|
+
},
|
385
405
|
{
|
386
406
|
to: `tuiIconTdsCheckCircleSmallPragmatic`,
|
387
407
|
from: `tuiIconCheckCircle`,
|
@@ -470,6 +490,10 @@ exports.ICONS = [
|
|
470
490
|
to: `tuiIconTdsWysiwygFontStyleClearMediumPragmatic`,
|
471
491
|
from: `tuiIconClearFormatLarge`,
|
472
492
|
},
|
493
|
+
{
|
494
|
+
to: `tuiIconTdsClockCircleSmallPragmatic`,
|
495
|
+
from: `tuiIconTime`,
|
496
|
+
},
|
473
497
|
{
|
474
498
|
to: `tuiIconTdsClockCircleSmallPragmatic`,
|
475
499
|
from: `tuiIconClock`,
|
@@ -674,6 +698,10 @@ exports.ICONS = [
|
|
674
698
|
to: `tuiIconTdsWysiwygListBulletedMediumPragmatic`,
|
675
699
|
from: `tuiIconEventsLargeOutline`,
|
676
700
|
},
|
701
|
+
{
|
702
|
+
to: `tuiIconTdsArrowOutTopRightSmallPragmatic`,
|
703
|
+
from: `tuiIconExternal`,
|
704
|
+
},
|
677
705
|
{
|
678
706
|
to: `tuiIconTdsArrowOutTopRightSmallPragmatic`,
|
679
707
|
from: `tuiIconExternalLink`,
|
@@ -682,6 +710,14 @@ exports.ICONS = [
|
|
682
710
|
to: `tuiIconTdsArrowOutTopRightMediumPragmatic`,
|
683
711
|
from: `tuiIconExternalLinkLarge`,
|
684
712
|
},
|
713
|
+
{
|
714
|
+
to: `tuiIconTdsEyeSmallPragmatic`,
|
715
|
+
from: `tuiIconEyeOpen`,
|
716
|
+
},
|
717
|
+
{
|
718
|
+
to: `tuiIconTdsEyeSmallPragmatic`,
|
719
|
+
from: `tuiIconShow`,
|
720
|
+
},
|
685
721
|
{
|
686
722
|
to: `tuiIconTdsEyeSmallPragmatic`,
|
687
723
|
from: `tuiIconEye`,
|
@@ -690,6 +726,14 @@ exports.ICONS = [
|
|
690
726
|
to: `tuiIconTdsEyeMediumPragmatic`,
|
691
727
|
from: `tuiIconEyeLarge`,
|
692
728
|
},
|
729
|
+
{
|
730
|
+
to: `tuiIconTdsEyeOffSmallPragmatic`,
|
731
|
+
from: `tuiIconEyeClosed`,
|
732
|
+
},
|
733
|
+
{
|
734
|
+
to: `tuiIconTdsEyeOffSmallPragmatic`,
|
735
|
+
from: `tuiIconHide`,
|
736
|
+
},
|
693
737
|
{
|
694
738
|
to: `tuiIconTdsEyeOffSmallPragmatic`,
|
695
739
|
from: `tuiIconEyeOff`,
|
@@ -706,6 +750,10 @@ exports.ICONS = [
|
|
706
750
|
to: `tuiIconTdsStarMediumPragmatic`,
|
707
751
|
from: `tuiIconFavoriteLarge`,
|
708
752
|
},
|
753
|
+
{
|
754
|
+
to: `tuiIconTdsDocSmallPragmatic`,
|
755
|
+
from: `tuiIconDefaultDoc`,
|
756
|
+
},
|
709
757
|
{
|
710
758
|
to: `tuiIconTdsDocSmallPragmatic`,
|
711
759
|
from: `tuiIconFile`,
|
@@ -866,6 +914,10 @@ exports.ICONS = [
|
|
866
914
|
to: `tuiIconTdsHeadsetMediumPragmatic`,
|
867
915
|
from: `tuiIconHeadsetLarge`,
|
868
916
|
},
|
917
|
+
{
|
918
|
+
to: `tuiIconTdsHeartFilledSmall`,
|
919
|
+
from: `tuiIconHeartFilled`,
|
920
|
+
},
|
869
921
|
{
|
870
922
|
to: `tuiIconTdsHeartFilledSmall`,
|
871
923
|
from: `tuiIconHeart`,
|
@@ -886,6 +938,10 @@ exports.ICONS = [
|
|
886
938
|
to: `tuiIconTdsQuestionCircleSmall`,
|
887
939
|
from: `tuiIconHelp`,
|
888
940
|
},
|
941
|
+
{
|
942
|
+
to: `tuiIconTdsQuestionCircleSmall`,
|
943
|
+
from: `tuiIconTooltip`,
|
944
|
+
},
|
889
945
|
{
|
890
946
|
to: `tuiIconTdsQuestionCircleSmall`,
|
891
947
|
from: `tuiIconHelpCircle`,
|
@@ -934,6 +990,14 @@ exports.ICONS = [
|
|
934
990
|
to: `tuiIconTdsWysiwygDividerMediumPragmatic`,
|
935
991
|
from: `tuiIconHrLarge`,
|
936
992
|
},
|
993
|
+
{
|
994
|
+
to: `tuiIconTdsImageSmallPragmatic`,
|
995
|
+
from: `tuiIconImg`,
|
996
|
+
},
|
997
|
+
{
|
998
|
+
to: `tuiIconTdsImageSmallPragmatic`,
|
999
|
+
from: `tuiIconPicture`,
|
1000
|
+
},
|
937
1001
|
{
|
938
1002
|
to: `tuiIconTdsImageSmallPragmatic`,
|
939
1003
|
from: `tuiIconImage`,
|
@@ -950,6 +1014,10 @@ exports.ICONS = [
|
|
950
1014
|
to: `tuiIconTdsWysiwygTextShiftRightMediumPragmatic`,
|
951
1015
|
from: `tuiIconIndentLarge`,
|
952
1016
|
},
|
1017
|
+
{
|
1018
|
+
to: `tuiIconTdsInfoCircleMedium`,
|
1019
|
+
from: `tuiIconInfoCircle`,
|
1020
|
+
},
|
953
1021
|
{
|
954
1022
|
to: `tuiIconTdsInfoCircleMedium`,
|
955
1023
|
from: `tuiIconInfo`,
|
@@ -986,6 +1054,10 @@ exports.ICONS = [
|
|
986
1054
|
to: `tuiIconTdsThumbUpMediumPragmatic`,
|
987
1055
|
from: `tuiIconLarge`,
|
988
1056
|
},
|
1057
|
+
{
|
1058
|
+
to: `tuiIconTdsFrameSmallPragmatic`,
|
1059
|
+
from: `tuiIconFrame`,
|
1060
|
+
},
|
989
1061
|
{
|
990
1062
|
to: `tuiIconTdsFrameSmallPragmatic`,
|
991
1063
|
from: `tuiIconLayout`,
|
@@ -1026,6 +1098,10 @@ exports.ICONS = [
|
|
1026
1098
|
to: `tuiIconTdsLinkMediumPragmatic`,
|
1027
1099
|
from: `tuiIconLinkLarge`,
|
1028
1100
|
},
|
1101
|
+
{
|
1102
|
+
to: `tuiIconTdsListPreviewSmallPragmatic`,
|
1103
|
+
from: `tuiIconViewList`,
|
1104
|
+
},
|
1029
1105
|
{
|
1030
1106
|
to: `tuiIconTdsListPreviewSmallPragmatic`,
|
1031
1107
|
from: `tuiIconList`,
|
@@ -1094,6 +1170,10 @@ exports.ICONS = [
|
|
1094
1170
|
to: `tuiIconTdsLetterSmallPragmatic`,
|
1095
1171
|
from: `tuiIconMailOutline`,
|
1096
1172
|
},
|
1173
|
+
{
|
1174
|
+
to: `tuiIconTdsPinGeoSmallPragmatic`,
|
1175
|
+
from: `tuiIconGeo`,
|
1176
|
+
},
|
1097
1177
|
{
|
1098
1178
|
to: `tuiIconTdsPinGeoSmallPragmatic`,
|
1099
1179
|
from: `tuiIconMapPin`,
|
@@ -1110,6 +1190,10 @@ exports.ICONS = [
|
|
1110
1190
|
to: `tuiIconTdsPinGeoSmallPragmatic`,
|
1111
1191
|
from: `tuiIconMapPinOutline`,
|
1112
1192
|
},
|
1193
|
+
{
|
1194
|
+
to: `tuiIconTdsArrowsExpandSmallPragmatic`,
|
1195
|
+
from: `tuiIconExpand`,
|
1196
|
+
},
|
1113
1197
|
{
|
1114
1198
|
to: `tuiIconTdsArrowsExpandSmallPragmatic`,
|
1115
1199
|
from: `tuiIconMaximize`,
|
@@ -1118,6 +1202,10 @@ exports.ICONS = [
|
|
1118
1202
|
to: `tuiIconTdsWysiwygAlignJustifyMediumPragmatic`,
|
1119
1203
|
from: `tuiIconMenuLarge`,
|
1120
1204
|
},
|
1205
|
+
{
|
1206
|
+
to: `tuiIconTdsChatArrowRightSmallPragmatic`,
|
1207
|
+
from: `tuiIconCommentFw`,
|
1208
|
+
},
|
1121
1209
|
{
|
1122
1210
|
to: `tuiIconTdsChatArrowRightSmallPragmatic`,
|
1123
1211
|
from: `tuiIconMessageForward`,
|
@@ -1134,6 +1222,10 @@ exports.ICONS = [
|
|
1134
1222
|
to: `tuiIconTdsChatArrowRightSmallPragmatic`,
|
1135
1223
|
from: `tuiIconMessageForwardOutline`,
|
1136
1224
|
},
|
1225
|
+
{
|
1226
|
+
to: `tuiIconTdsChatSmallPragmatic`,
|
1227
|
+
from: `tuiIconComment`,
|
1228
|
+
},
|
1137
1229
|
{
|
1138
1230
|
to: `tuiIconTdsChatSmallPragmatic`,
|
1139
1231
|
from: `tuiIconMessageSquare`,
|
@@ -1178,6 +1270,10 @@ exports.ICONS = [
|
|
1178
1270
|
to: `tuiIconTdsMicrophoneOffSmallPragmatic`,
|
1179
1271
|
from: `tuiIconMicOffOutline`,
|
1180
1272
|
},
|
1273
|
+
{
|
1274
|
+
to: `tuiIconTdsArrowsCollapseSmallPragmatic`,
|
1275
|
+
from: `tuiIconCollapse`,
|
1276
|
+
},
|
1181
1277
|
{
|
1182
1278
|
to: `tuiIconTdsArrowsCollapseSmallPragmatic`,
|
1183
1279
|
from: `tuiIconMinimize`,
|
@@ -1258,6 +1354,10 @@ exports.ICONS = [
|
|
1258
1354
|
to: `tuiIconTdsMoreSmallPragmatic`,
|
1259
1355
|
from: `tuiIconMoreHorizontal`,
|
1260
1356
|
},
|
1357
|
+
{
|
1358
|
+
to: `tuiIconTdsMoreMediumPragmatic`,
|
1359
|
+
from: `tuiIconMoreHorLarge`,
|
1360
|
+
},
|
1261
1361
|
{
|
1262
1362
|
to: `tuiIconTdsMoreMediumPragmatic`,
|
1263
1363
|
from: `tuiIconMoreHorizontalLarge`,
|
@@ -1274,6 +1374,14 @@ exports.ICONS = [
|
|
1274
1374
|
to: `tuiIconTdsMathMoreOrEqualMediumPragmatic`,
|
1275
1375
|
from: `tuiIconMoreOrEqualLarge`,
|
1276
1376
|
},
|
1377
|
+
{
|
1378
|
+
to: `tuiIconTdsMoreVerticalSmallPragmatic`,
|
1379
|
+
from: `tuiIconMoreVert`,
|
1380
|
+
},
|
1381
|
+
{
|
1382
|
+
to: `tuiIconTdsMoreVerticalSmallPragmatic`,
|
1383
|
+
from: `tuiIconMoreVer`,
|
1384
|
+
},
|
1277
1385
|
{
|
1278
1386
|
to: `tuiIconTdsMoreVerticalSmallPragmatic`,
|
1279
1387
|
from: `tuiIconMoreVertical`,
|
@@ -1282,6 +1390,10 @@ exports.ICONS = [
|
|
1282
1390
|
to: `tuiIconTdsMoreVerticalMediumPragmatic`,
|
1283
1391
|
from: `tuiIconMoreVerticalLarge`,
|
1284
1392
|
},
|
1393
|
+
{
|
1394
|
+
to: `tuiIconTdsMoreVerticalMediumPragmatic`,
|
1395
|
+
from: `tuiIconMoreVertLarge`,
|
1396
|
+
},
|
1285
1397
|
{
|
1286
1398
|
to: `tuiIconTdsMusicSmallPragmatic`,
|
1287
1399
|
from: `tuiIconMusic`,
|
@@ -1346,6 +1458,10 @@ exports.ICONS = [
|
|
1346
1458
|
to: `tuiIconTdsWysiwygColorMediumPragmatic`,
|
1347
1459
|
from: `tuiIconPaintLarge`,
|
1348
1460
|
},
|
1461
|
+
{
|
1462
|
+
to: `tuiIconTdsPaperClipSmallPragmatic`,
|
1463
|
+
from: `tuiIconAttach`,
|
1464
|
+
},
|
1349
1465
|
{
|
1350
1466
|
to: `tuiIconTdsPaperClipSmallPragmatic`,
|
1351
1467
|
from: `tuiIconPaperclip`,
|
@@ -1386,6 +1502,10 @@ exports.ICONS = [
|
|
1386
1502
|
to: `tuiIconTdsPercentMediumPragmatic`,
|
1387
1503
|
from: `tuiIconPercentLarge`,
|
1388
1504
|
},
|
1505
|
+
{
|
1506
|
+
to: `tuiIconTdsPhoneSmallPragmatic`,
|
1507
|
+
from: `tuiIconCall`,
|
1508
|
+
},
|
1389
1509
|
{
|
1390
1510
|
to: `tuiIconTdsPhoneSmallPragmatic`,
|
1391
1511
|
from: `tuiIconPhone`,
|
@@ -1478,6 +1598,10 @@ exports.ICONS = [
|
|
1478
1598
|
to: `tuiIconTdsPlus2SmallPragmatic`,
|
1479
1599
|
from: `tuiIconPlusSmall`,
|
1480
1600
|
},
|
1601
|
+
{
|
1602
|
+
to: `tuiIconTdsPrinterSmallPragmatic`,
|
1603
|
+
from: `tuiIconPrint`,
|
1604
|
+
},
|
1481
1605
|
{
|
1482
1606
|
to: `tuiIconTdsPrinterSmallPragmatic`,
|
1483
1607
|
from: `tuiIconPrinter`,
|
@@ -1538,6 +1662,10 @@ exports.ICONS = [
|
|
1538
1662
|
to: `tuiIconTdsArrowRewindMediumPragmatic`,
|
1539
1663
|
from: `tuiIconRedoLarge`,
|
1540
1664
|
},
|
1665
|
+
{
|
1666
|
+
to: `tuiIconTdsArrowsLeftRightSmallPragmatic`,
|
1667
|
+
from: `tuiIconRefresh`,
|
1668
|
+
},
|
1541
1669
|
{
|
1542
1670
|
to: `tuiIconTdsArrowsLeftRightSmallPragmatic`,
|
1543
1671
|
from: `tuiIconRefreshCw`,
|
@@ -1674,6 +1802,10 @@ exports.ICONS = [
|
|
1674
1802
|
to: `tuiIconTdsPencilSmallPragmatic`,
|
1675
1803
|
from: `tuiIconSignOutline`,
|
1676
1804
|
},
|
1805
|
+
{
|
1806
|
+
to: `tuiIconTdsDenyMediumPragmatic`,
|
1807
|
+
from: `tuiIconCancelCircle`,
|
1808
|
+
},
|
1677
1809
|
{
|
1678
1810
|
to: `tuiIconTdsDenyMediumPragmatic`,
|
1679
1811
|
from: `tuiIconSlashLarge`,
|
@@ -1726,6 +1858,10 @@ exports.ICONS = [
|
|
1726
1858
|
to: `tuiIconTdsArrowsSplitMediumPragmatic`,
|
1727
1859
|
from: `tuiIconSplitLarge`,
|
1728
1860
|
},
|
1861
|
+
{
|
1862
|
+
to: `tuiIconTdsStopSmallPragmatic`,
|
1863
|
+
from: `tuiIconStop`,
|
1864
|
+
},
|
1729
1865
|
{
|
1730
1866
|
to: `tuiIconTdsStopSmallPragmatic`,
|
1731
1867
|
from: `tuiIconSquare`,
|
@@ -1870,6 +2006,10 @@ exports.ICONS = [
|
|
1870
2006
|
to: `tuiIconTdsSnowflakeOffMediumPragmatic`,
|
1871
2007
|
from: `tuiIconUnfreezeLarge`,
|
1872
2008
|
},
|
2009
|
+
{
|
2010
|
+
to: `tuiIconTdsLockOpenSmallPragmatic`,
|
2011
|
+
from: `tuiIconLockOpen`,
|
2012
|
+
},
|
1873
2013
|
{
|
1874
2014
|
to: `tuiIconTdsLockOpenSmallPragmatic`,
|
1875
2015
|
from: `tuiIconUnlock`,
|
@@ -1922,6 +2062,10 @@ exports.ICONS = [
|
|
1922
2062
|
to: `tuiIconTdsCameraVideoSmallPragmatic`,
|
1923
2063
|
from: `tuiIconVideoOutline`,
|
1924
2064
|
},
|
2065
|
+
{
|
2066
|
+
to: `tuiIconTdsSoundSmallPragmatic`,
|
2067
|
+
from: `tuiIconSound`,
|
2068
|
+
},
|
1925
2069
|
{
|
1926
2070
|
to: `tuiIconTdsSoundSmallPragmatic`,
|
1927
2071
|
from: `tuiIconVolume`,
|
@@ -1938,6 +2082,10 @@ exports.ICONS = [
|
|
1938
2082
|
to: `tuiIconTdsSoundSmallPragmatic`,
|
1939
2083
|
from: `tuiIconVolumeOutline`,
|
1940
2084
|
},
|
2085
|
+
{
|
2086
|
+
to: `tuiIconTdsSoundOffSmallPragmatic`,
|
2087
|
+
from: `tuiIconSoundOff`,
|
2088
|
+
},
|
1941
2089
|
{
|
1942
2090
|
to: `tuiIconTdsSoundOffSmallPragmatic`,
|
1943
2091
|
from: `tuiIconVolumeX`,
|
@@ -1978,10 +2126,18 @@ exports.ICONS = [
|
|
1978
2126
|
to: `tuiIconTdsGlobeMediumPragmatic`,
|
1979
2127
|
from: `tuiIconWorldLarge`,
|
1980
2128
|
},
|
2129
|
+
{
|
2130
|
+
to: `tuiIconTdsCrossSmallPragmatic`,
|
2131
|
+
from: `tuiIconRemove`,
|
2132
|
+
},
|
1981
2133
|
{
|
1982
2134
|
to: `tuiIconTdsCrossSmallPragmatic`,
|
1983
2135
|
from: `tuiIconX`,
|
1984
2136
|
},
|
2137
|
+
{
|
2138
|
+
to: `tuiIconTdsCrossCircleSmallPragmatic`,
|
2139
|
+
from: `tuiIconCancel`,
|
2140
|
+
},
|
1985
2141
|
{
|
1986
2142
|
to: `tuiIconTdsCrossCircleSmallPragmatic`,
|
1987
2143
|
from: `tuiIconXCircle`,
|
@@ -2122,6 +2278,14 @@ exports.ICONS = [
|
|
2122
2278
|
to: `tuiIconTdsPlusCircleMediumPragmatic`,
|
2123
2279
|
from: `tuiIconCompensationLargeOutline`,
|
2124
2280
|
},
|
2281
|
+
{
|
2282
|
+
to: `tuiIconTdsCardBacksideSmallPragmatic`,
|
2283
|
+
from: `tuiIconCards`,
|
2284
|
+
},
|
2285
|
+
{
|
2286
|
+
to: `tuiIconTdsCardBacksideSmallPragmatic`,
|
2287
|
+
from: `tuiIconCard`,
|
2288
|
+
},
|
2125
2289
|
{
|
2126
2290
|
to: `tuiIconTdsCardBacksideSmallPragmatic`,
|
2127
2291
|
from: `tuiIconCreditCard`,
|
@@ -2194,6 +2358,10 @@ exports.ICONS = [
|
|
2194
2358
|
to: `tuiIconTdsLogoOdnoklassnikiMedium`,
|
2195
2359
|
from: `tuiIconOkLarge`,
|
2196
2360
|
},
|
2361
|
+
{
|
2362
|
+
to: `tuiIconTdsPhoneArrowSmallPragmatic`,
|
2363
|
+
from: `tuiIconCallIn`,
|
2364
|
+
},
|
2197
2365
|
{
|
2198
2366
|
to: `tuiIconTdsPhoneArrowSmallPragmatic`,
|
2199
2367
|
from: `tuiIconPhoneIncoming`,
|
@@ -2222,6 +2390,10 @@ exports.ICONS = [
|
|
2222
2390
|
to: `tuiIconTdsSaveSmallPragmatic`,
|
2223
2391
|
from: `tuiIconSaveOutline`,
|
2224
2392
|
},
|
2393
|
+
{
|
2394
|
+
to: `tuiIconTdsDevicePhoneSmallPragmatic`,
|
2395
|
+
from: `tuiIconMobile`,
|
2396
|
+
},
|
2225
2397
|
{
|
2226
2398
|
to: `tuiIconTdsDevicePhoneSmallPragmatic`,
|
2227
2399
|
from: `tuiIconSmartphone`,
|