@pine-ds/icons 9.10.0 → 9.12.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/components/index.js +1 -1
- package/components/pds-icon.js +5 -3
- package/components/pds-icon.js.map +1 -1
- package/dist/cheatsheet.html +9 -7
- package/dist/cjs/app-globals-V2Kpy_OQ.js.map +1 -1
- package/dist/cjs/{index-vqovWm2E.js → index-1SOIMLKQ.js} +3 -3
- package/dist/cjs/{index-vqovWm2E.js.map → index-1SOIMLKQ.js.map} +1 -1
- package/dist/cjs/{index-Rab0J0J-.js → index-C2yOCYcM.js} +262 -120
- package/dist/cjs/index-C2yOCYcM.js.map +1 -0
- package/dist/cjs/index.cjs.js +2 -4
- package/dist/cjs/loader.cjs.js +2 -4
- package/dist/cjs/pds-icon.cjs.entry.js +2 -4
- package/dist/cjs/pds-icons.cjs.js +3 -5
- package/dist/cjs/pds-icons.cjs.js.map +1 -1
- package/dist/collection/collection-manifest.json +2 -2
- package/dist/collection/components/pds-icon/pds-icon.js +11 -11
- package/dist/docs.json +9 -4
- package/dist/esm/app-globals-DQuL1Twl.js.map +1 -1
- package/dist/esm/{index-DageRZ16.js → index-Bbt-SSYo.js} +3 -3
- package/dist/esm/{index-DageRZ16.js.map → index-Bbt-SSYo.js.map} +1 -1
- package/dist/esm/{index-BtVkVfWm.js → index-BnTKVLFw.js} +262 -120
- package/dist/esm/index-BnTKVLFw.js.map +1 -0
- package/dist/esm/index.js +2 -4
- package/dist/esm/loader.js +3 -5
- package/dist/esm/pds-icon.entry.js +2 -4
- package/dist/esm/pds-icons.js +4 -6
- package/dist/esm/pds-icons.js.map +1 -1
- package/dist/pds-icons/index.esm.js +1 -1
- package/dist/pds-icons/{p-5ea9f963.entry.js → p-1ade35d9.entry.js} +2 -2
- package/dist/pds-icons/p-1ade35d9.entry.js.map +1 -0
- package/dist/pds-icons/p-BnTKVLFw.js +3 -0
- package/dist/pds-icons/p-BnTKVLFw.js.map +1 -0
- package/dist/pds-icons/{p-6DkR999u.js → p-CdP7eq1f.js} +2 -2
- package/dist/pds-icons/{p-6DkR999u.js.map → p-CdP7eq1f.js.map} +1 -1
- package/dist/pds-icons/p-DQuL1Twl.js.map +1 -1
- package/dist/pds-icons/pds-icons.esm.js +1 -1
- package/dist/pds-icons/pds-icons.esm.js.map +1 -1
- package/dist/pds-icons.json +12 -1
- package/dist/pds-icons.symbols.svg +2 -1
- package/dist/svg/stop-filled.svg +1 -0
- package/dist/types/components.d.ts +2 -0
- package/dist/types/stencil-public-runtime.d.ts +83 -8
- package/icons/index.d.ts +2 -1
- package/icons/index.js +2 -1
- package/icons/index.mjs +2 -1
- package/icons/package.json +1 -1
- package/package.json +2 -2
- package/dist/cjs/index-Rab0J0J-.js.map +0 -1
- package/dist/cjs/pds-icon.cjs.entry.js.map +0 -1
- package/dist/esm/index-BtVkVfWm.js.map +0 -1
- package/dist/pds-icons/p-5ea9f963.entry.js.map +0 -1
- package/dist/pds-icons/p-BtVkVfWm.js +0 -3
- package/dist/pds-icons/p-BtVkVfWm.js.map +0 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"p-6DkR999u.js","sources":["src/components/pds-icon/assetPath.ts","src/components/pds-icon/utils.ts"],"sourcesContent":["import { Build } from '@stencil/core';\n\nlet missingAssetPathWarning = false;\n\ndeclare global {\n interface Window {\n __PINE_ASSET_PATH__?: string\n }\n}\n\n/**\n *\n * Reads the component asset path config from meta tag or a global variable.\n * This is a temporary workaround until these issues have been addressed:\n *\n * https://github.com/ionic-team/stencil/issues/2826/\n * https://github.com/ionic-team/stencil/issues/3470\n * https://github.com/ionic-team/stencil-ds-output-targets/issues/186\n */\nexport const getAssetPath = (path: string) => {\n const metaPineAssetPath = document.head.querySelector<HTMLMetaElement>('meta[data-pine-asset-path]')?.dataset.pineAssetPath;\n\n // Get the asset path from the window object if available\n const windowAssetPath = window.__PINE_ASSET_PATH__;\n\n // Set the CDN Asset path using the latest version\n const cdnAssetPath = 'https://cdn.jsdelivr.net/npm/@pine-ds/icons/dist/';\n\n const assetBasePath = Build.isTesting ? '/dist/pds-icons' : metaPineAssetPath || windowAssetPath || cdnAssetPath || '/'\n\n // Display a warning if the assets are fetched from the CDN.\n if ( assetBasePath.startsWith('https://cdn.jsdelivr.net/npm/') && !missingAssetPathWarning ) {\n missingAssetPathWarning = true;\n console.warn(`\n Fetching Pine assets from jsDelivr CDN.\\n\\n It's recommended that you bundle Pine Assets with your application and set the path accordingly.\\n\\nFor more information, read the documentation: \\nhttps://pine-design-system.netlify.app/?path=/docs/resources-assets--docs\n `)\n }\n\n let assetPath = path;\n\n if ( path.startsWith ('./') ) {\n assetPath = path.substring(2);\n }\n\n if ( !assetBasePath.endsWith('/') ) {\n assetPath = '/' + assetPath;\n }\n\n return assetBasePath + assetPath;\n}\n\n\nexport {};\n","import { getAssetPath } from './assetPath';\n\nimport { PdsIcon } from './pds-icon';\n\nlet CACHED_MAP: Map<string, string>;\n\nexport const addIcons = (icons: { [name: string]: string; }) => {\n const map = getIconMap();\n Object.keys(icons).forEach(name => map.set(name, icons[name]));\n}\n\nexport const getIconMap = (): Map<string, string> => {\n if (typeof window === 'undefined') {\n return new Map();\n } else {\n if (!CACHED_MAP) {\n const win = window as any; // eslint-disable-line @typescript-eslint/no-explicit-any\n win.PdsIcons = win.PdsIcons || {};\n CACHED_MAP = win.PdsIcons.map = win.PdsIcons.map || new Map();\n }\n\n return CACHED_MAP;\n }\n}\n\nexport const getName = (\n iconName: string | undefined,\n icon: string | undefined\n ) => {\n\n if(!iconName && icon && !isSrc(icon)) {\n iconName = icon;\n }\n\n if (isStr(iconName)) {\n iconName = toLower(iconName);\n }\n\n if (!isStr(iconName) || iconName.trim() === '') {\n return null;\n }\n\n const invalidChars = iconName.replace(/[a-z]|-|\\d/gi,'');\n if (invalidChars != '') { return null; }\n\n return iconName;\n}\n\nconst getNamedUrl = (iconName: string) => {\n const url = getIconMap().get(iconName);\n if (url) {\n return url;\n }\n\n return getAssetPath(`svg/${iconName}.svg`);\n};\n\nexport const getSrc = (src: string | undefined) => {\n if (isStr(src)) {\n src = src.trim();\n\n if (isSrc(src)) {\n return src;\n }\n }\n\n return null;\n}\n\nexport const getUrl = (pdsIcon: PdsIcon) => {\n let url = getSrc(pdsIcon.src);\n if (url) {\n return url;\n }\n\n url = getName(pdsIcon.name, pdsIcon.icon);\n if (url) {\n return getNamedUrl(url);\n }\n\n if (pdsIcon.icon) {\n url = getSrc(pdsIcon.icon);\n\n if(url) {\n return url;\n }\n }\n\n return null;\n};\n\n\n/**\n * Returns `true` if the document or host element\n * has a `dir` set to `rtl`. The host value will always\n * take priority over the root document value.\n */\nexport const isRTL = (hostEl?: Pick<HTMLElement, 'dir'>) => {\n if (hostEl) {\n if (hostEl.dir !== '') {\n return hostEl.dir.toLowerCase() === 'rtl';\n }\n }\n return document?.dir.toLowerCase() === 'rtl';\n};\n\nexport const isSrc = (str: string) => str.length > 0 && /(\\/|\\.)/.test(str);\nexport const isStr = (val: any): val is string => typeof val === 'string'; // eslint-disable-line @typescript-eslint/no-explicit-any\nexport const toLower = (val: string) => val.toLowerCase();\n\n/**\n * Elements inside of web components sometimes need to inherit global attributes\n * set on the host. For example, the inner input in `pds-input` should inherit\n * the `title` attribute that developers set directly on `pds-input`. This\n * helper function should be called in componentWillLoad and assigned to a variable\n * that is later used in the render function.\n *\n * This does not need to be reactive as changing attributes on the host element\n * does not trigger a re-render.\n */\n export const inheritAttributes = (el: HTMLElement, attributes: string[] = []) => {\n const attributeObject: { [k: string]: any } = {}; // eslint-disable-line @typescript-eslint/no-explicit-any\n\n attributes.forEach(attr => {\n if (el.hasAttribute(attr)) {\n const value = el.getAttribute(attr);\n if (value !== null) {\n attributeObject[attr] = el.getAttribute(attr);\n }\n el.removeAttribute(attr);\n }\n });\n\n return attributeObject;\n}\n\n/**\n * Determines if an icon should be flipped when RTL is enabled\n * @param iconName - The name of the icon to check\n * @param hostEl - Optional host element to check for RTL direction\n * @returns {boolean} - True if the icon should be flipped in RTL mode, false otherwise\n */\nexport const shouldRtlFlipIcon = (iconName: string, hostEl?: Pick<HTMLElement, 'dir'>): boolean => {\n // First check if we're in RTL mode\n const rtlEnabled = isRTL(hostEl);\n\n // Only flip if we're in RTL mode and the icon is in the flip list\n return rtlEnabled && ICONS_TO_FLIP.includes(iconName);\n}\n\n/**\n * Array of available icon names\n */\nexport const ICONS_TO_FLIP = [\n 'align-horizontal-bottom',\n 'align-horizontal-center',\n 'align-horizontal-top',\n 'align-left',\n 'align-right',\n 'align-vertical-left',\n 'align-vertical-right',\n 'arrow-corner',\n 'arrow-left',\n 'arrow-right',\n 'calendar-schedule',\n 'caret-left',\n 'caret-right',\n 'cart',\n 'cart-add',\n 'comment',\n 'comment-no',\n 'conversation',\n 'copy',\n 'copy-07',\n 'delete-key',\n 'delete-x',\n 'downsell',\n 'drawer-collapse',\n 'drawer-expand',\n 'duplicate',\n 'feedback',\n 'file-lock',\n 'file-search',\n 'form-field',\n 'form-filled',\n 'left-small',\n 'launch',\n 'list-bullet',\n 'list-numbers',\n 'margin-left',\n 'margin-right',\n 'move-left',\n 'move-right',\n 'newsletter-2',\n 'one-off-session',\n 'quote',\n 'redo',\n 'reset-password',\n 'right-small',\n 'send-message',\n 'share',\n 'super-admin',\n 'tablet-landscape',\n 'undo',\n 'user-star',\n 'user-star-filled',\n 'users',\n 'users-filled',\n 'users-tone'\n];\n\n"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"p-CdP7eq1f.js","sources":["src/components/pds-icon/assetPath.ts","src/components/pds-icon/utils.ts"],"sourcesContent":["import { Build } from '@stencil/core';\n\nlet missingAssetPathWarning = false;\n\ndeclare global {\n interface Window {\n __PINE_ASSET_PATH__?: string\n }\n}\n\n/**\n *\n * Reads the component asset path config from meta tag or a global variable.\n * This is a temporary workaround until these issues have been addressed:\n *\n * https://github.com/ionic-team/stencil/issues/2826/\n * https://github.com/ionic-team/stencil/issues/3470\n * https://github.com/ionic-team/stencil-ds-output-targets/issues/186\n */\nexport const getAssetPath = (path: string) => {\n const metaPineAssetPath = document.head.querySelector<HTMLMetaElement>('meta[data-pine-asset-path]')?.dataset.pineAssetPath;\n\n // Get the asset path from the window object if available\n const windowAssetPath = window.__PINE_ASSET_PATH__;\n\n // Set the CDN Asset path using the latest version\n const cdnAssetPath = 'https://cdn.jsdelivr.net/npm/@pine-ds/icons/dist/';\n\n const assetBasePath = Build.isTesting ? '/dist/pds-icons' : metaPineAssetPath || windowAssetPath || cdnAssetPath || '/'\n\n // Display a warning if the assets are fetched from the CDN.\n if ( assetBasePath.startsWith('https://cdn.jsdelivr.net/npm/') && !missingAssetPathWarning ) {\n missingAssetPathWarning = true;\n console.warn(`\n Fetching Pine assets from jsDelivr CDN.\\n\\n It's recommended that you bundle Pine Assets with your application and set the path accordingly.\\n\\nFor more information, read the documentation: \\nhttps://pine-design-system.netlify.app/?path=/docs/resources-assets--docs\n `)\n }\n\n let assetPath = path;\n\n if ( path.startsWith ('./') ) {\n assetPath = path.substring(2);\n }\n\n if ( !assetBasePath.endsWith('/') ) {\n assetPath = '/' + assetPath;\n }\n\n return assetBasePath + assetPath;\n}\n\n\nexport {};\n","import { getAssetPath } from './assetPath';\n\nimport { PdsIcon } from './pds-icon';\n\nlet CACHED_MAP: Map<string, string>;\n\nexport const addIcons = (icons: { [name: string]: string; }) => {\n const map = getIconMap();\n Object.keys(icons).forEach(name => map.set(name, icons[name]));\n}\n\nexport const getIconMap = (): Map<string, string> => {\n if (typeof window === 'undefined') {\n return new Map();\n } else {\n if (!CACHED_MAP) {\n const win = window as any; // eslint-disable-line @typescript-eslint/no-explicit-any\n win.PdsIcons = win.PdsIcons || {};\n CACHED_MAP = win.PdsIcons.map = win.PdsIcons.map || new Map();\n }\n\n return CACHED_MAP;\n }\n}\n\nexport const getName = (\n iconName: string | undefined,\n icon: string | undefined\n ) => {\n\n if(!iconName && icon && !isSrc(icon)) {\n iconName = icon;\n }\n\n if (isStr(iconName)) {\n iconName = toLower(iconName);\n }\n\n if (!isStr(iconName) || iconName.trim() === '') {\n return null;\n }\n\n const invalidChars = iconName.replace(/[a-z]|-|\\d/gi,'');\n if (invalidChars != '') { return null; }\n\n return iconName;\n}\n\nconst getNamedUrl = (iconName: string) => {\n const url = getIconMap().get(iconName);\n if (url) {\n return url;\n }\n\n return getAssetPath(`svg/${iconName}.svg`);\n};\n\nexport const getSrc = (src: string | undefined) => {\n if (isStr(src)) {\n src = src.trim();\n\n if (isSrc(src)) {\n return src;\n }\n }\n\n return null;\n}\n\nexport const getUrl = (pdsIcon: PdsIcon) => {\n let url = getSrc(pdsIcon.src);\n if (url) {\n return url;\n }\n\n url = getName(pdsIcon.name, pdsIcon.icon);\n if (url) {\n return getNamedUrl(url);\n }\n\n if (pdsIcon.icon) {\n url = getSrc(pdsIcon.icon);\n\n if(url) {\n return url;\n }\n }\n\n return null;\n};\n\n\n/**\n * Returns `true` if the document or host element\n * has a `dir` set to `rtl`. The host value will always\n * take priority over the root document value.\n */\nexport const isRTL = (hostEl?: Pick<HTMLElement, 'dir'>) => {\n if (hostEl) {\n if (hostEl.dir !== '') {\n return hostEl.dir.toLowerCase() === 'rtl';\n }\n }\n return document?.dir.toLowerCase() === 'rtl';\n};\n\nexport const isSrc = (str: string) => str.length > 0 && /(\\/|\\.)/.test(str);\nexport const isStr = (val: any): val is string => typeof val === 'string'; // eslint-disable-line @typescript-eslint/no-explicit-any\nexport const toLower = (val: string) => val.toLowerCase();\n\n/**\n * Elements inside of web components sometimes need to inherit global attributes\n * set on the host. For example, the inner input in `pds-input` should inherit\n * the `title` attribute that developers set directly on `pds-input`. This\n * helper function should be called in componentWillLoad and assigned to a variable\n * that is later used in the render function.\n *\n * This does not need to be reactive as changing attributes on the host element\n * does not trigger a re-render.\n */\n export const inheritAttributes = (el: HTMLElement, attributes: string[] = []) => {\n const attributeObject: { [k: string]: any } = {}; // eslint-disable-line @typescript-eslint/no-explicit-any\n\n attributes.forEach(attr => {\n if (el.hasAttribute(attr)) {\n const value = el.getAttribute(attr);\n if (value !== null) {\n attributeObject[attr] = el.getAttribute(attr);\n }\n el.removeAttribute(attr);\n }\n });\n\n return attributeObject;\n}\n\n/**\n * Determines if an icon should be flipped when RTL is enabled\n * @param iconName - The name of the icon to check\n * @param hostEl - Optional host element to check for RTL direction\n * @returns {boolean} - True if the icon should be flipped in RTL mode, false otherwise\n */\nexport const shouldRtlFlipIcon = (iconName: string, hostEl?: Pick<HTMLElement, 'dir'>): boolean => {\n // First check if we're in RTL mode\n const rtlEnabled = isRTL(hostEl);\n\n // Only flip if we're in RTL mode and the icon is in the flip list\n return rtlEnabled && ICONS_TO_FLIP.includes(iconName);\n}\n\n/**\n * Array of available icon names\n */\nexport const ICONS_TO_FLIP = [\n 'align-horizontal-bottom',\n 'align-horizontal-center',\n 'align-horizontal-top',\n 'align-left',\n 'align-right',\n 'align-vertical-left',\n 'align-vertical-right',\n 'arrow-corner',\n 'arrow-left',\n 'arrow-right',\n 'calendar-schedule',\n 'caret-left',\n 'caret-right',\n 'cart',\n 'cart-add',\n 'comment',\n 'comment-no',\n 'conversation',\n 'copy',\n 'copy-07',\n 'delete-key',\n 'delete-x',\n 'downsell',\n 'drawer-collapse',\n 'drawer-expand',\n 'duplicate',\n 'feedback',\n 'file-lock',\n 'file-search',\n 'form-field',\n 'form-filled',\n 'left-small',\n 'launch',\n 'list-bullet',\n 'list-numbers',\n 'margin-left',\n 'margin-right',\n 'move-left',\n 'move-right',\n 'newsletter-2',\n 'one-off-session',\n 'quote',\n 'redo',\n 'reset-password',\n 'right-small',\n 'send-message',\n 'share',\n 'super-admin',\n 'tablet-landscape',\n 'undo',\n 'user-star',\n 'user-star-filled',\n 'users',\n 'users-filled',\n 'users-tone'\n];\n\n"],"names":[],"mappings":";;AAEA,IAAI,uBAAuB,GAAG,KAAK;AAQnC;;;;;;;;AAQG;AACI,MAAM,YAAY,GAAG,CAAC,IAAY,KAAI;;AAC3C,IAAA,MAAM,iBAAiB,GAAG,CAAA,EAAA,GAAA,QAAQ,CAAC,IAAI,CAAC,aAAa,CAAkB,4BAA4B,CAAC,MAAA,IAAA,IAAA,EAAA,KAAA,MAAA,GAAA,MAAA,GAAA,EAAA,CAAE,OAAO,CAAC,aAAa;;AAG3H,IAAA,MAAM,eAAe,GAAG,MAAM,CAAC,mBAAmB;;IAGlD,MAAM,YAAY,GAAG,mDAAmD;AAExE,IAAA,MAAM,aAAa,GAA0C,iBAAiB,IAAI,eAAe,IAAI,YAAmB;;IAGxH,IAAK,aAAa,CAAC,UAAU,CAAC,+BAA+B,CAAC,IAAI,CAAC,uBAAuB,EAAG;QAC3F,uBAAuB,GAAG,IAAI;QAC9B,OAAO,CAAC,IAAI,CAAC;;AAEZ,IAAA,CAAA,CAAC;;IAGJ,IAAI,SAAS,GAAG,IAAI;AAEpB,IAAA,IAAK,IAAI,CAAC,UAAU,CAAE,IAAI,CAAC,EAAG;AAC5B,QAAA,SAAS,GAAG,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC;;IAG/B,IAAK,CAAC,aAAa,CAAC,QAAQ,CAAC,GAAG,CAAC,EAAG;AAClC,QAAA,SAAS,GAAG,GAAG,GAAG,SAAS;;IAG7B,OAAO,aAAa,GAAG,SAAS;AAClC,CAAC;;AC7CD,IAAI,UAA+B;AAEtB,MAAA,QAAQ,GAAG,CAAC,KAAkC,KAAI;AAC7D,IAAA,MAAM,GAAG,GAAG,UAAU,EAAE;IACxB,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,OAAO,CAAC,IAAI,IAAI,GAAG,CAAC,GAAG,CAAC,IAAI,EAAE,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC;AAChE;AAEO,MAAM,UAAU,GAAG,MAA0B;AAClD,IAAA,IAAI,OAAO,MAAM,KAAK,WAAW,EAAE;QACjC,OAAO,IAAI,GAAG,EAAE;;SACV;QACN,IAAI,CAAC,UAAU,EAAE;AACf,YAAA,MAAM,GAAG,GAAG,MAAa,CAAC;YAC1B,GAAG,CAAC,QAAQ,GAAG,GAAG,CAAC,QAAQ,IAAI,EAAE;AACjC,YAAA,UAAU,GAAG,GAAG,CAAC,QAAQ,CAAC,GAAG,GAAG,GAAG,CAAC,QAAQ,CAAC,GAAG,IAAI,IAAI,GAAG,EAAE;;AAG/D,QAAA,OAAO,UAAU;;AAErB,CAAC;MAEY,OAAO,GAAG,CACrB,QAA4B,EAC5B,IAAwB,KACpB;IAEJ,IAAG,CAAC,QAAQ,IAAI,IAAI,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,EAAE;QACpC,QAAQ,GAAG,IAAI;;AAGjB,IAAA,IAAI,KAAK,CAAC,QAAQ,CAAC,EAAE;AACnB,QAAA,QAAQ,GAAG,OAAO,CAAC,QAAQ,CAAC;;AAG9B,IAAA,IAAI,CAAC,KAAK,CAAC,QAAQ,CAAC,IAAI,QAAQ,CAAC,IAAI,EAAE,KAAK,EAAE,EAAE;AAC9C,QAAA,OAAO,IAAI;;IAGb,MAAM,YAAY,GAAG,QAAQ,CAAC,OAAO,CAAC,cAAc,EAAC,EAAE,CAAC;AACxD,IAAA,IAAI,YAAY,IAAI,EAAE,EAAE;AAAE,QAAA,OAAO,IAAI;;AAErC,IAAA,OAAO,QAAQ;AACjB;AAEA,MAAM,WAAW,GAAG,CAAC,QAAgB,KAAI;IACvC,MAAM,GAAG,GAAG,UAAU,EAAE,CAAC,GAAG,CAAC,QAAQ,CAAC;IACtC,IAAI,GAAG,EAAE;AACP,QAAA,OAAO,GAAG;;AAGZ,IAAA,OAAO,YAAY,CAAC,CAAA,IAAA,EAAO,QAAQ,CAAA,IAAA,CAAM,CAAC;AAC5C,CAAC;AAEM,MAAM,MAAM,GAAG,CAAC,GAAuB,KAAI;AAChD,IAAA,IAAI,KAAK,CAAC,GAAG,CAAC,EAAE;AACd,QAAA,GAAG,GAAG,GAAG,CAAC,IAAI,EAAE;AAEhB,QAAA,IAAI,KAAK,CAAC,GAAG,CAAC,EAAE;AACd,YAAA,OAAO,GAAG;;;AAId,IAAA,OAAO,IAAI;AACb,CAAC;AAEY,MAAA,MAAM,GAAG,CAAC,OAAgB,KAAI;IACzC,IAAI,GAAG,GAAG,MAAM,CAAC,OAAO,CAAC,GAAG,CAAC;IAC7B,IAAI,GAAG,EAAE;AACP,QAAA,OAAO,GAAG;;IAGZ,GAAG,GAAG,OAAO,CAAC,OAAO,CAAC,IAAI,EAAE,OAAO,CAAC,IAAI,CAAC;IACzC,IAAI,GAAG,EAAE;AACP,QAAA,OAAO,WAAW,CAAC,GAAG,CAAC;;AAGzB,IAAA,IAAI,OAAO,CAAC,IAAI,EAAE;AAChB,QAAA,GAAG,GAAG,MAAM,CAAC,OAAO,CAAC,IAAI,CAAC;QAE1B,IAAG,GAAG,EAAE;AACN,YAAA,OAAO,GAAG;;;AAId,IAAA,OAAO,IAAI;AACb;AAGA;;;;AAIG;AACU,MAAA,KAAK,GAAG,CAAC,MAAiC,KAAI;IACzD,IAAI,MAAM,EAAE;AACV,QAAA,IAAI,MAAM,CAAC,GAAG,KAAK,EAAE,EAAE;YACrB,OAAO,MAAM,CAAC,GAAG,CAAC,WAAW,EAAE,KAAK,KAAK;;;IAG7C,OAAO,CAAA,QAAQ,KAAR,IAAA,IAAA,QAAQ,KAAR,MAAA,GAAA,MAAA,GAAA,QAAQ,CAAE,GAAG,CAAC,WAAW,EAAE,MAAK,KAAK;AAC9C;AAEO,MAAM,KAAK,GAAG,CAAC,GAAW,KAAK,GAAG,CAAC,MAAM,GAAG,CAAC,IAAI,SAAS,CAAC,IAAI,CAAC,GAAG,CAAC;AACpE,MAAM,KAAK,GAAG,CAAC,GAAQ,KAAoB,OAAO,GAAG,KAAK,SAAS;AACnE,MAAM,OAAO,GAAG,CAAC,GAAW,KAAK,GAAG,CAAC,WAAW,EAAE;AAEzD;;;;;;;;;AASG;AACW,MAAA,iBAAiB,GAAG,CAAC,EAAe,EAAE,UAAA,GAAuB,EAAE,KAAI;AAC/E,IAAA,MAAM,eAAe,GAAyB,EAAE,CAAC;AAEjD,IAAA,UAAU,CAAC,OAAO,CAAC,IAAI,IAAG;AACxB,QAAA,IAAI,EAAE,CAAC,YAAY,CAAC,IAAI,CAAC,EAAE;YACzB,MAAM,KAAK,GAAG,EAAE,CAAC,YAAY,CAAC,IAAI,CAAC;AACnC,YAAA,IAAI,KAAK,KAAK,IAAI,EAAE;gBAClB,eAAe,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,YAAY,CAAC,IAAI,CAAC;;AAE/C,YAAA,EAAE,CAAC,eAAe,CAAC,IAAI,CAAC;;AAE5B,KAAC,CAAC;AAEF,IAAA,OAAO,eAAe;AACxB;AAEA;;;;;AAKG;MACU,iBAAiB,GAAG,CAAC,QAAgB,EAAE,MAAiC,KAAa;;AAEhG,IAAA,MAAM,UAAU,GAAG,KAAK,CAAC,MAAM,CAAC;;IAGhC,OAAO,UAAU,IAAI,aAAa,CAAC,QAAQ,CAAC,QAAQ,CAAC;AACvD;AAEA;;AAEG;AACI,MAAM,aAAa,GAAG;IAC3B,yBAAyB;IACzB,yBAAyB;IACzB,sBAAsB;IACtB,YAAY;IACZ,aAAa;IACb,qBAAqB;IACrB,sBAAsB;IACtB,cAAc;IACd,YAAY;IACZ,aAAa;IACb,mBAAmB;IACnB,YAAY;IACZ,aAAa;IACb,MAAM;IACN,UAAU;IACV,SAAS;IACT,YAAY;IACZ,cAAc;IACd,MAAM;IACN,SAAS;IACT,YAAY;IACZ,UAAU;IACV,UAAU;IACV,iBAAiB;IACjB,eAAe;IACf,WAAW;IACX,UAAU;IACV,WAAW;IACX,aAAa;IACb,YAAY;IACZ,aAAa;IACb,YAAY;IACZ,QAAQ;IACR,aAAa;IACb,cAAc;IACd,aAAa;IACb,cAAc;IACd,WAAW;IACX,YAAY;IACZ,cAAc;IACd,iBAAiB;IACjB,OAAO;IACP,MAAM;IACN,gBAAgB;IAChB,aAAa;IACb,cAAc;IACd,OAAO;IACP,aAAa;IACb,kBAAkB;IAClB,MAAM;IACN,WAAW;IACX,kBAAkB;IAClB,OAAO;IACP,cAAc;IACd;CACD;;;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"p-DQuL1Twl.js","sources":["@stencil/core/internal/app-globals"],"sourcesContent":["export const globalScripts = () => {};\n"],"names":[],"mappings":"AAAY,MAAC,aAAa,GAAG,MAAM;;;;"}
|
|
1
|
+
{"version":3,"file":"p-DQuL1Twl.js","sources":["@stencil/core/internal/app-globals"],"sourcesContent":["export const globalScripts = () => {};\nexport const globalStyles = \"\";\n"],"names":[],"mappings":"AAAY,MAAC,aAAa,GAAG,MAAM;;;;"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import{p as o,b as
|
|
1
|
+
import{p as o,b as n}from"./p-BnTKVLFw.js";export{s as setNonce}from"./p-BnTKVLFw.js";import{g as e}from"./p-DQuL1Twl.js";var r=()=>{const n=import.meta.url;const e={};if(n!==""){e.resourcesUrl=new URL(".",n).href}return o(e)};r().then((async o=>{await e();return n([["p-1ade35d9",[[257,"pds-icon",{color:[1],flipRtl:[4,"flip-rtl"],icon:[8],name:[513],size:[513],src:[1],ariaLabel:[32],isVisible:[32],svgContent:[32]},null,{size:["updateStyles"],color:["updateStyles"],name:["onIconPropertyChange"],src:["onIconPropertyChange"],icon:["onIconPropertyChange"]}]]]],o)}));
|
|
2
2
|
//# sourceMappingURL=pds-icons.esm.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"pds-icons.esm.js","sources":["node_modules/@stencil/core/internal/client/patch-browser.js","@lazy-browser-entrypoint?app-data=conditional"],"sourcesContent":["/*\n Stencil Client Patch Browser v4.
|
|
1
|
+
{"version":3,"file":"pds-icons.esm.js","sources":["node_modules/@stencil/core/internal/client/patch-browser.js","@lazy-browser-entrypoint?app-data=conditional"],"sourcesContent":["/*\n Stencil Client Patch Browser v4.38.3 | MIT Licensed | https://stenciljs.com\n */\n\n// src/client/client-patch-browser.ts\nimport { BUILD, NAMESPACE } from \"@stencil/core/internal/app-data\";\nimport { consoleDevInfo, H, promiseResolve, win } from \"@stencil/core\";\nvar patchBrowser = () => {\n if (BUILD.isDev && !BUILD.isTesting) {\n consoleDevInfo(\"Running in development mode.\");\n }\n if (BUILD.cloneNodeFix) {\n patchCloneNodeFix(H.prototype);\n }\n const scriptElm = BUILD.scriptDataOpts ? win.document && Array.from(win.document.querySelectorAll(\"script\")).find(\n (s) => new RegExp(`/${NAMESPACE}(\\\\.esm)?\\\\.js($|\\\\?|#)`).test(s.src) || s.getAttribute(\"data-stencil-namespace\") === NAMESPACE\n ) : null;\n const importMeta = import.meta.url;\n const opts = BUILD.scriptDataOpts ? (scriptElm || {})[\"data-opts\"] || {} : {};\n if (importMeta !== \"\") {\n opts.resourcesUrl = new URL(\".\", importMeta).href;\n }\n return promiseResolve(opts);\n};\nvar patchCloneNodeFix = (HTMLElementPrototype) => {\n const nativeCloneNodeFn = HTMLElementPrototype.cloneNode;\n HTMLElementPrototype.cloneNode = function(deep) {\n if (this.nodeName === \"TEMPLATE\") {\n return nativeCloneNodeFn.call(this, deep);\n }\n const clonedNode = nativeCloneNodeFn.call(this, false);\n const srcChildNodes = this.childNodes;\n if (deep) {\n for (let i = 0; i < srcChildNodes.length; i++) {\n if (srcChildNodes[i].nodeType !== 2) {\n clonedNode.appendChild(srcChildNodes[i].cloneNode(true));\n }\n }\n }\n return clonedNode;\n };\n};\nexport {\n patchBrowser\n};\n","export { setNonce } from '@stencil/core';\nimport { bootstrapLazy } from '@stencil/core';\nimport { patchBrowser } from '@stencil/core/internal/client/patch-browser';\nimport { globalScripts } from '@stencil/core/internal/app-globals';\npatchBrowser().then(async (options) => {\n await globalScripts();\n return bootstrapLazy([/*!__STENCIL_LAZY_DATA__*/], options);\n});\n"],"names":[],"mappings":";;;;AAAA;AACA;AACA;;AAKA,IAAI,YAAY,GAAG,MAAM;AAUzB,EAAE,MAAM,UAAU,GAAG,MAAM,CAAC,IAAI,CAAC,GAAG;AACpC,EAAE,MAAM,IAAI,GAAiE,EAAE;AAC/E,EAAE,IAAI,UAAU,KAAK,EAAE,EAAE;AACzB,IAAI,IAAI,CAAC,YAAY,GAAG,IAAI,GAAG,CAAC,GAAG,EAAE,UAAU,CAAC,CAAC,IAAI;AACrD;AACA,EAAE,OAAO,cAAc,CAAC,IAAI,CAAC;AAC7B,CAAC;;ACnBD,YAAY,EAAE,CAAC,IAAI,CAAC,OAAO,OAAO,KAAK;AACvC,EAAE,MAAM,aAAa,EAAE;AACvB,EAAE,OAAO,aAAa,CAAC,4BAA4B,EAAE,OAAO,CAAC;AAC7D,CAAC,CAAC","x_google_ignoreList":[0]}
|
package/dist/pds-icons.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pds-icons",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.11.0",
|
|
4
4
|
"icons": [
|
|
5
5
|
{
|
|
6
6
|
"name": "access-key",
|
|
@@ -2792,6 +2792,7 @@
|
|
|
2792
2792
|
"category": "actions",
|
|
2793
2793
|
"tags": [
|
|
2794
2794
|
"arrow",
|
|
2795
|
+
"automation",
|
|
2795
2796
|
"combine",
|
|
2796
2797
|
"control",
|
|
2797
2798
|
"direction",
|
|
@@ -3751,6 +3752,8 @@
|
|
|
3751
3752
|
"name": "split",
|
|
3752
3753
|
"category": "actions",
|
|
3753
3754
|
"tags": [
|
|
3755
|
+
"automation",
|
|
3756
|
+
"branch",
|
|
3754
3757
|
"split"
|
|
3755
3758
|
]
|
|
3756
3759
|
},
|
|
@@ -3828,6 +3831,14 @@
|
|
|
3828
3831
|
"stop"
|
|
3829
3832
|
]
|
|
3830
3833
|
},
|
|
3834
|
+
{
|
|
3835
|
+
"name": "stop-filled",
|
|
3836
|
+
"category": "actions",
|
|
3837
|
+
"tags": [
|
|
3838
|
+
"audio",
|
|
3839
|
+
"stop"
|
|
3840
|
+
]
|
|
3841
|
+
},
|
|
3831
3842
|
{
|
|
3832
3843
|
"name": "stopwatch",
|
|
3833
3844
|
"category": "actions",
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<svg data-pdsicons="9.
|
|
1
|
+
<svg data-pdsicons="9.11.0" style="display:none">
|
|
2
2
|
<style>
|
|
3
3
|
.pdsicon {
|
|
4
4
|
fill: currentColor;
|
|
@@ -331,6 +331,7 @@
|
|
|
331
331
|
<symbol id="star-filled" viewBox="0 0 24 24" class="pdsicon"><path d="M12.646 1.776a1.5 1.5 0 0 0-1.292 0c-.353.168-.547.46-.645.62a8 8 0 0 0-.307.583L8.246 7.346l-4.822.705c-.227.033-.46.067-.65.113-.182.044-.52.139-.789.423a1.5 1.5 0 0 0-.398 1.228c.051.387.27.663.391.805.127.148.295.312.46.472l3.488 3.397-.823 4.799a8 8 0 0 0-.095.652c-.014.187-.029.538.158.882a1.5 1.5 0 0 0 1.045.759c.384.071.714-.051.887-.123.18-.075.388-.184.591-.291L12 18.9l4.31 2.267c.204.107.412.216.592.29.174.073.503.195.887.124a1.5 1.5 0 0 0 1.045-.76c.187-.343.172-.694.158-.881a8 8 0 0 0-.095-.652l-.822-4.799 3.487-3.397c.165-.16.333-.324.46-.472.122-.142.34-.418.39-.805a1.5 1.5 0 0 0-.397-1.228c-.27-.284-.607-.38-.79-.423-.189-.046-.422-.08-.649-.113l-4.822-.705L13.6 2.98a8 8 0 0 0-.308-.582c-.098-.16-.292-.453-.645-.621"/></symbol>
|
|
332
332
|
<symbol id="stars-tone" viewBox="0 0 24 24" class="pdsicon"><path d="m15 2 1.179 3.064c.282.734.423 1.1.642 1.409a3 3 0 0 0 .706.706c.309.22.675.36 1.409.642L22 9l-3.064 1.179c-.734.282-1.1.423-1.409.642a3 3 0 0 0-.706.706c-.22.309-.36.675-.642 1.409L15 16l-1.179-3.064c-.282-.734-.423-1.1-.642-1.409a3 3 0 0 0-.706-.706c-.309-.22-.675-.36-1.409-.642L8 9l3.064-1.179c.734-.282 1.1-.423 1.409-.642a3 3 0 0 0 .706-.706c.22-.309.36-.675.642-1.409z" opacity=".12"/><path fill-rule="evenodd" d="M15 1a1 1 0 0 1 .933.641l1.179 3.064c.3.781.395 1.007.524 1.188a2 2 0 0 0 .47.471c.182.13.407.224 1.189.524l3.064 1.179a1 1 0 0 1 0 1.866l-3.064 1.179c-.782.3-1.007.395-1.188.524q-.274.197-.471.47c-.13.182-.224.408-.524 1.189l-1.179 3.064a1 1 0 0 1-1.866 0l-1.179-3.064c-.3-.781-.395-1.007-.524-1.188a2 2 0 0 0-.47-.471c-.182-.13-.408-.224-1.189-.524L7.641 9.933a1 1 0 0 1 0-1.866l3.064-1.179c.781-.3 1.007-.395 1.188-.524a2 2 0 0 0 .471-.47c.13-.182.224-.408.524-1.189l1.179-3.064A1 1 0 0 1 15 1m0 3.786-.245.637-.04.102c-.243.635-.427 1.114-.72 1.527a4 4 0 0 1-.943.942c-.413.294-.892.478-1.527.722l-.102.039-.637.245.637.245.102.04c.635.243 1.114.427 1.527.72a4 4 0 0 1 .942.943c.294.413.478.892.722 1.527l.039.102.245.637.245-.637.04-.102c.243-.635.427-1.114.72-1.527a4 4 0 0 1 .943-.942c.413-.294.892-.478 1.526-.722l.103-.039.637-.245-.637-.245-.103-.04c-.634-.243-1.113-.427-1.526-.72a4 4 0 0 1-.942-.943c-.294-.413-.478-.892-.722-1.527l-.039-.102zM6.5 12a1 1 0 0 1 .894.553l.785 1.569c.282.565.368.727.473.863a2 2 0 0 0 .363.363c.136.104.298.19.863.473l1.57.785a1 1 0 0 1 0 1.788l-1.57.785c-.565.282-.727.369-.863.473a2 2 0 0 0-.363.363c-.105.136-.19.298-.473.863l-.785 1.57a1 1 0 0 1-1.788 0l-.785-1.57c-.282-.565-.368-.727-.473-.863a2 2 0 0 0-.363-.363c-.136-.105-.298-.19-.863-.473l-1.57-.785a1 1 0 0 1 0-1.788l1.57-.785c.565-.282.727-.368.863-.473a2 2 0 0 0 .363-.363c.105-.136.19-.298.473-.863l.785-1.57A1 1 0 0 1 6.5 12m0 3.236c-.195.39-.356.695-.568.97q-.317.41-.726.726c-.275.212-.58.373-.97.568.39.195.695.356.97.568q.41.317.726.726c.212.275.373.58.568.97.195-.39.356-.695.568-.97q.317-.41.726-.726c.275-.212.58-.373.97-.568-.39-.195-.695-.356-.97-.568a4 4 0 0 1-.726-.726c-.212-.275-.373-.58-.568-.97"/></symbol>
|
|
333
333
|
<symbol id="stop" viewBox="0 0 24 24" class="pdsicon"><path fill-rule="evenodd" d="M7.759 2h8.482c.805 0 1.47 0 2.01.044.563.046 1.08.145 1.565.392a4 4 0 0 1 1.748 1.748c.247.485.346 1.002.392 1.564C22 6.29 22 6.954 22 7.758v8.483c0 .805 0 1.47-.044 2.01-.046.563-.145 1.08-.392 1.565a4 4 0 0 1-1.748 1.748c-.485.247-1.002.346-1.564.392-.541.044-1.206.044-2.01.044H7.758c-.805 0-1.47 0-2.01-.044-.563-.046-1.08-.145-1.565-.392a4 4 0 0 1-1.748-1.748c-.247-.485-.346-1.002-.392-1.564C2 17.71 2 17.046 2 16.242V7.758c0-.805 0-1.47.044-2.01.046-.563.145-1.08.392-1.565a4 4 0 0 1 1.748-1.748c.485-.247 1.002-.346 1.564-.392C6.29 2 6.954 2 7.758 2M5.91 4.038c-.438.035-.663.1-.819.18a2 2 0 0 0-.874.874c-.08.156-.145.38-.18.819C4 6.361 4 6.943 4 7.8v8.4c0 .857 0 1.439.038 1.889.035.438.1.663.18.819a2 2 0 0 0 .874.874c.156.08.38.145.819.18C6.361 20 6.943 20 7.8 20h8.4c.857 0 1.439 0 1.889-.038.438-.035.663-.1.819-.18a2 2 0 0 0 .874-.874c.08-.156.145-.38.18-.819.037-.45.038-1.032.038-1.889V7.8c0-.857 0-1.439-.038-1.889-.035-.438-.1-.663-.18-.819a2 2 0 0 0-.874-.874c-.156-.08-.38-.145-.819-.18C17.639 4 17.057 4 16.2 4H7.8c-.857 0-1.439 0-1.889.038"/></symbol>
|
|
334
|
+
<symbol id="stop-filled" viewBox="0 0 24 24" class="pdsicon"><path fill-rule="evenodd" d="M6.745 3h10.51c.474 0 .883 0 1.22.028.356.029.71.093 1.05.266a2.7 2.7 0 0 1 1.18 1.18c.174.34.238.695.268 1.05.027.338.027.747.027 1.221v10.51c0 .474 0 .883-.027 1.22-.03.356-.094.71-.267 1.05a2.7 2.7 0 0 1-1.18 1.18c-.34.174-.695.238-1.05.268-.338.027-.747.027-1.221.027H6.745c-.474 0-.883 0-1.22-.027-.356-.03-.71-.094-1.05-.267a2.7 2.7 0 0 1-1.18-1.18c-.174-.34-.238-.695-.267-1.05A16 16 0 0 1 3 17.255V6.745c0-.474 0-.883.028-1.22.029-.356.093-.71.266-1.05a2.7 2.7 0 0 1 1.18-1.18c.34-.174.695-.238 1.05-.267A16 16 0 0 1 6.745 3"/></symbol>
|
|
334
335
|
<symbol id="stopwatch" viewBox="0 0 24 24" class="pdsicon"><path fill-rule="evenodd" d="M9 2a1 1 0 0 1 1-1h4a1 1 0 1 1 0 2h-1v1.052c4.777.5 8.5 4.539 8.5 9.448a9.5 9.5 0 0 1-19 0c0-4.909 3.723-8.948 8.5-9.448V3h-1a1 1 0 0 1-1-1M5.878 3.385a1 1 0 0 1 0 1.414l-.75.75-.75.75a1 1 0 0 1-1.414-1.414l.75-.75.75-.75a1 1 0 0 1 1.414 0m12.244 0a1 1 0 0 1 1.414 0l1.5 1.5a1 1 0 0 1-1.414 1.414l-1.5-1.5a1 1 0 0 1 0-1.414M12 6a7.5 7.5 0 1 0 0 15 7.5 7.5 0 0 0 0-15m0 2.5a1 1 0 0 1 1 1v3.434l2.015 1.209a1 1 0 0 1-1.03 1.714l-2.5-1.5A1 1 0 0 1 11 13.5v-4a1 1 0 0 1 1-1"/></symbol>
|
|
335
336
|
<symbol id="strikethrough" viewBox="0 0 24 24" class="pdsicon"><path fill-rule="evenodd" d="M7.759 2h8.482c.805 0 1.47 0 2.01.044.563.046 1.08.145 1.565.392a4 4 0 0 1 1.748 1.748c.247.485.346 1.002.392 1.564C22 6.29 22 6.954 22 7.758v8.483c0 .805 0 1.47-.044 2.01-.046.563-.145 1.08-.392 1.565a4 4 0 0 1-1.748 1.748c-.485.247-1.002.346-1.564.392-.541.044-1.206.044-2.01.044H7.758c-.805 0-1.47 0-2.01-.044-.563-.046-1.08-.145-1.565-.392a4 4 0 0 1-1.748-1.748c-.247-.485-.346-1.002-.392-1.564C2 17.71 2 17.046 2 16.242V7.758c0-.805 0-1.47.044-2.01.046-.563.145-1.08.392-1.565a4 4 0 0 1 1.748-1.748c.485-.247 1.002-.346 1.564-.392C6.29 2 6.954 2 7.758 2M5.91 4.038c-.438.035-.663.1-.819.18a2 2 0 0 0-.874.874c-.08.156-.145.38-.18.819C4 6.361 4 6.943 4 7.8v8.4c0 .857 0 1.439.038 1.889.035.438.1.663.18.819a2 2 0 0 0 .874.874c.156.08.38.145.819.18C6.361 20 6.943 20 7.8 20h8.4c.857 0 1.439 0 1.889-.038.438-.035.663-.1.819-.18a2 2 0 0 0 .874-.874c.08-.156.145-.38.18-.819.037-.45.038-1.032.038-1.889V7.8c0-.857 0-1.439-.038-1.889-.035-.438-.1-.663-.18-.819a2 2 0 0 0-.874-.874c-.156-.08-.38-.145-.819-.18C17.639 4 17.057 4 16.2 4H7.8c-.857 0-1.439 0-1.889.038M7.791 8.1A3.5 3.5 0 0 1 11 6h2.167c1.423 0 2.635.891 3.114 2.143a1 1 0 1 1-1.868.714A1.33 1.33 0 0 0 13.167 8H11a1.5 1.5 0 0 0-1.376.9 1 1 0 0 1-1.832-.8M5 12a1 1 0 0 1 1-1h12a1 1 0 1 1 0 2h-1.837A3.5 3.5 0 0 1 13 18h-2.167a3.33 3.33 0 0 1-3.114-2.143 1 1 0 1 1 1.868-.714c.193.503.68.857 1.246.857H13a1.5 1.5 0 0 0 0-3H6a1 1 0 0 1-1-1"/></symbol>
|
|
336
337
|
<symbol id="subscript" viewBox="0 0 24 24" class="pdsicon"><path d="M12.616 17.926A1 1 0 0 0 13 18a1 1 0 0 0 .71-1.71L9.41 12l4.3-4.29a1.004 1.004 0 1 0-1.42-1.42L8 10.59l-4.29-4.3a1.004 1.004 0 0 0-1.42 1.42L6.59 12l-4.3 4.29a1.004 1.004 0 0 0 1.42 1.42L8 13.41l4.29 4.3q.141.14.326.216M16.293 21.707A1 1 0 0 0 17 22h4a1 1 0 1 0 0-2h-2.8c.13-.28.38-.41.8-.61l.105-.051C20.208 18.805 22 17.937 22 16a3 3 0 0 0-.73-1.95 3.12 3.12 0 0 0-3.87-.65 3.05 3.05 0 0 0-1.34 1.6 1 1 0 1 0 1.88.68 1 1 0 0 1 .45-.54 1.16 1.16 0 0 1 .73-.13 1.1 1.1 0 0 1 .64.35A1 1 0 0 1 20 16c0 .6-.86 1.09-1.93 1.6A3.21 3.21 0 0 0 16 21a1 1 0 0 0 .293.707"/></symbol>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" class="pdsicon"><path fill-rule="evenodd" d="M6.745 3h10.51c.474 0 .883 0 1.22.028.356.029.71.093 1.05.266a2.7 2.7 0 0 1 1.18 1.18c.174.34.238.695.268 1.05.027.338.027.747.027 1.221v10.51c0 .474 0 .883-.027 1.22-.03.356-.094.71-.267 1.05a2.7 2.7 0 0 1-1.18 1.18c-.34.174-.695.238-1.05.268-.338.027-.747.027-1.221.027H6.745c-.474 0-.883 0-1.22-.027-.356-.03-.71-.094-1.05-.267a2.7 2.7 0 0 1-1.18-1.18c-.174-.34-.238-.695-.267-1.05A16 16 0 0 1 3 17.255V6.745c0-.474 0-.883.028-1.22.029-.356.093-.71.266-1.05a2.7 2.7 0 0 1 1.18-1.18c.34-.174.695-.238 1.05-.267A16 16 0 0 1 6.745 3"/></svg>
|
|
@@ -25,6 +25,7 @@ export namespace Components {
|
|
|
25
25
|
"name"?: string;
|
|
26
26
|
/**
|
|
27
27
|
* The size of the icon. This can be 'small', 'regular', 'medium', 'large', or a custom value (40px, 1rem, etc)
|
|
28
|
+
* @default 'regular'
|
|
28
29
|
*/
|
|
29
30
|
"size"?: | 'small' // 12px
|
|
30
31
|
| 'regular' // 16px
|
|
@@ -69,6 +70,7 @@ declare namespace LocalJSX {
|
|
|
69
70
|
"name"?: string;
|
|
70
71
|
/**
|
|
71
72
|
* The size of the icon. This can be 'small', 'regular', 'medium', 'large', or a custom value (40px, 1rem, etc)
|
|
73
|
+
* @default 'regular'
|
|
72
74
|
*/
|
|
73
75
|
"size"?: | 'small' // 12px
|
|
74
76
|
| 'regular' // 16px
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
|
|
1
|
+
type CustomMethodDecorator<T> = (target: object, propertyKey: string | symbol, descriptor: TypedPropertyDescriptor<T>) => TypedPropertyDescriptor<T> | void;
|
|
2
|
+
type UnionToIntersection<U> = (U extends any ? (k: U) => void : never) extends (k: infer I) => void ? I : never;
|
|
3
|
+
type MixinInstance<F> = F extends (base: MixedInCtor) => MixedInCtor<infer I> ? I : never;
|
|
2
4
|
export interface ComponentDecorator {
|
|
3
5
|
(opts?: ComponentOptions): ClassDecorator;
|
|
4
6
|
}
|
|
@@ -151,7 +153,13 @@ export interface StateDecorator {
|
|
|
151
153
|
(): PropertyDecorator;
|
|
152
154
|
}
|
|
153
155
|
export interface WatchDecorator {
|
|
154
|
-
(propName:
|
|
156
|
+
(propName: any): CustomMethodDecorator<(newValue?: any, oldValue?: any, propName?: any, ...args: any[]) => any | void>;
|
|
157
|
+
}
|
|
158
|
+
export interface PropSerializeDecorator {
|
|
159
|
+
(propName: any): CustomMethodDecorator<(newValue?: any, propName?: string, ...args: any[]) => string | null>;
|
|
160
|
+
}
|
|
161
|
+
export interface AttrDeserializeDecorator {
|
|
162
|
+
(propName: any): CustomMethodDecorator<(newValue?: any, propName?: string, ...args: any[]) => any>;
|
|
155
163
|
}
|
|
156
164
|
export interface UserBuildConditionals {
|
|
157
165
|
isDev: boolean;
|
|
@@ -233,6 +241,14 @@ export declare const State: StateDecorator;
|
|
|
233
241
|
* https://stenciljs.com/docs/reactive-data#watch-decorator
|
|
234
242
|
*/
|
|
235
243
|
export declare const Watch: WatchDecorator;
|
|
244
|
+
/**
|
|
245
|
+
* Decorator to serialize a property to an attribute string.
|
|
246
|
+
*/
|
|
247
|
+
export declare const PropSerialize: PropSerializeDecorator;
|
|
248
|
+
/**
|
|
249
|
+
* Decorator to deserialize an attribute string to a property.
|
|
250
|
+
*/
|
|
251
|
+
export declare const AttrDeserialize: AttrDeserializeDecorator;
|
|
236
252
|
export type ResolutionHandler = (elm: HTMLElement) => string | undefined | null;
|
|
237
253
|
export type ErrorHandler = (err: any, element?: HTMLElement) => void;
|
|
238
254
|
/**
|
|
@@ -260,6 +276,25 @@ export declare function setPlatformHelpers(helpers: {
|
|
|
260
276
|
* @returns the base path
|
|
261
277
|
*/
|
|
262
278
|
export declare function getAssetPath(path: string): string;
|
|
279
|
+
/**
|
|
280
|
+
* Method to render a virtual DOM tree to a container element.
|
|
281
|
+
*
|
|
282
|
+
* @example
|
|
283
|
+
* ```tsx
|
|
284
|
+
* import { render } from '@stencil/core';
|
|
285
|
+
*
|
|
286
|
+
* const vnode = (
|
|
287
|
+
* <div>
|
|
288
|
+
* <h1>Hello, world!</h1>
|
|
289
|
+
* </div>
|
|
290
|
+
* );
|
|
291
|
+
* render(vnode, document.body);
|
|
292
|
+
* ```
|
|
293
|
+
*
|
|
294
|
+
* @param vnode - The virtual DOM tree to render
|
|
295
|
+
* @param container - The container element to render the virtual DOM tree to
|
|
296
|
+
*/
|
|
297
|
+
export declare function render(vnode: VNode, container: Element): void;
|
|
263
298
|
/**
|
|
264
299
|
* Used to manually set the base path where assets can be found. For lazy-loaded
|
|
265
300
|
* builds the asset path is automatically set and assets copied to the correct
|
|
@@ -330,6 +365,37 @@ export declare function readTask(task: RafCallback): void;
|
|
|
330
365
|
* Unhandled exception raised while rendering, during event handling, or lifecycles will trigger the custom event handler.
|
|
331
366
|
*/
|
|
332
367
|
export declare const setErrorHandler: (handler: ErrorHandler) => void;
|
|
368
|
+
/**
|
|
369
|
+
* @deprecated - Use `MixedInCtor` instead:
|
|
370
|
+
* ```ts
|
|
371
|
+
* import { MixedInCtor } from '@stencil/core';
|
|
372
|
+
*
|
|
373
|
+
* const AFactoryFn = <B extends MixedInCtor>(Base: B) => {class A extends Base { propA = A }; return A;}
|
|
374
|
+
* ```
|
|
375
|
+
*/
|
|
376
|
+
export type MixinFactory = (base: MixedInCtor) => MixedInCtor;
|
|
377
|
+
export type MixedInCtor<T = {}> = new (...args: any[]) => T;
|
|
378
|
+
/**
|
|
379
|
+
* Compose multiple mixin classes into a single constructor.
|
|
380
|
+
* The resulting class has the combined instance types of all mixed-in classes.
|
|
381
|
+
*
|
|
382
|
+
* Example:
|
|
383
|
+
* ```ts
|
|
384
|
+
* import { Mixin, MixedInCtor } from '@stencil/core';
|
|
385
|
+
*
|
|
386
|
+
* const AWrap = <B extends MixedInCtor>(Base: B) => {class A extends Base { propA = A }; return A;}
|
|
387
|
+
* const BWrap = <B extends MixedInCtor>(Base: B) => {class B extends Base { propB = B }; return B;}
|
|
388
|
+
* const CWrap = <B extends MixedInCtor>(Base: B) => {class C extends Base { propC = C }; return C;}
|
|
389
|
+
*
|
|
390
|
+
* class X extends Mixin(AWrap, BWrap, CWrap) {
|
|
391
|
+
* render() { return <div>{this.propA} {this.propB} {this.propC}</div>; }
|
|
392
|
+
* }
|
|
393
|
+
* ```
|
|
394
|
+
*
|
|
395
|
+
* @param mixinFactories mixin factory functions that return a class which extends from the provided class.
|
|
396
|
+
* @returns a class that is composed from extending each of the provided classes in the order they were provided.
|
|
397
|
+
*/
|
|
398
|
+
export declare function Mixin<const TMixins extends readonly MixinFactory[]>(...mixinFactories: TMixins): abstract new (...args: any[]) => UnionToIntersection<MixinInstance<TMixins[number]>>;
|
|
333
399
|
/**
|
|
334
400
|
* This file gets copied to all distributions of stencil component collections.
|
|
335
401
|
* - no imports
|
|
@@ -827,7 +893,7 @@ export declare namespace JSXBase {
|
|
|
827
893
|
interface DetailsHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
828
894
|
open?: boolean;
|
|
829
895
|
name?: string;
|
|
830
|
-
onToggle?: (event:
|
|
896
|
+
onToggle?: (event: ToggleEvent) => void;
|
|
831
897
|
}
|
|
832
898
|
interface DelHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
833
899
|
cite?: string;
|
|
@@ -1533,6 +1599,13 @@ export declare namespace JSXBase {
|
|
|
1533
1599
|
z?: number | string;
|
|
1534
1600
|
zoomAndPan?: string;
|
|
1535
1601
|
}
|
|
1602
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ToggleEvent) */
|
|
1603
|
+
interface ToggleEvent extends Event {
|
|
1604
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ToggleEvent/newState) */
|
|
1605
|
+
readonly newState: string;
|
|
1606
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ToggleEvent/oldState) */
|
|
1607
|
+
readonly oldState: string;
|
|
1608
|
+
}
|
|
1536
1609
|
interface DOMAttributes<T> extends JSXAttributes<T> {
|
|
1537
1610
|
slot?: string;
|
|
1538
1611
|
part?: string;
|
|
@@ -1549,6 +1622,10 @@ export declare namespace JSXBase {
|
|
|
1549
1622
|
onCompositionstartCapture?: (event: CompositionEvent) => void;
|
|
1550
1623
|
onCompositionupdate?: (event: CompositionEvent) => void;
|
|
1551
1624
|
onCompositionupdateCapture?: (event: CompositionEvent) => void;
|
|
1625
|
+
onBeforeToggle?: (event: ToggleEvent) => void;
|
|
1626
|
+
onBeforeToggleCapture?: (event: ToggleEvent) => void;
|
|
1627
|
+
onToggle?: (event: ToggleEvent) => void;
|
|
1628
|
+
onToggleCapture?: (event: ToggleEvent) => void;
|
|
1552
1629
|
onFocus?: (event: FocusEvent) => void;
|
|
1553
1630
|
onFocusCapture?: (event: FocusEvent) => void;
|
|
1554
1631
|
onFocusin?: (event: FocusEvent) => void;
|
|
@@ -1567,10 +1644,6 @@ export declare namespace JSXBase {
|
|
|
1567
1644
|
onSubmitCapture?: (event: Event) => void;
|
|
1568
1645
|
onInvalid?: (event: Event) => void;
|
|
1569
1646
|
onInvalidCapture?: (event: Event) => void;
|
|
1570
|
-
onBeforeToggle?: (event: Event) => void;
|
|
1571
|
-
onBeforeToggleCapture?: (event: Event) => void;
|
|
1572
|
-
onToggle?: (event: Event) => void;
|
|
1573
|
-
onToggleCapture?: (event: Event) => void;
|
|
1574
1647
|
onLoad?: (event: Event) => void;
|
|
1575
1648
|
onLoadCapture?: (event: Event) => void;
|
|
1576
1649
|
onError?: (event: Event) => void;
|
|
@@ -1582,7 +1655,7 @@ export declare namespace JSXBase {
|
|
|
1582
1655
|
onKeyUp?: (event: KeyboardEvent) => void;
|
|
1583
1656
|
onKeyUpCapture?: (event: KeyboardEvent) => void;
|
|
1584
1657
|
onAuxClick?: (event: MouseEvent) => void;
|
|
1585
|
-
onClick?: (event:
|
|
1658
|
+
onClick?: (event: PointerEvent) => void;
|
|
1586
1659
|
onClickCapture?: (event: MouseEvent) => void;
|
|
1587
1660
|
onContextMenu?: (event: MouseEvent) => void;
|
|
1588
1661
|
onContextMenuCapture?: (event: MouseEvent) => void;
|
|
@@ -1662,6 +1735,8 @@ export declare namespace JSXBase {
|
|
|
1662
1735
|
onTransitionRunCapture?: (event: TransitionEvent) => void;
|
|
1663
1736
|
onTransitionStart?: (event: TransitionEvent) => void;
|
|
1664
1737
|
onTransitionStartCapture?: (event: TransitionEvent) => void;
|
|
1738
|
+
[key: `aria-${string}`]: string | boolean | undefined;
|
|
1739
|
+
[key: `aria${string}`]: string | boolean | undefined;
|
|
1665
1740
|
}
|
|
1666
1741
|
}
|
|
1667
1742
|
export interface JSXAttributes<T = Element> {
|
package/icons/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* pds-icons v9.
|
|
1
|
+
/* pds-icons v9.11.0, Types */
|
|
2
2
|
|
|
3
3
|
export declare var accessKey: string
|
|
4
4
|
export declare var activity: string
|
|
@@ -321,6 +321,7 @@ export declare var star03: string
|
|
|
321
321
|
export declare var starFilled: string
|
|
322
322
|
export declare var starsTone: string
|
|
323
323
|
export declare var stop: string
|
|
324
|
+
export declare var stopFilled: string
|
|
324
325
|
export declare var stopwatch: string
|
|
325
326
|
export declare var strikethrough: string
|
|
326
327
|
export declare var subscript: string
|
package/icons/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* pds-icons v9.
|
|
1
|
+
/* pds-icons v9.11.0, CommonJs */
|
|
2
2
|
|
|
3
3
|
exports.accessKey = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' class='pdsicon'><path fill-rule='evenodd' d='M8 9a7 7 0 1 1 6.06 6.937 14 14 0 0 0-.514-.062l-.01.008a9 9 0 0 0-.25.245l-1.579 1.58A1 1 0 0 1 11 18h-1v1a1 1 0 0 1-1 1H8v1a1 1 0 0 1-1 1H4.568c-.252 0-.498 0-.706-.017a2 2 0 0 1-.77-.201 2 2 0 0 1-.874-.874 2 2 0 0 1-.201-.77C2 19.93 2 19.684 2 19.432v-1.82c0-.19-.001-.43.055-.665a2 2 0 0 1 .24-.578c.126-.206.296-.375.43-.509l.036-.036 5.111-5.11c.126-.126.196-.197.245-.25l.008-.01-.003-.045c-.01-.103-.03-.244-.06-.469A7 7 0 0 1 8 9m0 9v-1a1 1 0 0 1 1-1h1.586l1.286-1.286.052-.053c.18-.18.398-.4.646-.539a1.8 1.8 0 0 1 .693-.234c.193-.027.382-.014.52 0 .145.014.324.038.525.065l.018.002q.33.045.674.045a5 5 0 1 0-4.955-4.326l.002.018c.027.201.051.38.065.524.014.14.027.328 0 .521-.038.265-.104.46-.234.693-.14.248-.359.466-.54.646l-.052.052-5.11 5.11a6 6 0 0 0-.171.175l-.002.002v.004a6 6 0 0 0-.003.244V19.4a8 8 0 0 0 .011.588l.014.002c.116.01.278.01.575.01H6v-1a1 1 0 0 1 1-1zm6-11a1 1 0 0 1 1-1c.766 0 1.536.293 2.121.879.586.585.879 1.355.879 2.12A1 1 0 1 1 16 9a1 1 0 0 0-.293-.707A1 1 0 0 0 15 8a1 1 0 0 1-1-1'/></svg>"
|
|
4
4
|
exports.activity = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' class='pdsicon'><path fill-rule='evenodd' d='M9 2a1 1 0 0 1 .949.684L15 17.838l2.051-6.154A1 1 0 0 1 18 11h4a1 1 0 1 1 0 2h-3.28l-2.771 8.316a1 1 0 0 1-1.898 0L9 6.162l-2.051 6.154A1 1 0 0 1 6 13H2a1 1 0 1 1 0-2h3.28L8.05 2.684A1 1 0 0 1 9 2'/></svg>"
|
|
@@ -321,6 +321,7 @@ exports.star03 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg
|
|
|
321
321
|
exports.starFilled = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' class='pdsicon'><path d='M12.646 1.776a1.5 1.5 0 0 0-1.292 0c-.353.168-.547.46-.645.62a8 8 0 0 0-.307.583L8.246 7.346l-4.822.705c-.227.033-.46.067-.65.113-.182.044-.52.139-.789.423a1.5 1.5 0 0 0-.398 1.228c.051.387.27.663.391.805.127.148.295.312.46.472l3.488 3.397-.823 4.799a8 8 0 0 0-.095.652c-.014.187-.029.538.158.882a1.5 1.5 0 0 0 1.045.759c.384.071.714-.051.887-.123.18-.075.388-.184.591-.291L12 18.9l4.31 2.267c.204.107.412.216.592.29.174.073.503.195.887.124a1.5 1.5 0 0 0 1.045-.76c.187-.343.172-.694.158-.881a8 8 0 0 0-.095-.652l-.822-4.799 3.487-3.397c.165-.16.333-.324.46-.472.122-.142.34-.418.39-.805a1.5 1.5 0 0 0-.397-1.228c-.27-.284-.607-.38-.79-.423-.189-.046-.422-.08-.649-.113l-4.822-.705L13.6 2.98a8 8 0 0 0-.308-.582c-.098-.16-.292-.453-.645-.621'/></svg>"
|
|
322
322
|
exports.starsTone = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' class='pdsicon'><path d='m15 2 1.179 3.064c.282.734.423 1.1.642 1.409a3 3 0 0 0 .706.706c.309.22.675.36 1.409.642L22 9l-3.064 1.179c-.734.282-1.1.423-1.409.642a3 3 0 0 0-.706.706c-.22.309-.36.675-.642 1.409L15 16l-1.179-3.064c-.282-.734-.423-1.1-.642-1.409a3 3 0 0 0-.706-.706c-.309-.22-.675-.36-1.409-.642L8 9l3.064-1.179c.734-.282 1.1-.423 1.409-.642a3 3 0 0 0 .706-.706c.22-.309.36-.675.642-1.409z' opacity='.12'/><path fill-rule='evenodd' d='M15 1a1 1 0 0 1 .933.641l1.179 3.064c.3.781.395 1.007.524 1.188a2 2 0 0 0 .47.471c.182.13.407.224 1.189.524l3.064 1.179a1 1 0 0 1 0 1.866l-3.064 1.179c-.782.3-1.007.395-1.188.524q-.274.197-.471.47c-.13.182-.224.408-.524 1.189l-1.179 3.064a1 1 0 0 1-1.866 0l-1.179-3.064c-.3-.781-.395-1.007-.524-1.188a2 2 0 0 0-.47-.471c-.182-.13-.408-.224-1.189-.524L7.641 9.933a1 1 0 0 1 0-1.866l3.064-1.179c.781-.3 1.007-.395 1.188-.524a2 2 0 0 0 .471-.47c.13-.182.224-.408.524-1.189l1.179-3.064A1 1 0 0 1 15 1m0 3.786-.245.637-.04.102c-.243.635-.427 1.114-.72 1.527a4 4 0 0 1-.943.942c-.413.294-.892.478-1.527.722l-.102.039-.637.245.637.245.102.04c.635.243 1.114.427 1.527.72a4 4 0 0 1 .942.943c.294.413.478.892.722 1.527l.039.102.245.637.245-.637.04-.102c.243-.635.427-1.114.72-1.527a4 4 0 0 1 .943-.942c.413-.294.892-.478 1.526-.722l.103-.039.637-.245-.637-.245-.103-.04c-.634-.243-1.113-.427-1.526-.72a4 4 0 0 1-.942-.943c-.294-.413-.478-.892-.722-1.527l-.039-.102zM6.5 12a1 1 0 0 1 .894.553l.785 1.569c.282.565.368.727.473.863a2 2 0 0 0 .363.363c.136.104.298.19.863.473l1.57.785a1 1 0 0 1 0 1.788l-1.57.785c-.565.282-.727.369-.863.473a2 2 0 0 0-.363.363c-.105.136-.19.298-.473.863l-.785 1.57a1 1 0 0 1-1.788 0l-.785-1.57c-.282-.565-.368-.727-.473-.863a2 2 0 0 0-.363-.363c-.136-.105-.298-.19-.863-.473l-1.57-.785a1 1 0 0 1 0-1.788l1.57-.785c.565-.282.727-.368.863-.473a2 2 0 0 0 .363-.363c.105-.136.19-.298.473-.863l.785-1.57A1 1 0 0 1 6.5 12m0 3.236c-.195.39-.356.695-.568.97q-.317.41-.726.726c-.275.212-.58.373-.97.568.39.195.695.356.97.568q.41.317.726.726c.212.275.373.58.568.97.195-.39.356-.695.568-.97q.317-.41.726-.726c.275-.212.58-.373.97-.568-.39-.195-.695-.356-.97-.568a4 4 0 0 1-.726-.726c-.212-.275-.373-.58-.568-.97'/></svg>"
|
|
323
323
|
exports.stop = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' class='pdsicon'><path fill-rule='evenodd' d='M7.759 2h8.482c.805 0 1.47 0 2.01.044.563.046 1.08.145 1.565.392a4 4 0 0 1 1.748 1.748c.247.485.346 1.002.392 1.564C22 6.29 22 6.954 22 7.758v8.483c0 .805 0 1.47-.044 2.01-.046.563-.145 1.08-.392 1.565a4 4 0 0 1-1.748 1.748c-.485.247-1.002.346-1.564.392-.541.044-1.206.044-2.01.044H7.758c-.805 0-1.47 0-2.01-.044-.563-.046-1.08-.145-1.565-.392a4 4 0 0 1-1.748-1.748c-.247-.485-.346-1.002-.392-1.564C2 17.71 2 17.046 2 16.242V7.758c0-.805 0-1.47.044-2.01.046-.563.145-1.08.392-1.565a4 4 0 0 1 1.748-1.748c.485-.247 1.002-.346 1.564-.392C6.29 2 6.954 2 7.758 2M5.91 4.038c-.438.035-.663.1-.819.18a2 2 0 0 0-.874.874c-.08.156-.145.38-.18.819C4 6.361 4 6.943 4 7.8v8.4c0 .857 0 1.439.038 1.889.035.438.1.663.18.819a2 2 0 0 0 .874.874c.156.08.38.145.819.18C6.361 20 6.943 20 7.8 20h8.4c.857 0 1.439 0 1.889-.038.438-.035.663-.1.819-.18a2 2 0 0 0 .874-.874c.08-.156.145-.38.18-.819.037-.45.038-1.032.038-1.889V7.8c0-.857 0-1.439-.038-1.889-.035-.438-.1-.663-.18-.819a2 2 0 0 0-.874-.874c-.156-.08-.38-.145-.819-.18C17.639 4 17.057 4 16.2 4H7.8c-.857 0-1.439 0-1.889.038'/></svg>"
|
|
324
|
+
exports.stopFilled = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' class='pdsicon'><path fill-rule='evenodd' d='M6.745 3h10.51c.474 0 .883 0 1.22.028.356.029.71.093 1.05.266a2.7 2.7 0 0 1 1.18 1.18c.174.34.238.695.268 1.05.027.338.027.747.027 1.221v10.51c0 .474 0 .883-.027 1.22-.03.356-.094.71-.267 1.05a2.7 2.7 0 0 1-1.18 1.18c-.34.174-.695.238-1.05.268-.338.027-.747.027-1.221.027H6.745c-.474 0-.883 0-1.22-.027-.356-.03-.71-.094-1.05-.267a2.7 2.7 0 0 1-1.18-1.18c-.174-.34-.238-.695-.267-1.05A16 16 0 0 1 3 17.255V6.745c0-.474 0-.883.028-1.22.029-.356.093-.71.266-1.05a2.7 2.7 0 0 1 1.18-1.18c.34-.174.695-.238 1.05-.267A16 16 0 0 1 6.745 3'/></svg>"
|
|
324
325
|
exports.stopwatch = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' class='pdsicon'><path fill-rule='evenodd' d='M9 2a1 1 0 0 1 1-1h4a1 1 0 1 1 0 2h-1v1.052c4.777.5 8.5 4.539 8.5 9.448a9.5 9.5 0 0 1-19 0c0-4.909 3.723-8.948 8.5-9.448V3h-1a1 1 0 0 1-1-1M5.878 3.385a1 1 0 0 1 0 1.414l-.75.75-.75.75a1 1 0 0 1-1.414-1.414l.75-.75.75-.75a1 1 0 0 1 1.414 0m12.244 0a1 1 0 0 1 1.414 0l1.5 1.5a1 1 0 0 1-1.414 1.414l-1.5-1.5a1 1 0 0 1 0-1.414M12 6a7.5 7.5 0 1 0 0 15 7.5 7.5 0 0 0 0-15m0 2.5a1 1 0 0 1 1 1v3.434l2.015 1.209a1 1 0 0 1-1.03 1.714l-2.5-1.5A1 1 0 0 1 11 13.5v-4a1 1 0 0 1 1-1'/></svg>"
|
|
325
326
|
exports.strikethrough = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' class='pdsicon'><path fill-rule='evenodd' d='M7.759 2h8.482c.805 0 1.47 0 2.01.044.563.046 1.08.145 1.565.392a4 4 0 0 1 1.748 1.748c.247.485.346 1.002.392 1.564C22 6.29 22 6.954 22 7.758v8.483c0 .805 0 1.47-.044 2.01-.046.563-.145 1.08-.392 1.565a4 4 0 0 1-1.748 1.748c-.485.247-1.002.346-1.564.392-.541.044-1.206.044-2.01.044H7.758c-.805 0-1.47 0-2.01-.044-.563-.046-1.08-.145-1.565-.392a4 4 0 0 1-1.748-1.748c-.247-.485-.346-1.002-.392-1.564C2 17.71 2 17.046 2 16.242V7.758c0-.805 0-1.47.044-2.01.046-.563.145-1.08.392-1.565a4 4 0 0 1 1.748-1.748c.485-.247 1.002-.346 1.564-.392C6.29 2 6.954 2 7.758 2M5.91 4.038c-.438.035-.663.1-.819.18a2 2 0 0 0-.874.874c-.08.156-.145.38-.18.819C4 6.361 4 6.943 4 7.8v8.4c0 .857 0 1.439.038 1.889.035.438.1.663.18.819a2 2 0 0 0 .874.874c.156.08.38.145.819.18C6.361 20 6.943 20 7.8 20h8.4c.857 0 1.439 0 1.889-.038.438-.035.663-.1.819-.18a2 2 0 0 0 .874-.874c.08-.156.145-.38.18-.819.037-.45.038-1.032.038-1.889V7.8c0-.857 0-1.439-.038-1.889-.035-.438-.1-.663-.18-.819a2 2 0 0 0-.874-.874c-.156-.08-.38-.145-.819-.18C17.639 4 17.057 4 16.2 4H7.8c-.857 0-1.439 0-1.889.038M7.791 8.1A3.5 3.5 0 0 1 11 6h2.167c1.423 0 2.635.891 3.114 2.143a1 1 0 1 1-1.868.714A1.33 1.33 0 0 0 13.167 8H11a1.5 1.5 0 0 0-1.376.9 1 1 0 0 1-1.832-.8M5 12a1 1 0 0 1 1-1h12a1 1 0 1 1 0 2h-1.837A3.5 3.5 0 0 1 13 18h-2.167a3.33 3.33 0 0 1-3.114-2.143 1 1 0 1 1 1.868-.714c.193.503.68.857 1.246.857H13a1.5 1.5 0 0 0 0-3H6a1 1 0 0 1-1-1'/></svg>"
|
|
326
327
|
exports.subscript = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' class='pdsicon'><path d='M12.616 17.926A1 1 0 0 0 13 18a1 1 0 0 0 .71-1.71L9.41 12l4.3-4.29a1.004 1.004 0 1 0-1.42-1.42L8 10.59l-4.29-4.3a1.004 1.004 0 0 0-1.42 1.42L6.59 12l-4.3 4.29a1.004 1.004 0 0 0 1.42 1.42L8 13.41l4.29 4.3q.141.14.326.216M16.293 21.707A1 1 0 0 0 17 22h4a1 1 0 1 0 0-2h-2.8c.13-.28.38-.41.8-.61l.105-.051C20.208 18.805 22 17.937 22 16a3 3 0 0 0-.73-1.95 3.12 3.12 0 0 0-3.87-.65 3.05 3.05 0 0 0-1.34 1.6 1 1 0 1 0 1.88.68 1 1 0 0 1 .45-.54 1.16 1.16 0 0 1 .73-.13 1.1 1.1 0 0 1 .64.35A1 1 0 0 1 20 16c0 .6-.86 1.09-1.93 1.6A3.21 3.21 0 0 0 16 21a1 1 0 0 0 .293.707'/></svg>"
|
package/icons/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* pds-icons v9.
|
|
1
|
+
/* pds-icons v9.11.0, ES Modules */
|
|
2
2
|
|
|
3
3
|
export const accessKey = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' class='pdsicon'><path fill-rule='evenodd' d='M8 9a7 7 0 1 1 6.06 6.937 14 14 0 0 0-.514-.062l-.01.008a9 9 0 0 0-.25.245l-1.579 1.58A1 1 0 0 1 11 18h-1v1a1 1 0 0 1-1 1H8v1a1 1 0 0 1-1 1H4.568c-.252 0-.498 0-.706-.017a2 2 0 0 1-.77-.201 2 2 0 0 1-.874-.874 2 2 0 0 1-.201-.77C2 19.93 2 19.684 2 19.432v-1.82c0-.19-.001-.43.055-.665a2 2 0 0 1 .24-.578c.126-.206.296-.375.43-.509l.036-.036 5.111-5.11c.126-.126.196-.197.245-.25l.008-.01-.003-.045c-.01-.103-.03-.244-.06-.469A7 7 0 0 1 8 9m0 9v-1a1 1 0 0 1 1-1h1.586l1.286-1.286.052-.053c.18-.18.398-.4.646-.539a1.8 1.8 0 0 1 .693-.234c.193-.027.382-.014.52 0 .145.014.324.038.525.065l.018.002q.33.045.674.045a5 5 0 1 0-4.955-4.326l.002.018c.027.201.051.38.065.524.014.14.027.328 0 .521-.038.265-.104.46-.234.693-.14.248-.359.466-.54.646l-.052.052-5.11 5.11a6 6 0 0 0-.171.175l-.002.002v.004a6 6 0 0 0-.003.244V19.4a8 8 0 0 0 .011.588l.014.002c.116.01.278.01.575.01H6v-1a1 1 0 0 1 1-1zm6-11a1 1 0 0 1 1-1c.766 0 1.536.293 2.121.879.586.585.879 1.355.879 2.12A1 1 0 1 1 16 9a1 1 0 0 0-.293-.707A1 1 0 0 0 15 8a1 1 0 0 1-1-1'/></svg>"
|
|
4
4
|
export const activity = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' class='pdsicon'><path fill-rule='evenodd' d='M9 2a1 1 0 0 1 .949.684L15 17.838l2.051-6.154A1 1 0 0 1 18 11h4a1 1 0 1 1 0 2h-3.28l-2.771 8.316a1 1 0 0 1-1.898 0L9 6.162l-2.051 6.154A1 1 0 0 1 6 13H2a1 1 0 1 1 0-2h3.28L8.05 2.684A1 1 0 0 1 9 2'/></svg>"
|
|
@@ -321,6 +321,7 @@ export const star03 = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/200
|
|
|
321
321
|
export const starFilled = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' class='pdsicon'><path d='M12.646 1.776a1.5 1.5 0 0 0-1.292 0c-.353.168-.547.46-.645.62a8 8 0 0 0-.307.583L8.246 7.346l-4.822.705c-.227.033-.46.067-.65.113-.182.044-.52.139-.789.423a1.5 1.5 0 0 0-.398 1.228c.051.387.27.663.391.805.127.148.295.312.46.472l3.488 3.397-.823 4.799a8 8 0 0 0-.095.652c-.014.187-.029.538.158.882a1.5 1.5 0 0 0 1.045.759c.384.071.714-.051.887-.123.18-.075.388-.184.591-.291L12 18.9l4.31 2.267c.204.107.412.216.592.29.174.073.503.195.887.124a1.5 1.5 0 0 0 1.045-.76c.187-.343.172-.694.158-.881a8 8 0 0 0-.095-.652l-.822-4.799 3.487-3.397c.165-.16.333-.324.46-.472.122-.142.34-.418.39-.805a1.5 1.5 0 0 0-.397-1.228c-.27-.284-.607-.38-.79-.423-.189-.046-.422-.08-.649-.113l-4.822-.705L13.6 2.98a8 8 0 0 0-.308-.582c-.098-.16-.292-.453-.645-.621'/></svg>"
|
|
322
322
|
export const starsTone = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' class='pdsicon'><path d='m15 2 1.179 3.064c.282.734.423 1.1.642 1.409a3 3 0 0 0 .706.706c.309.22.675.36 1.409.642L22 9l-3.064 1.179c-.734.282-1.1.423-1.409.642a3 3 0 0 0-.706.706c-.22.309-.36.675-.642 1.409L15 16l-1.179-3.064c-.282-.734-.423-1.1-.642-1.409a3 3 0 0 0-.706-.706c-.309-.22-.675-.36-1.409-.642L8 9l3.064-1.179c.734-.282 1.1-.423 1.409-.642a3 3 0 0 0 .706-.706c.22-.309.36-.675.642-1.409z' opacity='.12'/><path fill-rule='evenodd' d='M15 1a1 1 0 0 1 .933.641l1.179 3.064c.3.781.395 1.007.524 1.188a2 2 0 0 0 .47.471c.182.13.407.224 1.189.524l3.064 1.179a1 1 0 0 1 0 1.866l-3.064 1.179c-.782.3-1.007.395-1.188.524q-.274.197-.471.47c-.13.182-.224.408-.524 1.189l-1.179 3.064a1 1 0 0 1-1.866 0l-1.179-3.064c-.3-.781-.395-1.007-.524-1.188a2 2 0 0 0-.47-.471c-.182-.13-.408-.224-1.189-.524L7.641 9.933a1 1 0 0 1 0-1.866l3.064-1.179c.781-.3 1.007-.395 1.188-.524a2 2 0 0 0 .471-.47c.13-.182.224-.408.524-1.189l1.179-3.064A1 1 0 0 1 15 1m0 3.786-.245.637-.04.102c-.243.635-.427 1.114-.72 1.527a4 4 0 0 1-.943.942c-.413.294-.892.478-1.527.722l-.102.039-.637.245.637.245.102.04c.635.243 1.114.427 1.527.72a4 4 0 0 1 .942.943c.294.413.478.892.722 1.527l.039.102.245.637.245-.637.04-.102c.243-.635.427-1.114.72-1.527a4 4 0 0 1 .943-.942c.413-.294.892-.478 1.526-.722l.103-.039.637-.245-.637-.245-.103-.04c-.634-.243-1.113-.427-1.526-.72a4 4 0 0 1-.942-.943c-.294-.413-.478-.892-.722-1.527l-.039-.102zM6.5 12a1 1 0 0 1 .894.553l.785 1.569c.282.565.368.727.473.863a2 2 0 0 0 .363.363c.136.104.298.19.863.473l1.57.785a1 1 0 0 1 0 1.788l-1.57.785c-.565.282-.727.369-.863.473a2 2 0 0 0-.363.363c-.105.136-.19.298-.473.863l-.785 1.57a1 1 0 0 1-1.788 0l-.785-1.57c-.282-.565-.368-.727-.473-.863a2 2 0 0 0-.363-.363c-.136-.105-.298-.19-.863-.473l-1.57-.785a1 1 0 0 1 0-1.788l1.57-.785c.565-.282.727-.368.863-.473a2 2 0 0 0 .363-.363c.105-.136.19-.298.473-.863l.785-1.57A1 1 0 0 1 6.5 12m0 3.236c-.195.39-.356.695-.568.97q-.317.41-.726.726c-.275.212-.58.373-.97.568.39.195.695.356.97.568q.41.317.726.726c.212.275.373.58.568.97.195-.39.356-.695.568-.97q.317-.41.726-.726c.275-.212.58-.373.97-.568-.39-.195-.695-.356-.97-.568a4 4 0 0 1-.726-.726c-.212-.275-.373-.58-.568-.97'/></svg>"
|
|
323
323
|
export const stop = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' class='pdsicon'><path fill-rule='evenodd' d='M7.759 2h8.482c.805 0 1.47 0 2.01.044.563.046 1.08.145 1.565.392a4 4 0 0 1 1.748 1.748c.247.485.346 1.002.392 1.564C22 6.29 22 6.954 22 7.758v8.483c0 .805 0 1.47-.044 2.01-.046.563-.145 1.08-.392 1.565a4 4 0 0 1-1.748 1.748c-.485.247-1.002.346-1.564.392-.541.044-1.206.044-2.01.044H7.758c-.805 0-1.47 0-2.01-.044-.563-.046-1.08-.145-1.565-.392a4 4 0 0 1-1.748-1.748c-.247-.485-.346-1.002-.392-1.564C2 17.71 2 17.046 2 16.242V7.758c0-.805 0-1.47.044-2.01.046-.563.145-1.08.392-1.565a4 4 0 0 1 1.748-1.748c.485-.247 1.002-.346 1.564-.392C6.29 2 6.954 2 7.758 2M5.91 4.038c-.438.035-.663.1-.819.18a2 2 0 0 0-.874.874c-.08.156-.145.38-.18.819C4 6.361 4 6.943 4 7.8v8.4c0 .857 0 1.439.038 1.889.035.438.1.663.18.819a2 2 0 0 0 .874.874c.156.08.38.145.819.18C6.361 20 6.943 20 7.8 20h8.4c.857 0 1.439 0 1.889-.038.438-.035.663-.1.819-.18a2 2 0 0 0 .874-.874c.08-.156.145-.38.18-.819.037-.45.038-1.032.038-1.889V7.8c0-.857 0-1.439-.038-1.889-.035-.438-.1-.663-.18-.819a2 2 0 0 0-.874-.874c-.156-.08-.38-.145-.819-.18C17.639 4 17.057 4 16.2 4H7.8c-.857 0-1.439 0-1.889.038'/></svg>"
|
|
324
|
+
export const stopFilled = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' class='pdsicon'><path fill-rule='evenodd' d='M6.745 3h10.51c.474 0 .883 0 1.22.028.356.029.71.093 1.05.266a2.7 2.7 0 0 1 1.18 1.18c.174.34.238.695.268 1.05.027.338.027.747.027 1.221v10.51c0 .474 0 .883-.027 1.22-.03.356-.094.71-.267 1.05a2.7 2.7 0 0 1-1.18 1.18c-.34.174-.695.238-1.05.268-.338.027-.747.027-1.221.027H6.745c-.474 0-.883 0-1.22-.027-.356-.03-.71-.094-1.05-.267a2.7 2.7 0 0 1-1.18-1.18c-.174-.34-.238-.695-.267-1.05A16 16 0 0 1 3 17.255V6.745c0-.474 0-.883.028-1.22.029-.356.093-.71.266-1.05a2.7 2.7 0 0 1 1.18-1.18c.34-.174.695-.238 1.05-.267A16 16 0 0 1 6.745 3'/></svg>"
|
|
324
325
|
export const stopwatch = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' class='pdsicon'><path fill-rule='evenodd' d='M9 2a1 1 0 0 1 1-1h4a1 1 0 1 1 0 2h-1v1.052c4.777.5 8.5 4.539 8.5 9.448a9.5 9.5 0 0 1-19 0c0-4.909 3.723-8.948 8.5-9.448V3h-1a1 1 0 0 1-1-1M5.878 3.385a1 1 0 0 1 0 1.414l-.75.75-.75.75a1 1 0 0 1-1.414-1.414l.75-.75.75-.75a1 1 0 0 1 1.414 0m12.244 0a1 1 0 0 1 1.414 0l1.5 1.5a1 1 0 0 1-1.414 1.414l-1.5-1.5a1 1 0 0 1 0-1.414M12 6a7.5 7.5 0 1 0 0 15 7.5 7.5 0 0 0 0-15m0 2.5a1 1 0 0 1 1 1v3.434l2.015 1.209a1 1 0 0 1-1.03 1.714l-2.5-1.5A1 1 0 0 1 11 13.5v-4a1 1 0 0 1 1-1'/></svg>"
|
|
325
326
|
export const strikethrough = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' class='pdsicon'><path fill-rule='evenodd' d='M7.759 2h8.482c.805 0 1.47 0 2.01.044.563.046 1.08.145 1.565.392a4 4 0 0 1 1.748 1.748c.247.485.346 1.002.392 1.564C22 6.29 22 6.954 22 7.758v8.483c0 .805 0 1.47-.044 2.01-.046.563-.145 1.08-.392 1.565a4 4 0 0 1-1.748 1.748c-.485.247-1.002.346-1.564.392-.541.044-1.206.044-2.01.044H7.758c-.805 0-1.47 0-2.01-.044-.563-.046-1.08-.145-1.565-.392a4 4 0 0 1-1.748-1.748c-.247-.485-.346-1.002-.392-1.564C2 17.71 2 17.046 2 16.242V7.758c0-.805 0-1.47.044-2.01.046-.563.145-1.08.392-1.565a4 4 0 0 1 1.748-1.748c.485-.247 1.002-.346 1.564-.392C6.29 2 6.954 2 7.758 2M5.91 4.038c-.438.035-.663.1-.819.18a2 2 0 0 0-.874.874c-.08.156-.145.38-.18.819C4 6.361 4 6.943 4 7.8v8.4c0 .857 0 1.439.038 1.889.035.438.1.663.18.819a2 2 0 0 0 .874.874c.156.08.38.145.819.18C6.361 20 6.943 20 7.8 20h8.4c.857 0 1.439 0 1.889-.038.438-.035.663-.1.819-.18a2 2 0 0 0 .874-.874c.08-.156.145-.38.18-.819.037-.45.038-1.032.038-1.889V7.8c0-.857 0-1.439-.038-1.889-.035-.438-.1-.663-.18-.819a2 2 0 0 0-.874-.874c-.156-.08-.38-.145-.819-.18C17.639 4 17.057 4 16.2 4H7.8c-.857 0-1.439 0-1.889.038M7.791 8.1A3.5 3.5 0 0 1 11 6h2.167c1.423 0 2.635.891 3.114 2.143a1 1 0 1 1-1.868.714A1.33 1.33 0 0 0 13.167 8H11a1.5 1.5 0 0 0-1.376.9 1 1 0 0 1-1.832-.8M5 12a1 1 0 0 1 1-1h12a1 1 0 1 1 0 2h-1.837A3.5 3.5 0 0 1 13 18h-2.167a3.33 3.33 0 0 1-3.114-2.143 1 1 0 1 1 1.868-.714c.193.503.68.857 1.246.857H13a1.5 1.5 0 0 0 0-3H6a1 1 0 0 1-1-1'/></svg>"
|
|
326
327
|
export const subscript = "data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' class='pdsicon'><path d='M12.616 17.926A1 1 0 0 0 13 18a1 1 0 0 0 .71-1.71L9.41 12l4.3-4.29a1.004 1.004 0 1 0-1.42-1.42L8 10.59l-4.29-4.3a1.004 1.004 0 0 0-1.42 1.42L6.59 12l-4.3 4.29a1.004 1.004 0 0 0 1.42 1.42L8 13.41l4.29 4.3q.141.14.326.216M16.293 21.707A1 1 0 0 0 17 22h4a1 1 0 1 0 0-2h-2.8c.13-.28.38-.41.8-.61l.105-.051C20.208 18.805 22 17.937 22 16a3 3 0 0 0-.73-1.95 3.12 3.12 0 0 0-3.87-.65 3.05 3.05 0 0 0-1.34 1.6 1 1 0 1 0 1.88.68 1 1 0 0 1 .45-.54 1.16 1.16 0 0 1 .73-.13 1.1 1.1 0 0 1 .64.35A1 1 0 0 1 20 16c0 .6-.86 1.09-1.93 1.6A3.21 3.21 0 0 0 16 21a1 1 0 0 0 .293.707'/></svg>"
|
package/icons/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pine-ds/icons",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.12.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "Pine Icon Library",
|
|
6
6
|
"author": " Kajabi Design System Services",
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
"icons/"
|
|
60
60
|
],
|
|
61
61
|
"dependencies": {
|
|
62
|
-
"@stencil/core": "4.
|
|
62
|
+
"@stencil/core": "4.38.3"
|
|
63
63
|
},
|
|
64
64
|
"devDependencies": {
|
|
65
65
|
"@commitlint/cli": "^17.7.2",
|