@itfin/components 1.3.38 → 1.3.39
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 +4 -3
- package/src/assets/scss/_dark-theme.scss +5 -0
- package/src/assets/scss/main.scss +0 -1
- package/src/directives/visible.js +5 -7
- package/dist/ITFComponents.common.js +0 -133
- package/dist/ITFComponents.common.js.map +0 -1
- package/dist/ITFComponents.umd.js +0 -143
- package/dist/ITFComponents.umd.js.map +0 -1
- package/dist/ITFComponents.umd.min.js +0 -2
- package/dist/ITFComponents.umd.min.js.map +0 -1
- package/dist/demo.html +0 -10
- package/dist/tailwind.css +0 -937
- package/src/assets/scss/_fonts.scss +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@itfin/components",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.39",
|
|
4
4
|
"author": "Vitalii Savchuk <esvit666@gmail.com>",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"serve": "vue-cli-service serve",
|
|
@@ -37,14 +37,13 @@
|
|
|
37
37
|
"@mdi/js": "^7.2.96",
|
|
38
38
|
"@popperjs/core": "^2.11.8",
|
|
39
39
|
"@shopify/draggable": "^1.0.0-beta.8",
|
|
40
|
-
"@vue/cli-service": "^5.0.1",
|
|
41
40
|
"@vue/composition-api": "^1.7.1",
|
|
42
41
|
"@vue/web-component-wrapper": "^1.3.0",
|
|
43
42
|
"air-datepicker": "^3.3.5",
|
|
44
43
|
"bootstrap": "^5.3.x",
|
|
45
44
|
"bpmn-js": "^17.0.2",
|
|
45
|
+
"clipboard": "^2.0.11",
|
|
46
46
|
"core-js": "^3.7.0",
|
|
47
|
-
"debug": "^4.2.0",
|
|
48
47
|
"intersection-observer": "^0.12.2",
|
|
49
48
|
"lodash": "^4.17.20",
|
|
50
49
|
"luxon": "^3.3.0",
|
|
@@ -57,6 +56,7 @@
|
|
|
57
56
|
"vue-virtual-scroller": "^1.1.2"
|
|
58
57
|
},
|
|
59
58
|
"devDependencies": {
|
|
59
|
+
"@vue/cli-service": "^5.0.1",
|
|
60
60
|
"@babel/eslint-parser": "^7.19.1",
|
|
61
61
|
"@babel/plugin-proposal-numeric-separator": "^7.18.6",
|
|
62
62
|
"@babel/plugin-syntax-numeric-separator": "^7.10.4",
|
|
@@ -76,6 +76,7 @@
|
|
|
76
76
|
"eslint-plugin-vue": "^9.9.0",
|
|
77
77
|
"fibers": "^5.0.0",
|
|
78
78
|
"marked": "^4.2.5",
|
|
79
|
+
"postcss-cli": "^11.0.0",
|
|
79
80
|
"sass": "^1.29.0",
|
|
80
81
|
"sass-loader": "^10.0.5",
|
|
81
82
|
"vue": "^2.6.12",
|
|
@@ -1,6 +1,4 @@
|
|
|
1
|
-
import 'intersection-observer'
|
|
2
|
-
import debug from 'debug'
|
|
3
|
-
const log = debug("app:directives/visible")
|
|
1
|
+
import 'intersection-observer';
|
|
4
2
|
|
|
5
3
|
const instances = new WeakMap();
|
|
6
4
|
|
|
@@ -21,17 +19,17 @@ function createObserver(el, vnode, modifiers, callback) {
|
|
|
21
19
|
return observer;
|
|
22
20
|
}
|
|
23
21
|
function disconnectObserver(observer, el) {
|
|
24
|
-
log('Disconnecting observer', el);
|
|
22
|
+
console.log('Disconnecting observer', el);
|
|
25
23
|
if (observer) observer.disconnect();
|
|
26
24
|
}
|
|
27
25
|
|
|
28
26
|
function bind(el, { value, modifiers }, vnode) {
|
|
29
|
-
log("Binding element", el);
|
|
27
|
+
console.log("Binding element", el);
|
|
30
28
|
if (typeof window.IntersectionObserver === 'undefined') {
|
|
31
|
-
log('IntersectionObserver API is not available in your browser.')
|
|
29
|
+
console.log('IntersectionObserver API is not available in your browser.')
|
|
32
30
|
} else {
|
|
33
31
|
const observer = createObserver(el, vnode, modifiers, () => {
|
|
34
|
-
log("Element is visible", el)
|
|
32
|
+
console.log("Element is visible", el)
|
|
35
33
|
const callback = value;
|
|
36
34
|
if (typeof callback === "function") callback();
|
|
37
35
|
})
|
|
@@ -1,133 +0,0 @@
|
|
|
1
|
-
module.exports =
|
|
2
|
-
/******/ (function(modules) { // webpackBootstrap
|
|
3
|
-
/******/ // The module cache
|
|
4
|
-
/******/ var installedModules = {};
|
|
5
|
-
/******/
|
|
6
|
-
/******/ // The require function
|
|
7
|
-
/******/ function __webpack_require__(moduleId) {
|
|
8
|
-
/******/
|
|
9
|
-
/******/ // Check if module is in cache
|
|
10
|
-
/******/ if(installedModules[moduleId]) {
|
|
11
|
-
/******/ return installedModules[moduleId].exports;
|
|
12
|
-
/******/ }
|
|
13
|
-
/******/ // Create a new module (and put it into the cache)
|
|
14
|
-
/******/ var module = installedModules[moduleId] = {
|
|
15
|
-
/******/ i: moduleId,
|
|
16
|
-
/******/ l: false,
|
|
17
|
-
/******/ exports: {}
|
|
18
|
-
/******/ };
|
|
19
|
-
/******/
|
|
20
|
-
/******/ // Execute the module function
|
|
21
|
-
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
|
22
|
-
/******/
|
|
23
|
-
/******/ // Flag the module as loaded
|
|
24
|
-
/******/ module.l = true;
|
|
25
|
-
/******/
|
|
26
|
-
/******/ // Return the exports of the module
|
|
27
|
-
/******/ return module.exports;
|
|
28
|
-
/******/ }
|
|
29
|
-
/******/
|
|
30
|
-
/******/
|
|
31
|
-
/******/ // expose the modules object (__webpack_modules__)
|
|
32
|
-
/******/ __webpack_require__.m = modules;
|
|
33
|
-
/******/
|
|
34
|
-
/******/ // expose the module cache
|
|
35
|
-
/******/ __webpack_require__.c = installedModules;
|
|
36
|
-
/******/
|
|
37
|
-
/******/ // define getter function for harmony exports
|
|
38
|
-
/******/ __webpack_require__.d = function(exports, name, getter) {
|
|
39
|
-
/******/ if(!__webpack_require__.o(exports, name)) {
|
|
40
|
-
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
|
41
|
-
/******/ }
|
|
42
|
-
/******/ };
|
|
43
|
-
/******/
|
|
44
|
-
/******/ // define __esModule on exports
|
|
45
|
-
/******/ __webpack_require__.r = function(exports) {
|
|
46
|
-
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
|
47
|
-
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
48
|
-
/******/ }
|
|
49
|
-
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
|
50
|
-
/******/ };
|
|
51
|
-
/******/
|
|
52
|
-
/******/ // create a fake namespace object
|
|
53
|
-
/******/ // mode & 1: value is a module id, require it
|
|
54
|
-
/******/ // mode & 2: merge all properties of value into the ns
|
|
55
|
-
/******/ // mode & 4: return value when already ns object
|
|
56
|
-
/******/ // mode & 8|1: behave like require
|
|
57
|
-
/******/ __webpack_require__.t = function(value, mode) {
|
|
58
|
-
/******/ if(mode & 1) value = __webpack_require__(value);
|
|
59
|
-
/******/ if(mode & 8) return value;
|
|
60
|
-
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
|
61
|
-
/******/ var ns = Object.create(null);
|
|
62
|
-
/******/ __webpack_require__.r(ns);
|
|
63
|
-
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
|
64
|
-
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
|
65
|
-
/******/ return ns;
|
|
66
|
-
/******/ };
|
|
67
|
-
/******/
|
|
68
|
-
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
|
69
|
-
/******/ __webpack_require__.n = function(module) {
|
|
70
|
-
/******/ var getter = module && module.__esModule ?
|
|
71
|
-
/******/ function getDefault() { return module['default']; } :
|
|
72
|
-
/******/ function getModuleExports() { return module; };
|
|
73
|
-
/******/ __webpack_require__.d(getter, 'a', getter);
|
|
74
|
-
/******/ return getter;
|
|
75
|
-
/******/ };
|
|
76
|
-
/******/
|
|
77
|
-
/******/ // Object.prototype.hasOwnProperty.call
|
|
78
|
-
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
|
79
|
-
/******/
|
|
80
|
-
/******/ // __webpack_public_path__
|
|
81
|
-
/******/ __webpack_require__.p = "";
|
|
82
|
-
/******/
|
|
83
|
-
/******/
|
|
84
|
-
/******/ // Load entry module and return exports
|
|
85
|
-
/******/ return __webpack_require__(__webpack_require__.s = "fb15");
|
|
86
|
-
/******/ })
|
|
87
|
-
/************************************************************************/
|
|
88
|
-
/******/ ({
|
|
89
|
-
|
|
90
|
-
/***/ "fb15":
|
|
91
|
-
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
92
|
-
|
|
93
|
-
"use strict";
|
|
94
|
-
// ESM COMPAT FLAG
|
|
95
|
-
__webpack_require__.r(__webpack_exports__);
|
|
96
|
-
|
|
97
|
-
// CONCATENATED MODULE: ./node_modules/@vue/cli-service/lib/commands/build/setPublicPath.js
|
|
98
|
-
// This file is imported into lib/wc client bundles.
|
|
99
|
-
|
|
100
|
-
if (typeof window !== 'undefined') {
|
|
101
|
-
var currentScript = window.document.currentScript
|
|
102
|
-
if (false) { var getCurrentScript; }
|
|
103
|
-
|
|
104
|
-
var src = currentScript && currentScript.src.match(/(.+\/)[^/]+\.js(\?.*)?$/)
|
|
105
|
-
if (src) {
|
|
106
|
-
__webpack_require__.p = src[1] // eslint-disable-line
|
|
107
|
-
}
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
// Indicate to webpack that this file can be concatenated
|
|
111
|
-
/* harmony default export */ var setPublicPath = (null);
|
|
112
|
-
|
|
113
|
-
// CONCATENATED MODULE: ./src/main.js
|
|
114
|
-
function install(Vue) {}
|
|
115
|
-
install.version = '__VERSION__';
|
|
116
|
-
if (typeof window !== 'undefined') {
|
|
117
|
-
window.Vue && window.Vue.use(install);
|
|
118
|
-
window['ITFComponents'] = install;
|
|
119
|
-
if (install.installed) {
|
|
120
|
-
install.installed = false;
|
|
121
|
-
}
|
|
122
|
-
}
|
|
123
|
-
// CONCATENATED MODULE: ./node_modules/@vue/cli-service/lib/commands/build/entry-lib.js
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
/* harmony default export */ var entry_lib = __webpack_exports__["default"] = (install);
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
/***/ })
|
|
131
|
-
|
|
132
|
-
/******/ });
|
|
133
|
-
//# sourceMappingURL=ITFComponents.common.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["webpack://ITFComponents/webpack/bootstrap","webpack://ITFComponents/./node_modules/@vue/cli-service/lib/commands/build/setPublicPath.js","webpack://ITFComponents/./src/main.js","webpack://ITFComponents/./node_modules/@vue/cli-service/lib/commands/build/entry-lib.js"],"names":["install","Vue","version","window","use","installed"],"mappings":";;QAAA;QACA;;QAEA;QACA;;QAEA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;;QAEA;QACA;;QAEA;QACA;;QAEA;QACA;QACA;;;QAGA;QACA;;QAEA;QACA;;QAEA;QACA;QACA;QACA,0CAA0C,gCAAgC;QAC1E;QACA;;QAEA;QACA;QACA;QACA,wDAAwD,kBAAkB;QAC1E;QACA,iDAAiD,cAAc;QAC/D;;QAEA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA,yCAAyC,iCAAiC;QAC1E,gHAAgH,mBAAmB,EAAE;QACrI;QACA;;QAEA;QACA;QACA;QACA,2BAA2B,0BAA0B,EAAE;QACvD,iCAAiC,eAAe;QAChD;QACA;QACA;;QAEA;QACA,sDAAsD,+DAA+D;;QAErH;QACA;;;QAGA;QACA;;;;;;;;;;;;;AClFA;;AAEA;AACA;AACA,MAAM,KAAuC,EAAE,yBAQ5C;;AAEH;AACA;AACA,IAAI,qBAAuB;AAC3B;AACA;;AAEA;AACe,sDAAI;;;ACrBJ,SAASA,OAAO,CAACC,GAAG,EAAE,CACrC;AACAD,OAAO,CAACE,OAAO,GAAG,aAAa;AAE/B,IAAI,OAAOC,MAAM,KAAK,WAAW,EAAE;EACjCA,MAAM,CAACF,GAAG,IAAIE,MAAM,CAACF,GAAG,CAACG,GAAG,CAACJ,OAAO,CAAC;EACrCG,MAAM,CAAC,eAAe,CAAC,GAAGH,OAAO;EAEjC,IAAIA,OAAO,CAACK,SAAS,EAAE;IACrBL,OAAO,CAACK,SAAS,GAAG,KAAK;EAC3B;AACF,C;;ACXwB;AACA;AACT,sFAAG;AACI","file":"ITFComponents.common.js","sourcesContent":[" \t// The module cache\n \tvar installedModules = {};\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId]) {\n \t\t\treturn installedModules[moduleId].exports;\n \t\t}\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\ti: moduleId,\n \t\t\tl: false,\n \t\t\texports: {}\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.l = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// define getter function for harmony exports\n \t__webpack_require__.d = function(exports, name, getter) {\n \t\tif(!__webpack_require__.o(exports, name)) {\n \t\t\tObject.defineProperty(exports, name, { enumerable: true, get: getter });\n \t\t}\n \t};\n\n \t// define __esModule on exports\n \t__webpack_require__.r = function(exports) {\n \t\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n \t\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n \t\t}\n \t\tObject.defineProperty(exports, '__esModule', { value: true });\n \t};\n\n \t// create a fake namespace object\n \t// mode & 1: value is a module id, require it\n \t// mode & 2: merge all properties of value into the ns\n \t// mode & 4: return value when already ns object\n \t// mode & 8|1: behave like require\n \t__webpack_require__.t = function(value, mode) {\n \t\tif(mode & 1) value = __webpack_require__(value);\n \t\tif(mode & 8) return value;\n \t\tif((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;\n \t\tvar ns = Object.create(null);\n \t\t__webpack_require__.r(ns);\n \t\tObject.defineProperty(ns, 'default', { enumerable: true, value: value });\n \t\tif(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));\n \t\treturn ns;\n \t};\n\n \t// getDefaultExport function for compatibility with non-harmony modules\n \t__webpack_require__.n = function(module) {\n \t\tvar getter = module && module.__esModule ?\n \t\t\tfunction getDefault() { return module['default']; } :\n \t\t\tfunction getModuleExports() { return module; };\n \t\t__webpack_require__.d(getter, 'a', getter);\n \t\treturn getter;\n \t};\n\n \t// Object.prototype.hasOwnProperty.call\n \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"\";\n\n\n \t// Load entry module and return exports\n \treturn __webpack_require__(__webpack_require__.s = \"fb15\");\n","// This file is imported into lib/wc client bundles.\n\nif (typeof window !== 'undefined') {\n var currentScript = window.document.currentScript\n if (process.env.NEED_CURRENTSCRIPT_POLYFILL) {\n var getCurrentScript = require('@soda/get-current-script')\n currentScript = getCurrentScript()\n\n // for backward compatibility, because previously we directly included the polyfill\n if (!('currentScript' in document)) {\n Object.defineProperty(document, 'currentScript', { get: getCurrentScript })\n }\n }\n\n var src = currentScript && currentScript.src.match(/(.+\\/)[^/]+\\.js(\\?.*)?$/)\n if (src) {\n __webpack_public_path__ = src[1] // eslint-disable-line\n }\n}\n\n// Indicate to webpack that this file can be concatenated\nexport default null\n","export default function install(Vue) {\n}\ninstall.version = '__VERSION__';\n\nif (typeof window !== 'undefined') {\n window.Vue && window.Vue.use(install);\n window['ITFComponents'] = install;\n\n if (install.installed) {\n install.installed = false;\n }\n}\n","import './setPublicPath'\nimport mod from '~entry'\nexport default mod\nexport * from '~entry'\n"],"sourceRoot":""}
|
|
@@ -1,143 +0,0 @@
|
|
|
1
|
-
(function webpackUniversalModuleDefinition(root, factory) {
|
|
2
|
-
if(typeof exports === 'object' && typeof module === 'object')
|
|
3
|
-
module.exports = factory();
|
|
4
|
-
else if(typeof define === 'function' && define.amd)
|
|
5
|
-
define([], factory);
|
|
6
|
-
else if(typeof exports === 'object')
|
|
7
|
-
exports["ITFComponents"] = factory();
|
|
8
|
-
else
|
|
9
|
-
root["ITFComponents"] = factory();
|
|
10
|
-
})((typeof self !== 'undefined' ? self : this), function() {
|
|
11
|
-
return /******/ (function(modules) { // webpackBootstrap
|
|
12
|
-
/******/ // The module cache
|
|
13
|
-
/******/ var installedModules = {};
|
|
14
|
-
/******/
|
|
15
|
-
/******/ // The require function
|
|
16
|
-
/******/ function __webpack_require__(moduleId) {
|
|
17
|
-
/******/
|
|
18
|
-
/******/ // Check if module is in cache
|
|
19
|
-
/******/ if(installedModules[moduleId]) {
|
|
20
|
-
/******/ return installedModules[moduleId].exports;
|
|
21
|
-
/******/ }
|
|
22
|
-
/******/ // Create a new module (and put it into the cache)
|
|
23
|
-
/******/ var module = installedModules[moduleId] = {
|
|
24
|
-
/******/ i: moduleId,
|
|
25
|
-
/******/ l: false,
|
|
26
|
-
/******/ exports: {}
|
|
27
|
-
/******/ };
|
|
28
|
-
/******/
|
|
29
|
-
/******/ // Execute the module function
|
|
30
|
-
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
|
31
|
-
/******/
|
|
32
|
-
/******/ // Flag the module as loaded
|
|
33
|
-
/******/ module.l = true;
|
|
34
|
-
/******/
|
|
35
|
-
/******/ // Return the exports of the module
|
|
36
|
-
/******/ return module.exports;
|
|
37
|
-
/******/ }
|
|
38
|
-
/******/
|
|
39
|
-
/******/
|
|
40
|
-
/******/ // expose the modules object (__webpack_modules__)
|
|
41
|
-
/******/ __webpack_require__.m = modules;
|
|
42
|
-
/******/
|
|
43
|
-
/******/ // expose the module cache
|
|
44
|
-
/******/ __webpack_require__.c = installedModules;
|
|
45
|
-
/******/
|
|
46
|
-
/******/ // define getter function for harmony exports
|
|
47
|
-
/******/ __webpack_require__.d = function(exports, name, getter) {
|
|
48
|
-
/******/ if(!__webpack_require__.o(exports, name)) {
|
|
49
|
-
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
|
50
|
-
/******/ }
|
|
51
|
-
/******/ };
|
|
52
|
-
/******/
|
|
53
|
-
/******/ // define __esModule on exports
|
|
54
|
-
/******/ __webpack_require__.r = function(exports) {
|
|
55
|
-
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
|
56
|
-
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
57
|
-
/******/ }
|
|
58
|
-
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
|
59
|
-
/******/ };
|
|
60
|
-
/******/
|
|
61
|
-
/******/ // create a fake namespace object
|
|
62
|
-
/******/ // mode & 1: value is a module id, require it
|
|
63
|
-
/******/ // mode & 2: merge all properties of value into the ns
|
|
64
|
-
/******/ // mode & 4: return value when already ns object
|
|
65
|
-
/******/ // mode & 8|1: behave like require
|
|
66
|
-
/******/ __webpack_require__.t = function(value, mode) {
|
|
67
|
-
/******/ if(mode & 1) value = __webpack_require__(value);
|
|
68
|
-
/******/ if(mode & 8) return value;
|
|
69
|
-
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
|
70
|
-
/******/ var ns = Object.create(null);
|
|
71
|
-
/******/ __webpack_require__.r(ns);
|
|
72
|
-
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
|
73
|
-
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
|
74
|
-
/******/ return ns;
|
|
75
|
-
/******/ };
|
|
76
|
-
/******/
|
|
77
|
-
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
|
78
|
-
/******/ __webpack_require__.n = function(module) {
|
|
79
|
-
/******/ var getter = module && module.__esModule ?
|
|
80
|
-
/******/ function getDefault() { return module['default']; } :
|
|
81
|
-
/******/ function getModuleExports() { return module; };
|
|
82
|
-
/******/ __webpack_require__.d(getter, 'a', getter);
|
|
83
|
-
/******/ return getter;
|
|
84
|
-
/******/ };
|
|
85
|
-
/******/
|
|
86
|
-
/******/ // Object.prototype.hasOwnProperty.call
|
|
87
|
-
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
|
88
|
-
/******/
|
|
89
|
-
/******/ // __webpack_public_path__
|
|
90
|
-
/******/ __webpack_require__.p = "";
|
|
91
|
-
/******/
|
|
92
|
-
/******/
|
|
93
|
-
/******/ // Load entry module and return exports
|
|
94
|
-
/******/ return __webpack_require__(__webpack_require__.s = "fb15");
|
|
95
|
-
/******/ })
|
|
96
|
-
/************************************************************************/
|
|
97
|
-
/******/ ({
|
|
98
|
-
|
|
99
|
-
/***/ "fb15":
|
|
100
|
-
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
101
|
-
|
|
102
|
-
"use strict";
|
|
103
|
-
// ESM COMPAT FLAG
|
|
104
|
-
__webpack_require__.r(__webpack_exports__);
|
|
105
|
-
|
|
106
|
-
// CONCATENATED MODULE: ./node_modules/@vue/cli-service/lib/commands/build/setPublicPath.js
|
|
107
|
-
// This file is imported into lib/wc client bundles.
|
|
108
|
-
|
|
109
|
-
if (typeof window !== 'undefined') {
|
|
110
|
-
var currentScript = window.document.currentScript
|
|
111
|
-
if (false) { var getCurrentScript; }
|
|
112
|
-
|
|
113
|
-
var src = currentScript && currentScript.src.match(/(.+\/)[^/]+\.js(\?.*)?$/)
|
|
114
|
-
if (src) {
|
|
115
|
-
__webpack_require__.p = src[1] // eslint-disable-line
|
|
116
|
-
}
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
// Indicate to webpack that this file can be concatenated
|
|
120
|
-
/* harmony default export */ var setPublicPath = (null);
|
|
121
|
-
|
|
122
|
-
// CONCATENATED MODULE: ./src/main.js
|
|
123
|
-
function install(Vue) {}
|
|
124
|
-
install.version = '__VERSION__';
|
|
125
|
-
if (typeof window !== 'undefined') {
|
|
126
|
-
window.Vue && window.Vue.use(install);
|
|
127
|
-
window['ITFComponents'] = install;
|
|
128
|
-
if (install.installed) {
|
|
129
|
-
install.installed = false;
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
// CONCATENATED MODULE: ./node_modules/@vue/cli-service/lib/commands/build/entry-lib.js
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
/* harmony default export */ var entry_lib = __webpack_exports__["default"] = (install);
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
/***/ })
|
|
140
|
-
|
|
141
|
-
/******/ });
|
|
142
|
-
});
|
|
143
|
-
//# sourceMappingURL=ITFComponents.umd.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["webpack://ITFComponents/webpack/universalModuleDefinition","webpack://ITFComponents/webpack/bootstrap","webpack://ITFComponents/./node_modules/@vue/cli-service/lib/commands/build/setPublicPath.js","webpack://ITFComponents/./src/main.js","webpack://ITFComponents/./node_modules/@vue/cli-service/lib/commands/build/entry-lib.js"],"names":["install","Vue","version","window","use","installed"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,CAAC;AACD,O;QCVA;QACA;;QAEA;QACA;;QAEA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;;QAEA;QACA;;QAEA;QACA;;QAEA;QACA;QACA;;;QAGA;QACA;;QAEA;QACA;;QAEA;QACA;QACA;QACA,0CAA0C,gCAAgC;QAC1E;QACA;;QAEA;QACA;QACA;QACA,wDAAwD,kBAAkB;QAC1E;QACA,iDAAiD,cAAc;QAC/D;;QAEA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA;QACA,yCAAyC,iCAAiC;QAC1E,gHAAgH,mBAAmB,EAAE;QACrI;QACA;;QAEA;QACA;QACA;QACA,2BAA2B,0BAA0B,EAAE;QACvD,iCAAiC,eAAe;QAChD;QACA;QACA;;QAEA;QACA,sDAAsD,+DAA+D;;QAErH;QACA;;;QAGA;QACA;;;;;;;;;;;;;AClFA;;AAEA;AACA;AACA,MAAM,KAAuC,EAAE,yBAQ5C;;AAEH;AACA;AACA,IAAI,qBAAuB;AAC3B;AACA;;AAEA;AACe,sDAAI;;;ACrBJ,SAASA,OAAO,CAACC,GAAG,EAAE,CACrC;AACAD,OAAO,CAACE,OAAO,GAAG,aAAa;AAE/B,IAAI,OAAOC,MAAM,KAAK,WAAW,EAAE;EACjCA,MAAM,CAACF,GAAG,IAAIE,MAAM,CAACF,GAAG,CAACG,GAAG,CAACJ,OAAO,CAAC;EACrCG,MAAM,CAAC,eAAe,CAAC,GAAGH,OAAO;EAEjC,IAAIA,OAAO,CAACK,SAAS,EAAE;IACrBL,OAAO,CAACK,SAAS,GAAG,KAAK;EAC3B;AACF,C;;ACXwB;AACA;AACT,sFAAG;AACI","file":"ITFComponents.umd.js","sourcesContent":["(function webpackUniversalModuleDefinition(root, factory) {\n\tif(typeof exports === 'object' && typeof module === 'object')\n\t\tmodule.exports = factory();\n\telse if(typeof define === 'function' && define.amd)\n\t\tdefine([], factory);\n\telse if(typeof exports === 'object')\n\t\texports[\"ITFComponents\"] = factory();\n\telse\n\t\troot[\"ITFComponents\"] = factory();\n})((typeof self !== 'undefined' ? self : this), function() {\nreturn "," \t// The module cache\n \tvar installedModules = {};\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId]) {\n \t\t\treturn installedModules[moduleId].exports;\n \t\t}\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\ti: moduleId,\n \t\t\tl: false,\n \t\t\texports: {}\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.l = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// define getter function for harmony exports\n \t__webpack_require__.d = function(exports, name, getter) {\n \t\tif(!__webpack_require__.o(exports, name)) {\n \t\t\tObject.defineProperty(exports, name, { enumerable: true, get: getter });\n \t\t}\n \t};\n\n \t// define __esModule on exports\n \t__webpack_require__.r = function(exports) {\n \t\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n \t\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n \t\t}\n \t\tObject.defineProperty(exports, '__esModule', { value: true });\n \t};\n\n \t// create a fake namespace object\n \t// mode & 1: value is a module id, require it\n \t// mode & 2: merge all properties of value into the ns\n \t// mode & 4: return value when already ns object\n \t// mode & 8|1: behave like require\n \t__webpack_require__.t = function(value, mode) {\n \t\tif(mode & 1) value = __webpack_require__(value);\n \t\tif(mode & 8) return value;\n \t\tif((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;\n \t\tvar ns = Object.create(null);\n \t\t__webpack_require__.r(ns);\n \t\tObject.defineProperty(ns, 'default', { enumerable: true, value: value });\n \t\tif(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));\n \t\treturn ns;\n \t};\n\n \t// getDefaultExport function for compatibility with non-harmony modules\n \t__webpack_require__.n = function(module) {\n \t\tvar getter = module && module.__esModule ?\n \t\t\tfunction getDefault() { return module['default']; } :\n \t\t\tfunction getModuleExports() { return module; };\n \t\t__webpack_require__.d(getter, 'a', getter);\n \t\treturn getter;\n \t};\n\n \t// Object.prototype.hasOwnProperty.call\n \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"\";\n\n\n \t// Load entry module and return exports\n \treturn __webpack_require__(__webpack_require__.s = \"fb15\");\n","// This file is imported into lib/wc client bundles.\n\nif (typeof window !== 'undefined') {\n var currentScript = window.document.currentScript\n if (process.env.NEED_CURRENTSCRIPT_POLYFILL) {\n var getCurrentScript = require('@soda/get-current-script')\n currentScript = getCurrentScript()\n\n // for backward compatibility, because previously we directly included the polyfill\n if (!('currentScript' in document)) {\n Object.defineProperty(document, 'currentScript', { get: getCurrentScript })\n }\n }\n\n var src = currentScript && currentScript.src.match(/(.+\\/)[^/]+\\.js(\\?.*)?$/)\n if (src) {\n __webpack_public_path__ = src[1] // eslint-disable-line\n }\n}\n\n// Indicate to webpack that this file can be concatenated\nexport default null\n","export default function install(Vue) {\n}\ninstall.version = '__VERSION__';\n\nif (typeof window !== 'undefined') {\n window.Vue && window.Vue.use(install);\n window['ITFComponents'] = install;\n\n if (install.installed) {\n install.installed = false;\n }\n}\n","import './setPublicPath'\nimport mod from '~entry'\nexport default mod\nexport * from '~entry'\n"],"sourceRoot":""}
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
(function(e,t){"object"===typeof exports&&"object"===typeof module?module.exports=t():"function"===typeof define&&define.amd?define([],t):"object"===typeof exports?exports["ITFComponents"]=t():e["ITFComponents"]=t()})("undefined"!==typeof self?self:this,(function(){return function(e){var t={};function n(o){if(t[o])return t[o].exports;var r=t[o]={i:o,l:!1,exports:{}};return e[o].call(r.exports,r,r.exports,n),r.l=!0,r.exports}return n.m=e,n.c=t,n.d=function(e,t,o){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:o})},n.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"===typeof e&&e&&e.__esModule)return e;var o=Object.create(null);if(n.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var r in e)n.d(o,r,function(t){return e[t]}.bind(null,r));return o},n.n=function(e){var t=e&&e.__esModule?function(){return e["default"]}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="",n(n.s="fb15")}({fb15:function(e,t,n){"use strict";if(n.r(t),"undefined"!==typeof window){var o=window.document.currentScript,r=o&&o.src.match(/(.+\/)[^/]+\.js(\?.*)?$/);r&&(n.p=r[1])}function u(e){}u.version="__VERSION__","undefined"!==typeof window&&(window.Vue&&window.Vue.use(u),window["ITFComponents"]=u,u.installed&&(u.installed=!1));t["default"]=u}})}));
|
|
2
|
-
//# sourceMappingURL=ITFComponents.umd.min.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["webpack://ITFComponents/webpack/universalModuleDefinition","webpack://ITFComponents/webpack/bootstrap","webpack://ITFComponents/./node_modules/@vue/cli-service/lib/commands/build/setPublicPath.js","webpack://ITFComponents/./src/main.js","webpack://ITFComponents/./node_modules/@vue/cli-service/lib/commands/build/entry-lib.js"],"names":["root","factory","exports","module","define","amd","self","this","installedModules","__webpack_require__","moduleId","i","l","modules","call","m","c","d","name","getter","o","Object","defineProperty","enumerable","get","r","Symbol","toStringTag","value","t","mode","__esModule","ns","create","key","bind","n","object","property","prototype","hasOwnProperty","p","s","window","currentScript","document","src","match","install","Vue","version","use","installed"],"mappings":"CAAA,SAA2CA,EAAMC,GAC1B,kBAAZC,SAA0C,kBAAXC,OACxCA,OAAOD,QAAUD,IACQ,oBAAXG,QAAyBA,OAAOC,IAC9CD,OAAO,GAAIH,GACe,kBAAZC,QACdA,QAAQ,iBAAmBD,IAE3BD,EAAK,iBAAmBC,KAR1B,CASoB,qBAATK,KAAuBA,KAAOC,MAAO,WAChD,O,YCTE,IAAIC,EAAmB,GAGvB,SAASC,EAAoBC,GAG5B,GAAGF,EAAiBE,GACnB,OAAOF,EAAiBE,GAAUR,QAGnC,IAAIC,EAASK,EAAiBE,GAAY,CACzCC,EAAGD,EACHE,GAAG,EACHV,QAAS,IAUV,OANAW,EAAQH,GAAUI,KAAKX,EAAOD,QAASC,EAAQA,EAAOD,QAASO,GAG/DN,EAAOS,GAAI,EAGJT,EAAOD,QA0Df,OArDAO,EAAoBM,EAAIF,EAGxBJ,EAAoBO,EAAIR,EAGxBC,EAAoBQ,EAAI,SAASf,EAASgB,EAAMC,GAC3CV,EAAoBW,EAAElB,EAASgB,IAClCG,OAAOC,eAAepB,EAASgB,EAAM,CAAEK,YAAY,EAAMC,IAAKL,KAKhEV,EAAoBgB,EAAI,SAASvB,GACX,qBAAXwB,QAA0BA,OAAOC,aAC1CN,OAAOC,eAAepB,EAASwB,OAAOC,YAAa,CAAEC,MAAO,WAE7DP,OAAOC,eAAepB,EAAS,aAAc,CAAE0B,OAAO,KAQvDnB,EAAoBoB,EAAI,SAASD,EAAOE,GAEvC,GADU,EAAPA,IAAUF,EAAQnB,EAAoBmB,IAC/B,EAAPE,EAAU,OAAOF,EACpB,GAAW,EAAPE,GAA8B,kBAAVF,GAAsBA,GAASA,EAAMG,WAAY,OAAOH,EAChF,IAAII,EAAKX,OAAOY,OAAO,MAGvB,GAFAxB,EAAoBgB,EAAEO,GACtBX,OAAOC,eAAeU,EAAI,UAAW,CAAET,YAAY,EAAMK,MAAOA,IACtD,EAAPE,GAA4B,iBAATF,EAAmB,IAAI,IAAIM,KAAON,EAAOnB,EAAoBQ,EAAEe,EAAIE,EAAK,SAASA,GAAO,OAAON,EAAMM,IAAQC,KAAK,KAAMD,IAC9I,OAAOF,GAIRvB,EAAoB2B,EAAI,SAASjC,GAChC,IAAIgB,EAAShB,GAAUA,EAAO4B,WAC7B,WAAwB,OAAO5B,EAAO,YACtC,WAA8B,OAAOA,GAEtC,OADAM,EAAoBQ,EAAEE,EAAQ,IAAKA,GAC5BA,GAIRV,EAAoBW,EAAI,SAASiB,EAAQC,GAAY,OAAOjB,OAAOkB,UAAUC,eAAe1B,KAAKuB,EAAQC,IAGzG7B,EAAoBgC,EAAI,GAIjBhC,EAAoBA,EAAoBiC,EAAI,Q,oCChFrD,G,OAAsB,qBAAXC,OAAwB,CACjC,IAAIC,EAAgBD,OAAOE,SAASD,cAWhCE,EAAMF,GAAiBA,EAAcE,IAAIC,MAAM,2BAC/CD,IACF,IAA0BA,EAAI,IChBnB,SAASE,EAAQC,IAEhCD,EAAQE,QAAU,cAEI,qBAAXP,SACTA,OAAOM,KAAON,OAAOM,IAAIE,IAAIH,GAC7BL,OAAO,iBAAmBK,EAEtBA,EAAQI,YACVJ,EAAQI,WAAY,ICPT","file":"ITFComponents.umd.min.js","sourcesContent":["(function webpackUniversalModuleDefinition(root, factory) {\n\tif(typeof exports === 'object' && typeof module === 'object')\n\t\tmodule.exports = factory();\n\telse if(typeof define === 'function' && define.amd)\n\t\tdefine([], factory);\n\telse if(typeof exports === 'object')\n\t\texports[\"ITFComponents\"] = factory();\n\telse\n\t\troot[\"ITFComponents\"] = factory();\n})((typeof self !== 'undefined' ? self : this), function() {\nreturn "," \t// The module cache\n \tvar installedModules = {};\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId]) {\n \t\t\treturn installedModules[moduleId].exports;\n \t\t}\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\ti: moduleId,\n \t\t\tl: false,\n \t\t\texports: {}\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.l = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// define getter function for harmony exports\n \t__webpack_require__.d = function(exports, name, getter) {\n \t\tif(!__webpack_require__.o(exports, name)) {\n \t\t\tObject.defineProperty(exports, name, { enumerable: true, get: getter });\n \t\t}\n \t};\n\n \t// define __esModule on exports\n \t__webpack_require__.r = function(exports) {\n \t\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n \t\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n \t\t}\n \t\tObject.defineProperty(exports, '__esModule', { value: true });\n \t};\n\n \t// create a fake namespace object\n \t// mode & 1: value is a module id, require it\n \t// mode & 2: merge all properties of value into the ns\n \t// mode & 4: return value when already ns object\n \t// mode & 8|1: behave like require\n \t__webpack_require__.t = function(value, mode) {\n \t\tif(mode & 1) value = __webpack_require__(value);\n \t\tif(mode & 8) return value;\n \t\tif((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;\n \t\tvar ns = Object.create(null);\n \t\t__webpack_require__.r(ns);\n \t\tObject.defineProperty(ns, 'default', { enumerable: true, value: value });\n \t\tif(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));\n \t\treturn ns;\n \t};\n\n \t// getDefaultExport function for compatibility with non-harmony modules\n \t__webpack_require__.n = function(module) {\n \t\tvar getter = module && module.__esModule ?\n \t\t\tfunction getDefault() { return module['default']; } :\n \t\t\tfunction getModuleExports() { return module; };\n \t\t__webpack_require__.d(getter, 'a', getter);\n \t\treturn getter;\n \t};\n\n \t// Object.prototype.hasOwnProperty.call\n \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"\";\n\n\n \t// Load entry module and return exports\n \treturn __webpack_require__(__webpack_require__.s = \"fb15\");\n","// This file is imported into lib/wc client bundles.\n\nif (typeof window !== 'undefined') {\n var currentScript = window.document.currentScript\n if (process.env.NEED_CURRENTSCRIPT_POLYFILL) {\n var getCurrentScript = require('@soda/get-current-script')\n currentScript = getCurrentScript()\n\n // for backward compatibility, because previously we directly included the polyfill\n if (!('currentScript' in document)) {\n Object.defineProperty(document, 'currentScript', { get: getCurrentScript })\n }\n }\n\n var src = currentScript && currentScript.src.match(/(.+\\/)[^/]+\\.js(\\?.*)?$/)\n if (src) {\n __webpack_public_path__ = src[1] // eslint-disable-line\n }\n}\n\n// Indicate to webpack that this file can be concatenated\nexport default null\n","export default function install(Vue) {\n}\ninstall.version = '__VERSION__';\n\nif (typeof window !== 'undefined') {\n window.Vue && window.Vue.use(install);\n window['ITFComponents'] = install;\n\n if (install.installed) {\n install.installed = false;\n }\n}\n","import './setPublicPath'\nimport mod from '~entry'\nexport default mod\nexport * from '~entry'\n"],"sourceRoot":""}
|
package/dist/demo.html
DELETED
package/dist/tailwind.css
DELETED
|
@@ -1,937 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
! tailwindcss v3.3.2 | MIT License | https://tailwindcss.com
|
|
3
|
-
*/
|
|
4
|
-
|
|
5
|
-
/*
|
|
6
|
-
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
|
|
7
|
-
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
|
|
8
|
-
*/
|
|
9
|
-
|
|
10
|
-
*,
|
|
11
|
-
::before,
|
|
12
|
-
::after {
|
|
13
|
-
box-sizing: border-box;
|
|
14
|
-
/* 1 */
|
|
15
|
-
border-width: 0;
|
|
16
|
-
/* 2 */
|
|
17
|
-
border-style: solid;
|
|
18
|
-
/* 2 */
|
|
19
|
-
border-color: #e5e7eb;
|
|
20
|
-
/* 2 */
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
::before,
|
|
24
|
-
::after {
|
|
25
|
-
--tw-content: '';
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
/*
|
|
29
|
-
1. Use a consistent sensible line-height in all browsers.
|
|
30
|
-
2. Prevent adjustments of font size after orientation changes in iOS.
|
|
31
|
-
3. Use a more readable tab size.
|
|
32
|
-
4. Use the user's configured `sans` font-family by default.
|
|
33
|
-
5. Use the user's configured `sans` font-feature-settings by default.
|
|
34
|
-
6. Use the user's configured `sans` font-variation-settings by default.
|
|
35
|
-
*/
|
|
36
|
-
|
|
37
|
-
html {
|
|
38
|
-
line-height: 1.5;
|
|
39
|
-
/* 1 */
|
|
40
|
-
-webkit-text-size-adjust: 100%;
|
|
41
|
-
/* 2 */
|
|
42
|
-
-moz-tab-size: 4;
|
|
43
|
-
/* 3 */
|
|
44
|
-
-o-tab-size: 4;
|
|
45
|
-
tab-size: 4;
|
|
46
|
-
/* 3 */
|
|
47
|
-
font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
48
|
-
/* 4 */
|
|
49
|
-
font-feature-settings: normal;
|
|
50
|
-
/* 5 */
|
|
51
|
-
font-variation-settings: normal;
|
|
52
|
-
/* 6 */
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
/*
|
|
56
|
-
1. Remove the margin in all browsers.
|
|
57
|
-
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
|
|
58
|
-
*/
|
|
59
|
-
|
|
60
|
-
body {
|
|
61
|
-
margin: 0;
|
|
62
|
-
/* 1 */
|
|
63
|
-
line-height: inherit;
|
|
64
|
-
/* 2 */
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
/*
|
|
68
|
-
1. Add the correct height in Firefox.
|
|
69
|
-
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
|
|
70
|
-
3. Ensure horizontal rules are visible by default.
|
|
71
|
-
*/
|
|
72
|
-
|
|
73
|
-
hr {
|
|
74
|
-
height: 0;
|
|
75
|
-
/* 1 */
|
|
76
|
-
color: inherit;
|
|
77
|
-
/* 2 */
|
|
78
|
-
border-top-width: 1px;
|
|
79
|
-
/* 3 */
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
/*
|
|
83
|
-
Add the correct text decoration in Chrome, Edge, and Safari.
|
|
84
|
-
*/
|
|
85
|
-
|
|
86
|
-
abbr:where([title]) {
|
|
87
|
-
-webkit-text-decoration: underline dotted;
|
|
88
|
-
text-decoration: underline dotted;
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
/*
|
|
92
|
-
Remove the default font size and weight for headings.
|
|
93
|
-
*/
|
|
94
|
-
|
|
95
|
-
h1,
|
|
96
|
-
h2,
|
|
97
|
-
h3,
|
|
98
|
-
h4,
|
|
99
|
-
h5,
|
|
100
|
-
h6 {
|
|
101
|
-
font-size: inherit;
|
|
102
|
-
font-weight: inherit;
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
/*
|
|
106
|
-
Reset links to optimize for opt-in styling instead of opt-out.
|
|
107
|
-
*/
|
|
108
|
-
|
|
109
|
-
a {
|
|
110
|
-
color: inherit;
|
|
111
|
-
text-decoration: inherit;
|
|
112
|
-
}
|
|
113
|
-
|
|
114
|
-
/*
|
|
115
|
-
Add the correct font weight in Edge and Safari.
|
|
116
|
-
*/
|
|
117
|
-
|
|
118
|
-
b,
|
|
119
|
-
strong {
|
|
120
|
-
font-weight: bolder;
|
|
121
|
-
}
|
|
122
|
-
|
|
123
|
-
/*
|
|
124
|
-
1. Use the user's configured `mono` font family by default.
|
|
125
|
-
2. Correct the odd `em` font sizing in all browsers.
|
|
126
|
-
*/
|
|
127
|
-
|
|
128
|
-
code,
|
|
129
|
-
kbd,
|
|
130
|
-
samp,
|
|
131
|
-
pre {
|
|
132
|
-
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
133
|
-
/* 1 */
|
|
134
|
-
font-size: 1em;
|
|
135
|
-
/* 2 */
|
|
136
|
-
}
|
|
137
|
-
|
|
138
|
-
/*
|
|
139
|
-
Add the correct font size in all browsers.
|
|
140
|
-
*/
|
|
141
|
-
|
|
142
|
-
small {
|
|
143
|
-
font-size: 80%;
|
|
144
|
-
}
|
|
145
|
-
|
|
146
|
-
/*
|
|
147
|
-
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
|
|
148
|
-
*/
|
|
149
|
-
|
|
150
|
-
sub,
|
|
151
|
-
sup {
|
|
152
|
-
font-size: 75%;
|
|
153
|
-
line-height: 0;
|
|
154
|
-
position: relative;
|
|
155
|
-
vertical-align: baseline;
|
|
156
|
-
}
|
|
157
|
-
|
|
158
|
-
sub {
|
|
159
|
-
bottom: -0.25em;
|
|
160
|
-
}
|
|
161
|
-
|
|
162
|
-
sup {
|
|
163
|
-
top: -0.5em;
|
|
164
|
-
}
|
|
165
|
-
|
|
166
|
-
/*
|
|
167
|
-
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
|
|
168
|
-
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
|
|
169
|
-
3. Remove gaps between table borders by default.
|
|
170
|
-
*/
|
|
171
|
-
|
|
172
|
-
table {
|
|
173
|
-
text-indent: 0;
|
|
174
|
-
/* 1 */
|
|
175
|
-
border-color: inherit;
|
|
176
|
-
/* 2 */
|
|
177
|
-
border-collapse: collapse;
|
|
178
|
-
/* 3 */
|
|
179
|
-
}
|
|
180
|
-
|
|
181
|
-
/*
|
|
182
|
-
1. Change the font styles in all browsers.
|
|
183
|
-
2. Remove the margin in Firefox and Safari.
|
|
184
|
-
3. Remove default padding in all browsers.
|
|
185
|
-
*/
|
|
186
|
-
|
|
187
|
-
button,
|
|
188
|
-
input,
|
|
189
|
-
optgroup,
|
|
190
|
-
select,
|
|
191
|
-
textarea {
|
|
192
|
-
font-family: inherit;
|
|
193
|
-
/* 1 */
|
|
194
|
-
font-size: 100%;
|
|
195
|
-
/* 1 */
|
|
196
|
-
font-weight: inherit;
|
|
197
|
-
/* 1 */
|
|
198
|
-
line-height: inherit;
|
|
199
|
-
/* 1 */
|
|
200
|
-
color: inherit;
|
|
201
|
-
/* 1 */
|
|
202
|
-
margin: 0;
|
|
203
|
-
/* 2 */
|
|
204
|
-
padding: 0;
|
|
205
|
-
/* 3 */
|
|
206
|
-
}
|
|
207
|
-
|
|
208
|
-
/*
|
|
209
|
-
Remove the inheritance of text transform in Edge and Firefox.
|
|
210
|
-
*/
|
|
211
|
-
|
|
212
|
-
button,
|
|
213
|
-
select {
|
|
214
|
-
text-transform: none;
|
|
215
|
-
}
|
|
216
|
-
|
|
217
|
-
/*
|
|
218
|
-
1. Correct the inability to style clickable types in iOS and Safari.
|
|
219
|
-
2. Remove default button styles.
|
|
220
|
-
*/
|
|
221
|
-
|
|
222
|
-
button,
|
|
223
|
-
[type='button'],
|
|
224
|
-
[type='reset'],
|
|
225
|
-
[type='submit'] {
|
|
226
|
-
-webkit-appearance: button;
|
|
227
|
-
/* 1 */
|
|
228
|
-
background-color: transparent;
|
|
229
|
-
/* 2 */
|
|
230
|
-
background-image: none;
|
|
231
|
-
/* 2 */
|
|
232
|
-
}
|
|
233
|
-
|
|
234
|
-
/*
|
|
235
|
-
Use the modern Firefox focus style for all focusable elements.
|
|
236
|
-
*/
|
|
237
|
-
|
|
238
|
-
:-moz-focusring {
|
|
239
|
-
outline: auto;
|
|
240
|
-
}
|
|
241
|
-
|
|
242
|
-
/*
|
|
243
|
-
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
|
|
244
|
-
*/
|
|
245
|
-
|
|
246
|
-
:-moz-ui-invalid {
|
|
247
|
-
box-shadow: none;
|
|
248
|
-
}
|
|
249
|
-
|
|
250
|
-
/*
|
|
251
|
-
Add the correct vertical alignment in Chrome and Firefox.
|
|
252
|
-
*/
|
|
253
|
-
|
|
254
|
-
progress {
|
|
255
|
-
vertical-align: baseline;
|
|
256
|
-
}
|
|
257
|
-
|
|
258
|
-
/*
|
|
259
|
-
Correct the cursor style of increment and decrement buttons in Safari.
|
|
260
|
-
*/
|
|
261
|
-
|
|
262
|
-
::-webkit-inner-spin-button,
|
|
263
|
-
::-webkit-outer-spin-button {
|
|
264
|
-
height: auto;
|
|
265
|
-
}
|
|
266
|
-
|
|
267
|
-
/*
|
|
268
|
-
1. Correct the odd appearance in Chrome and Safari.
|
|
269
|
-
2. Correct the outline style in Safari.
|
|
270
|
-
*/
|
|
271
|
-
|
|
272
|
-
[type='search'] {
|
|
273
|
-
-webkit-appearance: textfield;
|
|
274
|
-
/* 1 */
|
|
275
|
-
outline-offset: -2px;
|
|
276
|
-
/* 2 */
|
|
277
|
-
}
|
|
278
|
-
|
|
279
|
-
/*
|
|
280
|
-
Remove the inner padding in Chrome and Safari on macOS.
|
|
281
|
-
*/
|
|
282
|
-
|
|
283
|
-
::-webkit-search-decoration {
|
|
284
|
-
-webkit-appearance: none;
|
|
285
|
-
}
|
|
286
|
-
|
|
287
|
-
/*
|
|
288
|
-
1. Correct the inability to style clickable types in iOS and Safari.
|
|
289
|
-
2. Change font properties to `inherit` in Safari.
|
|
290
|
-
*/
|
|
291
|
-
|
|
292
|
-
::-webkit-file-upload-button {
|
|
293
|
-
-webkit-appearance: button;
|
|
294
|
-
/* 1 */
|
|
295
|
-
font: inherit;
|
|
296
|
-
/* 2 */
|
|
297
|
-
}
|
|
298
|
-
|
|
299
|
-
/*
|
|
300
|
-
Add the correct display in Chrome and Safari.
|
|
301
|
-
*/
|
|
302
|
-
|
|
303
|
-
summary {
|
|
304
|
-
display: list-item;
|
|
305
|
-
}
|
|
306
|
-
|
|
307
|
-
/*
|
|
308
|
-
Removes the default spacing and border for appropriate elements.
|
|
309
|
-
*/
|
|
310
|
-
|
|
311
|
-
blockquote,
|
|
312
|
-
dl,
|
|
313
|
-
dd,
|
|
314
|
-
h1,
|
|
315
|
-
h2,
|
|
316
|
-
h3,
|
|
317
|
-
h4,
|
|
318
|
-
h5,
|
|
319
|
-
h6,
|
|
320
|
-
hr,
|
|
321
|
-
figure,
|
|
322
|
-
p,
|
|
323
|
-
pre {
|
|
324
|
-
margin: 0;
|
|
325
|
-
}
|
|
326
|
-
|
|
327
|
-
fieldset {
|
|
328
|
-
margin: 0;
|
|
329
|
-
padding: 0;
|
|
330
|
-
}
|
|
331
|
-
|
|
332
|
-
legend {
|
|
333
|
-
padding: 0;
|
|
334
|
-
}
|
|
335
|
-
|
|
336
|
-
ol,
|
|
337
|
-
ul,
|
|
338
|
-
menu {
|
|
339
|
-
list-style: none;
|
|
340
|
-
margin: 0;
|
|
341
|
-
padding: 0;
|
|
342
|
-
}
|
|
343
|
-
|
|
344
|
-
/*
|
|
345
|
-
Prevent resizing textareas horizontally by default.
|
|
346
|
-
*/
|
|
347
|
-
|
|
348
|
-
textarea {
|
|
349
|
-
resize: vertical;
|
|
350
|
-
}
|
|
351
|
-
|
|
352
|
-
/*
|
|
353
|
-
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
|
|
354
|
-
2. Set the default placeholder color to the user's configured gray 400 color.
|
|
355
|
-
*/
|
|
356
|
-
|
|
357
|
-
input::-moz-placeholder, textarea::-moz-placeholder {
|
|
358
|
-
opacity: 1;
|
|
359
|
-
/* 1 */
|
|
360
|
-
color: #9ca3af;
|
|
361
|
-
/* 2 */
|
|
362
|
-
}
|
|
363
|
-
|
|
364
|
-
input::placeholder,
|
|
365
|
-
textarea::placeholder {
|
|
366
|
-
opacity: 1;
|
|
367
|
-
/* 1 */
|
|
368
|
-
color: #9ca3af;
|
|
369
|
-
/* 2 */
|
|
370
|
-
}
|
|
371
|
-
|
|
372
|
-
/*
|
|
373
|
-
Set the default cursor for buttons.
|
|
374
|
-
*/
|
|
375
|
-
|
|
376
|
-
button,
|
|
377
|
-
[role="button"] {
|
|
378
|
-
cursor: pointer;
|
|
379
|
-
}
|
|
380
|
-
|
|
381
|
-
/*
|
|
382
|
-
Make sure disabled buttons don't get the pointer cursor.
|
|
383
|
-
*/
|
|
384
|
-
|
|
385
|
-
:disabled {
|
|
386
|
-
cursor: default;
|
|
387
|
-
}
|
|
388
|
-
|
|
389
|
-
/*
|
|
390
|
-
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
|
|
391
|
-
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
|
|
392
|
-
This can trigger a poorly considered lint error in some tools but is included by design.
|
|
393
|
-
*/
|
|
394
|
-
|
|
395
|
-
img,
|
|
396
|
-
svg,
|
|
397
|
-
video,
|
|
398
|
-
canvas,
|
|
399
|
-
audio,
|
|
400
|
-
iframe,
|
|
401
|
-
embed,
|
|
402
|
-
object {
|
|
403
|
-
display: block;
|
|
404
|
-
/* 1 */
|
|
405
|
-
vertical-align: middle;
|
|
406
|
-
/* 2 */
|
|
407
|
-
}
|
|
408
|
-
|
|
409
|
-
/*
|
|
410
|
-
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
|
|
411
|
-
*/
|
|
412
|
-
|
|
413
|
-
img,
|
|
414
|
-
video {
|
|
415
|
-
max-width: 100%;
|
|
416
|
-
height: auto;
|
|
417
|
-
}
|
|
418
|
-
|
|
419
|
-
/* Make elements with the HTML hidden attribute stay hidden by default */
|
|
420
|
-
|
|
421
|
-
[hidden] {
|
|
422
|
-
display: none;
|
|
423
|
-
}
|
|
424
|
-
|
|
425
|
-
*, ::before, ::after {
|
|
426
|
-
--tw-border-spacing-x: 0;
|
|
427
|
-
--tw-border-spacing-y: 0;
|
|
428
|
-
--tw-translate-x: 0;
|
|
429
|
-
--tw-translate-y: 0;
|
|
430
|
-
--tw-rotate: 0;
|
|
431
|
-
--tw-skew-x: 0;
|
|
432
|
-
--tw-skew-y: 0;
|
|
433
|
-
--tw-scale-x: 1;
|
|
434
|
-
--tw-scale-y: 1;
|
|
435
|
-
--tw-pan-x: ;
|
|
436
|
-
--tw-pan-y: ;
|
|
437
|
-
--tw-pinch-zoom: ;
|
|
438
|
-
--tw-scroll-snap-strictness: proximity;
|
|
439
|
-
--tw-gradient-from-position: ;
|
|
440
|
-
--tw-gradient-via-position: ;
|
|
441
|
-
--tw-gradient-to-position: ;
|
|
442
|
-
--tw-ordinal: ;
|
|
443
|
-
--tw-slashed-zero: ;
|
|
444
|
-
--tw-numeric-figure: ;
|
|
445
|
-
--tw-numeric-spacing: ;
|
|
446
|
-
--tw-numeric-fraction: ;
|
|
447
|
-
--tw-ring-inset: ;
|
|
448
|
-
--tw-ring-offset-width: 0px;
|
|
449
|
-
--tw-ring-offset-color: #fff;
|
|
450
|
-
--tw-ring-color: rgb(59 130 246 / 0.5);
|
|
451
|
-
--tw-ring-offset-shadow: 0 0 #0000;
|
|
452
|
-
--tw-ring-shadow: 0 0 #0000;
|
|
453
|
-
--tw-shadow: 0 0 #0000;
|
|
454
|
-
--tw-shadow-colored: 0 0 #0000;
|
|
455
|
-
--tw-blur: ;
|
|
456
|
-
--tw-brightness: ;
|
|
457
|
-
--tw-contrast: ;
|
|
458
|
-
--tw-grayscale: ;
|
|
459
|
-
--tw-hue-rotate: ;
|
|
460
|
-
--tw-invert: ;
|
|
461
|
-
--tw-saturate: ;
|
|
462
|
-
--tw-sepia: ;
|
|
463
|
-
--tw-drop-shadow: ;
|
|
464
|
-
--tw-backdrop-blur: ;
|
|
465
|
-
--tw-backdrop-brightness: ;
|
|
466
|
-
--tw-backdrop-contrast: ;
|
|
467
|
-
--tw-backdrop-grayscale: ;
|
|
468
|
-
--tw-backdrop-hue-rotate: ;
|
|
469
|
-
--tw-backdrop-invert: ;
|
|
470
|
-
--tw-backdrop-opacity: ;
|
|
471
|
-
--tw-backdrop-saturate: ;
|
|
472
|
-
--tw-backdrop-sepia: ;
|
|
473
|
-
}
|
|
474
|
-
|
|
475
|
-
::backdrop {
|
|
476
|
-
--tw-border-spacing-x: 0;
|
|
477
|
-
--tw-border-spacing-y: 0;
|
|
478
|
-
--tw-translate-x: 0;
|
|
479
|
-
--tw-translate-y: 0;
|
|
480
|
-
--tw-rotate: 0;
|
|
481
|
-
--tw-skew-x: 0;
|
|
482
|
-
--tw-skew-y: 0;
|
|
483
|
-
--tw-scale-x: 1;
|
|
484
|
-
--tw-scale-y: 1;
|
|
485
|
-
--tw-pan-x: ;
|
|
486
|
-
--tw-pan-y: ;
|
|
487
|
-
--tw-pinch-zoom: ;
|
|
488
|
-
--tw-scroll-snap-strictness: proximity;
|
|
489
|
-
--tw-gradient-from-position: ;
|
|
490
|
-
--tw-gradient-via-position: ;
|
|
491
|
-
--tw-gradient-to-position: ;
|
|
492
|
-
--tw-ordinal: ;
|
|
493
|
-
--tw-slashed-zero: ;
|
|
494
|
-
--tw-numeric-figure: ;
|
|
495
|
-
--tw-numeric-spacing: ;
|
|
496
|
-
--tw-numeric-fraction: ;
|
|
497
|
-
--tw-ring-inset: ;
|
|
498
|
-
--tw-ring-offset-width: 0px;
|
|
499
|
-
--tw-ring-offset-color: #fff;
|
|
500
|
-
--tw-ring-color: rgb(59 130 246 / 0.5);
|
|
501
|
-
--tw-ring-offset-shadow: 0 0 #0000;
|
|
502
|
-
--tw-ring-shadow: 0 0 #0000;
|
|
503
|
-
--tw-shadow: 0 0 #0000;
|
|
504
|
-
--tw-shadow-colored: 0 0 #0000;
|
|
505
|
-
--tw-blur: ;
|
|
506
|
-
--tw-brightness: ;
|
|
507
|
-
--tw-contrast: ;
|
|
508
|
-
--tw-grayscale: ;
|
|
509
|
-
--tw-hue-rotate: ;
|
|
510
|
-
--tw-invert: ;
|
|
511
|
-
--tw-saturate: ;
|
|
512
|
-
--tw-sepia: ;
|
|
513
|
-
--tw-drop-shadow: ;
|
|
514
|
-
--tw-backdrop-blur: ;
|
|
515
|
-
--tw-backdrop-brightness: ;
|
|
516
|
-
--tw-backdrop-contrast: ;
|
|
517
|
-
--tw-backdrop-grayscale: ;
|
|
518
|
-
--tw-backdrop-hue-rotate: ;
|
|
519
|
-
--tw-backdrop-invert: ;
|
|
520
|
-
--tw-backdrop-opacity: ;
|
|
521
|
-
--tw-backdrop-saturate: ;
|
|
522
|
-
--tw-backdrop-sepia: ;
|
|
523
|
-
}
|
|
524
|
-
|
|
525
|
-
.container {
|
|
526
|
-
width: 100%;
|
|
527
|
-
}
|
|
528
|
-
|
|
529
|
-
@media (min-width: 640px) {
|
|
530
|
-
.container {
|
|
531
|
-
max-width: 640px;
|
|
532
|
-
}
|
|
533
|
-
}
|
|
534
|
-
|
|
535
|
-
@media (min-width: 768px) {
|
|
536
|
-
.container {
|
|
537
|
-
max-width: 768px;
|
|
538
|
-
}
|
|
539
|
-
}
|
|
540
|
-
|
|
541
|
-
@media (min-width: 1024px) {
|
|
542
|
-
.container {
|
|
543
|
-
max-width: 1024px;
|
|
544
|
-
}
|
|
545
|
-
}
|
|
546
|
-
|
|
547
|
-
@media (min-width: 1280px) {
|
|
548
|
-
.container {
|
|
549
|
-
max-width: 1280px;
|
|
550
|
-
}
|
|
551
|
-
}
|
|
552
|
-
|
|
553
|
-
@media (min-width: 1536px) {
|
|
554
|
-
.container {
|
|
555
|
-
max-width: 1536px;
|
|
556
|
-
}
|
|
557
|
-
}
|
|
558
|
-
|
|
559
|
-
.sr-only {
|
|
560
|
-
position: absolute;
|
|
561
|
-
width: 1px;
|
|
562
|
-
height: 1px;
|
|
563
|
-
padding: 0;
|
|
564
|
-
margin: -1px;
|
|
565
|
-
overflow: hidden;
|
|
566
|
-
clip: rect(0, 0, 0, 0);
|
|
567
|
-
white-space: nowrap;
|
|
568
|
-
border-width: 0;
|
|
569
|
-
}
|
|
570
|
-
|
|
571
|
-
.visible {
|
|
572
|
-
visibility: visible;
|
|
573
|
-
}
|
|
574
|
-
|
|
575
|
-
.collapse {
|
|
576
|
-
visibility: collapse;
|
|
577
|
-
}
|
|
578
|
-
|
|
579
|
-
.static {
|
|
580
|
-
position: static;
|
|
581
|
-
}
|
|
582
|
-
|
|
583
|
-
.fixed {
|
|
584
|
-
position: fixed;
|
|
585
|
-
}
|
|
586
|
-
|
|
587
|
-
.absolute {
|
|
588
|
-
position: absolute;
|
|
589
|
-
}
|
|
590
|
-
|
|
591
|
-
.relative {
|
|
592
|
-
position: relative;
|
|
593
|
-
}
|
|
594
|
-
|
|
595
|
-
.end-1 {
|
|
596
|
-
inset-inline-end: 0.25rem;
|
|
597
|
-
}
|
|
598
|
-
|
|
599
|
-
.m-0 {
|
|
600
|
-
margin: 0px;
|
|
601
|
-
}
|
|
602
|
-
|
|
603
|
-
.m-1 {
|
|
604
|
-
margin: 0.25rem;
|
|
605
|
-
}
|
|
606
|
-
|
|
607
|
-
.m-auto {
|
|
608
|
-
margin: auto;
|
|
609
|
-
}
|
|
610
|
-
|
|
611
|
-
.mx-1 {
|
|
612
|
-
margin-left: 0.25rem;
|
|
613
|
-
margin-right: 0.25rem;
|
|
614
|
-
}
|
|
615
|
-
|
|
616
|
-
.my-1 {
|
|
617
|
-
margin-top: 0.25rem;
|
|
618
|
-
margin-bottom: 0.25rem;
|
|
619
|
-
}
|
|
620
|
-
|
|
621
|
-
.my-2 {
|
|
622
|
-
margin-top: 0.5rem;
|
|
623
|
-
margin-bottom: 0.5rem;
|
|
624
|
-
}
|
|
625
|
-
|
|
626
|
-
.mb-0 {
|
|
627
|
-
margin-bottom: 0px;
|
|
628
|
-
}
|
|
629
|
-
|
|
630
|
-
.mb-1 {
|
|
631
|
-
margin-bottom: 0.25rem;
|
|
632
|
-
}
|
|
633
|
-
|
|
634
|
-
.mb-3 {
|
|
635
|
-
margin-bottom: 0.75rem;
|
|
636
|
-
}
|
|
637
|
-
|
|
638
|
-
.mb-auto {
|
|
639
|
-
margin-bottom: auto;
|
|
640
|
-
}
|
|
641
|
-
|
|
642
|
-
.me-2 {
|
|
643
|
-
-webkit-margin-end: 0.5rem;
|
|
644
|
-
margin-inline-end: 0.5rem;
|
|
645
|
-
}
|
|
646
|
-
|
|
647
|
-
.me-auto {
|
|
648
|
-
-webkit-margin-end: auto;
|
|
649
|
-
margin-inline-end: auto;
|
|
650
|
-
}
|
|
651
|
-
|
|
652
|
-
.ml-auto {
|
|
653
|
-
margin-left: auto;
|
|
654
|
-
}
|
|
655
|
-
|
|
656
|
-
.mr-1 {
|
|
657
|
-
margin-right: 0.25rem;
|
|
658
|
-
}
|
|
659
|
-
|
|
660
|
-
.ms-3 {
|
|
661
|
-
-webkit-margin-start: 0.75rem;
|
|
662
|
-
margin-inline-start: 0.75rem;
|
|
663
|
-
}
|
|
664
|
-
|
|
665
|
-
.mt-3 {
|
|
666
|
-
margin-top: 0.75rem;
|
|
667
|
-
}
|
|
668
|
-
|
|
669
|
-
.block {
|
|
670
|
-
display: block;
|
|
671
|
-
}
|
|
672
|
-
|
|
673
|
-
.inline {
|
|
674
|
-
display: inline;
|
|
675
|
-
}
|
|
676
|
-
|
|
677
|
-
.flex {
|
|
678
|
-
display: flex;
|
|
679
|
-
}
|
|
680
|
-
|
|
681
|
-
.table {
|
|
682
|
-
display: table;
|
|
683
|
-
}
|
|
684
|
-
|
|
685
|
-
.table-cell {
|
|
686
|
-
display: table-cell;
|
|
687
|
-
}
|
|
688
|
-
|
|
689
|
-
.grid {
|
|
690
|
-
display: grid;
|
|
691
|
-
}
|
|
692
|
-
|
|
693
|
-
.contents {
|
|
694
|
-
display: contents;
|
|
695
|
-
}
|
|
696
|
-
|
|
697
|
-
.hidden {
|
|
698
|
-
display: none;
|
|
699
|
-
}
|
|
700
|
-
|
|
701
|
-
.h-1 {
|
|
702
|
-
height: 0.25rem;
|
|
703
|
-
}
|
|
704
|
-
|
|
705
|
-
.h-2 {
|
|
706
|
-
height: 0.5rem;
|
|
707
|
-
}
|
|
708
|
-
|
|
709
|
-
.flex-1 {
|
|
710
|
-
flex: 1 1 0%;
|
|
711
|
-
}
|
|
712
|
-
|
|
713
|
-
.flex-shrink-0 {
|
|
714
|
-
flex-shrink: 0;
|
|
715
|
-
}
|
|
716
|
-
|
|
717
|
-
.\!transform {
|
|
718
|
-
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
|
|
719
|
-
}
|
|
720
|
-
|
|
721
|
-
.transform {
|
|
722
|
-
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
723
|
-
}
|
|
724
|
-
|
|
725
|
-
.resize {
|
|
726
|
-
resize: both;
|
|
727
|
-
}
|
|
728
|
-
|
|
729
|
-
.flex-nowrap {
|
|
730
|
-
flex-wrap: nowrap;
|
|
731
|
-
}
|
|
732
|
-
|
|
733
|
-
.items-center {
|
|
734
|
-
align-items: center;
|
|
735
|
-
}
|
|
736
|
-
|
|
737
|
-
.gap-1 {
|
|
738
|
-
gap: 0.25rem;
|
|
739
|
-
}
|
|
740
|
-
|
|
741
|
-
.gap-2 {
|
|
742
|
-
gap: 0.5rem;
|
|
743
|
-
}
|
|
744
|
-
|
|
745
|
-
.overflow-y-auto {
|
|
746
|
-
overflow-y: auto;
|
|
747
|
-
}
|
|
748
|
-
|
|
749
|
-
.truncate {
|
|
750
|
-
overflow: hidden;
|
|
751
|
-
text-overflow: ellipsis;
|
|
752
|
-
white-space: nowrap;
|
|
753
|
-
}
|
|
754
|
-
|
|
755
|
-
.rounded {
|
|
756
|
-
border-radius: 0.25rem;
|
|
757
|
-
}
|
|
758
|
-
|
|
759
|
-
.border {
|
|
760
|
-
border-width: 1px;
|
|
761
|
-
}
|
|
762
|
-
|
|
763
|
-
.p-0 {
|
|
764
|
-
padding: 0px;
|
|
765
|
-
}
|
|
766
|
-
|
|
767
|
-
.p-1 {
|
|
768
|
-
padding: 0.25rem;
|
|
769
|
-
}
|
|
770
|
-
|
|
771
|
-
.p-2 {
|
|
772
|
-
padding: 0.5rem;
|
|
773
|
-
}
|
|
774
|
-
|
|
775
|
-
.p-4 {
|
|
776
|
-
padding: 1rem;
|
|
777
|
-
}
|
|
778
|
-
|
|
779
|
-
.px-1 {
|
|
780
|
-
padding-left: 0.25rem;
|
|
781
|
-
padding-right: 0.25rem;
|
|
782
|
-
}
|
|
783
|
-
|
|
784
|
-
.px-2 {
|
|
785
|
-
padding-left: 0.5rem;
|
|
786
|
-
padding-right: 0.5rem;
|
|
787
|
-
}
|
|
788
|
-
|
|
789
|
-
.px-3 {
|
|
790
|
-
padding-left: 0.75rem;
|
|
791
|
-
padding-right: 0.75rem;
|
|
792
|
-
}
|
|
793
|
-
|
|
794
|
-
.px-4 {
|
|
795
|
-
padding-left: 1rem;
|
|
796
|
-
padding-right: 1rem;
|
|
797
|
-
}
|
|
798
|
-
|
|
799
|
-
.px-5 {
|
|
800
|
-
padding-left: 1.25rem;
|
|
801
|
-
padding-right: 1.25rem;
|
|
802
|
-
}
|
|
803
|
-
|
|
804
|
-
.py-0 {
|
|
805
|
-
padding-top: 0px;
|
|
806
|
-
padding-bottom: 0px;
|
|
807
|
-
}
|
|
808
|
-
|
|
809
|
-
.py-2 {
|
|
810
|
-
padding-top: 0.5rem;
|
|
811
|
-
padding-bottom: 0.5rem;
|
|
812
|
-
}
|
|
813
|
-
|
|
814
|
-
.py-3 {
|
|
815
|
-
padding-top: 0.75rem;
|
|
816
|
-
padding-bottom: 0.75rem;
|
|
817
|
-
}
|
|
818
|
-
|
|
819
|
-
.pl-2 {
|
|
820
|
-
padding-left: 0.5rem;
|
|
821
|
-
}
|
|
822
|
-
|
|
823
|
-
.pr-1 {
|
|
824
|
-
padding-right: 0.25rem;
|
|
825
|
-
}
|
|
826
|
-
|
|
827
|
-
.ps-0 {
|
|
828
|
-
-webkit-padding-start: 0px;
|
|
829
|
-
padding-inline-start: 0px;
|
|
830
|
-
}
|
|
831
|
-
|
|
832
|
-
.ps-2 {
|
|
833
|
-
-webkit-padding-start: 0.5rem;
|
|
834
|
-
padding-inline-start: 0.5rem;
|
|
835
|
-
}
|
|
836
|
-
|
|
837
|
-
.pt-2 {
|
|
838
|
-
padding-top: 0.5rem;
|
|
839
|
-
}
|
|
840
|
-
|
|
841
|
-
.pt-5 {
|
|
842
|
-
padding-top: 1.25rem;
|
|
843
|
-
}
|
|
844
|
-
|
|
845
|
-
.text-center {
|
|
846
|
-
text-align: center;
|
|
847
|
-
}
|
|
848
|
-
|
|
849
|
-
.text-start {
|
|
850
|
-
text-align: start;
|
|
851
|
-
}
|
|
852
|
-
|
|
853
|
-
.text-end {
|
|
854
|
-
text-align: end;
|
|
855
|
-
}
|
|
856
|
-
|
|
857
|
-
.font-medium {
|
|
858
|
-
font-weight: 500;
|
|
859
|
-
}
|
|
860
|
-
|
|
861
|
-
.uppercase {
|
|
862
|
-
text-transform: uppercase;
|
|
863
|
-
}
|
|
864
|
-
|
|
865
|
-
.lowercase {
|
|
866
|
-
text-transform: lowercase;
|
|
867
|
-
}
|
|
868
|
-
|
|
869
|
-
.italic {
|
|
870
|
-
font-style: italic;
|
|
871
|
-
}
|
|
872
|
-
|
|
873
|
-
.text-white {
|
|
874
|
-
--tw-text-opacity: 1;
|
|
875
|
-
color: rgb(255 255 255 / var(--tw-text-opacity));
|
|
876
|
-
}
|
|
877
|
-
|
|
878
|
-
.overline {
|
|
879
|
-
-webkit-text-decoration-line: overline;
|
|
880
|
-
text-decoration-line: overline;
|
|
881
|
-
}
|
|
882
|
-
|
|
883
|
-
.opacity-50 {
|
|
884
|
-
opacity: 0.5;
|
|
885
|
-
}
|
|
886
|
-
|
|
887
|
-
.opacity-75 {
|
|
888
|
-
opacity: 0.75;
|
|
889
|
-
}
|
|
890
|
-
|
|
891
|
-
.shadow {
|
|
892
|
-
--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
|
|
893
|
-
--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
|
|
894
|
-
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
895
|
-
}
|
|
896
|
-
|
|
897
|
-
.\!outline {
|
|
898
|
-
outline-style: solid !important;
|
|
899
|
-
}
|
|
900
|
-
|
|
901
|
-
.outline {
|
|
902
|
-
outline-style: solid;
|
|
903
|
-
}
|
|
904
|
-
|
|
905
|
-
.ring {
|
|
906
|
-
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
907
|
-
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
908
|
-
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
909
|
-
}
|
|
910
|
-
|
|
911
|
-
.blur {
|
|
912
|
-
--tw-blur: blur(8px);
|
|
913
|
-
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
914
|
-
}
|
|
915
|
-
|
|
916
|
-
.grayscale {
|
|
917
|
-
--tw-grayscale: grayscale(100%);
|
|
918
|
-
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
919
|
-
}
|
|
920
|
-
|
|
921
|
-
.filter {
|
|
922
|
-
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
923
|
-
}
|
|
924
|
-
|
|
925
|
-
.backdrop-filter {
|
|
926
|
-
-webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
|
|
927
|
-
backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
|
|
928
|
-
}
|
|
929
|
-
|
|
930
|
-
.transition {
|
|
931
|
-
transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
|
|
932
|
-
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
|
|
933
|
-
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
|
|
934
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
935
|
-
transition-duration: 150ms;
|
|
936
|
-
}
|
|
937
|
-
|
|
File without changes
|