├── .github ├── FUNDING.yml ├── issue_template.md └── workflows │ └── release.yml ├── .gitignore ├── .gitmodules ├── .npmrc ├── .prettierignore ├── .prettierrc.js ├── .vscode └── settings.json ├── .yarnrc.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── config.json ├── demo-snippets ├── fonts │ ├── Bahianita-Regular.ttf │ ├── CabinSketch-Bold.ttf │ ├── CabinSketch-Regular.ttf │ ├── montserrat-bold.ttf │ └── montserrat-regular.ttf ├── package.json └── vue │ ├── AutoSize.vue │ ├── Basic.vue │ ├── LinkTap.vue │ ├── PerfsTest.vue │ ├── Tests.vue │ ├── VerticalAlignment.vue │ └── install.ts ├── docs ├── .nojekyll ├── assets │ ├── hierarchy.js │ ├── highlight.css │ ├── icons.js │ ├── icons.svg │ ├── main.js │ ├── navigation.js │ ├── search.js │ └── style.css ├── classes │ └── Label.html ├── hierarchy.html ├── index.html ├── modules.html ├── types │ ├── LineBreak.html │ └── VerticalTextAlignment.html └── variables │ ├── htmlProperty.html │ └── verticalTextAlignmentProperty.html ├── eslint.config.mjs ├── lerna.json ├── package.json ├── packages └── label │ ├── .npmignore │ ├── CHANGELOG.md │ ├── README.md │ ├── blueprint.md │ ├── package.json │ ├── platforms │ ├── android │ │ ├── AndroidManifest.xml │ │ ├── include.gradle │ │ ├── java │ │ │ └── com │ │ │ │ └── nativescript │ │ │ │ └── label │ │ │ │ └── NSLabel.java │ │ ├── native-api-usage.json │ │ └── res │ │ │ └── layout │ │ │ └── ns_label.xml │ └── ios │ │ ├── Podfile │ │ └── src │ │ ├── NSLabel.swift │ │ ├── NSLabelUtils.swift │ │ ├── NSTextView.swift │ │ └── UILabelLinkHandler.swift │ └── tsconfig.json ├── pnpm-workspace.yaml ├── references.d.ts ├── src └── label │ ├── index-common.ts │ ├── index.android.ts │ ├── index.d.ts │ ├── index.ios.ts │ ├── references.d.ts │ └── typings │ ├── android.d.ts │ └── ios.d.ts ├── svelte.config.js ├── tsconfig.json ├── tsconfig.vue3.json └── yarn.lock /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [farfromrefug] 2 | -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/.gitmodules -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/.npmrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | package-lock.json 2 | node_modules/ 3 | plugin/ 4 | docs/ 5 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/README.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/config.json -------------------------------------------------------------------------------- /demo-snippets/fonts/Bahianita-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/demo-snippets/fonts/Bahianita-Regular.ttf -------------------------------------------------------------------------------- /demo-snippets/fonts/CabinSketch-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/demo-snippets/fonts/CabinSketch-Bold.ttf -------------------------------------------------------------------------------- /demo-snippets/fonts/CabinSketch-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/demo-snippets/fonts/CabinSketch-Regular.ttf -------------------------------------------------------------------------------- /demo-snippets/fonts/montserrat-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/demo-snippets/fonts/montserrat-bold.ttf -------------------------------------------------------------------------------- /demo-snippets/fonts/montserrat-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/demo-snippets/fonts/montserrat-regular.ttf -------------------------------------------------------------------------------- /demo-snippets/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/demo-snippets/package.json -------------------------------------------------------------------------------- /demo-snippets/vue/AutoSize.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/demo-snippets/vue/AutoSize.vue -------------------------------------------------------------------------------- /demo-snippets/vue/Basic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/demo-snippets/vue/Basic.vue -------------------------------------------------------------------------------- /demo-snippets/vue/LinkTap.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/demo-snippets/vue/LinkTap.vue -------------------------------------------------------------------------------- /demo-snippets/vue/PerfsTest.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/demo-snippets/vue/PerfsTest.vue -------------------------------------------------------------------------------- /demo-snippets/vue/Tests.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/demo-snippets/vue/Tests.vue -------------------------------------------------------------------------------- /demo-snippets/vue/VerticalAlignment.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/demo-snippets/vue/VerticalAlignment.vue -------------------------------------------------------------------------------- /demo-snippets/vue/install.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/demo-snippets/vue/install.ts -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/docs/.nojekyll -------------------------------------------------------------------------------- /docs/assets/hierarchy.js: -------------------------------------------------------------------------------- 1 | window.hierarchyData = "eJyrVirKzy8pVrKKjtVRKkpNy0lNLsnMzytWsqqurQUAmx4Kpg==" -------------------------------------------------------------------------------- /docs/assets/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/docs/assets/highlight.css -------------------------------------------------------------------------------- /docs/assets/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/docs/assets/icons.js -------------------------------------------------------------------------------- /docs/assets/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/docs/assets/icons.svg -------------------------------------------------------------------------------- /docs/assets/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/docs/assets/main.js -------------------------------------------------------------------------------- /docs/assets/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/docs/assets/navigation.js -------------------------------------------------------------------------------- /docs/assets/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/docs/assets/search.js -------------------------------------------------------------------------------- /docs/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/docs/assets/style.css -------------------------------------------------------------------------------- /docs/classes/Label.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/docs/classes/Label.html -------------------------------------------------------------------------------- /docs/hierarchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/docs/hierarchy.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/docs/modules.html -------------------------------------------------------------------------------- /docs/types/LineBreak.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/docs/types/LineBreak.html -------------------------------------------------------------------------------- /docs/types/VerticalTextAlignment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/docs/types/VerticalTextAlignment.html -------------------------------------------------------------------------------- /docs/variables/htmlProperty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/docs/variables/htmlProperty.html -------------------------------------------------------------------------------- /docs/variables/verticalTextAlignmentProperty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/docs/variables/verticalTextAlignmentProperty.html -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/lerna.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/package.json -------------------------------------------------------------------------------- /packages/label/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/packages/label/.npmignore -------------------------------------------------------------------------------- /packages/label/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/packages/label/CHANGELOG.md -------------------------------------------------------------------------------- /packages/label/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/packages/label/README.md -------------------------------------------------------------------------------- /packages/label/blueprint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/packages/label/blueprint.md -------------------------------------------------------------------------------- /packages/label/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/packages/label/package.json -------------------------------------------------------------------------------- /packages/label/platforms/android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/packages/label/platforms/android/AndroidManifest.xml -------------------------------------------------------------------------------- /packages/label/platforms/android/include.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/packages/label/platforms/android/include.gradle -------------------------------------------------------------------------------- /packages/label/platforms/android/java/com/nativescript/label/NSLabel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/packages/label/platforms/android/java/com/nativescript/label/NSLabel.java -------------------------------------------------------------------------------- /packages/label/platforms/android/native-api-usage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/packages/label/platforms/android/native-api-usage.json -------------------------------------------------------------------------------- /packages/label/platforms/android/res/layout/ns_label.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/packages/label/platforms/android/res/layout/ns_label.xml -------------------------------------------------------------------------------- /packages/label/platforms/ios/Podfile: -------------------------------------------------------------------------------- 1 | # pod 'DTCoreText' -------------------------------------------------------------------------------- /packages/label/platforms/ios/src/NSLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/packages/label/platforms/ios/src/NSLabel.swift -------------------------------------------------------------------------------- /packages/label/platforms/ios/src/NSLabelUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/packages/label/platforms/ios/src/NSLabelUtils.swift -------------------------------------------------------------------------------- /packages/label/platforms/ios/src/NSTextView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/packages/label/platforms/ios/src/NSTextView.swift -------------------------------------------------------------------------------- /packages/label/platforms/ios/src/UILabelLinkHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/packages/label/platforms/ios/src/UILabelLinkHandler.swift -------------------------------------------------------------------------------- /packages/label/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/packages/label/tsconfig.json -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /references.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/label/index-common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/src/label/index-common.ts -------------------------------------------------------------------------------- /src/label/index.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/src/label/index.android.ts -------------------------------------------------------------------------------- /src/label/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/src/label/index.d.ts -------------------------------------------------------------------------------- /src/label/index.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/src/label/index.ios.ts -------------------------------------------------------------------------------- /src/label/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/src/label/references.d.ts -------------------------------------------------------------------------------- /src/label/typings/android.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/src/label/typings/android.d.ts -------------------------------------------------------------------------------- /src/label/typings/ios.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/src/label/typings/ios.d.ts -------------------------------------------------------------------------------- /svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/svelte.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.vue3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/tsconfig.vue3.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nativescript-community/ui-label/HEAD/yarn.lock --------------------------------------------------------------------------------