@castlabs/ui 6.0.0 → 6.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@castlabs/ui",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.1",
|
|
4
4
|
"repository": "https://github.com/castlabs/ui-styleguide",
|
|
5
5
|
"private": false,
|
|
6
6
|
"description": "A vanilla HTML/CS/JS & Vue.js component library for Castlabs.",
|
|
@@ -15,9 +15,10 @@
|
|
|
15
15
|
"test": "vitest run --environment jsdom --root tests/unit/",
|
|
16
16
|
"test:unit": "vitest run --no-color --environment jsdom --root tests/unit/",
|
|
17
17
|
|
|
18
|
-
"lint": "npm-run-all lint:stylelint lint:eslint",
|
|
18
|
+
"lint": "npm-run-all lint:stylelint lint:eslint lint:type-check",
|
|
19
19
|
"lint:eslint": "eslint .",
|
|
20
20
|
"lint:stylelint": "stylelint \"**/*.{css,scss}\" --ignore-path .gitignore",
|
|
21
|
+
"lint:type-check": "vue-tsc --noEmit -p tsconfig.types.json",
|
|
21
22
|
|
|
22
23
|
"fix": "npm-run-all fix:stylelint fix:prettier fix:eslint",
|
|
23
24
|
"fix:eslint": "eslint . --fix",
|
package/types/index.d.ts
CHANGED
|
@@ -1,59 +1,59 @@
|
|
|
1
|
-
import type { App,
|
|
1
|
+
import type { App, DefineComponent } from 'vue'
|
|
2
2
|
|
|
3
3
|
declare function install (Vue: App): void
|
|
4
4
|
export default install
|
|
5
5
|
|
|
6
6
|
export function castlabsUi (Vue: App): void
|
|
7
7
|
|
|
8
|
-
export const ClAlert:
|
|
9
|
-
export const ClBackCancelOk:
|
|
10
|
-
export const ClCookieBanner:
|
|
11
|
-
export const ClDropzone:
|
|
12
|
-
export const ClField:
|
|
13
|
-
export const ClFieldCheck:
|
|
14
|
-
export const ClFieldGroup:
|
|
15
|
-
export const ClIconotron:
|
|
16
|
-
export const ClInfo:
|
|
17
|
-
export const ClMockRouterLink:
|
|
18
|
-
export const ClModal:
|
|
19
|
-
export const ClModalConfirm:
|
|
20
|
-
export const ClModalOk:
|
|
21
|
-
export const ClNavSide:
|
|
22
|
-
export const ClNavTop:
|
|
23
|
-
export const ClPage:
|
|
24
|
-
export const ClPagination:
|
|
25
|
-
export const ClSectionForm:
|
|
26
|
-
export const ClSectionHeadline:
|
|
27
|
-
export const ClSectionMain:
|
|
28
|
-
export const ClSectionMainSide:
|
|
29
|
-
export const ClSpinner:
|
|
30
|
-
export const ClTable:
|
|
31
|
-
export const ClTableCel:
|
|
32
|
-
export const ClTableCelActions:
|
|
33
|
-
export const ClTableCelAudit:
|
|
34
|
-
export const ClTableCelBoolean:
|
|
35
|
-
export const ClTableCelCheckbox:
|
|
36
|
-
export const ClTableCelCode:
|
|
37
|
-
export const ClTableCelCurrency:
|
|
38
|
-
export const ClTableCelDate:
|
|
39
|
-
export const ClTableCelId:
|
|
40
|
-
export const ClTableCelLinks:
|
|
41
|
-
export const ClTableCelUuid:
|
|
42
|
-
export const ClTableFootChecked:
|
|
43
|
-
export const ClTableHead:
|
|
44
|
-
export const ClTabs:
|
|
45
|
-
export const ClToggle:
|
|
46
|
-
|
|
47
|
-
export const ClCopy:
|
|
48
|
-
export const ClCreditcardNumber:
|
|
49
|
-
export const ClHashtag:
|
|
50
|
-
export const ClLinkExternal:
|
|
51
|
-
export const ClMailto:
|
|
52
|
-
export const ClOrg:
|
|
53
|
-
export const ClPlan:
|
|
54
|
-
export const ClRole:
|
|
55
|
-
|
|
56
|
-
export const ClLorem:
|
|
8
|
+
export const ClAlert: DefineComponent
|
|
9
|
+
export const ClBackCancelOk: DefineComponent
|
|
10
|
+
export const ClCookieBanner: DefineComponent
|
|
11
|
+
export const ClDropzone: DefineComponent
|
|
12
|
+
export const ClField: DefineComponent
|
|
13
|
+
export const ClFieldCheck: DefineComponent
|
|
14
|
+
export const ClFieldGroup: DefineComponent
|
|
15
|
+
export const ClIconotron: DefineComponent
|
|
16
|
+
export const ClInfo: DefineComponent
|
|
17
|
+
export const ClMockRouterLink: DefineComponent
|
|
18
|
+
export const ClModal: DefineComponent
|
|
19
|
+
export const ClModalConfirm: DefineComponent
|
|
20
|
+
export const ClModalOk: DefineComponent
|
|
21
|
+
export const ClNavSide: DefineComponent
|
|
22
|
+
export const ClNavTop: DefineComponent
|
|
23
|
+
export const ClPage: DefineComponent
|
|
24
|
+
export const ClPagination: DefineComponent
|
|
25
|
+
export const ClSectionForm: DefineComponent
|
|
26
|
+
export const ClSectionHeadline: DefineComponent
|
|
27
|
+
export const ClSectionMain: DefineComponent
|
|
28
|
+
export const ClSectionMainSide: DefineComponent
|
|
29
|
+
export const ClSpinner: DefineComponent
|
|
30
|
+
export const ClTable: DefineComponent
|
|
31
|
+
export const ClTableCel: DefineComponent
|
|
32
|
+
export const ClTableCelActions: DefineComponent
|
|
33
|
+
export const ClTableCelAudit: DefineComponent
|
|
34
|
+
export const ClTableCelBoolean: DefineComponent
|
|
35
|
+
export const ClTableCelCheckbox: DefineComponent
|
|
36
|
+
export const ClTableCelCode: DefineComponent
|
|
37
|
+
export const ClTableCelCurrency: DefineComponent
|
|
38
|
+
export const ClTableCelDate: DefineComponent
|
|
39
|
+
export const ClTableCelId: DefineComponent
|
|
40
|
+
export const ClTableCelLinks: DefineComponent
|
|
41
|
+
export const ClTableCelUuid: DefineComponent
|
|
42
|
+
export const ClTableFootChecked: DefineComponent
|
|
43
|
+
export const ClTableHead: DefineComponent
|
|
44
|
+
export const ClTabs: DefineComponent
|
|
45
|
+
export const ClToggle: DefineComponent
|
|
46
|
+
|
|
47
|
+
export const ClCopy: DefineComponent
|
|
48
|
+
export const ClCreditcardNumber: DefineComponent
|
|
49
|
+
export const ClHashtag: DefineComponent
|
|
50
|
+
export const ClLinkExternal: DefineComponent
|
|
51
|
+
export const ClMailto: DefineComponent
|
|
52
|
+
export const ClOrg: DefineComponent
|
|
53
|
+
export const ClPlan: DefineComponent
|
|
54
|
+
export const ClRole: DefineComponent
|
|
55
|
+
|
|
56
|
+
export const ClLorem: DefineComponent
|
|
57
57
|
|
|
58
58
|
// --- utils/ui ----------------------------------------------------------------
|
|
59
59
|
|